1<!DOCTYPE html>
2<html>
3<head i18n-values="dir:textdirection;">
4<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5<meta charset="utf-8"/>
6<title>Android System Trace</title>
7<style>
8  html,
9  body {
10    height: 100%;
11  }
12
13  body {
14    -webkit-flex-direction: column;
15    display: -webkit-flex;
16    margin: 0;
17    padding: 0;
18  }
19
20  body > tr-ui-timeline-view {
21    -webkit-flex: 1 1 auto;
22    min-height: 0;
23  }
24  body > tr-ui-timeline-view:focus {
25    outline: none;
26  }
27</style>
28<template id="overlay-template">
29  <style>
30    overlay-mask {
31      left: 0;
32      padding: 8px;
33      position: absolute;
34      top: 0;
35      z-index: 1000;
36      font-family: sans-serif;
37      -webkit-justify-content: center;
38      background: rgba(0, 0, 0, 0.8);
39      display: flex;
40      height: 100%;
41      left: 0;
42      position: fixed;
43      top: 0;
44      width: 100%;
45    }
46    overlay-mask:focus {
47      outline: none;
48    }
49    overlay-vertical-centering-container {
50      -webkit-justify-content: center;
51      flex-direction: column;
52      display: flex;
53    }
54    overlay-frame {
55      z-index: 1100;
56      background: rgb(255, 255, 255);
57      border: 1px solid #ccc;
58      margin: 75px;
59      display: flex;
60      flex-direction: column;
61      min-height: 0;
62    }
63    title-bar {
64      -webkit-align-items: center;
65      flex-direction: row;
66      border-bottom: 1px solid #ccc;
67      background-color: #ddd;
68      display: flex;
69      padding: 5px;
70      flex: 0 0 auto;
71    }
72    title {
73      display: inline;
74      font-weight: bold;
75      flex: 1 1 auto;
76    }
77    close-button {
78      -webkit-align-self: flex-end;
79      border: 1px solid #eee;
80      background-color: #999;
81      font-size: 10pt;
82      font-weight: bold;
83      padding: 2px;
84      text-align: center;
85      width: 16px;
86    }
87    close-button:hover {
88      background-color: #ddd;
89      border-color: black;
90      cursor: pointer;
91    }
92    overlay-content {
93      display: flex;
94      flex: 1 1 auto;
95      flex-direction: column;
96      overflow-y: auto;
97      padding: 10px;
98      min-width: 300px;
99      min-height: 0;
100    }
101    button-bar {
102      -webkit-align-items: baseline;
103      border-top: 1px solid #ccc;
104      display: flex;
105      flex: 0 0 auto;
106      flex-direction: row-reverse;
107      padding: 4px;
108    }
109  </style>
110
111  <overlay-mask>
112    <overlay-vertical-centering-container>
113      <overlay-frame>
114        <title-bar>
115          <title></title>
116          <close-button>✕</close-button>
117        </title-bar>
118        <overlay-content>
119          <content></content>
120        </overlay-content>
121        <button-bar></button-bar>
122      </overlay-frame>
123    </overlay-vertical-centering-container>
124  </overlay-mask>
125</template><dom-module id="tr-ui-a-analysis-link">
126  <template>
127    <style>
128    :host {
129      display: inline;
130      cursor: pointer;
131      cursor: pointer;
132      white-space: nowrap;
133    }
134    a {
135      text-decoration: underline;
136    }
137    </style>
138    <a href="{{href}}" on-click="onClicked_" on-mouseenter="onMouseEnter_" on-mouseleave="onMouseLeave_"><content></content></a>
139
140  </template>
141</dom-module><dom-module id="tr-ui-b-table">
142  <template>
143    <style>
144      :host {
145        display: flex;
146        flex-direction: column;
147      }
148
149      table {
150        flex: 1 1 auto;
151        align-self: stretch;
152        border-collapse: separate;
153        border-spacing: 0;
154        border-width: 0;
155        -webkit-user-select: initial;
156      }
157
158      tr > td {
159        padding: 2px 4px 2px 4px;
160        vertical-align: top;
161      }
162
163      table > tbody:focus {
164        outline: none;
165      }
166      table > tbody:focus[selection-mode="row"] > tr[selected],
167      table > tbody:focus[selection-mode="cell"] > tr > td[selected],
168      table > tbody:focus > tr.empty-row > td {
169        outline: 1px dotted #666666;
170        outline-offset: -1px;
171      }
172
173      button.toggle-button {
174        height: 15px;
175        line-height: 60%;
176        vertical-align: middle;
177        width: 100%;
178      }
179
180      button > * {
181        height: 15px;
182        vertical-align: middle;
183      }
184
185      td.button-column {
186        width: 30px;
187      }
188
189      table > thead > tr > td.sensitive:hover {
190        background-color: #fcfcfc;
191      }
192
193      table > thead > tr > td {
194        font-weight: bold;
195        text-align: left;
196
197        background-color: #eee;
198        white-space: nowrap;
199        overflow: hidden;
200        text-overflow: ellipsis;
201
202        border-top: 1px solid #ffffff;
203        border-bottom: 1px solid #aaa;
204      }
205
206      table > tfoot {
207        background-color: #eee;
208        font-weight: bold;
209      }
210
211      /* Light row and cell highlight. */
212      table > tbody[row-highlight-style="light"] > tr[selected],
213      table > tbody[cell-highlight-style="light"] > tr > td[selected] {
214        background-color: rgb(213, 236, 229);  /* light turquoise */
215      }
216      table > tbody[row-highlight-style="light"] >
217          tr:not(.empty-row):not([selected]):hover,
218      table > tbody[cell-highlight-style="light"] >
219          tr:not(.empty-row):not([selected]) > td:hover {
220        background-color: #f6f6f6;  /* light grey */
221      }
222
223      /* Dark row and cell highlight. */
224      table > tbody[row-highlight-style="dark"] > tr[selected],
225      table > tbody[cell-highlight-style="dark"] > tr > td[selected] {
226        background-color: rgb(103, 199, 165);  /* turquoise */
227      }
228      table > tbody[row-highlight-style="dark"] >
229          tr:not(.empty-row):not([selected]):hover,
230      table > tbody[cell-highlight-style="dark"] >
231          tr:not(.empty-row):not([selected]) > td:hover {
232        background-color: #e6e6e6;  /* grey */
233      }
234      table > tbody[row-highlight-style="dark"] > tr:hover[selected],
235      table > tbody[cell-highlight-style="dark"] > tr[selected] > td:hover {
236        background-color: rgb(171, 217, 202);  /* semi-light turquoise */
237      }
238
239      table > colgroup > col[selected] {
240        background-color: #e6e6e6;  /* grey */
241      }
242
243      table > tbody > tr.empty-row > td {
244        color: #666;
245        font-style: italic;
246        text-align: center;
247      }
248
249      table > tbody.has-footer > tr:last-child > td {
250        border-bottom: 1px solid #aaa;
251      }
252
253      table > tfoot > tr:first-child > td {
254        border-top: 1px solid #ffffff;
255      }
256
257      :host([zebra]) table tbody tr:nth-child(even) {
258        background-color: #f4f4f4;
259      }
260
261      expand-button {
262        -webkit-user-select: none;
263        cursor: pointer;
264        margin-right: 3px;
265        font-size: smaller;
266        height: 1rem;
267      }
268
269      expand-button.button-expanded {
270        transform: rotate(90deg);
271      }
272    </style>
273    <table>
274      <colgroup id="cols">
275      </colgroup>
276      <thead id="head">
277      </thead>
278      <tbody id="body">
279      </tbody>
280      <tfoot id="foot">
281      </tfoot>
282    </table>
283  </template>
284</dom-module><dom-module id="tr-ui-b-table-header-cell">
285  <template>
286  <style>
287    :host {
288      -webkit-user-select: none;
289      display: flex;
290    }
291
292    span {
293      flex: 0 1 auto;
294    }
295
296    #side {
297      -webkit-user-select: none;
298      flex: 0 0 auto;
299      padding-left: 2px;
300      padding-right: 2px;
301      vertical-align: top;
302      font-size: 15px;
303      font-family: sans-serif;
304      line-height: 85%;
305      margin-left: 5px;
306    }
307
308    #side.disabled {
309      color: rgb(140, 140, 140);
310    }
311
312    #title:empty, #side:empty {
313      display: none;
314    }
315  </style>
316
317    <span id="title"></span>
318    <span id="side"></span>
319  </template>
320</dom-module><dom-module id="tr-v-ui-scalar-context-controller">
321  <template></template>
322</dom-module><dom-module id="tr-v-ui-scalar-span">
323  <template>
324    <style>
325    :host {
326      display: flex;
327      flex-direction: row;
328      justify-content: flex-end;
329      position: relative;
330      /* Limit the sparkline's negative z-index to the span only. */
331      isolation: isolate;
332    }
333
334    :host(.left-align) {
335      justify-content: flex-start;
336    }
337
338    :host(.inline) {
339      display: inline-flex;
340    }
341
342    #sparkline {
343      width: 0%;
344      position: absolute;
345      bottom: 0;
346      display: none;
347      height: 100%;
348      background-color: hsla(216, 100%, 94.5%, .75);
349      border-color: hsl(216, 100%, 89%);
350      box-sizing: border-box;
351      z-index: -1;
352    }
353    #sparkline.positive {
354      border-right-style: solid;
355      /* The border width must be kept in sync with buildSparklineStyle_(). */
356      border-right-width: 1px;
357    }
358    #sparkline:not(.positive) {
359      border-left-style: solid;
360      /* The border width must be kept in sync with buildSparklineStyle_(). */
361      border-left-width: 1px;
362    }
363    #sparkline.better {
364      background-color: hsla(115, 100%, 93%, .75);
365      border-color: hsl(118, 60%, 80%);
366    }
367    #sparkline.worse {
368      background-color: hsla(0, 100%, 88%, .75);
369      border-color: hsl(0, 100%, 80%);
370    }
371
372    #content {
373      white-space: nowrap;
374    }
375    #content, #significance, #warning {
376      flex-grow: 0;
377    }
378    #content.better {
379      color: green;
380    }
381    #content.worse {
382      color: red;
383    }
384
385    #significance svg {
386      margin-left: 4px;
387      display: none;
388      height: 1em;
389      vertical-align: text-top;
390      stroke-width: 4;
391      fill: rgba(0, 0, 0, 0);
392    }
393    #significance #insignificant {
394      stroke: black;
395    }
396    #significance #significantly_better {
397      stroke: green;
398    }
399    #significance #significantly_worse {
400      stroke: red;
401    }
402
403    #warning {
404      display: none;
405      margin-left: 4px;
406      height: 1em;
407      vertical-align: text-top;
408      stroke-width: 0;
409    }
410    #warning path {
411      fill: rgb(255, 185, 185);
412    }
413    #warning rect {
414      fill: red;
415    }
416    </style>
417
418    <span id="sparkline"></span>
419
420    <span id="content"></span>
421
422    <span id="significance">
423
424      <svg id="insignificant" viewBox="0 0 128 128">
425        <circle cx="64" cy="64" r="60"></circle>
426        <circle cx="44" cy="44" r="4"></circle>
427        <circle cx="84" cy="44" r="4"></circle>
428        <line x1="36" x2="92" y1="80" y2="80"></line>
429      </svg>
430
431
432      <svg id="significantly_better" viewBox="0 0 128 128">
433        <circle cx="64" cy="64" r="60"></circle>
434        <circle cx="44" cy="44" r="4"></circle>
435        <circle cx="84" cy="44" r="4"></circle>
436        <path d="M 28 64 Q 64 128 100 64"></path>
437      </svg>
438
439
440      <svg id="significantly_worse" viewBox="0 0 128 128">
441        <circle cx="64" cy="64" r="60"></circle>
442        <circle cx="44" cy="44" r="4"></circle>
443        <circle cx="84" cy="44" r="4"></circle>
444        <path d="M 36 96 Q 64 48 92 96"></path>
445      </svg>
446    </span>
447
448    <svg id="warning" viewBox="0 0 128 128">
449      <path d="M 64 0 L 128 128 L 0 128 L 64 0"></path>
450      <rect height="84" width="8" x="60" y="0"></rect>
451      <rect height="24" width="8" x="60" y="100"></rect>
452    </svg>
453  </template>
454</dom-module><dom-module id="tr-ui-a-generic-object-view">
455  <template>
456    <style>
457    :host {
458      display: block;
459      font-family: monospace;
460    }
461    </style>
462    <div id="content">
463    </div>
464  </template>
465</dom-module><dom-module id="tr-ui-a-generic-object-view-with-label">
466  <template>
467    <style>
468    :host {
469      display: block;
470    }
471    </style>
472  </template>
473</dom-module><dom-module id="tr-ui-b-drag-handle">
474  <template>
475    <style>
476    :host {
477      -webkit-user-select: none;
478      box-sizing: border-box;
479      display: block;
480    }
481
482    :host(.horizontal-drag-handle) {
483      background-image: -webkit-gradient(linear,
484                                         0 0, 0 100%,
485                                         from(#E5E5E5),
486                                         to(#D1D1D1));
487      border-bottom: 1px solid #8e8e8e;
488      border-top: 1px solid white;
489      cursor: ns-resize;
490      flex: 0 0 auto;
491      height: 7px;
492      position: relative;
493    }
494
495    :host(.vertical-drag-handle) {
496      background-image: -webkit-gradient(linear,
497                                         0 0, 100% 0,
498                                         from(#E5E5E5),
499                                         to(#D1D1D1));
500      border-left: 1px solid white;
501      border-right: 1px solid #8e8e8e;
502      cursor: ew-resize;
503      flex: 0 0 auto;
504      position: relative;
505      width: 7px;
506    }
507    </style>
508    <div></div>
509  </template>
510</dom-module><dom-module id="tv-ui-b-hotkey-controller">
511  <template>
512    <div></div>
513  </template>
514</dom-module><dom-module id="tr-ui-b-info-bar">
515  <template>
516    <style>
517    :host {
518      align-items: center;
519      flex: 0 0 auto;
520      background-color: rgb(252, 235, 162);
521      border-bottom: 1px solid #A3A3A3;
522      border-left: 1px solid white;
523      border-right: 1px solid #A3A3A3;
524      border-top: 1px solid white;
525      display: flex;
526      height: 26px;
527      padding: 0 3px 0 3px;
528    }
529
530    :host([hidden]) {
531      display: none !important;
532    }
533
534    #message { flex: 1 1 auto; }
535    </style>
536
537    <span id="message"></span>
538    <span id="buttons"></span>
539  </template>
540</dom-module><dom-module id="tr-ui-b-mouse-mode-icon">
541  <template>
542    <style>
543    :host {
544      display: block;
545      background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAChCAYAAACbBNzvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABV0RVh0Q3JlYXRpb24gVGltZQA3LzE2LzEzRNEKUwAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAA9aSURBVHic7V1rTFvl//+UrgUmZWMpbLa6cLErwpYxkqLGkjAG88WSbmumGUllvlmAJctMRtybvlHrLXiJUekMIZuYSCL5gS+EuLIXGEGjqCsllCEW6xQECgzWG7S05/+C/zkp9LTn0gsL6ych9JzznOdzPj19Luf5PN/nCN59913ixRdfRFdXFxLx/2GDgCAIYmpqCoWFhUjE/4cNae+99x4AIFH/Hzak7nDqDu+wOyyw2WzEdl9EMpG23ReQbKQE73Q8coJ3bfcFWK1W/Pbbb/D7/UhLi/37DwaDEIvFKC8vR0lJSdjxbRVstVoxPDyMxx9/HAUFBcjMzIRAIOCdXzAYhNvtht1ux/DwMACEid5WwSMjI3jyySdRXFwMsVgMoVAYk2CCIJCZmYns7GyMjo5iZGQkPoKXl5exd+9e3hdGIhgMIj8/H5mZmRCJRIyCyQ5NJBAEgUAgAKFQiIKCAiwsLISl4VxoHA4H+vv74Xa7uZ4aBqFQiOzsbIhEIojFYojFYohEItq/8fFxXLlyBUtLSxHThOaxZ88eCIXC2AWPj48DAH799deYBaelpUEoFLL6++qrrwAAH3zwAav0YrGYthLkJHh6ehpzc3MAgPn5eUxPT8csWiAQMJbboaEhmM1mAIDFYsHQ0BDvPDkJtlgsYdt+v59LFrxw/fr1sG2Xy8UrL06C6+vrw7bFYjEvYi747rvvwrYlEgmvvDjV0g6HI+p2ohBP3qh32OFwoLe3l1VGvb29sNvtvC8kFCMjI9DpdKzS6nQ6mEwm1nnTPg/7/X6MjY1hcnKS/VX+P/bu3YuysjLk5uYypv36669x8uRJZGRkQCQSwev1oqOjAz09PZx5CwsLcenSJRw+fBh+vx+rq6swmUx46aWXNqWjvcMDAwO8xAIbnZKBgQFeNXhzczMvscBGp6S5uRk//vhj1HS0grVaLYqLi3kRy+Vy1NXVRe0RRcKNGzeg0Wh48apUKnR1daG6ujpqOtpKy+VyQa1Wo6SkBLdv38aFCxeoY5988gn1+fLly9TnL774ApWVlXjiiSfgdDqxtrbG+aJ9Ph/0ej3OnDkDvV6PW7duUceOHDlCfR4dHaU+v/DCC7h27RrUajWcTidWV1ejctAKJggCKysryMzMhE6nw+zsLO3Joft1Oh0ePHiApaUlduqi8BYVFaGvr48Vb19fHyfeqM2Sz+dj3QTEs4lKJC+njsfWJoptkxUrtjZRbJssOnASXFtbG3U7UXjrrbeibnMBJ8FZWVkoKysDABQUFCArK4s3MRcoFArqrlZXV0OhUPDOi5Ngn8+Hw4cPQyqV4tlnn4XP5+NNTIIgmH0An8+HV155BUqlEq+++ior3kAgQLuf84jH2toajh8/jvX1da6n0sLj8SAjI4MxHUEQ+PTTT1nlSRAEHjx4QHtsW8e0RCIR7HY79uzZE/GOcEUgEEAgEMDff/8NkUgUdnxbBR85cgRmsxkCgQD5+fkRh2XYIhAI4P79+5iamoLD4cCxY8fC0myr4KeeegoCgQBWqxVzc3NIS0uLedQyGAxi165dKC8vR1FRUVialHu405ESvNPxyAlOuYfJRMo9fFjdw3iBq3vIBDbu4bYK3uoextKtJEH2yWNyD8nyEG8wuYcffvgha3cxru6h3W5Hf39/QoyzaE6fyWRCQ0MDZ+MsLu7h8vIyent7sby8zIk8VkxNTUGn08Fms8UlP04Nn9/vR39/f9w8JLZwu91obGzk5CFFAq+Wfnh4mDKok4mWlha0trbGlAfvrs3k5CQGBgaSYoiHoqenB1evXk2OIb4VDocDJpMp6eXaYrGgsbGRV7mOufPq8XgwMDCQ9HI9NzeHq1evci7XvDseUqkUWq0W6enpCAaDcDqd8Hq9fLNjDaVSiRs3bkAikfDi5XSHxWIxampqAAALCwsYGhrC7Ows5ufnEypWIpHAYDAAACYmJnD9+nXevJwEnzp1CjKZDBUVFQCAsbGxpJTfjz76CFVVVWhqagIAdHR08G6XWQuuqanB7t274fV6UVpaiuzsbAAbTzyJhMFggEKhgNfrRX19PWQyGQDAaDTyyo+V4JqaGshkMsricLlcOH78OICNCWp8p0cwwWAwoKqqahPvG2+8AWDji+7u7uacJyvBMpksrKxkZWVR0yLGxsY4E7NBVVVVGK9CoaCmRXR0dHDOk5VguorB5/OhoqICYrE4YZ2PSLxXrlyBRCLhNcE1pufh1dVVXLx4EWlpaRGnJzCBjXtId87g4GBU3ri5h1uJ5+fnY8mCtXvIhTflHoYg5R4mEyn3MAl45KyWlOCdjkdOcMo9TCZS7mHKPeSGhLmH5LBOrAGXXN1DcliHrgdFgsk95CzYbrfDbDbD7/ejrKwstpmtNO5hJJhMJrS2tsLtdqOpqQlarTZi2mjuIWvBfr8fZrN50/iz2WzG9PQ0nn/+edonEzZgij10uVwwGo2bxp+NRiOGhobw+uuv005hjtk9JENz6AbbyWCuRESp2Ww2NDc30w62WywW6HQ6zoOIrO5wbm4uzp8/j5WVFXR2dm46VldXh3379mF5eTku86dDUVxcjK6uLthstrClqrq6unDo0CHOvKwE+/1+LC4uUqG0oZiYmIhaicQCkvfu3bthxwYGBnhVmpy6NnSD7kxxQvEA3Zo+fIsQJ8F040j379/nRcwFdF4037FwToLphkUXFxd5EXMB3chkUgQ7nc6wfT6fL+Gm+H///Re2z+Vy8TLFGSut/v5+RsPsm2++AbDR84pXLFNDQwPjelxnz54FsBFK+/nnn7PKl/EOa7VaVmHvYrE4au+HK27evMkq7F0ikeDmzZus82UU7HK5qG8yGs6ePct73gUdfD4f2tvbGdO1t7dzaocZBRMEAaFQSBnhdKipqYFQKORlm0TjzcvLo4xwOhgMBuTl5XHiZVVp+f1+yGQy2iDq4uJiyGSyhFRcfr8fVVVVtEHUGo0GVVVVnHlZ19JerxdqtRpSqZTaJ5VKoVarEzrdwev1Qq/XQ6lUUvuUSiX0ej0vXk7N0srKCjQaDbXmjUajwcrKCmfSULD5Oa6srKCtrQ0SiQQSiQRtbW2MvHFzD0MrsXhUUmzdw9BKjKmSiqt7SBBE3Conru4hOa8kWqBnyj3cgl0EQcQ0cMYWW3kIgkiKe7iVV2C1Won09PSYxLCB1+tFZmYmtb22tobt4E1LBimATaQAkiKWjveR85ZSgnc6Uu5hMpFyD1PuITekYg/ZxB52dXXFTMo2n1D38NSpU7zjDEP/yHzisnJpIsBm5dJ45rntgpONuITTJirctqWlJabjdGAUvNUEp0NouxcvtLa2MgZhmUwmzqKjCrbb7aw9HC5pmWAymVivb2kymTgFe0RslrbeNTa1rtlshkgkQn5+PusL2Iqtd42NdWM0GpGVlYWTJ08ypo14h/nGI8Uax8Q3XJbteREFV1ZW8iLmex6Ja9euJfS8iD9puVyOmpoa3L59G8DmVUq3glzNlAzoimVgvrq6GmlpadDr9QA2r1K6FeRqpmRAFxveiIK9Xi8VZ/jLL78whulUVFTELJbkJeMMjUYjI29TUxNrsQBDX5qMM4w0qE2iuLgYpaWlcXMPyThDphWMNRoN6uvrOfGyskvVanXUNGq1Oq5WKclL/qwjQa/Xc+Zl1dNi8nFi9ZeSyZvqS0erjbmAbT6kT7X1lQp8QeYTyasKE8w3aJJvPh6PBwRBYGZmJi68MzMzqdjDUDx67mEsFxwrUrGHSUCqWdrpSAne6dix7uFzzz1HW0s/FO7h/v37UVBQgMceeyxm99DlcsFut2NwcBACgSDsnTHb7h4ePHgQxcXFcTPTMjIyIJFIcOfOHfz+++8Pl2DSPSTftxQv93DXrl0oKirCnTt3wtIwFhq62aputxtms5maCR8pHROEQiEkEgntew/X1tbC3mu4tLSE9vZ2nD9/njZd6Pn79u3jHoo3OTmJsbExnDlzBsDGWLXdbqcNoent7YVCocChQ4dYh+VFij3s7u5GR0cH9YWaTCbcunVr0yMkmfbChQvQarXQarVUWF4wGER6ejp7wdPT0zCbzfB4PJv2R7NT/H4/rFYrJicnUVZWxnowPtTpGxoagtFoDAsIi2anuN1ufPnll+ju7salS5dw4sQJKk+64hH2FTgcDgwPD4eJZQu/3w+bzcZ5JSSLxYL333+fNvqNDdxuN3p6ehjPDxMsl8tjjkw5ceIENfOVLVQqFd58882YeA0GA7WiWiSECfb5fPjpp58AbKyBx/bCpVIp6urqAADff/895wf6tbU1fPbZZwCAjz/+mPHCSSiVSsr3eueddxh5aWtpMrwuJyeH9cuczp07R5UZvktO/fnnnwCAY8eOoa+vj9U5nZ2d1CsH2fhaUZulwcFB1kGNi4uLjK/gYwuDwcCJ9+2332add9RmyW63w+12Q6FQIC8vD5cvX8bCwgI19VcqlcJms8HhcGBycjJuSz6aTCbMzs5Cq9Xi6NGjGB0dxcTEBJxOJyQSCZRKJUZGRjAyMoL//e9/jBFsoaAVLJfLKZvD4XBQ37ZEItlUph0OB238gVwu5ySQhEqlopo+i8VCtbsymWxTmb579y6t46BSqRg5aAXX1tbi22+/DZvY5XQ6aQMuQyGVSlFbW8trgb6WlhY0NDRgYmJi0/6ZmRnGYVylUomWlhbGeGbaMuzxeKDRaKhVDdkgOzsblZWVOHfuHO82fH19HW1tbWhqamL9ul2ZTIbXXnsNnZ2drN7yFfFFjy6XC6WlpVCpVFhaWsK///5LVfnz8/PIy8sDAOzevRu5ubnIycmBx+OJKZ6YIAj4fD7U19ejsbERf/zxB4aHhykrdHx8HE8//TQAYP/+/VAqlVAoFJx4I1ZapGiyrBw4cAD37t2DXC7HgQMHAGx0QXNycrC+vh63VR5Cecnw3J6eHqhUKpSXlwPY6OI+88wzALiHxnN6PPz555/D9h08eJATIR/Qzd9gE/FKh9SYFlvI5XKqPMUCrlFuKpUKp0+fZkwXDAZp93MSLBaLUVJSgqNHjyIjIwNerzfmOR0ul4sx9lAikeD06dN4+eWXIZVKGXnj5h5evHgRXq8XHo+Hd9MTCpFIhHv37iEnJydqp/+HH36A1+uFy+VirKTi6h7Gug7tVpDuIUEQKCwsjOge/vPPP6zyCwQCWF5exl9//YX5+Xla93DbzTSbzQar1Yr19fW4uoclJSUp9xB4BJullOCdjkdO8P8BGCQ0hnF1DxUAAAAASUVORK5CYII=);
546      width: 27px;
547      height: 30px;
548    }
549    :host.active {
550      cursor: auto;
551    }
552    </style>
553  </template>
554</dom-module><dom-module id="tr-ui-b-mouse-mode-selector">
555  <template>
556    <style>
557    :host {
558
559      -webkit-user-drag: element;
560      -webkit-user-select: none;
561
562      background: #DDD;
563      border: 1px solid #BBB;
564      border-radius: 4px;
565      box-shadow: 0 1px 2px rgba(0,0,0,0.2);
566      left: calc(100% - 120px);
567      position: absolute;
568      top: 100px;
569      user-select: none;
570      width: 29px;
571      z-index: 20;
572    }
573
574    .drag-handle {
575      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAChCAYAAACbBNzvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABV0RVh0Q3JlYXRpb24gVGltZQA3LzE2LzEzRNEKUwAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAA9aSURBVHic7V1rTFvl//+UrgUmZWMpbLa6cLErwpYxkqLGkjAG88WSbmumGUllvlmAJctMRtybvlHrLXiJUekMIZuYSCL5gS+EuLIXGEGjqCsllCEW6xQECgzWG7S05/+C/zkp9LTn0gsL6ych9JzznOdzPj19Luf5PN/nCN59913ixRdfRFdXFxLx/2GDgCAIYmpqCoWFhUjE/4cNae+99x4AIFH/Hzak7nDqDu+wOyyw2WzEdl9EMpG23ReQbKQE73Q8coJ3bfcFWK1W/Pbbb/D7/UhLi/37DwaDEIvFKC8vR0lJSdjxbRVstVoxPDyMxx9/HAUFBcjMzIRAIOCdXzAYhNvtht1ux/DwMACEid5WwSMjI3jyySdRXFwMsVgMoVAYk2CCIJCZmYns7GyMjo5iZGQkPoKXl5exd+9e3hdGIhgMIj8/H5mZmRCJRIyCyQ5NJBAEgUAgAKFQiIKCAiwsLISl4VxoHA4H+vv74Xa7uZ4aBqFQiOzsbIhEIojFYojFYohEItq/8fFxXLlyBUtLSxHThOaxZ88eCIXC2AWPj48DAH799deYBaelpUEoFLL6++qrrwAAH3zwAav0YrGYthLkJHh6ehpzc3MAgPn5eUxPT8csWiAQMJbboaEhmM1mAIDFYsHQ0BDvPDkJtlgsYdt+v59LFrxw/fr1sG2Xy8UrL06C6+vrw7bFYjEvYi747rvvwrYlEgmvvDjV0g6HI+p2ohBP3qh32OFwoLe3l1VGvb29sNvtvC8kFCMjI9DpdKzS6nQ6mEwm1nnTPg/7/X6MjY1hcnKS/VX+P/bu3YuysjLk5uYypv36669x8uRJZGRkQCQSwev1oqOjAz09PZx5CwsLcenSJRw+fBh+vx+rq6swmUx46aWXNqWjvcMDAwO8xAIbnZKBgQFeNXhzczMvscBGp6S5uRk//vhj1HS0grVaLYqLi3kRy+Vy1NXVRe0RRcKNGzeg0Wh48apUKnR1daG6ujpqOtpKy+VyQa1Wo6SkBLdv38aFCxeoY5988gn1+fLly9TnL774ApWVlXjiiSfgdDqxtrbG+aJ9Ph/0ej3OnDkDvV6PW7duUceOHDlCfR4dHaU+v/DCC7h27RrUajWcTidWV1ejctAKJggCKysryMzMhE6nw+zsLO3Joft1Oh0ePHiApaUlduqi8BYVFaGvr48Vb19fHyfeqM2Sz+dj3QTEs4lKJC+njsfWJoptkxUrtjZRbJssOnASXFtbG3U7UXjrrbeibnMBJ8FZWVkoKysDABQUFCArK4s3MRcoFArqrlZXV0OhUPDOi5Ngn8+Hw4cPQyqV4tlnn4XP5+NNTIIgmH0An8+HV155BUqlEq+++ior3kAgQLuf84jH2toajh8/jvX1da6n0sLj8SAjI4MxHUEQ+PTTT1nlSRAEHjx4QHtsW8e0RCIR7HY79uzZE/GOcEUgEEAgEMDff/8NkUgUdnxbBR85cgRmsxkCgQD5+fkRh2XYIhAI4P79+5iamoLD4cCxY8fC0myr4KeeegoCgQBWqxVzc3NIS0uLedQyGAxi165dKC8vR1FRUVialHu405ESvNPxyAlOuYfJRMo9fFjdw3iBq3vIBDbu4bYK3uoextKtJEH2yWNyD8nyEG8wuYcffvgha3cxru6h3W5Hf39/QoyzaE6fyWRCQ0MDZ+MsLu7h8vIyent7sby8zIk8VkxNTUGn08Fms8UlP04Nn9/vR39/f9w8JLZwu91obGzk5CFFAq+Wfnh4mDKok4mWlha0trbGlAfvrs3k5CQGBgaSYoiHoqenB1evXk2OIb4VDocDJpMp6eXaYrGgsbGRV7mOufPq8XgwMDCQ9HI9NzeHq1evci7XvDseUqkUWq0W6enpCAaDcDqd8Hq9fLNjDaVSiRs3bkAikfDi5XSHxWIxampqAAALCwsYGhrC7Ows5ufnEypWIpHAYDAAACYmJnD9+nXevJwEnzp1CjKZDBUVFQCAsbGxpJTfjz76CFVVVWhqagIAdHR08G6XWQuuqanB7t274fV6UVpaiuzsbAAbTzyJhMFggEKhgNfrRX19PWQyGQDAaDTyyo+V4JqaGshkMsricLlcOH78OICNCWp8p0cwwWAwoKqqahPvG2+8AWDji+7u7uacJyvBMpksrKxkZWVR0yLGxsY4E7NBVVVVGK9CoaCmRXR0dHDOk5VguorB5/OhoqICYrE4YZ2PSLxXrlyBRCLhNcE1pufh1dVVXLx4EWlpaRGnJzCBjXtId87g4GBU3ri5h1uJ5+fnY8mCtXvIhTflHoYg5R4mEyn3MAl45KyWlOCdjkdOcMo9TCZS7mHKPeSGhLmH5LBOrAGXXN1DcliHrgdFgsk95CzYbrfDbDbD7/ejrKwstpmtNO5hJJhMJrS2tsLtdqOpqQlarTZi2mjuIWvBfr8fZrN50/iz2WzG9PQ0nn/+edonEzZgij10uVwwGo2bxp+NRiOGhobw+uuv005hjtk9JENz6AbbyWCuRESp2Ww2NDc30w62WywW6HQ6zoOIrO5wbm4uzp8/j5WVFXR2dm46VldXh3379mF5eTku86dDUVxcjK6uLthstrClqrq6unDo0CHOvKwE+/1+LC4uUqG0oZiYmIhaicQCkvfu3bthxwYGBnhVmpy6NnSD7kxxQvEA3Zo+fIsQJ8F040j379/nRcwFdF4037FwToLphkUXFxd5EXMB3chkUgQ7nc6wfT6fL+Gm+H///Re2z+Vy8TLFGSut/v5+RsPsm2++AbDR84pXLFNDQwPjelxnz54FsBFK+/nnn7PKl/EOa7VaVmHvYrE4au+HK27evMkq7F0ikeDmzZus82UU7HK5qG8yGs6ePct73gUdfD4f2tvbGdO1t7dzaocZBRMEAaFQSBnhdKipqYFQKORlm0TjzcvLo4xwOhgMBuTl5XHiZVVp+f1+yGQy2iDq4uJiyGSyhFRcfr8fVVVVtEHUGo0GVVVVnHlZ19JerxdqtRpSqZTaJ5VKoVarEzrdwev1Qq/XQ6lUUvuUSiX0ej0vXk7N0srKCjQaDbXmjUajwcrKCmfSULD5Oa6srKCtrQ0SiQQSiQRtbW2MvHFzD0MrsXhUUmzdw9BKjKmSiqt7SBBE3Conru4hOa8kWqBnyj3cgl0EQcQ0cMYWW3kIgkiKe7iVV2C1Won09PSYxLCB1+tFZmYmtb22tobt4E1LBimATaQAkiKWjveR85ZSgnc6Uu5hMpFyD1PuITekYg/ZxB52dXXFTMo2n1D38NSpU7zjDEP/yHzisnJpIsBm5dJ45rntgpONuITTJirctqWlJabjdGAUvNUEp0NouxcvtLa2MgZhmUwmzqKjCrbb7aw9HC5pmWAymVivb2kymTgFe0RslrbeNTa1rtlshkgkQn5+PusL2Iqtd42NdWM0GpGVlYWTJ08ypo14h/nGI8Uax8Q3XJbteREFV1ZW8iLmex6Ja9euJfS8iD9puVyOmpoa3L59G8DmVUq3glzNlAzoimVgvrq6GmlpadDr9QA2r1K6FeRqpmRAFxveiIK9Xi8VZ/jLL78whulUVFTELJbkJeMMjUYjI29TUxNrsQBDX5qMM4w0qE2iuLgYpaWlcXMPyThDphWMNRoN6uvrOfGyskvVanXUNGq1Oq5WKclL/qwjQa/Xc+Zl1dNi8nFi9ZeSyZvqS0erjbmAbT6kT7X1lQp8QeYTyasKE8w3aJJvPh6PBwRBYGZmJi68MzMzqdjDUDx67mEsFxwrUrGHSUCqWdrpSAne6dix7uFzzz1HW0s/FO7h/v37UVBQgMceeyxm99DlcsFut2NwcBACgSDsnTHb7h4ePHgQxcXFcTPTMjIyIJFIcOfOHfz+++8Pl2DSPSTftxQv93DXrl0oKirCnTt3wtIwFhq62aputxtms5maCR8pHROEQiEkEgntew/X1tbC3mu4tLSE9vZ2nD9/njZd6Pn79u3jHoo3OTmJsbExnDlzBsDGWLXdbqcNoent7YVCocChQ4dYh+VFij3s7u5GR0cH9YWaTCbcunVr0yMkmfbChQvQarXQarVUWF4wGER6ejp7wdPT0zCbzfB4PJv2R7NT/H4/rFYrJicnUVZWxnowPtTpGxoagtFoDAsIi2anuN1ufPnll+ju7salS5dw4sQJKk+64hH2FTgcDgwPD4eJZQu/3w+bzcZ5JSSLxYL333+fNvqNDdxuN3p6ehjPDxMsl8tjjkw5ceIENfOVLVQqFd58882YeA0GA7WiWiSECfb5fPjpp58AbKyBx/bCpVIp6urqAADff/895wf6tbU1fPbZZwCAjz/+mPHCSSiVSsr3eueddxh5aWtpMrwuJyeH9cuczp07R5UZvktO/fnnnwCAY8eOoa+vj9U5nZ2d1CsH2fhaUZulwcFB1kGNi4uLjK/gYwuDwcCJ9+2332add9RmyW63w+12Q6FQIC8vD5cvX8bCwgI19VcqlcJms8HhcGBycjJuSz6aTCbMzs5Cq9Xi6NGjGB0dxcTEBJxOJyQSCZRKJUZGRjAyMoL//e9/jBFsoaAVLJfLKZvD4XBQ37ZEItlUph0OB238gVwu5ySQhEqlopo+i8VCtbsymWxTmb579y6t46BSqRg5aAXX1tbi22+/DZvY5XQ6aQMuQyGVSlFbW8trgb6WlhY0NDRgYmJi0/6ZmRnGYVylUomWlhbGeGbaMuzxeKDRaKhVDdkgOzsblZWVOHfuHO82fH19HW1tbWhqamL9ul2ZTIbXXnsNnZ2drN7yFfFFjy6XC6WlpVCpVFhaWsK///5LVfnz8/PIy8sDAOzevRu5ubnIycmBx+OJKZ6YIAj4fD7U19ejsbERf/zxB4aHhykrdHx8HE8//TQAYP/+/VAqlVAoFJx4I1ZapGiyrBw4cAD37t2DXC7HgQMHAGx0QXNycrC+vh63VR5Cecnw3J6eHqhUKpSXlwPY6OI+88wzALiHxnN6PPz555/D9h08eJATIR/Qzd9gE/FKh9SYFlvI5XKqPMUCrlFuKpUKp0+fZkwXDAZp93MSLBaLUVJSgqNHjyIjIwNerzfmOR0ul4sx9lAikeD06dN4+eWXIZVKGXnj5h5evHgRXq8XHo+Hd9MTCpFIhHv37iEnJydqp/+HH36A1+uFy+VirKTi6h7Gug7tVpDuIUEQKCwsjOge/vPPP6zyCwQCWF5exl9//YX5+Xla93DbzTSbzQar1Yr19fW4uoclJSUp9xB4BJullOCdjkdO8P8BGCQ0hnF1DxUAAAAASUVORK5CYII=) 2px 3px no-repeat;
576      background-repeat: no-repeat;
577      border-bottom: 1px solid #BCBCBC;
578      cursor: move;
579      display: block;
580      height: 13px;
581      width: 27px;
582    }
583
584    .tool-button {
585      background-position: center center;
586      background-repeat: no-repeat;
587      border-bottom: 1px solid #BCBCBC;
588      border-top: 1px solid #F1F1F1;
589      cursor: pointer;
590    }
591
592    .buttons > .tool-button:last-child {
593      border-bottom: none;
594    }
595
596    </style>
597    <div class="drag-handle"></div>
598    <div class="buttons">
599    </div>
600  </template>
601</dom-module><dom-module id="tr-ui-e-chrome-cc-display-item-list-item">
602  <template>
603    <style>
604      :host {
605        border-bottom: 1px solid #555;
606        display: block;
607        font-size: 12px;
608        padding: 3px 5px;
609      }
610
611      :host(:hover) {
612        background-color: #f0f0f0;
613        cursor: pointer;
614      }
615
616      .header {
617        font-weight: bold;
618        margin: 2px 0;
619      }
620
621      .header > .extra {
622        background-color: #777;
623        border-radius: 4px;
624        color: white;
625        margin: 0 6px;
626        text-decoration: none;
627        padding: 2px 4px;
628      }
629
630      .raw-details {
631        white-space: pre-wrap;
632      }
633
634      .details > dl {
635        margin: 0;
636      }
637
638      :host(:not([selected])) .details {
639        display: none;
640      }
641    </style>
642    <div class="header">
643      {{name}}
644      <template if="{{_computeIf(richDetails)}}" is="dom-if">
645        <a class="extra" download="drawing.skp" href$="{{_computeHref(richDetails)}}" on-click="{{stopPropagation}}">SKP</a>
646      </template>
647    </div>
648    <div class="details">
649      <template if="{{rawDetails}}">
650        <div class="raw-details">{{rawDetails}}</div>
651      </template>
652      <template bind="{{richDetails}}" if="{{richDetails}}" is="dom-if">
653        <dl>
654          <template bind="{{cullRect}}" if="{{cullRect}}" is="dom-if">
655            <dt>Cull rect</dt>
656            <dd>{{x}},{{y}} {{width}}×{{height}}</dd>
657          </template>
658          <template bind="{{visualRect}}" if="{{visualRect}}" is="dom-if">
659            <dt>Visual rect</dt>
660            <dd>{{x}},{{y}} {{width}}×{{height}}</dd>
661          </template>
662        </dl>
663      </template>
664    </div>
665  </template>
666
667</dom-module><template id="tr-ui-e-chrome-cc-display-item-debugger-template">
668  <left-panel>
669    <display-item-info>
670      <header>
671        <span class="title">Display Item List</span>
672        <span class="size"></span>
673        <div class="export">
674          <input class="dlfilename" type="text" value="displayitemlist.json"/>
675          <button class="dlexport">Export display item list</button>
676        </div>
677        <div class="export">
678          <input class="skpfilename" type="text" value="skpicture.skp"/>
679          <button class="skpexport">Export list as SkPicture</button>
680        </div>
681      </header>
682    </display-item-info>
683  </left-panel>
684  <right-panel>
685    <raster-area><canvas></canvas></raster-area>
686  </right-panel>
687</template><template id="quad-stack-view-template">
688  <style>
689  #chrome-left {
690    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMcAAABICAYAAABC4+HLAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAB3RJTUUH3QcNFyMmV/Pm9QAAIABJREFUeNrtvXmwXdd13vlbe9/7BgzEQAIcQAIEQYKjSAokLVlOW5Fk2nLKmqx0J2Wp0k652h13uiy5XYqdwU7sSnckpZ1yV3U75apU4kos27Elu9NlyRXZjiiRomSTIiWZs0hwHsABJIY33rPX6j/W2ueed3DvAyDKKoGFW0UCeO/ec/fZZ+29v7XWt74lAIuLi7tXV1f/raq+zcy2AogIZsbpvrqfMzNE5IS/1/fVn5sZKaUTrtX9/v7nT+fn9e/1e052X/3r1THWa3R/37+miKCq7c+mjW/a+F/P57vj6/45bayn+wzXs4n+794Q9nP8+PHdS0tL31LVmfpGVQU4YSInGUb/YfZvpn+zp/LQu4Y27X31d933nurkq+qaa08yotO55npG0v2O+r1/XZ9fb2FMWoD9Oe5+pju//e+fdP3u83+j2I+89NJLn11dXf1bdSCTJnnSSpz2+/VWZ/8m+w+g/zD616yT2P9733BOZ5f4dhbCevPQHet63zVtV3y9n1/v/k9nZ562SNY7Gd5o9iPPP//8qxVKrQdL+hOy3qqdNEnTjv1JA+vuRpMGvd7kn8oCqded9B2THuJ6u/Kk7+vuiNOgQH8OX+/np813/376O/CkU2EavDwVWPiGsp9nn33WJt3ItF2ne2xOe2jTHuTJMOS0He1UcG33791JmWQYkzB6dyfp7tynsktPG8/Jdv2TGcLpfH7Sc5m0EKZBsPV+tp4PMe39bwj7efrpp229G5u2O3WPplN1cE/XQZsENybtnNN2pv4x3N1Fpu2S/SO6j6fXgz6n4gRPGmMfR7/ez/cXd/1798Tsfr4PMU52Oq4Hp95I9jPor7ZJ+G7STlEnvN7gesfXpB2tH5lZzynrO07Txtb92aQTY9rv+3i1v4jqv5umOSEq0r9O3/iqEUx6MPXnqjpxrk73812oMQmP968zyUj68zPp+U1bxG80+5GnnnrKpkVxTiWUuN4q7+96/YFXp6pvANN8hD7MmRbF6O7200KR9ed9CDbpSF4v6jIJtnQjQdPGOylK9p34/HowaFL0Z73IUNex7Z5Gk3bkN6L9yBNPPGHdY3fayu3uSP0dqH62uyP0w4XrDWo957gPEfqf78e4p4U8+0Y86R6711pvAUyL3vTvd9ou238Q/Xn4dj4/Cd6d7BlMC532534S9OnO8xvVfuTxxx+39RJlk/DtpAGc6k6hquScp+7EkyIn0+LV60Ufpu2q05zN/sOYFIfvP8CT5VEmGWN/h5w0zm/38+sl7/r3drLntt58rzdXbyT7kccee8z6O2b3JnLO6zpjk47nkyVg1pu07muas9b3CaZh4f5uPMn4Sikn7Jj9RTEJMnQfVHdck4x3Wt5i0qL6dj8/6WQ5GcSYBiEn+STrhT/fqPYzmJYxrRcopax5eH18Oi38WI2ulLImYTPNMavv716z/93rRXUmOZXVgZ5kePX7+hPeN5xJTmx3MdXf9zHyM888w8LCwgn30IUQ0xzWSYvhVD4/LarTzpWBpOl+zqRQ9lqjE2DCtbH2x9MW3XA45JxzzmHnzp0njYp9r9jPoH75Gkekc8SZ2ZpjrH/Ez8wMSSmHMY4YjZp2MDnniVGT/sPvRhxmZ2fJOWHmxj0ajU7AtvV6k4727gSklMg5M4jdq6iyuro69bv799fNptYF0X3vJKjz8MMPMz+/gWuvuYatW7eScgIEwTADEwEUAZDkBgtuYONlCCJgAuZ/N5QkCcP8avFzUH8fsZgNEoJJLAakc+2TjENi90RQjGSCJm1/hwlmgmRFFIwEYoiNxyPxvYZ07gVKUzh8+DD333cfRZXLLrvsBLxfjbl76pyO/ZRS1thq325O137k4YcftvUSOf1Ufdco/uwLX+LOv7ibZ194EYBdF+zkB956C+98+99ARE64ue6XqyqDwaDdGZqm4Qtf/DK3f+UveO7QS2uu944f/IH2WpNwdp2U/oT8+W23c8dX7+K5GN9FF+zkb7zlZt71jh9cswNPw8uTsPU0h19VeeSRR7j55lvYumUzK6MCpqTs9p2AAiRLmChWBBIIiqZEMkVUMAQTJZtQSCCKkDE0/h+7twkKpCSYxrhVMTGyCYogohRLCGvHoYD0xyGKScIUpC5AVSQl/0ACaxeCkJJhakDCTJEEiKAmDMx8XSdAY6lZQjHmZoa89NLL3Pv1r3PVVVeesDH3T+FTtZ/uguhu8v3o36naj4ggjzzyiPXhwtRjOf6+tLjEP//4r3HOuRfw5psPsOeSXQA8+dQz3Pu1ezl2+BC//I9+jvn5uXWjDfW1uLjIr37y19m8/fzJ13vlBf75L/48c3Oza3aWadSP5eUVfuUT/2bd6/3yL/xvbNgwv2Y3qbtOF0J2MfN6ka7nnnuOvZfuZcfO8xitKnloFBXEBHGLc4MTQwVEDeIkyAqa/Pdh9z5vaqgkUuz8akYGVATEHOYYiCSUQtJqkCDJsJJIvXFYNRIzLGWQQqqLEiOhqKS6gnzhqJ9cJplsiiXBSnfBJF957TEoJBKYYskwFUSgWCKnBkmZp59+mpdfepmdO3eu2USn+V/r2c/JWAX9CN/J7KdNiD744IO2nqM0Cff+01/9P7js6gP8d29/C5detJNtmzYC8OrxBZ547kVu/+JfcPDBe/iXv/xPkCnkvHalm/HPTvV6v/SP25vs3mB3fKurI37pX36cfdesf73HHriH//2X/3Fr/NOSTZMyzn0n0sx47LHH+JEf+REWFhd8pzcliRtyBVbFYlcTN0bfpoWEYiaxENTtjOQwByOZ7+r+b/zacY5YICvH/iDmBurjmzQOKMlIWkPThpohkuN0iwWI+YrNGkdeQswwcbhlWEAzw8wXazZDJfsYMP84ghXzxSHip5rB/IY5/sv/+0dc96Y3rdmA2uz0YDA1EHIqDNv1KDAVvk2yn64vOujHlqdlJ+vv/+wLX2JuywVcfOkeXj2ywGtHn0C1Hov+uUsu3cNzzz/Hf7vtdm5959snRknq6wtfvOOUr/fnX7yDH37n29fccBdG5Zy57fYvs2HrqV7vdm59x9vXJeqtx6WqD+T555/nyiv3s7y8TMLhSgLMElkURx+KENi+7uzi0EgtIUCi+OmSwIpjmYTSAIN6uiSDkkAKQgp/IgON+yaGnxIBz/rjcPckj30LU5I5rCsJsiYsafgjCbXEUIwiiqq4e1J9FjVfNCioYMlPC/eJIFuisTiN0oBkhllBcmJlaYnL9+/n0KFD7Nixg5xza6hPP/00S0tLzM7Mho/lfpGicW/hyyCQAv75Nuw+UOwi/o7WmXLfClhYOMaWLVvZtWtXG7TpRibrMx/0V1j34XcdT4DBYMA933yQnRdeymhUOHZsCZFEqrurORRZHRV2XrCLr33jft596zsZjUbtiuzGqQeDAXd//T52Xrj3lK53zzce4G/d+k6WlpfXOF5jSAhf+8YD7DjF8d3zjQf50VvfRdM0LYzqv/pHcH9napqGF154gb/59rdz7PhxTPCdNSliisYuK5rjIRsWPyeJQyGhWhyNCEn9sbrPIGRJmBRfeCb+kEXQwDZG49AFIYmh4kvmhHGYISTEGl9YBimPoZypvx8VJA3R5IurMcdrSTrjLuGjGJCNpJnGlCwWp6CRMLIoMCBhFJPYIAxNxjVXX83v//7vs337dnLONE1DzpmXX36Zt73tB1g8fhwzh3OIObyrp60IWp9XNlBfRtkCPqWIM9T5x+GhDIQN8/O88srLfPWrX+WWW245IeLVPvvubt49biZRMTDj6MISGzdt9i81YTjIzM/OMjc7w3AwANwp27hpM0cWln0iOt9RowruSAlHFpZP43pLJxAB68lnZuSUOXJa41tCIuQ7jYBWf9fnP5kZo9GIlZUVLrzwQpaXVzxihGHJEE1ucdlIkgOwKMncj5Ds0SjfZd2R9re7AeWkGOFUhuOrrd+jFDPMEkJ1XGPhxdY+cRzZARPJfR9Jiqm/P2wONKHJwJRs6jt0Su5nWHJfQj2IYBQIp14xBkI47OE/BVyUFI6/KCk5zJOSGY1W2bFjB03TrOGtzQyHNKNRnTGQghWjWInxGI0phvtyNOZg0GAU86hmlMYw9c9qMYyCjgpHjx9ndmYD3//Wt3LPPfdM9FtUlYGqUko5IbzVdUi7WHw4M8vc3CxzczNsmnejq6HSphSWVlYBWF2ZY2Z2tt2tuwuw/ruUwszs6V2vuxi6TlYd48zM6V+vC8/qYqgnZT861Y+dP/bYo/zoj/4Yo3o8u1PgoVRJiPqJBRkRo6C+oxchSaGIxC5uJHEfwDdqN3xTg+wRKXd2EyRIBppjy/fLY02CWCzTxuHX91MAEfdPNJESqBopFcwyJurAqg3jWpx6DqkExVIiNwIDQa1BAWRAQiE5XExJ/URCyQgFIZlB9rk8cOAAt912G/v3728jiMOZGVQDEShoSUhuEM2U5CecFHWIGbAzlwZJghRDs0AJ2FVdu2wUMxI+XyqFpjF27drF0aNH2bRpU7txt455fcjVuCrE6Ds6DkdW2bF9C1lg49wsG+ZmOWfjHNu3bGL7lk1s2TjPpvlZNszOkMTYsW0LWvSEHbhraDu2nfr1ztu6haa3uLqn0qhpOO+0rncOTWcy+vmMesLVxVgXdimFpmligWbmZgZtLN8vFmFZbbBGHfdSwo9whxot8ZAdMydzTG9aUDGKGlZ8QaiGU6wGVtDSUChIY6j6gqOBTHPScZj5qVHUoAg0DaYlIIWhlj2qFUhBDUwLNH4tMCgKZqRSGMwO+PM//VOGgznPe2jDYGbIvfd8g5mZAapCMcEEv6cK8RpFLLFp06Z2Lqvt7dmzh4cfeRBTQ1E04GXBEG187pLSqNKYbyBm0IQda6MoDUbB1DwQUvyE1tJgKFqM1dJw6Z5Lefzxx1vb7B4EqbtSJjmmXYjVNIXrr7mCI68dZmaQmJ8dsu2cTezYtpkd2zaz9ZyNzM8OmRlkjr52mBuu2c/qaHRCZGcMSxpuuGb/qV/v2isYxfW6GdFqtE3TcMNpjq8mGbs+xyRSX520GhMvpfDC889z7XXXsdKsYMV8t7fA3ChYJmWgGKkIlh3SWeQEwJDkp0UJKKIioGNXW9R3PnKKEK+E32BYDlxvUMTQzEnHIREQSCQaMSRn9+dlvKOmMUr3aFRKcco43JIUicWU+G+3fYHf/c+/x6c+9R+ZGQ6ZmZ3jtz/1Kf7PX/vX3HPvvTHaQsYgKUnFo9C5oBirKytcdeVVvPjii+1zEBGOHTvGxk0bfXGabyxGQ1GHmaYB4YqRLDYIIXyw4vDQ/HoJQ61BTHyPKeZ3aMbxhQXm5+dPSDCaGamPt7pQZRJL8qYbrmP56KscPnwYEZgZJAbZ/5sZZMA4fPgVlo++yoEbrqXCtq4Bdv2bm9/8JpaPvXZq17v+2hNgTXcxN03DzQeuP+Xx3XLg+hNoGN1Togsxu4umnijPv/AC+6/YTxlZZIo1YJIf5yLmBpeFMhCwEg67J8QkVacyRe66eLg1aRtcUVFSgmzFsx3uWSKSkWIUibiSpcD1648DMU/ggTvP6r5PskhrmEMfRFEJKBcZfJPkjq4nQTA13vk338mHfuJDfOXOr/J7v/t7/M7v/A53fvlOfuqnfoqbbjhA8di1/2nZr5kU0YQlhz7XvukannrqqTW2snXrVpYXFrBmBH5+OBnA/CRxP0NJVjySZoo2DrLcbhu0eDTORONnxde3FUQLqoVmtMreS/fwzDPPnOBe5J/+6Z/+F/1dvZ9V7BqHiHDDtVdy51f/ktVRw9ZzNpMkMRo1HD16jAce/hbPPv0k/+N//941Wcr1CoNuvO4q7vjKetd7gr/3t98zkXJ8QpTJjBuuu5IvTxnf/Q9/i+effpIPf/DHJiqO9EPX/Yhd9UuWl5fZMD/ProsupJhDBEniOzaCWMakuNMsjp0znhzTSv0wRbL4yYCQyWgliJhTMzKZRty3cNhDJNgMY0ACz66H333ScRSHVSnCrZbdfzFpc4okFLHsvkEkBE0E6YSPfXxQrHDF/suZnZ3jttu+wHPPPcv73vdefuiHfpiVZrlNbLYJy4Hfm9uSn4jaFF47coScUuvnbd26lccOPsa27eehxXd/JO7LQAZgJRZ84+epZM8JeYwtIaKIRZpGxXNFLTvMIuye2LRxE48++ig7d+5c48/KPffcY5O4+11nvOsj1N/Pz2/ggYe/xaNPPUcTGHc4GLBvz0Vcc8U+VlZXpkrgTCrPrNf71pPPnnC9a6+8gqWlxTUOUx1T/VmfGbphw0buf+gRHn3yudavaMe3/3JWVpZPYOXW+6vX7CYcu9GUpmm47777+OAHP+h4NxYlSdr8gOGOY45TwCpIsRQwxkjqxi7iECCJY3MBj91L8viXKSlFrN7iG6SyrOp1OaVxEAlB1EPFyTzSVCkjmgSp2XGNPALBO2kMy0JW8YhW8VNpODvLp//g03zjG/diCDfeeAN/+8c/yOrqClgOLpZgA8NGKU6vOI0QhMzK8iL/9fOf58orr2QwGJBz5v777+etb/l+jh096rAzCNApbhMqRItTRVKHGBmcF6CYkSUjWlr+pNNrIodiwlNPP8WuXbvWJKoHXew+GAwYjUYnxPS78d9q3EtLi+zfdym3HLiBuVlP1qyurPLakSMsryxPrNfuhnL7hLKFhePs33cpN9/4Jubm58BgeWWFI0eOsLBwfM3i7BrytLrlhYXjXL1/H993043MzsyAwMrKKseOHWNxcWEq6a3PzO0nSFWV0WjE7OwsMzOzLC8teagTQ5w8FVljZ8B6bD/Ig2YkUaz4I1Tx06Sh+E4cxuIZcHdAU8Ak0+T2ihtWzYSj1NThScfhYM4dbne6fVcV8bCx5zpicanvvO2qix+bepSrFMgizM7O8h8/9Z/46p1f4f0f+HEA/ugP/5CVpRU+/KEPsTxa8XAxhpRUM6C+IFViDgqbNp3Tnso153HhhRfyyuGXyGmGOjtJxfliqYbFPX+hpiQKWIoNB1CFQYrTsqGIRLTKT+xk0ChA4Yr9+3ng/vvZu3dvaw+D7mmxsrLCYDBY44TWf3eNsJsPeeWVV9aVdekvvm7Uql88tLq6yksvvzy1sH+aSkh9NU3T+k0iwuLiIouLi+0J2K8zmERP7+Z2qvPdz3EcOnSI6667jtXVZTQZ0pgf81KZrNWgAuNWrlJSSolEWPL9WqWGOt2eJSlaguJhvusnEc/yV0ygRkkpiH+QRSnCScfhnCl1smM44BVIdVnBnnFOEfpMiBVUnMxYeWFZ3FP6/z77x9x5x528//0f4F3vfAdigpbCZ/7wM1yyezdveetbnL8lCbNC5cAUJ7d4SFoSS6Nlrrnmap555ll27tzJcDjk3HPP5eDBg1x2+RU0qytgQol5dNaDopactoLFCVyQLKhCSua+hQTzWD33YwKpcUaA/8ztbBRRs/bk6OPsLkTRoHj3C/Yn1Rv0/ZJJBSarq6troEr3c/XPmvnuQ7FJmfu+sMAkI+/WpPQTndMURGqCr8/6rD8/dOgQ73nPezh27HhEYzzk6Md6pX8bFbAIhonDJKhoxWLXTwFp1NdPY8EgFzT8Dv+AOwbOrjWPgKXKbfLo1CmNo15HPHFmUhgTVQh+lOOWLM641aCFWEtbj+cgyo/+yLvZtnUb3//Wt7G6OkIwfviHb2Xnzgu48c3Xs7K86idNzTGUoLlLxUdOiMwI1159NX/5l3exbdu29jkuLi4yPzvL8dUVSoNDtDjJLKBRI0YmkqXOcEQSFI2cShKkLowSSUlLkU+CZMbi4iLnbt/O8vIyMzMzbkt33nmnTaqK6lZx1aOuX7vcx+yTanq7MKpbfNR1quvu3F8wfQp5d7ev4+v6Al3o0/eX1hMHm1aLPEl8YWFhgZWVZd7+gz/IatOEPzDwya8bdXLoQwnqglR6OBFNcqhDOLbq22dEIiM513iUR8woyZ32XJ3sFDukuPtSKhnxFMbRJgZjx0ymIIM2CWkBO6xS4FNk7cVQC1jia6UNh1rOfgKotgnLFGOWDkFRTZyuUmodSaX1BNoYCF+548vMDGeYn59nZmYGVeXwK4fZef4FqFkEH2owISElnil+X77Ak/PQLBYzYNKQbNDys2rEziJQkFDO2bKVu+6+i71797q9dxNp/d247yfUnMC00Gw3kdNNltXPTitb7VZ91YRQn6zY/96+L1TDq30nvY6l+2fNldSxdU/Mfji3C+1WVlZ45JFHeOtb3sZodTWIbL4raTAKa8UFxTlOTlfxZJRU34DkcXuLRG6p4VdAszu+QZZTBSkOY6zu/MUJWaYRTTuNcfhxlaIOQ+Ik8ARhqZBNPOyMJFLkFDTGX0wpJUCYiI+ztaHY7ASsGRuemS+iZCCqEbiKMKv6ovRxKbccuIWDBw+2lBIR4YVDLzAzHJLQCF1bhzZSPKnZEjiDvqLmi5sCyfMeJpU640466uPT5Pe4PFohDTLD4dARQ3e3rYbdzRB3F0mfqj0pD9CFL12sXiM+1ZDrd9WfdSejv+C6pMWukXezmv3/uhCpe63uoqvjrYuq6WHOetp1v3N+fp65+TnMMpTShjOt3QE9ROvYPI5/83oKlRL1FIrzNSRyAJXFamBNLexzjJ78mqq+YFJxACZ4dvB0xqFBFycpUMhmlBw0k6CxWnJDdlqKnwR+gezcrmD+WkR+tN1/jUJARRM/tSg+1mSU8K80KCGkgiEeoFAfkqkyt2kD8/PzLVlVVbn22mu57YtfYLUUNm7cgBYfmgUb2BduHJfFKBRnAqRIXBZnKIuCNMWTirFo0eKUEwEdGcuLy2MbuP32260LfU6m0zRNm3Q9XdZazDIajRgOh+2C6Auk9X2e9dQpJtU+96HSYDA4IYk5TVh4Te1w+Br9U+PFF1/kyquuYu/eS50KkiQoHtLmCHJEhGosnRrPD6IgOaIl5rAJ8YSYJoWSUSnk5Bwqq5gjJUyLR4tybhm8vkA4rXFIMmiEkqSlswseyclSTxL3XzyRCGLF5QaiZLZSw2t+JuHObaJuAuo8KLF6i/V/Dgu1pk+C1hEOcRLP8D/1zFM89NBDnH/++QyHQy91Hgx44IEHKKUwPz9PaZq4txpVq5WINZIXLoJGwZa4RyZtrNzvQVGSed3LzOwsKQm7du0aEw+7jmyfaDiJRtENuU2Td+z/vMvd6i6++u8uhOpHlyoEqousr3LXvYd+sq7eU9c3miSjWRdJ9WO6i7DuYIcOHeLHP/B+ji0skSWyA6kWKKU2x13LUn3HcuydUoSjgk6NJqwUkNziYMtK1hTwSONKvggk+WJJgbFNGswyScopj6MN+yZjkEAbQwYNlMwwfKKSPN8S9u9JNcmIRj1HkByliEfGRoKm5KzxONMkxpCjTEDw7L1FWUESpWgIX2SLkoKoGMzC/iuu4Mtf/jI7duxobWJ5eZnLLrusjXh2Swb69tO3iYpQuqWw1fftRkyHw+GaIM2gL0ZQv7juntN0nLoZ9a5D3GXdttTfyHr2F0QdcH8xdk+P6kt0F0w3RNyv0OtH37rXn8TA7YsorK6unlBPXEphYWGByy+7jMWlZa+YK8kd5sDqKejfRkNmgBaPubvwgNKUQYxRIZnvxil2VC3+WREnFOILysSDrKoCNAgShU/J687l9MeRygCNYqriTA7PyquzcX0z953fiIRMtnEJbQ7elnrQQHMhaaIBp8cHLPOKkUqV0VYvQsy8ZiVqQ8Tpu2OonmBlZYX9+/dz5MgRtmzZsqaMtm8bw+FwzabaZ23X1+zs7Bok008kT5JYSl0j74ZtR6PRGojV3fFreLOLxfs+S5f+XXfe6mtMKputi6DrVPfpIX1fon5n15/o+g2T9GHrOJaXl9fkbUoprTJJHWddwE3T8MQTT/COH3oXpSmRqnP6tyexvKRUUMQG7luY1GgqiSF5UDynkSzwdZSamkQxj4dXsyWyQE7uvFrUwWrKEIVPOqgV36c/Do3TS6VGsiLWr2PlkAxYKo5zaiYcozHncGlAGEsgJUUdObhn4ZAmp2Acx2JHpBO50tZvMrE2ny1RHKXA277/bRw8eHCNXX237Sd1C4e6cKceMd2sdI3ydJ31SYXsdYDd1djdyfuwqgt3BoPBCSJjNRFZrzccDtes+vWUUvqJwvr+4XC4Jsxcd4+6+6SUGI1GHD16lAcffJD/4e/8HZaPL3nVWXCSPLTpLB1LbqopZGsQT4aliB5pyaTAtwWQQfAhtJCDqaqRlCtBabBhwnKJIiOLTDfQSOQrTn8czsNIHhUL6J0HOGwzJxUWEZJKsDIEy4ZJ9ipDrUojGg67JwuCKxwejuc1LIfJB8YXEY9WRZGXImQN1i+GpuSnWTGWV5b48Ic/zNfvvZejR4+uQTffLfuR27/0pdhCiAL6MUmM4J7Uyq5WmiU0kmqEo2oj1Z9JyLVU3GqRFfU5Cp+ge52uDx+7UJ3kVgFJWPO++pska+Vqqq+FdcbT+S4i4tJqRdXQUCSU3JeTljM1HA64+qorWS4N2VJ8jQYBLpMoQUWHAUKDix9U+ptj/cBI4nymAEvxQBwe+XXjHlJBtdIQ05hwh6JZSPo6xtFm68f3i4IFnZycQhBhnJF3H1yD4hIlsCpjxq6M6+NpqTIhAySKFKfiD5K11A93xI0qFlRTqV42HLkhEyQJDz74wASxD9pn1SGutQteqM+acRBhLBI2wZ7Hw2+t6/lDh2woQhG8drkaazUUBI00ewpqDClR1EXGqiZRq2IR0jE5HM+avZWITzsTMqInEb2oC0BDoCxJ8IoiopCCy+OsS6c1iPiR7xFFI6dQvqhiCjHlLfwQN6Lx/Xssp5iQrBpK5JJbdqrXSYiF1kegDM8ZBDkvplIl5igHLSMoH9XZFIOSa2WdeXVbZGpdWMfxuVRHH39fLFvPVai87nH4JsDaZ6WG5SBFVl6X1PmHsV5QhEQcCZcsAAAWiUlEQVTN/3S+VfIipBosE0FLzWRnf1Z4Vtp9J/WAXcpRvBVUrprIi/vGxpG2yOWf5FkJRdx+Bh6DeN32nCRKFyV2No1Yd12ViguMpZRiB/AEVor4u0VM2+LYN/Hj2LO6cXhGFVjoVDjetnqsBMUnDuVURS1IpOw7TqP12K8Lw5Nm7vA5dUDVs8MSnl8hwpKhzKfqIgWu3RScHgtjSw4l6s6SgtWKuhqHU9OkzbYWMyx1ggPm7FZJyZ1UBIsyToschguG+HcXxZN+kdmuQVdNJRJw1jlVtS2W+k6MQ8W8bDcMMhWjSfgmY8Vza6o+P8Hd0wjFWlQG1mNc8OfqGWev2WgipKzqBuf+T4kyFB9f0TzOktdEqLoWlpl4HQaN86LsVJ+VeaTvO2jPg6B6erRDIIdR13oD/02s+uQTSJvrdfwpUTBjA2sTR9IINlCkyWiuzM/sD0DMSS0mTkqzhKbiANpo2aClEXLc2LhYP7Kfgb/rSSvWtMk2y7G7hbSHVUigtcjIKMUX60iEQQOWa/DU0BIs2ahRdqLOd2aOihZee+UwRYsbQ3a2qmbIxb1hC1U3oQ1ZjRm7GnkFEXKLIYmEn4zRRYp6kXofFYIEydHLB4OK0RmHf5eChOYVY2q81edWhdrCc3B4GBC3as3Fs0rFoaDXllQYowEVfcMiiJh10Yt2TqzkTGE/GeS7OkeDFD5CSfFnOFxSAjRKwKIUxklGvC4TGRSk8aIXk8bLO1NyxuQgao6roYaRWlSEWZhiIlFaAw+tpMANKeHx8Ip5Ww5NPDj1YnpPPDmFuoqMWRz1VfAMgvgnhpVwxIrn5Er2IqEkvjMnySjFT6SUnX/0HZij44tHWVkdccnu3Zx9fe+/Btr4DuvUBW1hjiTfL1IpNAKDyNiqFefN+Kbv8Wp1LaVKoSdi89Iq7/lRlc0jKJqsfW9JNi7cJ3mMPRwlrUzTtoYldokorjZxcKniO4e6DIWvfMVLSXODufU7wcE8yVZq2FDHO3xj1SeSVr0jWUE1ofL65shILC6tsG/fZW3M/ezre/uVkBJVZo5HCacxyDruuJkTzqzSHrK4WFqFKWLkyOWk6kTWLHllZhYP3UXZekRliFj4uHorBSFMzOPdFllaB8w4F0Y8sqJVXdzEaxnCaTXxMkpxBVn/uqSh9FcimuEOutQQRUrOdkU8vBo+kNcCvP45SiI0zejswjiTFodLODaUCJ21YbzgpKSICnn9rbSliCYRprOE5OTOoLg2kJHIUQYq2aMKOVVpRtpoeKoymVLpy0FbSA66UjinxRLJ7RfLGUWcyyMOzCLC6pg4uUaTmKDZa4fropFU2miNk3BaXgdSwqlLige1amVdcvr2654j9zfOvs4gWEVxVW2rNc2iHg7P7qiJiDujppTqtBSw1CDmcXRWidqA8LOtuAYTTlOQKOUZkwIrv8ZFugbqWqzSOulxZBQNOU+HLSkcNi3GAEHzyIPDGkxRF0cKCqpiKaT7i7rwWBX6ipNINbtoQHJGJjmFbEsVFNOWkWq8zjkadRzDs68zBVa5wQ2DgpAkObOsRFSiCsdJxdgZyKHm4OFbBhG4SZW373FzHUR7lKBGWIT2UieLOtTIaUQtmvsblT7txDUlkzRXIqUnk5LnHyQWBknIqDvFklxVQ2sCLBYdCcmGWnJJTvFQoRYhDYKBKhGxyQRPKLVhz29njlxMwDVaObs2zjBYFUmdxqzF3yI1l5DaTKSiaEkgrhhHEmaGmc2bNjM7mHF4o5HOi2qvXEJu3/DC/uAQEU53FokkWxDGUtVX9TLHpDkUx+tWPBYTm8kDl6jJngjy/GotAfUQclRTen11VMah47BdUUgpBJ6DFaCUEAwzJGVmN8yxYdM8m+Y3QM7Vg4kkkTE7nJ06R5VHZHEAnV0bZxysiqysefioiDCIWmQstbyYZMllKkMndX5mA//3b/w//MnnPsett97K//qz/wuriwbZd+IaXUo11m8pdFIjc12MJJGbiOIUzFzvtR1P01bOEUS9lDOPPPQQr7z6Kju2n8cVV1zuSStxaUxyiCfXa5iHgEuQ5VxCMORhUE/IVapQUGFTSqwsL/E7v/uf+eY3v86RI0eYGQ65/PLLee973su1N1xPWVnh2OICn/+jz/P+D3wgAgedOTJXRS8mDCIjXSkjZ19nCqyKrKMUT+J5mt4CK9MamAZRKhnMzczyG//2N3jowQe56aab+PrX7yUxJCWLCJLDnMoZwlwNIqc4naQySR1Mlcp5CQl8SSn8F2lT+W5YnpRqSmHvnktJOfHoY4+ShkFYyzkSSNYqjbcyXuKEEq1Z+6iuz4RAcpw6szNz/Pmf/lf+3k/+JN969GG2bd/Gvn37uPiSSzh+fIGPf/IT/Itf+iWOHDvGRz/yc+Q8OHGOYuJUPNTbWGkTY2dfZ9DiKADFG5aIppYe4KJi2qrsIQ2iwuzcLP/+t/4D9993H9u2bUO1cPPNN6Ml5F5qWNZLgl260Wruo6qMp7arllrxgFHtHyFgxeVUUggwN5W8KL7INm3eiKJs2LQRBQ5+63FyErSx4PxUiFfpGR4CdqFwRTUFT6j4Yo6SycEg8cd//F/49Gf+kBuuvx5B2LZ1G9deey2X7N5N0YZ9+/axuLTEz/7sz7Jnz+4WgnbnyKNmrhiokS23s7DqzINViaalbZQcNGXR0AbKThxIgllhbm6WT/32b3P3XXezY8cOzIwtW7byD3/mH7K4shzdiYxG8IRfKzwfLMiiYeAaxfnFI0ollMilbY4HRaNqLXnmXDJWCkVgzyWX8sSTjzOcmWPzhs0cOX6EJ558kt2790TysJCCJtBUVTypQoBGyRp98ELmrHgTl8OHD/MHf/Bp9u3bx2g04qMf/Qh7du9meWWZLENKafh3/+Hf8/xzz3HFFVcE6zeoJDFHLvDhVBlVF1FGcoSlzxrcmeVz2ABSoYTSRAlYoCl7D4eggc8Mh3zmM3/A7bffwfnnnw/Azp07+djHPkajDefMDUNhI1rwBllNVVlcWvRdNFid3quCwP7aGo5ZioYr3gekcnA8cqWklMMHSly+7woee+IgOQ3YumULh189zLPPPsPFF+9qWxRr66iH6oc60SxriBCrO82ShJQGfPozf8TevXs5duwYv/iLv8imTedw7PhxhEQjixxfXOa+b/4V5+04b1xGGwVHqXK7teZSSnTZqnUTejaSe+YtDu82mkU6HYEyYh5gFVNSHvC5P/kTPv/5P+Oiiy5sDeOhhx7i3e9+d0igyLgntYybtm/cuJFf/79+nXM2nxPKEwnJ2tJKUu0BIerZZIWmKdx11x1ITuOWXLjgGSHfLyS2bN3Cls3nUFTZunUbrx0+zPPPvsCFF1zoY8rR6kqcqGgaogiR6fYwrUfWBnOzPPLwg2zffi6X7buM7du2szJaDSq28OLLr/LRj3yEiy++mKNHj3p8S4RmtQkWLeHZV3GxqvAXGFNbZvnZ15myOEwsIq+1j0EmpdKqSKDG7Pw8n/7MZ9izZ8+a6r9zzz2X8847b90vKKXhi1/8Eu99z4+5+28lEhgS7EpXscgpuzyKKK+8dIiLd+9hkMQ1YtMIs2FIygS1pOo6hR9hZLZu386hFw6x6+JdjJrGe3lHEZEnxx37ayTzarPHJmU2JGNpyWVZLrrgQlaa1SBOehRr1wUX8NnPfg60RPbeN4Dl0QrLxxfbXuKo530oNm4qGYIHdhZXnWGLwxVhnJEq4lDDosREjZShrK5y1VVXsbS0dNpfsLo6YveuXWhxDySJdy8ySSRV1LIr1WlpT565jZs5fuwIaWbW9Y0sk5JGHsPFYES974KKMDDH+0X9NGmaEs0nvejHlFbqsu19h4euNdiBRYW5uVnX2F1aIqsXz2jxSpOl0SrLr7ziaRJlXAVnRm6VA6tgW/FkYuuE51pOefZ1Ri0OCrkMKGmsnySB2ZNAo0JZXuEjH/kon/zkJ9bUY59//vlcffVV3tpM2sLTtrZPzNiydQs33ngTy6tLkSj0uolkng/IOHFPa2mjGlu3biJnf2+tx0gdSYFg/XPs+AJZ1DsUkVhZXuDSSy9DKYg5M9ijYt4FqaiQcnFNpWxYyd5ZVYSiDeeffz5NU7j77rv50E98iIWlBVqhm5JdtsYysxtmKKPG+wCKK3VX9JSTM38tNFqrOksKn+fs68x5ydPPPF116sPochSF+C5emyFIRGQ+8YmPt7W8zz77HH//7/8kb37zAe+akw1TbwxZBbUV7yCkVW81HOycDG0kmh5KW8stVVM1VUHxCO9aFMvgnKnXXn2Nlw4dYtu554IVFldX2Lt7D6Vx/ydngvIuURIqQYyM8leSJzsju52ScMcdt/OlL93O4uIiBw68mb/7d3+C5ZXlqGly3+uVl17iV37lV7nxxhv4n/7B/8xoZTWKZizyi937SO6UR4vjFw49z00HbjprdWdKnsOakFUxjQ6exYnehdDmHtdooIWPfexjlJDc2bXrIn7zN3+Tv/rmN5zuPYrrFHXcrRaG6Ht+MYNSEFXKyHMSpp4LMNShkXmyT83afm+VKFi1/I6+eoRnn3uGrdu3oRiLSyvsufgSmlGlo9decNCkWn9hjKJGo4QAcqNOFUmmFFPe8a53ISJs3ryZ2277Iv/q4/+Kl156iY0bNoHC5z77x/yjX/gFzr/gfP7irr9kNg+pnQHaA7VoKwEKhjVB3bez2fEz7uR48qknLJNbdQ9LtaC4qkDUckZvmSXJM9Sf/OQnWxmUgwcP8lu/9VssLi4g5CASWtCVkq+TWmgURfFAiHpVXaZg9YpHtCza9bbyjeIwaSYP+NrXv8auCy6ClFg8vsieS/d4F9bIp2RxkWLNtLXX0Zpi3M8uKPBaO8DEybi0uMSv/ZtfY252luXlZR5//HEWFhYYDAZccsklbN++nYWFBd73vvdx0803U7Q5YY6INsaVGZ+Sy8+8+PwhDhw4cNbqzqSTo2BRqFOiFtuL8FMIFFA0+jQ03p8tZX7+536e5RWP7uw4b4d/Pqjpg2gmoqqIGk2IhlkqFINGjSZOBFXvEJpKQa2BQqhIBPtcFGu8GaIUb86+aX4TBeP48aPs3rMbbUY0USCF+omgRKticzHjohpL1JeHJqUpTl+36HmtpmyY38A/+6f/hAsvuojRaMT+/fu5+aabuf6GG5ifn2eQB/zMz/wDvu+W76OUZuIcWaijazFUCqWRXlHX2dcZcXI88eTjZpJoJYTa5iJjwYFKwo7MhwscZKGMCnd/7S7edMONbJyb94hTkii2DwVwAaxBZNCWt0rkARSviZBilARZw1hTLcgfh4UsKvEkpPEXFo6zcdNm12K1VjmrrfKr2lOefmg1WECdS+b6JjZuqFgpLHhgYn7DPMeOH+eRRx7m6NGjzM7NcsnFl7D3sr0cO7rg2XCxqXOU1JuqJFwsLQ0yh154nptuOutznDmL44knDPHqORt4Ew/VHPUXIeyg4pSLUK3TkHMPcaiqTeFwJVH14d2g1ZyqHmL1Xq0aelUaurBZooVCrdgLmJNrfTmtTlGKL9boA6HiDUwkh8SPiod9XUCD1EQ31VSbqsQCiSYsYhJtvdplBGY0SRhaFc2JTqbqQoGCYqc4RzUhmtOAF188C6vOLFhFzYr7jq5BIdeooZBUQg3PXD+1lOiyGBhe3dFurGqQatvpE6JKLjXeQ6HVEKoOdpwQxXMY3qXHG40UDGk80lTEe+URkvtaqScWPSrCnyBgVJXsMUtobtqGj973O8iUNCGr0zj3KciNqr7gBhqkkLZ3hYXBW0uzP5U5MhOn47SaT2dfZ8zi0Ej21cahRLzes9niESh1yEEJdZCIHCW1tr2UiF+H6Nmg0RWxrbQTV6zTKmxEkPQ6X1xlHNUKAwnZzuR1TqUEEz3V0m9DdeCD01Atz3jVYTSalOLYvwRd3YoLOlSVESxakdnIGzhqRJWiM5IFrUXR1z1HVb3x7OsMSgIGEhmTG6L/AsGXkoznMGosn+QVdC01PYWyRwqZ+mjxS9u1xHddBMvFdYdLaRuyCDky8jXWFO1QrLiUTklRo+Rqikkt1MktZEejM1UIK9RbkFQV1r1iRC17UZVEaxcpURUYcEqhiPsz0nj0rKr6IfK650gH5ezaONNODqnE1xAIIKIsVVXDosmIR1b94edsnUIoGxtRLm1OoVXwVWtVDnNTF03VeM1eUpqsbdjYRKKvsg0zDmUkKSKlI1Zcuw+NW+VWX8ePIRdSbheLjFwNBD8NBiWa1BOOe/gG5rMShUoBM78Dc+Slv+msxZ1RPkfoQbmYQY3qgI4E1QYzx+Zq3uAU9SyzVawfjd2LetMUxXtEW/SK8B50OT4T6iMaHY5QShVIEPH6h+TizVWlRIMoWFTRIjTi/kkJyCYWbFtTirijXlXNVUucHrX/t2vrWiNOlykuueNhZ1opTO/zEi20NNqhvc450qawYX4Df3XffWsoOGdf38PRqscOPmYpFG1ShlSyc5kyUQvurXSlNBGFicBU1F20WlPquk2VLlLFvzUUsVPrRIdvUCKqU6nudY83acNg1tK9MySvIHRIpeTk6iWErGfkMaM/orcPQ1rdbvdtShrXkVeyjCilqrkXVzqR6NtXhcorn+t1z1HxnNIrr77KyspS9LUIXtkayFUZPbV1g7WdWaPXfCsKYViwVySawXTeYIzJjq3av7Tq7bWPNxEKr+OQWrIs2p6I1umjN+011oSvrSfCyOrvpBaGhSp7R4e3+px0tXbbga+9le/WHMljjx70pHg4qSqCyMhLSU1c87XqzVpoCIbUjSuXgKYQcDbI4vKZskauvmrcgmhGJSRzglflSt/RtsBcMsc0t4TDksbibN4ZKSrwxJCiHnatRVFt96DIrkdttySX1K+ZE4v0dTXmFCdUFonmMcEOiJyMiLbq79+xOZJOo4ToAe6+j7WLX6r5mDe7SUGt8QaQHgk0Fd94skb9irR+XKp6KTIOr0t0lR1InKhrxkGba5LiRNRstZeGz1OTooePpjVtjMfPKuar6kNXKqq6ovugfVZEi4BoU2AaWsUhB0vQ1uJ5EJWX3605annVIkKREp1Ds3cBjRZZIeCHiIuU1V3FzBscinn72kQJ/K2RSIwFIJVHFUVNRNutCN820SvDdbAij5E1yIdGrhQMIWTjSyvCTU7MRqjUhZ4tdi6NZF9oZsVNSLZxf47sLYNTZMyl+hrRMyKpRueMyHN8p+coKqBU1GnuGCWVttNq7R8jql6LbnGaRu9AojamCm1HcUtUZDZutBqSQeoVj2hBtbgGcJETx4GXAljxZ+bs6WjtXIxRSLYq6gvDAqKGwkpSIoEM0gQnwSo1SZgp3tO8RBsJgnemMVduG+NnpbUeJ/Fdn6OBVme0hmKJTp9tljlk4iWq8qLfRirxuTJuQqPRJqgemVrPqugYlELbqf62WHSASuIdf1o2cNDMq9+SQqbexp2anKBo0fsiGMSR3EvW0ERfDRkYTSPef1oEHakLrJVEoYE09Aw+CVd/tKCwZ3IqSBn4Qygh+fnXNEeSBt8T4zj7rMZzNPjKV75KbbLT9idogVhIeNZjrdvaqsrsmESuo9Mjq6NCMq61DvwvXdzr35GihUBtKmNRm60hNh05OMfHMZQkqdN2rYtvg9LRJiSqhm0kO10BoZUBSiYtDBtLhNSuFFVwOnlo+K9xjhLfG+M4+6zGc/T/A8/G/snZpSWJAAAAAElFTkSuQmCC);
691    display: none;
692  }
693  #chrome-mid {
694    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAABICAYAAADRa1RpAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAB3RJTUUH3QcNFycE5v9iFQAAAQtJREFUOMvtkjGSWzEMQx/0eYrM3v8k3vgqycalSwlI8Ufyl3OBFMtGIgUCIEd6PB6RBEASqvfONSrJXrDNbNkQ8ywA2y/SmayW+ZIESTsiyQsxo40xmMS2aUmYbheHpCVd0+UqJGGMsey3mUyldoUvlY3D9rIN0K7Wbe/WbZ+y1yWtaVtrp3VJzAEX6ZVjc2p7b2mtnYhNdl6m05rwtfV/ltx7XypJTpXeO7Y5juOlchzHaWxyrJmuhLapqgIJONv05+srThBgiQpBTSRwGOr3rwccgWHUhJ7P5/YNlbd/2XiL78L/WajP240AQUihfnx84EDJjCHKHjTAbkimQDgBjAJ1/3kHAgEk/gL71AHEWVXPGQAAAABJRU5ErkJggg==);
695    display: none;
696  }
697  #chrome-right {
698    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAABICAYAAACaw4eEAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAB3RJTUUH3QcNFyghKmOqnQAADE1JREFUaN6dmsuyZsdRhb/M2uf07bREYDykPeIleAMibNx92i9BgEPBgyB5xlvgtgI8VDNBI41xhGkpQowERgqw3H0ue1cuBlm1T/3Vu4XNiWj9l12XrMyVK1fWL/v6668lCXdHEt/1Z2YnnyUhCTPbX8dn45pmRkR81z7/XUr59Pz8/K8ePnz47/bVV19pnDhu0t+Pmx0Z+Pv8zWv1/eZnZ2dntw8ePPizZXw4bj5/P3vq6G/eePZiX9fd9/Xng6/reg78/dInzxPG9+/auH83GjEbPUahj6m1Hoa6v1/X9c+XPrlP7INqrfuru7+10WzUkUHvOtTojPF1mPdHSzdqPPXo5vm046bdq0fhGr+bvXZk6OgAM2OZBx7hZD7hnCzbtp149Wid0YOjx+eE6t8tMzb659Ebkg5PPY8ZvXpEQWNCzck2M4H3BWeM1Fr31/6+GziPmTefM3tcYzQoIt4a3+cso2EzhsYTzAAdw9M9M3rviPv683dl/Oi9pdZKKeVk4piVRyDu1NI3mCtARFBKeWeGbtt2yHV9HXdnGUMyGjSfZq4K42ajYbPXx836XjO+jsj3rawcFx5dPgK8bzJ6eGbzI8yO3j4yaMToiWF98fl0c4bNSXBEJ/Ozd1HSEY8BLGOIxlONeCqlnHyWtGNoxteRMX38uP44fkyyPnfpp58zqy/s7jsGj0rOEcvPVaMD/sj4I/zWWllmMB/VviOwHumv+dkRGc9EOtOUu6fHZteOGBtDN/+NeJwPNRsxl54RU3PIO4x827a3wNwfdr45kib92WhAf9+fHem1I7FZa31rr+WIr45kzrjZsixvZWHHYcfqXFHGctM9ta7ridcigmVZWNf1DvyllN2wkatmHIxCby7kYzbPOD2qFCN39efrut55rE8YM3I+8VENHPFVa2VZlkOSdXe2bTuhmHdl+W5ox8T8YCbD/l2t9YQqRiNGjx8l1JEamVXKri56doyTuzfGhWd+OyLJjsNRlo+eHaX63Iy8ldnjQn3hbmA/yagGusfG7JwrxZytcxMyjpnH77VyPEEP65iVs5tntp4ldp8zlrG+x8z2Y9L1f91Jy+zeccGZn0Zv9nFHTH500BGbM6HOojMiWEZQf1cN7Aut68qyLCdeGFN+xuRYJ7tXu5fetU9EZCiPOp8xm8bTzLqpe2jkoDnzxjCOa8/VZByzzG7t8gQ4eT+GdO4Be0kZDTgq5kea/0g0RgS+rushNkbg93o6aqeejUeNR/fcUWmaqWLbtn39MdGWGcRHUrcb17E1jhszq3tvxNCsJuaE6VGZMbeMKTrL6LGelVL2k41jx6zuRbknSS9BI7WMdDRTxLi3z+VkDl3/7vb29oS3xhoZESdZOm4whrW/7/NHT83UtNze3u6c1I06Ozs7wdjc7PaQzsV8JNSOp7k97IDvtDPDYTdsvts6Pz8/MXCsm2PD2g/Tm+Vx0bHZHTNvjMyRyh2pajk/P0cIZEAHLLgXQLg5ckDCAFsKCwtIeHHAQGAmSnEkMAyZMBkin4lc3jBEM4a7MZgo7mBGhLD/+M1/qiCqDJflIjICYbknjlEtQEl81cBDYIaUi3aDwoEQ7mABuFMjcHOMQHLMRLSDhhlFQk4+k9IhLggZBREeVLN+NNwNCAhRwjGMimGyPJlA3owyIwiKEltWjTBHNchIGpLleIS5ITNKQHVDYRiBGUQI/83X/0XUyorhm2EKAsvT1IqFgwusgglCWARV3SuGmdNchwgiRHWQagcHIqCNJ7whJ6AI20AeUJ3A0ilP/vQJ33zzDdvNDbWkO91oAwphrah7wVGG1cHMqSHkggiwDJthmAcgjIIVg5rfWc1h2AZ7AgBLpMElMpQCUyOSX/3rr/j+9/+EGoEQTgKxKnDADRROmCiWySJBeILbMCxENVhwBISCnldm4EBEeiQRk1AJs/Y5ER2q7BX03v17SQnumDeXRqXgDaSA1cSdIExQDM+UgtoArTyMIjABJUPt4S2hRHEIgbdstV5LI4OusDvDMgMNqw3sHqi0HPcMotyRNqp5ArnmRrkLuBm4kHmjDAeEDMICk2PFMwomqjI2xYSHsJIUUnxoeBO7rdQUJ2qeJk8SLfdLGtgWCouEVzFUG7NXMAXVG1YqyDdMhSDgFuTpabUEiUguUw3AiAafbhoR4EtmpJknKArgytMaBHBmIozEIQ41M1dK7ySGEvxQ8NoI1w2WFh0XlsUaFYilJ5zhpuGKwBxXeygIqxlrE6Ih1wKPgi8L799/QGcJo4M5o9oYDfcKUZJmEFdX12zrikh2xwwrQA2KOeqETRlCGaKaUFXLpjQwy5Elu4dzflb4uw8/5MXP/wEsE6ORVX8hbVRzTVcN4ic/ec4HH3zA7XaTC1sQtZUXAm98Z7I7uvjii8+5ePw4pUiwu7TXuogM3cX7j/jhX/yIJz948gf/NPjll1/yy1/+E//z299RCGrL+AxI8krQfhk5Ab+6LmrGyDA1dvfkqOvXNzy7fMonn7w8umjafabmsDuowPPnz3nz5joLiN9VCwIqJDGHweixV59/weNHF4itZSMJbGq61kg3h3N2fs7D9x7jIdTwIzw3tCxrZo560U5U8frNFdu6URWJS8RmRukto3smv07uxwJrMa9uLDJCG1ZKI87AWJBvhEOsG9WEhSVcWBtu1A615da2kboiPaRW4hSRcBGEClhg0cTDycWdJR1XgUdkrN2hRqslGapydo+fffgRL37+Ir1opzrrJHZDAiB49vySv/3gp9zcRiqLCpsrjSLrnpQ27KH8/ItXPHz4PtRbRMoTajrBw6Hk4o8vLvjhj/6SH/w/wf/xx//I629/u9fPjkxLIZfVwmLwWBhQqUqgU1NZlCrkQVRwGW9urrl89pRPXr78gw27vHzO9dVVI2cIOYVIGHkrYXVDUQaPvXrFo4tHbFV7dnkjzGT+5BjXwnK/cPHovcRLI9hME3ZeM2+HtRwQAVdXb1ivr6ldzfYC3sSnPFAUZHW+HE7WtqamZL07avrcnYgKKtR6m/VKQTR9n0JQjZj7KqD2LCLY2h4quqsKNUWA5BQPatjAY1hTpuAO2iqlGLV1EQJ8C87vnfOzjz7ixS8+5vf93y+sFeZnl5f89K//htttw1bAW5d05rAK90awjOD//BUPHtynblmInXStyUHJR3jw3sV7/PjpU548eXJArvZ/gv/Fx7/g9bfftug4NfVKa7byd8pN9ZT5I9rFSM/wSPFXrOn5Tby5vubp0x/z8uU/t1Jx5/H9v3b3/q4YGJfPLrl+c0Pde8lgEWxN0znG1jG6e+zfXnHvwQNETdmMINqlSEeZJ1Dvn93j4uJiL+6jv8TQO9L6lya9f/fta26228wodVwZboFU2gLbqbqglZLarzTbdpvBEhWxNJI1bq5uuV6/SRCHt35AyAwPo5aKZzlIHRb5SqTR1nRSnitQtC4phNlyqvlTppRUlmZEQJizhCErbYSa57J8SNkLRm3s7RV54AHymjK9cYjUyg+wqV8XRCtfdzea+IZiFIoSsFKBEm1SE26SpXZCeDh7g9P64R4SrU2ZkC1btea5TMDsqCJ5UfUuZwO1BlnZ6tkgrWWWqjOgqhJmsLWa2dowsKZK0nuKlMWokWWBoBIeiJpZF6CqhtnMdHSHW6PdZLfijjISu2HX11dEjURrTza3BtymzaLV5NZwEGQYW4ekaLdCkXSDRCkidr2n/XKGUlOKjxc6oXZN0H4ZefXrVxQ3atTsjD1lkJpIDNEwlSCRZ53rp4zViNiQtqwEStHT1YoUOaclSY1MmmjXCelNz2Q1T5L/7LPPYDEePXqYNa0ENHnd7xeKKUFiAO2HBM97DZMoS1prMmQLrqCE8uZHIgVDNAFpFEW7BnGKWQtnYJ6GOmL54+99D0JEzfT1alRzikHtda+1/4nsxk/VqQZmlXXzJMUiqFu7nrJMe8v2LhteteuAvEcrVqk1m+Owdn9h7ZYSE6WAIrkjPCVIFua8s0jhWHfhZ5YZZ6rZNxoplZp3clg2uUSKAcmwYpgqUs1iFI5Z4rr3mliq3IVqVDbwM9CGkao1rN1IR6F4xepCEFht1wAhIKjRNH0Dv6ym5lHrEQw8JSlUtapghHJ+qiK13OyZ6yyf/sunSYqyVuPavVVq3bvSgrKxcKVGU7/s1U5ovXz1W5v9ftPVet68cbSehRo65ZNfUuB/AWHLchVUWJtFAAAAAElFTkSuQmCC);
699    display: none;
700  }
701  </style>
702
703  <div id="header"></div>
704  <input id="stacking-distance-slider" max="400" min="1" step="1" type="range"/>
705
706  <canvas id="canvas"></canvas>
707  <img id="chrome-left"/>
708  <img id="chrome-mid"/>
709  <img id="chrome-right"/>
710</template><template id="tr-ui-e-chrome-cc-layer-tree-quad-stack-view-template">
711  <style>
712  #input-event {
713    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAMnwAADJ8BPja39wAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAyNSURBVHic7Z1PTCPXHcc/4wWWVbJN2cJSLVqiQJuGpoIGEVWReoBNIlIF5RCRSysOK9EbksUeOHLIIQcULbLEEYk7oqduD6gSRoqUEyK7dCOabOHghCiAE/JntQtesHt4fuM3z2+MZzy2x8ZfaTTjN+Px4/fh9/7Pb6xMJkND4VGk2hloyKkGkJCpASRkagAJmRpAQqYGkJCpASRkaqp2BvzKsizf3w1z38sKc+ZUaQCuAFeB57P7q4AF/Kxsj4GnLrfL+6PDYofQAskCaAJ6gJeB6+QAFOvZpwgwPwOHwCNgN5uu/+H252raJHRALMu6ggDwCtALNAf8E88QUL5AAHqSTVcNUTU4oQBiWVYzMIiA0E3lGhtp4CsEnPtACgFDGqXiYKoKxLKsCPAaMIwojlzV1tZGV1cXHR0ddHR00N7ebh93dHQAcHh4aG/JZNI+3tvb4+jo6LzsPAY+QYA5Ix9KBsoPpmpALMt6BXgTaHe7pre3l5GREUZGRujv7/fdsspkMmxtbRGPx4nH4+zs7BS6/HtgHfgvOW9xeE05bVZxIJZldQNvATf1c5FIhMHBQYaHh7l16xbd3d1lyUMikWBtbY319XU2NzdJp9Omy74B1oAEAoa8yIZTDttVDIhlWZeB94Dfm86Pjo4SjUbLBsFNiUSCWCzG6uqq2yVfAv9CNKHTlNlbKgLEsqxrwF+BX+nnhoaGuHPnDv39/WXPRyFtbW1x9+5dNjY2TKePgBXgOwQUFUyg3lJ2IJZl9QAfAK1qek9PD9PT04yMjJT1970qHo8zPz/P7u6ufuoE+CewQw6Kw2OCsGVZgViW9SdgFNGLBqC1tZWZmRnGx8eJRMI5lJZOp1lZWWFubo7j42P1VAZR4W8gWmJn5KBAAEVYWYBkm7PvIvoWtjo7O1lYWKCvry/w3yyHtre3mZqaYn9/Xz/1EPg3ot+iQslQIpTAgWRh/A0x5GFrYGCAWCxGe7trKzeUSiaTRKNRHjx4oJ/6CvgHoigLDEo5yox30WCMjY2xtLRUczAA2tvbWVpaYmxsTD91E3gbMbTTBFxCFM0WYPntMwXqIdk64x3lM9FolMnJycB+o5paXFwkFovplfcniDrlNLvJXr4vTwnMQ7KtqVE1rZ5gAExOThKNRvXkPyMGQaWXlOQpgQDJ9jM+QGlNjY2N1RUMqcnJSb34shClwnVE8aVCAY9QSi6ysj3wv6N0+gYGBlhaWqKlpaWke4dVqVSK27dv6xX9j8AyYpDyGaL4svsqxdo5CA95DwVGZ2cnsVisbmEAtLS0EIvF6OzsVJNfQIzRlVTJlwQkO1Boj021traysLBQk60pr2pvb2dhYYHWVscAxEuI1pcKJYIHKKV6yFvqh5mZmZrp9AWhvr4+ZmZm9OQ3MAMpSr6BZOcz7CH0np4exsfH/d6uZjU+Pk5Pj6PbdR34LT69xBeQbG/8TTVteno6tGNT5VQkEmF6elpPfh24TK7VFaFIKH4t+BrKTN/Q0FDoRm0rqZGREYaGhtSkXyDqVs9Fl2cg2QUJw2ranTt3vN6m7mSwwR8R68dULzm31eXHQwZRFiSMjo5WfXIpDOrv72d01DFQcQXoQ3hI0V7iB8gr9pcjEdNQwoVVNBrV69EXcanccfEST0Cyi9jsSe/BwcGKz4GHWd3d3QwOOqaAOoDnMFfuRnn1kJfV7wwPD3v8ev1Ls4mF+Ac2FVsW5C8aLxpI9ou/U9Nu3brlOcP1LoNNbuJej+R5ihcPaQJ+Iz/09vY2iiuDuru76e3tVZN+jeiTyFHggsWWFyA9KAufL3K/4zxptrkE3MClYkcDUxQQU3HVAOIug226yHlIXvNXrUe8eEiHPGhra2v0PQqov7+ftrY2NekFzEVWSXWI3Rns6uoq6ZGyepdlWXR1dalJrRTwEFVegFyVB3L5f0Pu0mzUirC1CsPoJcUCuYLyGFkDyPnSbBQhB8VUZNm99nOBZC+8qqZdhBnBUmWw0RXMQHx5iOPpprB5yMbGBp999lm1s+GQwUZXKFBUSRULxOEhYQNy//59Hj58WO1sOOQCpGAfBOoESBhVwENMm61in/cOXRt3f3+f09NTAH766SdaWlrY29sDoLm5mevXr1cze25y9QypYoH8rH44PDwsIU/B6KOPPrLzcXBwQCQS4dNPPwXgxo0bfPzxx9XMnslGJ7h7hkX2GZOaBRKLxezjxcVFLl++zMTERBVz5JTBRseGy3zXIaEDEna5eAgENIX7WP2QTCaL/NrFlcFG0kMKLvIttsh6ilg83ATh85D3338/dGNrmo3SiAXYuvLgeImX9Rj4peHHqq5r165VOwt50mx0gjkqhJT92cvgol2P7O3thSa+VBiVyWTsJnhWsv4wBrZR5QWIjfzo6IitrS0vebxQ2tra0oPdPCbfQ4ze4gXII/VDPB73k9cLIYNtDnACUJ9td8gLkF2UiqkBxF2abc6AJOboD3lQzgWi1BWnCCgA7OzskEgk/Oa5bpVIJPTwT9+RCymoe4jvIkt+8Qs1cW1tzVem61kGm8jiKk1+gIE8eV25+Ihc3CjW19c9fr3+pdkkgwCiwsiL+oDyUKhXIE8QISUA2NzcbBRbihKJBJubm2rSD4h4KLLuOMMQRUiVn9XvdrGVTqcdg3wXXbFYTI9Op3qHuqlQHCoKSNadJNH7KGNbq6urjT4Jou+hRaVLIUoTE4zA6hD5Q5+oCXfv3vVxm/qSwQY7iG6C9BAZByWv6auOevgBIr3ke5mwsbFxofsl8XhcDw34BPgaYXg1KI0p6JlDRQPRiq0zRGQ1W/Pz827RPeta6XSa+fl5Pfl/5LxC3QrCAP9P4WYQcW2/kQm7u7usrKz4vF3tamVlRY/P+CPwLTlvcANiDN/kCYjiJXLv6AXNzc2xvb3t5ZY1re3tbebm5vRk2Vc7JReExgTDqFI8JIMIMvylTDw+PmZqaupCzCgmk0mmpqb0IJkHiLpV9Ypn5MA4oJimMDwD0eqSDCLIsD3WvL+/TzQaJZVKeb11zSiVShGNRvXgmE+Az8kVU8+UrSjvgNKCz8jxmaeIIMNyEoYHDx4wOztbwq3DrdnZWT1W1imi5XmCE0YKlyLLbYLPFxDlZhLKd4ggw/aJe/fusbi46Of2odbi4iL37t1TkzLAfxAzqmc4PcPkIQVVqofIfRrREVpXL4jFYnUFRQbB1PQIMZsqYaSUraiWlaqSQvxlV3rIFd2XEIsm/gL8Qb1ubGyMDz/8sGajzKVSKWZnZ3XPANHs/xxh+BSiyDrObifkirCiiisIDogK5TIwjvY6ijoMpHwEbCJAPCMHQIWhxl4sKmxsEEEwwQmlCQHlbeBV9do6CjX+DbBNDobqHSYYRQfCLDnimKEZfJbN0CpiENLOxf7+PhMTEywvL4d6mCWdTrO8vMzExIQOI4Pod31OPowTzHWHpz80kMjWyqpB6SXSU5oRQYbfARwVSA2+ruIU0ZrSK/ATnEBky8oxqlusnQMLNa4VXRa5Sr4JEYdwDPG8tkM18kKXJ+TmgWQ/Q3qDDsNTJa4r6NjvkA/lEsJTnkdEMX3J9N0Qv/LoAFFEyRaTbFFJGPK4ZBhQntdVgDuUZkTr6w2E1zgUspeC/YjoY3yPczgkZdhk568kGFC+F7qAE4qsU2S90owIpfo6ImCkUVV6bd4TxHzGtzgnmNThEN0rHK0pSngFUtleeeQCRa1XmhHN41eBAcRDka6qwIslU4jRhq/Jn8tQh0HUitttWtb3YvRyv4MKck8MyUeCZRGmeosMGPkiIshNpR72yCCW6hwgFiTI1pE0tDS6abDQ87BIMarEW9rAGUFNNot1MHL/HCIs3k1E8K9LAWfpDDEYepDd5Lopdc5b9Qx9r14nx/EgABhQASCQ109RizAdjApH9vhvIOJNvYCIFyJjhhSjNLlm6WMEgCS5tbbqAjbTlKsKwwTCHmCtmfcY2j/khCL3auwPNXyRGqOwifzQRq2IYk7dwDl8cYwwpjoqrRrSDYYKpdCaqpLrC5Oq8S5c+xCzx+hwTJtbEBdT3aMbUBpVXWvrtsnz+op1CNArVFXlbdEu3mICowJS9+cBsR/Exx2IaQG0af1tHggI1itUVft96vahsi/kOabPxQCRe93IaW3TAVQMhFRVgdiZMIORexOgQiDkXv3DdAObPMYIgAqBkAoFECmtJ+4Gp9Ax2rEORe51w+sQ7OOK17FhAqLKBY567AbBTSY4rsfVsktogagqACfvUpd0tz/SkR4GW9QEEFVBhtAI499ec0DqXf8H8f4X10jf2YAAAAAASUVORK5CYII=);
714    display: none;
715  }
716  </style>
717  <img id="input-event"/>
718</template><template id="tr-ui-e-chrome-cc-picture-debugger-template">
719  <left-panel>
720    <picture-info>
721      <div>
722        <span class="title">Skia Picture</span>
723        <span class="size"></span>
724      </div>
725      <div>
726        <input class="filename" type="text" value="skpicture.skp"/>
727        <button class="export">Export</button>
728      </div>
729    </picture-info>
730  </left-panel>
731  <right-panel>
732    <tr-ui-e-chrome-cc-picture-ops-chart-view>
733    </tr-ui-e-chrome-cc-picture-ops-chart-view>
734    <raster-area><canvas></canvas></raster-area>
735  </right-panel>
736</template><dom-module id="tr-ui-a-stack-frame">
737  <template>
738    <style>
739    :host {
740      display: flex;
741      flex-direction: row;
742      align-items: center;
743      font-size: 12px;
744    }
745    </style>
746    <tr-ui-b-table id="table"></tr-ui-b-table>
747  </template>
748</dom-module><dom-module id="tr-ui-a-single-event-sub-view">
749  <template>
750    <style>
751    :host {
752      display: flex;
753      flex: 0 1;
754      flex-direction: column;
755    }
756    #table {
757      flex: 0 1 auto;
758      align-self: stretch;
759      font-size: 12px;
760    }
761    </style>
762    <tr-ui-b-table id="table">
763    </tr-ui-b-table>
764  </template>
765</dom-module><dom-module id="tr-ui-e-chrome-cc-raster-task-view">
766  <template>
767    <style>
768    :host {
769      display: flex;
770      flex-direction: column;
771    }
772    #heading {
773      flex: 0 0 auto;
774    }
775    tr-ui-b-table {
776      font-size: 12px;
777    }
778    </style>
779
780    <div id="heading">
781      Rasterization costs in
782      <tr-ui-a-analysis-link id="link"></tr-ui-a-analysis-link>
783    </div>
784    <tr-ui-b-table id="content"></tr-ui-b-table>
785  </template>
786</dom-module><style>
787.tr-ui-e-chrome-gpu-state-snapshot-view{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAZiS0dEAEwATABMYqp3KAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB90JCQsBMCH7ZqYAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAUElEQVRYw+3WwQkAIAiF4Vc0hTO5/wiuURvYIcQOv1cRPhDlDXffSsrMsrYiQi/zU80FAACAVX3nt3lWAABA/x+ovnPyAAAA5AHyAAAA3wMOd34Xd+lsglgAAAAASUVORK5CYII=);display:flex;overflow:auto}.tr-ui-e-chrome-gpu-state-snapshot-view img{display:block;margin:16px auto 16px auto}
788</style><dom-module id="tr-ui-a-layout-tree-sub-view">
789  <template>
790    <style>
791    tr-ui-b-table {
792      font-size: 12px;
793    }
794    </style>
795    <div id="content"></div>
796  </template>
797</dom-module><dom-module id="tr-ui-e-s-frame-data-side-panel">
798  <template>
799    <style>
800    :host {
801      display: flex;
802      width: 600px;
803      flex-direction: column;
804    }
805    table-container {
806      display: flex;
807      overflow: auto;
808      font-size: 12px;
809    }
810    </style>
811    <div>
812      Organize by:
813      <select id="select">
814        <option value="none">None</option>
815        <option value="tree">Frame Tree</option>
816      </select>
817    </div>
818    <table-container>
819      <tr-ui-b-table id="table"></tr-ui-b-table>
820    </table-container>
821  </template>
822</dom-module><dom-module id="tr-ui-b-chart-legend-key">
823  <template>
824    <style>
825      #checkbox {
826        margin: 0;
827        visibility: hidden;
828        vertical-align: text-top;
829      }
830      #label, #link {
831        white-space: nowrap;
832        text-overflow: ellipsis;
833        overflow: hidden;
834        display: inline-block;
835      }
836    </style>
837
838    <input checked="" id="checkbox" type="checkbox"/>
839    <tr-ui-a-analysis-link id="link"></tr-ui-a-analysis-link>
840    <label id="label"></label>
841  </template>
842</dom-module><template id="chart-base-template">
843  <svg>
844    <g id="chart-area" xmlns="http://www.w3.org/2000/svg">
845      <g class="x axis"></g>
846      <g class="y axis"></g>
847      <text id="title"></text>
848    </g>
849  </svg>
850</template><dom-module id="tr-ui-e-s-input-latency-side-panel">
851  <template>
852    <style>
853    :host {
854      flex-direction: column;
855      display: flex;
856    }
857    toolbar {
858      flex: 0 0 auto;
859      border-bottom: 1px solid black;
860      display: flex;
861    }
862    result-area {
863      flex: 1 1 auto;
864      display: block;
865      min-height: 0;
866      overflow-y: auto;
867    }
868    </style>
869
870    <toolbar id="toolbar"></toolbar>
871    <result-area id="result_area"></result-area>
872  </template>
873</dom-module><dom-module id="tr-ui-b-heading">
874  <template>
875    <style>
876    :host {
877      background-color: rgb(243, 245, 247);
878      border-right: 1px solid #8e8e8e;
879      display: block;
880      height: 100%;
881      margin: 0;
882      padding: 0 5px 0 0;
883    }
884
885    heading {
886      display: block;
887      overflow-x: hidden;
888      text-align: left;
889      text-overflow: ellipsis;
890      white-space: nowrap;
891    }
892
893    #arrow {
894      flex: 0 0 auto;
895      font-family: sans-serif;
896      margin-left: 5px;
897      margin-right: 5px;
898      width: 8px;
899    }
900
901    #link, #heading_content {
902      display: none;
903    }
904    </style>
905    <heading id="heading" on-click="onHeadingDivClicked_">
906      <span id="arrow"></span>
907      <span id="heading_content"></span>
908      <tr-ui-a-analysis-link id="link"></tr-ui-a-analysis-link>
909    </heading>
910  </template>
911</dom-module><style>
912.track-button{background-color:rgba(255,255,255,0.5);border:1px solid rgba(0,0,0,0.1);color:rgba(0,0,0,0.2);font-size:10px;height:12px;text-align:center;width:12px}.track-button:hover{background-color:rgba(255,255,255,1.0);border:1px solid rgba(0,0,0,0.5);box-shadow:0 0 .05em rgba(0,0,0,0.4);color:rgba(0,0,0,1)}.track-close-button{left:2px;position:absolute;top:2px}.track-collapse-button{left:3px;position:absolute;top:2px}
913</style><style>
914.object-instance-track{height:18px}
915</style><style>
916.tr-ui-e-system-stats-instance-track{height:500px}.tr-ui-e-system-stats-instance-track ul{list-style:none;list-style-position:outside;margin:0;overflow:hidden}
917</style><style>
918.tr-ui-e-system-stats-snapshot-view .subhead{font-size:small;padding-bottom:10px}.tr-ui-e-system-stats-snapshot-view ul{background-position:0 5px;background-repeat:no-repeat;cursor:pointer;font-family:monospace;list-style:none;margin:0;padding-left:15px}.tr-ui-e-system-stats-snapshot-view li{background-position:0 5px;background-repeat:no-repeat;cursor:pointer;list-style:none;margin:0;padding-left:15px}
919</style><dom-module id="tr-ui-e-v8-gc-objects-stats-table">
920  <template>
921    <style>
922    tr-ui-b-table {
923      flex: 0 0 auto;
924      align-self: stretch;
925      margin-top: 1em;
926      font-size: 12px;
927    }
928    .diff {
929      display: inline-block;
930      margin-top: 1em;
931      margin-left: 0.8em;
932    }
933    </style>
934    <div class="diff" id="diffOption">
935      Diff
936    </div>
937    <tr-ui-b-table id="diffTable"></tr-ui-b-table>
938    <tr-ui-b-table id="table"></tr-ui-b-table>
939  </template>
940</dom-module><dom-module id="tr-ui-e-multi-v8-gc-stats-thread-slice-sub-view">
941  <template>
942    <style>
943    </style>
944    <tr-ui-e-v8-gc-objects-stats-table id="gcObjectsStats">
945    </tr-ui-e-v8-gc-objects-stats-table>
946  </template>
947</dom-module><dom-module id="tr-ui-e-v8-ic-stats-table">
948  <template>
949    <style>
950    tr-ui-b-table {
951      flex: 0 0 auto;
952      align-self: stretch;
953      margin-top: 1em;
954      font-size: 12px;
955    }
956    #total {
957      margin-top: 1em;
958      margin-left: 0.8em;
959    }
960    #groupOption {
961      display: inline-block;
962      margin-top: 1em;
963      margin-left: 0.8em;
964    }
965    </style>
966    <div style="padding-right: 200px">
967      <div style="float:right;  border-style: solid; border-width: 1px; padding:20px">
968        0 uninitialized<br/>
969        . premonomorphic<br/>
970        1 monomorphic<br/>
971        ^ recompute handler<br/>
972        P polymorphic<br/>
973        N megamorphic<br/>
974        G generic
975      </div>
976    </div>
977    <div id="total">
978    </div>
979    <div id="groupOption">
980      Group Key
981    </div>
982    <tr-ui-b-table id="table"></tr-ui-b-table>
983  </template>
984</dom-module><dom-module id="tr-ui-e-multi-v8-ic-stats-thread-slice-sub-view">
985  <template>
986    <tr-ui-e-v8-ic-stats-table id="table">
987    </tr-ui-e-v8-ic-stats-table>
988  </template>
989</dom-module><dom-module id="tr-ui-e-v8-runtime-call-stats-table">
990  <template>
991    <style>
992    #table, #blink_rcs_table {
993      flex: 0 0 auto;
994      align-self: stretch;
995      margin-top: 1em;
996      font-size: 12px;
997    }
998
999    #v8_rcs_heading, #blink_rcs_heading {
1000        padding-top: 1em;
1001        font-size: 18px;
1002    }
1003    </style>
1004    <h1 id="v8_rcs_heading"></h1>
1005    <tr-ui-b-table id="table"></tr-ui-b-table>
1006    <h1 id="blink_rcs_heading"></h1>
1007    <tr-ui-b-table id="blink_rcs_table"></tr-ui-b-table>
1008  </template>
1009</dom-module><dom-module id="tr-ui-e-multi-v8-thread-slice-sub-view">
1010  <template>
1011    <tr-ui-a-multi-thread-slice-sub-view id="content"></tr-ui-a-multi-thread-slice-sub-view>
1012    <tr-ui-e-v8-runtime-call-stats-table id="runtimeCallStats"></tr-ui-e-v8-runtime-call-stats-table>
1013  </template>
1014</dom-module><dom-module id="tr-ui-e-single-v8-gc-stats-thread-slice-sub-view">
1015  <template>
1016    <tr-ui-a-single-event-sub-view id="content"></tr-ui-a-single-event-sub-view>
1017    <tr-ui-e-v8-gc-objects-stats-table id="gcObjectsStats"></tr-ui-e-v8-gc-objects-stats-table>
1018  </template>
1019</dom-module><dom-module id="tr-ui-e-single-v8-ic-stats-thread-slice-sub-view">
1020  <template>
1021    <tr-ui-e-v8-ic-stats-table id="table">
1022    </tr-ui-e-v8-ic-stats-table>
1023  </template>
1024</dom-module><dom-module id="tr-ui-e-single-v8-thread-slice-sub-view">
1025  <template>
1026    <tr-ui-a-single-thread-slice-sub-view id="content"></tr-ui-a-single-thread-slice-sub-view>
1027    <tr-ui-e-v8-runtime-call-stats-table id="runtimeCallStats"></tr-ui-e-v8-runtime-call-stats-table>
1028  </template>
1029</dom-module><dom-module id="tr-ui-a-alert-sub-view">
1030  <template>
1031    <style>
1032    :host {
1033      display: flex;
1034      flex-direction: column;
1035    }
1036    #table {
1037      flex: 1 1 auto;
1038      align-self: stretch;
1039      font-size: 12px;
1040    }
1041    </style>
1042    <tr-ui-b-table id="table">
1043    </tr-ui-b-table>
1044  </template>
1045</dom-module><dom-module id="tr-ui-b-tab-view">
1046  <template>
1047    <style>
1048      :host {
1049        display: flex;
1050        flex-direction: column;
1051      }
1052
1053      #selection_description, #tabs {
1054        font-size: 12px;
1055      }
1056
1057      #selection_description {
1058        display: inline-block;
1059        font-weight: bold;
1060        margin: 9px 0px 4px 20px;
1061      }
1062
1063      #tabs {
1064        flex: 0 0 auto;
1065        border-top: 1px solid #8e8e8e;
1066        border-bottom: 1px solid #8e8e8e;
1067        background-color: #ececec;
1068        overflow: hidden;
1069        margin: 0;
1070      }
1071
1072      #tabs input[type=radio] {
1073        display: none;
1074      }
1075
1076      #tabs tab label {
1077        cursor: pointer;
1078        display: inline-block;
1079        border: 1px solid #ececec;
1080        margin: 5px 0px 0px 15px;
1081        padding: 3px 10px 3px 10px;
1082      }
1083
1084      #tabs tab label span {
1085        font-weight: bold;
1086      }
1087
1088      #tabs:focus input[type=radio]:checked ~ label {
1089        outline: dotted 1px #8e8e8e;
1090        outline-offset: -2px;
1091      }
1092
1093      #tabs input[type=radio]:checked ~ label {
1094        background-color: white;
1095        border: 1px solid #8e8e8e;
1096        border-bottom: 1px solid white;
1097      }
1098
1099      #subView {
1100        flex: 1 1 auto;
1101        overflow: auto;
1102      }
1103    </style>
1104    <div hidden="[[tabsHidden]]" id="tabs">
1105      <label id="selection_description">[[label_]]</label>
1106      <template is="dom-repeat" items="[[subViews_]]">
1107        <tab>
1108          <input checked="[[isChecked_(item)]]" id$="[[computeRadioId_(item)]]" name="tabs" on-change="onTabChanged_" type="radio"/>
1109          <label for$="[[computeRadioId_(item)]]">
1110            <template if="[[item.tabIcon]]" is="dom-if">
1111              <span style$="[[item.tabIcon.style]]">[[item.tabIcon.text]]</span>
1112            </template>
1113            [[item.tabLabel]]
1114          </label>
1115        </tab>
1116      </template>
1117    </div>
1118    <div id="subView"></div>
1119    <content>
1120    </content>
1121  </template>
1122</dom-module><dom-module id="tr-ui-a-memory-dump-heap-details-breakdown-view">
1123  <template>
1124    <tr-ui-b-tab-view id="tabs"></tr-ui-b-tab-view>
1125  </template>
1126</dom-module><dom-module id="tr-ui-a-memory-dump-heap-details-breakdown-view-tab">
1127  <template>
1128    <tr-v-ui-scalar-context-controller></tr-v-ui-scalar-context-controller>
1129    <tr-ui-b-info-bar hidden="" id="info"></tr-ui-b-info-bar>
1130    <tr-ui-b-table id="table"></tr-ui-b-table>
1131  </template>
1132</dom-module><dom-module id="tr-ui-a-memory-dump-heap-details-path-view">
1133  <template>
1134    <style>
1135      :host {
1136        display: flex;
1137        flex-direction: column;
1138      }
1139    </style>
1140    <tr-v-ui-scalar-context-controller></tr-v-ui-scalar-context-controller>
1141    <tr-ui-b-table id="table"></tr-ui-b-table>
1142  </template>
1143</dom-module><dom-module id="tr-ui-a-memory-dump-heap-details-pane">
1144  <template>
1145    <style>
1146      :host {
1147        display: flex;
1148        flex-direction: column;
1149      }
1150
1151      #header {
1152        flex: 0 0 auto;
1153        display: flex;
1154        flex-direction: row;
1155        align-items: center;
1156
1157        background-color: #eee;
1158        border-bottom: 1px solid #8e8e8e;
1159        border-top: 1px solid white;
1160      }
1161
1162      #label {
1163        flex: 1 1 auto;
1164        padding: 8px;
1165        font-size: 15px;
1166        font-weight: bold;
1167      }
1168
1169      #view_mode_container {
1170        display: none;
1171        flex: 0 0 auto;
1172        padding: 5px;
1173        font-size: 15px;
1174      }
1175
1176      #contents {
1177        flex: 1 0 auto;
1178        align-self: stretch;
1179        font-size: 12px;
1180      }
1181
1182      #info_text {
1183        padding: 8px;
1184        color: #666;
1185        font-style: italic;
1186        text-align: center;
1187      }
1188
1189      #split_view {
1190        display: none;  /* Hide until memory allocator dumps are set. */
1191        flex: 1 0 auto;
1192        align-self: stretch;
1193        flex-direction: row;
1194      }
1195
1196      #path_view {
1197        width: 50%;
1198      }
1199
1200      #breakdown_view {
1201        flex: 1 1 auto;
1202        width: 0;
1203      }
1204
1205      #path_view, #breakdown_view {
1206        overflow-x: auto;  /* Show scrollbar if necessary. */
1207      }
1208    </style>
1209    <div id="header">
1210      <div id="label">Heap details</div>
1211      <div id="view_mode_container">
1212        <span>View mode:</span>
1213
1214      </div>
1215    </div>
1216    <div id="contents">
1217      <tr-ui-b-info-bar hidden="" id="info_bar">
1218      </tr-ui-b-info-bar>
1219
1220      <div id="info_text">No heap dump selected</div>
1221
1222      <div id="split_view">
1223        <tr-ui-a-memory-dump-heap-details-path-view id="path_view">
1224        </tr-ui-a-memory-dump-heap-details-path-view>
1225        <tr-ui-b-drag-handle id="drag_handle"></tr-ui-b-drag-handle>
1226        <tr-ui-a-memory-dump-heap-details-breakdown-view id="breakdown_view">
1227        </tr-ui-a-memory-dump-heap-details-breakdown-view>
1228      </div>
1229    </div>
1230  </template>
1231</dom-module><dom-module id="tr-ui-a-memory-dump-allocator-details-pane">
1232  <template>
1233    <style>
1234      :host {
1235        display: flex;
1236        flex-direction: column;
1237      }
1238
1239      #label {
1240        flex: 0 0 auto;
1241        padding: 8px;
1242
1243        background-color: #eee;
1244        border-bottom: 1px solid #8e8e8e;
1245        border-top: 1px solid white;
1246
1247        font-size:  15px;
1248        font-weight: bold;
1249      }
1250
1251      #contents {
1252        flex: 1 0 auto;
1253        align-self: stretch;
1254        font-size: 12px;
1255      }
1256
1257      #info_text {
1258        padding: 8px;
1259        color: #666;
1260        font-style: italic;
1261        text-align: center;
1262      }
1263
1264      #table {
1265        display: none;  /* Hide until memory allocator dumps are set. */
1266        flex: 1 0 auto;
1267        align-self: stretch;
1268        font-size: 12px;
1269      }
1270    </style>
1271    <div id="label">Component details</div>
1272    <div id="contents">
1273      <div id="info_text">No memory allocator dump selected</div>
1274      <tr-ui-b-table id="table"></tr-ui-b-table>
1275    </div>
1276  </template>
1277</dom-module><dom-module id="tr-ui-a-memory-dump-vm-regions-details-pane">
1278  <template>
1279    <style>
1280      :host {
1281        display: flex;
1282        flex-direction: column;
1283      }
1284
1285      #label {
1286        flex: 0 0 auto;
1287        padding: 8px;
1288
1289        background-color: #eee;
1290        border-bottom: 1px solid #8e8e8e;
1291        border-top: 1px solid white;
1292
1293        font-size:  15px;
1294        font-weight: bold;
1295      }
1296
1297      #contents {
1298        flex: 1 0 auto;
1299        align-self: stretch;
1300        font-size: 12px;
1301      }
1302
1303      #info_text {
1304        padding: 8px;
1305        color: #666;
1306        font-style: italic;
1307        text-align: center;
1308      }
1309
1310      #table {
1311        display: none;  /* Hide until memory dumps are set. */
1312        flex: 1 0 auto;
1313        align-self: stretch;
1314        font-size: 12px;
1315      }
1316    </style>
1317    <div id="label">Memory maps</div>
1318    <div id="contents">
1319      <div id="info_text">No memory maps selected</div>
1320      <tr-ui-b-table id="table"></tr-ui-b-table>
1321    </div>
1322  </template>
1323</dom-module><dom-module id="tr-ui-b-color-legend">
1324  <template>
1325    <style>
1326    :host {
1327      display: inline-block;
1328    }
1329
1330    #square {
1331      font-size: 150%;  /* Make the square bigger. */
1332      line-height: 0%;  /* Prevent the square from increasing legend height. */
1333    }
1334    </style>
1335    <span id="square"></span>
1336    <span id="label"></span>
1337  </template>
1338</dom-module><dom-module id="tr-ui-b-view-specific-brushing-state">
1339  <template></template>
1340</dom-module><dom-module id="tr-ui-a-memory-dump-overview-pane">
1341  <template>
1342    <style>
1343      :host {
1344        display: flex;
1345        flex-direction: column;
1346      }
1347
1348      #label {
1349        flex: 0 0 auto;
1350        padding: 8px;
1351
1352        background-color: #eee;
1353        border-bottom: 1px solid #8e8e8e;
1354        border-top: 1px solid white;
1355
1356        font-size:  15px;
1357        font-weight: bold;
1358      }
1359
1360      #label a {
1361        font-weight: normal;
1362        float: right;
1363      }
1364
1365      #contents {
1366        flex: 1 0 auto;
1367        align-self: stretch;
1368        font-size: 12px;
1369        overflow: auto;
1370      }
1371
1372      #info_text {
1373        padding: 8px;
1374        color: #666;
1375        font-style: italic;
1376        text-align: center;
1377      }
1378
1379      #table {
1380        display: none;  /* Hide until memory dumps are set. */
1381        flex: 1 0 auto;
1382        align-self: stretch;
1383        font-size: 12px;
1384      }
1385    </style>
1386    <tr-ui-b-view-specific-brushing-state id="state" view-id="analysis.memory_dump_overview_pane">
1387    </tr-ui-b-view-specific-brushing-state>
1388    <div id="label">Overview <a href="https://chromium.googlesource.com/chromium/src/+/master/docs/memory-infra">Help</a></div>
1389    <div id="contents">
1390      <div id="info_text">No memory memory dumps selected</div>
1391      <tr-ui-b-table id="table"></tr-ui-b-table>
1392    </div>
1393  </template>
1394</dom-module><dom-module id="tr-ui-a-memory-dump-header-pane">
1395  <template>
1396    <style>
1397      :host {
1398        display: flex;
1399        flex-direction: row;
1400        align-items: center;
1401
1402        background-color: #d0d0d0;
1403        border-bottom: 1px solid #8e8e8e;
1404        border-top: 1px solid white;
1405      }
1406
1407      #label {
1408        flex: 1 1 auto;
1409        padding: 6px;
1410        font-size: 15px;
1411      }
1412
1413      #aggregation_mode_container {
1414        display: none;
1415        flex: 0 0 auto;
1416        padding: 5px;
1417        font-size: 15px;
1418      }
1419    </style>
1420
1421    <div id="label"></div>
1422    <div id="aggregation_mode_container">
1423      <span>Metric aggregation:</span>
1424
1425    </div>
1426  </template>
1427</dom-module><dom-module id="tr-ui-a-stacked-pane-view">
1428  <template>
1429    <style>
1430    :host {
1431      display: flex;
1432      flex-direction: column;
1433    }
1434
1435    #pane_container > * {
1436      flex: 0 0 auto;
1437    }
1438    </style>
1439    <div id="pane_container">
1440    </div>
1441  </template>
1442</dom-module><dom-module id="tr-ui-a-container-memory-dump-sub-view">
1443  <template>
1444    <style>
1445    tr-ui-b-table {
1446      font-size: 12px;
1447    }
1448    </style>
1449    <div id="content"></div>
1450  </template>
1451</dom-module><dom-module id="tr-ui-a-counter-sample-sub-view">
1452  <template>
1453    <style>
1454    :host {
1455      display: flex;
1456      flex-direction: column;
1457    }
1458    tr-ui-b-table {
1459      font-size: 12px;
1460    }
1461    </style>
1462    <tr-ui-b-table id="table"></tr-ui-b-table>
1463  </template>
1464</dom-module><dom-module id="tr-ui-a-multi-event-summary-table">
1465  <template>
1466    <style>
1467    :host {
1468      display: flex;
1469    }
1470    #table {
1471      flex: 1 1 auto;
1472      align-self: stretch;
1473      font-size: 12px;
1474    }
1475    </style>
1476    <tr-ui-b-table id="table">
1477    </tr-ui-b-table>
1478
1479  </template>
1480</dom-module><dom-module id="tr-ui-a-selection-summary-table">
1481  <template>
1482    <style>
1483    :host {
1484      display: flex;
1485    }
1486    #table {
1487      flex: 1 1 auto;
1488      align-self: stretch;
1489      font-size: 12px;
1490    }
1491    </style>
1492    <tr-ui-b-table id="table">
1493    </tr-ui-b-table>
1494
1495  </template>
1496</dom-module><dom-module id="tr-ui-b-radio-picker">
1497  <template>
1498    <style>
1499    :host([vertical]) #container {
1500      flex-direction: column;
1501    }
1502    :host(:not[vertical]) #container {
1503      flex-direction: row;
1504    }
1505    #container {
1506      display: flex;
1507    }
1508    #container > div {
1509      padding-left: 1em;
1510      padding-bottom: 0.5em;
1511    }
1512    </style>
1513    <div id="container"></div>
1514  </template>
1515</dom-module><dom-module id="tr-v-ui-breakdown-span">
1516  <template>
1517    <style>
1518    :host {
1519      display: flex;
1520      flex-direction: column;
1521    }
1522    #table_container {
1523      display: flex;
1524      flex: 0 0 auto;
1525    }
1526    #table {
1527      max-height: 150px;
1528      overflow-y: auto;
1529    }
1530    </style>
1531
1532    <div id="empty">(empty)</div>
1533    <div id="table_container">
1534      <div id="container"></div>
1535      <span>
1536        <tr-ui-b-table id="table"></tr-ui-b-table>
1537      </span>
1538    </div>
1539  </template>
1540</dom-module><dom-module id="tr-v-ui-collected-related-event-set-span">
1541</dom-module><dom-module id="tr-v-ui-date-range-span">
1542  <template>
1543    <content></content>
1544  </template>
1545</dom-module><dom-module id="tr-v-ui-generic-set-span">
1546  <template>
1547    <style>
1548      a {
1549        display: block;
1550      }
1551    </style>
1552
1553    <tr-ui-a-generic-object-view id="generic"></tr-ui-a-generic-object-view>
1554
1555    <div id="links"></div>
1556  </template>
1557</dom-module><dom-module id="tr-v-ui-related-event-set-span">
1558</dom-module><dom-module id="tr-v-ui-related-histogram-map-span">
1559  <template>
1560    <tr-ui-b-table id="table"></tr-ui-b-table>
1561  </template>
1562</dom-module><dom-module id="tr-v-ui-scalar-diagnostic-span">
1563  <template>
1564    <tr-v-ui-scalar-span id="scalar"></tr-v-ui-scalar-span>
1565  </template>
1566</dom-module><dom-module id="tr-v-ui-tag-map-span">
1567  <template>
1568    <style>
1569    #hide, #generic {
1570      display: none;
1571    }
1572    </style>
1573    <button id="show" on-click="onShow_">Show</button>
1574    <button id="hide" on-click="onHide_">Hide</button>
1575    <tr-ui-a-generic-object-view id="generic"></tr-ui-a-generic-object-view>
1576  </template>
1577</dom-module><dom-module id="tr-v-ui-unmergeable-diagnostic-set-span">
1578</dom-module><dom-module id="tr-v-ui-diagnostic-map-table">
1579  <template>
1580    <tr-ui-b-table id="table"></tr-ui-b-table>
1581  </template>
1582</dom-module><dom-module id="tr-v-ui-scalar-map-table">
1583  <template>
1584    <tr-ui-b-table id="table"></tr-ui-b-table>
1585  </template>
1586</dom-module><dom-module id="tr-v-ui-histogram-span">
1587  <template>
1588    <style>
1589    #container {
1590      display: flex;
1591      flex-direction: row;
1592      justify-content: space-between;
1593    }
1594    #chart {
1595      flex-grow: 1;
1596      display: none;
1597    }
1598    #drag_handle, #diagnostics_tab_templates {
1599      display: none;
1600    }
1601    #chart svg {
1602      display: block;
1603    }
1604    #stats_container {
1605      overflow-y: auto;
1606    }
1607    </style>
1608
1609    <div id="container">
1610      <div id="chart"></div>
1611      <div id="stats_container">
1612        <tr-v-ui-scalar-map-table id="stats"></tr-v-ui-scalar-map-table>
1613      </div>
1614    </div>
1615    <tr-ui-b-drag-handle id="drag_handle"></tr-ui-b-drag-handle>
1616
1617    <tr-ui-b-tab-view id="diagnostics"></tr-ui-b-tab-view>
1618
1619    <div id="diagnostics_tab_templates">
1620      <tr-v-ui-diagnostic-map-table id="metric_diagnostics"></tr-v-ui-diagnostic-map-table>
1621
1622      <tr-v-ui-diagnostic-map-table id="metadata_diagnostics"></tr-v-ui-diagnostic-map-table>
1623
1624      <div id="sample_diagnostics_container">
1625        <div id="merge_sample_diagnostics_container">
1626          <input checked="" id="merge_sample_diagnostics" on-change="updateDiagnostics_" type="checkbox"/>
1627          <label for="merge_sample_diagnostics">Merge Sample Diagnostics</label>
1628        </div>
1629        <tr-v-ui-diagnostic-map-table id="sample_diagnostics"></tr-v-ui-diagnostic-map-table>
1630      </div>
1631    </div>
1632  </template>
1633</dom-module><dom-module id="tr-ui-a-multi-event-sub-view">
1634  <template>
1635    <style>
1636    :host {
1637      display: flex;
1638      overflow: auto;
1639    }
1640    #content {
1641      display: flex;
1642      flex-direction: column;
1643      flex: 0 1 auto;
1644      align-self: stretch;
1645    }
1646    #content > * {
1647      flex: 0 0 auto;
1648      align-self: stretch;
1649    }
1650    #histogramContainer {
1651      display: flex;
1652    }
1653
1654    tr-ui-a-multi-event-summary-table {
1655      border-bottom: 1px solid #aaa;
1656    }
1657
1658    tr-ui-a-selection-summary-table  {
1659      margin-top: 1.25em;
1660      border-top: 1px solid #aaa;
1661      background-color: #eee;
1662      font-weight: bold;
1663      margin-bottom: 1.25em;
1664      border-bottom: 1px solid #aaa;
1665    }
1666    </style>
1667    <div id="content">
1668      <tr-ui-a-multi-event-summary-table id="eventSummaryTable">
1669      </tr-ui-a-multi-event-summary-table>
1670      <tr-ui-a-selection-summary-table id="selectionSummaryTable">
1671      </tr-ui-a-selection-summary-table>
1672      <tr-ui-b-radio-picker id="radioPicker">
1673      </tr-ui-b-radio-picker>
1674      <div id="histogramContainer">
1675        <tr-v-ui-histogram-span id="histogramSpan">
1676        </tr-v-ui-histogram-span>
1677      </div>
1678    </div>
1679  </template>
1680</dom-module><dom-module id="tr-ui-a-related-events">
1681  <template>
1682    <style>
1683    :host {
1684      display: flex;
1685      flex-direction: column;
1686    }
1687    #table {
1688      flex: 1 1 auto;
1689      align-self: stretch;
1690      font-size: 12px;
1691    }
1692    </style>
1693    <tr-ui-b-table id="table"></tr-ui-b-table>
1694  </template>
1695</dom-module><dom-module id="tr-ui-a-multi-async-slice-sub-view">
1696  <template>
1697    <style>
1698    :host {
1699      display: flex;
1700    }
1701    #container {
1702      display: flex;
1703      flex: 1 1 auto;
1704    }
1705    #events {
1706      margin-left: 8px;
1707      flex: 0 1 200px;
1708    }
1709    </style>
1710    <div id="container">
1711      <tr-ui-a-multi-event-sub-view id="content"></tr-ui-a-multi-event-sub-view>
1712      <div id="events">
1713        <tr-ui-a-related-events id="relatedEvents"></tr-ui-a-related-events>
1714      </div>
1715    </div>
1716  </template>
1717</dom-module><dom-module id="tr-ui-a-multi-cpu-slice-sub-view">
1718  <template>
1719    <style>
1720    :host {
1721      display: flex;
1722    }
1723    #content {
1724      flex: 1 1 auto;
1725    }
1726    </style>
1727    <tr-ui-a-multi-event-sub-view id="content"></tr-ui-a-multi-event-sub-view>
1728  </template>
1729</dom-module><dom-module id="tr-ui-a-multi-flow-event-sub-view">
1730  <template>
1731    <style>
1732    :host {
1733      display: flex;
1734    }
1735    </style>
1736    <tr-ui-a-multi-event-sub-view id="content"></tr-ui-a-multi-event-sub-view>
1737  </template>
1738</dom-module><dom-module id="tr-ui-a-multi-instant-event-sub-view">
1739  <template>
1740    <style>
1741    :host {
1742      display: block;
1743    }
1744    </style>
1745    <div id="content"></div>
1746  </template>
1747</dom-module><dom-module id="tr-ui-a-multi-object-sub-view">
1748  <template>
1749    <style>
1750    :host {
1751      display: flex;
1752      font-size: 12px;
1753    }
1754    </style>
1755    <tr-ui-b-table id="content"></tr-ui-b-table>
1756  </template>
1757</dom-module><dom-module id="tr-ui-a-frame-power-usage-chart">
1758  <template>
1759    <div id="content"></div>
1760  </template>
1761</dom-module><dom-module id="tr-ui-a-power-sample-summary-table">
1762  <template>
1763    <style>
1764    tr-ui-b-table {
1765      font-size: 12px;
1766    }
1767    </style>
1768    <tr-ui-b-table id="table"></tr-ui-b-table>
1769  </template>
1770</dom-module><dom-module id="tr-ui-a-multi-power-sample-sub-view">
1771  <template>
1772    <style>
1773    :host {
1774      display: flex;
1775      flex-direction: row;
1776    }
1777    #tables {
1778      display: flex;
1779      flex-direction: column;
1780      width: 50%;
1781    }
1782    #chart {
1783      width: 50%;
1784    }
1785    </style>
1786    <div id="tables">
1787      <tr-ui-a-power-sample-summary-table id="summaryTable">
1788      </tr-ui-a-power-sample-summary-table>
1789    </div>
1790    <tr-ui-a-frame-power-usage-chart id="chart">
1791    </tr-ui-a-frame-power-usage-chart>
1792  </template>
1793</dom-module><dom-module id="tr-ui-a-multi-sample-sub-view">
1794  <template>
1795    <style>
1796    :host { display: block; }
1797    #control {
1798      background-color: #e6e6e6;
1799      background-image: -webkit-gradient(linear, 0 0, 0 100%,
1800                                         from(#E5E5E5), to(#D1D1D1));
1801      flex: 0 0 auto;
1802      overflow-x: auto;
1803    }
1804    #control::-webkit-scrollbar { height: 0px; }
1805    #control {
1806      font-size: 12px;
1807      display: flex;
1808      flex-direction: row;
1809      align-items: stretch;
1810      margin: 1px;
1811      margin-right: 2px;
1812    }
1813    tr-ui-b-table {
1814      font-size: 12px;
1815    }
1816    </style>
1817    <div id="control">
1818      Sample View Option
1819    </div>
1820    <tr-ui-b-table id="table">
1821    </tr-ui-b-table>
1822  </template>
1823</dom-module><dom-module id="tr-ui-a-multi-thread-slice-sub-view">
1824  <template>
1825    <style>
1826    :host {
1827      display: flex;
1828    }
1829    #content {
1830      display: flex;
1831      flex: 1 1 auto;
1832    }
1833    #content > tr-ui-a-related-events {
1834      margin-left: 8px;
1835      flex: 0 1 200px;
1836    }
1837    </style>
1838    <div id="content"></div>
1839  </template>
1840</dom-module><dom-module id="tr-ui-a-multi-thread-time-slice-sub-view">
1841  <template>
1842    <style>
1843    :host {
1844      display: flex;
1845    }
1846    #content {
1847      flex: 1 1 auto;
1848    }
1849    </style>
1850    <tr-ui-a-multi-event-sub-view id="content"></tr-ui-a-multi-event-sub-view>
1851  </template>
1852</dom-module><dom-module id="tr-ui-a-user-expectation-related-samples-table">
1853  <template>
1854    <style>
1855    #table {
1856      flex: 1 1 auto;
1857      align-self: stretch;
1858      font-size: 12px;
1859    }
1860    </style>
1861    <tr-ui-b-table id="table"></tr-ui-b-table>
1862  </template>
1863</dom-module><dom-module id="tr-ui-a-multi-user-expectation-sub-view">
1864  <template>
1865    <style>
1866    :host {
1867      display: flex;
1868      flex: 1 1 auto;
1869    }
1870    #events {
1871      margin-left: 8px;
1872      flex: 0 1 200px;
1873    }
1874    </style>
1875    <tr-ui-a-multi-event-sub-view id="realView"></tr-ui-a-multi-event-sub-view>
1876    <div id="events">
1877      <tr-ui-a-user-expectation-related-samples-table id="relatedSamples"></tr-ui-a-user-expectation-related-samples-table>
1878    </div>
1879  </template>
1880</dom-module><dom-module id="tr-ui-a-single-async-slice-sub-view">
1881  <template>
1882    <style>
1883    :host {
1884      display: flex;
1885      flex-direction: row;
1886    }
1887    #events {
1888      display:flex;
1889      flex-direction: column;
1890    }
1891    </style>
1892    <tr-ui-a-single-event-sub-view id="content"></tr-ui-a-single-event-sub-view>
1893    <div id="events">
1894      <tr-ui-a-related-events id="relatedEvents"></tr-ui-a-related-events>
1895    </div>
1896  </template>
1897</dom-module><dom-module id="tr-ui-a-single-cpu-slice-sub-view">
1898  <template>
1899    <style>
1900    table {
1901      border-collapse: collapse;
1902      border-width: 0;
1903      margin-bottom: 25px;
1904      width: 100%;
1905    }
1906
1907    table tr > td:first-child {
1908      padding-left: 2px;
1909    }
1910
1911    table tr > td {
1912      padding: 2px 4px 2px 4px;
1913      vertical-align: text-top;
1914      width: 150px;
1915    }
1916
1917    table td td {
1918      padding: 0 0 0 0;
1919      width: auto;
1920    }
1921    tr {
1922      vertical-align: top;
1923    }
1924
1925    tr:nth-child(2n+0) {
1926      background-color: #e2e2e2;
1927    }
1928    </style>
1929    <table>
1930      <tbody><tr>
1931        <td>Running process:</td><td id="process-name"></td>
1932      </tr>
1933      <tr>
1934        <td>Running thread:</td><td id="thread-name"></td>
1935      </tr>
1936      <tr>
1937        <td>Start:</td>
1938        <td>
1939          <tr-v-ui-scalar-span id="start">
1940          </tr-v-ui-scalar-span>
1941        </td>
1942      </tr>
1943      <tr>
1944        <td>Duration:</td>
1945        <td>
1946          <tr-v-ui-scalar-span id="duration">
1947          </tr-v-ui-scalar-span>
1948        </td>
1949      </tr>
1950      <tr>
1951        <td>Active slices:</td><td id="running-thread"></td>
1952      </tr>
1953      <tr>
1954        <td>Args:</td>
1955        <td>
1956          <tr-ui-a-generic-object-view id="args">
1957          </tr-ui-a-generic-object-view>
1958        </td>
1959      </tr>
1960    </tbody></table>
1961  </template>
1962</dom-module><dom-module id="tr-ui-a-single-flow-event-sub-view">
1963  <template>
1964    <style>
1965    :host {
1966      display: block;
1967    }
1968    </style>
1969    <tr-ui-a-single-event-sub-view id="singleEventSubView">
1970    </tr-ui-a-single-event-sub-view>
1971  </template>
1972</dom-module><dom-module id="tr-ui-a-single-frame-sub-view">
1973  <template>
1974    <style>
1975    :host {
1976      display: flex;
1977      flex-direction: column;
1978    }
1979    #asv {
1980      flex: 0 0 auto;
1981      align-self: stretch;
1982    }
1983    </style>
1984    <tr-ui-a-alert-sub-view id="asv">
1985    </tr-ui-a-alert-sub-view>
1986  </template>
1987</dom-module><dom-module id="tr-ui-a-single-instant-event-sub-view">
1988  <template>
1989    <style>
1990    :host {
1991      display: block;
1992    }
1993    </style>
1994    <div id="content"></div>
1995  </template>
1996</dom-module><dom-module id="tr-ui-a-single-object-instance-sub-view">
1997  <template>
1998    <style>
1999    :host {
2000      display: block;
2001    }
2002
2003    #snapshots > * {
2004      display: block;
2005    }
2006
2007    :host {
2008      overflow: auto;
2009      display: block;
2010    }
2011
2012    * {
2013      -webkit-user-select: text;
2014    }
2015
2016    .title {
2017      border-bottom: 1px solid rgb(128, 128, 128);
2018      font-size: 110%;
2019      font-weight: bold;
2020    }
2021
2022    td, th {
2023      font-family: monospace;
2024      vertical-align: top;
2025    }
2026    </style>
2027    <div id="content"></div>
2028  </template>
2029</dom-module><dom-module id="tr-ui-a-single-object-snapshot-sub-view">
2030  <template>
2031    <style>
2032    #args {
2033      white-space: pre;
2034    }
2035
2036    :host {
2037      overflow: auto;
2038      display: flex;
2039    }
2040
2041    ::content * {
2042      -webkit-user-select: text;
2043    }
2044
2045    ::content .title {
2046      border-bottom: 1px solid rgb(128, 128, 128);
2047      font-size: 110%;
2048      font-weight: bold;
2049    }
2050
2051    ::content td, th {
2052      font-family: monospace;
2053      vertical-align: top;
2054    }
2055    </style>
2056    <content></content>
2057  </template>
2058</dom-module><dom-module id="tr-ui-a-power-sample-table">
2059  <template>
2060    <style>
2061    :host {
2062      display: flex;
2063      font-size: 12px;
2064    }
2065    </style>
2066    <tr-ui-b-table id="table"></tr-ui-b-table>
2067  </template>
2068</dom-module><dom-module id="tr-ui-a-single-power-sample-sub-view">
2069  <template>
2070    <style>
2071    :host { display: block; }
2072    </style>
2073    <tr-ui-a-power-sample-table id="samplesTable">
2074    </tr-ui-a-power-sample-table>
2075  </template>
2076</dom-module><dom-module id="tr-ui-a-single-sample-sub-view">
2077  <template>
2078    <style>
2079    :host {
2080      display: flex;
2081      font-size: 12px;
2082    }
2083    </style>
2084    <tr-ui-b-table id="content"></tr-ui-b-table>
2085  </template>
2086</dom-module><dom-module id="tr-ui-a-single-thread-slice-sub-view">
2087  <template>
2088    <style>
2089    :host {
2090      display: flex;
2091      flex-direction: row;
2092    }
2093    #events {
2094      display: flex;
2095      flex-direction: column;
2096    }
2097
2098    </style>
2099    <tr-ui-a-single-event-sub-view id="content"></tr-ui-a-single-event-sub-view>
2100    <div id="events">
2101      <tr-ui-a-related-events id="relatedEvents">
2102      </tr-ui-a-related-events>
2103    </div>
2104  </template>
2105</dom-module><dom-module id="tr-ui-a-single-thread-time-slice-sub-view">
2106  <template>
2107    <style>
2108    table {
2109      border-collapse: collapse;
2110      border-width: 0;
2111      margin-bottom: 25px;
2112      width: 100%;
2113    }
2114
2115    table tr > td:first-child {
2116      padding-left: 2px;
2117    }
2118
2119    table tr > td {
2120      padding: 2px 4px 2px 4px;
2121      vertical-align: text-top;
2122      width: 150px;
2123    }
2124
2125    table td td {
2126      padding: 0 0 0 0;
2127      width: auto;
2128    }
2129    tr {
2130      vertical-align: top;
2131    }
2132
2133    tr:nth-child(2n+0) {
2134      background-color: #e2e2e2;
2135    }
2136    </style>
2137    <table>
2138      <tbody><tr>
2139        <td>Running process:</td><td id="process-name"></td>
2140      </tr>
2141      <tr>
2142        <td>Running thread:</td><td id="thread-name"></td>
2143      </tr>
2144      <tr>
2145        <td>State:</td>
2146        <td><b><span id="state"></span></b></td>
2147      </tr>
2148      <tr>
2149        <td>Start:</td>
2150        <td>
2151          <tr-v-ui-scalar-span id="start">
2152          </tr-v-ui-scalar-span>
2153        </td>
2154      </tr>
2155      <tr>
2156        <td>Duration:</td>
2157        <td>
2158          <tr-v-ui-scalar-span id="duration">
2159          </tr-v-ui-scalar-span>
2160        </td>
2161      </tr>
2162
2163      <tr>
2164        <td>On CPU:</td><td id="on-cpu"></td>
2165      </tr>
2166
2167      <tr>
2168        <td>Running instead:</td><td id="running-instead"></td>
2169      </tr>
2170
2171      <tr>
2172        <td>Args:</td><td id="args"></td>
2173      </tr>
2174    </tbody></table>
2175  </template>
2176</dom-module><dom-module id="tr-ui-a-single-user-expectation-sub-view">
2177  <template>
2178    <style>
2179    :host {
2180      display: flex;
2181      flex-direction: row;
2182    }
2183    #events {
2184      display: flex;
2185      flex-direction: column;
2186    }
2187    </style>
2188    <tr-ui-a-single-event-sub-view id="realView"></tr-ui-a-single-event-sub-view>
2189    <div id="events">
2190      <tr-ui-a-user-expectation-related-samples-table id="relatedSamples"></tr-ui-a-user-expectation-related-samples-table>
2191    </div>
2192  </template>
2193</dom-module><dom-module id="tr-ui-a-analysis-view">
2194  <template>
2195    <style>
2196      :host {
2197        background-color: white;
2198        display: flex;
2199        flex-direction: column;
2200        height: 275px;
2201        overflow: auto;
2202      }
2203
2204      :host(.tall-mode) {
2205        height: 525px;
2206      }
2207    </style>
2208    <content></content>
2209  </template>
2210</dom-module><dom-module id="tr-ui-b-dropdown">
2211  <template>
2212    <style>
2213    button {
2214      @apply(--dropdown-button);
2215    }
2216    button.open {
2217      @apply(--dropdown-button-open);
2218    }
2219    dialog {
2220      position: absolute;
2221      margin: 0;
2222      padding: 1em;
2223      border: 1px solid darkgrey;
2224      @apply(--dropdown-dialog);
2225    }
2226    </style>
2227
2228    <button id="button" on-tap="open">[[label]]</button>
2229
2230    <dialog id="dialog" on-cancel="close" on-tap="onDialogTap_">
2231      <content></content>
2232    </dialog>
2233  </template>
2234</dom-module><dom-module id="tr-ui-b-info-bar-group">
2235  <template>
2236    <style>
2237    :host {
2238      flex: 0 0 auto;
2239      flex-direction: column;
2240      display: flex;
2241    }
2242    </style>
2243    <div id="messages"></div>
2244  </template>
2245</dom-module><dom-module id="tr-ui-b-toolbar-button">
2246  <template>
2247    <style>
2248    :host {
2249      display: flex;
2250      background-color: #f8f8f8;
2251      border: 1px solid rgba(0, 0, 0, 0.5);
2252      color: rgba(0,0,0,0.8);
2253      justify-content: center;
2254      align-self: stretch;
2255      min-width: 23px;
2256    }
2257
2258    :host(:hover) {
2259      background-color: rgba(255, 255, 255, 1.0);
2260      border-color: rgba(0, 0, 0, 0.8);
2261      box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
2262      color: rgba(0, 0, 0, 1);
2263    }
2264
2265    #aligner {
2266      display: flex;
2267      flex: 0 0 auto;
2268      align-self: center;
2269    }
2270    </style>
2271    <div id="aligner">
2272      <content></content>
2273    </div>
2274  </template>
2275</dom-module><style>
2276.drawing-container{display:inline;overflow:auto;overflow-x:hidden;position:relative}.drawing-container-canvas{display:block;pointer-events:none;position:absolute;top:0}
2277</style><style>
2278.letter-dot-track {
2279  height: 18px;
2280}
2281</style><style>
2282.chart-track {
2283  height: 30px;
2284  position: relative;
2285}
2286</style><style>
2287.cpu-usage-track {
2288  height: 90px;
2289}
2290</style><style>
2291.power-series-track {
2292  height: 90px;
2293}
2294</style><style>
2295.spacing-track{height:4px}
2296</style><style>
2297.rect-track{height:18px}
2298</style><style>
2299.thread-track{flex-direction:column;display:flex;position:relative}
2300</style><style>
2301.process-track-header{flex:0 0 auto;background-image:-webkit-gradient(linear,0 0,100% 0,from(#E5E5E5),to(#D1D1D1));border-bottom:1px solid #8e8e8e;border-top:1px solid white;font-size:75%}.process-track-name:before{content:'\25B8';padding:0 5px}.process-track-base.expanded .process-track-name:before{content:'\25BE'}
2302</style><style>
2303.model-track {
2304  flex-grow: 1;
2305}
2306</style><style>
2307.x-axis-track {
2308  height: 12px;
2309}
2310
2311.x-axis-track.tall-mode {
2312  height: 30px;
2313}
2314</style><dom-module id="tr-ui-timeline-track-view">
2315  <template>
2316    <style>
2317    :host {
2318      flex-direction: column;
2319      display: flex;
2320      position: relative;
2321    }
2322
2323    :host ::content * {
2324      -webkit-user-select: none;
2325      cursor: default;
2326    }
2327
2328    #drag_box {
2329      background-color: rgba(0, 0, 255, 0.25);
2330      border: 1px solid rgb(0, 0, 96);
2331      font-size: 75%;
2332      position: fixed;
2333    }
2334
2335    #hint_text {
2336      position: absolute;
2337      bottom: 6px;
2338      right: 6px;
2339      font-size: 8pt;
2340    }
2341    </style>
2342    <content></content>
2343
2344    <div id="drag_box"></div>
2345    <div id="hint_text"></div>
2346
2347    <tv-ui-b-hotkey-controller id="hotkey_controller">
2348    </tv-ui-b-hotkey-controller>
2349  </template>
2350</dom-module><dom-module id="tr-ui-find-control">
2351  <template>
2352    <style>
2353      :host {
2354        -webkit-user-select: none;
2355        display: flex;
2356        position: relative;
2357      }
2358      input {
2359        -webkit-user-select: auto;
2360        background-color: #f8f8f8;
2361        border: 1px solid rgba(0, 0, 0, 0.5);
2362        box-sizing: border-box;
2363        margin: 0;
2364        padding: 0;
2365        width: 170px;
2366      }
2367      input:focus {
2368        background-color: white;
2369      }
2370      tr-ui-b-toolbar-button {
2371        border-left: none;
2372        margin: 0;
2373      }
2374      #hitCount {
2375        left: 0;
2376        opacity: 0.25;
2377        pointer-events: none;
2378        position: absolute;
2379        text-align: right;
2380        top: 2px;
2381        width: 167px;
2382        z-index: 1;
2383      }
2384      #spinner {
2385        visibility: hidden;
2386        width: 8px;
2387        height: 8px;
2388        left: 154px;
2389        pointer-events: none;
2390        position: absolute;
2391        top: 4px;
2392        z-index: 1;
2393
2394        border: 2px solid transparent;
2395        border-bottom: 2px solid rgba(0, 0, 0, 0.5);
2396        border-right: 2px solid rgba(0, 0, 0, 0.5);
2397        border-radius: 50%;
2398      }
2399      @keyframes spin { 100% { transform: rotate(360deg); } }
2400    </style>
2401
2402    <input id="filter" on-blur="filterBlur" on-focus="filterFocus" on-input="filterTextChanged" on-keydown="filterKeyDown" on-mouseup="filterMouseUp" type="text"/>
2403    <div id="spinner"></div>
2404    <tr-ui-b-toolbar-button on-click="findPrevious">
24052406    </tr-ui-b-toolbar-button>
2407    <tr-ui-b-toolbar-button on-click="findNext">
24082409    </tr-ui-b-toolbar-button>
2410    <div id="hitCount">0 of 0</div>
2411  </template>
2412</dom-module><dom-module id="tr-ui-scripting-control">
2413  <template>
2414    <style>
2415      :host {
2416        flex: 1 1 auto;
2417      }
2418      .root {
2419        font-family: monospace;
2420        cursor: text;
2421
2422        padding: 2px;
2423        margin: 2px;
2424        border: 1px solid rgba(0, 0, 0, 0.5);
2425        background: white;
2426
2427        height: 100px;
2428        overflow-y: auto;
2429
2430        transition-property: opacity, height, padding, margin;
2431        transition-duration: .2s;
2432        transition-timing-function: ease-out;
2433      }
2434      .hidden {
2435        margin-top: 0px;
2436        margin-bottom: 0px;
2437        padding-top: 0px;
2438        padding-bottom: 0px;
2439        height: 0px;
2440        opacity: 0;
2441      }
2442      .focused {
2443        outline: auto 5px -webkit-focus-ring-color;
2444      }
2445      #history {
2446        -webkit-user-select: text;
2447        color: #777;
2448      }
2449      #promptContainer {
2450        display: flex;
2451      }
2452      #promptMark {
2453        width: 1em;
2454        color: #468;
2455      }
2456      #prompt {
2457        flex: 1;
2458        width: 100%;
2459        border: none !important;
2460        background-color: inherit !important;
2461        font: inherit !important;
2462        text-overflow: clip !important;
2463        text-decoration: none !important;
2464      }
2465      #prompt:focus {
2466        outline: none;
2467      }
2468    </style>
2469
2470    <div class="root hidden" id="root" on-focus="onConsoleFocus" tabindex="0">
2471      <div id="history"></div>
2472      <div id="promptContainer">
2473        <span id="promptMark">&gt;</span>
2474        <input id="prompt" on-blur="onConsoleBlur" on-keydown="promptKeyDown" on-keypress="promptKeyPress" type="text"/>
2475       </div>
2476    </div>
2477  </template>
2478</dom-module><dom-module id="tr-ui-side-panel-container">
2479  <template>
2480    <style>
2481    :host {
2482      align-items: stretch;
2483      display: flex;
2484      background-color: white;
2485    }
2486
2487    :host([expanded]) > #side_panel_drag_handle,
2488    :host([expanded]) > active-panel-container {
2489      flex: 1 1 auto;
2490      border-left: 1px solid black;
2491      display: flex;
2492    }
2493
2494    :host(:not([expanded])) > #side_panel_drag_handle,
2495    :host(:not([expanded])) > active-panel-container {
2496      display: none;
2497    }
2498
2499    active-panel-container {
2500      display: flex;
2501    }
2502
2503    tab-strip {
2504      flex: 0 0 auto;
2505      flex-direction: column;
2506      -webkit-user-select: none;
2507      background-color: rgb(236, 236, 236);
2508      border-left: 1px solid black;
2509      cursor: default;
2510      display: flex;
2511      min-width: 18px; /* workaround for flexbox and writing-mode mixing bug */
2512      padding: 10px 0 10px 0;
2513      font-size: 12px;
2514    }
2515
2516    tab-strip > tab-strip-label {
2517      flex-shrink: 0;
2518      -webkit-writing-mode: vertical-rl;
2519      white-space: nowrap;
2520      display: inline;
2521      margin-right: 1px;
2522      min-height: 20px;
2523      padding: 15px 3px 15px 1px;
2524    }
2525
2526    tab-strip >
2527        tab-strip-label:not([enabled]) {
2528      color: rgb(128, 128, 128);
2529    }
2530
2531    tab-strip > tab-strip-label[selected] {
2532      background-color: white;
2533      border: 1px solid rgb(163, 163, 163);
2534      border-left: none;
2535      padding: 14px 2px 14px 1px;
2536    }
2537
2538    #active_panel_container {
2539      overflow: auto;
2540    }
2541    </style>
2542
2543    <tr-ui-b-drag-handle id="side_panel_drag_handle"></tr-ui-b-drag-handle>
2544    <active-panel-container id="active_panel_container">
2545    </active-panel-container>
2546    <tab-strip id="tab_strip"></tab-strip>
2547  </template>
2548</dom-module><dom-module id="tr-ui-timeline-view-help-overlay">
2549  <template>
2550    <style>
2551    :host {
2552      flex: 1 1 auto;
2553      flex-direction: row;
2554      display: flex;
2555      width: 700px;
2556    }
2557    .column {
2558      width: 50%;
2559    }
2560    h2 {
2561      font-size: 1.2em;
2562      margin: 0;
2563      margin-top: 5px;
2564      text-align: center;
2565    }
2566    h3 {
2567      margin: 0;
2568      margin-left: 126px;
2569      margin-top: 10px;
2570    }
2571    .pair {
2572      flex: 1 1 auto;
2573      flex-direction: row;
2574      display: flex;
2575    }
2576    .command {
2577      font-family: monospace;
2578      margin-right: 5px;
2579      text-align: right;
2580      width: 150px;
2581    }
2582    .action {
2583      font-size: 0.9em;
2584      text-align: left;
2585      width: 200px;
2586    }
2587    tr-ui-b-mouse-mode-icon {
2588      border: 1px solid #888;
2589      border-radius: 3px;
2590      box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
2591      display: inline-block;
2592      margin-right: 1px;
2593      position: relative;
2594      top: 4px;
2595    }
2596    .mouse-mode-icon.pan-mode {
2597      background-position: -1px -11px;
2598    }
2599    .mouse-mode-icon.select-mode {
2600      background-position: -1px -41px;
2601    }
2602    .mouse-mode-icon.zoom-mode {
2603      background-position: -1px -71px;
2604    }
2605    .mouse-mode-icon.timing-mode {
2606      background-position: -1px -101px;
2607    }
2608    </style>
2609    <div class="column left">
2610      <h2>Navigation</h2>
2611      <div class="pair">
2612        <div class="command">w/s</div>
2613        <div class="action">Zoom in/out (+shift: faster)</div>
2614      </div>
2615
2616      <div class="pair">
2617        <div class="command">a/d</div>
2618        <div class="action">Pan left/right (+shift: faster)</div>
2619      </div>
2620
2621      <div class="pair">
2622        <div class="command">→/shift-TAB</div>
2623        <div class="action">Select previous event</div>
2624      </div>
2625
2626      <div class="pair">
2627        <div class="command">←/TAB</div>
2628        <div class="action">Select next event</div>
2629      </div>
2630
2631      <h2>Mouse Controls</h2>
2632      <div class="pair">
2633        <div class="command">click</div>
2634        <div class="action">Select event</div>
2635      </div>
2636      <div class="pair">
2637        <div class="command">alt-mousewheel</div>
2638        <div class="action">Zoom in/out</div>
2639      </div>
2640
2641      <h3>
2642        <tr-ui-b-mouse-mode-icon mode-name="SELECTION"></tr-ui-b-mouse-mode-icon>
2643        Select mode
2644      </h3>
2645      <div class="pair">
2646        <div class="command">drag</div>
2647        <div class="action">Box select</div>
2648      </div>
2649
2650      <div class="pair">
2651        <div class="command"><span class="mod"></span>-click/drag</div>
2652        <div class="action">Add events to the current selection</div>
2653      </div>
2654
2655      <div class="pair">
2656        <div class="command">double click</div>
2657        <div class="action">Select all events with same title</div>
2658      </div>
2659
2660      <h3>
2661        <tr-ui-b-mouse-mode-icon mode-name="PANSCAN"></tr-ui-b-mouse-mode-icon>
2662        Pan mode
2663      </h3>
2664      <div class="pair">
2665        <div class="command">drag</div>
2666        <div class="action">Pan the view</div>
2667      </div>
2668
2669      <h3>
2670        <tr-ui-b-mouse-mode-icon mode-name="ZOOM"></tr-ui-b-mouse-mode-icon>
2671        Zoom mode
2672      </h3>
2673      <div class="pair">
2674        <div class="command">drag</div>
2675        <div class="action">Zoom in/out by dragging up/down</div>
2676      </div>
2677
2678      <h3>
2679        <tr-ui-b-mouse-mode-icon mode-name="TIMING"></tr-ui-b-mouse-mode-icon>
2680        Timing mode
2681      </h3>
2682      <div class="pair">
2683        <div class="command">drag</div>
2684        <div class="action">Create or move markers</div>
2685      </div>
2686
2687      <div class="pair">
2688        <div class="command">double click</div>
2689        <div class="action">Set marker range to slice</div>
2690      </div>
2691    </div>
2692
2693    <div class="column right">
2694      <h2>General</h2>
2695      <div class="pair">
2696        <div class="command">1-4</div>
2697        <div class="action">Switch mouse mode</div>
2698      </div>
2699
2700      <div class="pair">
2701        <div class="command">shift</div>
2702        <div class="action">Hold for temporary select</div>
2703      </div>
2704
2705      <div class="pair">
2706        <div class="command">space</div>
2707        <div class="action">Hold for temporary pan</div>
2708      </div>
2709
2710      <div class="pair">
2711        <div class="command">/</div>
2712        <div class="action">Search</div>
2713      </div>
2714
2715      <div class="pair">
2716        <div class="command">enter</div>
2717        <div class="action">Step through search results</div>
2718      </div>
2719
2720      <div class="pair">
2721        <div class="command">f</div>
2722        <div class="action">Zoom into selection</div>
2723      </div>
2724
2725      <div class="pair">
2726        <div class="command">z/0</div>
2727        <div class="action">Reset zoom and pan</div>
2728      </div>
2729
2730      <div class="pair">
2731        <div class="command">g/G</div>
2732        <div class="action">Toggle 60hz grid</div>
2733      </div>
2734
2735      <div class="pair">
2736        <div class="command">v</div>
2737        <div class="action">Highlight VSync</div>
2738      </div>
2739
2740      <div class="pair">
2741        <div class="command">h</div>
2742        <div class="action">Toggle low/high details</div>
2743      </div>
2744
2745      <div class="pair">
2746        <div class="command">m</div>
2747        <div class="action">Mark current selection</div>
2748      </div>
2749
2750      <div class="pair">
2751        <div class="command">p</div>
2752        <div class="action">Select power samples over current selection interval</div>
2753      </div>
2754
2755      <div class="pair">
2756        <div class="command">`</div>
2757        <div class="action">Show or hide the scripting console</div>
2758      </div>
2759
2760      <div class="pair">
2761        <div class="command">?</div>
2762        <div class="action">Show help</div>
2763      </div>
2764    </div>
2765  </template>
2766</dom-module><dom-module id="tr-ui-timeline-view-metadata-overlay">
2767  <template>
2768    <style>
2769    :host {
2770      width: 700px;
2771
2772      overflow: auto;
2773    }
2774    </style>
2775    <tr-ui-b-table id="table"></tr-ui-b-table>
2776  </template>
2777</dom-module><dom-module id="tr-ui-timeline-view">
2778  <template>
2779    <style>
2780    :host {
2781      flex-direction: column;
2782      cursor: default;
2783      display: flex;
2784      font-family: sans-serif;
2785      padding: 0;
2786    }
2787
2788    #control {
2789      background-color: #e6e6e6;
2790      background-image: -webkit-gradient(linear, 0 0, 0 100%,
2791          from(#E5E5E5), to(#D1D1D1));
2792      flex: 0 0 auto;
2793      overflow-x: auto;
2794    }
2795
2796    #control::-webkit-scrollbar { height: 0px; }
2797
2798    #control > #bar {
2799      font-size: 12px;
2800      display: flex;
2801      flex-direction: row;
2802      margin: 1px;
2803    }
2804
2805    #control > #bar > #title {
2806      display: flex;
2807      align-items: center;
2808      padding-left: 8px;
2809      padding-right: 8px;
2810      flex: 1 1 auto;
2811    }
2812
2813    #control > #bar > #left_controls,
2814    #control > #bar > #right_controls {
2815      display: flex;
2816      flex-direction: row;
2817      align-items: stretch;
2818    }
2819
2820    #control > #bar > #left_controls > * { margin-right: 2px; }
2821    #control > #bar > #right_controls > * { margin-left: 2px; }
2822    #control > #collapsing_controls { display: flex; }
2823
2824    middle-container {
2825      flex: 1 1 auto;
2826      flex-direction: row;
2827      border-bottom: 1px solid #8e8e8e;
2828      display: flex;
2829      min-height: 0;
2830    }
2831
2832    middle-container ::content track-view-container {
2833      flex: 1 1 auto;
2834      display: flex;
2835      min-height: 0;
2836      min-width: 0;
2837      overflow-x: hidden;
2838    }
2839
2840    middle-container ::content track-view-container > * { flex: 1 1 auto; }
2841    middle-container > x-timeline-view-side-panel-container { flex: 0 0 auto; }
2842    tr-ui-b-drag-handle { flex: 0 0 auto; }
2843    tr-ui-a-analysis-view { flex: 0 0 auto; }
2844
2845    #view_options_dropdown {
2846      --dropdown-button: {
2847        -webkit-appearance: none;
2848        align-items: normal;
2849        background-color: rgb(248, 248, 248);
2850        border: 1px solid rgba(0, 0, 0, 0.5);
2851        box-sizing: content-box;
2852        color: rgba(0, 0, 0, 0.8);
2853        font-family: sans-serif;
2854        font-size: 12px;
2855        padding: 2px 5px;
2856      }
2857    }
2858    </style>
2859
2860    <tv-ui-b-hotkey-controller id="hkc"></tv-ui-b-hotkey-controller>
2861    <div id="control">
2862      <div id="bar">
2863        <div id="left_controls"></div>
2864        <div id="title">^_^</div>
2865        <div id="right_controls">
2866          <tr-ui-b-toolbar-button id="view_metadata_button">
2867            M
2868          </tr-ui-b-toolbar-button>
2869          <tr-ui-b-dropdown id="view_options_dropdown" label="View Options"></tr-ui-b-dropdown>
2870          <tr-ui-find-control id="view_find_control"></tr-ui-find-control>
2871          <tr-ui-b-toolbar-button id="view_console_button">
2872            »
2873          </tr-ui-b-toolbar-button>
2874          <tr-ui-b-toolbar-button id="view_help_button">
2875            ?
2876          </tr-ui-b-toolbar-button>
2877        </div>
2878      </div>
2879      <div id="collapsing_controls"></div>
2880      <tr-ui-b-info-bar-group id="import-warnings">
2881      </tr-ui-b-info-bar-group>
2882    </div>
2883    <middle-container>
2884      <content></content>
2885
2886      <tr-ui-side-panel-container id="side_panel_container">
2887      </tr-ui-side-panel-container>
2888    </middle-container>
2889    <tr-ui-b-drag-handle id="drag_handle"></tr-ui-b-drag-handle>
2890    <tr-ui-a-analysis-view id="analysis"></tr-ui-a-analysis-view>
2891
2892    <tr-v-ui-preferred-display-unit id="display_unit">
2893    </tr-v-ui-preferred-display-unit>
2894  </template>
2895</dom-module><dom-module id="tr-ui-b-grouping-table">
2896  <template>
2897    <style>
2898    :host {
2899      display: flex;
2900    }
2901    #table {
2902      flex: 1 1 auto;
2903      font-size: 12px;
2904    }
2905    </style>
2906    <tr-ui-b-table id="table"></tr-ui-b-table>
2907  </template>
2908</dom-module><dom-module id="tr-ui-b-grouping-table-groupby-picker">
2909  <template>
2910    <style>
2911    #container {
2912      display: flex;
2913    }
2914    #container *:not(:first-child) {
2915      padding-left: 3px;
2916      border-left: 1px solid black;
2917      margin-left: 3px;
2918    }
2919    </style>
2920
2921    <div id="container"></div>
2922  </template>
2923</dom-module><dom-module id="tr-ui-b-grouping-table-groupby-picker-group">
2924  <template>
2925    <style>
2926    :host {
2927      white-space: nowrap;
2928    }
2929    #left, #right {
2930      user-select: none;
2931      cursor: pointer;
2932    }
2933    </style>
2934
2935    <span id="left" on-click="moveLeft_">◀</span>
2936    <input id="enabled" on-change="onEnableChanged_" type="checkbox"/>
2937    <label for="enabled" id="label"></label>
2938    <span id="right" on-click="moveRight_">▶</span>
2939  </template>
2940</dom-module><dom-module id="tr-ui-sp-file-size-stats-side-panel">
2941  <template>
2942    <style>
2943    :host {
2944      display: flex;
2945      flex-direction: column;
2946    }
2947    toolbar {
2948      align-items: center;
2949      background-color: rgb(236, 236, 236);
2950      border-bottom: 1px solid #8e8e8e;
2951      display: flex;
2952      flex-direction: row;
2953      flex-direction: row;
2954      flex: 0 0 auto;
2955      font-size: 12px;
2956      padding: 0 10px 0 10px;
2957    }
2958    table-container {
2959      display: flex;
2960      min-height: 0px;
2961      overflow-y: auto;
2962    }
2963    </style>
2964
2965    <toolbar>
2966      <span><b>Group by:</b></span>
2967      <tr-ui-b-grouping-table-groupby-picker id="picker">
2968      </tr-ui-b-grouping-table-groupby-picker>
2969    </toolbar>
2970    <table-container>
2971      <tr-ui-b-grouping-table id="table"></tr-ui-b-grouping-table>
2972    </table-container>
2973  </template>
2974</dom-module><dom-module id="tr-v-ui-histogram-set-controls-export">
2975  <template>
2976    <style>
2977    :host {
2978      display: grid;
2979      grid-gap: 1em;
2980      grid-template-rows: auto auto;
2981      grid-template-columns: auto auto;
2982    }
2983    button {
2984      -webkit-appearance: none;
2985      border: 0;
2986      font-size: initial;
2987      padding: 5px;
2988    }
2989    </style>
2990
2991    <button on-tap="exportRawCsv_">raw CSV</button>
2992    <button on-tap="exportRawJson_">raw JSON</button>
2993    <button on-tap="exportMergedCsv_">merged CSV</button>
2994    <button on-tap="exportMergedJson_">merged JSON</button>
2995  </template>
2996</dom-module><dom-module id="tr-v-ui-histogram-set-controls">
2997  <template>
2998    <style>
2999    :host {
3000      display: block;
3001    }
3002
3003    #help, #feedback {
3004      display: none;
3005      margin-left: 20px;
3006    }
3007
3008    #search_container {
3009      display: inline-flex;
3010      margin-right: 20px;
3011      padding-bottom: 1px;
3012      border-bottom: 1px solid darkgrey;
3013    }
3014
3015    #search {
3016      border: 0;
3017      max-width: 20em;
3018      outline: none;
3019    }
3020
3021    #clear_search {
3022      visibility: hidden;
3023      height: 1em;
3024      stroke: black;
3025      stroke-width: 16;
3026    }
3027
3028    #controls {
3029      white-space: nowrap;
3030    }
3031
3032    #show_overview, #hide_overview {
3033      height: 1em;
3034      margin-right: 20px;
3035    }
3036
3037    #show_overview {
3038      stroke: blue;
3039      stroke-width: 16;
3040    }
3041
3042    #show_overview:hover {
3043      background: blue;
3044      stroke: white;
3045    }
3046
3047    #hide_overview {
3048      display: none;
3049      stroke-width: 18;
3050      stroke: black;
3051    }
3052
3053    #hide_overview:hover {
3054      background: black;
3055      stroke: white;
3056    }
3057
3058    #reference_display_label {
3059      display: none;
3060      margin-right: 20px;
3061    }
3062
3063    #alpha, #alpha_slider_container {
3064      display: none;
3065    }
3066
3067    #alpha {
3068      margin-right: 20px;
3069    }
3070
3071    #alpha_slider_container {
3072      background: white;
3073      border: 1px solid black;
3074      flex-direction: column;
3075      padding: 0.5em;
3076      position: absolute;
3077      z-index: 10; /* scalar-span uses z-index :-( */
3078    }
3079
3080    #alpha_slider {
3081      -webkit-appearance: slider-vertical;
3082      align-self: center;
3083      height: 200px;
3084      width: 30px;
3085    }
3086
3087    #statistic {
3088      display: none;
3089      margin-right: 20px;
3090    }
3091
3092    #export {
3093      margin-right: 20px;
3094    }
3095    </style>
3096
3097    <div id="controls">
3098      <span id="search_container">
3099        <input id="search" placeholder="Find Histogram name" value="{{searchQuery::keyup}}"/>
3100        <svg id="clear_search" on-tap="clearSearch_" viewBox="0 0 128 128">
3101          <g>
3102          <title>Clear search</title>
3103          <line x1="28" x2="100" y1="28" y2="100"></line>
3104          <line x1="28" x2="100" y1="100" y2="28"></line>
3105          </g>
3106        </svg>
3107      </span>
3108
3109      <svg id="show_overview" on-tap="toggleOverviewLineCharts_" viewBox="0 0 128 128">
3110        <g>
3111        <title>Show overview charts</title>
3112        <line x1="19" x2="49" y1="109" y2="49"></line>
3113        <line x1="49" x2="79" y1="49" y2="79"></line>
3114        <line x1="79" x2="109" y1="79" y2="19"></line>
3115        </g>
3116      </svg>
3117      <svg id="hide_overview" on-tap="toggleOverviewLineCharts_" viewBox="0 0 128 128">
3118        <g>
3119        <title>Hide overview charts</title>
3120        <line x1="28" x2="100" y1="28" y2="100"></line>
3121        <line x1="28" x2="100" y1="100" y2="28"></line>
3122        </g>
3123      </svg>
3124
3125      <select id="reference_display_label" value="{{referenceDisplayLabel::change}}">
3126        <option value="">Select a reference column</option>
3127      </select>
3128
3129      <button id="alpha" on-tap="openAlphaSlider_">α=[[alphaString]]</button>
3130      <div id="alpha_slider_container">
3131        <input id="alpha_slider" max="18" min="0" on-blur="closeAlphaSlider_" on-input="updateAlpha_" type="range" value="{{alphaIndex::change}}"/>
3132      </div>
3133
3134      <select id="statistic" value="{{displayStatisticName::change}}">
3135      </select>
3136
3137      <tr-ui-b-dropdown label="Export">
3138        <tr-v-ui-histogram-set-controls-export>
3139        </tr-v-ui-histogram-set-controls-export>
3140      </tr-ui-b-dropdown>
3141
3142      <input checked="{{showAll::change}}" id="show_all" title="When unchecked, less important histograms are hidden." type="checkbox"/>
3143      <label for="show_all" title="When unchecked, less important histograms are hidden.">Show all</label>
3144
3145      <a id="help">Help</a>
3146      <a id="feedback">Feedback</a>
3147    </div>
3148
3149    <tr-ui-b-grouping-table-groupby-picker id="picker">
3150    </tr-ui-b-grouping-table-groupby-picker>
3151  </template>
3152</dom-module><dom-module id="tr-v-ui-histogram-set-table-cell">
3153  <template>
3154    <style>
3155    #histogram_container {
3156      display: flex;
3157      flex-direction: row;
3158    }
3159
3160    #missing, #empty, #unmergeable, #scalar {
3161      flex-grow: 1;
3162    }
3163
3164    #open_histogram, #close_histogram, #open_histogram svg, #close_histogram svg {
3165      height: 1em;
3166    }
3167
3168    #open_histogram svg {
3169      margin-left: 4px;
3170      stroke-width: 0;
3171      stroke: blue;
3172      fill: blue;
3173    }
3174    :host(:hover) #open_histogram svg {
3175      background: blue;
3176      stroke: white;
3177      fill: white;
3178    }
3179
3180    #scalar {
3181      flex-grow: 1;
3182      white-space: nowrap;
3183    }
3184
3185    #histogram {
3186      flex-grow: 1;
3187    }
3188
3189    #close_histogram svg line {
3190      stroke-width: 18;
3191      stroke: black;
3192    }
3193    #close_histogram:hover svg {
3194      background: black;
3195    }
3196    #close_histogram:hover svg line {
3197      stroke: white;
3198    }
3199
3200    #overview_container {
3201      display: none;
3202    }
3203    </style>
3204
3205    <div id="histogram_container">
3206      <span id="missing">(missing)</span>
3207      <span id="empty">(empty)</span>
3208      <span id="unmergeable">(unmergeable)</span>
3209
3210      <tr-v-ui-scalar-span id="scalar" on-click="openHistogram_"></tr-v-ui-scalar-span>
3211
3212      <span id="open_histogram" on-click="openHistogram_">
3213        <svg viewBox="0 0 128 128">
3214          <rect height="16" width="32" x="16" y="24"></rect>
3215          <rect height="16" width="96" x="16" y="56"></rect>
3216          <rect height="16" width="64" x="16" y="88"></rect>
3217        </svg>
3218      </span>
3219
3220      <span id="histogram"></span>
3221
3222      <span id="close_histogram" on-click="closeHistogram_">
3223        <svg viewBox="0 0 128 128">
3224          <line x1="28" x2="100" y1="28" y2="100"></line>
3225          <line x1="28" x2="100" y1="100" y2="28"></line>
3226        </svg>
3227      </span>
3228    </div>
3229
3230    <div id="overview_container">
3231    </div>
3232  </template>
3233</dom-module><dom-module id="tr-v-ui-histogram-set-table-name-cell">
3234  <template>
3235    <style>
3236    #name_container {
3237      display: flex;
3238    }
3239
3240    #name {
3241      overflow: hidden;
3242      white-space: nowrap;
3243      text-overflow: ellipsis;
3244    }
3245
3246    #show_overview, #hide_overview, #show_overview svg, #hide_overview svg {
3247      height: 1em;
3248      margin-left: 5px;
3249    }
3250
3251    #show_overview svg {
3252      stroke: blue;
3253      stroke-width: 16;
3254    }
3255
3256    #show_overview:hover svg {
3257      background: blue;
3258      stroke: white;
3259    }
3260
3261    #hide_overview {
3262      display: none;
3263    }
3264
3265    #hide_overview svg {
3266      stroke-width: 18;
3267      stroke: black;
3268    }
3269
3270    #hide_overview:hover svg {
3271      background: black;
3272      stroke: white;
3273    }
3274
3275    #open_histograms, #close_histograms, #open_histograms svg, #close_histograms svg {
3276      height: 1em;
3277    }
3278
3279    #close_histograms {
3280      display: none;
3281    }
3282
3283    #open_histograms svg {
3284      margin-left: 4px;
3285      stroke-width: 0;
3286      stroke: blue;
3287      fill: blue;
3288    }
3289    #open_histograms:hover svg {
3290      background: blue;
3291      stroke: white;
3292      fill: white;
3293    }
3294
3295    #close_histograms line {
3296      stroke-width: 18;
3297      stroke: black;
3298    }
3299    #close_histograms:hover {
3300      background: black;
3301    }
3302    #close_histograms:hover line {
3303      stroke: white;
3304    }
3305
3306    #overview_container {
3307      display: none;
3308    }
3309    </style>
3310
3311    <div id="name_container">
3312      <span id="name"></span>
3313
3314      <span id="show_overview" on-click="showOverview_">
3315        <svg viewBox="0 0 128 128">
3316          <line x1="19" x2="49" y1="109" y2="49"></line>
3317          <line x1="49" x2="79" y1="49" y2="79"></line>
3318          <line x1="79" x2="109" y1="79" y2="19"></line>
3319        </svg>
3320      </span>
3321
3322      <span id="hide_overview" on-click="hideOverview_">
3323        <svg viewBox="0 0 128 128">
3324          <line x1="28" x2="100" y1="28" y2="100"></line>
3325          <line x1="28" x2="100" y1="100" y2="28"></line>
3326        </svg>
3327      </span>
3328
3329      <span id="open_histograms" on-click="openHistograms_">
3330        <svg viewBox="0 0 128 128">
3331          <rect height="16" width="32" x="16" y="24"></rect>
3332          <rect height="16" width="96" x="16" y="56"></rect>
3333          <rect height="16" width="64" x="16" y="88"></rect>
3334        </svg>
3335      </span>
3336
3337      <span id="close_histograms" on-click="closeHistograms_">
3338        <svg viewBox="0 0 128 128">
3339          <line x1="28" x2="100" y1="28" y2="100"></line>
3340          <line x1="28" x2="100" y1="100" y2="28"></line>
3341        </svg>
3342      </span>
3343    </div>
3344
3345    <div id="overview_container">
3346    </div>
3347  </template>
3348</dom-module><dom-module id="tr-v-ui-histogram-set-table">
3349  <template>
3350    <style>
3351    :host {
3352      min-height: 0px;
3353      overflow: auto;
3354    }
3355    #table {
3356      margin-top: 5px;
3357    }
3358    </style>
3359
3360    <tr-ui-b-table id="table">
3361  </tr-ui-b-table></template>
3362</dom-module><dom-module id="tr-v-ui-histogram-set-view">
3363  <template>
3364    <style>
3365    :host {
3366      font-family: sans-serif;
3367    }
3368
3369    #zero {
3370      color: red;
3371      /* histogram-set-table is used by both metrics-side-panel and results.html.
3372       * This font-size rule has no effect in results.html, but improves
3373       * legibility in the metrics-side-panel, which sets font-size in order to
3374       * make this table denser.
3375       */
3376      font-size: initial;
3377    }
3378
3379    #container {
3380      display: none;
3381    }
3382    </style>
3383
3384    <div id="zero">zero Histograms</div>
3385
3386    <div id="container">
3387      <tr-v-ui-histogram-set-controls id="controls">
3388      </tr-v-ui-histogram-set-controls>
3389
3390      <tr-v-ui-histogram-set-table id="table"></tr-v-ui-histogram-set-table>
3391    </div>
3392  </template>
3393</dom-module><dom-module id="tr-ui-sp-metrics-side-panel">
3394  <template>
3395    <style>
3396    :host {
3397      display: flex;
3398      flex-direction: column;
3399    }
3400    div#error {
3401      color: red;
3402    }
3403    #results {
3404      font-size: 12px;
3405    }
3406    </style>
3407
3408    <top-left-controls id="top_left_controls"></top-left-controls>
3409
3410    <tr-v-ui-histogram-set-view id="results"></tr-v-ui-histogram-set-view>
3411
3412    <div id="error"></div>
3413  </template>
3414</dom-module><dom-module id="tr-ui-e-s-alerts-side-panel">
3415  <template>
3416    <style>
3417    :host {
3418      display: block;
3419      width: 250px;
3420    }
3421    #content {
3422      flex-direction: column;
3423      display: flex;
3424    }
3425    tr-ui-b-table {
3426      font-size: 12px;
3427    }
3428    </style>
3429
3430    <div id="content">
3431      <toolbar id="toolbar"></toolbar>
3432      <result-area id="result_area"></result-area>
3433    </div>
3434  </template>
3435</dom-module><script>
3436
3437// Copyright 2015 The Chromium Authors. All rights reserved.
3438// Use of this source code is governed by a BSD-style license that can be
3439// found in the LICENSE file.
3440
3441/* WARNING: This file is auto generated.
3442 *
3443 * Do not edit directly.
3444 */
3445
3446'use strict';if(window.Polymer){throw new Error('Cannot proceed. Polymer already present.');}
3447window.Polymer={};window.Polymer.dom='shadow';(function(){function resolve(){document.body.removeAttribute('unresolved');}
3448if(window.WebComponents){addEventListener('WebComponentsReady',resolve);}else{if(document.readyState==='interactive'||document.readyState==='complete'){resolve();}else{addEventListener('DOMContentLoaded',resolve);}}}());window.Polymer={Settings:function(){var settings=window.Polymer||{};if(!settings.noUrlSettings){var parts=location.search.slice(1).split('&');for(var i=0,o;i<parts.length&&(o=parts[i]);i++){o=o.split('=');o[0]&&(settings[o[0]]=o[1]||true);}}
3449settings.wantShadow=settings.dom==='shadow';settings.hasShadow=Boolean(Element.prototype.createShadowRoot);settings.nativeShadow=settings.hasShadow&&!window.ShadowDOMPolyfill;settings.useShadow=settings.wantShadow&&settings.hasShadow;settings.hasNativeImports=Boolean('import'in document.createElement('link'));settings.useNativeImports=settings.hasNativeImports;settings.useNativeCustomElements=!window.CustomElements||window.CustomElements.useNative;settings.useNativeShadow=settings.useShadow&&settings.nativeShadow;settings.usePolyfillProto=!settings.useNativeCustomElements&&!Object.__proto__;settings.hasNativeCSSProperties=!navigator.userAgent.match(/AppleWebKit\/601|Edge\/15/)&&window.CSS&&CSS.supports&&CSS.supports('box-shadow','0 0 0 var(--foo)');settings.useNativeCSSProperties=settings.hasNativeCSSProperties&&settings.lazyRegister&&settings.useNativeCSSProperties;settings.isIE=navigator.userAgent.match('Trident');settings.passiveTouchGestures=settings.passiveTouchGestures||false;return settings;}()};(function(){var userPolymer=window.Polymer;window.Polymer=function(prototype){if(typeof prototype==='function'){prototype=prototype.prototype;}
3450if(!prototype){prototype={};}
3451prototype=desugar(prototype);var customCtor=prototype===prototype.constructor.prototype?prototype.constructor:null;var options={prototype:prototype};if(prototype.extends){options.extends=prototype.extends;}
3452Polymer.telemetry._registrate(prototype);var ctor=document.registerElement(prototype.is,options);return customCtor||ctor;};var desugar=function(prototype){var base=Polymer.Base;if(prototype.extends){base=Polymer.Base._getExtendedPrototype(prototype.extends);}
3453prototype=Polymer.Base.chainObject(prototype,base);prototype.registerCallback();return prototype;};if(userPolymer){for(var i in userPolymer){Polymer[i]=userPolymer[i];}}
3454Polymer.Class=function(prototype){if(!prototype.factoryImpl){prototype.factoryImpl=function(){};}
3455return desugar(prototype).constructor;};}());Polymer.telemetry={registrations:[],_regLog:function(prototype){console.log('['+prototype.is+']: registered');},_registrate:function(prototype){this.registrations.push(prototype);Polymer.log&&this._regLog(prototype);},dumpRegistrations:function(){this.registrations.forEach(this._regLog);}};Object.defineProperty(window,'currentImport',{enumerable:true,configurable:true,get:function(){return(document._currentScript||document.currentScript||{}).ownerDocument;}});Polymer.RenderStatus={_ready:false,_callbacks:[],whenReady:function(cb){if(this._ready){cb();}else{this._callbacks.push(cb);}},_makeReady:function(){this._ready=true;for(var i=0;i<this._callbacks.length;i++){this._callbacks[i]();}
3456this._callbacks=[];},_catchFirstRender:function(){requestAnimationFrame(function(){Polymer.RenderStatus._makeReady();});},_afterNextRenderQueue:[],_waitingNextRender:false,afterNextRender:function(element,fn,args){this._watchNextRender();this._afterNextRenderQueue.push([element,fn,args]);},hasRendered:function(){return this._ready;},_watchNextRender:function(){if(!this._waitingNextRender){this._waitingNextRender=true;var fn=function(){Polymer.RenderStatus._flushNextRender();};if(!this._ready){this.whenReady(fn);}else{requestAnimationFrame(fn);}}},_flushNextRender:function(){var self=this;setTimeout(function(){self._flushRenderCallbacks(self._afterNextRenderQueue);self._afterNextRenderQueue=[];self._waitingNextRender=false;});},_flushRenderCallbacks:function(callbacks){for(var i=0,h;i<callbacks.length;i++){h=callbacks[i];h[1].apply(h[0],h[2]||Polymer.nar);}}};if(window.HTMLImports){HTMLImports.whenReady(function(){Polymer.RenderStatus._catchFirstRender();});}else{Polymer.RenderStatus._catchFirstRender();}
3457Polymer.ImportStatus=Polymer.RenderStatus;Polymer.ImportStatus.whenLoaded=Polymer.ImportStatus.whenReady;(function(){'use strict';var settings=Polymer.Settings;Polymer.Base={__isPolymerInstance__:true,_addFeature:function(feature){this.mixin(this,feature);},registerCallback:function(){if(settings.lazyRegister==='max'){if(this.beforeRegister){this.beforeRegister();}}else{this._desugarBehaviors();for(var i=0,b;i<this.behaviors.length;i++){b=this.behaviors[i];if(b.beforeRegister){b.beforeRegister.call(this);}}
3458if(this.beforeRegister){this.beforeRegister();}}
3459this._registerFeatures();if(!settings.lazyRegister){this.ensureRegisterFinished();}},createdCallback:function(){if(settings.disableUpgradeEnabled){if(this.hasAttribute('disable-upgrade')){this._propertySetter=disableUpgradePropertySetter;this._configValue=null;this.__data__={};return;}else{this.__hasInitialized=true;}}
3460this.__initialize();},__initialize:function(){if(!this.__hasRegisterFinished){this._ensureRegisterFinished(this.__proto__);}
3461Polymer.telemetry.instanceCount++;this.root=this;for(var i=0,b;i<this.behaviors.length;i++){b=this.behaviors[i];if(b.created){b.created.call(this);}}
3462if(this.created){this.created();}
3463this._initFeatures();},ensureRegisterFinished:function(){this._ensureRegisterFinished(this);},_ensureRegisterFinished:function(proto){if(proto.__hasRegisterFinished!==proto.is||!proto.is){if(settings.lazyRegister==='max'){proto._desugarBehaviors();for(var i=0,b;i<proto.behaviors.length;i++){b=proto.behaviors[i];if(b.beforeRegister){b.beforeRegister.call(proto);}}}
3464proto.__hasRegisterFinished=proto.is;if(proto._finishRegisterFeatures){proto._finishRegisterFeatures();}
3465for(var j=0,pb;j<proto.behaviors.length;j++){pb=proto.behaviors[j];if(pb.registered){pb.registered.call(proto);}}
3466if(proto.registered){proto.registered();}
3467if(settings.usePolyfillProto&&proto!==this){proto.extend(this,proto);}}},attachedCallback:function(){var self=this;Polymer.RenderStatus.whenReady(function(){self.isAttached=true;for(var i=0,b;i<self.behaviors.length;i++){b=self.behaviors[i];if(b.attached){b.attached.call(self);}}
3468if(self.attached){self.attached();}});},detachedCallback:function(){var self=this;Polymer.RenderStatus.whenReady(function(){self.isAttached=false;for(var i=0,b;i<self.behaviors.length;i++){b=self.behaviors[i];if(b.detached){b.detached.call(self);}}
3469if(self.detached){self.detached();}});},attributeChangedCallback:function(name,oldValue,newValue){this._attributeChangedImpl(name);for(var i=0,b;i<this.behaviors.length;i++){b=this.behaviors[i];if(b.attributeChanged){b.attributeChanged.call(this,name,oldValue,newValue);}}
3470if(this.attributeChanged){this.attributeChanged(name,oldValue,newValue);}},_attributeChangedImpl:function(name){this._setAttributeToProperty(this,name);},extend:function(target,source){if(target&&source){var n$=Object.getOwnPropertyNames(source);for(var i=0,n;i<n$.length&&(n=n$[i]);i++){this.copyOwnProperty(n,source,target);}}
3471return target||source;},mixin:function(target,source){for(var i in source){target[i]=source[i];}
3472return target;},copyOwnProperty:function(name,source,target){var pd=Object.getOwnPropertyDescriptor(source,name);if(pd){Object.defineProperty(target,name,pd);}},_logger:function(level,args){if(args.length===1&&Array.isArray(args[0])){args=args[0];}
3473switch(level){case'log':case'warn':case'error':console[level].apply(console,args);break;}},_log:function(){var args=Array.prototype.slice.call(arguments,0);this._logger('log',args);},_warn:function(){var args=Array.prototype.slice.call(arguments,0);this._logger('warn',args);},_error:function(){var args=Array.prototype.slice.call(arguments,0);this._logger('error',args);},_logf:function(){return this._logPrefix.concat(this.is).concat(Array.prototype.slice.call(arguments,0));}};Polymer.Base._logPrefix=function(){var color=window.chrome&&!/edge/i.test(navigator.userAgent)||/firefox/i.test(navigator.userAgent);return color?['%c[%s::%s]:','font-weight: bold; background-color:#EEEE00;']:['[%s::%s]:'];}();Polymer.Base.chainObject=function(object,inherited){if(object&&inherited&&object!==inherited){if(!Object.__proto__){object=Polymer.Base.extend(Object.create(inherited),object);}
3474object.__proto__=inherited;}
3475return object;};Polymer.Base=Polymer.Base.chainObject(Polymer.Base,HTMLElement.prototype);Polymer.BaseDescriptors={};var disableUpgradePropertySetter;if(settings.disableUpgradeEnabled){disableUpgradePropertySetter=function(property,value){this.__data__[property]=value;};var origAttributeChangedCallback=Polymer.Base.attributeChangedCallback;Polymer.Base.attributeChangedCallback=function(name,oldValue,newValue){if(!this.__hasInitialized&&name==='disable-upgrade'){this.__hasInitialized=true;this._propertySetter=Polymer.Bind._modelApi._propertySetter;this._configValue=Polymer.Base._configValue;this.__initialize();}
3476origAttributeChangedCallback.call(this,name,oldValue,newValue);};}
3477if(window.CustomElements){Polymer.instanceof=CustomElements.instanceof;}else{Polymer.instanceof=function(obj,ctor){return obj instanceof ctor;};}
3478Polymer.isInstance=function(obj){return Boolean(obj&&obj.__isPolymerInstance__);};Polymer.telemetry.instanceCount=0;}());(function(){var modules={};var lcModules={};var findModule=function(id){return modules[id]||lcModules[id.toLowerCase()];};var DomModule=function(){return document.createElement('dom-module');};DomModule.prototype=Object.create(HTMLElement.prototype);Polymer.Base.mixin(DomModule.prototype,{createdCallback:function(){this.register();},register:function(id){id=id||this.id||this.getAttribute('name')||this.getAttribute('is');if(id){this.id=id;modules[id]=this;lcModules[id.toLowerCase()]=this;}},import:function(id,selector){if(id){var m=findModule(id);if(!m){forceDomModulesUpgrade();m=findModule(id);}
3479if(m&&selector){m=m.querySelector(selector);}
3480return m;}}});Object.defineProperty(DomModule.prototype,'constructor',{value:DomModule,configurable:true,writable:true});var cePolyfill=window.CustomElements&&!CustomElements.useNative;document.registerElement('dom-module',DomModule);function forceDomModulesUpgrade(){if(cePolyfill){var script=document._currentScript||document.currentScript;var doc=script&&script.ownerDocument||document;var modules=doc.querySelectorAll('dom-module');for(var i=modules.length-1,m;i>=0&&(m=modules[i]);i--){if(m.__upgraded__){return;}else{CustomElements.upgrade(m);}}}}}());Polymer.Base._addFeature({_prepIs:function(){if(!this.is){var module=(document._currentScript||document.currentScript).parentNode;if(module.localName==='dom-module'){var id=module.id||module.getAttribute('name')||module.getAttribute('is');this.is=id;}}
3481if(this.is){this.is=this.is.toLowerCase();}}});Polymer.Base._addFeature({behaviors:[],_desugarBehaviors:function(){if(this.behaviors.length){this.behaviors=this._desugarSomeBehaviors(this.behaviors);}},_desugarSomeBehaviors:function(behaviors){var behaviorSet=[];behaviors=this._flattenBehaviorsList(behaviors);for(var i=behaviors.length-1;i>=0;i--){var b=behaviors[i];if(behaviorSet.indexOf(b)===-1){this._mixinBehavior(b);behaviorSet.unshift(b);}}
3482return behaviorSet;},_flattenBehaviorsList:function(behaviors){var flat=[];for(var i=0;i<behaviors.length;i++){var b=behaviors[i];if(b instanceof Array){flat=flat.concat(this._flattenBehaviorsList(b));}else if(b){flat.push(b);}else{this._warn(this._logf('_flattenBehaviorsList','behavior is null, check for missing or 404 import'));}}
3483return flat;},_mixinBehavior:function(b){var n$=Object.getOwnPropertyNames(b);var useAssignment=b._noAccessors;for(var i=0,n;i<n$.length&&(n=n$[i]);i++){if(!Polymer.Base._behaviorProperties[n]&&!this.hasOwnProperty(n)){if(useAssignment){this[n]=b[n];}else{this.copyOwnProperty(n,b,this);}}}},_prepBehaviors:function(){this._prepFlattenedBehaviors(this.behaviors);},_prepFlattenedBehaviors:function(behaviors){for(var i=0,l=behaviors.length;i<l;i++){this._prepBehavior(behaviors[i]);}
3484this._prepBehavior(this);},_marshalBehaviors:function(){for(var i=0;i<this.behaviors.length;i++){this._marshalBehavior(this.behaviors[i]);}
3485this._marshalBehavior(this);}});Polymer.Base._behaviorProperties={hostAttributes:true,beforeRegister:true,registered:true,properties:true,observers:true,listeners:true,created:true,attached:true,detached:true,attributeChanged:true,ready:true,_noAccessors:true};Polymer.Base._addFeature({_getExtendedPrototype:function(tag){return this._getExtendedNativePrototype(tag);},_nativePrototypes:{},_getExtendedNativePrototype:function(tag){var p=this._nativePrototypes[tag];if(!p){p=Object.create(this.getNativePrototype(tag));var p$=Object.getOwnPropertyNames(Polymer.Base);for(var i=0,n;i<p$.length&&(n=p$[i]);i++){if(!Polymer.BaseDescriptors[n]){p[n]=Polymer.Base[n];}}
3486Object.defineProperties(p,Polymer.BaseDescriptors);this._nativePrototypes[tag]=p;}
3487return p;},getNativePrototype:function(tag){return Object.getPrototypeOf(document.createElement(tag));}});Polymer.Base._addFeature({_prepConstructor:function(){this._factoryArgs=this.extends?[this.extends,this.is]:[this.is];var ctor=function(){return this._factory(arguments);};if(this.hasOwnProperty('extends')){ctor.extends=this.extends;}
3488Object.defineProperty(this,'constructor',{value:ctor,writable:true,configurable:true});ctor.prototype=this;},_factory:function(args){var elt=document.createElement.apply(document,this._factoryArgs);if(this.factoryImpl){this.factoryImpl.apply(elt,args);}
3489return elt;}});Polymer.nob=Object.create(null);Polymer.Base._addFeature({getPropertyInfo:function(property){var info=this._getPropertyInfo(property,this.properties);if(!info){for(var i=0;i<this.behaviors.length;i++){info=this._getPropertyInfo(property,this.behaviors[i].properties);if(info){return info;}}}
3490return info||Polymer.nob;},_getPropertyInfo:function(property,properties){var p=properties&&properties[property];if(typeof p==='function'){p=properties[property]={type:p};}
3491if(p){p.defined=true;}
3492return p;},_prepPropertyInfo:function(){this._propertyInfo={};for(var i=0;i<this.behaviors.length;i++){this._addPropertyInfo(this._propertyInfo,this.behaviors[i].properties);}
3493this._addPropertyInfo(this._propertyInfo,this.properties);this._addPropertyInfo(this._propertyInfo,this._propertyEffects);},_addPropertyInfo:function(target,source){if(source){var t,s;for(var i in source){t=target[i];s=source[i];if(i[0]==='_'&&!s.readOnly){continue;}
3494if(!target[i]){target[i]={type:typeof s==='function'?s:s.type,readOnly:s.readOnly,attribute:Polymer.CaseMap.camelToDashCase(i)};}else{if(!t.type){t.type=s.type;}
3495if(!t.readOnly){t.readOnly=s.readOnly;}}}}}});(function(){var propertiesDesc={configurable:true,writable:true,enumerable:true,value:{}};Polymer.BaseDescriptors.properties=propertiesDesc;Object.defineProperty(Polymer.Base,'properties',propertiesDesc);}());Polymer.CaseMap={_caseMap:{},_rx:{dashToCamel:/-[a-z]/g,camelToDash:/([A-Z])/g},dashToCamelCase:function(dash){return this._caseMap[dash]||(this._caseMap[dash]=dash.indexOf('-')<0?dash:dash.replace(this._rx.dashToCamel,function(m){return m[1].toUpperCase();}));},camelToDashCase:function(camel){return this._caseMap[camel]||(this._caseMap[camel]=camel.replace(this._rx.camelToDash,'-$1').toLowerCase());}};Polymer.Base._addFeature({_addHostAttributes:function(attributes){if(!this._aggregatedAttributes){this._aggregatedAttributes={};}
3496if(attributes){this.mixin(this._aggregatedAttributes,attributes);}},_marshalHostAttributes:function(){if(this._aggregatedAttributes){this._applyAttributes(this,this._aggregatedAttributes);}},_applyAttributes:function(node,attr$){for(var n in attr$){if(!this.hasAttribute(n)&&n!=='class'){var v=attr$[n];this.serializeValueToAttribute(v,n,this);}}},_marshalAttributes:function(){this._takeAttributesToModel(this);},_takeAttributesToModel:function(model){if(this.hasAttributes()){for(var i in this._propertyInfo){var info=this._propertyInfo[i];if(this.hasAttribute(info.attribute)){this._setAttributeToProperty(model,info.attribute,i,info);}}}},_setAttributeToProperty:function(model,attribute,property,info){if(!this._serializing){property=property||Polymer.CaseMap.dashToCamelCase(attribute);info=info||this._propertyInfo&&this._propertyInfo[property];if(info&&!info.readOnly){var v=this.getAttribute(attribute);model[property]=this.deserialize(v,info.type);}}},_serializing:false,reflectPropertyToAttribute:function(property,attribute,value){this._serializing=true;value=value===undefined?this[property]:value;this.serializeValueToAttribute(value,attribute||Polymer.CaseMap.camelToDashCase(property));this._serializing=false;},serializeValueToAttribute:function(value,attribute,node){var str=this.serialize(value);node=node||this;if(str===undefined){node.removeAttribute(attribute);}else{node.setAttribute(attribute,str);}},deserialize:function(value,type){switch(type){case Number:value=Number(value);break;case Boolean:value=value!=null;break;case Object:try{value=JSON.parse(value);}catch(x){}
3497break;case Array:try{value=JSON.parse(value);}catch(x){value=null;console.warn('Polymer::Attributes: couldn`t decode Array as JSON');}
3498break;case Date:value=new Date(value);break;case String:default:break;}
3499return value;},serialize:function(value){switch(typeof value){case'boolean':return value?'':undefined;case'object':if(value instanceof Date){return value.toString();}else if(value){try{return JSON.stringify(value);}catch(x){return'';}}
3500default:return value!=null?value:undefined;}}});Polymer.version="1.10.1";Polymer.Base._addFeature({_registerFeatures:function(){this._prepIs();this._prepBehaviors();this._prepConstructor();this._prepPropertyInfo();},_prepBehavior:function(b){this._addHostAttributes(b.hostAttributes);},_marshalBehavior:function(b){},_initFeatures:function(){this._marshalHostAttributes();this._marshalBehaviors();}});(function(){function resolveCss(cssText,ownerDocument){return cssText.replace(CSS_URL_RX,function(m,pre,url,post){return pre+'\''+resolve(url.replace(/["']/g,''),ownerDocument)+'\''+post;});}
3501function resolveAttrs(element,ownerDocument){for(var name in URL_ATTRS){var a$=URL_ATTRS[name];for(var i=0,l=a$.length,a,at,v;i<l&&(a=a$[i]);i++){if(name==='*'||element.localName===name){at=element.attributes[a];v=at&&at.value;if(v&&v.search(BINDING_RX)<0){at.value=a==='style'?resolveCss(v,ownerDocument):resolve(v,ownerDocument);}}}}}
3502function resolve(url,ownerDocument){if(url&&ABS_URL.test(url)){return url;}
3503var resolver=getUrlResolver(ownerDocument);resolver.href=url;return resolver.href||url;}
3504var tempDoc;var tempDocBase;function resolveUrl(url,baseUri){if(!tempDoc){tempDoc=document.implementation.createHTMLDocument('temp');tempDocBase=tempDoc.createElement('base');tempDoc.head.appendChild(tempDocBase);}
3505tempDocBase.href=baseUri;return resolve(url,tempDoc);}
3506function getUrlResolver(ownerDocument){return ownerDocument.body.__urlResolver||(ownerDocument.body.__urlResolver=ownerDocument.createElement('a'));}
3507function pathFromUrl(url){return url.substring(0,url.lastIndexOf('/')+1);}
3508var CSS_URL_RX=/(url\()([^)]*)(\))/g;var URL_ATTRS={'*':['href','src','style','url'],form:['action']};var ABS_URL=/(^\/)|(^#)|(^[\w-\d]*:)/;var BINDING_RX=/\{\{|\[\[/;Polymer.ResolveUrl={resolveCss:resolveCss,resolveAttrs:resolveAttrs,resolveUrl:resolveUrl,pathFromUrl:pathFromUrl};Polymer.rootPath=Polymer.Settings.rootPath||pathFromUrl(document.baseURI||window.location.href);}());Polymer.Base._addFeature({_prepTemplate:function(){var module;if(this._template===undefined){module=Polymer.DomModule.import(this.is);this._template=module&&module.querySelector('template');}
3509if(module){var assetPath=module.getAttribute('assetpath')||'';var importURL=Polymer.ResolveUrl.resolveUrl(assetPath,module.ownerDocument.baseURI);this._importPath=Polymer.ResolveUrl.pathFromUrl(importURL);}else{this._importPath='';}
3510if(this._template&&this._template.hasAttribute('is')){this._warn(this._logf('_prepTemplate','top-level Polymer template '+'must not be a type-extension, found',this._template,'Move inside simple <template>.'));}
3511if(this._template&&!this._template.content&&window.HTMLTemplateElement&&HTMLTemplateElement.decorate){HTMLTemplateElement.decorate(this._template);}},_stampTemplate:function(){if(this._template){this.root=this.instanceTemplate(this._template);}},instanceTemplate:function(template){var dom=document.importNode(template._content||template.content,true);return dom;}});(function(){var baseAttachedCallback=Polymer.Base.attachedCallback;var baseDetachedCallback=Polymer.Base.detachedCallback;Polymer.Base._addFeature({_hostStack:[],ready:function(){},_registerHost:function(host){this.dataHost=host=host||Polymer.Base._hostStack[Polymer.Base._hostStack.length-1];if(host&&host._clients){host._clients.push(this);}
3512this._clients=null;this._clientsReadied=false;},_beginHosting:function(){Polymer.Base._hostStack.push(this);if(!this._clients){this._clients=[];}},_endHosting:function(){Polymer.Base._hostStack.pop();},_tryReady:function(){this._readied=false;if(this._canReady()){this._ready();}},_canReady:function(){return!this.dataHost||this.dataHost._clientsReadied;},_ready:function(){this._beforeClientsReady();if(this._template){this._setupRoot();this._readyClients();}
3513this._clientsReadied=true;this._clients=null;this._afterClientsReady();this._readySelf();},_readyClients:function(){this._beginDistribute();var c$=this._clients;if(c$){for(var i=0,l=c$.length,c;i<l&&(c=c$[i]);i++){c._ready();}}
3514this._finishDistribute();},_readySelf:function(){for(var i=0,b;i<this.behaviors.length;i++){b=this.behaviors[i];if(b.ready){b.ready.call(this);}}
3515if(this.ready){this.ready();}
3516this._readied=true;if(this._attachedPending){this._attachedPending=false;this.attachedCallback();}},_beforeClientsReady:function(){},_afterClientsReady:function(){},_beforeAttached:function(){},attachedCallback:function(){if(this._readied){this._beforeAttached();baseAttachedCallback.call(this);}else{this._attachedPending=true;}},detachedCallback:function(){if(this._readied){baseDetachedCallback.call(this);}else{this._attachedPending=false;}}});}());Polymer.ArraySplice=function(){function newSplice(index,removed,addedCount){return{index:index,removed:removed,addedCount:addedCount};}
3517var EDIT_LEAVE=0;var EDIT_UPDATE=1;var EDIT_ADD=2;var EDIT_DELETE=3;function ArraySplice(){}
3518ArraySplice.prototype={calcEditDistances:function(current,currentStart,currentEnd,old,oldStart,oldEnd){var rowCount=oldEnd-oldStart+1;var columnCount=currentEnd-currentStart+1;var distances=new Array(rowCount);for(var i=0;i<rowCount;i++){distances[i]=new Array(columnCount);distances[i][0]=i;}
3519for(var j=0;j<columnCount;j++)
3520distances[0][j]=j;for(i=1;i<rowCount;i++){for(j=1;j<columnCount;j++){if(this.equals(current[currentStart+j-1],old[oldStart+i-1]))
3521distances[i][j]=distances[i-1][j-1];else{var north=distances[i-1][j]+1;var west=distances[i][j-1]+1;distances[i][j]=north<west?north:west;}}}
3522return distances;},spliceOperationsFromEditDistances:function(distances){var i=distances.length-1;var j=distances[0].length-1;var current=distances[i][j];var edits=[];while(i>0||j>0){if(i==0){edits.push(EDIT_ADD);j--;continue;}
3523if(j==0){edits.push(EDIT_DELETE);i--;continue;}
3524var northWest=distances[i-1][j-1];var west=distances[i-1][j];var north=distances[i][j-1];var min;if(west<north)
3525min=west<northWest?west:northWest;else
3526min=north<northWest?north:northWest;if(min==northWest){if(northWest==current){edits.push(EDIT_LEAVE);}else{edits.push(EDIT_UPDATE);current=northWest;}
3527i--;j--;}else if(min==west){edits.push(EDIT_DELETE);i--;current=west;}else{edits.push(EDIT_ADD);j--;current=north;}}
3528edits.reverse();return edits;},calcSplices:function(current,currentStart,currentEnd,old,oldStart,oldEnd){var prefixCount=0;var suffixCount=0;var minLength=Math.min(currentEnd-currentStart,oldEnd-oldStart);if(currentStart==0&&oldStart==0)
3529prefixCount=this.sharedPrefix(current,old,minLength);if(currentEnd==current.length&&oldEnd==old.length)
3530suffixCount=this.sharedSuffix(current,old,minLength-prefixCount);currentStart+=prefixCount;oldStart+=prefixCount;currentEnd-=suffixCount;oldEnd-=suffixCount;if(currentEnd-currentStart==0&&oldEnd-oldStart==0)
3531return[];if(currentStart==currentEnd){var splice=newSplice(currentStart,[],0);while(oldStart<oldEnd)
3532splice.removed.push(old[oldStart++]);return[splice];}else if(oldStart==oldEnd)
3533return[newSplice(currentStart,[],currentEnd-currentStart)];var ops=this.spliceOperationsFromEditDistances(this.calcEditDistances(current,currentStart,currentEnd,old,oldStart,oldEnd));splice=undefined;var splices=[];var index=currentStart;var oldIndex=oldStart;for(var i=0;i<ops.length;i++){switch(ops[i]){case EDIT_LEAVE:if(splice){splices.push(splice);splice=undefined;}
3534index++;oldIndex++;break;case EDIT_UPDATE:if(!splice)
3535splice=newSplice(index,[],0);splice.addedCount++;index++;splice.removed.push(old[oldIndex]);oldIndex++;break;case EDIT_ADD:if(!splice)
3536splice=newSplice(index,[],0);splice.addedCount++;index++;break;case EDIT_DELETE:if(!splice)
3537splice=newSplice(index,[],0);splice.removed.push(old[oldIndex]);oldIndex++;break;}}
3538if(splice){splices.push(splice);}
3539return splices;},sharedPrefix:function(current,old,searchLength){for(var i=0;i<searchLength;i++)
3540if(!this.equals(current[i],old[i]))
3541return i;return searchLength;},sharedSuffix:function(current,old,searchLength){var index1=current.length;var index2=old.length;var count=0;while(count<searchLength&&this.equals(current[--index1],old[--index2]))
3542count++;return count;},calculateSplices:function(current,previous){return this.calcSplices(current,0,current.length,previous,0,previous.length);},equals:function(currentValue,previousValue){return currentValue===previousValue;}};return new ArraySplice();}();Polymer.domInnerHTML=function(){var escapeAttrRegExp=/[&\u00A0"]/g;var escapeDataRegExp=/[&\u00A0<>]/g;function escapeReplace(c){switch(c){case'&':return'&amp;';case'<':return'&lt;';case'>':return'&gt;';case'"':return'&quot;';case'\xA0':return'&nbsp;';}}
3543function escapeAttr(s){return s.replace(escapeAttrRegExp,escapeReplace);}
3544function escapeData(s){return s.replace(escapeDataRegExp,escapeReplace);}
3545function makeSet(arr){var set={};for(var i=0;i<arr.length;i++){set[arr[i]]=true;}
3546return set;}
3547var voidElements=makeSet(['area','base','br','col','command','embed','hr','img','input','keygen','link','meta','param','source','track','wbr']);var plaintextParents=makeSet(['style','script','xmp','iframe','noembed','noframes','plaintext','noscript']);function getOuterHTML(node,parentNode,composed){switch(node.nodeType){case Node.ELEMENT_NODE:var tagName=node.localName;var s='<'+tagName;var attrs=node.attributes;for(var i=0,attr;attr=attrs[i];i++){s+=' '+attr.name+'="'+escapeAttr(attr.value)+'"';}
3548s+='>';if(voidElements[tagName]){return s;}
3549return s+getInnerHTML(node,composed)+'</'+tagName+'>';case Node.TEXT_NODE:var data=node.data;if(parentNode&&plaintextParents[parentNode.localName]){return data;}
3550return escapeData(data);case Node.COMMENT_NODE:return'<!--'+node.data+'-->';default:console.error(node);throw new Error('not implemented');}}
3551function getInnerHTML(node,composed){if(node instanceof HTMLTemplateElement)
3552node=node.content;var s='';var c$=Polymer.dom(node).childNodes;for(var i=0,l=c$.length,child;i<l&&(child=c$[i]);i++){s+=getOuterHTML(child,node,composed);}
3553return s;}
3554return{getInnerHTML:getInnerHTML};}();(function(){'use strict';var nativeInsertBefore=Element.prototype.insertBefore;var nativeAppendChild=Element.prototype.appendChild;var nativeRemoveChild=Element.prototype.removeChild;Polymer.TreeApi={arrayCopyChildNodes:function(parent){var copy=[],i=0;for(var n=parent.firstChild;n;n=n.nextSibling){copy[i++]=n;}
3555return copy;},arrayCopyChildren:function(parent){var copy=[],i=0;for(var n=parent.firstElementChild;n;n=n.nextElementSibling){copy[i++]=n;}
3556return copy;},arrayCopy:function(a$){var l=a$.length;var copy=new Array(l);for(var i=0;i<l;i++){copy[i]=a$[i];}
3557return copy;}};Polymer.TreeApi.Logical={hasParentNode:function(node){return Boolean(node.__dom&&node.__dom.parentNode);},hasChildNodes:function(node){return Boolean(node.__dom&&node.__dom.childNodes!==undefined);},getChildNodes:function(node){return this.hasChildNodes(node)?this._getChildNodes(node):node.childNodes;},_getChildNodes:function(node){if(!node.__dom.childNodes){node.__dom.childNodes=[];for(var n=node.__dom.firstChild;n;n=n.__dom.nextSibling){node.__dom.childNodes.push(n);}}
3558return node.__dom.childNodes;},getParentNode:function(node){return node.__dom&&node.__dom.parentNode!==undefined?node.__dom.parentNode:node.parentNode;},getFirstChild:function(node){return node.__dom&&node.__dom.firstChild!==undefined?node.__dom.firstChild:node.firstChild;},getLastChild:function(node){return node.__dom&&node.__dom.lastChild!==undefined?node.__dom.lastChild:node.lastChild;},getNextSibling:function(node){return node.__dom&&node.__dom.nextSibling!==undefined?node.__dom.nextSibling:node.nextSibling;},getPreviousSibling:function(node){return node.__dom&&node.__dom.previousSibling!==undefined?node.__dom.previousSibling:node.previousSibling;},getFirstElementChild:function(node){return node.__dom&&node.__dom.firstChild!==undefined?this._getFirstElementChild(node):node.firstElementChild;},_getFirstElementChild:function(node){var n=node.__dom.firstChild;while(n&&n.nodeType!==Node.ELEMENT_NODE){n=n.__dom.nextSibling;}
3559return n;},getLastElementChild:function(node){return node.__dom&&node.__dom.lastChild!==undefined?this._getLastElementChild(node):node.lastElementChild;},_getLastElementChild:function(node){var n=node.__dom.lastChild;while(n&&n.nodeType!==Node.ELEMENT_NODE){n=n.__dom.previousSibling;}
3560return n;},getNextElementSibling:function(node){return node.__dom&&node.__dom.nextSibling!==undefined?this._getNextElementSibling(node):node.nextElementSibling;},_getNextElementSibling:function(node){var n=node.__dom.nextSibling;while(n&&n.nodeType!==Node.ELEMENT_NODE){n=n.__dom.nextSibling;}
3561return n;},getPreviousElementSibling:function(node){return node.__dom&&node.__dom.previousSibling!==undefined?this._getPreviousElementSibling(node):node.previousElementSibling;},_getPreviousElementSibling:function(node){var n=node.__dom.previousSibling;while(n&&n.nodeType!==Node.ELEMENT_NODE){n=n.__dom.previousSibling;}
3562return n;},saveChildNodes:function(node){if(!this.hasChildNodes(node)){node.__dom=node.__dom||{};node.__dom.firstChild=node.firstChild;node.__dom.lastChild=node.lastChild;node.__dom.childNodes=[];for(var n=node.firstChild;n;n=n.nextSibling){n.__dom=n.__dom||{};n.__dom.parentNode=node;node.__dom.childNodes.push(n);n.__dom.nextSibling=n.nextSibling;n.__dom.previousSibling=n.previousSibling;}}},recordInsertBefore:function(node,container,ref_node){container.__dom.childNodes=null;if(node.nodeType===Node.DOCUMENT_FRAGMENT_NODE){for(var n=node.firstChild;n;n=n.nextSibling){this._linkNode(n,container,ref_node);}}else{this._linkNode(node,container,ref_node);}},_linkNode:function(node,container,ref_node){node.__dom=node.__dom||{};container.__dom=container.__dom||{};if(ref_node){ref_node.__dom=ref_node.__dom||{};}
3563node.__dom.previousSibling=ref_node?ref_node.__dom.previousSibling:container.__dom.lastChild;if(node.__dom.previousSibling){node.__dom.previousSibling.__dom.nextSibling=node;}
3564node.__dom.nextSibling=ref_node||null;if(node.__dom.nextSibling){node.__dom.nextSibling.__dom.previousSibling=node;}
3565node.__dom.parentNode=container;if(ref_node){if(ref_node===container.__dom.firstChild){container.__dom.firstChild=node;}}else{container.__dom.lastChild=node;if(!container.__dom.firstChild){container.__dom.firstChild=node;}}
3566container.__dom.childNodes=null;},recordRemoveChild:function(node,container){node.__dom=node.__dom||{};container.__dom=container.__dom||{};if(node===container.__dom.firstChild){container.__dom.firstChild=node.__dom.nextSibling;}
3567if(node===container.__dom.lastChild){container.__dom.lastChild=node.__dom.previousSibling;}
3568var p=node.__dom.previousSibling;var n=node.__dom.nextSibling;if(p){p.__dom.nextSibling=n;}
3569if(n){n.__dom.previousSibling=p;}
3570node.__dom.parentNode=node.__dom.previousSibling=node.__dom.nextSibling=undefined;container.__dom.childNodes=null;}};Polymer.TreeApi.Composed={getChildNodes:function(node){return Polymer.TreeApi.arrayCopyChildNodes(node);},getParentNode:function(node){return node.parentNode;},clearChildNodes:function(node){node.textContent='';},insertBefore:function(parentNode,newChild,refChild){return nativeInsertBefore.call(parentNode,newChild,refChild||null);},appendChild:function(parentNode,newChild){return nativeAppendChild.call(parentNode,newChild);},removeChild:function(parentNode,node){return nativeRemoveChild.call(parentNode,node);}};}());Polymer.DomApi=function(){'use strict';var Settings=Polymer.Settings;var TreeApi=Polymer.TreeApi;var DomApi=function(node){this.node=needsToWrap?DomApi.wrap(node):node;};var needsToWrap=Settings.hasShadow&&!Settings.nativeShadow;DomApi.wrap=window.wrap?window.wrap:function(node){return node;};DomApi.prototype={flush:function(){Polymer.dom.flush();},deepContains:function(node){if(this.node.contains(node)){return true;}
3571var n=node;var doc=node.ownerDocument;while(n&&n!==doc&&n!==this.node){n=Polymer.dom(n).parentNode||n.host;}
3572return n===this.node;},queryDistributedElements:function(selector){var c$=this.getEffectiveChildNodes();var list=[];for(var i=0,l=c$.length,c;i<l&&(c=c$[i]);i++){if(c.nodeType===Node.ELEMENT_NODE&&DomApi.matchesSelector.call(c,selector)){list.push(c);}}
3573return list;},getEffectiveChildNodes:function(){var list=[];var c$=this.childNodes;for(var i=0,l=c$.length,c;i<l&&(c=c$[i]);i++){if(c.localName===CONTENT){var d$=dom(c).getDistributedNodes();for(var j=0;j<d$.length;j++){list.push(d$[j]);}}else{list.push(c);}}
3574return list;},observeNodes:function(callback){if(callback){if(!this.observer){this.observer=this.node.localName===CONTENT?new DomApi.DistributedNodesObserver(this):new DomApi.EffectiveNodesObserver(this);}
3575return this.observer.addListener(callback);}},unobserveNodes:function(handle){if(this.observer){this.observer.removeListener(handle);}},notifyObserver:function(){if(this.observer){this.observer.notify();}},_query:function(matcher,node,halter){node=node||this.node;var list=[];this._queryElements(TreeApi.Logical.getChildNodes(node),matcher,halter,list);return list;},_queryElements:function(elements,matcher,halter,list){for(var i=0,l=elements.length,c;i<l&&(c=elements[i]);i++){if(c.nodeType===Node.ELEMENT_NODE){if(this._queryElement(c,matcher,halter,list)){return true;}}}},_queryElement:function(node,matcher,halter,list){var result=matcher(node);if(result){list.push(node);}
3576if(halter&&halter(result)){return result;}
3577this._queryElements(TreeApi.Logical.getChildNodes(node),matcher,halter,list);}};var CONTENT=DomApi.CONTENT='content';var dom=DomApi.factory=function(node){node=node||document;if(!node.__domApi){node.__domApi=new DomApi.ctor(node);}
3578return node.__domApi;};DomApi.hasApi=function(node){return Boolean(node.__domApi);};DomApi.ctor=DomApi;Polymer.dom=function(obj,patch){if(obj instanceof Event){return Polymer.EventApi.factory(obj);}else{return DomApi.factory(obj,patch);}};var p=Element.prototype;DomApi.matchesSelector=p.matches||p.matchesSelector||p.mozMatchesSelector||p.msMatchesSelector||p.oMatchesSelector||p.webkitMatchesSelector;return DomApi;}();(function(){'use strict';var Settings=Polymer.Settings;var DomApi=Polymer.DomApi;var dom=DomApi.factory;var TreeApi=Polymer.TreeApi;var getInnerHTML=Polymer.domInnerHTML.getInnerHTML;var CONTENT=DomApi.CONTENT;if(Settings.useShadow){return;}
3579var nativeCloneNode=Element.prototype.cloneNode;var nativeImportNode=Document.prototype.importNode;Polymer.Base.mixin(DomApi.prototype,{_lazyDistribute:function(host){if(host.shadyRoot&&host.shadyRoot._distributionClean){host.shadyRoot._distributionClean=false;Polymer.dom.addDebouncer(host.debounce('_distribute',host._distributeContent));}},appendChild:function(node){return this.insertBefore(node);},insertBefore:function(node,ref_node){if(ref_node&&TreeApi.Logical.getParentNode(ref_node)!==this.node){throw Error('The ref_node to be inserted before is not a child '+'of this node');}
3580if(node.nodeType!==Node.DOCUMENT_FRAGMENT_NODE){var parent=TreeApi.Logical.getParentNode(node);if(parent){if(DomApi.hasApi(parent)){dom(parent).notifyObserver();}
3581this._removeNode(node);}else{this._removeOwnerShadyRoot(node);}}
3582if(!this._addNode(node,ref_node)){if(ref_node){ref_node=ref_node.localName===CONTENT?this._firstComposedNode(ref_node):ref_node;}
3583var container=this.node._isShadyRoot?this.node.host:this.node;if(ref_node){TreeApi.Composed.insertBefore(container,node,ref_node);}else{TreeApi.Composed.appendChild(container,node);}}
3584this.notifyObserver();return node;},_addNode:function(node,ref_node){var root=this.getOwnerRoot();if(root){var ipAdded=this._maybeAddInsertionPoint(node,this.node);if(!root._invalidInsertionPoints){root._invalidInsertionPoints=ipAdded;}
3585this._addNodeToHost(root.host,node);}
3586if(TreeApi.Logical.hasChildNodes(this.node)){TreeApi.Logical.recordInsertBefore(node,this.node,ref_node);}
3587var handled=this._maybeDistribute(node)||this.node.shadyRoot;if(handled){if(node.nodeType===Node.DOCUMENT_FRAGMENT_NODE){while(node.firstChild){TreeApi.Composed.removeChild(node,node.firstChild);}}else{var parent=TreeApi.Composed.getParentNode(node);if(parent){TreeApi.Composed.removeChild(parent,node);}}}
3588return handled;},removeChild:function(node){if(TreeApi.Logical.getParentNode(node)!==this.node){throw Error('The node to be removed is not a child of this node: '+node);}
3589if(!this._removeNode(node)){var container=this.node._isShadyRoot?this.node.host:this.node;var parent=TreeApi.Composed.getParentNode(node);if(container===parent){TreeApi.Composed.removeChild(container,node);}}
3590this.notifyObserver();return node;},_removeNode:function(node){var logicalParent=TreeApi.Logical.hasParentNode(node)&&TreeApi.Logical.getParentNode(node);var distributed;var root=this._ownerShadyRootForNode(node);if(logicalParent){distributed=dom(node)._maybeDistributeParent();TreeApi.Logical.recordRemoveChild(node,logicalParent);if(root&&this._removeDistributedChildren(root,node)){root._invalidInsertionPoints=true;this._lazyDistribute(root.host);}}
3591this._removeOwnerShadyRoot(node);if(root){this._removeNodeFromHost(root.host,node);}
3592return distributed;},replaceChild:function(node,ref_node){this.insertBefore(node,ref_node);this.removeChild(ref_node);return node;},_hasCachedOwnerRoot:function(node){return Boolean(node._ownerShadyRoot!==undefined);},getOwnerRoot:function(){return this._ownerShadyRootForNode(this.node);},_ownerShadyRootForNode:function(node){if(!node){return;}
3593var root=node._ownerShadyRoot;if(root===undefined){if(node._isShadyRoot){root=node;}else{var parent=TreeApi.Logical.getParentNode(node);if(parent){root=parent._isShadyRoot?parent:this._ownerShadyRootForNode(parent);}else{root=null;}}
3594if(root||document.documentElement.contains(node)){node._ownerShadyRoot=root;}}
3595return root;},_maybeDistribute:function(node){var fragContent=node.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&!node.__noContent&&dom(node).querySelector(CONTENT);var wrappedContent=fragContent&&TreeApi.Logical.getParentNode(fragContent).nodeType!==Node.DOCUMENT_FRAGMENT_NODE;var hasContent=fragContent||node.localName===CONTENT;if(hasContent){var root=this.getOwnerRoot();if(root){this._lazyDistribute(root.host);}}
3596var needsDist=this._nodeNeedsDistribution(this.node);if(needsDist){this._lazyDistribute(this.node);}
3597return needsDist||hasContent&&!wrappedContent;},_maybeAddInsertionPoint:function(node,parent){var added;if(node.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&!node.__noContent){var c$=dom(node).querySelectorAll(CONTENT);for(var i=0,n,np,na;i<c$.length&&(n=c$[i]);i++){np=TreeApi.Logical.getParentNode(n);if(np===node){np=parent;}
3598na=this._maybeAddInsertionPoint(n,np);added=added||na;}}else if(node.localName===CONTENT){TreeApi.Logical.saveChildNodes(parent);TreeApi.Logical.saveChildNodes(node);added=true;}
3599return added;},_updateInsertionPoints:function(host){var i$=host.shadyRoot._insertionPoints=dom(host.shadyRoot).querySelectorAll(CONTENT);for(var i=0,c;i<i$.length;i++){c=i$[i];TreeApi.Logical.saveChildNodes(c);TreeApi.Logical.saveChildNodes(TreeApi.Logical.getParentNode(c));}},_nodeNeedsDistribution:function(node){return node&&node.shadyRoot&&DomApi.hasInsertionPoint(node.shadyRoot);},_addNodeToHost:function(host,node){if(host._elementAdd){host._elementAdd(node);}},_removeNodeFromHost:function(host,node){if(host._elementRemove){host._elementRemove(node);}},_removeDistributedChildren:function(root,container){var hostNeedsDist;var ip$=root._insertionPoints;for(var i=0;i<ip$.length;i++){var content=ip$[i];if(this._contains(container,content)){var dc$=dom(content).getDistributedNodes();for(var j=0;j<dc$.length;j++){hostNeedsDist=true;var node=dc$[j];var parent=TreeApi.Composed.getParentNode(node);if(parent){TreeApi.Composed.removeChild(parent,node);}}}}
3600return hostNeedsDist;},_contains:function(container,node){while(node){if(node==container){return true;}
3601node=TreeApi.Logical.getParentNode(node);}},_removeOwnerShadyRoot:function(node){if(this._hasCachedOwnerRoot(node)){var c$=TreeApi.Logical.getChildNodes(node);for(var i=0,l=c$.length,n;i<l&&(n=c$[i]);i++){this._removeOwnerShadyRoot(n);}}
3602node._ownerShadyRoot=undefined;},_firstComposedNode:function(content){var n$=dom(content).getDistributedNodes();for(var i=0,l=n$.length,n,p$;i<l&&(n=n$[i]);i++){p$=dom(n).getDestinationInsertionPoints();if(p$[p$.length-1]===content){return n;}}},querySelector:function(selector){var result=this._query(function(n){return DomApi.matchesSelector.call(n,selector);},this.node,function(n){return Boolean(n);})[0];return result||null;},querySelectorAll:function(selector){return this._query(function(n){return DomApi.matchesSelector.call(n,selector);},this.node);},getDestinationInsertionPoints:function(){return this.node._destinationInsertionPoints||[];},getDistributedNodes:function(){return this.node._distributedNodes||[];},_clear:function(){while(this.childNodes.length){this.removeChild(this.childNodes[0]);}},setAttribute:function(name,value){this.node.setAttribute(name,value);this._maybeDistributeParent();},removeAttribute:function(name){this.node.removeAttribute(name);this._maybeDistributeParent();},_maybeDistributeParent:function(){if(this._nodeNeedsDistribution(this.parentNode)){this._lazyDistribute(this.parentNode);return true;}},cloneNode:function(deep){var n=nativeCloneNode.call(this.node,false);if(deep){var c$=this.childNodes;var d=dom(n);for(var i=0,nc;i<c$.length;i++){nc=dom(c$[i]).cloneNode(true);d.appendChild(nc);}}
3603return n;},importNode:function(externalNode,deep){var doc=this.node instanceof Document?this.node:this.node.ownerDocument;var n=nativeImportNode.call(doc,externalNode,false);if(deep){var c$=TreeApi.Logical.getChildNodes(externalNode);var d=dom(n);for(var i=0,nc;i<c$.length;i++){nc=dom(doc).importNode(c$[i],true);d.appendChild(nc);}}
3604return n;},_getComposedInnerHTML:function(){return getInnerHTML(this.node,true);}});Object.defineProperties(DomApi.prototype,{activeElement:{get:function(){var active=document.activeElement;if(!active){return null;}
3605var isShadyRoot=!!this.node._isShadyRoot;if(this.node!==document){if(!isShadyRoot){return null;}
3606if(this.node.host===active||!this.node.host.contains(active)){return null;}}
3607var activeRoot=dom(active).getOwnerRoot();while(activeRoot&&activeRoot!==this.node){active=activeRoot.host;activeRoot=dom(active).getOwnerRoot();}
3608if(this.node===document){return activeRoot?null:active;}else{return activeRoot===this.node?active:null;}},configurable:true},childNodes:{get:function(){var c$=TreeApi.Logical.getChildNodes(this.node);return Array.isArray(c$)?c$:TreeApi.arrayCopyChildNodes(this.node);},configurable:true},children:{get:function(){if(TreeApi.Logical.hasChildNodes(this.node)){return Array.prototype.filter.call(this.childNodes,function(n){return n.nodeType===Node.ELEMENT_NODE;});}else{return TreeApi.arrayCopyChildren(this.node);}},configurable:true},parentNode:{get:function(){return TreeApi.Logical.getParentNode(this.node);},configurable:true},firstChild:{get:function(){return TreeApi.Logical.getFirstChild(this.node);},configurable:true},lastChild:{get:function(){return TreeApi.Logical.getLastChild(this.node);},configurable:true},nextSibling:{get:function(){return TreeApi.Logical.getNextSibling(this.node);},configurable:true},previousSibling:{get:function(){return TreeApi.Logical.getPreviousSibling(this.node);},configurable:true},firstElementChild:{get:function(){return TreeApi.Logical.getFirstElementChild(this.node);},configurable:true},lastElementChild:{get:function(){return TreeApi.Logical.getLastElementChild(this.node);},configurable:true},nextElementSibling:{get:function(){return TreeApi.Logical.getNextElementSibling(this.node);},configurable:true},previousElementSibling:{get:function(){return TreeApi.Logical.getPreviousElementSibling(this.node);},configurable:true},textContent:{get:function(){var nt=this.node.nodeType;if(nt===Node.TEXT_NODE||nt===Node.COMMENT_NODE){return this.node.textContent;}else{var tc=[];for(var i=0,cn=this.childNodes,c;c=cn[i];i++){if(c.nodeType!==Node.COMMENT_NODE){tc.push(c.textContent);}}
3609return tc.join('');}},set:function(text){var nt=this.node.nodeType;if(nt===Node.TEXT_NODE||nt===Node.COMMENT_NODE){this.node.textContent=text;}else{this._clear();if(text){this.appendChild(document.createTextNode(text));}}},configurable:true},innerHTML:{get:function(){var nt=this.node.nodeType;if(nt===Node.TEXT_NODE||nt===Node.COMMENT_NODE){return null;}else{return getInnerHTML(this.node);}},set:function(text){var nt=this.node.nodeType;if(nt!==Node.TEXT_NODE||nt!==Node.COMMENT_NODE){this._clear();var d=document.createElement('div');d.innerHTML=text;var c$=TreeApi.arrayCopyChildNodes(d);for(var i=0;i<c$.length;i++){this.appendChild(c$[i]);}}},configurable:true}});DomApi.hasInsertionPoint=function(root){return Boolean(root&&root._insertionPoints.length);};}());(function(){'use strict';var Settings=Polymer.Settings;var TreeApi=Polymer.TreeApi;var DomApi=Polymer.DomApi;if(!Settings.useShadow){return;}
3610Polymer.Base.mixin(DomApi.prototype,{querySelectorAll:function(selector){return TreeApi.arrayCopy(this.node.querySelectorAll(selector));},getOwnerRoot:function(){var n=this.node;while(n){if(n.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&n.host){return n;}
3611n=n.parentNode;}},importNode:function(externalNode,deep){var doc=this.node instanceof Document?this.node:this.node.ownerDocument;return doc.importNode(externalNode,deep);},getDestinationInsertionPoints:function(){var n$=this.node.getDestinationInsertionPoints&&this.node.getDestinationInsertionPoints();return n$?TreeApi.arrayCopy(n$):[];},getDistributedNodes:function(){var n$=this.node.getDistributedNodes&&this.node.getDistributedNodes();return n$?TreeApi.arrayCopy(n$):[];}});Object.defineProperties(DomApi.prototype,{activeElement:{get:function(){var node=DomApi.wrap(this.node);var activeElement=node.activeElement;return node.contains(activeElement)?activeElement:null;},configurable:true},childNodes:{get:function(){return TreeApi.arrayCopyChildNodes(this.node);},configurable:true},children:{get:function(){return TreeApi.arrayCopyChildren(this.node);},configurable:true},textContent:{get:function(){return this.node.textContent;},set:function(value){return this.node.textContent=value;},configurable:true},innerHTML:{get:function(){return this.node.innerHTML;},set:function(value){return this.node.innerHTML=value;},configurable:true}});var forwardMethods=function(m$){for(var i=0;i<m$.length;i++){forwardMethod(m$[i]);}};var forwardMethod=function(method){DomApi.prototype[method]=function(){return this.node[method].apply(this.node,arguments);};};forwardMethods(['cloneNode','appendChild','insertBefore','removeChild','replaceChild','setAttribute','removeAttribute','querySelector']);var forwardProperties=function(f$){for(var i=0;i<f$.length;i++){forwardProperty(f$[i]);}};var forwardProperty=function(name){Object.defineProperty(DomApi.prototype,name,{get:function(){return this.node[name];},configurable:true});};forwardProperties(['parentNode','firstChild','lastChild','nextSibling','previousSibling','firstElementChild','lastElementChild','nextElementSibling','previousElementSibling']);}());Polymer.Base.mixin(Polymer.dom,{_flushGuard:0,_FLUSH_MAX:100,_needsTakeRecords:!Polymer.Settings.useNativeCustomElements,_debouncers:[],_staticFlushList:[],_finishDebouncer:null,flush:function(){this._flushGuard=0;this._prepareFlush();while(this._debouncers.length&&this._flushGuard<this._FLUSH_MAX){while(this._debouncers.length){this._debouncers.shift().complete();}
3612if(this._finishDebouncer){this._finishDebouncer.complete();}
3613this._prepareFlush();this._flushGuard++;}
3614if(this._flushGuard>=this._FLUSH_MAX){console.warn('Polymer.dom.flush aborted. Flush may not be complete.');}},_prepareFlush:function(){if(this._needsTakeRecords){CustomElements.takeRecords();}
3615for(var i=0;i<this._staticFlushList.length;i++){this._staticFlushList[i]();}},addStaticFlush:function(fn){this._staticFlushList.push(fn);},removeStaticFlush:function(fn){var i=this._staticFlushList.indexOf(fn);if(i>=0){this._staticFlushList.splice(i,1);}},addDebouncer:function(debouncer){this._debouncers.push(debouncer);this._finishDebouncer=Polymer.Debounce(this._finishDebouncer,this._finishFlush);},_finishFlush:function(){Polymer.dom._debouncers=[];}});Polymer.EventApi=function(){'use strict';var DomApi=Polymer.DomApi.ctor;var Settings=Polymer.Settings;DomApi.Event=function(event){this.event=event;};if(Settings.useShadow){DomApi.Event.prototype={get rootTarget(){return this.event.path[0];},get localTarget(){return this.event.target;},get path(){var path=this.event.path;if(!Array.isArray(path)){path=Array.prototype.slice.call(path);}
3616return path;}};}else{DomApi.Event.prototype={get rootTarget(){return this.event.target;},get localTarget(){var current=this.event.currentTarget;var currentRoot=current&&Polymer.dom(current).getOwnerRoot();var p$=this.path;for(var i=0;i<p$.length;i++){if(Polymer.dom(p$[i]).getOwnerRoot()===currentRoot){return p$[i];}}},get path(){if(!this.event._path){var path=[];var current=this.rootTarget;while(current){path.push(current);var insertionPoints=Polymer.dom(current).getDestinationInsertionPoints();if(insertionPoints.length){for(var i=0;i<insertionPoints.length-1;i++){path.push(insertionPoints[i]);}
3617current=insertionPoints[insertionPoints.length-1];}else{current=Polymer.dom(current).parentNode||current.host;}}
3618path.push(window);this.event._path=path;}
3619return this.event._path;}};}
3620var factory=function(event){if(!event.__eventApi){event.__eventApi=new DomApi.Event(event);}
3621return event.__eventApi;};return{factory:factory};}();(function(){'use strict';var DomApi=Polymer.DomApi.ctor;var useShadow=Polymer.Settings.useShadow;Object.defineProperty(DomApi.prototype,'classList',{get:function(){if(!this._classList){this._classList=new DomApi.ClassList(this);}
3622return this._classList;},configurable:true});DomApi.ClassList=function(host){this.domApi=host;this.node=host.node;};DomApi.ClassList.prototype={add:function(){this.node.classList.add.apply(this.node.classList,arguments);this._distributeParent();},remove:function(){this.node.classList.remove.apply(this.node.classList,arguments);this._distributeParent();},toggle:function(){this.node.classList.toggle.apply(this.node.classList,arguments);this._distributeParent();},_distributeParent:function(){if(!useShadow){this.domApi._maybeDistributeParent();}},contains:function(){return this.node.classList.contains.apply(this.node.classList,arguments);}};}());(function(){'use strict';var DomApi=Polymer.DomApi.ctor;var Settings=Polymer.Settings;DomApi.EffectiveNodesObserver=function(domApi){this.domApi=domApi;this.node=this.domApi.node;this._listeners=[];};DomApi.EffectiveNodesObserver.prototype={addListener:function(callback){if(!this._isSetup){this._setup();this._isSetup=true;}
3623var listener={fn:callback,_nodes:[]};this._listeners.push(listener);this._scheduleNotify();return listener;},removeListener:function(handle){var i=this._listeners.indexOf(handle);if(i>=0){this._listeners.splice(i,1);handle._nodes=[];}
3624if(!this._hasListeners()){this._cleanup();this._isSetup=false;}},_setup:function(){this._observeContentElements(this.domApi.childNodes);},_cleanup:function(){this._unobserveContentElements(this.domApi.childNodes);},_hasListeners:function(){return Boolean(this._listeners.length);},_scheduleNotify:function(){if(this._debouncer){this._debouncer.stop();}
3625this._debouncer=Polymer.Debounce(this._debouncer,this._notify);this._debouncer.context=this;Polymer.dom.addDebouncer(this._debouncer);},notify:function(){if(this._hasListeners()){this._scheduleNotify();}},_notify:function(){this._beforeCallListeners();this._callListeners();},_beforeCallListeners:function(){this._updateContentElements();},_updateContentElements:function(){this._observeContentElements(this.domApi.childNodes);},_observeContentElements:function(elements){for(var i=0,n;i<elements.length&&(n=elements[i]);i++){if(this._isContent(n)){n.__observeNodesMap=n.__observeNodesMap||new WeakMap();if(!n.__observeNodesMap.has(this)){n.__observeNodesMap.set(this,this._observeContent(n));}}}},_observeContent:function(content){var self=this;var h=Polymer.dom(content).observeNodes(function(){self._scheduleNotify();});h._avoidChangeCalculation=true;return h;},_unobserveContentElements:function(elements){for(var i=0,n,h;i<elements.length&&(n=elements[i]);i++){if(this._isContent(n)){h=n.__observeNodesMap.get(this);if(h){Polymer.dom(n).unobserveNodes(h);n.__observeNodesMap.delete(this);}}}},_isContent:function(node){return node.localName==='content';},_callListeners:function(){var o$=this._listeners;var nodes=this._getEffectiveNodes();for(var i=0,o;i<o$.length&&(o=o$[i]);i++){var info=this._generateListenerInfo(o,nodes);if(info||o._alwaysNotify){this._callListener(o,info);}}},_getEffectiveNodes:function(){return this.domApi.getEffectiveChildNodes();},_generateListenerInfo:function(listener,newNodes){if(listener._avoidChangeCalculation){return true;}
3626var oldNodes=listener._nodes;var info={target:this.node,addedNodes:[],removedNodes:[]};var splices=Polymer.ArraySplice.calculateSplices(newNodes,oldNodes);for(var i=0,s;i<splices.length&&(s=splices[i]);i++){for(var j=0,n;j<s.removed.length&&(n=s.removed[j]);j++){info.removedNodes.push(n);}}
3627for(i=0,s;i<splices.length&&(s=splices[i]);i++){for(j=s.index;j<s.index+s.addedCount;j++){info.addedNodes.push(newNodes[j]);}}
3628listener._nodes=newNodes;if(info.addedNodes.length||info.removedNodes.length){return info;}},_callListener:function(listener,info){return listener.fn.call(this.node,info);},enableShadowAttributeTracking:function(){}};if(Settings.useShadow){var baseSetup=DomApi.EffectiveNodesObserver.prototype._setup;var baseCleanup=DomApi.EffectiveNodesObserver.prototype._cleanup;Polymer.Base.mixin(DomApi.EffectiveNodesObserver.prototype,{_setup:function(){if(!this._observer){var self=this;this._mutationHandler=function(mxns){if(mxns&&mxns.length){self._scheduleNotify();}};this._observer=new MutationObserver(this._mutationHandler);this._boundFlush=function(){self._flush();};Polymer.dom.addStaticFlush(this._boundFlush);this._observer.observe(this.node,{childList:true});}
3629baseSetup.call(this);},_cleanup:function(){this._observer.disconnect();this._observer=null;this._mutationHandler=null;Polymer.dom.removeStaticFlush(this._boundFlush);baseCleanup.call(this);},_flush:function(){if(this._observer){this._mutationHandler(this._observer.takeRecords());}},enableShadowAttributeTracking:function(){if(this._observer){this._makeContentListenersAlwaysNotify();this._observer.disconnect();this._observer.observe(this.node,{childList:true,attributes:true,subtree:true});var root=this.domApi.getOwnerRoot();var host=root&&root.host;if(host&&Polymer.dom(host).observer){Polymer.dom(host).observer.enableShadowAttributeTracking();}}},_makeContentListenersAlwaysNotify:function(){for(var i=0,h;i<this._listeners.length;i++){h=this._listeners[i];h._alwaysNotify=h._isContentListener;}}});}}());(function(){'use strict';var DomApi=Polymer.DomApi.ctor;var Settings=Polymer.Settings;DomApi.DistributedNodesObserver=function(domApi){DomApi.EffectiveNodesObserver.call(this,domApi);};DomApi.DistributedNodesObserver.prototype=Object.create(DomApi.EffectiveNodesObserver.prototype);Polymer.Base.mixin(DomApi.DistributedNodesObserver.prototype,{_setup:function(){},_cleanup:function(){},_beforeCallListeners:function(){},_getEffectiveNodes:function(){return this.domApi.getDistributedNodes();}});if(Settings.useShadow){Polymer.Base.mixin(DomApi.DistributedNodesObserver.prototype,{_setup:function(){if(!this._observer){var root=this.domApi.getOwnerRoot();var host=root&&root.host;if(host){var self=this;this._observer=Polymer.dom(host).observeNodes(function(){self._scheduleNotify();});this._observer._isContentListener=true;if(this._hasAttrSelect()){Polymer.dom(host).observer.enableShadowAttributeTracking();}}}},_hasAttrSelect:function(){var select=this.node.getAttribute('select');return select&&select.match(/[[.]+/);},_cleanup:function(){var root=this.domApi.getOwnerRoot();var host=root&&root.host;if(host){Polymer.dom(host).unobserveNodes(this._observer);}
3630this._observer=null;}});}}());(function(){var DomApi=Polymer.DomApi;var TreeApi=Polymer.TreeApi;Polymer.Base._addFeature({_prepShady:function(){this._useContent=this._useContent||Boolean(this._template);},_setupShady:function(){this.shadyRoot=null;if(!this.__domApi){this.__domApi=null;}
3631if(!this.__dom){this.__dom=null;}
3632if(!this._ownerShadyRoot){this._ownerShadyRoot=undefined;}},_poolContent:function(){if(this._useContent){TreeApi.Logical.saveChildNodes(this);}},_setupRoot:function(){if(this._useContent){this._createLocalRoot();if(!this.dataHost){upgradeLogicalChildren(TreeApi.Logical.getChildNodes(this));}}},_createLocalRoot:function(){this.shadyRoot=this.root;this.shadyRoot._distributionClean=false;this.shadyRoot._hasDistributed=false;this.shadyRoot._isShadyRoot=true;this.shadyRoot._dirtyRoots=[];var i$=this.shadyRoot._insertionPoints=!this._notes||this._notes._hasContent?this.shadyRoot.querySelectorAll('content'):[];TreeApi.Logical.saveChildNodes(this.shadyRoot);for(var i=0,c;i<i$.length;i++){c=i$[i];TreeApi.Logical.saveChildNodes(c);TreeApi.Logical.saveChildNodes(c.parentNode);}
3633this.shadyRoot.host=this;},distributeContent:function(updateInsertionPoints){if(this.shadyRoot){this.shadyRoot._invalidInsertionPoints=this.shadyRoot._invalidInsertionPoints||updateInsertionPoints;var host=getTopDistributingHost(this);Polymer.dom(this)._lazyDistribute(host);}},_distributeContent:function(){if(this._useContent&&!this.shadyRoot._distributionClean){if(this.shadyRoot._invalidInsertionPoints){Polymer.dom(this)._updateInsertionPoints(this);this.shadyRoot._invalidInsertionPoints=false;}
3634this._beginDistribute();this._distributeDirtyRoots();this._finishDistribute();}},_beginDistribute:function(){if(this._useContent&&DomApi.hasInsertionPoint(this.shadyRoot)){this._resetDistribution();this._distributePool(this.shadyRoot,this._collectPool());}},_distributeDirtyRoots:function(){var c$=this.shadyRoot._dirtyRoots;for(var i=0,l=c$.length,c;i<l&&(c=c$[i]);i++){c._distributeContent();}
3635this.shadyRoot._dirtyRoots=[];},_finishDistribute:function(){if(this._useContent){this.shadyRoot._distributionClean=true;if(DomApi.hasInsertionPoint(this.shadyRoot)){this._composeTree();notifyContentObservers(this.shadyRoot);}else{if(!this.shadyRoot._hasDistributed){TreeApi.Composed.clearChildNodes(this);this.appendChild(this.shadyRoot);}else{var children=this._composeNode(this);this._updateChildNodes(this,children);}}
3636if(!this.shadyRoot._hasDistributed){notifyInitialDistribution(this);}
3637this.shadyRoot._hasDistributed=true;}},elementMatches:function(selector,node){node=node||this;return DomApi.matchesSelector.call(node,selector);},_resetDistribution:function(){var children=TreeApi.Logical.getChildNodes(this);for(var i=0;i<children.length;i++){var child=children[i];if(child._destinationInsertionPoints){child._destinationInsertionPoints=undefined;}
3638if(isInsertionPoint(child)){clearDistributedDestinationInsertionPoints(child);}}
3639var root=this.shadyRoot;var p$=root._insertionPoints;for(var j=0;j<p$.length;j++){p$[j]._distributedNodes=[];}},_collectPool:function(){var pool=[];var children=TreeApi.Logical.getChildNodes(this);for(var i=0;i<children.length;i++){var child=children[i];if(isInsertionPoint(child)){pool.push.apply(pool,child._distributedNodes);}else{pool.push(child);}}
3640return pool;},_distributePool:function(node,pool){var p$=node._insertionPoints;for(var i=0,l=p$.length,p;i<l&&(p=p$[i]);i++){this._distributeInsertionPoint(p,pool);maybeRedistributeParent(p,this);}},_distributeInsertionPoint:function(content,pool){var anyDistributed=false;for(var i=0,l=pool.length,node;i<l;i++){node=pool[i];if(!node){continue;}
3641if(this._matchesContentSelect(node,content)){distributeNodeInto(node,content);pool[i]=undefined;anyDistributed=true;}}
3642if(!anyDistributed){var children=TreeApi.Logical.getChildNodes(content);for(var j=0;j<children.length;j++){distributeNodeInto(children[j],content);}}},_composeTree:function(){this._updateChildNodes(this,this._composeNode(this));var p$=this.shadyRoot._insertionPoints;for(var i=0,l=p$.length,p,parent;i<l&&(p=p$[i]);i++){parent=TreeApi.Logical.getParentNode(p);if(!parent._useContent&&parent!==this&&parent!==this.shadyRoot){this._updateChildNodes(parent,this._composeNode(parent));}}},_composeNode:function(node){var children=[];var c$=TreeApi.Logical.getChildNodes(node.shadyRoot||node);for(var i=0;i<c$.length;i++){var child=c$[i];if(isInsertionPoint(child)){var distributedNodes=child._distributedNodes;for(var j=0;j<distributedNodes.length;j++){var distributedNode=distributedNodes[j];if(isFinalDestination(child,distributedNode)){children.push(distributedNode);}}}else{children.push(child);}}
3643return children;},_updateChildNodes:function(container,children){var composed=TreeApi.Composed.getChildNodes(container);var splices=Polymer.ArraySplice.calculateSplices(children,composed);for(var i=0,d=0,s;i<splices.length&&(s=splices[i]);i++){for(var j=0,n;j<s.removed.length&&(n=s.removed[j]);j++){if(TreeApi.Composed.getParentNode(n)===container){TreeApi.Composed.removeChild(container,n);}
3644composed.splice(s.index+d,1);}
3645d-=s.addedCount;}
3646for(var i=0,s,next;i<splices.length&&(s=splices[i]);i++){next=composed[s.index];for(j=s.index,n;j<s.index+s.addedCount;j++){n=children[j];TreeApi.Composed.insertBefore(container,n,next);composed.splice(j,0,n);}}},_matchesContentSelect:function(node,contentElement){var select=contentElement.getAttribute('select');if(!select){return true;}
3647select=select.trim();if(!select){return true;}
3648if(!(node instanceof Element)){return false;}
3649var validSelectors=/^(:not\()?[*.#[a-zA-Z_|]/;if(!validSelectors.test(select)){return false;}
3650return this.elementMatches(select,node);},_elementAdd:function(){},_elementRemove:function(){}});var domHostDesc={get:function(){var root=Polymer.dom(this).getOwnerRoot();return root&&root.host;},configurable:true};Object.defineProperty(Polymer.Base,'domHost',domHostDesc);Polymer.BaseDescriptors.domHost=domHostDesc;function distributeNodeInto(child,insertionPoint){insertionPoint._distributedNodes.push(child);var points=child._destinationInsertionPoints;if(!points){child._destinationInsertionPoints=[insertionPoint];}else{points.push(insertionPoint);}}
3651function clearDistributedDestinationInsertionPoints(content){var e$=content._distributedNodes;if(e$){for(var i=0;i<e$.length;i++){var d=e$[i]._destinationInsertionPoints;if(d){d.splice(d.indexOf(content)+1,d.length);}}}}
3652function maybeRedistributeParent(content,host){var parent=TreeApi.Logical.getParentNode(content);if(parent&&parent.shadyRoot&&DomApi.hasInsertionPoint(parent.shadyRoot)&&parent.shadyRoot._distributionClean){parent.shadyRoot._distributionClean=false;host.shadyRoot._dirtyRoots.push(parent);}}
3653function isFinalDestination(insertionPoint,node){var points=node._destinationInsertionPoints;return points&&points[points.length-1]===insertionPoint;}
3654function isInsertionPoint(node){return node.localName=='content';}
3655function getTopDistributingHost(host){while(host&&hostNeedsRedistribution(host)){host=host.domHost;}
3656return host;}
3657function hostNeedsRedistribution(host){var c$=TreeApi.Logical.getChildNodes(host);for(var i=0,c;i<c$.length;i++){c=c$[i];if(c.localName&&c.localName==='content'){return host.domHost;}}}
3658function notifyContentObservers(root){for(var i=0,c;i<root._insertionPoints.length;i++){c=root._insertionPoints[i];if(DomApi.hasApi(c)){Polymer.dom(c).notifyObserver();}}}
3659function notifyInitialDistribution(host){if(DomApi.hasApi(host)){Polymer.dom(host).notifyObserver();}}
3660var needsUpgrade=window.CustomElements&&!CustomElements.useNative;function upgradeLogicalChildren(children){if(needsUpgrade&&children){for(var i=0;i<children.length;i++){CustomElements.upgrade(children[i]);}}}}());if(Polymer.Settings.useShadow){Polymer.Base._addFeature({_poolContent:function(){},_beginDistribute:function(){},distributeContent:function(){},_distributeContent:function(){},_finishDistribute:function(){},_createLocalRoot:function(){this.createShadowRoot();this.shadowRoot.appendChild(this.root);this.root=this.shadowRoot;}});}Polymer.Async={_currVal:0,_lastVal:0,_callbacks:[],_twiddleContent:0,_twiddle:document.createTextNode(''),run:function(callback,waitTime){if(waitTime>0){return~setTimeout(callback,waitTime);}else{this._twiddle.textContent=this._twiddleContent++;this._callbacks.push(callback);return this._currVal++;}},cancel:function(handle){if(handle<0){clearTimeout(~handle);}else{var idx=handle-this._lastVal;if(idx>=0){if(!this._callbacks[idx]){throw'invalid async handle: '+handle;}
3661this._callbacks[idx]=null;}}},_atEndOfMicrotask:function(){var len=this._callbacks.length;for(var i=0;i<len;i++){var cb=this._callbacks[i];if(cb){try{cb();}catch(e){i++;this._callbacks.splice(0,i);this._lastVal+=i;this._twiddle.textContent=this._twiddleContent++;throw e;}}}
3662this._callbacks.splice(0,len);this._lastVal+=len;}};new window.MutationObserver(function(){Polymer.Async._atEndOfMicrotask();}).observe(Polymer.Async._twiddle,{characterData:true});Polymer.Debounce=function(){var Async=Polymer.Async;var Debouncer=function(context){this.context=context;var self=this;this.boundComplete=function(){self.complete();};};Debouncer.prototype={go:function(callback,wait){var h;this.finish=function(){Async.cancel(h);};h=Async.run(this.boundComplete,wait);this.callback=callback;},stop:function(){if(this.finish){this.finish();this.finish=null;this.callback=null;}},complete:function(){if(this.finish){var callback=this.callback;this.stop();callback.call(this.context);}}};function debounce(debouncer,callback,wait){if(debouncer){debouncer.stop();}else{debouncer=new Debouncer(this);}
3663debouncer.go(callback,wait);return debouncer;}
3664return debounce;}();Polymer.Base._addFeature({_setupDebouncers:function(){this._debouncers={};},debounce:function(jobName,callback,wait){return this._debouncers[jobName]=Polymer.Debounce.call(this,this._debouncers[jobName],callback,wait);},isDebouncerActive:function(jobName){var debouncer=this._debouncers[jobName];return!!(debouncer&&debouncer.finish);},flushDebouncer:function(jobName){var debouncer=this._debouncers[jobName];if(debouncer){debouncer.complete();}},cancelDebouncer:function(jobName){var debouncer=this._debouncers[jobName];if(debouncer){debouncer.stop();}}});Polymer.DomModule=document.createElement('dom-module');Polymer.Base._addFeature({_registerFeatures:function(){this._prepIs();this._prepBehaviors();this._prepConstructor();this._prepTemplate();this._prepShady();this._prepPropertyInfo();},_prepBehavior:function(b){this._addHostAttributes(b.hostAttributes);},_initFeatures:function(){this._registerHost();if(this._template){this._poolContent();this._beginHosting();this._stampTemplate();this._endHosting();}
3665this._marshalHostAttributes();this._setupDebouncers();this._marshalBehaviors();this._tryReady();},_marshalBehavior:function(b){}});(function(){Polymer.nar=[];var disableUpgradeEnabled=Polymer.Settings.disableUpgradeEnabled;Polymer.Annotations={parseAnnotations:function(template,stripWhiteSpace){var list=[];var content=template._content||template.content;this._parseNodeAnnotations(content,list,stripWhiteSpace||template.hasAttribute('strip-whitespace'));return list;},_parseNodeAnnotations:function(node,list,stripWhiteSpace){return node.nodeType===Node.TEXT_NODE?this._parseTextNodeAnnotation(node,list):this._parseElementAnnotations(node,list,stripWhiteSpace);},_bindingRegex:function(){var IDENT='(?:'+'[a-zA-Z_$][\\w.:$\\-*]*'+')';var NUMBER='(?:'+'[-+]?[0-9]*\\.?[0-9]+(?:[eE][-+]?[0-9]+)?'+')';var SQUOTE_STRING='(?:'+'\'(?:[^\'\\\\]|\\\\.)*\''+')';var DQUOTE_STRING='(?:'+'"(?:[^"\\\\]|\\\\.)*"'+')';var STRING='(?:'+SQUOTE_STRING+'|'+DQUOTE_STRING+')';var ARGUMENT='(?:'+IDENT+'|'+NUMBER+'|'+STRING+'\\s*'+')';var ARGUMENTS='(?:'+ARGUMENT+'(?:,\\s*'+ARGUMENT+')*'+')';var ARGUMENT_LIST='(?:'+'\\(\\s*'+'(?:'+ARGUMENTS+'?'+')'+'\\)\\s*'+')';var BINDING='('+IDENT+'\\s*'+ARGUMENT_LIST+'?'+')';var OPEN_BRACKET='(\\[\\[|{{)'+'\\s*';var CLOSE_BRACKET='(?:]]|}})';var NEGATE='(?:(!)\\s*)?';var EXPRESSION=OPEN_BRACKET+NEGATE+BINDING+CLOSE_BRACKET;return new RegExp(EXPRESSION,'g');}(),_parseBindings:function(text){var re=this._bindingRegex;var parts=[];var lastIndex=0;var m;while((m=re.exec(text))!==null){if(m.index>lastIndex){parts.push({literal:text.slice(lastIndex,m.index)});}
3666var mode=m[1][0];var negate=Boolean(m[2]);var value=m[3].trim();var customEvent,notifyEvent,colon;if(mode=='{'&&(colon=value.indexOf('::'))>0){notifyEvent=value.substring(colon+2);value=value.substring(0,colon);customEvent=true;}
3667parts.push({compoundIndex:parts.length,value:value,mode:mode,negate:negate,event:notifyEvent,customEvent:customEvent});lastIndex=re.lastIndex;}
3668if(lastIndex&&lastIndex<text.length){var literal=text.substring(lastIndex);if(literal){parts.push({literal:literal});}}
3669if(parts.length){return parts;}},_literalFromParts:function(parts){var s='';for(var i=0;i<parts.length;i++){var literal=parts[i].literal;s+=literal||'';}
3670return s;},_parseTextNodeAnnotation:function(node,list){var parts=this._parseBindings(node.textContent);if(parts){node.textContent=this._literalFromParts(parts)||' ';var annote={bindings:[{kind:'text',name:'textContent',parts:parts,isCompound:parts.length!==1}]};list.push(annote);return annote;}},_parseElementAnnotations:function(element,list,stripWhiteSpace){var annote={bindings:[],events:[]};if(element.localName==='content'){list._hasContent=true;}
3671this._parseChildNodesAnnotations(element,annote,list,stripWhiteSpace);if(element.attributes){this._parseNodeAttributeAnnotations(element,annote,list);if(this.prepElement){this.prepElement(element);}}
3672if(annote.bindings.length||annote.events.length||annote.id){list.push(annote);}
3673return annote;},_parseChildNodesAnnotations:function(root,annote,list,stripWhiteSpace){if(root.firstChild){var node=root.firstChild;var i=0;while(node){var next=node.nextSibling;if(node.localName==='template'&&!node.hasAttribute('preserve-content')){this._parseTemplate(node,i,list,annote,stripWhiteSpace);}
3674if(node.localName=='slot'){node=this._replaceSlotWithContent(node);}
3675if(node.nodeType===Node.TEXT_NODE){var n=next;while(n&&n.nodeType===Node.TEXT_NODE){node.textContent+=n.textContent;next=n.nextSibling;root.removeChild(n);n=next;}
3676if(stripWhiteSpace&&!node.textContent.trim()){root.removeChild(node);i--;}}
3677if(node.parentNode){var childAnnotation=this._parseNodeAnnotations(node,list,stripWhiteSpace);if(childAnnotation){childAnnotation.parent=annote;childAnnotation.index=i;}}
3678node=next;i++;}}},_replaceSlotWithContent:function(slot){var content=slot.ownerDocument.createElement('content');while(slot.firstChild){content.appendChild(slot.firstChild);}
3679var attrs=slot.attributes;for(var i=0;i<attrs.length;i++){var attr=attrs[i];content.setAttribute(attr.name,attr.value);}
3680var name=slot.getAttribute('name');if(name){content.setAttribute('select','[slot=\''+name+'\']');}
3681slot.parentNode.replaceChild(content,slot);return content;},_parseTemplate:function(node,index,list,parent,stripWhiteSpace){var content=document.createDocumentFragment();content._notes=this.parseAnnotations(node,stripWhiteSpace);content.appendChild(node.content);list.push({bindings:Polymer.nar,events:Polymer.nar,templateContent:content,parent:parent,index:index});},_parseNodeAttributeAnnotations:function(node,annotation){var attrs=Array.prototype.slice.call(node.attributes);for(var i=attrs.length-1,a;a=attrs[i];i--){var n=a.name;var v=a.value;var b;if(n.slice(0,3)==='on-'){node.removeAttribute(n);annotation.events.push({name:n.slice(3),value:v});}else if(b=this._parseNodeAttributeAnnotation(node,n,v)){annotation.bindings.push(b);}else if(n==='id'){annotation.id=v;}}},_parseNodeAttributeAnnotation:function(node,name,value){var parts=this._parseBindings(value);if(parts){var origName=name;var kind='property';if(name[name.length-1]=='$'){name=name.slice(0,-1);kind='attribute';}
3682var literal=this._literalFromParts(parts);if(literal&&kind=='attribute'){node.setAttribute(name,literal);}
3683if(node.localName==='input'&&origName==='value'){node.setAttribute(origName,'');}
3684if(disableUpgradeEnabled&&origName==='disable-upgrade$'){node.setAttribute(name,'');}
3685node.removeAttribute(origName);var propertyName=Polymer.CaseMap.dashToCamelCase(name);if(kind==='property'){name=propertyName;}
3686return{kind:kind,name:name,propertyName:propertyName,parts:parts,literal:literal,isCompound:parts.length!==1};}},findAnnotatedNode:function(root,annote){var parent=annote.parent&&Polymer.Annotations.findAnnotatedNode(root,annote.parent);if(parent){for(var n=parent.firstChild,i=0;n;n=n.nextSibling){if(annote.index===i++){return n;}}}else{return root;}}};}());Polymer.Path={root:function(path){var dotIndex=path.indexOf('.');if(dotIndex===-1){return path;}
3687return path.slice(0,dotIndex);},isDeep:function(path){return path.indexOf('.')!==-1;},isAncestor:function(base,path){return base.indexOf(path+'.')===0;},isDescendant:function(base,path){return path.indexOf(base+'.')===0;},translate:function(base,newBase,path){return newBase+path.slice(base.length);},matches:function(base,wildcard,path){return base===path||this.isAncestor(base,path)||Boolean(wildcard)&&this.isDescendant(base,path);}};Polymer.Base._addFeature({_prepAnnotations:function(){if(!this._template){this._notes=[];}else{var self=this;Polymer.Annotations.prepElement=function(element){self._prepElement(element);};if(this._template._content&&this._template._content._notes){this._notes=this._template._content._notes;}else{this._notes=Polymer.Annotations.parseAnnotations(this._template);this._processAnnotations(this._notes);}
3688Polymer.Annotations.prepElement=null;}},_processAnnotations:function(notes){for(var i=0;i<notes.length;i++){var note=notes[i];for(var j=0;j<note.bindings.length;j++){var b=note.bindings[j];for(var k=0;k<b.parts.length;k++){var p=b.parts[k];if(!p.literal){var signature=this._parseMethod(p.value);if(signature){p.signature=signature;}else{p.model=Polymer.Path.root(p.value);}}}}
3689if(note.templateContent){this._processAnnotations(note.templateContent._notes);var pp=note.templateContent._parentProps=this._discoverTemplateParentProps(note.templateContent._notes);var bindings=[];for(var prop in pp){var name='_parent_'+prop;bindings.push({index:note.index,kind:'property',name:name,propertyName:name,parts:[{mode:'{',model:prop,value:prop}]});}
3690note.bindings=note.bindings.concat(bindings);}}},_discoverTemplateParentProps:function(notes){var pp={};for(var i=0,n;i<notes.length&&(n=notes[i]);i++){for(var j=0,b$=n.bindings,b;j<b$.length&&(b=b$[j]);j++){for(var k=0,p$=b.parts,p;k<p$.length&&(p=p$[k]);k++){if(p.signature){var args=p.signature.args;for(var kk=0;kk<args.length;kk++){var model=args[kk].model;if(model){pp[model]=true;}}
3691if(p.signature.dynamicFn){pp[p.signature.method]=true;}}else{if(p.model){pp[p.model]=true;}}}}
3692if(n.templateContent){var tpp=n.templateContent._parentProps;Polymer.Base.mixin(pp,tpp);}}
3693return pp;},_prepElement:function(element){Polymer.ResolveUrl.resolveAttrs(element,this._template.ownerDocument);},_findAnnotatedNode:Polymer.Annotations.findAnnotatedNode,_marshalAnnotationReferences:function(){if(this._template){this._marshalIdNodes();this._marshalAnnotatedNodes();this._marshalAnnotatedListeners();}},_configureAnnotationReferences:function(){var notes=this._notes;var nodes=this._nodes;for(var i=0;i<notes.length;i++){var note=notes[i];var node=nodes[i];this._configureTemplateContent(note,node);this._configureCompoundBindings(note,node);}},_configureTemplateContent:function(note,node){if(note.templateContent){node._content=note.templateContent;}},_configureCompoundBindings:function(note,node){var bindings=note.bindings;for(var i=0;i<bindings.length;i++){var binding=bindings[i];if(binding.isCompound){var storage=node.__compoundStorage__||(node.__compoundStorage__={});var parts=binding.parts;var literals=new Array(parts.length);for(var j=0;j<parts.length;j++){literals[j]=parts[j].literal;}
3694var name=binding.name;storage[name]=literals;if(binding.literal&&binding.kind=='property'){if(node._configValue){node._configValue(name,binding.literal);}else{node[name]=binding.literal;}}}}},_marshalIdNodes:function(){this.$={};for(var i=0,l=this._notes.length,a;i<l&&(a=this._notes[i]);i++){if(a.id){this.$[a.id]=this._findAnnotatedNode(this.root,a);}}},_marshalAnnotatedNodes:function(){if(this._notes&&this._notes.length){var r=new Array(this._notes.length);for(var i=0;i<this._notes.length;i++){r[i]=this._findAnnotatedNode(this.root,this._notes[i]);}
3695this._nodes=r;}},_marshalAnnotatedListeners:function(){for(var i=0,l=this._notes.length,a;i<l&&(a=this._notes[i]);i++){if(a.events&&a.events.length){var node=this._findAnnotatedNode(this.root,a);for(var j=0,e$=a.events,e;j<e$.length&&(e=e$[j]);j++){this.listen(node,e.name,e.value);}}}}});Polymer.Base._addFeature({listeners:{},_listenListeners:function(listeners){var node,name,eventName;for(eventName in listeners){if(eventName.indexOf('.')<0){node=this;name=eventName;}else{name=eventName.split('.');node=this.$[name[0]];name=name[1];}
3696this.listen(node,name,listeners[eventName]);}},listen:function(node,eventName,methodName){var handler=this._recallEventHandler(this,eventName,node,methodName);if(!handler){handler=this._createEventHandler(node,eventName,methodName);}
3697if(handler._listening){return;}
3698this._listen(node,eventName,handler);handler._listening=true;},_boundListenerKey:function(eventName,methodName){return eventName+':'+methodName;},_recordEventHandler:function(host,eventName,target,methodName,handler){var hbl=host.__boundListeners;if(!hbl){hbl=host.__boundListeners=new WeakMap();}
3699var bl=hbl.get(target);if(!bl){bl={};if(!Polymer.Settings.isIE||target!=window){hbl.set(target,bl);}}
3700var key=this._boundListenerKey(eventName,methodName);bl[key]=handler;},_recallEventHandler:function(host,eventName,target,methodName){var hbl=host.__boundListeners;if(!hbl){return;}
3701var bl=hbl.get(target);if(!bl){return;}
3702var key=this._boundListenerKey(eventName,methodName);return bl[key];},_createEventHandler:function(node,eventName,methodName){var host=this;var handler=function(e){if(host[methodName]){host[methodName](e,e.detail);}else{host._warn(host._logf('_createEventHandler','listener method `'+methodName+'` not defined'));}};handler._listening=false;this._recordEventHandler(host,eventName,node,methodName,handler);return handler;},unlisten:function(node,eventName,methodName){var handler=this._recallEventHandler(this,eventName,node,methodName);if(handler){this._unlisten(node,eventName,handler);handler._listening=false;}},_listen:function(node,eventName,handler){node.addEventListener(eventName,handler);},_unlisten:function(node,eventName,handler){node.removeEventListener(eventName,handler);}});(function(){'use strict';var wrap=Polymer.DomApi.wrap;var HAS_NATIVE_TA=typeof document.head.style.touchAction==='string';var GESTURE_KEY='__polymerGestures';var HANDLED_OBJ='__polymerGesturesHandled';var TOUCH_ACTION='__polymerGesturesTouchAction';var TAP_DISTANCE=25;var TRACK_DISTANCE=5;var TRACK_LENGTH=2;var MOUSE_TIMEOUT=2500;var MOUSE_EVENTS=['mousedown','mousemove','mouseup','click'];var MOUSE_WHICH_TO_BUTTONS=[0,1,4,2];var MOUSE_HAS_BUTTONS=function(){try{return new MouseEvent('test',{buttons:1}).buttons===1;}catch(e){return false;}}();function isMouseEvent(name){return MOUSE_EVENTS.indexOf(name)>-1;}
3703var SUPPORTS_PASSIVE=false;(function(){try{var opts=Object.defineProperty({},'passive',{get:function(){SUPPORTS_PASSIVE=true;}});window.addEventListener('test',null,opts);window.removeEventListener('test',null,opts);}catch(e){}}());function PASSIVE_TOUCH(){if(HAS_NATIVE_TA&&SUPPORTS_PASSIVE&&Polymer.Settings.passiveTouchGestures){return{passive:true};}}
3704var IS_TOUCH_ONLY=navigator.userAgent.match(/iP(?:[oa]d|hone)|Android/);var mouseCanceller=function(mouseEvent){var sc=mouseEvent.sourceCapabilities;if(sc&&!sc.firesTouchEvents){return;}
3705mouseEvent[HANDLED_OBJ]={skip:true};if(mouseEvent.type==='click'){var path=Polymer.dom(mouseEvent).path;for(var i=0;i<path.length;i++){if(path[i]===POINTERSTATE.mouse.target){return;}}
3706mouseEvent.preventDefault();mouseEvent.stopPropagation();}};function setupTeardownMouseCanceller(setup){var events=IS_TOUCH_ONLY?['click']:MOUSE_EVENTS;for(var i=0,en;i<events.length;i++){en=events[i];if(setup){document.addEventListener(en,mouseCanceller,true);}else{document.removeEventListener(en,mouseCanceller,true);}}}
3707function ignoreMouse(ev){if(!POINTERSTATE.mouse.mouseIgnoreJob){setupTeardownMouseCanceller(true);}
3708var unset=function(){setupTeardownMouseCanceller();POINTERSTATE.mouse.target=null;POINTERSTATE.mouse.mouseIgnoreJob=null;};POINTERSTATE.mouse.target=Polymer.dom(ev).rootTarget;POINTERSTATE.mouse.mouseIgnoreJob=Polymer.Debounce(POINTERSTATE.mouse.mouseIgnoreJob,unset,MOUSE_TIMEOUT);}
3709function hasLeftMouseButton(ev){var type=ev.type;if(!isMouseEvent(type)){return false;}
3710if(type==='mousemove'){var buttons=ev.buttons===undefined?1:ev.buttons;if(ev instanceof window.MouseEvent&&!MOUSE_HAS_BUTTONS){buttons=MOUSE_WHICH_TO_BUTTONS[ev.which]||0;}
3711return Boolean(buttons&1);}else{var button=ev.button===undefined?0:ev.button;return button===0;}}
3712function isSyntheticClick(ev){if(ev.type==='click'){if(ev.detail===0){return true;}
3713var t=Gestures.findOriginalTarget(ev);var bcr=t.getBoundingClientRect();var x=ev.pageX,y=ev.pageY;return!(x>=bcr.left&&x<=bcr.right&&(y>=bcr.top&&y<=bcr.bottom));}
3714return false;}
3715var POINTERSTATE={mouse:{target:null,mouseIgnoreJob:null},touch:{x:0,y:0,id:-1,scrollDecided:false}};function firstTouchAction(ev){var path=Polymer.dom(ev).path;var ta='auto';for(var i=0,n;i<path.length;i++){n=path[i];if(n[TOUCH_ACTION]){ta=n[TOUCH_ACTION];break;}}
3716return ta;}
3717function trackDocument(stateObj,movefn,upfn){stateObj.movefn=movefn;stateObj.upfn=upfn;document.addEventListener('mousemove',movefn);document.addEventListener('mouseup',upfn);}
3718function untrackDocument(stateObj){document.removeEventListener('mousemove',stateObj.movefn);document.removeEventListener('mouseup',stateObj.upfn);stateObj.movefn=null;stateObj.upfn=null;}
3719document.addEventListener('touchend',ignoreMouse,SUPPORTS_PASSIVE?{passive:true}:false);var Gestures={gestures:{},recognizers:[],deepTargetFind:function(x,y){var node=document.elementFromPoint(x,y);var next=node;while(next&&next.shadowRoot){next=next.shadowRoot.elementFromPoint(x,y);if(next){node=next;}}
3720return node;},findOriginalTarget:function(ev){if(ev.path){return ev.path[0];}
3721return ev.target;},handleNative:function(ev){var handled;var type=ev.type;var node=wrap(ev.currentTarget);var gobj=node[GESTURE_KEY];if(!gobj){return;}
3722var gs=gobj[type];if(!gs){return;}
3723if(!ev[HANDLED_OBJ]){ev[HANDLED_OBJ]={};if(type.slice(0,5)==='touch'){var t=ev.changedTouches[0];if(type==='touchstart'){if(ev.touches.length===1){POINTERSTATE.touch.id=t.identifier;}}
3724if(POINTERSTATE.touch.id!==t.identifier){return;}
3725if(!HAS_NATIVE_TA){if(type==='touchstart'||type==='touchmove'){Gestures.handleTouchAction(ev);}}}}
3726handled=ev[HANDLED_OBJ];if(handled.skip){return;}
3727var recognizers=Gestures.recognizers;for(var i=0,r;i<recognizers.length;i++){r=recognizers[i];if(gs[r.name]&&!handled[r.name]){if(r.flow&&r.flow.start.indexOf(ev.type)>-1&&r.reset){r.reset();}}}
3728for(i=0,r;i<recognizers.length;i++){r=recognizers[i];if(gs[r.name]&&!handled[r.name]){handled[r.name]=true;r[type](ev);}}},handleTouchAction:function(ev){var t=ev.changedTouches[0];var type=ev.type;if(type==='touchstart'){POINTERSTATE.touch.x=t.clientX;POINTERSTATE.touch.y=t.clientY;POINTERSTATE.touch.scrollDecided=false;}else if(type==='touchmove'){if(POINTERSTATE.touch.scrollDecided){return;}
3729POINTERSTATE.touch.scrollDecided=true;var ta=firstTouchAction(ev);var prevent=false;var dx=Math.abs(POINTERSTATE.touch.x-t.clientX);var dy=Math.abs(POINTERSTATE.touch.y-t.clientY);if(!ev.cancelable){}else if(ta==='none'){prevent=true;}else if(ta==='pan-x'){prevent=dy>dx;}else if(ta==='pan-y'){prevent=dx>dy;}
3730if(prevent){ev.preventDefault();}else{Gestures.prevent('track');}}},add:function(node,evType,handler){node=wrap(node);var recognizer=this.gestures[evType];var deps=recognizer.deps;var name=recognizer.name;var gobj=node[GESTURE_KEY];if(!gobj){node[GESTURE_KEY]=gobj={};}
3731for(var i=0,dep,gd;i<deps.length;i++){dep=deps[i];if(IS_TOUCH_ONLY&&isMouseEvent(dep)&&dep!=='click'){continue;}
3732gd=gobj[dep];if(!gd){gobj[dep]=gd={_count:0};}
3733if(gd._count===0){var options=!isMouseEvent(dep)&&PASSIVE_TOUCH();node.addEventListener(dep,this.handleNative,options);}
3734gd[name]=(gd[name]||0)+1;gd._count=(gd._count||0)+1;}
3735node.addEventListener(evType,handler);if(recognizer.touchAction){this.setTouchAction(node,recognizer.touchAction);}},remove:function(node,evType,handler){node=wrap(node);var recognizer=this.gestures[evType];var deps=recognizer.deps;var name=recognizer.name;var gobj=node[GESTURE_KEY];if(gobj){for(var i=0,dep,gd;i<deps.length;i++){dep=deps[i];gd=gobj[dep];if(gd&&gd[name]){gd[name]=(gd[name]||1)-1;gd._count=(gd._count||1)-1;if(gd._count===0){var options=!isMouseEvent(dep)&&PASSIVE_TOUCH();node.removeEventListener(dep,this.handleNative,options);}}}}
3736node.removeEventListener(evType,handler);},register:function(recog){this.recognizers.push(recog);for(var i=0;i<recog.emits.length;i++){this.gestures[recog.emits[i]]=recog;}},findRecognizerByEvent:function(evName){for(var i=0,r;i<this.recognizers.length;i++){r=this.recognizers[i];for(var j=0,n;j<r.emits.length;j++){n=r.emits[j];if(n===evName){return r;}}}
3737return null;},setTouchAction:function(node,value){if(HAS_NATIVE_TA){node.style.touchAction=value;}
3738node[TOUCH_ACTION]=value;},fire:function(target,type,detail){var ev=Polymer.Base.fire(type,detail,{node:target,bubbles:true,cancelable:true});if(ev.defaultPrevented){var preventer=detail.preventer||detail.sourceEvent;if(preventer&&preventer.preventDefault){preventer.preventDefault();}}},prevent:function(evName){var recognizer=this.findRecognizerByEvent(evName);if(recognizer.info){recognizer.info.prevent=true;}},resetMouseCanceller:function(){if(POINTERSTATE.mouse.mouseIgnoreJob){POINTERSTATE.mouse.mouseIgnoreJob.complete();}}};Gestures.register({name:'downup',deps:['mousedown','touchstart','touchend'],flow:{start:['mousedown','touchstart'],end:['mouseup','touchend']},emits:['down','up'],info:{movefn:null,upfn:null},reset:function(){untrackDocument(this.info);},mousedown:function(e){if(!hasLeftMouseButton(e)){return;}
3739var t=Gestures.findOriginalTarget(e);var self=this;var movefn=function movefn(e){if(!hasLeftMouseButton(e)){self.fire('up',t,e);untrackDocument(self.info);}};var upfn=function upfn(e){if(hasLeftMouseButton(e)){self.fire('up',t,e);}
3740untrackDocument(self.info);};trackDocument(this.info,movefn,upfn);this.fire('down',t,e);},touchstart:function(e){this.fire('down',Gestures.findOriginalTarget(e),e.changedTouches[0],e);},touchend:function(e){this.fire('up',Gestures.findOriginalTarget(e),e.changedTouches[0],e);},fire:function(type,target,event,preventer){Gestures.fire(target,type,{x:event.clientX,y:event.clientY,sourceEvent:event,preventer:preventer,prevent:function(e){return Gestures.prevent(e);}});}});Gestures.register({name:'track',touchAction:'none',deps:['mousedown','touchstart','touchmove','touchend'],flow:{start:['mousedown','touchstart'],end:['mouseup','touchend']},emits:['track'],info:{x:0,y:0,state:'start',started:false,moves:[],addMove:function(move){if(this.moves.length>TRACK_LENGTH){this.moves.shift();}
3741this.moves.push(move);},movefn:null,upfn:null,prevent:false},reset:function(){this.info.state='start';this.info.started=false;this.info.moves=[];this.info.x=0;this.info.y=0;this.info.prevent=false;untrackDocument(this.info);},hasMovedEnough:function(x,y){if(this.info.prevent){return false;}
3742if(this.info.started){return true;}
3743var dx=Math.abs(this.info.x-x);var dy=Math.abs(this.info.y-y);return dx>=TRACK_DISTANCE||dy>=TRACK_DISTANCE;},mousedown:function(e){if(!hasLeftMouseButton(e)){return;}
3744var t=Gestures.findOriginalTarget(e);var self=this;var movefn=function movefn(e){var x=e.clientX,y=e.clientY;if(self.hasMovedEnough(x,y)){self.info.state=self.info.started?e.type==='mouseup'?'end':'track':'start';if(self.info.state==='start'){Gestures.prevent('tap');}
3745self.info.addMove({x:x,y:y});if(!hasLeftMouseButton(e)){self.info.state='end';untrackDocument(self.info);}
3746self.fire(t,e);self.info.started=true;}};var upfn=function upfn(e){if(self.info.started){movefn(e);}
3747untrackDocument(self.info);};trackDocument(this.info,movefn,upfn);this.info.x=e.clientX;this.info.y=e.clientY;},touchstart:function(e){var ct=e.changedTouches[0];this.info.x=ct.clientX;this.info.y=ct.clientY;},touchmove:function(e){var t=Gestures.findOriginalTarget(e);var ct=e.changedTouches[0];var x=ct.clientX,y=ct.clientY;if(this.hasMovedEnough(x,y)){if(this.info.state==='start'){Gestures.prevent('tap');}
3748this.info.addMove({x:x,y:y});this.fire(t,ct);this.info.state='track';this.info.started=true;}},touchend:function(e){var t=Gestures.findOriginalTarget(e);var ct=e.changedTouches[0];if(this.info.started){this.info.state='end';this.info.addMove({x:ct.clientX,y:ct.clientY});this.fire(t,ct,e);}},fire:function(target,touch,preventer){var secondlast=this.info.moves[this.info.moves.length-2];var lastmove=this.info.moves[this.info.moves.length-1];var dx=lastmove.x-this.info.x;var dy=lastmove.y-this.info.y;var ddx,ddy=0;if(secondlast){ddx=lastmove.x-secondlast.x;ddy=lastmove.y-secondlast.y;}
3749return Gestures.fire(target,'track',{state:this.info.state,x:touch.clientX,y:touch.clientY,dx:dx,dy:dy,ddx:ddx,ddy:ddy,sourceEvent:touch,preventer:preventer,hover:function(){return Gestures.deepTargetFind(touch.clientX,touch.clientY);}});}});Gestures.register({name:'tap',deps:['mousedown','click','touchstart','touchend'],flow:{start:['mousedown','touchstart'],end:['click','touchend']},emits:['tap'],info:{x:NaN,y:NaN,prevent:false},reset:function(){this.info.x=NaN;this.info.y=NaN;this.info.prevent=false;},save:function(e){this.info.x=e.clientX;this.info.y=e.clientY;},mousedown:function(e){if(hasLeftMouseButton(e)){this.save(e);}},click:function(e){if(hasLeftMouseButton(e)){this.forward(e);}},touchstart:function(e){this.save(e.changedTouches[0],e);},touchend:function(e){this.forward(e.changedTouches[0],e);},forward:function(e,preventer){var dx=Math.abs(e.clientX-this.info.x);var dy=Math.abs(e.clientY-this.info.y);var t=Gestures.findOriginalTarget(e);if(isNaN(dx)||isNaN(dy)||dx<=TAP_DISTANCE&&dy<=TAP_DISTANCE||isSyntheticClick(e)){if(!this.info.prevent){Gestures.fire(t,'tap',{x:e.clientX,y:e.clientY,sourceEvent:e,preventer:preventer});}}}});var DIRECTION_MAP={x:'pan-x',y:'pan-y',none:'none',all:'auto'};Polymer.Base._addFeature({_setupGestures:function(){this.__polymerGestures=null;},_listen:function(node,eventName,handler){if(Gestures.gestures[eventName]){Gestures.add(node,eventName,handler);}else{node.addEventListener(eventName,handler);}},_unlisten:function(node,eventName,handler){if(Gestures.gestures[eventName]){Gestures.remove(node,eventName,handler);}else{node.removeEventListener(eventName,handler);}},setScrollDirection:function(direction,node){node=node||this;Gestures.setTouchAction(node,DIRECTION_MAP[direction]||'auto');}});Polymer.Gestures=Gestures;}());(function(){'use strict';Polymer.Base._addFeature({$$:function(slctr){return Polymer.dom(this.root).querySelector(slctr);},toggleClass:function(name,bool,node){node=node||this;if(arguments.length==1){bool=!node.classList.contains(name);}
3750if(bool){Polymer.dom(node).classList.add(name);}else{Polymer.dom(node).classList.remove(name);}},toggleAttribute:function(name,bool,node){node=node||this;if(arguments.length==1){bool=!node.hasAttribute(name);}
3751if(bool){Polymer.dom(node).setAttribute(name,'');}else{Polymer.dom(node).removeAttribute(name);}},classFollows:function(name,toElement,fromElement){if(fromElement){Polymer.dom(fromElement).classList.remove(name);}
3752if(toElement){Polymer.dom(toElement).classList.add(name);}},attributeFollows:function(name,toElement,fromElement){if(fromElement){Polymer.dom(fromElement).removeAttribute(name);}
3753if(toElement){Polymer.dom(toElement).setAttribute(name,'');}},getEffectiveChildNodes:function(){return Polymer.dom(this).getEffectiveChildNodes();},getEffectiveChildren:function(){var list=Polymer.dom(this).getEffectiveChildNodes();return list.filter(function(n){return n.nodeType===Node.ELEMENT_NODE;});},getEffectiveTextContent:function(){var cn=this.getEffectiveChildNodes();var tc=[];for(var i=0,c;c=cn[i];i++){if(c.nodeType!==Node.COMMENT_NODE){tc.push(Polymer.dom(c).textContent);}}
3754return tc.join('');},queryEffectiveChildren:function(slctr){var e$=Polymer.dom(this).queryDistributedElements(slctr);return e$&&e$[0];},queryAllEffectiveChildren:function(slctr){return Polymer.dom(this).queryDistributedElements(slctr);},getContentChildNodes:function(slctr){var content=Polymer.dom(this.root).querySelector(slctr||'content');return content?Polymer.dom(content).getDistributedNodes():[];},getContentChildren:function(slctr){return this.getContentChildNodes(slctr).filter(function(n){return n.nodeType===Node.ELEMENT_NODE;});},fire:function(type,detail,options){options=options||Polymer.nob;var node=options.node||this;detail=detail===null||detail===undefined?{}:detail;var bubbles=options.bubbles===undefined?true:options.bubbles;var cancelable=Boolean(options.cancelable);var useCache=options._useCache;var event=this._getEvent(type,bubbles,cancelable,useCache);event.detail=detail;if(useCache){this.__eventCache[type]=null;}
3755node.dispatchEvent(event);if(useCache){this.__eventCache[type]=event;}
3756return event;},__eventCache:{},_getEvent:function(type,bubbles,cancelable,useCache){var event=useCache&&this.__eventCache[type];if(!event||(event.bubbles!=bubbles||event.cancelable!=cancelable)){event=new Event(type,{bubbles:Boolean(bubbles),cancelable:cancelable});}
3757return event;},async:function(callback,waitTime){var self=this;return Polymer.Async.run(function(){callback.call(self);},waitTime);},cancelAsync:function(handle){Polymer.Async.cancel(handle);},arrayDelete:function(path,item){var index;if(Array.isArray(path)){index=path.indexOf(item);if(index>=0){return path.splice(index,1);}}else{var arr=this._get(path);index=arr.indexOf(item);if(index>=0){return this.splice(path,index,1);}}},transform:function(transform,node){node=node||this;node.style.webkitTransform=transform;node.style.transform=transform;},translate3d:function(x,y,z,node){node=node||this;this.transform('translate3d('+x+','+y+','+z+')',node);},importHref:function(href,onload,onerror,optAsync){var link=document.createElement('link');link.rel='import';link.href=href;var list=Polymer.Base.importHref.imported=Polymer.Base.importHref.imported||{};var cached=list[link.href];var imprt=cached||link;var self=this;var loadListener=function(e){e.target.__firedLoad=true;e.target.removeEventListener('load',loadListener);e.target.removeEventListener('error',errorListener);return onload.call(self,e);};var errorListener=function(e){e.target.__firedError=true;e.target.removeEventListener('load',loadListener);e.target.removeEventListener('error',errorListener);return onerror.call(self,e);};if(onload){imprt.addEventListener('load',loadListener);}
3758if(onerror){imprt.addEventListener('error',errorListener);}
3759if(cached){if(cached.__firedLoad){cached.dispatchEvent(new Event('load'));}
3760if(cached.__firedError){cached.dispatchEvent(new Event('error'));}}else{list[link.href]=link;optAsync=Boolean(optAsync);if(optAsync){link.setAttribute('async','');}
3761document.head.appendChild(link);}
3762return imprt;},create:function(tag,props){var elt=document.createElement(tag);if(props){for(var n in props){elt[n]=props[n];}}
3763return elt;},isLightDescendant:function(node){return this!==node&&this.contains(node)&&Polymer.dom(this).getOwnerRoot()===Polymer.dom(node).getOwnerRoot();},isLocalDescendant:function(node){return this.root===Polymer.dom(node).getOwnerRoot();}});if(!Polymer.Settings.useNativeCustomElements){var importHref=Polymer.Base.importHref;Polymer.Base.importHref=function(href,onload,onerror,optAsync){CustomElements.ready=false;var loadFn=function(e){CustomElements.upgradeDocumentTree(document);CustomElements.ready=true;if(onload){return onload.call(this,e);}};return importHref.call(this,href,loadFn,onerror,optAsync);};}}());Polymer.Bind={prepareModel:function(model){Polymer.Base.mixin(model,this._modelApi);},_modelApi:{_notifyChange:function(source,event,value){value=value===undefined?this[source]:value;event=event||Polymer.CaseMap.camelToDashCase(source)+'-changed';this.fire(event,{value:value},{bubbles:false,cancelable:false,_useCache:Polymer.Settings.eventDataCache||!Polymer.Settings.isIE});},_propertySetter:function(property,value,effects,fromAbove){var old=this.__data__[property];if(old!==value&&(old===old||value===value)){this.__data__[property]=value;if(typeof value=='object'){this._clearPath(property);}
3764if(this._propertyChanged){this._propertyChanged(property,value,old);}
3765if(effects){this._effectEffects(property,value,effects,old,fromAbove);}}
3766return old;},__setProperty:function(property,value,quiet,node){node=node||this;var effects=node._propertyEffects&&node._propertyEffects[property];if(effects){node._propertySetter(property,value,effects,quiet);}else if(node[property]!==value){node[property]=value;}},_effectEffects:function(property,value,effects,old,fromAbove){for(var i=0,l=effects.length,fx;i<l&&(fx=effects[i]);i++){fx.fn.call(this,property,this[property],fx.effect,old,fromAbove);}},_clearPath:function(path){for(var prop in this.__data__){if(Polymer.Path.isDescendant(path,prop)){this.__data__[prop]=undefined;}}}},ensurePropertyEffects:function(model,property){if(!model._propertyEffects){model._propertyEffects={};}
3767var fx=model._propertyEffects[property];if(!fx){fx=model._propertyEffects[property]=[];}
3768return fx;},addPropertyEffect:function(model,property,kind,effect){var fx=this.ensurePropertyEffects(model,property);var propEffect={kind:kind,effect:effect,fn:Polymer.Bind['_'+kind+'Effect']};fx.push(propEffect);return propEffect;},createBindings:function(model){var fx$=model._propertyEffects;if(fx$){for(var n in fx$){var fx=fx$[n];fx.sort(this._sortPropertyEffects);this._createAccessors(model,n,fx);}}},_sortPropertyEffects:function(){var EFFECT_ORDER={'compute':0,'annotation':1,'annotatedComputation':2,'reflect':3,'notify':4,'observer':5,'complexObserver':6,'function':7};return function(a,b){return EFFECT_ORDER[a.kind]-EFFECT_ORDER[b.kind];};}(),_createAccessors:function(model,property,effects){var defun={get:function(){return this.__data__[property];}};var setter=function(value){this._propertySetter(property,value,effects);};var info=model.getPropertyInfo&&model.getPropertyInfo(property);if(info&&info.readOnly){if(!info.computed){model['_set'+this.upper(property)]=setter;}}else{defun.set=setter;}
3769Object.defineProperty(model,property,defun);},upper:function(name){return name[0].toUpperCase()+name.substring(1);},_addAnnotatedListener:function(model,index,property,path,event,negated){if(!model._bindListeners){model._bindListeners=[];}
3770var fn=this._notedListenerFactory(property,path,Polymer.Path.isDeep(path),negated);var eventName=event||Polymer.CaseMap.camelToDashCase(property)+'-changed';model._bindListeners.push({index:index,property:property,path:path,changedFn:fn,event:eventName});},_isEventBogus:function(e,target){return e.path&&e.path[0]!==target;},_notedListenerFactory:function(property,path,isStructured,negated){return function(target,value,targetPath){if(targetPath){var newPath=Polymer.Path.translate(property,path,targetPath);this._notifyPath(newPath,value);}else{value=target[property];if(negated){value=!value;}
3771if(!isStructured){this[path]=value;}else{if(this.__data__[path]!=value){this.set(path,value);}}}};},prepareInstance:function(inst){inst.__data__=Object.create(null);},setupBindListeners:function(inst){var b$=inst._bindListeners;for(var i=0,l=b$.length,info;i<l&&(info=b$[i]);i++){var node=inst._nodes[info.index];this._addNotifyListener(node,inst,info.event,info.changedFn);}},_addNotifyListener:function(element,context,event,changedFn){element.addEventListener(event,function(e){return context._notifyListener(changedFn,e);});}};Polymer.Base.mixin(Polymer.Bind,{_shouldAddListener:function(effect){return effect.name&&effect.kind!='attribute'&&effect.kind!='text'&&!effect.isCompound&&effect.parts[0].mode==='{';},_annotationEffect:function(source,value,effect){if(source!=effect.value){value=this._get(effect.value);this.__data__[effect.value]=value;}
3772this._applyEffectValue(effect,value);},_reflectEffect:function(source,value,effect){this.reflectPropertyToAttribute(source,effect.attribute,value);},_notifyEffect:function(source,value,effect,old,fromAbove){if(!fromAbove){this._notifyChange(source,effect.event,value);}},_functionEffect:function(source,value,fn,old,fromAbove){fn.call(this,source,value,old,fromAbove);},_observerEffect:function(source,value,effect,old){var fn=this[effect.method];if(fn){fn.call(this,value,old);}else{this._warn(this._logf('_observerEffect','observer method `'+effect.method+'` not defined'));}},_complexObserverEffect:function(source,value,effect){var fn=this[effect.method];if(fn){var args=Polymer.Bind._marshalArgs(this.__data__,effect,source,value);if(args){fn.apply(this,args);}}else if(effect.dynamicFn){}else{this._warn(this._logf('_complexObserverEffect','observer method `'+effect.method+'` not defined'));}},_computeEffect:function(source,value,effect){var fn=this[effect.method];if(fn){var args=Polymer.Bind._marshalArgs(this.__data__,effect,source,value);if(args){var computedvalue=fn.apply(this,args);this.__setProperty(effect.name,computedvalue);}}else if(effect.dynamicFn){}else{this._warn(this._logf('_computeEffect','compute method `'+effect.method+'` not defined'));}},_annotatedComputationEffect:function(source,value,effect){var computedHost=this._rootDataHost||this;var fn=computedHost[effect.method];if(fn){var args=Polymer.Bind._marshalArgs(this.__data__,effect,source,value);if(args){var computedvalue=fn.apply(computedHost,args);this._applyEffectValue(effect,computedvalue);}}else if(effect.dynamicFn){}else{computedHost._warn(computedHost._logf('_annotatedComputationEffect','compute method `'+effect.method+'` not defined'));}},_marshalArgs:function(model,effect,path,value){var values=[];var args=effect.args;var bailoutEarly=args.length>1||effect.dynamicFn;for(var i=0,l=args.length;i<l;i++){var arg=args[i];var name=arg.name;var v;if(arg.literal){v=arg.value;}else if(path===name){v=value;}else{v=model[name];if(v===undefined&&arg.structured){v=Polymer.Base._get(name,model);}}
3773if(bailoutEarly&&v===undefined){return;}
3774if(arg.wildcard){var matches=Polymer.Path.isAncestor(path,name);values[i]={path:matches?path:name,value:matches?value:v,base:v};}else{values[i]=v;}}
3775return values;}});Polymer.Base._addFeature({_addPropertyEffect:function(property,kind,effect){var prop=Polymer.Bind.addPropertyEffect(this,property,kind,effect);prop.pathFn=this['_'+prop.kind+'PathEffect'];},_prepEffects:function(){Polymer.Bind.prepareModel(this);this._addAnnotationEffects(this._notes);},_prepBindings:function(){Polymer.Bind.createBindings(this);},_addPropertyEffects:function(properties){if(properties){for(var p in properties){var prop=properties[p];if(prop.observer){this._addObserverEffect(p,prop.observer);}
3776if(prop.computed){prop.readOnly=true;this._addComputedEffect(p,prop.computed);}
3777if(prop.notify){this._addPropertyEffect(p,'notify',{event:Polymer.CaseMap.camelToDashCase(p)+'-changed'});}
3778if(prop.reflectToAttribute){var attr=Polymer.CaseMap.camelToDashCase(p);if(attr[0]==='-'){this._warn(this._logf('_addPropertyEffects','Property '+p+' cannot be reflected to attribute '+attr+' because "-" is not a valid starting attribute name. Use a lowercase first letter for the property instead.'));}else{this._addPropertyEffect(p,'reflect',{attribute:attr});}}
3779if(prop.readOnly){Polymer.Bind.ensurePropertyEffects(this,p);}}}},_addComputedEffect:function(name,expression){var sig=this._parseMethod(expression);var dynamicFn=sig.dynamicFn;for(var i=0,arg;i<sig.args.length&&(arg=sig.args[i]);i++){this._addPropertyEffect(arg.model,'compute',{method:sig.method,args:sig.args,trigger:arg,name:name,dynamicFn:dynamicFn});}
3780if(dynamicFn){this._addPropertyEffect(sig.method,'compute',{method:sig.method,args:sig.args,trigger:null,name:name,dynamicFn:dynamicFn});}},_addObserverEffect:function(property,observer){this._addPropertyEffect(property,'observer',{method:observer,property:property});},_addComplexObserverEffects:function(observers){if(observers){for(var i=0,o;i<observers.length&&(o=observers[i]);i++){this._addComplexObserverEffect(o);}}},_addComplexObserverEffect:function(observer){var sig=this._parseMethod(observer);if(!sig){throw new Error('Malformed observer expression \''+observer+'\'');}
3781var dynamicFn=sig.dynamicFn;for(var i=0,arg;i<sig.args.length&&(arg=sig.args[i]);i++){this._addPropertyEffect(arg.model,'complexObserver',{method:sig.method,args:sig.args,trigger:arg,dynamicFn:dynamicFn});}
3782if(dynamicFn){this._addPropertyEffect(sig.method,'complexObserver',{method:sig.method,args:sig.args,trigger:null,dynamicFn:dynamicFn});}},_addAnnotationEffects:function(notes){for(var i=0,note;i<notes.length&&(note=notes[i]);i++){var b$=note.bindings;for(var j=0,binding;j<b$.length&&(binding=b$[j]);j++){this._addAnnotationEffect(binding,i);}}},_addAnnotationEffect:function(note,index){if(Polymer.Bind._shouldAddListener(note)){Polymer.Bind._addAnnotatedListener(this,index,note.name,note.parts[0].value,note.parts[0].event,note.parts[0].negate);}
3783for(var i=0;i<note.parts.length;i++){var part=note.parts[i];if(part.signature){this._addAnnotatedComputationEffect(note,part,index);}else if(!part.literal){if(note.kind==='attribute'&&note.name[0]==='-'){this._warn(this._logf('_addAnnotationEffect','Cannot set attribute '+note.name+' because "-" is not a valid attribute starting character'));}else{this._addPropertyEffect(part.model,'annotation',{kind:note.kind,index:index,name:note.name,propertyName:note.propertyName,value:part.value,isCompound:note.isCompound,compoundIndex:part.compoundIndex,event:part.event,customEvent:part.customEvent,negate:part.negate});}}}},_addAnnotatedComputationEffect:function(note,part,index){var sig=part.signature;if(sig.static){this.__addAnnotatedComputationEffect('__static__',index,note,part,null);}else{for(var i=0,arg;i<sig.args.length&&(arg=sig.args[i]);i++){if(!arg.literal){this.__addAnnotatedComputationEffect(arg.model,index,note,part,arg);}}
3784if(sig.dynamicFn){this.__addAnnotatedComputationEffect(sig.method,index,note,part,null);}}},__addAnnotatedComputationEffect:function(property,index,note,part,trigger){this._addPropertyEffect(property,'annotatedComputation',{index:index,isCompound:note.isCompound,compoundIndex:part.compoundIndex,kind:note.kind,name:note.name,negate:part.negate,method:part.signature.method,args:part.signature.args,trigger:trigger,dynamicFn:part.signature.dynamicFn});},_parseMethod:function(expression){var m=expression.match(/([^\s]+?)\(([\s\S]*)\)/);if(m){var sig={method:m[1],static:true};if(this.getPropertyInfo(sig.method)!==Polymer.nob){sig.static=false;sig.dynamicFn=true;}
3785if(m[2].trim()){var args=m[2].replace(/\\,/g,'&comma;').split(',');return this._parseArgs(args,sig);}else{sig.args=Polymer.nar;return sig;}}},_parseArgs:function(argList,sig){sig.args=argList.map(function(rawArg){var arg=this._parseArg(rawArg);if(!arg.literal){sig.static=false;}
3786return arg;},this);return sig;},_parseArg:function(rawArg){var arg=rawArg.trim().replace(/&comma;/g,',').replace(/\\(.)/g,'$1');var a={name:arg};var fc=arg[0];if(fc==='-'){fc=arg[1];}
3787if(fc>='0'&&fc<='9'){fc='#';}
3788switch(fc){case'\'':case'"':a.value=arg.slice(1,-1);a.literal=true;break;case'#':a.value=Number(arg);a.literal=true;break;}
3789if(!a.literal){a.model=Polymer.Path.root(arg);a.structured=Polymer.Path.isDeep(arg);if(a.structured){a.wildcard=arg.slice(-2)=='.*';if(a.wildcard){a.name=arg.slice(0,-2);}}}
3790return a;},_marshalInstanceEffects:function(){Polymer.Bind.prepareInstance(this);if(this._bindListeners){Polymer.Bind.setupBindListeners(this);}},_applyEffectValue:function(info,value){var node=this._nodes[info.index];var property=info.name;value=this._computeFinalAnnotationValue(node,property,value,info);if(info.kind=='attribute'){this.serializeValueToAttribute(value,property,node);}else{var pinfo=node._propertyInfo&&node._propertyInfo[property];if(pinfo&&pinfo.readOnly){return;}
3791this.__setProperty(property,value,Polymer.Settings.suppressBindingNotifications,node);}},_computeFinalAnnotationValue:function(node,property,value,info){if(info.negate){value=!value;}
3792if(info.isCompound){var storage=node.__compoundStorage__[property];storage[info.compoundIndex]=value;value=storage.join('');}
3793if(info.kind!=='attribute'){if(property==='className'){value=this._scopeElementClass(node,value);}
3794if(property==='textContent'||node.localName=='input'&&property=='value'){value=value==undefined?'':value;}}
3795return value;},_executeStaticEffects:function(){if(this._propertyEffects&&this._propertyEffects.__static__){this._effectEffects('__static__',null,this._propertyEffects.__static__);}}});(function(){var usePolyfillProto=Polymer.Settings.usePolyfillProto;var avoidInstanceProperties=Boolean(Object.getOwnPropertyDescriptor(document.documentElement,'properties'));Polymer.Base._addFeature({_setupConfigure:function(initialConfig){this._config={};this._handlers=[];this._aboveConfig=null;if(initialConfig){for(var i in initialConfig){if(initialConfig[i]!==undefined){this._config[i]=initialConfig[i];}}}},_marshalAttributes:function(){this._takeAttributesToModel(this._config);},_attributeChangedImpl:function(name){var model=this._clientsReadied?this:this._config;this._setAttributeToProperty(model,name);},_configValue:function(name,value){var info=this._propertyInfo[name];if(!info||!info.readOnly){this._config[name]=value;}},_beforeClientsReady:function(){this._configure();},_configure:function(){this._configureAnnotationReferences();this._configureInstanceProperties();this._aboveConfig=this.mixin({},this._config);var config={};for(var i=0;i<this.behaviors.length;i++){this._configureProperties(this.behaviors[i].properties,config);}
3796this._configureProperties(avoidInstanceProperties?this.__proto__.properties:this.properties,config);this.mixin(config,this._aboveConfig);this._config=config;if(this._clients&&this._clients.length){this._distributeConfig(this._config);}},_configureInstanceProperties:function(){for(var i in this._propertyEffects){if(!usePolyfillProto&&this.hasOwnProperty(i)){this._configValue(i,this[i]);delete this[i];}}},_configureProperties:function(properties,config){for(var i in properties){var c=properties[i];if(c.value!==undefined){var value=c.value;if(typeof value=='function'){value=value.call(this,this._config);}
3797config[i]=value;}}},_distributeConfig:function(config){var fx$=this._propertyEffects;if(fx$){for(var p in config){var fx=fx$[p];if(fx){for(var i=0,l=fx.length,x;i<l&&(x=fx[i]);i++){if(x.kind==='annotation'){var node=this._nodes[x.effect.index];var name=x.effect.propertyName;var isAttr=x.effect.kind=='attribute';var hasEffect=node._propertyEffects&&node._propertyEffects[name];if(node._configValue&&(hasEffect||!isAttr)){var value=p===x.effect.value?config[p]:this._get(x.effect.value,config);value=this._computeFinalAnnotationValue(node,name,value,x.effect);if(isAttr){value=node.deserialize(this.serialize(value),node._propertyInfo[name].type);}
3798node._configValue(name,value);}}}}}}},_afterClientsReady:function(){this.importPath=this._importPath;this.rootPath=Polymer.rootPath;this._executeStaticEffects();this._applyConfig(this._config,this._aboveConfig);this._flushHandlers();},_applyConfig:function(config,aboveConfig){for(var n in config){if(this[n]===undefined){this.__setProperty(n,config[n],n in aboveConfig);}}},_notifyListener:function(fn,e){if(!Polymer.Bind._isEventBogus(e,e.target)){var value,path;if(e.detail){value=e.detail.value;path=e.detail.path;}
3799if(!this._clientsReadied){this._queueHandler([fn,e.target,value,path]);}else{return fn.call(this,e.target,value,path);}}},_queueHandler:function(args){this._handlers.push(args);},_flushHandlers:function(){var h$=this._handlers;for(var i=0,l=h$.length,h;i<l&&(h=h$[i]);i++){h[0].call(this,h[1],h[2],h[3]);}
3800this._handlers=[];}});}());(function(){'use strict';var Path=Polymer.Path;Polymer.Base._addFeature({notifyPath:function(path,value,fromAbove){var info={};var v=this._get(path,this,info);if(arguments.length===1){value=v;}
3801if(info.path){this._notifyPath(info.path,value,fromAbove);}},_notifyPath:function(path,value,fromAbove){var old=this._propertySetter(path,value);if(old!==value&&(old===old||value===value)){this._pathEffector(path,value);if(!fromAbove){this._notifyPathUp(path,value);}
3802return true;}},_getPathParts:function(path){if(Array.isArray(path)){var parts=[];for(var i=0;i<path.length;i++){var args=path[i].toString().split('.');for(var j=0;j<args.length;j++){parts.push(args[j]);}}
3803return parts;}else{return path.toString().split('.');}},set:function(path,value,root){var prop=root||this;var parts=this._getPathParts(path);var array;var last=parts[parts.length-1];if(parts.length>1){for(var i=0;i<parts.length-1;i++){var part=parts[i];if(array&&part[0]=='#'){prop=Polymer.Collection.get(array).getItem(part);}else{prop=prop[part];if(array&&parseInt(part,10)==part){parts[i]=Polymer.Collection.get(array).getKey(prop);}}
3804if(!prop){return;}
3805array=Array.isArray(prop)?prop:null;}
3806if(array){var coll=Polymer.Collection.get(array);var old,key;if(last[0]=='#'){key=last;old=coll.getItem(key);last=array.indexOf(old);coll.setItem(key,value);}else if(parseInt(last,10)==last){old=prop[last];key=coll.getKey(old);parts[i]=key;coll.setItem(key,value);}}
3807prop[last]=value;if(!root){this._notifyPath(parts.join('.'),value);}}else{prop[path]=value;}},get:function(path,root){return this._get(path,root);},_get:function(path,root,info){var prop=root||this;var parts=this._getPathParts(path);var array;for(var i=0;i<parts.length;i++){if(!prop){return;}
3808var part=parts[i];if(array&&part[0]=='#'){prop=Polymer.Collection.get(array).getItem(part);}else{prop=prop[part];if(info&&array&&parseInt(part,10)==part){parts[i]=Polymer.Collection.get(array).getKey(prop);}}
3809array=Array.isArray(prop)?prop:null;}
3810if(info){info.path=parts.join('.');}
3811return prop;},_pathEffector:function(path,value){var model=Path.root(path);var fx$=this._propertyEffects&&this._propertyEffects[model];if(fx$){for(var i=0,fx;i<fx$.length&&(fx=fx$[i]);i++){var fxFn=fx.pathFn;if(fxFn){fxFn.call(this,path,value,fx.effect);}}}
3812if(this._boundPaths){this._notifyBoundPaths(path,value);}},_annotationPathEffect:function(path,value,effect){if(Path.matches(effect.value,false,path)){Polymer.Bind._annotationEffect.call(this,path,value,effect);}else if(!effect.negate&&Path.isDescendant(effect.value,path)){var node=this._nodes[effect.index];if(node&&node._notifyPath){var newPath=Path.translate(effect.value,effect.name,path);node._notifyPath(newPath,value,true);}}},_complexObserverPathEffect:function(path,value,effect){if(Path.matches(effect.trigger.name,effect.trigger.wildcard,path)){Polymer.Bind._complexObserverEffect.call(this,path,value,effect);}},_computePathEffect:function(path,value,effect){if(Path.matches(effect.trigger.name,effect.trigger.wildcard,path)){Polymer.Bind._computeEffect.call(this,path,value,effect);}},_annotatedComputationPathEffect:function(path,value,effect){if(Path.matches(effect.trigger.name,effect.trigger.wildcard,path)){Polymer.Bind._annotatedComputationEffect.call(this,path,value,effect);}},linkPaths:function(to,from){this._boundPaths=this._boundPaths||{};if(from){this._boundPaths[to]=from;}else{this.unlinkPaths(to);}},unlinkPaths:function(path){if(this._boundPaths){delete this._boundPaths[path];}},_notifyBoundPaths:function(path,value){for(var a in this._boundPaths){var b=this._boundPaths[a];if(Path.isDescendant(a,path)){this._notifyPath(Path.translate(a,b,path),value);}else if(Path.isDescendant(b,path)){this._notifyPath(Path.translate(b,a,path),value);}}},_notifyPathUp:function(path,value){var rootName=Path.root(path);var dashCaseName=Polymer.CaseMap.camelToDashCase(rootName);var eventName=dashCaseName+this._EVENT_CHANGED;this.fire(eventName,{path:path,value:value},{bubbles:false,_useCache:Polymer.Settings.eventDataCache||!Polymer.Settings.isIE});},_EVENT_CHANGED:'-changed',notifySplices:function(path,splices){var info={};var array=this._get(path,this,info);this._notifySplices(array,info.path,splices);},_notifySplices:function(array,path,splices){var change={keySplices:Polymer.Collection.applySplices(array,splices),indexSplices:splices};var splicesPath=path+'.splices';this._notifyPath(splicesPath,change);this._notifyPath(path+'.length',array.length);this.__data__[splicesPath]={keySplices:null,indexSplices:null};},_notifySplice:function(array,path,index,added,removed){this._notifySplices(array,path,[{index:index,addedCount:added,removed:removed,object:array,type:'splice'}]);},push:function(path){var info={};var array=this._get(path,this,info);var args=Array.prototype.slice.call(arguments,1);var len=array.length;var ret=array.push.apply(array,args);if(args.length){this._notifySplice(array,info.path,len,args.length,[]);}
3813return ret;},pop:function(path){var info={};var array=this._get(path,this,info);var hadLength=Boolean(array.length);var args=Array.prototype.slice.call(arguments,1);var ret=array.pop.apply(array,args);if(hadLength){this._notifySplice(array,info.path,array.length,0,[ret]);}
3814return ret;},splice:function(path,start){var info={};var array=this._get(path,this,info);if(start<0){start=array.length-Math.floor(-start);}else{start=Math.floor(start);}
3815if(!start){start=0;}
3816var args=Array.prototype.slice.call(arguments,1);var ret=array.splice.apply(array,args);var addedCount=Math.max(args.length-2,0);if(addedCount||ret.length){this._notifySplice(array,info.path,start,addedCount,ret);}
3817return ret;},shift:function(path){var info={};var array=this._get(path,this,info);var hadLength=Boolean(array.length);var args=Array.prototype.slice.call(arguments,1);var ret=array.shift.apply(array,args);if(hadLength){this._notifySplice(array,info.path,0,0,[ret]);}
3818return ret;},unshift:function(path){var info={};var array=this._get(path,this,info);var args=Array.prototype.slice.call(arguments,1);var ret=array.unshift.apply(array,args);if(args.length){this._notifySplice(array,info.path,0,args.length,[]);}
3819return ret;},prepareModelNotifyPath:function(model){this.mixin(model,{fire:Polymer.Base.fire,_getEvent:Polymer.Base._getEvent,__eventCache:Polymer.Base.__eventCache,notifyPath:Polymer.Base.notifyPath,_get:Polymer.Base._get,_EVENT_CHANGED:Polymer.Base._EVENT_CHANGED,_notifyPath:Polymer.Base._notifyPath,_notifyPathUp:Polymer.Base._notifyPathUp,_pathEffector:Polymer.Base._pathEffector,_annotationPathEffect:Polymer.Base._annotationPathEffect,_complexObserverPathEffect:Polymer.Base._complexObserverPathEffect,_annotatedComputationPathEffect:Polymer.Base._annotatedComputationPathEffect,_computePathEffect:Polymer.Base._computePathEffect,_notifyBoundPaths:Polymer.Base._notifyBoundPaths,_getPathParts:Polymer.Base._getPathParts});}});}());Polymer.Base._addFeature({resolveUrl:function(url){return Polymer.ResolveUrl.resolveUrl(url,this._importPath);}});Polymer.CssParse=function(){return{parse:function(text){text=this._clean(text);return this._parseCss(this._lex(text),text);},_clean:function(cssText){return cssText.replace(this._rx.comments,'').replace(this._rx.port,'');},_lex:function(text){var root={start:0,end:text.length};var n=root;for(var i=0,l=text.length;i<l;i++){switch(text[i]){case this.OPEN_BRACE:if(!n.rules){n.rules=[];}
3820var p=n;var previous=p.rules[p.rules.length-1];n={start:i+1,parent:p,previous:previous};p.rules.push(n);break;case this.CLOSE_BRACE:n.end=i+1;n=n.parent||root;break;}}
3821return root;},_parseCss:function(node,text){var t=text.substring(node.start,node.end-1);node.parsedCssText=node.cssText=t.trim();if(node.parent){var ss=node.previous?node.previous.end:node.parent.start;t=text.substring(ss,node.start-1);t=this._expandUnicodeEscapes(t);t=t.replace(this._rx.multipleSpaces,' ');t=t.substring(t.lastIndexOf(';')+1);var s=node.parsedSelector=node.selector=t.trim();node.atRule=s.indexOf(this.AT_START)===0;if(node.atRule){if(s.indexOf(this.MEDIA_START)===0){node.type=this.types.MEDIA_RULE;}else if(s.match(this._rx.keyframesRule)){node.type=this.types.KEYFRAMES_RULE;node.keyframesName=node.selector.split(this._rx.multipleSpaces).pop();}}else{if(s.indexOf(this.VAR_START)===0){node.type=this.types.MIXIN_RULE;}else{node.type=this.types.STYLE_RULE;}}}
3822var r$=node.rules;if(r$){for(var i=0,l=r$.length,r;i<l&&(r=r$[i]);i++){this._parseCss(r,text);}}
3823return node;},_expandUnicodeEscapes:function(s){return s.replace(/\\([0-9a-f]{1,6})\s/gi,function(){var code=arguments[1],repeat=6-code.length;while(repeat--){code='0'+code;}
3824return'\\'+code;});},stringify:function(node,preserveProperties,text){text=text||'';var cssText='';if(node.cssText||node.rules){var r$=node.rules;if(r$&&!this._hasMixinRules(r$)){for(var i=0,l=r$.length,r;i<l&&(r=r$[i]);i++){cssText=this.stringify(r,preserveProperties,cssText);}}else{cssText=preserveProperties?node.cssText:this.removeCustomProps(node.cssText);cssText=cssText.trim();if(cssText){cssText='  '+cssText+'\n';}}}
3825if(cssText){if(node.selector){text+=node.selector+' '+this.OPEN_BRACE+'\n';}
3826text+=cssText;if(node.selector){text+=this.CLOSE_BRACE+'\n\n';}}
3827return text;},_hasMixinRules:function(rules){return rules[0].selector.indexOf(this.VAR_START)===0;},removeCustomProps:function(cssText){cssText=this.removeCustomPropAssignment(cssText);return this.removeCustomPropApply(cssText);},removeCustomPropAssignment:function(cssText){return cssText.replace(this._rx.customProp,'').replace(this._rx.mixinProp,'');},removeCustomPropApply:function(cssText){return cssText.replace(this._rx.mixinApply,'').replace(this._rx.varApply,'');},types:{STYLE_RULE:1,KEYFRAMES_RULE:7,MEDIA_RULE:4,MIXIN_RULE:1000},OPEN_BRACE:'{',CLOSE_BRACE:'}',_rx:{comments:/\/\*[^*]*\*+([^\/*][^*]*\*+)*\//gim,port:/@import[^;]*;/gim,customProp:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?(?:[;\n]|$)/gim,mixinProp:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?{[^}]*?}(?:[;\n]|$)?/gim,mixinApply:/@apply\s*\(?[^);]*\)?\s*(?:[;\n]|$)?/gim,varApply:/[^;:]*?:[^;]*?var\([^;]*\)(?:[;\n]|$)?/gim,keyframesRule:/^@[^\s]*keyframes/,multipleSpaces:/\s+/g},VAR_START:'--',MEDIA_START:'@media',AT_START:'@'};}();Polymer.StyleUtil=function(){var settings=Polymer.Settings;return{NATIVE_VARIABLES:Polymer.Settings.useNativeCSSProperties,MODULE_STYLES_SELECTOR:'style, link[rel=import][type~=css], template',INCLUDE_ATTR:'include',toCssText:function(rules,callback){if(typeof rules==='string'){rules=this.parser.parse(rules);}
3828if(callback){this.forEachRule(rules,callback);}
3829return this.parser.stringify(rules,this.NATIVE_VARIABLES);},forRulesInStyles:function(styles,styleRuleCallback,keyframesRuleCallback){if(styles){for(var i=0,l=styles.length,s;i<l&&(s=styles[i]);i++){this.forEachRuleInStyle(s,styleRuleCallback,keyframesRuleCallback);}}},forActiveRulesInStyles:function(styles,styleRuleCallback,keyframesRuleCallback){if(styles){for(var i=0,l=styles.length,s;i<l&&(s=styles[i]);i++){this.forEachRuleInStyle(s,styleRuleCallback,keyframesRuleCallback,true);}}},rulesForStyle:function(style){if(!style.__cssRules&&style.textContent){style.__cssRules=this.parser.parse(style.textContent);}
3830return style.__cssRules;},isKeyframesSelector:function(rule){return rule.parent&&rule.parent.type===this.ruleTypes.KEYFRAMES_RULE;},forEachRuleInStyle:function(style,styleRuleCallback,keyframesRuleCallback,onlyActiveRules){var rules=this.rulesForStyle(style);var styleCallback,keyframeCallback;if(styleRuleCallback){styleCallback=function(rule){styleRuleCallback(rule,style);};}
3831if(keyframesRuleCallback){keyframeCallback=function(rule){keyframesRuleCallback(rule,style);};}
3832this.forEachRule(rules,styleCallback,keyframeCallback,onlyActiveRules);},forEachRule:function(node,styleRuleCallback,keyframesRuleCallback,onlyActiveRules){if(!node){return;}
3833var skipRules=false;if(onlyActiveRules){if(node.type===this.ruleTypes.MEDIA_RULE){var matchMedia=node.selector.match(this.rx.MEDIA_MATCH);if(matchMedia){if(!window.matchMedia(matchMedia[1]).matches){skipRules=true;}}}}
3834if(node.type===this.ruleTypes.STYLE_RULE){styleRuleCallback(node);}else if(keyframesRuleCallback&&node.type===this.ruleTypes.KEYFRAMES_RULE){keyframesRuleCallback(node);}else if(node.type===this.ruleTypes.MIXIN_RULE){skipRules=true;}
3835var r$=node.rules;if(r$&&!skipRules){for(var i=0,l=r$.length,r;i<l&&(r=r$[i]);i++){this.forEachRule(r,styleRuleCallback,keyframesRuleCallback,onlyActiveRules);}}},applyCss:function(cssText,moniker,target,contextNode){var style=this.createScopeStyle(cssText,moniker);return this.applyStyle(style,target,contextNode);},applyStyle:function(style,target,contextNode){target=target||document.head;var after=contextNode&&contextNode.nextSibling||target.firstChild;this.__lastHeadApplyNode=style;return target.insertBefore(style,after);},createScopeStyle:function(cssText,moniker){var style=document.createElement('style');if(moniker){style.setAttribute('scope',moniker);}
3836style.textContent=cssText;return style;},__lastHeadApplyNode:null,applyStylePlaceHolder:function(moniker){var placeHolder=document.createComment(' Shady DOM styles for '+moniker+' ');var after=this.__lastHeadApplyNode?this.__lastHeadApplyNode.nextSibling:null;var scope=document.head;scope.insertBefore(placeHolder,after||scope.firstChild);this.__lastHeadApplyNode=placeHolder;return placeHolder;},cssFromModules:function(moduleIds,warnIfNotFound){var modules=moduleIds.trim().split(' ');var cssText='';for(var i=0;i<modules.length;i++){cssText+=this.cssFromModule(modules[i],warnIfNotFound);}
3837return cssText;},cssFromModule:function(moduleId,warnIfNotFound){var m=Polymer.DomModule.import(moduleId);if(m&&!m._cssText){m._cssText=this.cssFromElement(m);}
3838if(!m&&warnIfNotFound){console.warn('Could not find style data in module named',moduleId);}
3839return m&&m._cssText||'';},cssFromElement:function(element){var cssText='';var content=element.content||element;var e$=Polymer.TreeApi.arrayCopy(content.querySelectorAll(this.MODULE_STYLES_SELECTOR));for(var i=0,e;i<e$.length;i++){e=e$[i];if(e.localName==='template'){if(!e.hasAttribute('preserve-content')){cssText+=this.cssFromElement(e);}}else{if(e.localName==='style'){var include=e.getAttribute(this.INCLUDE_ATTR);if(include){cssText+=this.cssFromModules(include,true);}
3840e=e.__appliedElement||e;e.parentNode.removeChild(e);cssText+=this.resolveCss(e.textContent,element.ownerDocument);}else if(e.import&&e.import.body){cssText+=this.resolveCss(e.import.body.textContent,e.import);}}}
3841return cssText;},styleIncludesToTemplate:function(targetTemplate){var styles=targetTemplate.content.querySelectorAll('style[include]');for(var i=0,s;i<styles.length;i++){s=styles[i];s.parentNode.insertBefore(this._includesToFragment(s.getAttribute('include')),s);}},_includesToFragment:function(styleIncludes){var includeArray=styleIncludes.trim().split(' ');var frag=document.createDocumentFragment();for(var i=0;i<includeArray.length;i++){var t=Polymer.DomModule.import(includeArray[i],'template');if(t){this._addStylesToFragment(frag,t.content);}}
3842return frag;},_addStylesToFragment:function(frag,source){var s$=source.querySelectorAll('style');for(var i=0,s;i<s$.length;i++){s=s$[i];var include=s.getAttribute('include');if(include){frag.appendChild(this._includesToFragment(include));}
3843if(s.textContent){frag.appendChild(s.cloneNode(true));}}},isTargetedBuild:function(buildType){return settings.useNativeShadow?buildType==='shadow':buildType==='shady';},cssBuildTypeForModule:function(module){var dm=Polymer.DomModule.import(module);if(dm){return this.getCssBuildType(dm);}},getCssBuildType:function(element){return element.getAttribute('css-build');},_findMatchingParen:function(text,start){var level=0;for(var i=start,l=text.length;i<l;i++){switch(text[i]){case'(':level++;break;case')':if(--level===0){return i;}
3844break;}}
3845return-1;},processVariableAndFallback:function(str,callback){var start=str.indexOf('var(');if(start===-1){return callback(str,'','','');}
3846var end=this._findMatchingParen(str,start+3);var inner=str.substring(start+4,end);var prefix=str.substring(0,start);var suffix=this.processVariableAndFallback(str.substring(end+1),callback);var comma=inner.indexOf(',');if(comma===-1){return callback(prefix,inner.trim(),'',suffix);}
3847var value=inner.substring(0,comma).trim();var fallback=inner.substring(comma+1).trim();return callback(prefix,value,fallback,suffix);},rx:{VAR_ASSIGN:/(?:^|[;\s{]\s*)(--[\w-]*?)\s*:\s*(?:([^;{]*)|{([^}]*)})(?:(?=[;\s}])|$)/gi,MIXIN_MATCH:/(?:^|\W+)@apply\s*\(?([^);\n]*)\)?/gi,VAR_CONSUMED:/(--[\w-]+)\s*([:,;)]|$)/gi,ANIMATION_MATCH:/(animation\s*:)|(animation-name\s*:)/,MEDIA_MATCH:/@media[^(]*(\([^)]*\))/,IS_VAR:/^--/,BRACKETED:/\{[^}]*\}/g,HOST_PREFIX:'(?:^|[^.#[:])',HOST_SUFFIX:'($|[.:[\\s>+~])'},resolveCss:Polymer.ResolveUrl.resolveCss,parser:Polymer.CssParse,ruleTypes:Polymer.CssParse.types};}();Polymer.StyleTransformer=function(){var styleUtil=Polymer.StyleUtil;var settings=Polymer.Settings;var api={dom:function(node,scope,useAttr,shouldRemoveScope){this._transformDom(node,scope||'',useAttr,shouldRemoveScope);},_transformDom:function(node,selector,useAttr,shouldRemoveScope){if(node.setAttribute){this.element(node,selector,useAttr,shouldRemoveScope);}
3848var c$=Polymer.dom(node).childNodes;for(var i=0;i<c$.length;i++){this._transformDom(c$[i],selector,useAttr,shouldRemoveScope);}},element:function(element,scope,useAttr,shouldRemoveScope){if(useAttr){if(shouldRemoveScope){element.removeAttribute(SCOPE_NAME);}else{element.setAttribute(SCOPE_NAME,scope);}}else{if(scope){if(element.classList){if(shouldRemoveScope){element.classList.remove(SCOPE_NAME);element.classList.remove(scope);}else{element.classList.add(SCOPE_NAME);element.classList.add(scope);}}else if(element.getAttribute){var c=element.getAttribute(CLASS);if(shouldRemoveScope){if(c){element.setAttribute(CLASS,c.replace(SCOPE_NAME,'').replace(scope,''));}}else{element.setAttribute(CLASS,(c?c+' ':'')+SCOPE_NAME+' '+scope);}}}}},elementStyles:function(element,callback){var styles=element._styles;var cssText='';var cssBuildType=element.__cssBuild;var passthrough=settings.useNativeShadow||cssBuildType==='shady';var cb;if(passthrough){var self=this;cb=function(rule){rule.selector=self._slottedToContent(rule.selector);rule.selector=rule.selector.replace(ROOT,':host > *');if(callback){callback(rule);}};}
3849for(var i=0,l=styles.length,s;i<l&&(s=styles[i]);i++){var rules=styleUtil.rulesForStyle(s);cssText+=passthrough?styleUtil.toCssText(rules,cb):this.css(rules,element.is,element.extends,callback,element._scopeCssViaAttr)+'\n\n';}
3850return cssText.trim();},css:function(rules,scope,ext,callback,useAttr){var hostScope=this._calcHostScope(scope,ext);scope=this._calcElementScope(scope,useAttr);var self=this;return styleUtil.toCssText(rules,function(rule){if(!rule.isScoped){self.rule(rule,scope,hostScope);rule.isScoped=true;}
3851if(callback){callback(rule,scope,hostScope);}});},_calcElementScope:function(scope,useAttr){if(scope){return useAttr?CSS_ATTR_PREFIX+scope+CSS_ATTR_SUFFIX:CSS_CLASS_PREFIX+scope;}else{return'';}},_calcHostScope:function(scope,ext){return ext?'[is='+scope+']':scope;},rule:function(rule,scope,hostScope){this._transformRule(rule,this._transformComplexSelector,scope,hostScope);},_transformRule:function(rule,transformer,scope,hostScope){rule.selector=rule.transformedSelector=this._transformRuleCss(rule,transformer,scope,hostScope);},_transformRuleCss:function(rule,transformer,scope,hostScope){var p$=rule.selector.split(COMPLEX_SELECTOR_SEP);if(!styleUtil.isKeyframesSelector(rule)){for(var i=0,l=p$.length,p;i<l&&(p=p$[i]);i++){p$[i]=transformer.call(this,p,scope,hostScope);}}
3852return p$.join(COMPLEX_SELECTOR_SEP);},_transformComplexSelector:function(selector,scope,hostScope){var stop=false;var hostContext=false;var self=this;selector=selector.trim();selector=this._slottedToContent(selector);selector=selector.replace(ROOT,':host > *');selector=selector.replace(CONTENT_START,HOST+' $1');selector=selector.replace(SIMPLE_SELECTOR_SEP,function(m,c,s){if(!stop){var info=self._transformCompoundSelector(s,c,scope,hostScope);stop=stop||info.stop;hostContext=hostContext||info.hostContext;c=info.combinator;s=info.value;}else{s=s.replace(SCOPE_JUMP,' ');}
3853return c+s;});if(hostContext){selector=selector.replace(HOST_CONTEXT_PAREN,function(m,pre,paren,post){return pre+paren+' '+hostScope+post+COMPLEX_SELECTOR_SEP+' '+pre+hostScope+paren+post;});}
3854return selector;},_transformCompoundSelector:function(selector,combinator,scope,hostScope){var jumpIndex=selector.search(SCOPE_JUMP);var hostContext=false;if(selector.indexOf(HOST_CONTEXT)>=0){hostContext=true;}else if(selector.indexOf(HOST)>=0){selector=this._transformHostSelector(selector,hostScope);}else if(jumpIndex!==0){selector=scope?this._transformSimpleSelector(selector,scope):selector;}
3855if(selector.indexOf(CONTENT)>=0){combinator='';}
3856var stop;if(jumpIndex>=0){selector=selector.replace(SCOPE_JUMP,' ');stop=true;}
3857return{value:selector,combinator:combinator,stop:stop,hostContext:hostContext};},_transformSimpleSelector:function(selector,scope){var p$=selector.split(PSEUDO_PREFIX);p$[0]+=scope;return p$.join(PSEUDO_PREFIX);},_transformHostSelector:function(selector,hostScope){var m=selector.match(HOST_PAREN);var paren=m&&m[2].trim()||'';if(paren){if(!paren[0].match(SIMPLE_SELECTOR_PREFIX)){var typeSelector=paren.split(SIMPLE_SELECTOR_PREFIX)[0];if(typeSelector===hostScope){return paren;}else{return SELECTOR_NO_MATCH;}}else{return selector.replace(HOST_PAREN,function(m,host,paren){return hostScope+paren;});}}else{return selector.replace(HOST,hostScope);}},documentRule:function(rule){rule.selector=rule.parsedSelector;this.normalizeRootSelector(rule);if(!settings.useNativeShadow){this._transformRule(rule,this._transformDocumentSelector);}},normalizeRootSelector:function(rule){rule.selector=rule.selector.replace(ROOT,'html');var parts=rule.selector.split(COMPLEX_SELECTOR_SEP);parts=parts.filter(function(part){return!part.match(HOST_OR_HOST_GT_STAR);});rule.selector=parts.join(COMPLEX_SELECTOR_SEP);},_transformDocumentSelector:function(selector){return selector.match(SCOPE_JUMP)?this._transformComplexSelector(selector,SCOPE_DOC_SELECTOR):this._transformSimpleSelector(selector.trim(),SCOPE_DOC_SELECTOR);},_slottedToContent:function(cssText){return cssText.replace(SLOTTED_PAREN,CONTENT+'> $1');},SCOPE_NAME:'style-scope'};var SCOPE_NAME=api.SCOPE_NAME;var SCOPE_DOC_SELECTOR=':not(['+SCOPE_NAME+'])'+':not(.'+SCOPE_NAME+')';var COMPLEX_SELECTOR_SEP=',';var SIMPLE_SELECTOR_SEP=/(^|[\s>+~]+)((?:\[.+?\]|[^\s>+~=\[])+)/g;var SIMPLE_SELECTOR_PREFIX=/[[.:#*]/;var HOST=':host';var ROOT=':root';var HOST_PAREN=/(:host)(?:\(((?:\([^)(]*\)|[^)(]*)+?)\))/;var HOST_CONTEXT=':host-context';var HOST_CONTEXT_PAREN=/(.*)(?::host-context)(?:\(((?:\([^)(]*\)|[^)(]*)+?)\))(.*)/;var CONTENT='::content';var SCOPE_JUMP=/::content|::shadow|\/deep\//;var CSS_CLASS_PREFIX='.';var CSS_ATTR_PREFIX='['+SCOPE_NAME+'~=';var CSS_ATTR_SUFFIX=']';var PSEUDO_PREFIX=':';var CLASS='class';var CONTENT_START=new RegExp('^('+CONTENT+')');var SELECTOR_NO_MATCH='should_not_match';var SLOTTED_PAREN=/(?:::slotted)(?:\(((?:\([^)(]*\)|[^)(]*)+?)\))/g;var HOST_OR_HOST_GT_STAR=/:host(?:\s*>\s*\*)?/;return api;}();Polymer.StyleExtends=function(){var styleUtil=Polymer.StyleUtil;return{hasExtends:function(cssText){return Boolean(cssText.match(this.rx.EXTEND));},transform:function(style){var rules=styleUtil.rulesForStyle(style);var self=this;styleUtil.forEachRule(rules,function(rule){self._mapRuleOntoParent(rule);if(rule.parent){var m;while(m=self.rx.EXTEND.exec(rule.cssText)){var extend=m[1];var extendor=self._findExtendor(extend,rule);if(extendor){self._extendRule(rule,extendor);}}}
3858rule.cssText=rule.cssText.replace(self.rx.EXTEND,'');});return styleUtil.toCssText(rules,function(rule){if(rule.selector.match(self.rx.STRIP)){rule.cssText='';}},true);},_mapRuleOntoParent:function(rule){if(rule.parent){var map=rule.parent.map||(rule.parent.map={});var parts=rule.selector.split(',');for(var i=0,p;i<parts.length;i++){p=parts[i];map[p.trim()]=rule;}
3859return map;}},_findExtendor:function(extend,rule){return rule.parent&&rule.parent.map&&rule.parent.map[extend]||this._findExtendor(extend,rule.parent);},_extendRule:function(target,source){if(target.parent!==source.parent){this._cloneAndAddRuleToParent(source,target.parent);}
3860target.extends=target.extends||[];target.extends.push(source);source.selector=source.selector.replace(this.rx.STRIP,'');source.selector=(source.selector&&source.selector+',\n')+target.selector;if(source.extends){source.extends.forEach(function(e){this._extendRule(target,e);},this);}},_cloneAndAddRuleToParent:function(rule,parent){rule=Object.create(rule);rule.parent=parent;if(rule.extends){rule.extends=rule.extends.slice();}
3861parent.rules.push(rule);},rx:{EXTEND:/@extends\(([^)]*)\)\s*?;/gim,STRIP:/%[^,]*$/}};}();Polymer.ApplyShim=function(){'use strict';var styleUtil=Polymer.StyleUtil;var MIXIN_MATCH=styleUtil.rx.MIXIN_MATCH;var VAR_ASSIGN=styleUtil.rx.VAR_ASSIGN;var BAD_VAR=/var\(\s*(--[^,]*),\s*(--[^)]*)\)/g;var APPLY_NAME_CLEAN=/;\s*/m;var INITIAL_INHERIT=/^\s*(initial)|(inherit)\s*$/;var MIXIN_VAR_SEP='_-_';var mixinMap={};function mapSet(name,props){name=name.trim();mixinMap[name]={properties:props,dependants:{}};}
3862function mapGet(name){name=name.trim();return mixinMap[name];}
3863function replaceInitialOrInherit(property,value){var match=INITIAL_INHERIT.exec(value);if(match){if(match[1]){value=ApplyShim._getInitialValueForProperty(property);}else{value='apply-shim-inherit';}}
3864return value;}
3865function cssTextToMap(text){var props=text.split(';');var property,value;var out={};for(var i=0,p,sp;i<props.length;i++){p=props[i];if(p){sp=p.split(':');if(sp.length>1){property=sp[0].trim();value=replaceInitialOrInherit(property,sp.slice(1).join(':'));out[property]=value;}}}
3866return out;}
3867function invalidateMixinEntry(mixinEntry){var currentProto=ApplyShim.__currentElementProto;var currentElementName=currentProto&&currentProto.is;for(var elementName in mixinEntry.dependants){if(elementName!==currentElementName){mixinEntry.dependants[elementName].__applyShimInvalid=true;}}}
3868function produceCssProperties(matchText,propertyName,valueProperty,valueMixin){if(valueProperty){styleUtil.processVariableAndFallback(valueProperty,function(prefix,value){if(value&&mapGet(value)){valueMixin='@apply '+value+';';}});}
3869if(!valueMixin){return matchText;}
3870var mixinAsProperties=consumeCssProperties(valueMixin);var prefix=matchText.slice(0,matchText.indexOf('--'));var mixinValues=cssTextToMap(mixinAsProperties);var combinedProps=mixinValues;var mixinEntry=mapGet(propertyName);var oldProps=mixinEntry&&mixinEntry.properties;if(oldProps){combinedProps=Object.create(oldProps);combinedProps=Polymer.Base.mixin(combinedProps,mixinValues);}else{mapSet(propertyName,combinedProps);}
3871var out=[];var p,v;var needToInvalidate=false;for(p in combinedProps){v=mixinValues[p];if(v===undefined){v='initial';}
3872if(oldProps&&!(p in oldProps)){needToInvalidate=true;}
3873out.push(propertyName+MIXIN_VAR_SEP+p+': '+v);}
3874if(needToInvalidate){invalidateMixinEntry(mixinEntry);}
3875if(mixinEntry){mixinEntry.properties=combinedProps;}
3876if(valueProperty){prefix=matchText+';'+prefix;}
3877return prefix+out.join('; ')+';';}
3878function fixVars(matchText,varA,varB){return'var('+varA+','+'var('+varB+'))';}
3879function atApplyToCssProperties(mixinName,fallbacks){mixinName=mixinName.replace(APPLY_NAME_CLEAN,'');var vars=[];var mixinEntry=mapGet(mixinName);if(!mixinEntry){mapSet(mixinName,{});mixinEntry=mapGet(mixinName);}
3880if(mixinEntry){var currentProto=ApplyShim.__currentElementProto;if(currentProto){mixinEntry.dependants[currentProto.is]=currentProto;}
3881var p,parts,f;for(p in mixinEntry.properties){f=fallbacks&&fallbacks[p];parts=[p,': var(',mixinName,MIXIN_VAR_SEP,p];if(f){parts.push(',',f);}
3882parts.push(')');vars.push(parts.join(''));}}
3883return vars.join('; ');}
3884function consumeCssProperties(text){var m;while(m=MIXIN_MATCH.exec(text)){var matchText=m[0];var mixinName=m[1];var idx=m.index;var applyPos=idx+matchText.indexOf('@apply');var afterApplyPos=idx+matchText.length;var textBeforeApply=text.slice(0,applyPos);var textAfterApply=text.slice(afterApplyPos);var defaults=cssTextToMap(textBeforeApply);var replacement=atApplyToCssProperties(mixinName,defaults);text=[textBeforeApply,replacement,textAfterApply].join('');MIXIN_MATCH.lastIndex=idx+replacement.length;}
3885return text;}
3886var ApplyShim={_measureElement:null,_map:mixinMap,_separator:MIXIN_VAR_SEP,transform:function(styles,elementProto){this.__currentElementProto=elementProto;styleUtil.forRulesInStyles(styles,this._boundFindDefinitions);styleUtil.forRulesInStyles(styles,this._boundFindApplications);if(elementProto){elementProto.__applyShimInvalid=false;}
3887this.__currentElementProto=null;},_findDefinitions:function(rule){var cssText=rule.parsedCssText;cssText=cssText.replace(BAD_VAR,fixVars);cssText=cssText.replace(VAR_ASSIGN,produceCssProperties);rule.cssText=cssText;if(rule.selector===':root'){rule.selector=':host > *';}},_findApplications:function(rule){rule.cssText=consumeCssProperties(rule.cssText);},transformRule:function(rule){this._findDefinitions(rule);this._findApplications(rule);},_getInitialValueForProperty:function(property){if(!this._measureElement){this._measureElement=document.createElement('meta');this._measureElement.style.all='initial';document.head.appendChild(this._measureElement);}
3888return window.getComputedStyle(this._measureElement).getPropertyValue(property);}};ApplyShim._boundTransformRule=ApplyShim.transformRule.bind(ApplyShim);ApplyShim._boundFindDefinitions=ApplyShim._findDefinitions.bind(ApplyShim);ApplyShim._boundFindApplications=ApplyShim._findApplications.bind(ApplyShim);return ApplyShim;}();(function(){var prepElement=Polymer.Base._prepElement;var nativeShadow=Polymer.Settings.useNativeShadow;var styleUtil=Polymer.StyleUtil;var styleTransformer=Polymer.StyleTransformer;var styleExtends=Polymer.StyleExtends;var applyShim=Polymer.ApplyShim;var settings=Polymer.Settings;Polymer.Base._addFeature({_prepElement:function(element){if(this._encapsulateStyle&&this.__cssBuild!=='shady'){styleTransformer.element(element,this.is,this._scopeCssViaAttr);}
3889prepElement.call(this,element);},_prepStyles:function(){if(this._encapsulateStyle===undefined){this._encapsulateStyle=!nativeShadow;}
3890if(!nativeShadow){this._scopeStyle=styleUtil.applyStylePlaceHolder(this.is);}
3891this.__cssBuild=styleUtil.cssBuildTypeForModule(this.is);},_prepShimStyles:function(){if(this._template){var hasTargetedCssBuild=styleUtil.isTargetedBuild(this.__cssBuild);if(settings.useNativeCSSProperties&&this.__cssBuild==='shadow'&&hasTargetedCssBuild){if(settings.preserveStyleIncludes){styleUtil.styleIncludesToTemplate(this._template);}
3892return;}
3893this._styles=this._styles||this._collectStyles();if(settings.useNativeCSSProperties&&!this.__cssBuild){applyShim.transform(this._styles,this);}
3894var cssText=settings.useNativeCSSProperties&&hasTargetedCssBuild?this._styles.length&&this._styles[0].textContent.trim():styleTransformer.elementStyles(this);this._prepStyleProperties();if(!this._needsStyleProperties()&&cssText){styleUtil.applyCss(cssText,this.is,nativeShadow?this._template.content:null,this._scopeStyle);}}else{this._styles=[];}},_collectStyles:function(){var styles=[];var cssText='',m$=this.styleModules;if(m$){for(var i=0,l=m$.length,m;i<l&&(m=m$[i]);i++){cssText+=styleUtil.cssFromModule(m);}}
3895cssText+=styleUtil.cssFromModule(this.is);var p=this._template&&this._template.parentNode;if(this._template&&(!p||p.id.toLowerCase()!==this.is)){cssText+=styleUtil.cssFromElement(this._template);}
3896if(cssText){var style=document.createElement('style');style.textContent=cssText;if(styleExtends.hasExtends(style.textContent)){cssText=styleExtends.transform(style);}
3897styles.push(style);}
3898return styles;},_elementAdd:function(node){if(this._encapsulateStyle){if(node.__styleScoped){node.__styleScoped=false;}else{styleTransformer.dom(node,this.is,this._scopeCssViaAttr);}}},_elementRemove:function(node){if(this._encapsulateStyle){styleTransformer.dom(node,this.is,this._scopeCssViaAttr,true);}},scopeSubtree:function(container,shouldObserve){if(nativeShadow){return;}
3899var self=this;var scopify=function(node){if(node.nodeType===Node.ELEMENT_NODE){var className=node.getAttribute('class');node.setAttribute('class',self._scopeElementClass(node,className));var n$=node.querySelectorAll('*');for(var i=0,n;i<n$.length&&(n=n$[i]);i++){className=n.getAttribute('class');n.setAttribute('class',self._scopeElementClass(n,className));}}};scopify(container);if(shouldObserve){var mo=new MutationObserver(function(mxns){for(var i=0,m;i<mxns.length&&(m=mxns[i]);i++){if(m.addedNodes){for(var j=0;j<m.addedNodes.length;j++){scopify(m.addedNodes[j]);}}}});mo.observe(container,{childList:true,subtree:true});return mo;}}});}());Polymer.StyleProperties=function(){'use strict';var matchesSelector=Polymer.DomApi.matchesSelector;var styleUtil=Polymer.StyleUtil;var styleTransformer=Polymer.StyleTransformer;var IS_IE=navigator.userAgent.match('Trident');var settings=Polymer.Settings;return{decorateStyles:function(styles,scope){var self=this,props={},keyframes=[],ruleIndex=0;var scopeSelector=styleTransformer._calcHostScope(scope.is,scope.extends);styleUtil.forRulesInStyles(styles,function(rule,style){self.decorateRule(rule);rule.index=ruleIndex++;self.whenHostOrRootRule(scope,rule,style,function(info){if(rule.parent.type===styleUtil.ruleTypes.MEDIA_RULE){scope.__notStyleScopeCacheable=true;}
3900if(info.isHost){var hostContextOrFunction=info.selector.split(' ').some(function(s){return s.indexOf(scopeSelector)===0&&s.length!==scopeSelector.length;});scope.__notStyleScopeCacheable=scope.__notStyleScopeCacheable||hostContextOrFunction;}});self.collectPropertiesInCssText(rule.propertyInfo.cssText,props);},function onKeyframesRule(rule){keyframes.push(rule);});styles._keyframes=keyframes;var names=[];for(var i in props){names.push(i);}
3901return names;},decorateRule:function(rule){if(rule.propertyInfo){return rule.propertyInfo;}
3902var info={},properties={};var hasProperties=this.collectProperties(rule,properties);if(hasProperties){info.properties=properties;rule.rules=null;}
3903info.cssText=this.collectCssText(rule);rule.propertyInfo=info;return info;},collectProperties:function(rule,properties){var info=rule.propertyInfo;if(info){if(info.properties){Polymer.Base.mixin(properties,info.properties);return true;}}else{var m,rx=this.rx.VAR_ASSIGN;var cssText=rule.parsedCssText;var value;var any;while(m=rx.exec(cssText)){value=(m[2]||m[3]).trim();if(value!=='inherit'){properties[m[1].trim()]=value;}
3904any=true;}
3905return any;}},collectCssText:function(rule){return this.collectConsumingCssText(rule.parsedCssText);},collectConsumingCssText:function(cssText){return cssText.replace(this.rx.BRACKETED,'').replace(this.rx.VAR_ASSIGN,'');},collectPropertiesInCssText:function(cssText,props){var m;while(m=this.rx.VAR_CONSUMED.exec(cssText)){var name=m[1];if(m[2]!==':'){props[name]=true;}}},reify:function(props){var names=Object.getOwnPropertyNames(props);for(var i=0,n;i<names.length;i++){n=names[i];props[n]=this.valueForProperty(props[n],props);}},valueForProperty:function(property,props){if(property){if(property.indexOf(';')>=0){property=this.valueForProperties(property,props);}else{var self=this;var fn=function(prefix,value,fallback,suffix){var propertyValue=self.valueForProperty(props[value],props);if(!propertyValue||propertyValue==='initial'){propertyValue=self.valueForProperty(props[fallback]||fallback,props)||fallback;}else if(propertyValue==='apply-shim-inherit'){propertyValue='inherit';}
3906return prefix+(propertyValue||'')+suffix;};property=styleUtil.processVariableAndFallback(property,fn);}}
3907return property&&property.trim()||'';},valueForProperties:function(property,props){var parts=property.split(';');for(var i=0,p,m;i<parts.length;i++){if(p=parts[i]){this.rx.MIXIN_MATCH.lastIndex=0;m=this.rx.MIXIN_MATCH.exec(p);if(m){p=this.valueForProperty(props[m[1]],props);}else{var colon=p.indexOf(':');if(colon!==-1){var pp=p.substring(colon);pp=pp.trim();pp=this.valueForProperty(pp,props)||pp;p=p.substring(0,colon)+pp;}}
3908parts[i]=p&&p.lastIndexOf(';')===p.length-1?p.slice(0,-1):p||'';}}
3909return parts.join(';');},applyProperties:function(rule,props){var output='';if(!rule.propertyInfo){this.decorateRule(rule);}
3910if(rule.propertyInfo.cssText){output=this.valueForProperties(rule.propertyInfo.cssText,props);}
3911rule.cssText=output;},applyKeyframeTransforms:function(rule,keyframeTransforms){var input=rule.cssText;var output=rule.cssText;if(rule.hasAnimations==null){rule.hasAnimations=this.rx.ANIMATION_MATCH.test(input);}
3912if(rule.hasAnimations){var transform;if(rule.keyframeNamesToTransform==null){rule.keyframeNamesToTransform=[];for(var keyframe in keyframeTransforms){transform=keyframeTransforms[keyframe];output=transform(input);if(input!==output){input=output;rule.keyframeNamesToTransform.push(keyframe);}}}else{for(var i=0;i<rule.keyframeNamesToTransform.length;++i){transform=keyframeTransforms[rule.keyframeNamesToTransform[i]];input=transform(input);}
3913output=input;}}
3914rule.cssText=output;},propertyDataFromStyles:function(styles,element){var props={},self=this;var o=[];styleUtil.forActiveRulesInStyles(styles,function(rule){if(!rule.propertyInfo){self.decorateRule(rule);}
3915var selectorToMatch=rule.transformedSelector||rule.parsedSelector;if(element&&rule.propertyInfo.properties&&selectorToMatch){if(matchesSelector.call(element,selectorToMatch)){self.collectProperties(rule,props);addToBitMask(rule.index,o);}}});return{properties:props,key:o};},_rootSelector:/:root|:host\s*>\s*\*/,_checkRoot:function(hostScope,selector){return Boolean(selector.match(this._rootSelector))||hostScope==='html'&&selector.indexOf('html')>-1;},whenHostOrRootRule:function(scope,rule,style,callback){if(!rule.propertyInfo){self.decorateRule(rule);}
3916if(!rule.propertyInfo.properties){return;}
3917var hostScope=scope.is?styleTransformer._calcHostScope(scope.is,scope.extends):'html';var parsedSelector=rule.parsedSelector;var isRoot=this._checkRoot(hostScope,parsedSelector);var isHost=!isRoot&&parsedSelector.indexOf(':host')===0;var cssBuild=scope.__cssBuild||style.__cssBuild;if(cssBuild==='shady'){isRoot=parsedSelector===hostScope+' > *.'+hostScope||parsedSelector.indexOf('html')>-1;isHost=!isRoot&&parsedSelector.indexOf(hostScope)===0;}
3918if(!isRoot&&!isHost){return;}
3919var selectorToMatch=hostScope;if(isHost){if(settings.useNativeShadow&&!rule.transformedSelector){rule.transformedSelector=styleTransformer._transformRuleCss(rule,styleTransformer._transformComplexSelector,scope.is,hostScope);}
3920selectorToMatch=rule.transformedSelector||rule.parsedSelector;}
3921if(isRoot&&hostScope==='html'){selectorToMatch=rule.transformedSelector||rule.parsedSelector;}
3922callback({selector:selectorToMatch,isHost:isHost,isRoot:isRoot});},hostAndRootPropertiesForScope:function(scope){var hostProps={},rootProps={},self=this;styleUtil.forActiveRulesInStyles(scope._styles,function(rule,style){self.whenHostOrRootRule(scope,rule,style,function(info){var element=scope._element||scope;if(matchesSelector.call(element,info.selector)){if(info.isHost){self.collectProperties(rule,hostProps);}else{self.collectProperties(rule,rootProps);}}});});return{rootProps:rootProps,hostProps:hostProps};},transformStyles:function(element,properties,scopeSelector){var self=this;var hostSelector=styleTransformer._calcHostScope(element.is,element.extends);var rxHostSelector=element.extends?'\\'+hostSelector.slice(0,-1)+'\\]':hostSelector;var hostRx=new RegExp(this.rx.HOST_PREFIX+rxHostSelector+this.rx.HOST_SUFFIX);var keyframeTransforms=this._elementKeyframeTransforms(element,scopeSelector);return styleTransformer.elementStyles(element,function(rule){self.applyProperties(rule,properties);if(!settings.useNativeShadow&&!Polymer.StyleUtil.isKeyframesSelector(rule)&&rule.cssText){self.applyKeyframeTransforms(rule,keyframeTransforms);self._scopeSelector(rule,hostRx,hostSelector,element._scopeCssViaAttr,scopeSelector);}});},_elementKeyframeTransforms:function(element,scopeSelector){var keyframesRules=element._styles._keyframes;var keyframeTransforms={};if(!settings.useNativeShadow&&keyframesRules){for(var i=0,keyframesRule=keyframesRules[i];i<keyframesRules.length;keyframesRule=keyframesRules[++i]){this._scopeKeyframes(keyframesRule,scopeSelector);keyframeTransforms[keyframesRule.keyframesName]=this._keyframesRuleTransformer(keyframesRule);}}
3923return keyframeTransforms;},_keyframesRuleTransformer:function(keyframesRule){return function(cssText){return cssText.replace(keyframesRule.keyframesNameRx,keyframesRule.transformedKeyframesName);};},_scopeKeyframes:function(rule,scopeId){rule.keyframesNameRx=new RegExp(rule.keyframesName,'g');rule.transformedKeyframesName=rule.keyframesName+'-'+scopeId;rule.transformedSelector=rule.transformedSelector||rule.selector;rule.selector=rule.transformedSelector.replace(rule.keyframesName,rule.transformedKeyframesName);},_scopeSelector:function(rule,hostRx,hostSelector,viaAttr,scopeId){rule.transformedSelector=rule.transformedSelector||rule.selector;var selector=rule.transformedSelector;var scope=viaAttr?'['+styleTransformer.SCOPE_NAME+'~='+scopeId+']':'.'+scopeId;var parts=selector.split(',');for(var i=0,l=parts.length,p;i<l&&(p=parts[i]);i++){parts[i]=p.match(hostRx)?p.replace(hostSelector,scope):scope+' '+p;}
3924rule.selector=parts.join(',');},applyElementScopeSelector:function(element,selector,old,viaAttr){var c=viaAttr?element.getAttribute(styleTransformer.SCOPE_NAME):element.getAttribute('class')||'';var v=old?c.replace(old,selector):(c?c+' ':'')+this.XSCOPE_NAME+' '+selector;if(c!==v){if(viaAttr){element.setAttribute(styleTransformer.SCOPE_NAME,v);}else{element.setAttribute('class',v);}}},applyElementStyle:function(element,properties,selector,style){var cssText=style?style.textContent||'':this.transformStyles(element,properties,selector);var s=element._customStyle;if(s&&!settings.useNativeShadow&&s!==style){s._useCount--;if(s._useCount<=0&&s.parentNode){s.parentNode.removeChild(s);}}
3925if(settings.useNativeShadow){if(element._customStyle){element._customStyle.textContent=cssText;style=element._customStyle;}else if(cssText){style=styleUtil.applyCss(cssText,selector,element.root,element._scopeStyle);}}else{if(!style){if(cssText){style=styleUtil.applyCss(cssText,selector,null,element._scopeStyle);}}else if(!style.parentNode){if(IS_IE&&cssText.indexOf('@media')>-1){style.textContent=cssText;}
3926styleUtil.applyStyle(style,null,element._scopeStyle);}}
3927if(style){style._useCount=style._useCount||0;if(element._customStyle!=style){style._useCount++;}
3928element._customStyle=style;}
3929return style;},mixinCustomStyle:function(props,customStyle){var v;for(var i in customStyle){v=customStyle[i];if(v||v===0){props[i]=v;}}},updateNativeStyleProperties:function(element,properties){var oldPropertyNames=element.__customStyleProperties;if(oldPropertyNames){for(var i=0;i<oldPropertyNames.length;i++){element.style.removeProperty(oldPropertyNames[i]);}}
3930var propertyNames=[];for(var p in properties){if(properties[p]!==null){element.style.setProperty(p,properties[p]);propertyNames.push(p);}}
3931element.__customStyleProperties=propertyNames;},rx:styleUtil.rx,XSCOPE_NAME:'x-scope'};function addToBitMask(n,bits){var o=parseInt(n/32);var v=1<<n%32;bits[o]=(bits[o]||0)|v;}}();(function(){Polymer.StyleCache=function(){this.cache={};};Polymer.StyleCache.prototype={MAX:100,store:function(is,data,keyValues,keyStyles){data.keyValues=keyValues;data.styles=keyStyles;var s$=this.cache[is]=this.cache[is]||[];s$.push(data);if(s$.length>this.MAX){s$.shift();}},retrieve:function(is,keyValues,keyStyles){var cache=this.cache[is];if(cache){for(var i=cache.length-1,data;i>=0;i--){data=cache[i];if(keyStyles===data.styles&&this._objectsEqual(keyValues,data.keyValues)){return data;}}}},clear:function(){this.cache={};},_objectsEqual:function(target,source){var t,s;for(var i in target){t=target[i],s=source[i];if(!(typeof t==='object'&&t?this._objectsStrictlyEqual(t,s):t===s)){return false;}}
3932if(Array.isArray(target)){return target.length===source.length;}
3933return true;},_objectsStrictlyEqual:function(target,source){return this._objectsEqual(target,source)&&this._objectsEqual(source,target);}};}());Polymer.StyleDefaults=function(){var styleProperties=Polymer.StyleProperties;var StyleCache=Polymer.StyleCache;var nativeVariables=Polymer.Settings.useNativeCSSProperties;var api={_styles:[],_properties:null,customStyle:{},_styleCache:new StyleCache(),_element:Polymer.DomApi.wrap(document.documentElement),addStyle:function(style){this._styles.push(style);this._properties=null;},get _styleProperties(){if(!this._properties){styleProperties.decorateStyles(this._styles,this);this._styles._scopeStyleProperties=null;this._properties=styleProperties.hostAndRootPropertiesForScope(this).rootProps;styleProperties.mixinCustomStyle(this._properties,this.customStyle);styleProperties.reify(this._properties);}
3934return this._properties;},hasStyleProperties:function(){return Boolean(this._properties);},_needsStyleProperties:function(){},_computeStyleProperties:function(){return this._styleProperties;},updateStyles:function(properties){this._properties=null;if(properties){Polymer.Base.mixin(this.customStyle,properties);}
3935this._styleCache.clear();for(var i=0,s;i<this._styles.length;i++){s=this._styles[i];s=s.__importElement||s;s._apply();}
3936if(nativeVariables){styleProperties.updateNativeStyleProperties(document.documentElement,this.customStyle);}}};return api;}();(function(){'use strict';var serializeValueToAttribute=Polymer.Base.serializeValueToAttribute;var propertyUtils=Polymer.StyleProperties;var styleTransformer=Polymer.StyleTransformer;var styleDefaults=Polymer.StyleDefaults;var nativeShadow=Polymer.Settings.useNativeShadow;var nativeVariables=Polymer.Settings.useNativeCSSProperties;Polymer.Base._addFeature({_prepStyleProperties:function(){if(!nativeVariables){this._ownStylePropertyNames=this._styles&&this._styles.length?propertyUtils.decorateStyles(this._styles,this):null;}},customStyle:null,getComputedStyleValue:function(property){if(!nativeVariables&&!this._styleProperties){this._computeStyleProperties();}
3937return!nativeVariables&&this._styleProperties&&this._styleProperties[property]||getComputedStyle(this).getPropertyValue(property);},_setupStyleProperties:function(){this.customStyle={};this._styleCache=null;this._styleProperties=null;this._scopeSelector=null;this._ownStyleProperties=null;this._customStyle=null;},_needsStyleProperties:function(){return Boolean(!nativeVariables&&this._ownStylePropertyNames&&this._ownStylePropertyNames.length);},_validateApplyShim:function(){if(this.__applyShimInvalid){Polymer.ApplyShim.transform(this._styles,this.__proto__);var cssText=styleTransformer.elementStyles(this);if(nativeShadow){var templateStyle=this._template.content.querySelector('style');if(templateStyle){templateStyle.textContent=cssText;}}else{var shadyStyle=this._scopeStyle&&this._scopeStyle.nextSibling;if(shadyStyle){shadyStyle.textContent=cssText;}}}},_beforeAttached:function(){if((!this._scopeSelector||this.__stylePropertiesInvalid)&&this._needsStyleProperties()){this.__stylePropertiesInvalid=false;this._updateStyleProperties();}},_findStyleHost:function(){var e=this,root;while(root=Polymer.dom(e).getOwnerRoot()){if(Polymer.isInstance(root.host)){return root.host;}
3938e=root.host;}
3939return styleDefaults;},_updateStyleProperties:function(){var info,scope=this._findStyleHost();if(!scope._styleProperties){scope._computeStyleProperties();}
3940if(!scope._styleCache){scope._styleCache=new Polymer.StyleCache();}
3941var scopeData=propertyUtils.propertyDataFromStyles(scope._styles,this);var scopeCacheable=!this.__notStyleScopeCacheable;if(scopeCacheable){scopeData.key.customStyle=this.customStyle;info=scope._styleCache.retrieve(this.is,scopeData.key,this._styles);}
3942var scopeCached=Boolean(info);if(scopeCached){this._styleProperties=info._styleProperties;}else{this._computeStyleProperties(scopeData.properties);}
3943this._computeOwnStyleProperties();if(!scopeCached){info=styleCache.retrieve(this.is,this._ownStyleProperties,this._styles);}
3944var globalCached=Boolean(info)&&!scopeCached;var style=this._applyStyleProperties(info);if(!scopeCached){style=style&&nativeShadow?style.cloneNode(true):style;info={style:style,_scopeSelector:this._scopeSelector,_styleProperties:this._styleProperties};if(scopeCacheable){scopeData.key.customStyle={};this.mixin(scopeData.key.customStyle,this.customStyle);scope._styleCache.store(this.is,info,scopeData.key,this._styles);}
3945if(!globalCached){styleCache.store(this.is,Object.create(info),this._ownStyleProperties,this._styles);}}},_computeStyleProperties:function(scopeProps){var scope=this._findStyleHost();if(!scope._styleProperties){scope._computeStyleProperties();}
3946var props=Object.create(scope._styleProperties);var hostAndRootProps=propertyUtils.hostAndRootPropertiesForScope(this);this.mixin(props,hostAndRootProps.hostProps);scopeProps=scopeProps||propertyUtils.propertyDataFromStyles(scope._styles,this).properties;this.mixin(props,scopeProps);this.mixin(props,hostAndRootProps.rootProps);propertyUtils.mixinCustomStyle(props,this.customStyle);propertyUtils.reify(props);this._styleProperties=props;},_computeOwnStyleProperties:function(){var props={};for(var i=0,n;i<this._ownStylePropertyNames.length;i++){n=this._ownStylePropertyNames[i];props[n]=this._styleProperties[n];}
3947this._ownStyleProperties=props;},_scopeCount:0,_applyStyleProperties:function(info){var oldScopeSelector=this._scopeSelector;this._scopeSelector=info?info._scopeSelector:this.is+'-'+this.__proto__._scopeCount++;var style=propertyUtils.applyElementStyle(this,this._styleProperties,this._scopeSelector,info&&info.style);if(!nativeShadow){propertyUtils.applyElementScopeSelector(this,this._scopeSelector,oldScopeSelector,this._scopeCssViaAttr);}
3948return style;},serializeValueToAttribute:function(value,attribute,node){node=node||this;if(attribute==='class'&&!nativeShadow){var host=node===this?this.domHost||this.dataHost:this;if(host){value=host._scopeElementClass(node,value);}}
3949node=this.shadyRoot&&this.shadyRoot._hasDistributed?Polymer.dom(node):node;serializeValueToAttribute.call(this,value,attribute,node);},_scopeElementClass:function(element,selector){if(!nativeShadow&&!this._scopeCssViaAttr){selector=(selector?selector+' ':'')+SCOPE_NAME+' '+this.is+(element._scopeSelector?' '+XSCOPE_NAME+' '+element._scopeSelector:'');}
3950return selector;},updateStyles:function(properties){if(properties){this.mixin(this.customStyle,properties);}
3951if(nativeVariables){propertyUtils.updateNativeStyleProperties(this,this.customStyle);}else{if(this.isAttached){if(this._needsStyleProperties()){this._updateStyleProperties();}else{this._styleProperties=null;}}else{this.__stylePropertiesInvalid=true;}
3952if(this._styleCache){this._styleCache.clear();}
3953this._updateRootStyles();}},_updateRootStyles:function(root){root=root||this.root;var c$=Polymer.dom(root)._query(function(e){return e.shadyRoot||e.shadowRoot;});for(var i=0,l=c$.length,c;i<l&&(c=c$[i]);i++){if(c.updateStyles){c.updateStyles();}}}});Polymer.updateStyles=function(properties){styleDefaults.updateStyles(properties);Polymer.Base._updateRootStyles(document);};var styleCache=new Polymer.StyleCache();Polymer.customStyleCache=styleCache;var SCOPE_NAME=styleTransformer.SCOPE_NAME;var XSCOPE_NAME=propertyUtils.XSCOPE_NAME;}());Polymer.Base._addFeature({_registerFeatures:function(){this._prepIs();if(this.factoryImpl){this._prepConstructor();}
3954this._prepStyles();},_finishRegisterFeatures:function(){this._prepTemplate();this._prepShimStyles();this._prepAnnotations();this._prepEffects();this._prepBehaviors();this._prepPropertyInfo();this._prepBindings();this._prepShady();},_prepBehavior:function(b){this._addPropertyEffects(b.properties);this._addComplexObserverEffects(b.observers);this._addHostAttributes(b.hostAttributes);},_initFeatures:function(){this._setupGestures();this._setupConfigure(this.__data__);this._setupStyleProperties();this._setupDebouncers();this._setupShady();this._registerHost();if(this._template){this._validateApplyShim();this._poolContent();this._beginHosting();this._stampTemplate();this._endHosting();this._marshalAnnotationReferences();}
3955this._marshalInstanceEffects();this._marshalBehaviors();this._marshalHostAttributes();this._marshalAttributes();this._tryReady();},_marshalBehavior:function(b){if(b.listeners){this._listenListeners(b.listeners);}}});(function(){var propertyUtils=Polymer.StyleProperties;var styleUtil=Polymer.StyleUtil;var cssParse=Polymer.CssParse;var styleDefaults=Polymer.StyleDefaults;var styleTransformer=Polymer.StyleTransformer;var applyShim=Polymer.ApplyShim;var debounce=Polymer.Debounce;var settings=Polymer.Settings;var updateDebouncer;Polymer({is:'custom-style',extends:'style',_template:null,properties:{include:String},ready:function(){this.__appliedElement=this.__appliedElement||this;this.__cssBuild=styleUtil.getCssBuildType(this);if(this.__appliedElement!==this){this.__appliedElement.__cssBuild=this.__cssBuild;}
3956if(this.ownerDocument!==window.document&&this.__appliedElement===this){document.head.appendChild(this);}
3957this._tryApply();},attached:function(){this._tryApply();},_tryApply:function(){if(!this._appliesToDocument){if(this.parentNode&&this.parentNode.localName!=='dom-module'){this._appliesToDocument=true;var e=this.__appliedElement;if(!settings.useNativeCSSProperties){this.__needsUpdateStyles=styleDefaults.hasStyleProperties();styleDefaults.addStyle(e);}
3958if(e.textContent||this.include){this._apply(true);}else{var self=this;var observer=new MutationObserver(function(){observer.disconnect();self._apply(true);});observer.observe(e,{childList:true});}}}},_updateStyles:function(){Polymer.updateStyles();},_apply:function(initialApply){var e=this.__appliedElement;if(this.include){e.textContent=styleUtil.cssFromModules(this.include,true)+e.textContent;}
3959if(!e.textContent){return;}
3960var buildType=this.__cssBuild;var targetedBuild=styleUtil.isTargetedBuild(buildType);if(settings.useNativeCSSProperties&&targetedBuild){return;}
3961var styleRules=styleUtil.rulesForStyle(e);if(!targetedBuild){styleUtil.forEachRule(styleRules,function(rule){styleTransformer.documentRule(rule);});if(settings.useNativeCSSProperties&&!buildType){applyShim.transform([e]);}}
3962if(settings.useNativeCSSProperties){e.textContent=styleUtil.toCssText(styleRules);}else{var self=this;var fn=function fn(){self._flushCustomProperties();};if(initialApply){Polymer.RenderStatus.whenReady(fn);}else{fn();}}},_flushCustomProperties:function(){if(this.__needsUpdateStyles){this.__needsUpdateStyles=false;updateDebouncer=debounce(updateDebouncer,this._updateStyles);}else{this._applyCustomProperties();}},_applyCustomProperties:function(){var element=this.__appliedElement;this._computeStyleProperties();var props=this._styleProperties;var rules=styleUtil.rulesForStyle(element);if(!rules){return;}
3963element.textContent=styleUtil.toCssText(rules,function(rule){var css=rule.cssText=rule.parsedCssText;if(rule.propertyInfo&&rule.propertyInfo.cssText){css=cssParse.removeCustomPropAssignment(css);rule.cssText=propertyUtils.valueForProperties(css,props);}});}});}());Polymer.Templatizer={properties:{__hideTemplateChildren__:{observer:'_showHideChildren'}},_instanceProps:Polymer.nob,_parentPropPrefix:'_parent_',templatize:function(template){this._templatized=template;if(!template._content){template._content=template.content;}
3964if(template._content._ctor){this.ctor=template._content._ctor;this._prepParentProperties(this.ctor.prototype,template);return;}
3965var archetype=Object.create(Polymer.Base);this._customPrepAnnotations(archetype,template);this._prepParentProperties(archetype,template);archetype._prepEffects();this._customPrepEffects(archetype);archetype._prepBehaviors();archetype._prepPropertyInfo();archetype._prepBindings();archetype._notifyPathUp=this._notifyPathUpImpl;archetype._scopeElementClass=this._scopeElementClassImpl;archetype.listen=this._listenImpl;archetype._showHideChildren=this._showHideChildrenImpl;archetype.__setPropertyOrig=this.__setProperty;archetype.__setProperty=this.__setPropertyImpl;var _constructor=this._constructorImpl;var ctor=function TemplateInstance(model,host){_constructor.call(this,model,host);};ctor.prototype=archetype;archetype.constructor=ctor;template._content._ctor=ctor;this.ctor=ctor;},_getRootDataHost:function(){return this.dataHost&&this.dataHost._rootDataHost||this.dataHost;},_showHideChildrenImpl:function(hide){var c=this._children;for(var i=0;i<c.length;i++){var n=c[i];if(Boolean(hide)!=Boolean(n.__hideTemplateChildren__)){if(n.nodeType===Node.TEXT_NODE){if(hide){n.__polymerTextContent__=n.textContent;n.textContent='';}else{n.textContent=n.__polymerTextContent__;}}else if(n.style){if(hide){n.__polymerDisplay__=n.style.display;n.style.display='none';}else{n.style.display=n.__polymerDisplay__;}}}
3966n.__hideTemplateChildren__=hide;}},__setPropertyImpl:function(property,value,fromAbove,node){if(node&&node.__hideTemplateChildren__&&property=='textContent'){property='__polymerTextContent__';}
3967this.__setPropertyOrig(property,value,fromAbove,node);},_debounceTemplate:function(fn){Polymer.dom.addDebouncer(this.debounce('_debounceTemplate',fn));},_flushTemplates:function(){Polymer.dom.flush();},_customPrepEffects:function(archetype){var parentProps=archetype._parentProps;for(var prop in parentProps){archetype._addPropertyEffect(prop,'function',this._createHostPropEffector(prop));}
3968for(prop in this._instanceProps){archetype._addPropertyEffect(prop,'function',this._createInstancePropEffector(prop));}},_customPrepAnnotations:function(archetype,template){archetype._template=template;var c=template._content;if(!c._notes){var rootDataHost=archetype._rootDataHost;if(rootDataHost){Polymer.Annotations.prepElement=function(){rootDataHost._prepElement();};}
3969c._notes=Polymer.Annotations.parseAnnotations(template);Polymer.Annotations.prepElement=null;this._processAnnotations(c._notes);}
3970archetype._notes=c._notes;archetype._parentProps=c._parentProps;},_prepParentProperties:function(archetype,template){var parentProps=this._parentProps=archetype._parentProps;if(this._forwardParentProp&&parentProps){var proto=archetype._parentPropProto;var prop;if(!proto){for(prop in this._instanceProps){delete parentProps[prop];}
3971proto=archetype._parentPropProto=Object.create(null);if(template!=this){Polymer.Bind.prepareModel(proto);Polymer.Base.prepareModelNotifyPath(proto);}
3972for(prop in parentProps){var parentProp=this._parentPropPrefix+prop;var effects=[{kind:'function',effect:this._createForwardPropEffector(prop),fn:Polymer.Bind._functionEffect},{kind:'notify',fn:Polymer.Bind._notifyEffect,effect:{event:Polymer.CaseMap.camelToDashCase(parentProp)+'-changed'}}];proto._propertyEffects=proto._propertyEffects||{};proto._propertyEffects[parentProp]=effects;Polymer.Bind._createAccessors(proto,parentProp,effects);}}
3973var self=this;if(template!=this){Polymer.Bind.prepareInstance(template);template._forwardParentProp=function(source,value){self._forwardParentProp(source,value);};}
3974this._extendTemplate(template,proto);template._pathEffector=function(path,value,fromAbove){return self._pathEffectorImpl(path,value,fromAbove);};}},_createForwardPropEffector:function(prop){return function(source,value){this._forwardParentProp(prop,value);};},_createHostPropEffector:function(prop){var prefix=this._parentPropPrefix;return function(source,value){this.dataHost._templatized[prefix+prop]=value;};},_createInstancePropEffector:function(prop){return function(source,value,old,fromAbove){if(!fromAbove){this.dataHost._forwardInstanceProp(this,prop,value);}};},_extendTemplate:function(template,proto){var n$=Object.getOwnPropertyNames(proto);if(proto._propertySetter){template._propertySetter=proto._propertySetter;}
3975for(var i=0,n;i<n$.length&&(n=n$[i]);i++){var val=template[n];if(val&&n=='_propertyEffects'){var pe=Polymer.Base.mixin({},val);template._propertyEffects=Polymer.Base.mixin(pe,proto._propertyEffects);}else{var pd=Object.getOwnPropertyDescriptor(proto,n);Object.defineProperty(template,n,pd);if(val!==undefined){template._propertySetter(n,val);}}}},_showHideChildren:function(hidden){},_forwardInstancePath:function(inst,path,value){},_forwardInstanceProp:function(inst,prop,value){},_notifyPathUpImpl:function(path,value){var dataHost=this.dataHost;var root=Polymer.Path.root(path);dataHost._forwardInstancePath.call(dataHost,this,path,value);if(root in dataHost._parentProps){dataHost._templatized._notifyPath(dataHost._parentPropPrefix+path,value);}},_pathEffectorImpl:function(path,value,fromAbove){if(this._forwardParentPath){if(path.indexOf(this._parentPropPrefix)===0){var subPath=path.substring(this._parentPropPrefix.length);var model=Polymer.Path.root(subPath);if(model in this._parentProps){this._forwardParentPath(subPath,value);}}}
3976Polymer.Base._pathEffector.call(this._templatized,path,value,fromAbove);},_constructorImpl:function(model,host){this._rootDataHost=host._getRootDataHost();this._setupConfigure(model);this._registerHost(host);this._beginHosting();this.root=this.instanceTemplate(this._template);this.root.__noContent=!this._notes._hasContent;this.root.__styleScoped=true;this._endHosting();this._marshalAnnotatedNodes();this._marshalInstanceEffects();this._marshalAnnotatedListeners();var children=[];for(var n=this.root.firstChild;n;n=n.nextSibling){children.push(n);n._templateInstance=this;}
3977this._children=children;if(host.__hideTemplateChildren__){this._showHideChildren(true);}
3978this._tryReady();},_listenImpl:function(node,eventName,methodName){var model=this;var host=this._rootDataHost;var handler=host._createEventHandler(node,eventName,methodName);var decorated=function(e){e.model=model;handler(e);};host._listen(node,eventName,decorated);},_scopeElementClassImpl:function(node,value){var host=this._rootDataHost;if(host){return host._scopeElementClass(node,value);}
3979return value;},stamp:function(model){model=model||{};if(this._parentProps){var templatized=this._templatized;for(var prop in this._parentProps){if(model[prop]===undefined){model[prop]=templatized[this._parentPropPrefix+prop];}}}
3980return new this.ctor(model,this);},modelForElement:function(el){var model;while(el){if(model=el._templateInstance){if(model.dataHost!=this){el=model.dataHost;}else{return model;}}else{el=el.parentNode;}}}};Polymer({is:'dom-template',extends:'template',_template:null,behaviors:[Polymer.Templatizer],ready:function(){this.templatize(this);}});Polymer._collections=new WeakMap();Polymer.Collection=function(userArray){Polymer._collections.set(userArray,this);this.userArray=userArray;this.store=userArray.slice();this.initMap();};Polymer.Collection.prototype={constructor:Polymer.Collection,initMap:function(){var omap=this.omap=new WeakMap();var pmap=this.pmap={};var s=this.store;for(var i=0;i<s.length;i++){var item=s[i];if(item&&typeof item=='object'){omap.set(item,i);}else{pmap[item]=i;}}},add:function(item){var key=this.store.push(item)-1;if(item&&typeof item=='object'){this.omap.set(item,key);}else{this.pmap[item]=key;}
3981return'#'+key;},removeKey:function(key){if(key=this._parseKey(key)){this._removeFromMap(this.store[key]);delete this.store[key];}},_removeFromMap:function(item){if(item&&typeof item=='object'){this.omap.delete(item);}else{delete this.pmap[item];}},remove:function(item){var key=this.getKey(item);this.removeKey(key);return key;},getKey:function(item){var key;if(item&&typeof item=='object'){key=this.omap.get(item);}else{key=this.pmap[item];}
3982if(key!=undefined){return'#'+key;}},getKeys:function(){return Object.keys(this.store).map(function(key){return'#'+key;});},_parseKey:function(key){if(key&&key[0]=='#'){return key.slice(1);}},setItem:function(key,item){if(key=this._parseKey(key)){var old=this.store[key];if(old){this._removeFromMap(old);}
3983if(item&&typeof item=='object'){this.omap.set(item,key);}else{this.pmap[item]=key;}
3984this.store[key]=item;}},getItem:function(key){if(key=this._parseKey(key)){return this.store[key];}},getItems:function(){var items=[],store=this.store;for(var key in store){items.push(store[key]);}
3985return items;},_applySplices:function(splices){var keyMap={},key;for(var i=0,s;i<splices.length&&(s=splices[i]);i++){s.addedKeys=[];for(var j=0;j<s.removed.length;j++){key=this.getKey(s.removed[j]);keyMap[key]=keyMap[key]?null:-1;}
3986for(j=0;j<s.addedCount;j++){var item=this.userArray[s.index+j];key=this.getKey(item);key=key===undefined?this.add(item):key;keyMap[key]=keyMap[key]?null:1;s.addedKeys.push(key);}}
3987var removed=[];var added=[];for(key in keyMap){if(keyMap[key]<0){this.removeKey(key);removed.push(key);}
3988if(keyMap[key]>0){added.push(key);}}
3989return[{removed:removed,added:added}];}};Polymer.Collection.get=function(userArray){return Polymer._collections.get(userArray)||new Polymer.Collection(userArray);};Polymer.Collection.applySplices=function(userArray,splices){var coll=Polymer._collections.get(userArray);return coll?coll._applySplices(splices):null;};Polymer({is:'dom-repeat',extends:'template',_template:null,properties:{items:{type:Array},as:{type:String,value:'item'},indexAs:{type:String,value:'index'},sort:{type:Function,observer:'_sortChanged'},filter:{type:Function,observer:'_filterChanged'},observe:{type:String,observer:'_observeChanged'},delay:Number,renderedItemCount:{type:Number,notify:!Polymer.Settings.suppressTemplateNotifications,readOnly:true},initialCount:{type:Number,observer:'_initializeChunking'},targetFramerate:{type:Number,value:20},notifyDomChange:{type:Boolean},_targetFrameTime:{type:Number,computed:'_computeFrameTime(targetFramerate)'}},behaviors:[Polymer.Templatizer],observers:['_itemsChanged(items.*)'],created:function(){this._instances=[];this._pool=[];this._limit=Infinity;var self=this;this._boundRenderChunk=function(){self._renderChunk();};},detached:function(){this.__isDetached=true;for(var i=0;i<this._instances.length;i++){this._detachInstance(i);}},attached:function(){if(this.__isDetached){this.__isDetached=false;var refNode;var parentNode=Polymer.dom(this).parentNode;if(parentNode.localName==this.is){refNode=parentNode;parentNode=Polymer.dom(parentNode).parentNode;}else{refNode=this;}
3990var parent=Polymer.dom(parentNode);for(var i=0;i<this._instances.length;i++){this._attachInstance(i,parent,refNode);}}},ready:function(){this._instanceProps={__key__:true};this._instanceProps[this.as]=true;this._instanceProps[this.indexAs]=true;if(!this.ctor){this.templatize(this);}},_sortChanged:function(sort){var dataHost=this._getRootDataHost();this._sortFn=sort&&(typeof sort=='function'?sort:function(){return dataHost[sort].apply(dataHost,arguments);});this._needFullRefresh=true;if(this.items){this._debounceTemplate(this._render);}},_filterChanged:function(filter){var dataHost=this._getRootDataHost();this._filterFn=filter&&(typeof filter=='function'?filter:function(){return dataHost[filter].apply(dataHost,arguments);});this._needFullRefresh=true;if(this.items){this._debounceTemplate(this._render);}},_computeFrameTime:function(rate){return Math.ceil(1000/rate);},_initializeChunking:function(){if(this.initialCount){this._limit=this.initialCount;this._chunkCount=this.initialCount;this._lastChunkTime=performance.now();}},_tryRenderChunk:function(){if(this.items&&this._limit<this.items.length){this.debounce('renderChunk',this._requestRenderChunk);}},_requestRenderChunk:function(){requestAnimationFrame(this._boundRenderChunk);},_renderChunk:function(){var currChunkTime=performance.now();var ratio=this._targetFrameTime/(currChunkTime-this._lastChunkTime);this._chunkCount=Math.round(this._chunkCount*ratio)||1;this._limit+=this._chunkCount;this._lastChunkTime=currChunkTime;this._debounceTemplate(this._render);},_observeChanged:function(){this._observePaths=this.observe&&this.observe.replace('.*','.').split(' ');},_itemsChanged:function(change){if(change.path=='items'){if(Array.isArray(this.items)){this.collection=Polymer.Collection.get(this.items);}else if(!this.items){this.collection=null;}else{this._error(this._logf('dom-repeat','expected array for `items`,'+' found',this.items));}
3991this._keySplices=[];this._indexSplices=[];this._needFullRefresh=true;this._initializeChunking();this._debounceTemplate(this._render);}else if(change.path=='items.splices'){this._keySplices=this._keySplices.concat(change.value.keySplices);this._indexSplices=this._indexSplices.concat(change.value.indexSplices);this._debounceTemplate(this._render);}else{var subpath=change.path.slice(6);this._forwardItemPath(subpath,change.value);this._checkObservedPaths(subpath);}},_checkObservedPaths:function(path){if(this._observePaths){path=path.substring(path.indexOf('.')+1);var paths=this._observePaths;for(var i=0;i<paths.length;i++){if(path.indexOf(paths[i])===0){this._needFullRefresh=true;if(this.delay){this.debounce('render',this._render,this.delay);}else{this._debounceTemplate(this._render);}
3992return;}}}},render:function(){this._needFullRefresh=true;this._debounceTemplate(this._render);this._flushTemplates();},_render:function(){if(this._needFullRefresh){this._applyFullRefresh();this._needFullRefresh=false;}else if(this._keySplices.length){if(this._sortFn){this._applySplicesUserSort(this._keySplices);}else{if(this._filterFn){this._applyFullRefresh();}else{this._applySplicesArrayOrder(this._indexSplices);}}}else{}
3993this._keySplices=[];this._indexSplices=[];var keyToIdx=this._keyToInstIdx={};for(var i=this._instances.length-1;i>=0;i--){var inst=this._instances[i];if(inst.isPlaceholder&&i<this._limit){inst=this._insertInstance(i,inst.__key__);}else if(!inst.isPlaceholder&&i>=this._limit){inst=this._downgradeInstance(i,inst.__key__);}
3994keyToIdx[inst.__key__]=i;if(!inst.isPlaceholder){inst.__setProperty(this.indexAs,i,true);}}
3995this._pool.length=0;this._setRenderedItemCount(this._instances.length);if(!Polymer.Settings.suppressTemplateNotifications||this.notifyDomChange){this.fire('dom-change');}
3996this._tryRenderChunk();},_applyFullRefresh:function(){var c=this.collection;var keys;if(this._sortFn){keys=c?c.getKeys():[];}else{keys=[];var items=this.items;if(items){for(var i=0;i<items.length;i++){keys.push(c.getKey(items[i]));}}}
3997var self=this;if(this._filterFn){keys=keys.filter(function(a){return self._filterFn(c.getItem(a));});}
3998if(this._sortFn){keys.sort(function(a,b){return self._sortFn(c.getItem(a),c.getItem(b));});}
3999for(i=0;i<keys.length;i++){var key=keys[i];var inst=this._instances[i];if(inst){inst.__key__=key;if(!inst.isPlaceholder&&i<this._limit){inst.__setProperty(this.as,c.getItem(key),true);}}else if(i<this._limit){this._insertInstance(i,key);}else{this._insertPlaceholder(i,key);}}
4000for(var j=this._instances.length-1;j>=i;j--){this._detachAndRemoveInstance(j);}},_numericSort:function(a,b){return a-b;},_applySplicesUserSort:function(splices){var c=this.collection;var keyMap={};var key;for(var i=0,s;i<splices.length&&(s=splices[i]);i++){for(var j=0;j<s.removed.length;j++){key=s.removed[j];keyMap[key]=keyMap[key]?null:-1;}
4001for(j=0;j<s.added.length;j++){key=s.added[j];keyMap[key]=keyMap[key]?null:1;}}
4002var removedIdxs=[];var addedKeys=[];for(key in keyMap){if(keyMap[key]===-1){removedIdxs.push(this._keyToInstIdx[key]);}
4003if(keyMap[key]===1){addedKeys.push(key);}}
4004if(removedIdxs.length){removedIdxs.sort(this._numericSort);for(i=removedIdxs.length-1;i>=0;i--){var idx=removedIdxs[i];if(idx!==undefined){this._detachAndRemoveInstance(idx);}}}
4005var self=this;if(addedKeys.length){if(this._filterFn){addedKeys=addedKeys.filter(function(a){return self._filterFn(c.getItem(a));});}
4006addedKeys.sort(function(a,b){return self._sortFn(c.getItem(a),c.getItem(b));});var start=0;for(i=0;i<addedKeys.length;i++){start=this._insertRowUserSort(start,addedKeys[i]);}}},_insertRowUserSort:function(start,key){var c=this.collection;var item=c.getItem(key);var end=this._instances.length-1;var idx=-1;while(start<=end){var mid=start+end>>1;var midKey=this._instances[mid].__key__;var cmp=this._sortFn(c.getItem(midKey),item);if(cmp<0){start=mid+1;}else if(cmp>0){end=mid-1;}else{idx=mid;break;}}
4007if(idx<0){idx=end+1;}
4008this._insertPlaceholder(idx,key);return idx;},_applySplicesArrayOrder:function(splices){for(var i=0,s;i<splices.length&&(s=splices[i]);i++){for(var j=0;j<s.removed.length;j++){this._detachAndRemoveInstance(s.index);}
4009for(j=0;j<s.addedKeys.length;j++){this._insertPlaceholder(s.index+j,s.addedKeys[j]);}}},_detachInstance:function(idx){var inst=this._instances[idx];if(!inst.isPlaceholder){for(var i=0;i<inst._children.length;i++){var el=inst._children[i];Polymer.dom(inst.root).appendChild(el);}
4010return inst;}},_attachInstance:function(idx,parent,refNode){var inst=this._instances[idx];if(!inst.isPlaceholder){parent.insertBefore(inst.root,refNode);}},_detachAndRemoveInstance:function(idx){var inst=this._detachInstance(idx);if(inst){this._pool.push(inst);}
4011this._instances.splice(idx,1);},_insertPlaceholder:function(idx,key){this._instances.splice(idx,0,{isPlaceholder:true,__key__:key});},_stampInstance:function(idx,key){var model={__key__:key};model[this.as]=this.collection.getItem(key);model[this.indexAs]=idx;return this.stamp(model);},_insertInstance:function(idx,key){var inst=this._pool.pop();if(inst){inst.__setProperty(this.as,this.collection.getItem(key),true);inst.__setProperty('__key__',key,true);}else{inst=this._stampInstance(idx,key);}
4012var beforeRow=this._instances[idx+1];var beforeNode=beforeRow&&!beforeRow.isPlaceholder?beforeRow._children[0]:this;var parentNode=Polymer.dom(this).parentNode;if(parentNode.localName==this.is){if(beforeNode==this){beforeNode=parentNode;}
4013parentNode=Polymer.dom(parentNode).parentNode;}
4014Polymer.dom(parentNode).insertBefore(inst.root,beforeNode);this._instances[idx]=inst;return inst;},_downgradeInstance:function(idx,key){var inst=this._detachInstance(idx);if(inst){this._pool.push(inst);}
4015inst={isPlaceholder:true,__key__:key};this._instances[idx]=inst;return inst;},_showHideChildren:function(hidden){for(var i=0;i<this._instances.length;i++){if(!this._instances[i].isPlaceholder)
4016this._instances[i]._showHideChildren(hidden);}},_forwardInstanceProp:function(inst,prop,value){if(prop==this.as){var idx;if(this._sortFn||this._filterFn){idx=this.items.indexOf(this.collection.getItem(inst.__key__));}else{idx=inst[this.indexAs];}
4017this.set('items.'+idx,value);}},_forwardInstancePath:function(inst,path,value){if(path.indexOf(this.as+'.')===0){this._notifyPath('items.'+inst.__key__+'.'+path.slice(this.as.length+1),value);}},_forwardParentProp:function(prop,value){var i$=this._instances;for(var i=0,inst;i<i$.length&&(inst=i$[i]);i++){if(!inst.isPlaceholder){inst.__setProperty(prop,value,true);}}},_forwardParentPath:function(path,value){var i$=this._instances;for(var i=0,inst;i<i$.length&&(inst=i$[i]);i++){if(!inst.isPlaceholder){inst._notifyPath(path,value,true);}}},_forwardItemPath:function(path,value){if(this._keyToInstIdx){var dot=path.indexOf('.');var key=path.substring(0,dot<0?path.length:dot);var idx=this._keyToInstIdx[key];var inst=this._instances[idx];if(inst&&!inst.isPlaceholder){if(dot>=0){path=this.as+'.'+path.substring(dot+1);inst._notifyPath(path,value,true);}else{inst.__setProperty(this.as,value,true);}}}},itemForElement:function(el){var instance=this.modelForElement(el);return instance&&instance[this.as];},keyForElement:function(el){var instance=this.modelForElement(el);return instance&&instance.__key__;},indexForElement:function(el){var instance=this.modelForElement(el);return instance&&instance[this.indexAs];}});Polymer({is:'array-selector',_template:null,properties:{items:{type:Array,observer:'clearSelection'},multi:{type:Boolean,value:false,observer:'clearSelection'},selected:{type:Object,notify:true},selectedItem:{type:Object,notify:true},toggle:{type:Boolean,value:false}},clearSelection:function(){if(Array.isArray(this.selected)){for(var i=0;i<this.selected.length;i++){this.unlinkPaths('selected.'+i);}}else{this.unlinkPaths('selected');this.unlinkPaths('selectedItem');}
4018if(this.multi){if(!this.selected||this.selected.length){this.selected=[];this._selectedColl=Polymer.Collection.get(this.selected);}}else{this.selected=null;this._selectedColl=null;}
4019this.selectedItem=null;},isSelected:function(item){if(this.multi){return this._selectedColl.getKey(item)!==undefined;}else{return this.selected==item;}},deselect:function(item){if(this.multi){if(this.isSelected(item)){var skey=this._selectedColl.getKey(item);this.arrayDelete('selected',item);this.unlinkPaths('selected.'+skey);}}else{this.selected=null;this.selectedItem=null;this.unlinkPaths('selected');this.unlinkPaths('selectedItem');}},select:function(item){var icol=Polymer.Collection.get(this.items);var key=icol.getKey(item);if(this.multi){if(this.isSelected(item)){if(this.toggle){this.deselect(item);}}else{this.push('selected',item);var skey=this._selectedColl.getKey(item);this.linkPaths('selected.'+skey,'items.'+key);}}else{if(this.toggle&&item==this.selected){this.deselect();}else{this.selected=item;this.selectedItem=item;this.linkPaths('selected','items.'+key);this.linkPaths('selectedItem','items.'+key);}}}});Polymer({is:'dom-if',extends:'template',_template:null,properties:{'if':{type:Boolean,value:false,observer:'_queueRender'},restamp:{type:Boolean,value:false,observer:'_queueRender'},notifyDomChange:{type:Boolean}},behaviors:[Polymer.Templatizer],_queueRender:function(){this._debounceTemplate(this._render);},detached:function(){var parentNode=this.parentNode;if(parentNode&&parentNode.localName==this.is){parentNode=Polymer.dom(parentNode).parentNode;}
4020if(!parentNode||parentNode.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&(!Polymer.Settings.hasShadow||!(parentNode instanceof ShadowRoot))){this._teardownInstance();}},attached:function(){if(this.if&&this.ctor){this.async(this._ensureInstance);}},render:function(){this._flushTemplates();},_render:function(){if(this.if){if(!this.ctor){this.templatize(this);}
4021this._ensureInstance();this._showHideChildren();}else if(this.restamp){this._teardownInstance();}
4022if(!this.restamp&&this._instance){this._showHideChildren();}
4023if(this.if!=this._lastIf){if(!Polymer.Settings.suppressTemplateNotifications||this.notifyDomChange){this.fire('dom-change');}
4024this._lastIf=this.if;}},_ensureInstance:function(){var refNode;var parentNode=Polymer.dom(this).parentNode;if(parentNode&&parentNode.localName==this.is){refNode=parentNode;parentNode=Polymer.dom(parentNode).parentNode;}else{refNode=this;}
4025if(parentNode){if(!this._instance){this._instance=this.stamp();var root=this._instance.root;Polymer.dom(parentNode).insertBefore(root,refNode);}else{var c$=this._instance._children;if(c$&&c$.length){var lastChild=Polymer.dom(refNode).previousSibling;if(lastChild!==c$[c$.length-1]){for(var i=0,n;i<c$.length&&(n=c$[i]);i++){Polymer.dom(parentNode).insertBefore(n,refNode);}}}}}},_teardownInstance:function(){if(this._instance){var c$=this._instance._children;if(c$&&c$.length){var parent=Polymer.dom(Polymer.dom(c$[0]).parentNode);for(var i=0,n;i<c$.length&&(n=c$[i]);i++){parent.removeChild(n);}}
4026this._instance=null;}},_showHideChildren:function(){var hidden=this.__hideTemplateChildren__||!this.if;if(this._instance){this._instance._showHideChildren(hidden);}},_forwardParentProp:function(prop,value){if(this._instance){this._instance.__setProperty(prop,value,true);}},_forwardParentPath:function(path,value){if(this._instance){this._instance._notifyPath(path,value,true);}}});Polymer({is:'dom-bind',properties:{notifyDomChange:{type:Boolean}},extends:'template',_template:null,created:function(){var self=this;Polymer.RenderStatus.whenReady(function(){if(document.readyState=='loading'){document.addEventListener('DOMContentLoaded',function(){self._markImportsReady();});}else{self._markImportsReady();}});},_ensureReady:function(){if(!this._readied){this._readySelf();}},_markImportsReady:function(){this._importsReady=true;this._ensureReady();},_registerFeatures:function(){this._prepConstructor();},_insertChildren:function(){var refNode;var parentNode=Polymer.dom(this).parentNode;if(parentNode.localName==this.is){refNode=parentNode;parentNode=Polymer.dom(parentNode).parentNode;}else{refNode=this;}
4027Polymer.dom(parentNode).insertBefore(this.root,refNode);},_removeChildren:function(){if(this._children){for(var i=0;i<this._children.length;i++){this.root.appendChild(this._children[i]);}}},_initFeatures:function(){},_scopeElementClass:function(element,selector){if(this.dataHost){return this.dataHost._scopeElementClass(element,selector);}else{return selector;}},_configureInstanceProperties:function(){},_prepConfigure:function(){var config={};for(var prop in this._propertyEffects){config[prop]=this[prop];}
4028var setupConfigure=this._setupConfigure;this._setupConfigure=function(){setupConfigure.call(this,config);};},attached:function(){if(this._importsReady){this.render();}},detached:function(){this._removeChildren();},render:function(){this._ensureReady();if(!this._children){this._template=this;this._prepAnnotations();this._prepEffects();this._prepBehaviors();this._prepConfigure();this._prepBindings();this._prepPropertyInfo();Polymer.Base._initFeatures.call(this);this._children=Polymer.TreeApi.arrayCopyChildNodes(this.root);}
4029this._insertChildren();if(!Polymer.Settings.suppressTemplateNotifications||this.notifyDomChange){this.fire('dom-change');}}});'use strict';if(!Polymer.Settings.useNativeShadow){tr.showPanic('Polymer error','base only works in shadow mode');}'use strict';const global=this.window||this.global;this.tr=(function(){if(global.tr)return global.tr;function exportPath(name){const parts=name.split('.');let cur=global;for(let part;parts.length&&(part=parts.shift());){if(part in cur){cur=cur[part];}else{cur=cur[part]={};}}
4030return cur;}
4031function isExported(name){const parts=name.split('.');let cur=global;for(let part;parts.length&&(part=parts.shift());){if(part in cur){cur=cur[part];}else{return false;}}
4032return true;}
4033function isDefined(name){const parts=name.split('.');let curObject=global;for(let i=0;i<parts.length;i++){const partName=parts[i];const nextObject=curObject[partName];if(nextObject===undefined)return false;curObject=nextObject;}
4034return true;}
4035let panicElement=undefined;const rawPanicMessages=[];function showPanicElementIfNeeded(){if(panicElement)return;const panicOverlay=document.createElement('div');panicOverlay.style.backgroundColor='white';panicOverlay.style.border='3px solid red';panicOverlay.style.boxSizing='border-box';panicOverlay.style.color='black';panicOverlay.style.display='flex';panicOverlay.style.height='100%';panicOverlay.style.left=0;panicOverlay.style.padding='8px';panicOverlay.style.position='fixed';panicOverlay.style.top=0;panicOverlay.style.webkitFlexDirection='column';panicOverlay.style.width='100%';panicElement=document.createElement('div');panicElement.style.webkitFlex='1 1 auto';panicElement.style.overflow='auto';panicOverlay.appendChild(panicElement);if(!document.body){setTimeout(function(){document.body.appendChild(panicOverlay);},150);}else{document.body.appendChild(panicOverlay);}}
4036function showPanic(panicTitle,panicDetails){if(tr.isHeadless){if(panicDetails instanceof Error)throw panicDetails;throw new Error('Panic: '+panicTitle+':\n'+panicDetails);}
4037if(panicDetails instanceof Error){panicDetails=panicDetails.stack;}
4038showPanicElementIfNeeded();const panicMessageEl=document.createElement('div');panicMessageEl.innerHTML='<h2 id="message"></h2>'+'<pre id="details"></pre>';panicMessageEl.querySelector('#message').textContent=panicTitle;panicMessageEl.querySelector('#details').textContent=panicDetails;panicElement.appendChild(panicMessageEl);rawPanicMessages.push({title:panicTitle,details:panicDetails});}
4039function hasPanic(){return rawPanicMessages.length!==0;}
4040function getPanicText(){return rawPanicMessages.map(function(msg){return msg.title;}).join(', ');}
4041function exportTo(namespace,fn){const obj=exportPath(namespace);const exports=fn();for(const propertyName in exports){const propertyDescriptor=Object.getOwnPropertyDescriptor(exports,propertyName);if(propertyDescriptor){Object.defineProperty(obj,propertyName,propertyDescriptor);}}}
4042function initialize(){if(global.isVinn){tr.isVinn=true;}else if(global.process&&global.process.versions.node){tr.isNode=true;}else{tr.isVinn=false;tr.isNode=false;tr.doc=document;tr.isMac=/Mac/.test(navigator.platform);tr.isWindows=/Win/.test(navigator.platform);tr.isChromeOS=/CrOS/.test(navigator.userAgent);tr.isLinux=/Linux/.test(navigator.userAgent);}
4043tr.isHeadless=tr.isVinn||tr.isNode;}
4044return{initialize,exportTo,isExported,isDefined,showPanic,hasPanic,getPanicText,};})();tr.initialize();'use strict';tr.exportTo('tr.b',function(){function EventTarget(){}
4045EventTarget.decorate=function(target){for(const k in EventTarget.prototype){if(k==='decorate')continue;const v=EventTarget.prototype[k];if(typeof v!=='function')continue;target[k]=v;}};EventTarget.prototype={addEventListener(type,handler){if(!this.listeners_){this.listeners_=Object.create(null);}
4046if(!(type in this.listeners_)){this.listeners_[type]=[handler];}else{const handlers=this.listeners_[type];if(handlers.indexOf(handler)<0){handlers.push(handler);}}},removeEventListener(type,handler){if(!this.listeners_)return;if(type in this.listeners_){const handlers=this.listeners_[type];const index=handlers.indexOf(handler);if(index>=0){if(handlers.length===1){delete this.listeners_[type];}else{handlers.splice(index,1);}}}},dispatchEvent(event){if(!this.listeners_)return true;event.__defineGetter__('target',()=>this);const realPreventDefault=event.preventDefault;event.preventDefault=function(){realPreventDefault.call(this);this.rawReturnValue=false;};const type=event.type;let prevented=0;if(type in this.listeners_){const handlers=this.listeners_[type].concat();for(let i=0,handler;handler=handlers[i];i++){if(handler.handleEvent){prevented|=handler.handleEvent.call(handler,event)===false;}else{prevented|=handler.call(this,event)===false;}}}
4047return!prevented&&event.rawReturnValue;},async dispatchAsync(event){if(!this.listeners_)return true;const listeners=this.listeners_[event.type];if(listeners===undefined)return;await Promise.all(listeners.slice().map(listener=>{if(listener.handleEvent){return listener.handleEvent.call(listener,event);}
4048return listener.call(this,event);}));},hasEventListener(type){return(this.listeners_!==undefined&&this.listeners_[type]!==undefined);}};return{EventTarget,};});'use strict';tr.exportTo('tr.b',function(){function RegisteredTypeInfo(constructor,metadata){this.constructor=constructor;this.metadata=metadata;}
4049const BASIC_REGISTRY_MODE='BASIC_REGISTRY_MODE';const TYPE_BASED_REGISTRY_MODE='TYPE_BASED_REGISTRY_MODE';const ALL_MODES={BASIC_REGISTRY_MODE:true,TYPE_BASED_REGISTRY_MODE:true};function ExtensionRegistryOptions(mode){if(mode===undefined){throw new Error('Mode is required');}
4050if(!ALL_MODES[mode]){throw new Error('Not a mode.');}
4051this.mode_=mode;this.defaultMetadata_={};this.defaultConstructor_=undefined;this.defaultTypeInfo_=undefined;this.frozen_=false;}
4052ExtensionRegistryOptions.prototype={freeze(){if(this.frozen_){throw new Error('Frozen');}
4053this.frozen_=true;},get mode(){return this.mode_;},get defaultMetadata(){return this.defaultMetadata_;},set defaultMetadata(defaultMetadata){if(this.frozen_){throw new Error('Frozen');}
4054this.defaultMetadata_=defaultMetadata;this.defaultTypeInfo_=undefined;},get defaultConstructor(){return this.defaultConstructor_;},set defaultConstructor(defaultConstructor){if(this.frozen_){throw new Error('Frozen');}
4055this.defaultConstructor_=defaultConstructor;this.defaultTypeInfo_=undefined;},get defaultTypeInfo(){if(this.defaultTypeInfo_===undefined&&this.defaultConstructor_){this.defaultTypeInfo_=new RegisteredTypeInfo(this.defaultConstructor,this.defaultMetadata);}
4056return this.defaultTypeInfo_;},validateConstructor(constructor){if(!this.mandatoryBaseClass)return;let curProto=constructor.prototype.__proto__;let ok=false;while(curProto){if(curProto===this.mandatoryBaseClass.prototype){ok=true;break;}
4057curProto=curProto.__proto__;}
4058if(!ok){throw new Error(constructor+'must be subclass of '+registry);}}};return{BASIC_REGISTRY_MODE,TYPE_BASED_REGISTRY_MODE,ExtensionRegistryOptions,RegisteredTypeInfo,};});'use strict';tr.exportTo('tr.b',function(){let Event;if(tr.isHeadless){function HeadlessEvent(type,opt_bubbles,opt_preventable){this.type=type;this.bubbles=(opt_bubbles!==undefined?!!opt_bubbles:false);this.cancelable=(opt_preventable!==undefined?!!opt_preventable:false);this.defaultPrevented=false;this.cancelBubble=false;}
4059HeadlessEvent.prototype={preventDefault(){this.defaultPrevented=true;},stopPropagation(){this.cancelBubble=true;}};Event=HeadlessEvent;}else{function TrEvent(type,opt_bubbles,opt_preventable){const e=tr.doc.createEvent('Event');e.initEvent(type,!!opt_bubbles,!!opt_preventable);e.__proto__=global.Event.prototype;return e;}
4060TrEvent.prototype={__proto__:global.Event.prototype};Event=TrEvent;}
4061function dispatchSimpleEvent(target,type,opt_bubbles,opt_cancelable,opt_fields){const e=new tr.b.Event(type,opt_bubbles,opt_cancelable);Object.assign(e,opt_fields);return target.dispatchEvent(e);}
4062async function dispatchSimpleEventAsync(target,type,opt_fields){const e=new tr.b.Event(type,false,false);Object.assign(e,opt_fields);return await target.dispatchAsync(e);}
4063return{Event,dispatchSimpleEvent,dispatchSimpleEventAsync,};});'use strict';tr.exportTo('tr.b',function(){const RegisteredTypeInfo=tr.b.RegisteredTypeInfo;const ExtensionRegistryOptions=tr.b.ExtensionRegistryOptions;function decorateBasicExtensionRegistry(registry,extensionRegistryOptions){const savedStateStack=[];registry.registeredTypeInfos_=[];registry.register=function(constructor,opt_metadata){if(registry.findIndexOfRegisteredConstructor(constructor)!==undefined){throw new Error('Handler already registered for '+constructor);}
4064extensionRegistryOptions.validateConstructor(constructor);const metadata={};for(const k in extensionRegistryOptions.defaultMetadata){metadata[k]=extensionRegistryOptions.defaultMetadata[k];}
4065if(opt_metadata){for(const k in opt_metadata){metadata[k]=opt_metadata[k];}}
4066const typeInfo=new RegisteredTypeInfo(constructor,metadata);let e=new tr.b.Event('will-register');e.typeInfo=typeInfo;registry.dispatchEvent(e);registry.registeredTypeInfos_.push(typeInfo);e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.pushCleanStateBeforeTest=function(){savedStateStack.push(registry.registeredTypeInfos_);registry.registeredTypeInfos_=[];const e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.popCleanStateAfterTest=function(){registry.registeredTypeInfos_=savedStateStack[0];savedStateStack.splice(0,1);const e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.findIndexOfRegisteredConstructor=function(constructor){for(let i=0;i<registry.registeredTypeInfos_.length;i++){if(registry.registeredTypeInfos_[i].constructor===constructor){return i;}}
4067return undefined;};registry.unregister=function(constructor){const foundIndex=registry.findIndexOfRegisteredConstructor(constructor);if(foundIndex===undefined){throw new Error(constructor+' not registered');}
4068registry.registeredTypeInfos_.splice(foundIndex,1);const e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.getAllRegisteredTypeInfos=function(){return registry.registeredTypeInfos_;};registry.findTypeInfo=function(constructor){const foundIndex=this.findIndexOfRegisteredConstructor(constructor);if(foundIndex!==undefined){return this.registeredTypeInfos_[foundIndex];}
4069return undefined;};registry.findTypeInfoMatching=function(predicate,opt_this){opt_this=opt_this?opt_this:undefined;for(let i=0;i<registry.registeredTypeInfos_.length;++i){const typeInfo=registry.registeredTypeInfos_[i];if(predicate.call(opt_this,typeInfo)){return typeInfo;}}
4070return extensionRegistryOptions.defaultTypeInfo;};registry.findTypeInfoWithName=function(name){if(typeof(name)!=='string'){throw new Error('Name is not a string.');}
4071const typeInfo=registry.findTypeInfoMatching(function(ti){return ti.constructor.name===name;});if(typeInfo)return typeInfo;return undefined;};}
4072return{_decorateBasicExtensionRegistry:decorateBasicExtensionRegistry};});'use strict';tr.exportTo('tr.b',function(){const categoryPartsFor={};function getCategoryParts(category){let parts=categoryPartsFor[category];if(parts!==undefined)return parts;parts=category.split(',');categoryPartsFor[category]=parts;return parts;}
4073return{getCategoryParts,};});'use strict';tr.exportTo('tr.b',function(){const getCategoryParts=tr.b.getCategoryParts;const RegisteredTypeInfo=tr.b.RegisteredTypeInfo;const ExtensionRegistryOptions=tr.b.ExtensionRegistryOptions;function decorateTypeBasedExtensionRegistry(registry,extensionRegistryOptions){const savedStateStack=[];registry.registeredTypeInfos_=[];registry.categoryPartToTypeInfoMap_=new Map();registry.typeNameToTypeInfoMap_=new Map();registry.register=function(constructor,metadata){extensionRegistryOptions.validateConstructor(constructor);const typeInfo=new RegisteredTypeInfo(constructor,metadata||extensionRegistryOptions.defaultMetadata);typeInfo.typeNames=[];typeInfo.categoryParts=[];if(metadata&&metadata.typeName){typeInfo.typeNames.push(metadata.typeName);}
4074if(metadata&&metadata.typeNames){typeInfo.typeNames.push.apply(typeInfo.typeNames,metadata.typeNames);}
4075if(metadata&&metadata.categoryParts){typeInfo.categoryParts.push.apply(typeInfo.categoryParts,metadata.categoryParts);}
4076if(typeInfo.typeNames.length===0&&typeInfo.categoryParts.length===0){throw new Error('typeName or typeNames must be provided');}
4077typeInfo.typeNames.forEach(function(typeName){if(registry.typeNameToTypeInfoMap_.has(typeName)){throw new Error('typeName '+typeName+' already registered');}});typeInfo.categoryParts.forEach(function(categoryPart){if(registry.categoryPartToTypeInfoMap_.has(categoryPart)){throw new Error('categoryPart '+categoryPart+' already registered');}});let e=new tr.b.Event('will-register');e.typeInfo=typeInfo;registry.dispatchEvent(e);typeInfo.typeNames.forEach(function(typeName){registry.typeNameToTypeInfoMap_.set(typeName,typeInfo);});typeInfo.categoryParts.forEach(function(categoryPart){registry.categoryPartToTypeInfoMap_.set(categoryPart,typeInfo);});registry.registeredTypeInfos_.push(typeInfo);e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.pushCleanStateBeforeTest=function(){savedStateStack.push({registeredTypeInfos:registry.registeredTypeInfos_,typeNameToTypeInfoMap:registry.typeNameToTypeInfoMap_,categoryPartToTypeInfoMap:registry.categoryPartToTypeInfoMap_});registry.registeredTypeInfos_=[];registry.typeNameToTypeInfoMap_=new Map();registry.categoryPartToTypeInfoMap_=new Map();const e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.popCleanStateAfterTest=function(){const state=savedStateStack[0];savedStateStack.splice(0,1);registry.registeredTypeInfos_=state.registeredTypeInfos;registry.typeNameToTypeInfoMap_=state.typeNameToTypeInfoMap;registry.categoryPartToTypeInfoMap_=state.categoryPartToTypeInfoMap;const e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.unregister=function(constructor){let typeInfoIndex=-1;for(let i=0;i<registry.registeredTypeInfos_.length;i++){if(registry.registeredTypeInfos_[i].constructor===constructor){typeInfoIndex=i;break;}}
4078if(typeInfoIndex===-1){throw new Error(constructor+' not registered');}
4079const typeInfo=registry.registeredTypeInfos_[typeInfoIndex];registry.registeredTypeInfos_.splice(typeInfoIndex,1);typeInfo.typeNames.forEach(function(typeName){registry.typeNameToTypeInfoMap_.delete(typeName);});typeInfo.categoryParts.forEach(function(categoryPart){registry.categoryPartToTypeInfoMap_.delete(categoryPart);});const e=new tr.b.Event('registry-changed');registry.dispatchEvent(e);};registry.getTypeInfo=function(category,typeName){if(category){const categoryParts=getCategoryParts(category);for(let i=0;i<categoryParts.length;i++){const categoryPart=categoryParts[i];const typeInfo=registry.categoryPartToTypeInfoMap_.get(categoryPart);if(typeInfo!==undefined)return typeInfo;}}
4080const typeInfo=registry.typeNameToTypeInfoMap_.get(typeName);if(typeInfo!==undefined)return typeInfo;return extensionRegistryOptions.defaultTypeInfo;};registry.getConstructor=function(category,typeName){const typeInfo=registry.getTypeInfo(category,typeName);if(typeInfo)return typeInfo.constructor;return undefined;};}
4081return{_decorateTypeBasedExtensionRegistry:decorateTypeBasedExtensionRegistry};});'use strict';tr.exportTo('tr.b',function(){const URL_REGEX=/^(https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b|file:\/\/)([-a-zA-Z0-9@:%_\+.~#?&//=]*)$/;function deepCopy(value){if(!(value instanceof Object)){if(value===undefined||value===null)return value;if(typeof value==='string')return value.substring();if(typeof value==='boolean')return value;if(typeof value==='number')return value;throw new Error('Unrecognized: '+typeof value);}
4082const object=value;if(object instanceof Array){const res=new Array(object.length);for(let i=0;i<object.length;i++){res[i]=deepCopy(object[i]);}
4083return res;}
4084if(object.__proto__!==Object.prototype){throw new Error('Can only clone simple types');}
4085const res={};for(const key in object){res[key]=deepCopy(object[key]);}
4086return res;}
4087function normalizeException(e){if(e===undefined||e===null){return{typeName:'UndefinedError',message:'Unknown: null or undefined exception',stack:'Unknown'};}
4088if(typeof(e)==='string'){return{typeName:'StringError',message:e,stack:[e]};}
4089let typeName;if(e.name){typeName=e.name;}else if(e.constructor){if(e.constructor.name){typeName=e.constructor.name;}else{typeName='AnonymousError';}}else{typeName='ErrorWithNoConstructor';}
4090const msg=e.message?e.message:'Unknown';return{typeName,message:msg,stack:e.stack?e.stack:[msg]};}
4091function stackTraceAsString(){return new Error().stack+'';}
4092function stackTrace(){let stack=stackTraceAsString();stack=stack.split('\n');return stack.slice(2);}
4093function getUsingPath(path,fromDict){const parts=path.split('.');let cur=fromDict;for(let part;parts.length&&(part=parts.shift());){if(!parts.length){return cur[part];}else if(part in cur){cur=cur[part];}else{return undefined;}}
4094return undefined;}
4095function formatDate(date){return date.toISOString().replace('T',' ').slice(0,19);}
4096function numberToJson(n){if(isNaN(n))return'NaN';if(n===Infinity)return'Infinity';if(n===-Infinity)return'-Infinity';return n;}
4097function numberFromJson(n){if(n==='NaN'||n===null)return NaN;if(n==='Infinity')return Infinity;if(n==='-Infinity')return-Infinity;return n;}
4098function runLengthEncoding(ary){const encodedArray=[];for(const element of ary){if(encodedArray.length===0||encodedArray[encodedArray.length-1].value!==element){encodedArray.push({value:element,count:1,});}else{encodedArray[encodedArray.length-1].count+=1;}}
4099return encodedArray;}
4100function isUrl(s){return typeof(s)==='string'&&s.match(URL_REGEX)!==null;}
4101function getOnlyElement(iterable){const iterator=iterable[Symbol.iterator]();const firstIteration=iterator.next();if(firstIteration.done){throw new Error('getOnlyElement was passed an empty iterable.');}
4102const secondIteration=iterator.next();if(!secondIteration.done){throw new Error('getOnlyElement was passed an iterable with multiple elements.');}
4103return firstIteration.value;}
4104function getFirstElement(iterable){const iterator=iterable[Symbol.iterator]();const result=iterator.next();if(result.done){throw new Error('getFirstElement was passed an empty iterable.');}
4105return result.value;}
4106function compareArrays(x,y,elementCmp){const minLength=Math.min(x.length,y.length);let i;for(i=0;i<minLength;i++){const tmp=elementCmp(x[i],y[i]);if(tmp)return tmp;}
4107if(x.length===y.length)return 0;if(x[i]===undefined)return-1;return 1;}
4108function groupIntoMap(ary,callback,opt_this,opt_arrayConstructor){const arrayConstructor=opt_arrayConstructor||Array;const results=new Map();for(const element of ary){const key=callback.call(opt_this,element);let items=results.get(key);if(items===undefined){items=new arrayConstructor();results.set(key,items);}
4109items.push(element);}
4110return results;}
4111function inPlaceFilter(array,predicate,opt_this){opt_this=opt_this||this;let nextPosition=0;for(let i=0;i<array.length;i++){if(!predicate.call(opt_this,array[i],i))continue;if(nextPosition<i){array[nextPosition]=array[i];}
4112nextPosition++;}
4113if(nextPosition<array.length){array.length=nextPosition;}}
4114function invertArrayOfDicts(array,opt_dictGetter,opt_this){opt_this=opt_this||this;const result={};for(let i=0;i<array.length;i++){const item=array[i];if(item===undefined)continue;const dict=opt_dictGetter?opt_dictGetter.call(opt_this,item):item;if(dict===undefined)continue;for(const key in dict){let valueList=result[key];if(valueList===undefined){result[key]=valueList=new Array(array.length);}
4115valueList[i]=dict[key];}}
4116return result;}
4117function setsEqual(a,b){if(!(a instanceof Set)||!(b instanceof Set))return false;if(a.size!==b.size)return false;for(const x of a){if(!b.has(x))return false;}
4118return true;}
4119function findLowIndexInSortedArray(ary,mapFn,loVal){if(ary.length===0)return 1;let low=0;let high=ary.length-1;let i;let comparison;let hitPos=-1;while(low<=high){i=Math.floor((low+high)/2);comparison=mapFn(ary[i])-loVal;if(comparison<0){low=i+1;continue;}else if(comparison>0){high=i-1;continue;}else{hitPos=i;high=i-1;}}
4120return hitPos!==-1?hitPos:low;}
4121function findIndexInSortedIntervals(ary,mapLoFn,mapWidthFn,loVal){const first=findLowIndexInSortedArray(ary,mapLoFn,loVal);if(first===0){if(loVal>=mapLoFn(ary[0])&&loVal<mapLoFn(ary[0])+mapWidthFn(ary[0],0)){return 0;}
4122return-1;}
4123if(first<ary.length){if(loVal>=mapLoFn(ary[first])&&loVal<mapLoFn(ary[first])+mapWidthFn(ary[first],first)){return first;}
4124if(loVal>=mapLoFn(ary[first-1])&&loVal<mapLoFn(ary[first-1])+
4125mapWidthFn(ary[first-1],first-1)){return first-1;}
4126return ary.length;}
4127if(first===ary.length){if(loVal>=mapLoFn(ary[first-1])&&loVal<mapLoFn(ary[first-1])+
4128mapWidthFn(ary[first-1],first-1)){return first-1;}
4129return ary.length;}
4130return ary.length;}
4131function findIndexInSortedClosedIntervals(ary,mapLoFn,mapHiFn,val){const i=findLowIndexInSortedArray(ary,mapLoFn,val);if(i===0){if(val>=mapLoFn(ary[0],0)&&val<=mapHiFn(ary[0],0)){return 0;}
4132return-1;}
4133if(i<ary.length){if(val>=mapLoFn(ary[i-1],i-1)&&val<=mapHiFn(ary[i-1],i-1)){return i-1;}
4134if(val>=mapLoFn(ary[i],i)&&val<=mapHiFn(ary[i],i)){return i;}
4135return ary.length;}
4136if(i===ary.length){if(val>=mapLoFn(ary[i-1],i-1)&&val<=mapHiFn(ary[i-1],i-1)){return i-1;}
4137return ary.length;}
4138return ary.length;}
4139function iterateOverIntersectingIntervals(ary,mapLoFn,mapWidthFn,loVal,hiVal,cb){if(ary.length===0)return;if(loVal>hiVal)return;let i=findLowIndexInSortedArray(ary,mapLoFn,loVal);if(i===-1){return;}
4140if(i>0){const hi=mapLoFn(ary[i-1])+mapWidthFn(ary[i-1],i-1);if(hi>=loVal){cb(ary[i-1],i-1);}}
4141if(i===ary.length){return;}
4142for(let n=ary.length;i<n;i++){const lo=mapLoFn(ary[i]);if(lo>=hiVal)break;cb(ary[i],i);}}
4143function findClosestElementInSortedArray(ary,mapFn,val,maxDiff){if(ary.length===0)return null;let aftIdx=findLowIndexInSortedArray(ary,mapFn,val);const befIdx=aftIdx>0?aftIdx-1:0;if(aftIdx===ary.length)aftIdx-=1;const befDiff=Math.abs(val-mapFn(ary[befIdx]));const aftDiff=Math.abs(val-mapFn(ary[aftIdx]));if(befDiff>maxDiff&&aftDiff>maxDiff)return null;const idx=befDiff<aftDiff?befIdx:aftIdx;return ary[idx];}
4144function findClosestIntervalInSortedIntervals(ary,mapLoFn,mapHiFn,val,maxDiff){if(ary.length===0)return null;let idx=findLowIndexInSortedArray(ary,mapLoFn,val);if(idx>0)idx-=1;const hiInt=ary[idx];let loInt=hiInt;if(val>mapHiFn(hiInt)&&idx+1<ary.length){loInt=ary[idx+1];}
4145const loDiff=Math.abs(val-mapLoFn(loInt));const hiDiff=Math.abs(val-mapHiFn(hiInt));if(loDiff>maxDiff&&hiDiff>maxDiff)return null;if(loDiff<hiDiff)return loInt;return hiInt;}
4146function findFirstTrueIndexInSortedArray(array,test){let i0=0;let i1=array.length;while(i0<i1){const i=Math.trunc((i0+i1)/2);if(test(array[i])){i1=i;}else{i0=i+1;}}
4147return i1;}
4148return{compareArrays,deepCopy,findClosestElementInSortedArray,findClosestIntervalInSortedIntervals,findFirstTrueIndexInSortedArray,findIndexInSortedClosedIntervals,findIndexInSortedIntervals,findLowIndexInSortedArray,formatDate,getFirstElement,getOnlyElement,getUsingPath,groupIntoMap,inPlaceFilter,invertArrayOfDicts,isUrl,iterateOverIntersectingIntervals,normalizeException,numberFromJson,numberToJson,runLengthEncoding,setsEqual,stackTrace,stackTraceAsString,};});'use strict';tr.exportTo('tr.b',function(){function decorateExtensionRegistry(registry,registryOptions){if(registry.register){throw new Error('Already has registry');}
4149registryOptions.freeze();if(registryOptions.mode===tr.b.BASIC_REGISTRY_MODE){tr.b._decorateBasicExtensionRegistry(registry,registryOptions);}else if(registryOptions.mode===tr.b.TYPE_BASED_REGISTRY_MODE){tr.b._decorateTypeBasedExtensionRegistry(registry,registryOptions);}else{throw new Error('Unrecognized mode');}
4150if(registry.addEventListener===undefined){tr.b.EventTarget.decorate(registry);}}
4151return{decorateExtensionRegistry,};});'use strict';tr.exportTo('tr.importer',function(){function Importer(){}
4152Importer.prototype={__proto__:Object.prototype,get importerName(){return'Importer';},isTraceDataContainer(){return false;},extractSubtraces(){return[];},importClockSyncMarkers(){},importEvents(){},importSampleData(){},finalizeImport(){}};const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};options.mandatoryBaseClass=Importer;tr.b.decorateExtensionRegistry(Importer,options);Importer.findImporterFor=function(eventData){const typeInfo=Importer.findTypeInfoMatching(function(ti){return ti.constructor.canImport(eventData);});if(typeInfo){return typeInfo.constructor;}
4153return undefined;};return{Importer,};});'use strict';tr.exportTo('tr.e.importer.gcloud_trace',function(){function GcloudTraceImporter(model,eventData){this.importPriority=2;this.eventData_=eventData;}
4154GcloudTraceImporter.canImport=function(eventData){if(typeof(eventData)!=='string'&&!(eventData instanceof String)){return false;}
4155const normalizedEventData=eventData.slice(0,20).replace(/\s/g,'');if(normalizedEventData.length<14)return false;return normalizedEventData.slice(0,14)==='{"projectId":"';};GcloudTraceImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'GcloudTraceImporter';},extractSubtraces(){const traceEvents=this.createEventsForTrace();return traceEvents?[traceEvents]:[];},createEventsForTrace(){const events=[];const trace=JSON.parse(this.eventData_);const spanLength=trace.spans.length;for(let i=0;i<spanLength;i++){events.push(this.createEventForSpan(trace.traceId,trace.spans[i]));}
4156return{'traceEvents':events};},createEventForSpan(traceId,span){let newArgs={};if(span.labels){newArgs=JSON.parse(JSON.stringify(span.labels));}
4157newArgs['Span ID']=span.spanId;newArgs['Start Time']=span.startTime;newArgs['End Time']=span.endTime;if(span.parentSpanId){newArgs['Parent Span ID']=span.parentSpanId;}
4158return{name:span.name,args:newArgs,pid:traceId,ts:Date.parse(span.startTime)*1000,dur:(Date.parse(span.endTime)-Date.parse(span.startTime))*1000,cat:'tracespan',tid:traceId,ph:'X'};}};tr.importer.Importer.register(GcloudTraceImporter);return{GcloudTraceImporter,};});'use strict';tr.exportTo('tr.b.math',function(){function convertEventsToRanges(events){return events.map(function(event){return tr.b.math.Range.fromExplicitRange(event.start,event.end);});}
4159function mergeRanges(inRanges,mergeThreshold,mergeFunction){const remainingEvents=inRanges.slice();remainingEvents.sort(function(x,y){return x.min-y.min;});if(remainingEvents.length<=1){const merged=[];if(remainingEvents.length===1){merged.push(mergeFunction(remainingEvents));}
4160return merged;}
4161const mergedEvents=[];let currentMergeBuffer=[];let rightEdge;function beginMerging(){currentMergeBuffer.push(remainingEvents[0]);remainingEvents.splice(0,1);rightEdge=currentMergeBuffer[0].max;}
4162function flushCurrentMergeBuffer(){if(currentMergeBuffer.length===0)return;mergedEvents.push(mergeFunction(currentMergeBuffer));currentMergeBuffer=[];if(remainingEvents.length!==0)beginMerging();}
4163beginMerging();while(remainingEvents.length){const currentEvent=remainingEvents[0];const distanceFromRightEdge=currentEvent.min-rightEdge;if(distanceFromRightEdge<mergeThreshold){rightEdge=Math.max(rightEdge,currentEvent.max);remainingEvents.splice(0,1);currentMergeBuffer.push(currentEvent);continue;}
4164flushCurrentMergeBuffer();}
4165flushCurrentMergeBuffer();return mergedEvents;}
4166function findEmptyRangesBetweenRanges(inRanges,opt_totalRange){if(opt_totalRange&&opt_totalRange.isEmpty)opt_totalRange=undefined;const emptyRanges=[];if(!inRanges.length){if(opt_totalRange)emptyRanges.push(opt_totalRange);return emptyRanges;}
4167inRanges=inRanges.slice();inRanges.sort(function(x,y){return x.min-y.min;});if(opt_totalRange&&(opt_totalRange.min<inRanges[0].min)){emptyRanges.push(tr.b.math.Range.fromExplicitRange(opt_totalRange.min,inRanges[0].min));}
4168inRanges.forEach(function(range,index){for(let otherIndex=0;otherIndex<inRanges.length;++otherIndex){if(index===otherIndex)continue;const other=inRanges[otherIndex];if(other.min>range.max){emptyRanges.push(tr.b.math.Range.fromExplicitRange(range.max,other.min));return;}
4169if(other.max>range.max){return;}}
4170if(opt_totalRange&&(range.max<opt_totalRange.max)){emptyRanges.push(tr.b.math.Range.fromExplicitRange(range.max,opt_totalRange.max));}});return emptyRanges;}
4171return{convertEventsToRanges,findEmptyRangesBetweenRanges,mergeRanges,};});!function(t,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define(n);else{var r=n();for(var a in r)("object"==typeof exports?exports:t)[a]=r[a]}}(this,function(){return function(t){function n(a){if(r[a])return r[a].exports;var e=r[a]={exports:{},id:a,loaded:!1};return t[a].call(e.exports,e,e.exports,n),e.loaded=!0,e.exports}var r={};return n.m=t,n.c=r,n.p="",n(0)}([function(t,n,r){n.glMatrix=r(1),n.mat2=r(2),n.mat2d=r(3),n.mat3=r(4),n.mat4=r(5),n.quat=r(6),n.vec2=r(9),n.vec3=r(7),n.vec4=r(8)},function(t,n,r){var a={};a.EPSILON=1e-6,a.ARRAY_TYPE="undefined"!=typeof Float32Array?Float32Array:Array,a.RANDOM=Math.random,a.setMatrixArrayType=function(t){GLMAT_ARRAY_TYPE=t};var e=Math.PI/180;a.toRadian=function(t){return t*e},t.exports=a},function(t,n,r){var a=r(1),e={};e.create=function(){var t=new a.ARRAY_TYPE(4);return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t},e.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},e.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},e.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t},e.transpose=function(t,n){if(t===n){var r=n[1];t[1]=n[2],t[2]=r}else t[0]=n[0],t[1]=n[2],t[2]=n[1],t[3]=n[3];return t},e.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r*u-e*a;return o?(o=1/o,t[0]=u*o,t[1]=-a*o,t[2]=-e*o,t[3]=r*o,t):null},e.adjoint=function(t,n){var r=n[0];return t[0]=n[3],t[1]=-n[1],t[2]=-n[2],t[3]=r,t},e.determinant=function(t){return t[0]*t[3]-t[2]*t[1]},e.multiply=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[0],c=r[1],f=r[2],s=r[3];return t[0]=a*i+u*c,t[1]=e*i+o*c,t[2]=a*f+u*s,t[3]=e*f+o*s,t},e.mul=e.multiply,e.rotate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),c=Math.cos(r);return t[0]=a*c+u*i,t[1]=e*c+o*i,t[2]=a*-i+u*c,t[3]=e*-i+o*c,t},e.scale=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[0],c=r[1];return t[0]=a*i,t[1]=e*i,t[2]=u*c,t[3]=o*c,t},e.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t},e.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t},e.str=function(t){return"mat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},e.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2))},e.LDU=function(t,n,r,a){return t[2]=a[2]/a[0],r[0]=a[0],r[1]=a[1],r[3]=a[3]-t[2]*r[1],[t,n,r]},t.exports=e},function(t,n,r){var a=r(1),e={};e.create=function(){var t=new a.ARRAY_TYPE(6);return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t},e.clone=function(t){var n=new a.ARRAY_TYPE(6);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n},e.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t},e.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t},e.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],c=r*u-a*e;return c?(c=1/c,t[0]=u*c,t[1]=-a*c,t[2]=-e*c,t[3]=r*c,t[4]=(e*i-u*o)*c,t[5]=(a*o-r*i)*c,t):null},e.determinant=function(t){return t[0]*t[3]-t[1]*t[2]},e.multiply=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=r[0],s=r[1],h=r[2],M=r[3],l=r[4],v=r[5];return t[0]=a*f+u*s,t[1]=e*f+o*s,t[2]=a*h+u*M,t[3]=e*h+o*M,t[4]=a*l+u*v+i,t[5]=e*l+o*v+c,t},e.mul=e.multiply,e.rotate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=Math.sin(r),s=Math.cos(r);return t[0]=a*s+u*f,t[1]=e*s+o*f,t[2]=a*-f+u*s,t[3]=e*-f+o*s,t[4]=i,t[5]=c,t},e.scale=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=r[0],s=r[1];return t[0]=a*f,t[1]=e*f,t[2]=u*s,t[3]=o*s,t[4]=i,t[5]=c,t},e.translate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=r[0],s=r[1];return t[0]=a,t[1]=e,t[2]=u,t[3]=o,t[4]=a*f+u*s+i,t[5]=e*f+o*s+c,t},e.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t[4]=0,t[5]=0,t},e.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t[4]=0,t[5]=0,t},e.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=n[0],t[5]=n[1],t},e.str=function(t){return"mat2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+")"},e.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2)+Math.pow(t[4],2)+Math.pow(t[5],2)+1)},t.exports=e},function(t,n,r){var a=r(1),e={};e.create=function(){var t=new a.ARRAY_TYPE(9);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},e.fromMat4=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[4],t[4]=n[5],t[5]=n[6],t[6]=n[8],t[7]=n[9],t[8]=n[10],t},e.clone=function(t){var n=new a.ARRAY_TYPE(9);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n[6]=t[6],n[7]=t[7],n[8]=t[8],n},e.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t},e.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},e.transpose=function(t,n){if(t===n){var r=n[1],a=n[2],e=n[5];t[1]=n[3],t[2]=n[6],t[3]=r,t[5]=n[7],t[6]=a,t[7]=e}else t[0]=n[0],t[1]=n[3],t[2]=n[6],t[3]=n[1],t[4]=n[4],t[5]=n[7],t[6]=n[2],t[7]=n[5],t[8]=n[8];return t},e.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],c=n[6],f=n[7],s=n[8],h=s*o-i*f,M=-s*u+i*c,l=f*u-o*c,v=r*h+a*M+e*l;return v?(v=1/v,t[0]=h*v,t[1]=(-s*a+e*f)*v,t[2]=(i*a-e*o)*v,t[3]=M*v,t[4]=(s*r-e*c)*v,t[5]=(-i*r+e*u)*v,t[6]=l*v,t[7]=(-f*r+a*c)*v,t[8]=(o*r-a*u)*v,t):null},e.adjoint=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],c=n[6],f=n[7],s=n[8];return t[0]=o*s-i*f,t[1]=e*f-a*s,t[2]=a*i-e*o,t[3]=i*c-u*s,t[4]=r*s-e*c,t[5]=e*u-r*i,t[6]=u*f-o*c,t[7]=a*c-r*f,t[8]=r*o-a*u,t},e.determinant=function(t){var n=t[0],r=t[1],a=t[2],e=t[3],u=t[4],o=t[5],i=t[6],c=t[7],f=t[8];return n*(f*u-o*c)+r*(-f*e+o*i)+a*(c*e-u*i)},e.multiply=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=n[6],s=n[7],h=n[8],M=r[0],l=r[1],v=r[2],m=r[3],p=r[4],d=r[5],A=r[6],R=r[7],w=r[8];return t[0]=M*a+l*o+v*f,t[1]=M*e+l*i+v*s,t[2]=M*u+l*c+v*h,t[3]=m*a+p*o+d*f,t[4]=m*e+p*i+d*s,t[5]=m*u+p*c+d*h,t[6]=A*a+R*o+w*f,t[7]=A*e+R*i+w*s,t[8]=A*u+R*c+w*h,t},e.mul=e.multiply,e.translate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=n[6],s=n[7],h=n[8],M=r[0],l=r[1];return t[0]=a,t[1]=e,t[2]=u,t[3]=o,t[4]=i,t[5]=c,t[6]=M*a+l*o+f,t[7]=M*e+l*i+s,t[8]=M*u+l*c+h,t},e.rotate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=n[6],s=n[7],h=n[8],M=Math.sin(r),l=Math.cos(r);return t[0]=l*a+M*o,t[1]=l*e+M*i,t[2]=l*u+M*c,t[3]=l*o-M*a,t[4]=l*i-M*e,t[5]=l*c-M*u,t[6]=f,t[7]=s,t[8]=h,t},e.scale=function(t,n,r){var a=r[0],e=r[1];return t[0]=a*n[0],t[1]=a*n[1],t[2]=a*n[2],t[3]=e*n[3],t[4]=e*n[4],t[5]=e*n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t},e.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=n[0],t[7]=n[1],t[8]=1,t},e.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=0,t[3]=-r,t[4]=a,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},e.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=0,t[4]=n[1],t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},e.fromMat2d=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=0,t[3]=n[2],t[4]=n[3],t[5]=0,t[6]=n[4],t[7]=n[5],t[8]=1,t},e.fromQuat=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r+r,i=a+a,c=e+e,f=r*o,s=a*o,h=a*i,M=e*o,l=e*i,v=e*c,m=u*o,p=u*i,d=u*c;return t[0]=1-h-v,t[3]=s-d,t[6]=M+p,t[1]=s+d,t[4]=1-f-v,t[7]=l-m,t[2]=M-p,t[5]=l+m,t[8]=1-f-h,t},e.normalFromMat4=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],c=n[6],f=n[7],s=n[8],h=n[9],M=n[10],l=n[11],v=n[12],m=n[13],p=n[14],d=n[15],A=r*i-a*o,R=r*c-e*o,w=r*f-u*o,q=a*c-e*i,Y=a*f-u*i,g=e*f-u*c,y=s*m-h*v,x=s*p-M*v,P=s*d-l*v,E=h*p-M*m,T=h*d-l*m,b=M*d-l*p,D=A*b-R*T+w*E+q*P-Y*x+g*y;return D?(D=1/D,t[0]=(i*b-c*T+f*E)*D,t[1]=(c*P-o*b-f*x)*D,t[2]=(o*T-i*P+f*y)*D,t[3]=(e*T-a*b-u*E)*D,t[4]=(r*b-e*P+u*x)*D,t[5]=(a*P-r*T-u*y)*D,t[6]=(m*g-p*Y+d*q)*D,t[7]=(p*w-v*g-d*R)*D,t[8]=(v*Y-m*w+d*A)*D,t):null},e.str=function(t){return"mat3("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},e.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2)+Math.pow(t[4],2)+Math.pow(t[5],2)+Math.pow(t[6],2)+Math.pow(t[7],2)+Math.pow(t[8],2))},t.exports=e},function(t,n,r){var a=r(1),e={};e.create=function(){var t=new a.ARRAY_TYPE(16);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},e.clone=function(t){var n=new a.ARRAY_TYPE(16);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n[6]=t[6],n[7]=t[7],n[8]=t[8],n[9]=t[9],n[10]=t[10],n[11]=t[11],n[12]=t[12],n[13]=t[13],n[14]=t[14],n[15]=t[15],n},e.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],t},e.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},e.transpose=function(t,n){if(t===n){var r=n[1],a=n[2],e=n[3],u=n[6],o=n[7],i=n[11];t[1]=n[4],t[2]=n[8],t[3]=n[12],t[4]=r,t[6]=n[9],t[7]=n[13],t[8]=a,t[9]=u,t[11]=n[14],t[12]=e,t[13]=o,t[14]=i}else t[0]=n[0],t[1]=n[4],t[2]=n[8],t[3]=n[12],t[4]=n[1],t[5]=n[5],t[6]=n[9],t[7]=n[13],t[8]=n[2],t[9]=n[6],t[10]=n[10],t[11]=n[14],t[12]=n[3],t[13]=n[7],t[14]=n[11],t[15]=n[15];return t},e.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],c=n[6],f=n[7],s=n[8],h=n[9],M=n[10],l=n[11],v=n[12],m=n[13],p=n[14],d=n[15],A=r*i-a*o,R=r*c-e*o,w=r*f-u*o,q=a*c-e*i,Y=a*f-u*i,g=e*f-u*c,y=s*m-h*v,x=s*p-M*v,P=s*d-l*v,E=h*p-M*m,T=h*d-l*m,b=M*d-l*p,D=A*b-R*T+w*E+q*P-Y*x+g*y;return D?(D=1/D,t[0]=(i*b-c*T+f*E)*D,t[1]=(e*T-a*b-u*E)*D,t[2]=(m*g-p*Y+d*q)*D,t[3]=(M*Y-h*g-l*q)*D,t[4]=(c*P-o*b-f*x)*D,t[5]=(r*b-e*P+u*x)*D,t[6]=(p*w-v*g-d*R)*D,t[7]=(s*g-M*w+l*R)*D,t[8]=(o*T-i*P+f*y)*D,t[9]=(a*P-r*T-u*y)*D,t[10]=(v*Y-m*w+d*A)*D,t[11]=(h*w-s*Y-l*A)*D,t[12]=(i*x-o*E-c*y)*D,t[13]=(r*E-a*x+e*y)*D,t[14]=(m*R-v*q-p*A)*D,t[15]=(s*q-h*R+M*A)*D,t):null},e.adjoint=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],c=n[6],f=n[7],s=n[8],h=n[9],M=n[10],l=n[11],v=n[12],m=n[13],p=n[14],d=n[15];return t[0]=i*(M*d-l*p)-h*(c*d-f*p)+m*(c*l-f*M),t[1]=-(a*(M*d-l*p)-h*(e*d-u*p)+m*(e*l-u*M)),t[2]=a*(c*d-f*p)-i*(e*d-u*p)+m*(e*f-u*c),t[3]=-(a*(c*l-f*M)-i*(e*l-u*M)+h*(e*f-u*c)),t[4]=-(o*(M*d-l*p)-s*(c*d-f*p)+v*(c*l-f*M)),t[5]=r*(M*d-l*p)-s*(e*d-u*p)+v*(e*l-u*M),t[6]=-(r*(c*d-f*p)-o*(e*d-u*p)+v*(e*f-u*c)),t[7]=r*(c*l-f*M)-o*(e*l-u*M)+s*(e*f-u*c),t[8]=o*(h*d-l*m)-s*(i*d-f*m)+v*(i*l-f*h),t[9]=-(r*(h*d-l*m)-s*(a*d-u*m)+v*(a*l-u*h)),t[10]=r*(i*d-f*m)-o*(a*d-u*m)+v*(a*f-u*i),t[11]=-(r*(i*l-f*h)-o*(a*l-u*h)+s*(a*f-u*i)),t[12]=-(o*(h*p-M*m)-s*(i*p-c*m)+v*(i*M-c*h)),t[13]=r*(h*p-M*m)-s*(a*p-e*m)+v*(a*M-e*h),t[14]=-(r*(i*p-c*m)-o*(a*p-e*m)+v*(a*c-e*i)),t[15]=r*(i*M-c*h)-o*(a*M-e*h)+s*(a*c-e*i),t},e.determinant=function(t){var n=t[0],r=t[1],a=t[2],e=t[3],u=t[4],o=t[5],i=t[6],c=t[7],f=t[8],s=t[9],h=t[10],M=t[11],l=t[12],v=t[13],m=t[14],p=t[15],d=n*o-r*u,A=n*i-a*u,R=n*c-e*u,w=r*i-a*o,q=r*c-e*o,Y=a*c-e*i,g=f*v-s*l,y=f*m-h*l,x=f*p-M*l,P=s*m-h*v,E=s*p-M*v,T=h*p-M*m;return d*T-A*E+R*P+w*x-q*y+Y*g},e.multiply=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=n[6],s=n[7],h=n[8],M=n[9],l=n[10],v=n[11],m=n[12],p=n[13],d=n[14],A=n[15],R=r[0],w=r[1],q=r[2],Y=r[3];return t[0]=R*a+w*i+q*h+Y*m,t[1]=R*e+w*c+q*M+Y*p,t[2]=R*u+w*f+q*l+Y*d,t[3]=R*o+w*s+q*v+Y*A,R=r[4],w=r[5],q=r[6],Y=r[7],t[4]=R*a+w*i+q*h+Y*m,t[5]=R*e+w*c+q*M+Y*p,t[6]=R*u+w*f+q*l+Y*d,t[7]=R*o+w*s+q*v+Y*A,R=r[8],w=r[9],q=r[10],Y=r[11],t[8]=R*a+w*i+q*h+Y*m,t[9]=R*e+w*c+q*M+Y*p,t[10]=R*u+w*f+q*l+Y*d,t[11]=R*o+w*s+q*v+Y*A,R=r[12],w=r[13],q=r[14],Y=r[15],t[12]=R*a+w*i+q*h+Y*m,t[13]=R*e+w*c+q*M+Y*p,t[14]=R*u+w*f+q*l+Y*d,t[15]=R*o+w*s+q*v+Y*A,t},e.mul=e.multiply,e.translate=function(t,n,r){var a,e,u,o,i,c,f,s,h,M,l,v,m=r[0],p=r[1],d=r[2];return n===t?(t[12]=n[0]*m+n[4]*p+n[8]*d+n[12],t[13]=n[1]*m+n[5]*p+n[9]*d+n[13],t[14]=n[2]*m+n[6]*p+n[10]*d+n[14],t[15]=n[3]*m+n[7]*p+n[11]*d+n[15]):(a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],c=n[5],f=n[6],s=n[7],h=n[8],M=n[9],l=n[10],v=n[11],t[0]=a,t[1]=e,t[2]=u,t[3]=o,t[4]=i,t[5]=c,t[6]=f,t[7]=s,t[8]=h,t[9]=M,t[10]=l,t[11]=v,t[12]=a*m+i*p+h*d+n[12],t[13]=e*m+c*p+M*d+n[13],t[14]=u*m+f*p+l*d+n[14],t[15]=o*m+s*p+v*d+n[15]),t},e.scale=function(t,n,r){var a=r[0],e=r[1],u=r[2];return t[0]=n[0]*a,t[1]=n[1]*a,t[2]=n[2]*a,t[3]=n[3]*a,t[4]=n[4]*e,t[5]=n[5]*e,t[6]=n[6]*e,t[7]=n[7]*e,t[8]=n[8]*u,t[9]=n[9]*u,t[10]=n[10]*u,t[11]=n[11]*u,t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],t},e.rotate=function(t,n,r,e){var u,o,i,c,f,s,h,M,l,v,m,p,d,A,R,w,q,Y,g,y,x,P,E,T,b=e[0],D=e[1],L=e[2],_=Math.sqrt(b*b+D*D+L*L);return Math.abs(_)<a.EPSILON?null:(_=1/_,b*=_,D*=_,L*=_,u=Math.sin(r),o=Math.cos(r),i=1-o,c=n[0],f=n[1],s=n[2],h=n[3],M=n[4],l=n[5],v=n[6],m=n[7],p=n[8],d=n[9],A=n[10],R=n[11],w=b*b*i+o,q=D*b*i+L*u,Y=L*b*i-D*u,g=b*D*i-L*u,y=D*D*i+o,x=L*D*i+b*u,P=b*L*i+D*u,E=D*L*i-b*u,T=L*L*i+o,t[0]=c*w+M*q+p*Y,t[1]=f*w+l*q+d*Y,t[2]=s*w+v*q+A*Y,t[3]=h*w+m*q+R*Y,t[4]=c*g+M*y+p*x,t[5]=f*g+l*y+d*x,t[6]=s*g+v*y+A*x,t[7]=h*g+m*y+R*x,t[8]=c*P+M*E+p*T,t[9]=f*P+l*E+d*T,t[10]=s*P+v*E+A*T,t[11]=h*P+m*E+R*T,n!==t&&(t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]),t)},e.rotateX=function(t,n,r){var a=Math.sin(r),e=Math.cos(r),u=n[4],o=n[5],i=n[6],c=n[7],f=n[8],s=n[9],h=n[10],M=n[11];return n!==t&&(t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]),t[4]=u*e+f*a,t[5]=o*e+s*a,t[6]=i*e+h*a,t[7]=c*e+M*a,t[8]=f*e-u*a,t[9]=s*e-o*a,t[10]=h*e-i*a,t[11]=M*e-c*a,t},e.rotateY=function(t,n,r){var a=Math.sin(r),e=Math.cos(r),u=n[0],o=n[1],i=n[2],c=n[3],f=n[8],s=n[9],h=n[10],M=n[11];return n!==t&&(t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]),t[0]=u*e-f*a,t[1]=o*e-s*a,t[2]=i*e-h*a,t[3]=c*e-M*a,t[8]=u*a+f*e,t[9]=o*a+s*e,t[10]=i*a+h*e,t[11]=c*a+M*e,t},e.rotateZ=function(t,n,r){var a=Math.sin(r),e=Math.cos(r),u=n[0],o=n[1],i=n[2],c=n[3],f=n[4],s=n[5],h=n[6],M=n[7];return n!==t&&(t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]),t[0]=u*e+f*a,t[1]=o*e+s*a,t[2]=i*e+h*a,t[3]=c*e+M*a,t[4]=f*e-u*a,t[5]=s*e-o*a,t[6]=h*e-i*a,t[7]=M*e-c*a,t},e.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t},e.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=n[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=n[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},e.fromRotation=function(t,n,r){var e,u,o,i=r[0],c=r[1],f=r[2],s=Math.sqrt(i*i+c*c+f*f);return Math.abs(s)<a.EPSILON?null:(s=1/s,i*=s,c*=s,f*=s,e=Math.sin(n),u=Math.cos(n),o=1-u,t[0]=i*i*o+u,t[1]=c*i*o+f*e,t[2]=f*i*o-c*e,t[3]=0,t[4]=i*c*o-f*e,t[5]=c*c*o+u,t[6]=f*c*o+i*e,t[7]=0,t[8]=i*f*o+c*e,t[9]=c*f*o-i*e,t[10]=f*f*o+u,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t)},e.fromXRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=a,t[6]=r,t[7]=0,t[8]=0,t[9]=-r,t[10]=a,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},e.fromYRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=0,t[2]=-r,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=r,t[9]=0,t[10]=a,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},e.fromZRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=0,t[3]=0,t[4]=-r,t[5]=a,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},e.fromRotationTranslation=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=a+a,c=e+e,f=u+u,s=a*i,h=a*c,M=a*f,l=e*c,v=e*f,m=u*f,p=o*i,d=o*c,A=o*f;return t[0]=1-(l+m),t[1]=h+A,t[2]=M-d,t[3]=0,t[4]=h-A,t[5]=1-(s+m),t[6]=v+p,t[7]=0,t[8]=M+d,t[9]=v-p,t[10]=1-(s+l),t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t},e.fromRotationTranslationScale=function(t,n,r,a){var e=n[0],u=n[1],o=n[2],i=n[3],c=e+e,f=u+u,s=o+o,h=e*c,M=e*f,l=e*s,v=u*f,m=u*s,p=o*s,d=i*c,A=i*f,R=i*s,w=a[0],q=a[1],Y=a[2];return t[0]=(1-(v+p))*w,t[1]=(M+R)*w,t[2]=(l-A)*w,t[3]=0,t[4]=(M-R)*q,t[5]=(1-(h+p))*q,t[6]=(m+d)*q,t[7]=0,t[8]=(l+A)*Y,t[9]=(m-d)*Y,t[10]=(1-(h+v))*Y,t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t},e.fromRotationTranslationScaleOrigin=function(t,n,r,a,e){var u=n[0],o=n[1],i=n[2],c=n[3],f=u+u,s=o+o,h=i+i,M=u*f,l=u*s,v=u*h,m=o*s,p=o*h,d=i*h,A=c*f,R=c*s,w=c*h,q=a[0],Y=a[1],g=a[2],y=e[0],x=e[1],P=e[2];return t[0]=(1-(m+d))*q,t[1]=(l+w)*q,t[2]=(v-R)*q,t[3]=0,t[4]=(l-w)*Y,t[5]=(1-(M+d))*Y,t[6]=(p+A)*Y,t[7]=0,t[8]=(v+R)*g,t[9]=(p-A)*g,t[10]=(1-(M+m))*g,t[11]=0,t[12]=r[0]+y-(t[0]*y+t[4]*x+t[8]*P),t[13]=r[1]+x-(t[1]*y+t[5]*x+t[9]*P),t[14]=r[2]+P-(t[2]*y+t[6]*x+t[10]*P),t[15]=1,t},e.fromQuat=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r+r,i=a+a,c=e+e,f=r*o,s=a*o,h=a*i,M=e*o,l=e*i,v=e*c,m=u*o,p=u*i,d=u*c;return t[0]=1-h-v,t[1]=s+d,t[2]=M-p,t[3]=0,t[4]=s-d,t[5]=1-f-v,t[6]=l+m,t[7]=0,t[8]=M+p,t[9]=l-m,t[10]=1-f-h,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},e.frustum=function(t,n,r,a,e,u,o){var i=1/(r-n),c=1/(e-a),f=1/(u-o);return t[0]=2*u*i,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*u*c,t[6]=0,t[7]=0,t[8]=(r+n)*i,t[9]=(e+a)*c,t[10]=(o+u)*f,t[11]=-1,t[12]=0,t[13]=0,t[14]=o*u*2*f,t[15]=0,t},e.perspective=function(t,n,r,a,e){var u=1/Math.tan(n/2),o=1/(a-e);return t[0]=u/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=u,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=(e+a)*o,t[11]=-1,t[12]=0,t[13]=0,t[14]=2*e*a*o,t[15]=0,t},e.perspectiveFromFieldOfView=function(t,n,r,a){var e=Math.tan(n.upDegrees*Math.PI/180),u=Math.tan(n.downDegrees*Math.PI/180),o=Math.tan(n.leftDegrees*Math.PI/180),i=Math.tan(n.rightDegrees*Math.PI/180),c=2/(o+i),f=2/(e+u);return t[0]=c,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=f,t[6]=0,t[7]=0,t[8]=-((o-i)*c*.5),t[9]=(e-u)*f*.5,t[10]=a/(r-a),t[11]=-1,t[12]=0,t[13]=0,t[14]=a*r/(r-a),t[15]=0,t},e.ortho=function(t,n,r,a,e,u,o){var i=1/(n-r),c=1/(a-e),f=1/(u-o);return t[0]=-2*i,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*c,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*f,t[11]=0,t[12]=(n+r)*i,t[13]=(e+a)*c,t[14]=(o+u)*f,t[15]=1,t},e.lookAt=function(t,n,r,u){var o,i,c,f,s,h,M,l,v,m,p=n[0],d=n[1],A=n[2],R=u[0],w=u[1],q=u[2],Y=r[0],g=r[1],y=r[2];return Math.abs(p-Y)<a.EPSILON&&Math.abs(d-g)<a.EPSILON&&Math.abs(A-y)<a.EPSILON?e.identity(t):(M=p-Y,l=d-g,v=A-y,m=1/Math.sqrt(M*M+l*l+v*v),M*=m,l*=m,v*=m,o=w*v-q*l,i=q*M-R*v,c=R*l-w*M,m=Math.sqrt(o*o+i*i+c*c),m?(m=1/m,o*=m,i*=m,c*=m):(o=0,i=0,c=0),f=l*c-v*i,s=v*o-M*c,h=M*i-l*o,m=Math.sqrt(f*f+s*s+h*h),m?(m=1/m,f*=m,s*=m,h*=m):(f=0,s=0,h=0),t[0]=o,t[1]=f,t[2]=M,t[3]=0,t[4]=i,t[5]=s,t[6]=l,t[7]=0,t[8]=c,t[9]=h,t[10]=v,t[11]=0,t[12]=-(o*p+i*d+c*A),t[13]=-(f*p+s*d+h*A),t[14]=-(M*p+l*d+v*A),t[15]=1,t)},e.str=function(t){return"mat4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},e.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2)+Math.pow(t[4],2)+Math.pow(t[5],2)+Math.pow(t[6],2)+Math.pow(t[7],2)+Math.pow(t[8],2)+Math.pow(t[9],2)+Math.pow(t[10],2)+Math.pow(t[11],2)+Math.pow(t[12],2)+Math.pow(t[13],2)+Math.pow(t[14],2)+Math.pow(t[15],2))},t.exports=e},function(t,n,r){var a=r(1),e=r(4),u=r(7),o=r(8),i={};i.create=function(){var t=new a.ARRAY_TYPE(4);return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t},i.rotationTo=function(){var t=u.create(),n=u.fromValues(1,0,0),r=u.fromValues(0,1,0);return function(a,e,o){var c=u.dot(e,o);return-.999999>c?(u.cross(t,n,e),u.length(t)<1e-6&&u.cross(t,r,e),u.normalize(t,t),i.setAxisAngle(a,t,Math.PI),a):c>.999999?(a[0]=0,a[1]=0,a[2]=0,a[3]=1,a):(u.cross(t,e,o),a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=1+c,i.normalize(a,a))}}(),i.setAxes=function(){var t=e.create();return function(n,r,a,e){return t[0]=a[0],t[3]=a[1],t[6]=a[2],t[1]=e[0],t[4]=e[1],t[7]=e[2],t[2]=-r[0],t[5]=-r[1],t[8]=-r[2],i.normalize(n,i.fromMat3(n,t))}}(),i.clone=o.clone,i.fromValues=o.fromValues,i.copy=o.copy,i.set=o.set,i.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t},i.setAxisAngle=function(t,n,r){r=.5*r;var a=Math.sin(r);return t[0]=a*n[0],t[1]=a*n[1],t[2]=a*n[2],t[3]=Math.cos(r),t},i.add=o.add,i.multiply=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[0],c=r[1],f=r[2],s=r[3];return t[0]=a*s+o*i+e*f-u*c,t[1]=e*s+o*c+u*i-a*f,t[2]=u*s+o*f+a*c-e*i,t[3]=o*s-a*i-e*c-u*f,t},i.mul=i.multiply,i.scale=o.scale,i.rotateX=function(t,n,r){r*=.5;var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),c=Math.cos(r);return t[0]=a*c+o*i,t[1]=e*c+u*i,t[2]=u*c-e*i,t[3]=o*c-a*i,t},i.rotateY=function(t,n,r){r*=.5;var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),c=Math.cos(r);return t[0]=a*c-u*i,t[1]=e*c+o*i,t[2]=u*c+a*i,t[3]=o*c-e*i,t},i.rotateZ=function(t,n,r){r*=.5;var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),c=Math.cos(r);return t[0]=a*c+e*i,t[1]=e*c-a*i,t[2]=u*c+o*i,t[3]=o*c-u*i,t},i.calculateW=function(t,n){var r=n[0],a=n[1],e=n[2];return t[0]=r,t[1]=a,t[2]=e,t[3]=Math.sqrt(Math.abs(1-r*r-a*a-e*e)),t},i.dot=o.dot,i.lerp=o.lerp,i.slerp=function(t,n,r,a){var e,u,o,i,c,f=n[0],s=n[1],h=n[2],M=n[3],l=r[0],v=r[1],m=r[2],p=r[3];return u=f*l+s*v+h*m+M*p,0>u&&(u=-u,l=-l,v=-v,m=-m,p=-p),1-u>1e-6?(e=Math.acos(u),o=Math.sin(e),i=Math.sin((1-a)*e)/o,c=Math.sin(a*e)/o):(i=1-a,c=a),t[0]=i*f+c*l,t[1]=i*s+c*v,t[2]=i*h+c*m,t[3]=i*M+c*p,t},i.sqlerp=function(){var t=i.create(),n=i.create();return function(r,a,e,u,o,c){return i.slerp(t,a,o,c),i.slerp(n,e,u,c),i.slerp(r,t,n,2*c*(1-c)),r}}(),i.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r*r+a*a+e*e+u*u,i=o?1/o:0;return t[0]=-r*i,t[1]=-a*i,t[2]=-e*i,t[3]=u*i,t},i.conjugate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=n[3],t},i.length=o.length,i.len=i.length,i.squaredLength=o.squaredLength,i.sqrLen=i.squaredLength,i.normalize=o.normalize,i.fromMat3=function(t,n){var r,a=n[0]+n[4]+n[8];if(a>0)r=Math.sqrt(a+1),t[3]=.5*r,r=.5/r,t[0]=(n[5]-n[7])*r,t[1]=(n[6]-n[2])*r,t[2]=(n[1]-n[3])*r;else{var e=0;n[4]>n[0]&&(e=1),n[8]>n[3*e+e]&&(e=2);var u=(e+1)%3,o=(e+2)%3;r=Math.sqrt(n[3*e+e]-n[3*u+u]-n[3*o+o]+1),t[e]=.5*r,r=.5/r,t[3]=(n[3*u+o]-n[3*o+u])*r,t[u]=(n[3*u+e]+n[3*e+u])*r,t[o]=(n[3*o+e]+n[3*e+o])*r}return t},i.str=function(t){return"quat("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},t.exports=i},function(t,n,r){var a=r(1),e={};e.create=function(){var t=new a.ARRAY_TYPE(3);return t[0]=0,t[1]=0,t[2]=0,t},e.clone=function(t){var n=new a.ARRAY_TYPE(3);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n},e.fromValues=function(t,n,r){var e=new a.ARRAY_TYPE(3);return e[0]=t,e[1]=n,e[2]=r,e},e.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t},e.set=function(t,n,r,a){return t[0]=n,t[1]=r,t[2]=a,t},e.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t},e.subtract=function(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t},e.sub=e.subtract,e.multiply=function(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t},e.mul=e.multiply,e.divide=function(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t},e.div=e.divide,e.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t},e.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t},e.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t},e.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t},e.distance=function(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2];return Math.sqrt(r*r+a*a+e*e)},e.dist=e.distance,e.squaredDistance=function(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2];return r*r+a*a+e*e},e.sqrDist=e.squaredDistance,e.length=function(t){var n=t[0],r=t[1],a=t[2];return Math.sqrt(n*n+r*r+a*a)},e.len=e.length,e.squaredLength=function(t){var n=t[0],r=t[1],a=t[2];return n*n+r*r+a*a},e.sqrLen=e.squaredLength,e.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t},e.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t},e.normalize=function(t,n){var r=n[0],a=n[1],e=n[2],u=r*r+a*a+e*e;return u>0&&(u=1/Math.sqrt(u),t[0]=n[0]*u,t[1]=n[1]*u,t[2]=n[2]*u),t},e.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]},e.cross=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=r[0],i=r[1],c=r[2];return t[0]=e*c-u*i,t[1]=u*o-a*c,t[2]=a*i-e*o,t},e.lerp=function(t,n,r,a){var e=n[0],u=n[1],o=n[2];return t[0]=e+a*(r[0]-e),t[1]=u+a*(r[1]-u),t[2]=o+a*(r[2]-o),t},e.hermite=function(t,n,r,a,e,u){var o=u*u,i=o*(2*u-3)+1,c=o*(u-2)+u,f=o*(u-1),s=o*(3-2*u);return t[0]=n[0]*i+r[0]*c+a[0]*f+e[0]*s,t[1]=n[1]*i+r[1]*c+a[1]*f+e[1]*s,t[2]=n[2]*i+r[2]*c+a[2]*f+e[2]*s,t},e.bezier=function(t,n,r,a,e,u){var o=1-u,i=o*o,c=u*u,f=i*o,s=3*u*i,h=3*c*o,M=c*u;return t[0]=n[0]*f+r[0]*s+a[0]*h+e[0]*M,t[1]=n[1]*f+r[1]*s+a[1]*h+e[1]*M,t[2]=n[2]*f+r[2]*s+a[2]*h+e[2]*M,t},e.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI,e=2*a.RANDOM()-1,u=Math.sqrt(1-e*e)*n;return t[0]=Math.cos(r)*u,t[1]=Math.sin(r)*u,t[2]=e*n,t},e.transformMat4=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=r[3]*a+r[7]*e+r[11]*u+r[15];return o=o||1,t[0]=(r[0]*a+r[4]*e+r[8]*u+r[12])/o,t[1]=(r[1]*a+r[5]*e+r[9]*u+r[13])/o,t[2]=(r[2]*a+r[6]*e+r[10]*u+r[14])/o,t},e.transformMat3=function(t,n,r){var a=n[0],e=n[1],u=n[2];return t[0]=a*r[0]+e*r[3]+u*r[6],t[1]=a*r[1]+e*r[4]+u*r[7],t[2]=a*r[2]+e*r[5]+u*r[8],t},e.transformQuat=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=r[0],i=r[1],c=r[2],f=r[3],s=f*a+i*u-c*e,h=f*e+c*a-o*u,M=f*u+o*e-i*a,l=-o*a-i*e-c*u;return t[0]=s*f+l*-o+h*-c-M*-i,t[1]=h*f+l*-i+M*-o-s*-c,t[2]=M*f+l*-c+s*-i-h*-o,t},e.rotateX=function(t,n,r,a){var e=[],u=[];return e[0]=n[0]-r[0],e[1]=n[1]-r[1],e[2]=n[2]-r[2],u[0]=e[0],u[1]=e[1]*Math.cos(a)-e[2]*Math.sin(a),u[2]=e[1]*Math.sin(a)+e[2]*Math.cos(a),t[0]=u[0]+r[0],t[1]=u[1]+r[1],t[2]=u[2]+r[2],t},e.rotateY=function(t,n,r,a){var e=[],u=[];return e[0]=n[0]-r[0],e[1]=n[1]-r[1],e[2]=n[2]-r[2],u[0]=e[2]*Math.sin(a)+e[0]*Math.cos(a),u[1]=e[1],u[2]=e[2]*Math.cos(a)-e[0]*Math.sin(a),t[0]=u[0]+r[0],t[1]=u[1]+r[1],t[2]=u[2]+r[2],t},e.rotateZ=function(t,n,r,a){var e=[],u=[];return e[0]=n[0]-r[0],e[1]=n[1]-r[1],e[2]=n[2]-r[2],u[0]=e[0]*Math.cos(a)-e[1]*Math.sin(a),u[1]=e[0]*Math.sin(a)+e[1]*Math.cos(a),u[2]=e[2],t[0]=u[0]+r[0],t[1]=u[1]+r[1],t[2]=u[2]+r[2],t},e.forEach=function(){var t=e.create();return function(n,r,a,e,u,o){var i,c;for(r||(r=3),a||(a=0),c=e?Math.min(e*r+a,n.length):n.length,i=a;c>i;i+=r)t[0]=n[i],t[1]=n[i+1],t[2]=n[i+2],u(t,t,o),n[i]=t[0],n[i+1]=t[1],n[i+2]=t[2];return n}}(),e.angle=function(t,n){var r=e.fromValues(t[0],t[1],t[2]),a=e.fromValues(n[0],n[1],n[2]);e.normalize(r,r),e.normalize(a,a);var u=e.dot(r,a);return u>1?0:Math.acos(u)},e.str=function(t){return"vec3("+t[0]+", "+t[1]+", "+t[2]+")"},t.exports=e},function(t,n,r){var a=r(1),e={};e.create=function(){var t=new a.ARRAY_TYPE(4);return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t},e.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},e.fromValues=function(t,n,r,e){var u=new a.ARRAY_TYPE(4);return u[0]=t,u[1]=n,u[2]=r,u[3]=e,u},e.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},e.set=function(t,n,r,a,e){return t[0]=n,t[1]=r,t[2]=a,t[3]=e,t},e.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},e.subtract=function(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t},e.sub=e.subtract,e.multiply=function(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t[3]=n[3]*r[3],t},e.mul=e.multiply,e.divide=function(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t[3]=n[3]/r[3],t},e.div=e.divide,e.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t[3]=Math.min(n[3],r[3]),t},e.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t[3]=Math.max(n[3],r[3]),t},e.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},e.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},e.distance=function(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2],u=n[3]-t[3];return Math.sqrt(r*r+a*a+e*e+u*u)},e.dist=e.distance,e.squaredDistance=function(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2],u=n[3]-t[3];return r*r+a*a+e*e+u*u},e.sqrDist=e.squaredDistance,e.length=function(t){var n=t[0],r=t[1],a=t[2],e=t[3];return Math.sqrt(n*n+r*r+a*a+e*e)},e.len=e.length,e.squaredLength=function(t){var n=t[0],r=t[1],a=t[2],e=t[3];return n*n+r*r+a*a+e*e},e.sqrLen=e.squaredLength,e.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=-n[3],t},e.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t[3]=1/n[3],t},e.normalize=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r*r+a*a+e*e+u*u;return o>0&&(o=1/Math.sqrt(o),t[0]=r*o,t[1]=a*o,t[2]=e*o,t[3]=u*o),t},e.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]+t[3]*n[3]},e.lerp=function(t,n,r,a){var e=n[0],u=n[1],o=n[2],i=n[3];return t[0]=e+a*(r[0]-e),t[1]=u+a*(r[1]-u),t[2]=o+a*(r[2]-o),t[3]=i+a*(r[3]-i),t},e.random=function(t,n){return n=n||1,t[0]=a.RANDOM(),t[1]=a.RANDOM(),t[2]=a.RANDOM(),t[3]=a.RANDOM(),e.normalize(t,t),e.scale(t,t,n),t},e.transformMat4=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3];return t[0]=r[0]*a+r[4]*e+r[8]*u+r[12]*o,t[1]=r[1]*a+r[5]*e+r[9]*u+r[13]*o,t[2]=r[2]*a+r[6]*e+r[10]*u+r[14]*o,t[3]=r[3]*a+r[7]*e+r[11]*u+r[15]*o,t},e.transformQuat=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=r[0],i=r[1],c=r[2],f=r[3],s=f*a+i*u-c*e,h=f*e+c*a-o*u,M=f*u+o*e-i*a,l=-o*a-i*e-c*u;return t[0]=s*f+l*-o+h*-c-M*-i,t[1]=h*f+l*-i+M*-o-s*-c,t[2]=M*f+l*-c+s*-i-h*-o,t[3]=n[3],t},e.forEach=function(){var t=e.create();return function(n,r,a,e,u,o){var i,c;for(r||(r=4),a||(a=0),c=e?Math.min(e*r+a,n.length):n.length,i=a;c>i;i+=r)t[0]=n[i],t[1]=n[i+1],t[2]=n[i+2],t[3]=n[i+3],u(t,t,o),n[i]=t[0],n[i+1]=t[1],n[i+2]=t[2],n[i+3]=t[3];return n}}(),e.str=function(t){return"vec4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},t.exports=e},function(t,n,r){var a=r(1),e={};e.create=function(){var t=new a.ARRAY_TYPE(2);return t[0]=0,t[1]=0,t},e.clone=function(t){var n=new a.ARRAY_TYPE(2);return n[0]=t[0],n[1]=t[1],n},e.fromValues=function(t,n){var r=new a.ARRAY_TYPE(2);return r[0]=t,r[1]=n,r},e.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t},e.set=function(t,n,r){return t[0]=n,t[1]=r,t},e.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t},e.subtract=function(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t},e.sub=e.subtract,e.multiply=function(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t},e.mul=e.multiply,e.divide=function(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t},e.div=e.divide,e.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t},e.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t},e.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t},e.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t},e.distance=function(t,n){var r=n[0]-t[0],a=n[1]-t[1];return Math.sqrt(r*r+a*a)},e.dist=e.distance,e.squaredDistance=function(t,n){var r=n[0]-t[0],a=n[1]-t[1];return r*r+a*a},e.sqrDist=e.squaredDistance,e.length=function(t){var n=t[0],r=t[1];return Math.sqrt(n*n+r*r)},e.len=e.length,e.squaredLength=function(t){var n=t[0],r=t[1];return n*n+r*r},e.sqrLen=e.squaredLength,e.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t},e.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t},e.normalize=function(t,n){var r=n[0],a=n[1],e=r*r+a*a;return e>0&&(e=1/Math.sqrt(e),t[0]=n[0]*e,t[1]=n[1]*e),t},e.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]},e.cross=function(t,n,r){var a=n[0]*r[1]-n[1]*r[0];return t[0]=t[1]=0,t[2]=a,t},e.lerp=function(t,n,r,a){var e=n[0],u=n[1];return t[0]=e+a*(r[0]-e),t[1]=u+a*(r[1]-u),t},e.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI;return t[0]=Math.cos(r)*n,t[1]=Math.sin(r)*n,t},e.transformMat2=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[2]*e,t[1]=r[1]*a+r[3]*e,t},e.transformMat2d=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[2]*e+r[4],t[1]=r[1]*a+r[3]*e+r[5],t},e.transformMat3=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[3]*e+r[6],t[1]=r[1]*a+r[4]*e+r[7],t},e.transformMat4=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[4]*e+r[12],t[1]=r[1]*a+r[5]*e+r[13],t},e.forEach=function(){var t=e.create();return function(n,r,a,e,u,o){var i,c;for(r||(r=2),a||(a=0),c=e?Math.min(e*r+a,n.length):n.length,i=a;c>i;i+=r)t[0]=n[i],t[1]=n[i+1],u(t,t,o),n[i]=t[0],n[i+1]=t[1];return n}}(),e.str=function(t){return"vec2("+t[0]+", "+t[1]+")"},t.exports=e}])});'use strict';(function(global){if(tr.isNode){const glMatrixAbsPath=HTMLImportsLoader.hrefToAbsolutePath('/gl-matrix-min.js');const glMatrixModule=require(glMatrixAbsPath);for(const exportName in glMatrixModule){global[exportName]=glMatrixModule[exportName];}}})(this);'use strict';tr.exportTo('tr.b.math',function(){const PREFERRED_NUMBER_SERIES_MULTIPLIERS=[1,2,5,10];function approximately(x,y,delta){if(delta===undefined)delta=1e-9;return Math.abs(x-y)<delta;}
4172function clamp(x,lo,hi){return Math.min(Math.max(x,lo),hi);}
4173function lerp(percentage,lo,hi){const range=hi-lo;return lo+percentage*range;}
4174function normalize(value,lo,hi){return(value-lo)/(hi-lo);}
4175function deg2rad(deg){return(Math.PI*deg)/180.0;}
4176function erf(x){const sign=(x>=0)?1:-1;x=Math.abs(x);const a1=0.254829592;const a2=-0.284496736;const a3=1.421413741;const a4=-1.453152027;const a5=1.061405429;const p=0.3275911;const t=1.0/(1.0+p*x);const y=1.0-(((((a5*t+a4)*t)+a3)*t+a2)*t+a1)*t*Math.exp(-x*x);return sign*y;}
4177const tmpVec2=vec2.create();const tmpVec2b=vec2.create();const tmpVec4=vec4.create();const tmpMat2d=mat2d.create();vec2.createFromArray=function(arr){if(arr.length!==2)throw new Error('Should be length 2');const v=vec2.create();vec2.set(v,arr[0],arr[1]);return v;};vec2.createXY=function(x,y){const v=vec2.create();vec2.set(v,x,y);return v;};vec2.toString=function(a){return'['+a[0]+', '+a[1]+']';};vec2.addTwoScaledUnitVectors=function(out,u1,scale1,u2,scale2){vec2.scale(tmpVec2,u1,scale1);vec2.scale(tmpVec2b,u2,scale2);vec2.add(out,tmpVec2,tmpVec2b);};vec2.interpolatePiecewiseFunction=function(points,x){if(x<points[0][0])return points[0][1];for(let i=1;i<points.length;++i){if(x<points[i][0]){const percent=normalize(x,points[i-1][0],points[i][0]);return lerp(percent,points[i-1][1],points[i][1]);}}
4178return points[points.length-1][1];};vec3.createXYZ=function(x,y,z){const v=vec3.create();vec3.set(v,x,y,z);return v;};vec3.toString=function(a){return'vec3('+a[0]+', '+a[1]+', '+a[2]+')';};mat2d.translateXY=function(out,x,y){vec2.set(tmpVec2,x,y);mat2d.translate(out,out,tmpVec2);};mat2d.scaleXY=function(out,x,y){vec2.set(tmpVec2,x,y);mat2d.scale(out,out,tmpVec2);};vec4.unitize=function(out,a){out[0]=a[0]/a[3];out[1]=a[1]/a[3];out[2]=a[2]/a[3];out[3]=1;return out;};vec2.copyFromVec4=function(out,a){vec4.unitize(tmpVec4,a);vec2.copy(out,tmpVec4);};function logOrLog10(x,base){if(base===10)return Math.log10(x);return Math.log(x)/Math.log(base);}
4179function lesserPower(x,opt_base){const base=opt_base||10;return Math.pow(base,Math.floor(logOrLog10(x,base)));}
4180function greaterPower(x,opt_base){const base=opt_base||10;return Math.pow(base,Math.ceil(logOrLog10(x,base)));}
4181function lesserWholeNumber(x){if(x===0)return 0;const pow10=(x<0)?-lesserPower(-x):lesserPower(x);return pow10*Math.floor(x/pow10);}
4182function greaterWholeNumber(x){if(x===0)return 0;const pow10=(x<0)?-lesserPower(-x):lesserPower(x);return pow10*Math.ceil(x/pow10);}
4183function preferredNumberLargerThanMin(min){const absMin=Math.abs(min);const conservativeGuess=tr.b.math.lesserPower(absMin);let minPreferedNumber=undefined;for(const multiplier of PREFERRED_NUMBER_SERIES_MULTIPLIERS){const tightenedGuess=conservativeGuess*multiplier;if(tightenedGuess>=absMin){minPreferedNumber=tightenedGuess;break;}}
4184if(minPreferedNumber===undefined){throw new Error('Could not compute preferred number for '+min);}
4185if(min<0)minPreferedNumber*=-1;return minPreferedNumber;}
4186return{approximately,clamp,lerp,normalize,deg2rad,erf,lesserPower,greaterPower,lesserWholeNumber,greaterWholeNumber,preferredNumberLargerThanMin,};});'use strict';tr.exportTo('tr.b.math',function(){function Range(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;}
4187Range.prototype={__proto__:Object.prototype,clone(){if(this.isEmpty)return new Range();return Range.fromExplicitRange(this.min_,this.max_);},reset(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;},get isEmpty(){return this.isEmpty_;},addRange(range){if(range.isEmpty)return;this.addValue(range.min);this.addValue(range.max);},addValue(value){if(this.isEmpty_){this.max_=value;this.min_=value;this.isEmpty_=false;return;}
4188this.max_=Math.max(this.max_,value);this.min_=Math.min(this.min_,value);},set min(min){this.isEmpty_=false;this.min_=min;},get min(){if(this.isEmpty_)return undefined;return this.min_;},get max(){if(this.isEmpty_)return undefined;return this.max_;},set max(max){this.isEmpty_=false;this.max_=max;},get range(){if(this.isEmpty_)return undefined;return this.max_-this.min_;},get center(){return(this.min_+this.max_)*0.5;},get duration(){if(this.isEmpty_)return 0;return this.max_-this.min_;},enclosingPowers(opt_base){if(this.isEmpty)return new Range();return Range.fromExplicitRange(tr.b.math.lesserPower(this.min_,opt_base),tr.b.math.greaterPower(this.max_,opt_base));},normalize(x){return tr.b.math.normalize(x,this.min,this.max);},lerp(x){return tr.b.math.lerp(x,this.min,this.max);},clamp(x){return tr.b.math.clamp(x,this.min,this.max);},equals(that){if(this.isEmpty&&that.isEmpty)return true;if(this.isEmpty!==that.isEmpty)return false;return(tr.b.math.approximately(this.min,that.min)&&tr.b.math.approximately(this.max,that.max));},containsExplicitRangeInclusive(min,max){if(this.isEmpty)return false;return this.min_<=min&&max<=this.max_;},containsExplicitRangeExclusive(min,max){if(this.isEmpty)return false;return this.min_<min&&max<this.max_;},intersectsExplicitRangeInclusive(min,max){if(this.isEmpty)return false;return this.min_<=max&&min<=this.max_;},intersectsExplicitRangeExclusive(min,max){if(this.isEmpty)return false;return this.min_<max&&min<this.max_;},containsRangeInclusive(range){if(range.isEmpty)return false;return this.containsExplicitRangeInclusive(range.min_,range.max_);},containsRangeExclusive(range){if(range.isEmpty)return false;return this.containsExplicitRangeExclusive(range.min_,range.max_);},intersectsRangeInclusive(range){if(range.isEmpty)return false;return this.intersectsExplicitRangeInclusive(range.min_,range.max_);},intersectsRangeExclusive(range){if(range.isEmpty)return false;return this.intersectsExplicitRangeExclusive(range.min_,range.max_);},findExplicitIntersectionDuration(min,max){min=Math.max(this.min,min);max=Math.min(this.max,max);if(max<min)return 0;return max-min;},findIntersection(range){if(this.isEmpty||range.isEmpty)return new Range();const min=Math.max(this.min,range.min);const max=Math.min(this.max,range.max);if(max<min)return new Range();return Range.fromExplicitRange(min,max);},toJSON(){if(this.isEmpty_)return{isEmpty:true};return{isEmpty:false,max:this.max,min:this.min};},filterArray(sortedArray,opt_keyFunc,opt_this){if(this.isEmpty_)return[];const keyFunc=opt_keyFunc||(x=>x);function getValue(obj){return keyFunc.call(opt_this,obj);}
4189const first=tr.b.findFirstTrueIndexInSortedArray(sortedArray,obj=>this.min_===undefined||this.min_<=getValue(obj));const last=tr.b.findFirstTrueIndexInSortedArray(sortedArray,obj=>this.max_!==undefined&&this.max_<getValue(obj));return sortedArray.slice(first,last);}};Range.fromDict=function(d){if(d.isEmpty===true)return new Range();if(d.isEmpty===false){const range=new Range();range.min=d.min;range.max=d.max;return range;}
4190throw new Error('Not a range');};Range.fromExplicitRange=function(min,max){const range=new Range();range.min=min;range.max=max;return range;};Range.compareByMinTimes=function(a,b){if(!a.isEmpty&&!b.isEmpty)return a.min_-b.min_;if(a.isEmpty&&!b.isEmpty)return-1;if(!a.isEmpty&&b.isEmpty)return 1;return 0;};Range.findDifference=function(rangeA,rangeB){if(!rangeA||rangeA.duration<0||!rangeB||rangeB.duration<0){throw new Error(`Couldn't subtract ranges`);}
4191const resultRanges=[];if(rangeA.isEmpty)return resultRanges;if(rangeB.isEmpty)return[rangeA.clone()];const intersection=rangeA.findIntersection(rangeB);if(intersection.isEmpty){return[rangeA.clone()];}
4192if(rangeA.duration===0&&rangeB.duration===0){if(intersection.empty)return[rangeA.clone()];else if(intersection.duration===0)return resultRanges;throw new Error(`Two points' intersection can only be a point or empty`);}
4193const leftRange=tr.b.math.Range.fromExplicitRange(rangeA.min,intersection.min);if(leftRange.duration>0){resultRanges.push(leftRange);}
4194const rightRange=tr.b.math.Range.fromExplicitRange(intersection.max,rangeA.max);if(rightRange.duration>0){resultRanges.push(rightRange);}
4195return resultRanges;};Range.PERCENT_RANGE=Range.fromExplicitRange(0,1);Object.freeze(Range.PERCENT_RANGE);return{Range,};});'use strict';(function(exports){var rank={standard:function(array,key){array=array.sort(function(a,b){var x=a[key];var y=b[key];return((x<y)?-1:((x>y)?1:0));});for(var i=1;i<array.length+1;i++){array[i-1]['rank']=i;}
4196return array;},fractional:function(array,key){array=this.standard(array,key);var pos=0;while(pos<array.length){var sum=0;var i=0;for(i=0;array[pos+i+1]&&(array[pos+i][key]===array[pos+i+1][key]);i++){sum+=array[pos+i]['rank'];}
4197sum+=array[pos+i]['rank'];var endPos=pos+i+1;for(pos;pos<endPos;pos++){array[pos]['rank']=sum/(i+1);}
4198pos=endPos;}
4199return array;},rank:function(x,y){var nx=x.length,ny=y.length,combined=[],ranked;while(nx--){combined.push({set:'x',val:x[nx]});}
4200while(ny--){combined.push({set:'y',val:y[ny]});}
4201ranked=this.fractional(combined,'val');return ranked}};var erf=function erf(x){var cof=[-1.3026537197817094,6.4196979235649026e-1,1.9476473204185836e-2,-9.561514786808631e-3,-9.46595344482036e-4,3.66839497852761e-4,4.2523324806907e-5,-2.0278578112534e-5,-1.624290004647e-6,1.303655835580e-6,1.5626441722e-8,-8.5238095915e-8,6.529054439e-9,5.059343495e-9,-9.91364156e-10,-2.27365122e-10,9.6467911e-11,2.394038e-12,-6.886027e-12,8.94487e-13,3.13092e-13,-1.12708e-13,3.81e-16,7.106e-15,-1.523e-15,-9.4e-17,1.21e-16,-2.8e-17];var j=cof.length-1;var isneg=false;var d=0;var dd=0;var t,ty,tmp,res;if(x<0){x=-x;isneg=true;}
4202t=2/(2+x);ty=4*t-2;for(;j>0;j--){tmp=d;d=ty*d-dd+cof[j];dd=tmp;}
4203res=t*Math.exp(-x*x+0.5*(cof[0]+ty*d)-dd);return isneg?res-1:1-res;};var dnorm=function(x,mean,std){return 0.5*(1+erf((x-mean)/Math.sqrt(2*std*std)));}
4204var statistic=function(x,y){var ranked=rank.rank(x,y),nr=ranked.length,nx=x.length,ny=y.length,ranksums={x:0,y:0},i=0,t=0,nt=1,tcf,ux,uy;while(i<nr){if(i>0){if(ranked[i].val==ranked[i-1].val){nt++;}else{if(nt>1){t+=Math.pow(nt,3)-nt
4205nt=1;}}}
4206ranksums[ranked[i].set]+=ranked[i].rank
4207i++;}
4208tcf=1-(t/(Math.pow(nr,3)-nr))
4209ux=nx*ny+(nx*(nx+1)/2)-ranksums.x;uy=nx*ny-ux;return{tcf:tcf,ux:ux,uy:uy,big:Math.max(ux,uy),small:Math.min(ux,uy)}}
4210exports.test=function(x,y,alt,corr){alt=typeof alt!=='undefined'?alt:'two-sided';corr=typeof corr!=='undefined'?corr:true;var nx=x.length,ny=y.length,f=1,u,mu,std,z,p;u=statistic(x,y);if(corr){mu=(nx*ny/2)+0.5;}else{mu=nx*ny/2;}
4211std=Math.sqrt(u.tcf*nx*ny*(nx+ny+1)/12);if(alt=='less'){z=(u.ux-mu)/std;}else if(alt=='greater'){z=(u.uy-mu)/std;}else if(alt=='two-sided'){z=Math.abs((u.big-mu)/std);}else{console.log('Unknown alternative argument');}
4212if(alt=='two-sided'){f=2;}
4213p=dnorm(-z,0,1)*f;return{U:u.small,p:p};}})(typeof exports==='undefined'?this['mannwhitneyu']={}:exports);'use strict';(function(global){if(tr.isNode){const mwuAbsPath=HTMLImportsLoader.hrefToAbsolutePath('/mannwhitneyu.js');const mwuModule=require(mwuAbsPath);for(const exportName in mwuModule){global[exportName]=mwuModule[exportName];}}})(this);'use strict';tr.exportTo('tr.b.math',function(){const Statistics={};Statistics.divideIfPossibleOrZero=function(numerator,denominator){if(denominator===0)return 0;return numerator/denominator;};Statistics.sum=function(ary,opt_func,opt_this){const func=opt_func||(x=>x);let ret=0;let i=0;for(const elt of ary){ret+=func.call(opt_this,elt,i++);}
4214return ret;};Statistics.mean=function(ary,opt_func,opt_this){const func=opt_func||(x=>x);let sum=0;let i=0;for(const elt of ary){sum+=func.call(opt_this,elt,i++);}
4215if(i===0)return undefined;return sum/i;};Statistics.geometricMean=function(ary,opt_func,opt_this){const func=opt_func||(x=>x);let i=0;let logsum=0;for(const elt of ary){const x=func.call(opt_this,elt,i++);if(x<=0)return 0;logsum+=Math.log(Math.abs(x));}
4216if(i===0)return 1;return Math.exp(logsum/i);};Statistics.weightedMean=function(ary,weightCallback,opt_valueCallback,opt_this){const valueCallback=opt_valueCallback||(x=>x);let numerator=0;let denominator=0;let i=-1;for(const elt of ary){i++;const value=valueCallback.call(opt_this,elt,i);if(value===undefined)continue;const weight=weightCallback.call(opt_this,elt,i,value);numerator+=weight*value;denominator+=weight;}
4217if(denominator===0)return undefined;return numerator/denominator;};Statistics.variance=function(ary,opt_func,opt_this){if(ary.length===0)return undefined;if(ary.length===1)return 0;const func=opt_func||(x=>x);const mean=Statistics.mean(ary,func,opt_this);const sumOfSquaredDistances=Statistics.sum(ary,function(d,i){const v=func.call(this,d,i)-mean;return v*v;},opt_this);return sumOfSquaredDistances/(ary.length-1);};Statistics.stddev=function(ary,opt_func,opt_this){if(ary.length===0)return undefined;return Math.sqrt(Statistics.variance(ary,opt_func,opt_this));};Statistics.max=function(ary,opt_func,opt_this){const func=opt_func||(x=>x);let ret=-Infinity;let i=0;for(const elt of ary){ret=Math.max(ret,func.call(opt_this,elt,i++));}
4218return ret;};Statistics.min=function(ary,opt_func,opt_this){const func=opt_func||(x=>x);let ret=Infinity;let i=0;for(const elt of ary){ret=Math.min(ret,func.call(opt_this,elt,i++));}
4219return ret;};Statistics.range=function(ary,opt_func,opt_this){const func=opt_func||(x=>x);const ret=new tr.b.math.Range();let i=0;for(const elt of ary){ret.addValue(func.call(opt_this,elt,i++));}
4220return ret;};Statistics.percentile=function(ary,percent,opt_func,opt_this){if(!(percent>=0&&percent<=1)){throw new Error('percent must be [0,1]');}
4221const func=opt_func||(x=>x);const tmp=new Array(ary.length);let i=0;for(const elt of ary){tmp[i]=func.call(opt_this,elt,i++);}
4222tmp.sort((a,b)=>a-b);const idx=Math.floor((ary.length-1)*percent);return tmp[idx];};Statistics.normalizeSamples=function(samples){if(samples.length===0){return{normalized_samples:samples,scale:1.0};}
4223samples=samples.slice().sort(function(a,b){return a-b;});const low=Math.min.apply(null,samples);const high=Math.max.apply(null,samples);const newLow=0.5/samples.length;const newHigh=(samples.length-0.5)/samples.length;if(high-low===0.0){samples=Array.apply(null,new Array(samples.length)).map(function(){return 0.5;});return{normalized_samples:samples,scale:1.0};}
4224const scale=(newHigh-newLow)/(high-low);for(let i=0;i<samples.length;i++){samples[i]=(samples[i]-low)*scale+newLow;}
4225return{normalized_samples:samples,scale};};Statistics.discrepancy=function(samples,opt_locationCount){if(samples.length===0)return 0.0;let maxLocalDiscrepancy=0;const invSampleCount=1.0/samples.length;const locations=[];const countLess=[];const countLessEqual=[];if(opt_locationCount!==undefined){let sampleIndex=0;for(let i=0;i<opt_locationCount;i++){const location=i/(opt_locationCount-1);locations.push(location);while(sampleIndex<samples.length&&samples[sampleIndex]<location){sampleIndex+=1;}
4226countLess.push(sampleIndex);while(sampleIndex<samples.length&&samples[sampleIndex]<=location){sampleIndex+=1;}
4227countLessEqual.push(sampleIndex);}}else{if(samples[0]>0.0){locations.push(0.0);countLess.push(0);countLessEqual.push(0);}
4228for(let i=0;i<samples.length;i++){locations.push(samples[i]);countLess.push(i);countLessEqual.push(i+1);}
4229if(samples[-1]<1.0){locations.push(1.0);countLess.push(samples.length);countLessEqual.push(samples.length);}}
4230let maxDiff=0;let minDiff=0;for(let i=1;i<locations.length;i++){const length=locations[i]-locations[i-1];const countClosed=countLessEqual[i]-countLess[i-1];const countOpen=countLess[i]-countLessEqual[i-1];const countClosedIncrement=countLessEqual[i]-countLessEqual[i-1];const countOpenIncrement=countLess[i]-countLess[i-1];maxDiff=Math.max(countClosedIncrement*invSampleCount-length+maxDiff,countClosed*invSampleCount-length);minDiff=Math.min(countOpenIncrement*invSampleCount-length+minDiff,countOpen*invSampleCount-length);maxLocalDiscrepancy=Math.max(maxDiff,-minDiff,maxLocalDiscrepancy);}
4231return maxLocalDiscrepancy;};Statistics.timestampsDiscrepancy=function(timestamps,opt_absolute,opt_locationCount){if(timestamps.length===0)return 0.0;if(opt_absolute===undefined)opt_absolute=true;if(Array.isArray(timestamps[0])){const rangeDiscrepancies=timestamps.map(function(r){return Statistics.timestampsDiscrepancy(r);});return Math.max.apply(null,rangeDiscrepancies);}
4232const s=Statistics.normalizeSamples(timestamps);const samples=s.normalized_samples;const sampleScale=s.scale;let discrepancy=Statistics.discrepancy(samples,opt_locationCount);const invSampleCount=1.0/samples.length;if(opt_absolute===true){discrepancy/=sampleScale;}else{discrepancy=tr.b.math.clamp((discrepancy-invSampleCount)/(1.0-invSampleCount),0.0,1.0);}
4233return discrepancy;};Statistics.durationsDiscrepancy=function(durations,opt_absolute,opt_locationCount){if(durations.length===0)return 0.0;const timestamps=durations.reduce(function(prev,curr,index,array){prev.push(prev[prev.length-1]+curr);return prev;},[0]);return Statistics.timestampsDiscrepancy(timestamps,opt_absolute,opt_locationCount);};Statistics.uniformlySampleArray=function(samples,count){if(samples.length<=count){return samples;}
4234while(samples.length>count){const i=parseInt(Math.random()*samples.length);samples.splice(i,1);}
4235return samples;};Statistics.uniformlySampleStream=function(samples,streamLength,newElement,numSamples){if(streamLength<=numSamples){if(samples.length>=streamLength){samples[streamLength-1]=newElement;}else{samples.push(newElement);}
4236return;}
4237const probToKeep=numSamples/streamLength;if(Math.random()>probToKeep)return;const index=Math.floor(Math.random()*numSamples);samples[index]=newElement;};Statistics.mergeSampledStreams=function(samplesA,streamLengthA,samplesB,streamLengthB,numSamples){if(streamLengthB<numSamples){const nbElements=Math.min(streamLengthB,samplesB.length);for(let i=0;i<nbElements;++i){Statistics.uniformlySampleStream(samplesA,streamLengthA+i+1,samplesB[i],numSamples);}
4238return;}
4239if(streamLengthA<numSamples){const nbElements=Math.min(streamLengthA,samplesA.length);const tempSamples=samplesB.slice();for(let i=0;i<nbElements;++i){Statistics.uniformlySampleStream(tempSamples,streamLengthB+i+1,samplesA[i],numSamples);}
4240for(let i=0;i<tempSamples.length;++i){samplesA[i]=tempSamples[i];}
4241return;}
4242const nbElements=Math.min(numSamples,samplesB.length);const probOfSwapping=streamLengthB/(streamLengthA+streamLengthB);for(let i=0;i<nbElements;++i){if(Math.random()<probOfSwapping){samplesA[i]=samplesB[i];}}};function Distribution(){}
4243Distribution.prototype={computeDensity(x){throw Error('Not implemented');},computePercentile(x){throw Error('Not implemented');},computeComplementaryPercentile(x){return 1-this.computePercentile(x);},get mean(){throw Error('Not implemented');},get mode(){throw Error('Not implemented');},get median(){throw Error('Not implemented');},get standardDeviation(){throw Error('Not implemented');},get variance(){throw Error('Not implemented');}};Statistics.UniformDistribution=function(opt_range){if(!opt_range)opt_range=tr.b.math.Range.fromExplicitRange(0,1);this.range=opt_range;};Statistics.UniformDistribution.prototype={__proto__:Distribution.prototype,computeDensity(x){return 1/this.range.range;},computePercentile(x){return tr.b.math.normalize(x,this.range.min,this.range.max);},get mean(){return this.range.center;},get mode(){return undefined;},get median(){return this.mean;},get standardDeviation(){return Math.sqrt(this.variance);},get variance(){return Math.pow(this.range.range,2)/12;}};Statistics.NormalDistribution=function(opt_mean,opt_variance){this.mean_=opt_mean||0;this.variance_=opt_variance||1;this.standardDeviation_=Math.sqrt(this.variance_);};Statistics.NormalDistribution.prototype={__proto__:Distribution.prototype,computeDensity(x){const scale=(1.0/(this.standardDeviation*Math.sqrt(2.0*Math.PI)));const exponent=-Math.pow(x-this.mean,2)/(2.0*this.variance);return scale*Math.exp(exponent);},computePercentile(x){const standardizedX=((x-this.mean)/Math.sqrt(2.0*this.variance));return(1.0+tr.b.math.erf(standardizedX))/2.0;},get mean(){return this.mean_;},get median(){return this.mean;},get mode(){return this.mean;},get standardDeviation(){return this.standardDeviation_;},get variance(){return this.variance_;}};Statistics.LogNormalDistribution=function(opt_location,opt_shape){this.normalDistribution_=new Statistics.NormalDistribution(opt_location,Math.pow(opt_shape||1,2));};Statistics.LogNormalDistribution.prototype={__proto__:Statistics.NormalDistribution.prototype,computeDensity(x){return this.normalDistribution_.computeDensity(Math.log(x))/x;},computePercentile(x){return this.normalDistribution_.computePercentile(Math.log(x));},get mean(){return Math.exp(this.normalDistribution_.mean+
4244(this.normalDistribution_.variance/2));},get variance(){const nm=this.normalDistribution_.mean;const nv=this.normalDistribution_.variance;return(Math.exp(2*(nm+nv))-
4245Math.exp(2*nm+nv));},get standardDeviation(){return Math.sqrt(this.variance);},get median(){return Math.exp(this.normalDistribution_.mean);},get mode(){return Math.exp(this.normalDistribution_.mean-
4246this.normalDistribution_.variance);}};Statistics.LogNormalDistribution.fromMedianAndDiminishingReturns=function(median,diminishingReturns){diminishingReturns=Math.log(diminishingReturns/median);const shape=Math.sqrt(1-3*diminishingReturns-
4247Math.sqrt(Math.pow(diminishingReturns-3,2)-8))/2;const location=Math.log(median);return new Statistics.LogNormalDistribution(location,shape);};Statistics.DEFAULT_ALPHA=0.01;Statistics.MAX_SUGGESTED_SAMPLE_SIZE=20;Statistics.Significance={SIGNIFICANT:'REJECT',INSIGNIFICANT:'FAIL_TO_REJECT',NEED_MORE_DATA:'NEED_MORE_DATA',DONT_CARE:'DONT_CARE',};class HypothesisTestResult{constructor(p,u,needMoreData,opt_alpha){this.p_=p;this.u_=u;this.needMoreData_=needMoreData;this.compare(opt_alpha);}
4248get p(){return this.p_;}
4249get U(){return this.u_;}
4250get significance(){return this.significance_;}
4251compare(opt_alpha){const alpha=opt_alpha||Statistics.DEFAULT_ALPHA;if(this.p<alpha){this.significance_=Statistics.Significance.SIGNIFICANT;}else if(this.needMoreData_){this.significance_=Statistics.Significance.NEED_MORE_DATA;}else{this.significance_=Statistics.Significance.INSIGNIFICANT;}
4252return this.significance_;}
4253asDict(){return{p:this.p,U:this.U,significance:this.significance,};}}
4254Statistics.mwu=function(a,b,opt_alpha,opt_reqSampleSize){const result=mannwhitneyu.test(a,b);const needMoreData=opt_reqSampleSize&&Math.min(a.length,b.length)<opt_reqSampleSize;return new HypothesisTestResult(result.p,result.U,needMoreData,opt_alpha);};return{Statistics,};});'use strict';const GREEK_SMALL_LETTER_MU=String.fromCharCode(956);tr.exportTo('tr.b',function(){const SECONDS_IN_A_MINUTE=60;const SECONDS_IN_AN_HOUR=SECONDS_IN_A_MINUTE*60;const SECONDS_IN_A_DAY=SECONDS_IN_AN_HOUR*24;const SECONDS_IN_A_WEEK=SECONDS_IN_A_DAY*7;const SECONDS_IN_A_YEAR=SECONDS_IN_A_DAY*365.2422;const SECONDS_IN_A_MONTH=SECONDS_IN_A_YEAR/12;const UnitPrefixScale={};const UnitScale={};function defineUnitPrefixScale(name,prefixes){if(UnitPrefixScale[name]!==undefined){throw new Error('Unit prefix scale \''+name+'\' already exists');}
4255if(prefixes.AUTO!==undefined){throw new Error('The \'AUTO\' unit prefix is not supported for unit'+'prefix scales and cannot be added to scale \''+name+'\'');}
4256UnitPrefixScale[name]=prefixes;}
4257UnitScale.defineUnitScale=function(name,unitScale){if(UnitScale[name]!==undefined){throw new Error('Unit scale \''+name+'\' already exists');}
4258if(unitScale.AUTO!==undefined){throw new Error('\'AUTO\' unit scale will be added automatically '+'for unit scale \''+name+'\'');}
4259unitScale.AUTO=Object.values(unitScale);unitScale.AUTO.sort((a,b)=>a.value-b.value);if(name)UnitScale[name]=unitScale;return unitScale;};UnitScale.defineUnitScaleFromPrefixScale=function(baseSymbol,baseName,prefixScale,opt_scaleName){if(baseSymbol===undefined){throw new Error('Cannot create UnitScale with undefined baseSymbol.');}
4260if(!baseName){throw new Error('Cannot create UnitScale without a baseName.');}
4261if(!prefixScale){throw new Error('Cannot create UnitScale without a prefix scale.');}
4262const unitScale={};for(const curPrefix of Object.keys(prefixScale)){const curScale=prefixScale[curPrefix];if(curScale.symbol===undefined||!curScale.value){throw new Error(`Cannot convert PrefixScale with malformed prefix ${curScale}.`);}
4263const name=curPrefix==='NONE'?baseName:`${curPrefix}_${baseName}`;unitScale[name]={value:curScale.value,symbol:curScale.symbol+baseSymbol,baseSymbol};}
4264return UnitScale.defineUnitScale(opt_scaleName,unitScale);};function convertUnit(value,fromScale,toScale){if(value===undefined)return undefined;const fromScaleBase=fromScale.baseSymbol;const toScaleBase=toScale.baseSymbol;if(fromScaleBase!==undefined&&toScaleBase!==undefined&&fromScaleBase!==toScaleBase){throw new Error('Cannot convert between units with different base symbols.');}
4265return value*(fromScale.value/toScale.value);}
4266defineUnitPrefixScale('BINARY',{NONE:{value:Math.pow(1024,0),symbol:''},KIBI:{value:Math.pow(1024,1),symbol:'Ki'},MEBI:{value:Math.pow(1024,2),symbol:'Mi'},GIBI:{value:Math.pow(1024,3),symbol:'Gi'},TEBI:{value:Math.pow(1024,4),symbol:'Ti'}});defineUnitPrefixScale('METRIC',{NANO:{value:1e-9,symbol:'n'},MICRO:{value:1e-6,symbol:GREEK_SMALL_LETTER_MU},MILLI:{value:1e-3,symbol:'m'},NONE:{value:1,symbol:''},KILO:{value:1e3,symbol:'k'},MEGA:{value:1e6,symbol:'M'},GIGA:{value:1e9,symbol:'G'}});UnitScale.defineUnitScale('TIME',{NANO_SEC:{value:1e-9,symbol:'ns',baseSymbol:'s'},MICRO_SEC:{value:1e-6,symbol:GREEK_SMALL_LETTER_MU+'s',baseSymbol:'s'},MILLI_SEC:{value:1e-3,symbol:'ms',baseSymbol:'s'},SEC:{value:1,symbol:'s',baseSymbol:'s'},MINUTE:{value:SECONDS_IN_A_MINUTE,symbol:'min',baseSymbol:'s'},HOUR:{value:SECONDS_IN_AN_HOUR,symbol:'hr',baseSymbol:'s'},DAY:{value:SECONDS_IN_A_DAY,symbol:'days',baseSymbol:'s'},WEEK:{value:SECONDS_IN_A_WEEK,symbol:'weeks',baseSymbol:'s'},MONTH:{value:SECONDS_IN_A_MONTH,symbol:'months',baseSymbol:'s'},YEAR:{value:SECONDS_IN_A_YEAR,symbol:'years',baseSymbol:'s'}});UnitScale.defineUnitScaleFromPrefixScale('B','BYTE',UnitPrefixScale.BINARY,'MEMORY');return{UnitPrefixScale,UnitScale,convertUnit,};});'use strict';tr.exportTo('tr.b',function(){const msDisplayMode={scale:1e-3,suffix:'ms',roundedLess(a,b){return Math.round(a*1000)<Math.round(b*1000);},formatSpec:{unitScale:[tr.b.UnitScale.TIME.MILLI_SEC],minimumFractionDigits:3,}};const nsDisplayMode={scale:1e-9,suffix:'ns',roundedLess(a,b){return Math.round(a*1000000)<Math.round(b*1000000);},formatSpec:{unitScale:[tr.b.UnitScale.TIME.NANO_SEC],maximumFractionDigits:0}};const TimeDisplayModes={ns:nsDisplayMode,ms:msDisplayMode};return{TimeDisplayModes,};});'use strict';tr.exportTo('tr.ui.b',function(){function iterateElementDeeplyImpl(element,cb,thisArg,includeElement){if(includeElement&&cb.call(thisArg,element))return true;if(element.root&&element.root!==element&&iterateElementDeeplyImpl(element.root,cb,thisArg,false)){return true;}
4267const children=Polymer.dom(element).children;for(let i=0;i<children.length;i++){if(iterateElementDeeplyImpl(children[i],cb,thisArg,true)){return true;}}
4268return false;}
4269function iterateElementDeeply(element,cb,thisArg){iterateElementDeeplyImpl(element,cb,thisArg,false);}
4270function findDeepElementMatchingPredicate(element,predicate){let foundElement=undefined;function matches(element){const match=predicate(element);if(!match){return false;}
4271foundElement=element;return true;}
4272iterateElementDeeply(element,matches);return foundElement;}
4273function findDeepElementsMatchingPredicate(element,predicate){const foundElements=[];function matches(element){const match=predicate(element);if(match){foundElements.push(element);}
4274return false;}
4275iterateElementDeeply(element,matches);return foundElements;}
4276function findDeepElementMatching(element,selector){return findDeepElementMatchingPredicate(element,function(element){return element.matches(selector);});}
4277function findDeepElementsMatching(element,selector){return findDeepElementsMatchingPredicate(element,function(element){return element.matches(selector);});}
4278function findDeepElementWithTextContent(element,re){return findDeepElementMatchingPredicate(element,function(element){if(element.children.length!==0)return false;return re.test(Polymer.dom(element).textContent);});}
4279return{findDeepElementMatching,findDeepElementsMatching,findDeepElementMatchingPredicate,findDeepElementsMatchingPredicate,findDeepElementWithTextContent,};});'use strict';tr.exportTo('tr.b',function(){const TimeDisplayModes=tr.b.TimeDisplayModes;const PLUS_MINUS_SIGN=String.fromCharCode(177);const CACHED_FORMATTERS={};function getNumberFormatter(minSpec,maxSpec,minCtx,maxCtx){const key=minSpec+'-'+maxSpec+'-'+minCtx+'-'+maxCtx;let formatter=CACHED_FORMATTERS[key];if(formatter===undefined){let minimumFractionDigits=minCtx!==undefined?minCtx:minSpec;let maximumFractionDigits=maxCtx!==undefined?maxCtx:maxSpec;if(minimumFractionDigits>maximumFractionDigits){if(minCtx!==undefined&&maxCtx===undefined){maximumFractionDigits=minimumFractionDigits;}else if(minCtx===undefined&&maxCtx!==undefined){minimumFractionDigits=maximumFractionDigits;}}
4280formatter=new Intl.NumberFormat(undefined,{minimumFractionDigits,maximumFractionDigits,});CACHED_FORMATTERS[key]=formatter;}
4281return formatter;}
4282function max(a,b){if(a===undefined)return b;if(b===undefined)return a;return a.scale>b.scale?a:b;}
4283const ImprovementDirection={DONT_CARE:0,BIGGER_IS_BETTER:1,SMALLER_IS_BETTER:2};function Unit(unitName,jsonName,scaleBaseUnit,isDelta,improvementDirection,formatSpec){this.unitName=unitName;this.jsonName=jsonName;this.scaleBaseUnit=scaleBaseUnit;this.isDelta=isDelta;this.improvementDirection=improvementDirection;this.formatSpec_=formatSpec;this.baseUnit=undefined;this.correspondingDeltaUnit=undefined;}
4284Unit.prototype={asJSON(){return this.jsonName;},getUnitScale_(opt_context){let formatSpec=this.formatSpec_;let formatSpecWasFunction=false;if(typeof formatSpec==='function'){formatSpecWasFunction=true;formatSpec=formatSpec();}
4285const context=opt_context||{};let scale=undefined;if(context.unitScale){scale=context.unitScale;}else if(context.unitPrefix){const symbol=formatSpec.baseSymbol?formatSpec.baseSymbol:this.scaleBaseUnit.baseSymbol;scale=tr.b.UnitScale.defineUnitScaleFromPrefixScale(symbol,symbol,[context.unitPrefix]).AUTO;}else{scale=formatSpec.unitScale;if(!scale){scale=[{value:1,symbol:formatSpec.baseSymbol||'',baseSymbol:formatSpec.baseSymbol||''}];if(!formatSpecWasFunction)formatSpec.unitScale=scale;}}
4286if(!(scale instanceof Array)){throw new Error('Unit has a malformed unit scale.');}
4287return scale;},get unitString(){const scale=this.getUnitScale_();if(!scale){throw new Error('A UnitScale could not be found for Unit '+this.unitName);}
4288return scale[0].symbol;},format(value,opt_context){let signString='';if(value<0){signString='-';value=-value;}else if(this.isDelta){signString=value===0?PLUS_MINUS_SIGN:'+';}
4289const context=opt_context||{};const scale=this.getUnitScale_(context);let deltaValue=context.deltaValue===undefined?value:context.deltaValue;deltaValue=Math.abs(deltaValue)*this.scaleBaseUnit.value;let i=0;while(i<scale.length-1&&deltaValue/scale[i+1].value>=1){i++;}
4290const selectedSubUnit=scale[i];let formatSpec=this.formatSpec_;if(typeof formatSpec==='function')formatSpec=formatSpec();let unitString='';if(selectedSubUnit.symbol){if(!formatSpec.avoidSpacePrecedingUnit)unitString=' ';unitString+=selectedSubUnit.symbol;}
4291value=tr.b.convertUnit(value,this.scaleBaseUnit,selectedSubUnit);const numberString=getNumberFormatter(formatSpec.minimumFractionDigits,formatSpec.maximumFractionDigits,context.minimumFractionDigits,context.maximumFractionDigits).format(value);return signString+numberString+unitString;}};Unit.reset=function(){Unit.currentTimeDisplayMode=TimeDisplayModes.ms;};Unit.timestampFromUs=function(us){return tr.b.convertUnit(us,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);};Object.defineProperty(Unit,'currentTimeDisplayMode',{get(){return Unit.currentTimeDisplayMode_;},set(value){if(Unit.currentTimeDisplayMode_===value)return;Unit.currentTimeDisplayMode_=value;Unit.dispatchEvent(new tr.b.Event('display-mode-changed'));}});Unit.didPreferredTimeDisplayUnitChange=function(){let largest=undefined;const els=tr.ui.b.findDeepElementsMatching(document.body,'tr-v-ui-preferred-display-unit');els.forEach(function(el){largest=max(largest,el.preferredTimeDisplayMode);});Unit.currentTimeDisplayMode=largest===undefined?TimeDisplayModes.ms:largest;};Unit.byName={};Unit.byJSONName={};Unit.fromJSON=function(object){const u=Unit.byJSONName[object];if(u){return u;}
4292throw new Error(`Unrecognized unit "${object}"`);};Unit.define=function(params){const definedUnits=[];for(const improvementDirection of Object.values(ImprovementDirection)){const regularUnit=Unit.defineUnitVariant_(params,false,improvementDirection);const deltaUnit=Unit.defineUnitVariant_(params,true,improvementDirection);regularUnit.correspondingDeltaUnit=deltaUnit;deltaUnit.correspondingDeltaUnit=deltaUnit;definedUnits.push(regularUnit,deltaUnit);}
4293const baseUnit=Unit.byName[params.baseUnitName];definedUnits.forEach(u=>u.baseUnit=baseUnit);};Unit.nameSuffixForImprovementDirection=function(improvementDirection){switch(improvementDirection){case ImprovementDirection.DONT_CARE:return'';case ImprovementDirection.BIGGER_IS_BETTER:return'_biggerIsBetter';case ImprovementDirection.SMALLER_IS_BETTER:return'_smallerIsBetter';default:throw new Error('Unknown improvement direction: '+improvementDirection);}};Unit.defineUnitVariant_=function(params,isDelta,improvementDirection){let nameSuffix=isDelta?'Delta':'';nameSuffix+=Unit.nameSuffixForImprovementDirection(improvementDirection);const unitName=params.baseUnitName+nameSuffix;const jsonName=params.baseJsonName+nameSuffix;if(Unit.byName[unitName]!==undefined){throw new Error('Unit \''+unitName+'\' already exists');}
4294if(Unit.byJSONName[jsonName]!==undefined){throw new Error('JSON unit \''+jsonName+'\' alread exists');}
4295let scaleBaseUnit=params.scaleBaseUnit;if(!scaleBaseUnit){let formatSpec=params.formatSpec;if(typeof formatSpec==='function')formatSpec=formatSpec();const baseSymbol=formatSpec.unitScale?formatSpec.unitScale[0].baseSymbol:(formatSpec.baseSymbol||'');scaleBaseUnit={value:1,symbol:baseSymbol,baseSymbol};}
4296const unit=new Unit(unitName,jsonName,scaleBaseUnit,isDelta,improvementDirection,params.formatSpec);Unit.byName[unitName]=unit;Unit.byJSONName[jsonName]=unit;return unit;};tr.b.EventTarget.decorate(Unit);Unit.reset();Unit.define({baseUnitName:'timeInMsAutoFormat',baseJsonName:'msBestFitFormat',scaleBaseUnit:tr.b.UnitScale.TIME.MILLI_SEC,formatSpec:{unitScale:tr.b.UnitScale.TIME.AUTO,minimumFractionDigits:0,maximumFractionDigits:3}});Unit.define({baseUnitName:'timeDurationInMs',baseJsonName:'ms',scaleBaseUnit:tr.b.UnitScale.TIME.MILLI_SEC,formatSpec(){return Unit.currentTimeDisplayMode_.formatSpec;}});Unit.define({baseUnitName:'timeStampInMs',baseJsonName:'tsMs',scaleBaseUnit:tr.b.UnitScale.TIME.MILLI_SEC,formatSpec(){return Unit.currentTimeDisplayMode_.formatSpec;}});Unit.define({baseUnitName:'normalizedPercentage',baseJsonName:'n%',formatSpec:{unitScale:[{value:0.01,symbol:'%'}],avoidSpacePrecedingUnit:true,minimumFractionDigits:3,maximumFractionDigits:3}});Unit.define({baseUnitName:'sizeInBytes',baseJsonName:'sizeInBytes',formatSpec:{unitScale:tr.b.UnitScale.MEMORY.AUTO,minimumFractionDigits:1,maximumFractionDigits:1}});Unit.define({baseUnitName:'energyInJoules',baseJsonName:'J',formatSpec:{baseSymbol:'J',minimumFractionDigits:3}});Unit.define({baseUnitName:'powerInWatts',baseJsonName:'W',formatSpec:{baseSymbol:'W',minimumFractionDigits:3}});Unit.define({baseUnitName:'unitlessNumber',baseJsonName:'unitless',formatSpec:{minimumFractionDigits:3,maximumFractionDigits:3}});Unit.define({baseUnitName:'count',baseJsonName:'count',formatSpec:{minimumFractionDigits:0,maximumFractionDigits:0}});Unit.define({baseUnitName:'sigma',baseJsonName:'sigma',formatSpec:{baseSymbol:String.fromCharCode(963),minimumFractionDigits:1,maximumFractionDigits:1}});return{ImprovementDirection,Unit,};});'use strict';tr.exportTo('tr.b',function(){class Scalar{constructor(unit,value){if(!(unit instanceof tr.b.Unit)){throw new Error('Expected Unit');}
4297if(!(typeof(value)==='number')){throw new Error('Expected value to be number');}
4298this.unit=unit;this.value=value;}
4299asDict(){return{unit:this.unit.asJSON(),value:tr.b.numberToJson(this.value),};}
4300toString(){return this.unit.format(this.value);}
4301static fromDict(d){return new Scalar(tr.b.Unit.fromJSON(d.unit),tr.b.numberFromJson(d.value));}}
4302return{Scalar,};});'use strict';tr.exportTo('tr.c',function(){function Auditor(model){this.model_=model;}
4303Auditor.prototype={__proto__:Object.prototype,get model(){return this.model_;},runAnnotate(){},installUserFriendlyCategoryDriverIfNeeded(){},runAudit(){}};const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};options.mandatoryBaseClass=Auditor;tr.b.decorateExtensionRegistry(Auditor,options);return{Auditor,};});'use strict';tr.exportTo('tr.b',function(){function clamp01(value){return Math.max(0,Math.min(1,value));}
4304function Color(opt_r,opt_g,opt_b,opt_a){this.r=Math.floor(opt_r)||0;this.g=Math.floor(opt_g)||0;this.b=Math.floor(opt_b)||0;this.a=opt_a;}
4305Color.fromString=function(str){let tmp;let values;if(str.substr(0,4)==='rgb('){tmp=str.substr(4,str.length-5);values=tmp.split(',').map(function(v){return v.replace(/^\s+/,'','g');});if(values.length!==3){throw new Error('Malformatted rgb-expression');}
4306return new Color(parseInt(values[0]),parseInt(values[1]),parseInt(values[2]));}
4307if(str.substr(0,5)==='rgba('){tmp=str.substr(5,str.length-6);values=tmp.split(',').map(function(v){return v.replace(/^\s+/,'','g');});if(values.length!==4){throw new Error('Malformatted rgb-expression');}
4308return new Color(parseInt(values[0]),parseInt(values[1]),parseInt(values[2]),parseFloat(values[3]));}
4309if(str[0]==='#'&&str.length===7){return new Color(parseInt(str.substr(1,2),16),parseInt(str.substr(3,2),16),parseInt(str.substr(5,2),16));}
4310throw new Error('Unrecognized string format.');};Color.lerp=function(a,b,percent){if(a.a!==undefined&&b.a!==undefined){return Color.lerpRGBA(a,b,percent);}
4311return Color.lerpRGB(a,b,percent);};Color.lerpRGB=function(a,b,percent){return new Color(((b.r-a.r)*percent)+a.r,((b.g-a.g)*percent)+a.g,((b.b-a.b)*percent)+a.b);};Color.lerpRGBA=function(a,b,percent){return new Color(((b.r-a.r)*percent)+a.r,((b.g-a.g)*percent)+a.g,((b.b-a.b)*percent)+a.b,((b.a-a.a)*percent)+a.a);};Color.fromDict=function(dict){return new Color(dict.r,dict.g,dict.b,dict.a);};Color.fromHSLExplicit=function(h,s,l,a){let r;let g;let b;function hue2rgb(p,q,t){if(t<0)t+=1;if(t>1)t-=1;if(t<1/6)return p+(q-p)*6*t;if(t<1/2)return q;if(t<2/3)return p+(q-p)*(2/3-t)*6;return p;}
4312if(s===0){r=g=b=l;}else{const q=l<0.5?l*(1+s):l+s-l*s;const p=2*l-q;r=hue2rgb(p,q,h+1/3);g=hue2rgb(p,q,h);b=hue2rgb(p,q,h-1/3);}
4313return new Color(Math.floor(r*255),Math.floor(g*255),Math.floor(b*255),a);};Color.fromHSL=function(hsl){return Color.fromHSLExplicit(hsl.h,hsl.s,hsl.l,hsl.a);};Color.prototype={clone(){const c=new Color();c.r=this.r;c.g=this.g;c.b=this.b;c.a=this.a;return c;},blendOver(bgColor){const oneMinusThisAlpha=1-this.a;const outA=this.a+bgColor.a*oneMinusThisAlpha;const bgBlend=(bgColor.a*oneMinusThisAlpha)/bgColor.a;return new Color(this.r*this.a+bgColor.r*bgBlend,this.g*this.a+bgColor.g*bgBlend,this.b*this.a+bgColor.b*bgBlend,outA);},brighten(opt_k){const k=opt_k||0.45;return new Color(Math.min(255,this.r+Math.floor(this.r*k)),Math.min(255,this.g+Math.floor(this.g*k)),Math.min(255,this.b+Math.floor(this.b*k)),this.a);},lighten(k,opt_maxL){const maxL=opt_maxL!==undefined?opt_maxL:1.0;const hsl=this.toHSL();hsl.l=Math.min(hsl.l+k,maxL);return Color.fromHSL(hsl);},darken(opt_k){let k;if(opt_k!==undefined){k=opt_k;}else{k=0.45;}
4314return new Color(Math.min(255,this.r-Math.floor(this.r*k)),Math.min(255,this.g-Math.floor(this.g*k)),Math.min(255,this.b-Math.floor(this.b*k)),this.a);},desaturate(opt_desaturateFactor){let desaturateFactor;if(opt_desaturateFactor!==undefined){desaturateFactor=opt_desaturateFactor;}else{desaturateFactor=1;}
4315const hsl=this.toHSL();hsl.s=clamp01(hsl.s*(1-desaturateFactor));return Color.fromHSL(hsl);},withAlpha(a){return new Color(this.r,this.g,this.b,a);},toString(){if(this.a!==undefined){return'rgba('+
4316this.r+','+this.g+','+
4317this.b+','+this.a+')';}
4318return'rgb('+this.r+','+this.g+','+this.b+')';},toHSL(){const r=this.r/255;const g=this.g/255;const b=this.b/255;const max=Math.max(r,g,b);const min=Math.min(r,g,b);let h;let s;const l=(max+min)/2;if(min===max){h=0;s=0;}else{const delta=max-min;if(l>0.5){s=delta/(2-max-min);}else{s=delta/(max+min);}
4319if(r===max){h=(g-b)/delta;if(g<b)h+=6;}else if(g===max){h=2+((b-r)/delta);}else{h=4+((r-g)/delta);}
4320h/=6;}
4321return{h,s,l,a:this.a};},toStringWithAlphaOverride(alpha){return'rgba('+
4322this.r+','+this.g+','+
4323this.b+','+alpha+')';}};return{Color,};});'use strict';tr.exportTo('tr.b',function(){const generalPurposeColors=[new tr.b.Color(122,98,135),new tr.b.Color(150,83,105),new tr.b.Color(44,56,189),new tr.b.Color(99,86,147),new tr.b.Color(104,129,107),new tr.b.Color(130,178,55),new tr.b.Color(87,109,147),new tr.b.Color(111,145,88),new tr.b.Color(81,152,131),new tr.b.Color(142,91,111),new tr.b.Color(81,163,70),new tr.b.Color(148,94,86),new tr.b.Color(144,89,118),new tr.b.Color(83,150,97),new tr.b.Color(105,94,139),new tr.b.Color(89,144,122),new tr.b.Color(105,119,128),new tr.b.Color(96,128,137),new tr.b.Color(145,88,145),new tr.b.Color(88,145,144),new tr.b.Color(90,100,143),new tr.b.Color(121,97,136),new tr.b.Color(111,160,73),new tr.b.Color(112,91,142),new tr.b.Color(86,147,86),new tr.b.Color(63,100,170),new tr.b.Color(81,152,107),new tr.b.Color(60,164,173),new tr.b.Color(143,72,161),new tr.b.Color(159,74,86)];const reservedColorsByName={thread_state_uninterruptible:new tr.b.Color(182,125,143),thread_state_iowait:new tr.b.Color(255,140,0),thread_state_running:new tr.b.Color(126,200,148),thread_state_runnable:new tr.b.Color(133,160,210),thread_state_sleeping:new tr.b.Color(240,240,240),thread_state_unknown:new tr.b.Color(199,155,125),background_memory_dump:new tr.b.Color(0,180,180),light_memory_dump:new tr.b.Color(0,0,180),detailed_memory_dump:new tr.b.Color(180,0,180),vsync_highlight_color:new tr.b.Color(0,0,255),generic_work:new tr.b.Color(125,125,125),good:new tr.b.Color(0,125,0),bad:new tr.b.Color(180,125,0),terrible:new tr.b.Color(180,0,0),black:new tr.b.Color(0,0,0),grey:new tr.b.Color(221,221,221),white:new tr.b.Color(255,255,255),yellow:new tr.b.Color(255,255,0),olive:new tr.b.Color(100,100,0),rail_response:new tr.b.Color(67,135,253),rail_animation:new tr.b.Color(244,74,63),rail_idle:new tr.b.Color(238,142,0),rail_load:new tr.b.Color(13,168,97),startup:new tr.b.Color(230,230,0),heap_dump_stack_frame:new tr.b.Color(128,128,128),heap_dump_object_type:new tr.b.Color(0,0,255),heap_dump_child_node_arrow:new tr.b.Color(204,102,0),cq_build_running:new tr.b.Color(255,255,119),cq_build_passed:new tr.b.Color(153,238,102),cq_build_failed:new tr.b.Color(238,136,136),cq_build_abandoned:new tr.b.Color(187,187,187),cq_build_attempt_runnig:new tr.b.Color(222,222,75),cq_build_attempt_passed:new tr.b.Color(103,218,35),cq_build_attempt_failed:new tr.b.Color(197,81,81)};const numGeneralPurposeColorIds=generalPurposeColors.length;const numReservedColorIds=Object.keys(reservedColorsByName).length;const numColorsPerVariant=numGeneralPurposeColorIds+numReservedColorIds;function ColorScheme(){}
4324const paletteBase=[];paletteBase.push.apply(paletteBase,generalPurposeColors);paletteBase.push.apply(paletteBase,Object.values(reservedColorsByName));ColorScheme.colors=[];ColorScheme.properties={};ColorScheme.properties={numColorsPerVariant,};function pushVariant(func){const variantColors=paletteBase.map(func);ColorScheme.colors.push.apply(ColorScheme.colors,variantColors);}
4325pushVariant(function(c){return c;});ColorScheme.properties.brightenedOffsets=[];ColorScheme.properties.brightenedOffsets.push(ColorScheme.colors.length);pushVariant(function(c){return c.lighten(0.3,0.8);});ColorScheme.properties.brightenedOffsets.push(ColorScheme.colors.length);pushVariant(function(c){return c.lighten(0.48,0.85);});ColorScheme.properties.brightenedOffsets.push(ColorScheme.colors.length);pushVariant(function(c){return c.lighten(0.65,0.9);});ColorScheme.properties.dimmedOffsets=[];ColorScheme.properties.dimmedOffsets.push(ColorScheme.colors.length);pushVariant(function(c){return c.desaturate();});ColorScheme.properties.dimmedOffsets.push(ColorScheme.colors.length);pushVariant(function(c){return c.desaturate(0.5);});ColorScheme.properties.dimmedOffsets.push(ColorScheme.colors.length);pushVariant(function(c){return c.desaturate(0.3);});ColorScheme.colorsAsStrings=ColorScheme.colors.map(function(c){return c.toString();});const reservedColorNameToIdMap=(function(){const m=new Map();let i=generalPurposeColors.length;for(const key of Object.keys(reservedColorsByName)){m.set(key,i++);}
4326return m;})();ColorScheme.getColorIdForReservedName=function(name){const id=reservedColorNameToIdMap.get(name);if(id===undefined){throw new Error('Unrecognized color '+name);}
4327return id;};ColorScheme.getColorForReservedNameAsString=function(reservedName){const id=ColorScheme.getColorIdForReservedName(reservedName);return ColorScheme.colorsAsStrings[id];};ColorScheme.getStringHash=function(name){let hash=0;for(let i=0;i<name.length;++i){hash=(hash+37*hash+11*name.charCodeAt(i))%0xFFFFFFFF;}
4328return hash;};const stringColorIdCache=new Map();ColorScheme.getColorIdForGeneralPurposeString=function(string){if(stringColorIdCache.get(string)===undefined){const hash=ColorScheme.getStringHash(string);stringColorIdCache.set(string,hash%numGeneralPurposeColorIds);}
4329return stringColorIdCache.get(string);};ColorScheme.getAnotherColorId=function(colorId,n){return(colorId+n)%numColorsPerVariant;};ColorScheme.getVariantColorId=function(colorId,offset){return colorId+offset;};return{ColorScheme,};});'use strict';tr.exportTo('tr.model',function(){const ColorScheme=tr.b.ColorScheme;function EventInfo(title,description,docLinks){this.title=title;this.description=description;this.docLinks=docLinks;this.colorId=ColorScheme.getColorIdForGeneralPurposeString(title);}
4330return{EventInfo,};});'use strict';tr.exportTo('tr.b',function(){let nextGUID=1;const UUID4_PATTERN='xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx';const GUID={allocateSimple(){return nextGUID++;},getLastSimpleGuid(){return nextGUID-1;},allocateUUID4(){return UUID4_PATTERN.replace(/[xy]/g,function(c){let r=parseInt(Math.random()*16);if(c==='y')r=(r&3)+8;return r.toString(16);});}};return{GUID,};});'use strict';tr.exportTo('tr.model',function(){function EventRegistry(){}
4331const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(EventRegistry,options);EventRegistry.addEventListener('will-register',function(e){const metadata=e.typeInfo.metadata;if(metadata.name===undefined){throw new Error('Registered events must provide name metadata');}
4332if(metadata.pluralName===undefined){throw new Error('Registered events must provide pluralName metadata');}
4333if(metadata.subTypes===undefined){metadata.subTypes={};const options=new tr.b.ExtensionRegistryOptions(tr.b.TYPE_BASED_REGISTRY_MODE);options.mandatoryBaseClass=e.typeInfo.constructor;options.defaultConstructor=e.typeInfo.constructor;tr.b.decorateExtensionRegistry(metadata.subTypes,options);}else{if(!metadata.subTypes.register){throw new Error('metadata.subTypes must be an extension registry.');}}
4334e.typeInfo.constructor.subTypes=metadata.subTypes;});let eventsByTypeName=undefined;EventRegistry.getEventTypeInfoByTypeName=function(typeName){if(eventsByTypeName===undefined){eventsByTypeName={};EventRegistry.getAllRegisteredTypeInfos().forEach(function(typeInfo){eventsByTypeName[typeInfo.metadata.name]=typeInfo;});}
4335return eventsByTypeName[typeName];};EventRegistry.addEventListener('registry-changed',function(){eventsByTypeName=undefined;});function convertCamelCaseToTitleCase(name){let result=name.replace(/[A-Z]/g,' $&');result=result.charAt(0).toUpperCase()+result.slice(1);return result;}
4336EventRegistry.getUserFriendlySingularName=function(typeName){const typeInfo=EventRegistry.getEventTypeInfoByTypeName(typeName);const str=typeInfo.metadata.name;return convertCamelCaseToTitleCase(str);};EventRegistry.getUserFriendlyPluralName=function(typeName){const typeInfo=EventRegistry.getEventTypeInfoByTypeName(typeName);const str=typeInfo.metadata.pluralName;return convertCamelCaseToTitleCase(str);};return{EventRegistry,};});'use strict';tr.exportTo('tr.model',function(){const EventRegistry=tr.model.EventRegistry;const RequestSelectionChangeEvent=tr.b.Event.bind(undefined,'requestSelectionChange',true,false);function EventSet(opt_events){this.bounds_=new tr.b.math.Range();this.events_=new Set();this.guid_=tr.b.GUID.allocateSimple();if(opt_events){if(opt_events instanceof Array){for(const event of opt_events){this.push(event);}}else if(opt_events instanceof EventSet){this.addEventSet(opt_events);}else{this.push(opt_events);}}}
4337EventSet.prototype={__proto__:Object.prototype,get bounds(){return this.bounds_;},get duration(){if(this.bounds_.isEmpty)return 0;return this.bounds_.max-this.bounds_.min;},get length(){return this.events_.size;},get guid(){return this.guid_;},*[Symbol.iterator](){for(const event of this.events_){yield event;}},clear(){this.bounds_=new tr.b.math.Range();this.events_.clear();},push(...events){let numPushed;for(const event of events){if(event.guid===undefined){throw new Error('Event must have a GUID');}
4338if(!this.events_.has(event)){this.events_.add(event);if(event.addBoundsToRange){if(this.bounds_!==undefined){event.addBoundsToRange(this.bounds_);}}}
4339numPushed++;}
4340return numPushed;},contains(event){if(this.events_.has(event))return event;return undefined;},addEventSet(eventSet){for(const event of eventSet){this.push(event);}},intersectionIsEmpty(otherEventSet){return!this.some(event=>otherEventSet.contains(event));},equals(that){if(this.length!==that.length)return false;return this.every(event=>that.contains(event));},sortEvents(compare){const ary=this.toArray();ary.sort(compare);this.clear();for(const event of ary){this.push(event);}},getEventsOrganizedByBaseType(opt_pruneEmpty){const allTypeInfos=EventRegistry.getAllRegisteredTypeInfos();const events=this.getEventsOrganizedByCallback(function(event){let maxEventIndex=-1;let maxEventTypeInfo=undefined;allTypeInfos.forEach(function(eventTypeInfo,eventIndex){if(!(event instanceof eventTypeInfo.constructor))return;if(eventIndex>maxEventIndex){maxEventIndex=eventIndex;maxEventTypeInfo=eventTypeInfo;}});if(maxEventIndex===-1){throw new Error(`Unrecognized event type: ${event.constructor.name}`);}
4341return maxEventTypeInfo.metadata.name;});if(!opt_pruneEmpty){allTypeInfos.forEach(function(eventTypeInfo){if(events[eventTypeInfo.metadata.name]===undefined){events[eventTypeInfo.metadata.name]=new EventSet();}});}
4342return events;},getEventsOrganizedByTitle(){return this.getEventsOrganizedByCallback(function(event){if(event.title===undefined){throw new Error('An event didn\'t have a title!');}
4343return event.title;});},getEventsOrganizedByCallback(cb,opt_this){const groupedEvents=tr.b.groupIntoMap(this,cb,opt_this||this);const groupedEventsDict={};for(const[k,events]of groupedEvents){groupedEventsDict[k]=new EventSet(events);}
4344return groupedEventsDict;},enumEventsOfType(type,func){for(const event of this){if(event instanceof type){func(event);}}},get userFriendlyName(){if(this.length===0){throw new Error('Empty event set');}
4345const eventsByBaseType=this.getEventsOrganizedByBaseType(true);const eventTypeName=Object.keys(eventsByBaseType)[0];if(this.length===1){const tmp=EventRegistry.getUserFriendlySingularName(eventTypeName);return tr.b.getOnlyElement(this.events_).userFriendlyName;}
4346const numEventTypes=Object.keys(eventsByBaseType).length;if(numEventTypes!==1){return this.length+' events of various types';}
4347const tmp=EventRegistry.getUserFriendlyPluralName(eventTypeName);return this.length+' '+tmp;},filter(fn,opt_this){const res=new EventSet();for(const event of this){if(fn.call(opt_this,event)){res.push(event);}}
4348return res;},toArray(){const ary=[];for(const event of this){ary.push(event);}
4349return ary;},forEach(fn,opt_this){for(const event of this){fn.call(opt_this,event);}},map(fn,opt_this){const res=[];for(const event of this){res.push(fn.call(opt_this,event));}
4350return res;},every(fn,opt_this){for(const event of this){if(!fn.call(opt_this,event)){return false;}}
4351return true;},some(fn,opt_this){for(const event of this){if(fn.call(opt_this,event)){return true;}}
4352return false;},asDict(){const stableIds=[];for(const event of this){stableIds.push(event.stableId);}
4353return{'events':stableIds};},asSet(){return this.events_;}};EventSet.IMMUTABLE_EMPTY_SET=(function(){const s=new EventSet();s.push=function(){throw new Error('Cannot push to an immutable event set');};s.addEventSet=function(){throw new Error('Cannot add to an immutable event set');};Object.freeze(s);return s;})();return{EventSet,RequestSelectionChangeEvent,};});'use strict';tr.exportTo('tr.model',function(){const ColorScheme=tr.b.ColorScheme;const SelectionState={NONE:0,SELECTED:ColorScheme.properties.brightenedOffsets[0],HIGHLIGHTED:ColorScheme.properties.brightenedOffsets[1],DIMMED:ColorScheme.properties.dimmedOffsets[0],BRIGHTENED0:ColorScheme.properties.brightenedOffsets[0],BRIGHTENED1:ColorScheme.properties.brightenedOffsets[1],BRIGHTENED2:ColorScheme.properties.brightenedOffsets[2],DIMMED0:ColorScheme.properties.dimmedOffsets[0],DIMMED1:ColorScheme.properties.dimmedOffsets[1],DIMMED2:ColorScheme.properties.dimmedOffsets[2]};const brighteningLevels=[SelectionState.NONE,SelectionState.BRIGHTENED0,SelectionState.BRIGHTENED1,SelectionState.BRIGHTENED2];SelectionState.getFromBrighteningLevel=function(level){return brighteningLevels[level];};const dimmingLevels=[SelectionState.DIMMED0,SelectionState.DIMMED1,SelectionState.DIMMED2];SelectionState.getFromDimmingLevel=function(level){return dimmingLevels[level];};return{SelectionState,};});'use strict';tr.exportTo('tr.model',function(){const SelectionState=tr.model.SelectionState;function SelectableItem(modelItem){this.modelItem_=modelItem;}
4354SelectableItem.prototype={get modelItem(){return this.modelItem_;},get selected(){return this.selectionState===SelectionState.SELECTED;},addToSelection(selection){const modelItem=this.modelItem_;if(!modelItem)return;selection.push(modelItem);},addToTrackMap(eventToTrackMap,track){const modelItem=this.modelItem_;if(!modelItem)return;eventToTrackMap.addEvent(modelItem,track);}};return{SelectableItem,};});'use strict';tr.exportTo('tr.model',function(){const SelectableItem=tr.model.SelectableItem;const SelectionState=tr.model.SelectionState;const IMMUTABLE_EMPTY_SET=tr.model.EventSet.IMMUTABLE_EMPTY_SET;function Event(){SelectableItem.call(this,this);this.guid_=tr.b.GUID.allocateSimple();this.selectionState=SelectionState.NONE;this.info=undefined;}
4355Event.prototype={__proto__:SelectableItem.prototype,get guid(){return this.guid_;},get stableId(){return undefined;},get range(){const range=new tr.b.math.Range();this.addBoundsToRange(range);return range;},associatedAlerts:IMMUTABLE_EMPTY_SET,addAssociatedAlert(alert){if(this.associatedAlerts===IMMUTABLE_EMPTY_SET){this.associatedAlerts=new tr.model.EventSet();}
4356this.associatedAlerts.push(alert);},addBoundsToRange(range){}};return{Event,};});'use strict';tr.exportTo('tr.model',function(){function TimedEvent(start){tr.model.Event.call(this);this.start=start;this.duration=0;this.cpuStart=undefined;this.cpuDuration=undefined;this.contexts=Object.freeze([]);}
4357TimedEvent.prototype={__proto__:tr.model.Event.prototype,get end(){return this.start+this.duration;},addBoundsToRange(range){range.addValue(this.start);range.addValue(this.end);},bounds(that,opt_precisionUnit){if(opt_precisionUnit===undefined){opt_precisionUnit=tr.b.TimeDisplayModes.ms;}
4358const startsBefore=opt_precisionUnit.roundedLess(that.start,this.start);const endsAfter=opt_precisionUnit.roundedLess(this.end,that.end);return!startsBefore&&!endsAfter;}};return{TimedEvent,};});'use strict';tr.exportTo('tr.model',function(){function Alert(info,start,opt_associatedEvents,opt_args){tr.model.TimedEvent.call(this,start);this.info=info;this.args=opt_args||{};this.associatedEvents=new tr.model.EventSet(opt_associatedEvents);this.associatedEvents.forEach(function(event){event.addAssociatedAlert(this);},this);}
4359Alert.prototype={__proto__:tr.model.TimedEvent.prototype,get title(){return this.info.title;},get colorId(){return this.info.colorId;},get userFriendlyName(){return'Alert '+this.title+' at '+
4360tr.b.Unit.byName.timeStampInMs.format(this.start);}};tr.model.EventRegistry.register(Alert,{name:'alert',pluralName:'alerts'});return{Alert,};});'use strict';tr.exportTo('tr.model',function(){const ColorScheme=tr.b.ColorScheme;const Statistics=tr.b.math.Statistics;const FRAME_PERF_CLASS={GOOD:'good',BAD:'bad',TERRIBLE:'terrible',NEUTRAL:'generic_work'};function Frame(associatedEvents,threadTimeRanges,opt_args){tr.model.Event.call(this);this.threadTimeRanges=threadTimeRanges;this.associatedEvents=new tr.model.EventSet(associatedEvents);this.args=opt_args||{};this.title='Frame';this.start=Statistics.min(threadTimeRanges,function(x){return x.start;});this.end=Statistics.max(threadTimeRanges,function(x){return x.end;});this.totalDuration=Statistics.sum(threadTimeRanges,function(x){return x.end-x.start;});this.perfClass=FRAME_PERF_CLASS.NEUTRAL;}
4361Frame.prototype={__proto__:tr.model.Event.prototype,set perfClass(perfClass){this.colorId=ColorScheme.getColorIdForReservedName(perfClass);this.perfClass_=perfClass;},get perfClass(){return this.perfClass_;},shiftTimestampsForward(amount){this.start+=amount;this.end+=amount;for(let i=0;i<this.threadTimeRanges.length;i++){this.threadTimeRanges[i].start+=amount;this.threadTimeRanges[i].end+=amount;}},addBoundsToRange(range){range.addValue(this.start);range.addValue(this.end);}};tr.model.EventRegistry.register(Frame,{name:'frame',pluralName:'frames'});return{Frame,FRAME_PERF_CLASS,};});'use strict';tr.exportTo('tr.model.helpers',function(){const Frame=tr.model.Frame;const Statistics=tr.b.math.Statistics;const UI_DRAW_TYPE={NONE:'none',LEGACY:'legacy',MARSHMALLOW:'marshmallow'};const UI_THREAD_DRAW_NAMES={'performTraversals':UI_DRAW_TYPE.LEGACY,'Choreographer#doFrame':UI_DRAW_TYPE.MARSHMALLOW};const RENDER_THREAD_DRAW_NAME='DrawFrame';const RENDER_THREAD_INDEP_DRAW_NAME='doFrame';const RENDER_THREAD_QUEUE_NAME='queueBuffer';const RENDER_THREAD_SWAP_NAME='eglSwapBuffers';const THREAD_SYNC_NAME='syncFrameState';function getSlicesForThreadTimeRanges(threadTimeRanges){const ret=[];threadTimeRanges.forEach(function(threadTimeRange){const slices=[];threadTimeRange.thread.sliceGroup.iterSlicesInTimeRange(function(slice){slices.push(slice);},threadTimeRange.start,threadTimeRange.end);ret.push.apply(ret,slices);});return ret;}
4362function makeFrame(threadTimeRanges,surfaceFlinger){const args={};if(surfaceFlinger&&surfaceFlinger.hasVsyncs){const start=Statistics.min(threadTimeRanges,function(threadTimeRanges){return threadTimeRanges.start;});args.deadline=surfaceFlinger.getFrameDeadline(start);args.frameKickoff=surfaceFlinger.getFrameKickoff(start);}
4363const events=getSlicesForThreadTimeRanges(threadTimeRanges);return new Frame(events,threadTimeRanges,args);}
4364function findOverlappingDrawFrame(renderThread,uiDrawSlice){if(!renderThread)return undefined;let overlappingDrawFrame;const slices=tr.b.iterateOverIntersectingIntervals(renderThread.sliceGroup.slices,function(range){return range.start;},function(range){return range.end;},uiDrawSlice.start,uiDrawSlice.end,function(rtDrawSlice){if(rtDrawSlice.title===RENDER_THREAD_DRAW_NAME){const rtSyncSlice=rtDrawSlice.findDescendentSlice(THREAD_SYNC_NAME);if(rtSyncSlice&&rtSyncSlice.start>=uiDrawSlice.start&&rtSyncSlice.end<=uiDrawSlice.end){overlappingDrawFrame=rtDrawSlice;}}});return overlappingDrawFrame;}
4365function getPreTraversalWorkRanges(uiThread){if(!uiThread)return[];const preFrameEvents=[];uiThread.sliceGroup.slices.forEach(function(slice){if(slice.title==='obtainView'||slice.title==='setupListItem'||slice.title==='deliverInputEvent'||slice.title==='RV Scroll'){preFrameEvents.push(slice);}});uiThread.asyncSliceGroup.slices.forEach(function(slice){if(slice.title==='deliverInputEvent'){preFrameEvents.push(slice);}});return tr.b.math.mergeRanges(tr.b.math.convertEventsToRanges(preFrameEvents),3,function(events){return{start:events[0].min,end:events[events.length-1].max};});}
4366function getFrameStartTime(traversalStart,preTraversalWorkRanges){const preTraversalWorkRange=tr.b.findClosestIntervalInSortedIntervals(preTraversalWorkRanges,function(range){return range.start;},function(range){return range.end;},traversalStart,3);if(preTraversalWorkRange){return preTraversalWorkRange.start;}
4367return traversalStart;}
4368function getRtFrameEndTime(rtDrawSlice){const rtQueueSlice=rtDrawSlice.findDescendentSlice(RENDER_THREAD_QUEUE_NAME);if(rtQueueSlice){return rtQueueSlice.end;}
4369const rtSwapSlice=rtDrawSlice.findDescendentSlice(RENDER_THREAD_SWAP_NAME);if(rtSwapSlice){return rtSwapSlice.end;}
4370return rtDrawSlice.end;}
4371function getUiThreadDrivenFrames(app){if(!app.uiThread)return[];let preTraversalWorkRanges=[];if(app.uiDrawType===UI_DRAW_TYPE.LEGACY){preTraversalWorkRanges=getPreTraversalWorkRanges(app.uiThread);}
4372const frames=[];app.uiThread.sliceGroup.slices.forEach(function(slice){if(!(slice.title in UI_THREAD_DRAW_NAMES)){return;}
4373const threadTimeRanges=[];const uiThreadTimeRange={thread:app.uiThread,start:getFrameStartTime(slice.start,preTraversalWorkRanges),end:slice.end};threadTimeRanges.push(uiThreadTimeRange);const rtDrawSlice=findOverlappingDrawFrame(app.renderThread,slice);if(rtDrawSlice){const rtSyncSlice=rtDrawSlice.findDescendentSlice(THREAD_SYNC_NAME);if(rtSyncSlice){uiThreadTimeRange.end=Math.min(uiThreadTimeRange.end,rtSyncSlice.start);}
4374threadTimeRanges.push({thread:app.renderThread,start:rtDrawSlice.start,end:getRtFrameEndTime(rtDrawSlice)});}
4375frames.push(makeFrame(threadTimeRanges,app.surfaceFlinger));});return frames;}
4376function getRenderThreadDrivenFrames(app){if(!app.renderThread)return[];const frames=[];app.renderThread.sliceGroup.getSlicesOfName(RENDER_THREAD_INDEP_DRAW_NAME).forEach(function(slice){const threadTimeRanges=[{thread:app.renderThread,start:slice.start,end:slice.end}];frames.push(makeFrame(threadTimeRanges,app.surfaceFlinger));});return frames;}
4377function getUiDrawType(uiThread){if(!uiThread){return UI_DRAW_TYPE.NONE;}
4378const slices=uiThread.sliceGroup.slices;for(let i=0;i<slices.length;i++){if(slices[i].title in UI_THREAD_DRAW_NAMES){return UI_THREAD_DRAW_NAMES[slices[i].title];}}
4379return UI_DRAW_TYPE.NONE;}
4380function getInputSamples(process){let samples=undefined;for(const counterName in process.counters){if(/^android\.aq\:pending/.test(counterName)&&process.counters[counterName].numSeries===1){samples=process.counters[counterName].series[0].samples;break;}}
4381if(!samples)return[];const inputSamples=[];let lastValue=0;samples.forEach(function(sample){if(sample.value>lastValue){inputSamples.push(sample);}
4382lastValue=sample.value;});return inputSamples;}
4383function getAnimationAsyncSlices(uiThread){if(!uiThread)return[];const slices=[];for(const slice of uiThread.asyncSliceGroup.getDescendantEvents()){if(/^animator\:/.test(slice.title)){slices.push(slice);}}
4384return slices;}
4385function AndroidApp(process,uiThread,renderThread,surfaceFlinger,uiDrawType){this.process=process;this.uiThread=uiThread;this.renderThread=renderThread;this.surfaceFlinger=surfaceFlinger;this.uiDrawType=uiDrawType;this.frames_=undefined;this.inputs_=undefined;}
4386AndroidApp.createForProcessIfPossible=function(process,surfaceFlinger){let uiThread=process.getThread(process.pid);const uiDrawType=getUiDrawType(uiThread);if(uiDrawType===UI_DRAW_TYPE.NONE){uiThread=undefined;}
4387const renderThreads=process.findAllThreadsNamed('RenderThread');const renderThread=(renderThreads.length===1?renderThreads[0]:undefined);if(uiThread||renderThread){return new AndroidApp(process,uiThread,renderThread,surfaceFlinger,uiDrawType);}};AndroidApp.prototype={getFrames(){if(!this.frames_){const uiFrames=getUiThreadDrivenFrames(this);const rtFrames=getRenderThreadDrivenFrames(this);this.frames_=uiFrames.concat(rtFrames);this.frames_.sort(function(a,b){a.end-b.end;});}
4388return this.frames_;},getInputSamples(){if(!this.inputs_){this.inputs_=getInputSamples(this.process);}
4389return this.inputs_;},getAnimationAsyncSlices(){if(!this.animations_){this.animations_=getAnimationAsyncSlices(this.uiThread);}
4390return this.animations_;}};return{AndroidApp,};});'use strict';tr.exportTo('tr.model.helpers',function(){const findLowIndexInSortedArray=tr.b.findLowIndexInSortedArray;const VSYNC_SF_NAME='android.VSYNC-sf';const VSYNC_APP_NAME='android.VSYNC-app';const VSYNC_FALLBACK_NAME='android.VSYNC';const TIMESTAMP_FUDGE_MS=0.01;function getVsyncTimestamps(process,counterName){let vsync=process.counters[counterName];if(!vsync){vsync=process.counters[VSYNC_FALLBACK_NAME];}
4391if(vsync&&vsync.numSeries===1&&vsync.numSamples>1){return vsync.series[0].timestamps;}
4392return undefined;}
4393function AndroidSurfaceFlinger(process,thread){this.process=process;this.thread=thread;this.appVsync_=undefined;this.sfVsync_=undefined;this.appVsyncTimestamps_=getVsyncTimestamps(process,VSYNC_APP_NAME);this.sfVsyncTimestamps_=getVsyncTimestamps(process,VSYNC_SF_NAME);this.deadlineDelayMs_=this.appVsyncTimestamps_!==this.sfVsyncTimestamps_?5:TIMESTAMP_FUDGE_MS;}
4394AndroidSurfaceFlinger.createForProcessIfPossible=function(process){const mainThread=process.getThread(process.pid);if(mainThread&&mainThread.name&&/surfaceflinger/.test(mainThread.name)){return new AndroidSurfaceFlinger(process,mainThread);}
4395const primaryThreads=process.findAllThreadsNamed('SurfaceFlinger');if(primaryThreads.length===1){return new AndroidSurfaceFlinger(process,primaryThreads[0]);}
4396return undefined;};AndroidSurfaceFlinger.prototype={get hasVsyncs(){return!!this.appVsyncTimestamps_&&!!this.sfVsyncTimestamps_;},getFrameKickoff(timestamp){if(!this.hasVsyncs){throw new Error('cannot query vsync info without vsyncs');}
4397const firstGreaterIndex=findLowIndexInSortedArray(this.appVsyncTimestamps_,function(x){return x;},timestamp+TIMESTAMP_FUDGE_MS);if(firstGreaterIndex<1)return undefined;return this.appVsyncTimestamps_[firstGreaterIndex-1];},getFrameDeadline(timestamp){if(!this.hasVsyncs){throw new Error('cannot query vsync info without vsyncs');}
4398const firstGreaterIndex=findLowIndexInSortedArray(this.sfVsyncTimestamps_,function(x){return x;},timestamp+this.deadlineDelayMs_);if(firstGreaterIndex>=this.sfVsyncTimestamps_.length){return undefined;}
4399return this.sfVsyncTimestamps_[firstGreaterIndex];}};return{AndroidSurfaceFlinger,};});'use strict';tr.exportTo('tr.model.helpers',function(){const AndroidApp=tr.model.helpers.AndroidApp;const AndroidSurfaceFlinger=tr.model.helpers.AndroidSurfaceFlinger;const IMPORTANT_SURFACE_FLINGER_SLICES={'doComposition':true,'updateTexImage':true,'postFramebuffer':true};const IMPORTANT_UI_THREAD_SLICES={'Choreographer#doFrame':true,'performTraversals':true,'deliverInputEvent':true};const IMPORTANT_RENDER_THREAD_SLICES={'doFrame':true};function iterateImportantThreadSlices(thread,important,callback){if(!thread)return;thread.sliceGroup.slices.forEach(function(slice){if(slice.title in important){callback(slice);}});}
4400function AndroidModelHelper(model){this.model=model;this.apps=[];this.surfaceFlinger=undefined;const processes=model.getAllProcesses();for(let i=0;i<processes.length&&!this.surfaceFlinger;i++){this.surfaceFlinger=AndroidSurfaceFlinger.createForProcessIfPossible(processes[i]);}
4401model.getAllProcesses().forEach(function(process){const app=AndroidApp.createForProcessIfPossible(process,this.surfaceFlinger);if(app){this.apps.push(app);}},this);}
4402AndroidModelHelper.guid=tr.b.GUID.allocateSimple();AndroidModelHelper.supportsModel=function(model){return true;};AndroidModelHelper.prototype={iterateImportantSlices(callback){if(this.surfaceFlinger){iterateImportantThreadSlices(this.surfaceFlinger.thread,IMPORTANT_SURFACE_FLINGER_SLICES,callback);}
4403this.apps.forEach(function(app){iterateImportantThreadSlices(app.uiThread,IMPORTANT_UI_THREAD_SLICES,callback);iterateImportantThreadSlices(app.renderThread,IMPORTANT_RENDER_THREAD_SLICES,callback);});}};return{AndroidModelHelper,};});'use strict';tr.exportTo('tr.model',function(){function Slice(category,title,colorId,start,args,opt_duration,opt_cpuStart,opt_cpuDuration,opt_argsStripped,opt_bindId){if(new.target){throw new Error('Can\'t instantiate pure virtual class Slice');}
4404tr.model.TimedEvent.call(this,start);this.category=category||'';this.title=title;this.colorId=colorId;this.args=args;this.startStackFrame=undefined;this.endStackFrame=undefined;this.didNotFinish=false;this.inFlowEvents=[];this.outFlowEvents=[];this.subSlices=[];this.selfTime=undefined;this.cpuSelfTime=undefined;this.important=false;this.parentContainer=undefined;this.argsStripped=false;this.bind_id_=opt_bindId;this.parentSlice=undefined;this.isTopLevel=false;if(opt_duration!==undefined){this.duration=opt_duration;}
4405if(opt_cpuStart!==undefined){this.cpuStart=opt_cpuStart;}
4406if(opt_cpuDuration!==undefined){this.cpuDuration=opt_cpuDuration;}
4407if(opt_argsStripped!==undefined){this.argsStripped=true;}}
4408Slice.prototype={__proto__:tr.model.TimedEvent.prototype,get analysisTypeName(){return this.title;},get userFriendlyName(){return'Slice '+this.title+' at '+
4409tr.b.Unit.byName.timeStampInMs.format(this.start);},get stableId(){const parentSliceGroup=this.parentContainer.sliceGroup;return parentSliceGroup.stableId+'.'+
4410parentSliceGroup.slices.indexOf(this);},get bindId(){return this.bind_id_;},findDescendentSlice(targetTitle){if(!this.subSlices){return undefined;}
4411for(let i=0;i<this.subSlices.length;i++){if(this.subSlices[i].title===targetTitle){return this.subSlices[i];}
4412const slice=this.subSlices[i].findDescendentSlice(targetTitle);if(slice)return slice;}
4413return undefined;},get mostTopLevelSlice(){if(!this.parentSlice)return this;return this.parentSlice.mostTopLevelSlice;},getProcess(){const thread=this.parentContainer;if(thread&&thread.getProcess){return thread.getProcess();}
4414return undefined;},get model(){const process=this.getProcess();if(process!==undefined){return this.getProcess().model;}
4415return undefined;},*findTopmostSlicesRelativeToThisSlice(eventPredicate){if(eventPredicate(this)){yield this;return;}
4416for(const s of this.subSlices){yield*s.findTopmostSlicesRelativeToThisSlice(eventPredicate);}},iterateAllSubsequentSlices(callback,opt_this){const parentStack=[];let started=false;const topmostSlice=this.mostTopLevelSlice;parentStack.push(topmostSlice);while(parentStack.length!==0){const curSlice=parentStack.pop();if(started){callback.call(opt_this,curSlice);}else{started=(curSlice.guid===this.guid);}
4417for(let i=curSlice.subSlices.length-1;i>=0;i--){parentStack.push(curSlice.subSlices[i]);}}},get subsequentSlices(){const res=[];this.iterateAllSubsequentSlices(function(subseqSlice){res.push(subseqSlice);});return res;},*enumerateAllAncestors(){let curSlice=this.parentSlice;while(curSlice){yield curSlice;curSlice=curSlice.parentSlice;}},get ancestorSlices(){return Array.from(this.enumerateAllAncestors());},iterateEntireHierarchy(callback,opt_this){const mostTopLevelSlice=this.mostTopLevelSlice;callback.call(opt_this,mostTopLevelSlice);mostTopLevelSlice.iterateAllSubsequentSlices(callback,opt_this);},get entireHierarchy(){const res=[];this.iterateEntireHierarchy(function(slice){res.push(slice);});return res;},get ancestorAndSubsequentSlices(){const res=[];res.push(this);for(const aSlice of this.enumerateAllAncestors()){res.push(aSlice);}
4418this.iterateAllSubsequentSlices(function(sSlice){res.push(sSlice);});return res;},*enumerateAllDescendents(){for(const slice of this.subSlices){yield slice;}
4419for(const slice of this.subSlices){yield*slice.enumerateAllDescendents();}},get descendentSlices(){const res=[];for(const slice of this.enumerateAllDescendents()){res.push(slice);}
4420return res;}};return{Slice,};});'use strict';tr.exportTo('tr.model',function(){const Slice=tr.model.Slice;const SCHEDULING_STATE={DEBUG:'Debug',EXIT_DEAD:'Exit Dead',RUNNABLE:'Runnable',RUNNING:'Running',SLEEPING:'Sleeping',STOPPED:'Stopped',TASK_DEAD:'Task Dead',UNINTR_SLEEP:'Uninterruptible Sleep',UNINTR_SLEEP_WAKE_KILL:'Uninterruptible Sleep | WakeKill',UNINTR_SLEEP_WAKING:'Uninterruptible Sleep | Waking',UNINTR_SLEEP_IO:'Uninterruptible Sleep - Block I/O',UNINTR_SLEEP_WAKE_KILL_IO:'Uninterruptible Sleep | WakeKill - Block I/O',UNINTR_SLEEP_WAKING_IO:'Uninterruptible Sleep | Waking - Block I/O',UNKNOWN:'UNKNOWN',WAKE_KILL:'Wakekill',WAKING:'Waking',ZOMBIE:'Zombie'};function ThreadTimeSlice(thread,schedulingState,cat,start,args,opt_duration){Slice.call(this,cat,schedulingState,this.getColorForState_(schedulingState),start,args,opt_duration);this.thread=thread;this.schedulingState=schedulingState;this.cpuOnWhichThreadWasRunning=undefined;}
4421ThreadTimeSlice.prototype={__proto__:Slice.prototype,getColorForState_(state){const getColorIdForReservedName=tr.b.ColorScheme.getColorIdForReservedName;switch(state){case SCHEDULING_STATE.RUNNABLE:return getColorIdForReservedName('thread_state_runnable');case SCHEDULING_STATE.RUNNING:return getColorIdForReservedName('thread_state_running');case SCHEDULING_STATE.SLEEPING:return getColorIdForReservedName('thread_state_sleeping');case SCHEDULING_STATE.DEBUG:case SCHEDULING_STATE.EXIT_DEAD:case SCHEDULING_STATE.STOPPED:case SCHEDULING_STATE.TASK_DEAD:case SCHEDULING_STATE.UNINTR_SLEEP:case SCHEDULING_STATE.UNINTR_SLEEP_WAKE_KILL:case SCHEDULING_STATE.UNINTR_SLEEP_WAKING:case SCHEDULING_STATE.UNKNOWN:case SCHEDULING_STATE.WAKE_KILL:case SCHEDULING_STATE.WAKING:case SCHEDULING_STATE.ZOMBIE:return getColorIdForReservedName('thread_state_uninterruptible');case SCHEDULING_STATE.UNINTR_SLEEP_IO:case SCHEDULING_STATE.UNINTR_SLEEP_WAKE_KILL_IO:case SCHEDULING_STATE.UNINTR_SLEEP_WAKING_IO:return getColorIdForReservedName('thread_state_iowait');default:return getColorIdForReservedName('thread_state_unknown');}},get analysisTypeName(){return'tr.ui.analysis.ThreadTimeSlice';},getAssociatedCpuSlice(){if(!this.cpuOnWhichThreadWasRunning)return undefined;const cpuSlices=this.cpuOnWhichThreadWasRunning.slices;for(let i=0;i<cpuSlices.length;i++){const cpuSlice=cpuSlices[i];if(cpuSlice.start!==this.start)continue;if(cpuSlice.duration!==this.duration)continue;return cpuSlice;}
4422return undefined;},getCpuSliceThatTookCpu(){if(this.cpuOnWhichThreadWasRunning)return undefined;let curIndex=this.thread.indexOfTimeSlice(this);let cpuSliceWhenLastRunning;while(curIndex>=0){const curSlice=this.thread.timeSlices[curIndex];if(!curSlice.cpuOnWhichThreadWasRunning){curIndex--;continue;}
4423cpuSliceWhenLastRunning=curSlice.getAssociatedCpuSlice();break;}
4424if(!cpuSliceWhenLastRunning)return undefined;const cpu=cpuSliceWhenLastRunning.cpu;const indexOfSliceOnCpuWhenLastRunning=cpu.indexOf(cpuSliceWhenLastRunning);const nextRunningSlice=cpu.slices[indexOfSliceOnCpuWhenLastRunning+1];if(!nextRunningSlice)return undefined;if(Math.abs(nextRunningSlice.start-cpuSliceWhenLastRunning.end)<0.00001){return nextRunningSlice;}
4425return undefined;}};tr.model.EventRegistry.register(ThreadTimeSlice,{name:'threadTimeSlice',pluralName:'threadTimeSlices'});return{ThreadTimeSlice,SCHEDULING_STATE,};});'use strict';tr.exportTo('tr.model',function(){const CompoundEventSelectionState={NOT_SELECTED:0,EVENT_SELECTED:0x1,SOME_ASSOCIATED_EVENTS_SELECTED:0x2,ALL_ASSOCIATED_EVENTS_SELECTED:0x4,EVENT_AND_SOME_ASSOCIATED_SELECTED:0x1|0x2,EVENT_AND_ALL_ASSOCIATED_SELECTED:0x1|0x4};return{CompoundEventSelectionState,};});'use strict';tr.exportTo('tr.model.um',function(){const CompoundEventSelectionState=tr.model.CompoundEventSelectionState;function UserExpectation(parentModel,initiatorType,start,duration){tr.model.TimedEvent.call(this,start);this.associatedEvents=new tr.model.EventSet();this.duration=duration;this.initiatorType_=initiatorType;this.parentModel=parentModel;this.typeInfo_=undefined;this.sourceEvents=new tr.model.EventSet();}
4426const INITIATOR_TYPE={KEYBOARD:'Keyboard',MOUSE:'Mouse',MOUSE_WHEEL:'MouseWheel',TAP:'Tap',PINCH:'Pinch',FLING:'Fling',TOUCH:'Touch',SCROLL:'Scroll',CSS:'CSS',WEBGL:'WebGL',VIDEO:'Video',VR:'VR',};UserExpectation.prototype={__proto__:tr.model.TimedEvent.prototype,computeCompoundEvenSelectionState(selection){let cess=CompoundEventSelectionState.NOT_SELECTED;if(selection.contains(this)){cess|=CompoundEventSelectionState.EVENT_SELECTED;}
4427if(this.associatedEvents.intersectionIsEmpty(selection)){return cess;}
4428const allContained=this.associatedEvents.every(function(event){return selection.contains(event);});if(allContained){cess|=CompoundEventSelectionState.ALL_ASSOCIATED_EVENTS_SELECTED;}else{cess|=CompoundEventSelectionState.SOME_ASSOCIATED_EVENTS_SELECTED;}
4429return cess;},get associatedSamples(){const samples=new tr.model.EventSet();this.associatedEvents.forEach(function(event){if(event instanceof tr.model.ThreadSlice){samples.addEventSet(event.overlappingSamples);}});return samples;},get userFriendlyName(){return this.title+' User Expectation at '+
4430tr.b.Unit.byName.timeStampInMs.format(this.start);},get stableId(){return('UserExpectation.'+this.guid);},get typeInfo(){if(!this.typeInfo_){this.typeInfo_=UserExpectation.subTypes.findTypeInfo(this.constructor);}
4431if(!this.typeInfo_){throw new Error('Unregistered UserExpectation');}
4432return this.typeInfo_;},get colorId(){return this.typeInfo.metadata.colorId;},get stageTitle(){return this.typeInfo.metadata.stageTitle;},get initiatorType(){return this.initiatorType_;},get title(){if(!this.initiatorType){return this.stageTitle;}
4433return this.initiatorType+' '+this.stageTitle;},get totalCpuMs(){let cpuMs=0;this.associatedEvents.forEach(function(event){if(event.cpuSelfTime){cpuMs+=event.cpuSelfTime;}});return cpuMs;}};const subTypes={};const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(subTypes,options);subTypes.addEventListener('will-register',function(e){const metadata=e.typeInfo.metadata;if(metadata.stageTitle===undefined){throw new Error('Registered UserExpectations must provide '+'stageTitle');}
4434if(metadata.colorId===undefined){throw new Error('Registered UserExpectations must provide '+'colorId');}});tr.model.EventRegistry.register(UserExpectation,{name:'userExpectation',pluralName:'userExpectations',subTypes});return{UserExpectation,INITIATOR_TYPE,};});'use strict';tr.exportTo('tr.model.um',function(){function ResponseExpectation(parentModel,initiatorTitle,start,duration,opt_isAnimationBegin){tr.model.um.UserExpectation.call(this,parentModel,initiatorTitle,start,duration);this.isAnimationBegin=opt_isAnimationBegin||false;}
4435ResponseExpectation.prototype={__proto__:tr.model.um.UserExpectation.prototype,constructor:ResponseExpectation};tr.model.um.UserExpectation.subTypes.register(ResponseExpectation,{stageTitle:'Response',colorId:tr.b.ColorScheme.getColorIdForReservedName('rail_response')});return{ResponseExpectation,};});'use strict';tr.exportTo('tr.e.audits',function(){const SCHEDULING_STATE=tr.model.SCHEDULING_STATE;const Auditor=tr.c.Auditor;const AndroidModelHelper=tr.model.helpers.AndroidModelHelper;const ColorScheme=tr.b.ColorScheme;const Statistics=tr.b.math.Statistics;const FRAME_PERF_CLASS=tr.model.FRAME_PERF_CLASS;const Alert=tr.model.Alert;const EventInfo=tr.model.EventInfo;const Scalar=tr.b.Scalar;const timeDurationInMs=tr.b.Unit.byName.timeDurationInMs;const EXPECTED_FRAME_TIME_MS=16.67;function getStart(e){return e.start;}
4436function getDuration(e){return e.duration;}
4437function getCpuDuration(e){return(e.cpuDuration!==undefined)?e.cpuDuration:e.duration;}
4438function frameIsActivityStart(frame){return frame.associatedEvents.any(x=>x.title==='activityStart');}
4439function frameMissedDeadline(frame){return frame.args.deadline&&frame.args.deadline<frame.end;}
4440function DocLinkBuilder(){this.docLinks=[];}
4441DocLinkBuilder.prototype={addAppVideo(name,videoId){this.docLinks.push({label:'Video Link',textContent:('Android Performance Patterns: '+name),href:'https://www.youtube.com/watch?list=PLWz5rJ2EKKc9CBxr3BVjPTPoDPLdPIFCE&v='+videoId});return this;},addDacRef(name,link){this.docLinks.push({label:'Doc Link',textContent:(name+' documentation'),href:'https://developer.android.com/reference/'+link});return this;},build(){return this.docLinks;}};function AndroidAuditor(model){Auditor.call(this,model);const helper=model.getOrCreateHelper(AndroidModelHelper);if(helper.apps.length||helper.surfaceFlinger){this.helper=helper;}}
4442AndroidAuditor.viewAlphaAlertInfo_=new EventInfo('Inefficient View alpha usage','Setting an alpha between 0 and 1 has significant performance costs, if one of the fast alpha paths is not used.',new DocLinkBuilder().addAppVideo('Hidden Cost of Transparency','wIy8g8yNhNk').addDacRef('View#setAlpha()','android/view/View.html#setAlpha(float)').build());AndroidAuditor.saveLayerAlertInfo_=new EventInfo('Expensive rendering with Canvas#saveLayer()','Canvas#saveLayer() incurs extremely high rendering cost. They disrupt the rendering pipeline when drawn, forcing a flush of drawing content. Instead use View hardware layers, or static Bitmaps. This enables the offscreen buffers to be reused in between frames, and avoids the disruptive render target switch.',new DocLinkBuilder().addAppVideo('Hidden Cost of Transparency','wIy8g8yNhNk').addDacRef('Canvas#saveLayerAlpha()','android/graphics/Canvas.html#saveLayerAlpha(android.graphics.RectF, int, int)').build());AndroidAuditor.getSaveLayerAlerts_=function(frame){const badAlphaRegEx=/^(.+) alpha caused (unclipped )?saveLayer (\d+)x(\d+)$/;const saveLayerRegEx=/^(unclipped )?saveLayer (\d+)x(\d+)$/;const ret=[];const events=[];frame.associatedEvents.forEach(function(slice){const match=badAlphaRegEx.exec(slice.title);if(match){const args={'view name':match[1],'width':parseInt(match[3]),'height':parseInt(match[4])};ret.push(new Alert(AndroidAuditor.viewAlphaAlertInfo_,slice.start,[slice],args));}else if(saveLayerRegEx.test(slice.title)){events.push(slice);}},this);if(events.length>ret.length){const unclippedSeen=Statistics.sum(events,function(slice){return saveLayerRegEx.exec(slice.title)[1]?1:0;});const clippedSeen=events.length-unclippedSeen;const earliestStart=Statistics.min(events,function(slice){return slice.start;});const args={'Unclipped saveLayer count (especially bad!)':unclippedSeen,'Clipped saveLayer count':clippedSeen};events.push(frame);ret.push(new Alert(AndroidAuditor.saveLayerAlertInfo_,earliestStart,events,args));}
4443return ret;};AndroidAuditor.pathAlertInfo_=new EventInfo('Path texture churn','Paths are drawn with a mask texture, so when a path is modified / newly drawn, that texture must be generated and uploaded to the GPU. Ensure that you cache paths between frames and do not unnecessarily call Path#reset(). You can cut down on this cost by sharing Path object instances between drawables/views.');AndroidAuditor.getPathAlert_=function(frame){const uploadRegEx=/^Generate Path Texture$/;const events=frame.associatedEvents.filter(function(event){return event.title==='Generate Path Texture';});const start=Statistics.min(events,getStart);const duration=Statistics.sum(events,getDuration);if(duration<3)return undefined;events.push(frame);return new Alert(AndroidAuditor.pathAlertInfo_,start,events,{'Time spent':new Scalar(timeDurationInMs,duration)});};AndroidAuditor.uploadAlertInfo_=new EventInfo('Expensive Bitmap uploads','Bitmaps that have been modified / newly drawn must be uploaded to the GPU. Since this is expensive if the total number of pixels uploaded is large, reduce the amount of Bitmap churn in this animation/context, per frame.');AndroidAuditor.getUploadAlert_=function(frame){const uploadRegEx=/^Upload (\d+)x(\d+) Texture$/;const events=[];let start=Number.POSITIVE_INFINITY;let duration=0;let pixelsUploaded=0;frame.associatedEvents.forEach(function(event){const match=uploadRegEx.exec(event.title);if(match){events.push(event);start=Math.min(start,event.start);duration+=event.duration;pixelsUploaded+=parseInt(match[1])*parseInt(match[2]);}});if(events.length===0||duration<3)return undefined;const mPixels=(pixelsUploaded/1000000).toFixed(2)+' million';const args={'Pixels uploaded':mPixels,'Time spent':new Scalar(timeDurationInMs,duration)};events.push(frame);return new Alert(AndroidAuditor.uploadAlertInfo_,start,events,args);};AndroidAuditor.ListViewInflateAlertInfo_=new EventInfo('Inflation during ListView recycling','ListView item recycling involved inflating views. Ensure your Adapter#getView() recycles the incoming View, instead of constructing a new one.');AndroidAuditor.ListViewBindAlertInfo_=new EventInfo('Inefficient ListView recycling/rebinding','ListView recycling taking too much time per frame. Ensure your Adapter#getView() binds data efficiently.');AndroidAuditor.getListViewAlert_=function(frame){const events=frame.associatedEvents.filter(function(event){return event.title==='obtainView'||event.title==='setupListItem';});const duration=Statistics.sum(events,getCpuDuration);if(events.length===0||duration<3)return undefined;let hasInflation=false;for(const event of events){if(event.findDescendentSlice('inflate')){hasInflation=true;}}
4444const start=Statistics.min(events,getStart);const args={'Time spent':new Scalar(timeDurationInMs,duration)};args['ListView items '+(hasInflation?'inflated':'rebound')]=events.length/2;const eventInfo=hasInflation?AndroidAuditor.ListViewInflateAlertInfo_:AndroidAuditor.ListViewBindAlertInfo_;events.push(frame);return new Alert(eventInfo,start,events,args);};AndroidAuditor.measureLayoutAlertInfo_=new EventInfo('Expensive measure/layout pass','Measure/Layout took a significant time, contributing to jank. Avoid triggering layout during animations.',new DocLinkBuilder().addAppVideo('Invalidations, Layouts, and Performance','we6poP0kw6E').build());AndroidAuditor.getMeasureLayoutAlert_=function(frame){const events=frame.associatedEvents.filter(function(event){return event.title==='measure'||event.title==='layout';});const duration=Statistics.sum(events,getCpuDuration);if(events.length===0||duration<3)return undefined;const start=Statistics.min(events,getStart);events.push(frame);return new Alert(AndroidAuditor.measureLayoutAlertInfo_,start,events,{'Time spent':new Scalar(timeDurationInMs,duration)});};AndroidAuditor.viewDrawAlertInfo_=new EventInfo('Long View#draw()','Recording the drawing commands of invalidated Views took a long time. Avoid significant work in View or Drawable custom drawing, especially allocations or drawing to Bitmaps.',new DocLinkBuilder().addAppVideo('Invalidations, Layouts, and Performance','we6poP0kw6E').addAppVideo('Avoiding Allocations in onDraw()','HAK5acHQ53E').build());AndroidAuditor.getViewDrawAlert_=function(frame){let slice=undefined;for(const event of frame.associatedEvents){if(event.title==='getDisplayList'||event.title==='Record View#draw()'){slice=event;break;}}
4445if(!slice||getCpuDuration(slice)<3)return undefined;return new Alert(AndroidAuditor.viewDrawAlertInfo_,slice.start,[slice,frame],{'Time spent':new Scalar(timeDurationInMs,getCpuDuration(slice))});};AndroidAuditor.blockingGcAlertInfo_=new EventInfo('Blocking Garbage Collection','Blocking GCs are caused by object churn, and made worse by having large numbers of objects in the heap. Avoid allocating objects during animations/scrolling, and recycle Bitmaps to avoid triggering garbage collection.',new DocLinkBuilder().addAppVideo('Garbage Collection in Android','pzfzz50W5Uo').addAppVideo('Avoiding Allocations in onDraw()','HAK5acHQ53E').build());AndroidAuditor.getBlockingGcAlert_=function(frame){const events=frame.associatedEvents.filter(function(event){return event.title==='DVM Suspend'||event.title==='GC: Wait For Concurrent';});const blockedDuration=Statistics.sum(events,getDuration);if(blockedDuration<3)return undefined;const start=Statistics.min(events,getStart);events.push(frame);return new Alert(AndroidAuditor.blockingGcAlertInfo_,start,events,{'Blocked duration':new Scalar(timeDurationInMs,blockedDuration)});};AndroidAuditor.lockContentionAlertInfo_=new EventInfo('Lock contention','UI thread lock contention is caused when another thread holds a lock that the UI thread is trying to use. UI thread progress is blocked until the lock is released. Inspect locking done within the UI thread, and ensure critical sections are short.');AndroidAuditor.getLockContentionAlert_=function(frame){const events=frame.associatedEvents.filter(function(event){return/^Lock Contention on /.test(event.title);});const blockedDuration=Statistics.sum(events,getDuration);if(blockedDuration<1)return undefined;const start=Statistics.min(events,getStart);events.push(frame);return new Alert(AndroidAuditor.lockContentionAlertInfo_,start,events,{'Blocked duration':new Scalar(timeDurationInMs,blockedDuration)});};AndroidAuditor.schedulingAlertInfo_=new EventInfo('Scheduling delay','Work to produce this frame was descheduled for several milliseconds, contributing to jank. Ensure that code on the UI thread doesn\'t block on work being done on other threads, and that background threads (doing e.g. network or bitmap loading) are running at android.os.Process#THREAD_PRIORITY_BACKGROUND or lower so they are less likely to interrupt the UI thread. These background threads should show up with a priority number of 130 or higher in the scheduling section under the Kernel process.');AndroidAuditor.getSchedulingAlert_=function(frame){let totalDuration=0;const totalStats={};for(const ttr of frame.threadTimeRanges){const stats=ttr.thread.getSchedulingStatsForRange(ttr.start,ttr.end);for(const[key,value]of Object.entries(stats)){if(!(key in totalStats)){totalStats[key]=0;}
4446totalStats[key]+=value;totalDuration+=value;}}
4447if(!(SCHEDULING_STATE.RUNNING in totalStats)||totalDuration===0||totalDuration-totalStats[SCHEDULING_STATE.RUNNING]<3){return;}
4448const args={};for(const[key,value]of Object.entries(totalStats)){let newKey=key;if(key===SCHEDULING_STATE.RUNNABLE){newKey='Not scheduled, but runnable';}else if(key===SCHEDULING_STATE.UNINTR_SLEEP){newKey='Blocking I/O delay';}
4449args[newKey]=new Scalar(timeDurationInMs,value);}
4450return new Alert(AndroidAuditor.schedulingAlertInfo_,frame.start,[frame],args);};AndroidAuditor.prototype={__proto__:Auditor.prototype,renameAndSort_(){this.model.kernel.important=false;this.model.getAllProcesses().forEach(function(process){if(this.helper.surfaceFlinger&&process===this.helper.surfaceFlinger.process){if(!process.name){process.name='SurfaceFlinger';}
4451process.sortIndex=Number.NEGATIVE_INFINITY;process.important=false;return;}
4452const uiThread=process.getThread(process.pid);if(!process.name&&uiThread&&uiThread.name){if(/^ndroid\./.test(uiThread.name)){uiThread.name='a'+uiThread.name;}
4453process.name=uiThread.name;uiThread.name='UI Thread';}
4454process.sortIndex=0;for(const tid in process.threads){process.sortIndex-=process.threads[tid].sliceGroup.slices.length;}},this);this.model.getAllThreads().forEach(function(thread){if(thread.tid===thread.parent.pid){thread.sortIndex=-3;}
4455if(thread.name==='RenderThread'){thread.sortIndex=-2;}
4456if(/^hwuiTask/.test(thread.name)){thread.sortIndex=-1;}});},pushFramesAndJudgeJank_(){let badFramesObserved=0;let framesObserved=0;const surfaceFlinger=this.helper.surfaceFlinger;this.helper.apps.forEach(function(app){app.process.frames=app.getFrames();app.process.frames.forEach(function(frame){if(frame.totalDuration>EXPECTED_FRAME_TIME_MS*2){badFramesObserved+=2;frame.perfClass=FRAME_PERF_CLASS.TERRIBLE;}else if(frame.totalDuration>EXPECTED_FRAME_TIME_MS||frameMissedDeadline(frame)){badFramesObserved++;frame.perfClass=FRAME_PERF_CLASS.BAD;}else{frame.perfClass=FRAME_PERF_CLASS.GOOD;}});framesObserved+=app.process.frames.length;});if(framesObserved){const portionBad=badFramesObserved/framesObserved;if(portionBad>0.3){this.model.faviconHue='red';}else if(portionBad>0.05){this.model.faviconHue='yellow';}else{this.model.faviconHue='green';}}},pushEventInfo_(){const appAnnotator=new AppAnnotator();this.helper.apps.forEach(function(app){if(app.uiThread){appAnnotator.applyEventInfos(app.uiThread.sliceGroup);}
4457if(app.renderThread){appAnnotator.applyEventInfos(app.renderThread.sliceGroup);}});},runAnnotate(){if(!this.helper)return;this.renameAndSort_();this.pushFramesAndJudgeJank_();this.pushEventInfo_();this.helper.iterateImportantSlices(function(slice){slice.important=true;});},runAudit(){if(!this.helper)return;const alerts=this.model.alerts;this.helper.apps.forEach(function(app){app.getFrames().forEach(function(frame){alerts.push.apply(alerts,AndroidAuditor.getSaveLayerAlerts_(frame));if(frame.perfClass===FRAME_PERF_CLASS.NEUTRAL||frame.perfClass===FRAME_PERF_CLASS.GOOD){return;}
4458let alert=AndroidAuditor.getPathAlert_(frame);if(alert)alerts.push(alert);alert=AndroidAuditor.getUploadAlert_(frame);if(alert)alerts.push(alert);alert=AndroidAuditor.getListViewAlert_(frame);if(alert)alerts.push(alert);alert=AndroidAuditor.getMeasureLayoutAlert_(frame);if(alert)alerts.push(alert);alert=AndroidAuditor.getViewDrawAlert_(frame);if(alert)alerts.push(alert);alert=AndroidAuditor.getBlockingGcAlert_(frame);if(alert)alerts.push(alert);alert=AndroidAuditor.getLockContentionAlert_(frame);if(alert)alerts.push(alert);alert=AndroidAuditor.getSchedulingAlert_(frame);if(alert)alerts.push(alert);});},this);this.addRenderingInteractionRecords();this.addInputInteractionRecords();},addRenderingInteractionRecords(){const events=[];this.helper.apps.forEach(function(app){events.push.apply(events,app.getAnimationAsyncSlices());events.push.apply(events,app.getFrames());});const mergerFunction=function(events){const ir=new tr.model.um.ResponseExpectation(this.model,'Rendering',events[0].min,events[events.length-1].max-events[0].min);this.model.userModel.expectations.push(ir);}.bind(this);tr.b.math.mergeRanges(tr.b.math.convertEventsToRanges(events),30,mergerFunction);},addInputInteractionRecords(){const inputSamples=[];this.helper.apps.forEach(function(app){inputSamples.push.apply(inputSamples,app.getInputSamples());});const mergerFunction=function(events){const ir=new tr.model.um.ResponseExpectation(this.model,'Input',events[0].min,events[events.length-1].max-events[0].min);this.model.userModel.expectations.push(ir);}.bind(this);const inputRanges=inputSamples.map(function(sample){return tr.b.math.Range.fromExplicitRange(sample.timestamp,sample.timestamp);});tr.b.math.mergeRanges(inputRanges,30,mergerFunction);}};Auditor.register(AndroidAuditor);function AppAnnotator(){this.titleInfoLookup=new Map();this.titleParentLookup=new Map();this.build_();}
4459AppAnnotator.prototype={build_(){const registerEventInfo=function(dict){this.titleInfoLookup.set(dict.title,new EventInfo(dict.title,dict.description,dict.docLinks));if(dict.parents){this.titleParentLookup.set(dict.title,dict.parents);}}.bind(this);registerEventInfo({title:'inflate',description:'Constructing a View hierarchy from pre-processed XML via LayoutInflater#layout. This includes constructing all of the View objects in the hierarchy, and applying styled attributes.'});registerEventInfo({title:'obtainView',description:'Adapter#getView() called to bind content to a recycled View that is being presented.'});registerEventInfo({title:'setupListItem',description:'Attached a newly-bound, recycled View to its parent ListView.'});registerEventInfo({title:'setupGridItem',description:'Attached a newly-bound, recycled View to its parent GridView.'});const choreographerLinks=new DocLinkBuilder().addDacRef('Choreographer','android/view/Choreographer.html').build();registerEventInfo({title:'Choreographer#doFrame',docLinks:choreographerLinks,description:'Choreographer executes frame callbacks for inputs, animations, and rendering traversals. When this work is done, a frame will be presented to the user.'});registerEventInfo({title:'input',parents:['Choreographer#doFrame'],docLinks:choreographerLinks,description:'Input callbacks are processed. This generally encompasses dispatching input to Views, as well as any work the Views do to process this input/gesture.'});registerEventInfo({title:'animation',parents:['Choreographer#doFrame'],docLinks:choreographerLinks,description:'Animation callbacks are processed. This is generally minimal work, as animations determine progress for the frame, and push new state to animated objects (such as setting View properties).'});registerEventInfo({title:'traversals',parents:['Choreographer#doFrame'],docLinks:choreographerLinks,description:'Primary draw traversals. This is the primary traversal of the View hierarchy, including layout and draw passes.'});const traversalParents=['Choreographer#doFrame','performTraversals'];const layoutLinks=new DocLinkBuilder().addDacRef('View#Layout','android/view/View.html#Layout').build();registerEventInfo({title:'performTraversals',description:'A drawing traversal of the View hierarchy, comprised of all layout and drawing needed to produce the frame.'});registerEventInfo({title:'measure',parents:traversalParents,docLinks:layoutLinks,description:'First of two phases in view hierarchy layout. Views are asked to size themselves according to constraints supplied by their parent. Some ViewGroups may measure a child more than once to help satisfy their own constraints. Nesting ViewGroups that measure children more than once can lead to excessive and repeated work.'});registerEventInfo({title:'layout',parents:traversalParents,docLinks:layoutLinks,description:'Second of two phases in view hierarchy layout, repositioning content and child Views into their new locations.'});const drawString='Draw pass over the View hierarchy. Every invalidated View will have its drawing commands recorded. On Android versions prior to Lollipop, this would also include the issuing of draw commands to the GPU. Starting with Lollipop, it only includes the recording of commands, and syncing that information to the RenderThread.';registerEventInfo({title:'draw',parents:traversalParents,description:drawString});const recordString='Every invalidated View\'s drawing commands are recorded. Each will have View#draw() called, and is passed a Canvas that will record and store its drawing commands until it is next invalidated/rerecorded.';registerEventInfo({title:'getDisplayList',parents:['draw'],description:recordString});registerEventInfo({title:'Record View#draw()',parents:['draw'],description:recordString});registerEventInfo({title:'drawDisplayList',parents:['draw'],description:'Execution of recorded draw commands to generate a frame. This represents the actual formation and issuing of drawing commands to the GPU. On Android L and higher devices, this work is done on a dedicated RenderThread, instead of on the UI Thread.'});registerEventInfo({title:'DrawFrame',description:'RenderThread portion of the standard UI/RenderThread split frame. This represents the actual formation and issuing of drawing commands to the GPU.'});registerEventInfo({title:'doFrame',description:'RenderThread animation frame. Represents drawing work done by the RenderThread on a frame where the UI thread did not produce new drawing content.'});registerEventInfo({title:'syncFrameState',description:'Sync stage between the UI thread and the RenderThread, where the UI thread hands off a frame (including information about modified Views). Time in this method primarily consists of uploading modified Bitmaps to the GPU. After this sync is completed, the UI thread is unblocked, and the RenderThread starts to render the frame.'});registerEventInfo({title:'flush drawing commands',description:'Issuing the now complete drawing commands to the GPU.'});registerEventInfo({title:'eglSwapBuffers',description:'Complete GPU rendering of the frame.'});registerEventInfo({title:'RV Scroll',description:'RecyclerView is calculating a scroll. If there are too many of these in Systrace, some Views inside RecyclerView might be causing it. Try to avoid using EditText, focusable views or handle them with care.'});registerEventInfo({title:'RV OnLayout',description:'OnLayout has been called by the View system. If this shows up too many times in Systrace, make sure the children of RecyclerView do not update themselves directly. This will cause a full re-layout but when it happens via the Adapter notifyItemChanged, RecyclerView can avoid full layout calculation.'});registerEventInfo({title:'RV FullInvalidate',description:'NotifyDataSetChanged or equal has been called. If this is taking a long time, try sending granular notify adapter changes instead of just calling notifyDataSetChanged or setAdapter / swapAdapter. Adding stable ids to your adapter might help.'});registerEventInfo({title:'RV PartialInvalidate',description:'RecyclerView is rebinding a View. If this is taking a lot of time, consider optimizing your layout or make sure you are not doing extra operations in onBindViewHolder call.'});registerEventInfo({title:'RV OnBindView',description:'RecyclerView is rebinding a View. If this is taking a lot of time, consider optimizing your layout or make sure you are not doing extra operations in onBindViewHolder call.'});registerEventInfo({title:'RV CreateView',description:'RecyclerView is creating a new View. If too many of these are present: 1) There might be a problem in Recycling (e.g. custom Animations that set transient state and prevent recycling or ItemAnimator not implementing the contract properly. See Adapter#onFailedToRecycleView(ViewHolder). 2) There may be too many item view types. Try merging them. 3) There might be too many itemChange animations and not enough space in RecyclerPool. Try increasing your pool size and item cache size.'});registerEventInfo({title:'eglSwapBuffers',description:'The CPU has finished producing drawing commands, and is flushing drawing work to the GPU, and posting that buffer to the consumer (which is often SurfaceFlinger window composition). Once this is completed, the GPU can produce the frame content without any involvement from the CPU.'});},applyEventInfosRecursive_(parentNames,slice){const checkExpectedParentNames=function(expectedParentNames){if(!expectedParentNames)return true;return expectedParentNames.some(function(name){return parentNames.has(name);});};if(this.titleInfoLookup.has(slice.title)){if(checkExpectedParentNames(this.titleParentLookup.get(slice.title))){slice.info=this.titleInfoLookup.get(slice.title);}}
4460if(slice.subSlices.length>0){if(!parentNames.has(slice.title)){parentNames.set(slice.title,0);}
4461parentNames.set(slice.title,parentNames.get(slice.title)+1);slice.subSlices.forEach(function(subSlice){this.applyEventInfosRecursive_(parentNames,subSlice);},this);parentNames.set(slice.title,parentNames.get(slice.title)-1);if(parentNames.get(slice.title)===0){delete parentNames[slice.title];}}},applyEventInfos(sliceGroup){sliceGroup.topLevelSlices.forEach(function(slice){this.applyEventInfosRecursive_(new Map(),slice);},this);}};return{AndroidAuditor,};});'use strict';tr.exportTo('tr.model',function(){function ObjectSnapshot(objectInstance,ts,args){tr.model.Event.call(this);this.objectInstance=objectInstance;this.ts=ts;this.args=args;}
4462ObjectSnapshot.prototype={__proto__:tr.model.Event.prototype,preInitialize(){},initialize(){},referencedAt(item,object,field){},addBoundsToRange(range){range.addValue(this.ts);},get userFriendlyName(){return'Snapshot of '+this.objectInstance.userFriendlyName+' @ '+
4463tr.b.Unit.byName.timeStampInMs.format(this.ts);}};tr.model.EventRegistry.register(ObjectSnapshot,{name:'objectSnapshot',pluralName:'objectSnapshots'});return{ObjectSnapshot,};});'use strict';tr.exportTo('tr.model',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;function ObjectInstance(parent,scopedId,category,name,creationTs,opt_baseTypeName){tr.model.Event.call(this);this.parent=parent;this.scopedId=scopedId;this.category=category;this.baseTypeName=opt_baseTypeName?opt_baseTypeName:name;this.name=name;this.creationTs=creationTs;this.creationTsWasExplicit=false;this.deletionTs=Number.MAX_VALUE;this.deletionTsWasExplicit=false;this.colorId=0;this.bounds=new tr.b.math.Range();this.snapshots=[];this.hasImplicitSnapshots=false;}
4464ObjectInstance.prototype={__proto__:tr.model.Event.prototype,get typeName(){return this.name;},addBoundsToRange(range){range.addRange(this.bounds);},addSnapshot(ts,args,opt_name,opt_baseTypeName){if(ts<this.creationTs){throw new Error('Snapshots must be >= instance.creationTs');}
4465if(ts>=this.deletionTs){throw new Error('Snapshots cannot be added after '+'an objects deletion timestamp.');}
4466let lastSnapshot;if(this.snapshots.length>0){lastSnapshot=this.snapshots[this.snapshots.length-1];if(lastSnapshot.ts===ts){throw new Error('Snapshots already exists at this time!');}
4467if(ts<lastSnapshot.ts){throw new Error('Snapshots must be added in increasing timestamp order');}}
4468if(opt_name&&(this.name!==opt_name)){if(!opt_baseTypeName){throw new Error('Must provide base type name for name update');}
4469if(this.baseTypeName!==opt_baseTypeName){throw new Error('Cannot update type name: base types dont match');}
4470this.name=opt_name;}
4471const snapshotConstructor=tr.model.ObjectSnapshot.subTypes.getConstructor(this.category,this.name);const snapshot=new snapshotConstructor(this,ts,args);this.snapshots.push(snapshot);return snapshot;},wasDeleted(ts){let lastSnapshot;if(this.snapshots.length>0){lastSnapshot=this.snapshots[this.snapshots.length-1];if(lastSnapshot.ts>ts){throw new Error('Instance cannot be deleted at ts='+
4472ts+'. A snapshot exists that is older.');}}
4473this.deletionTs=ts;this.deletionTsWasExplicit=true;},preInitialize(){for(let i=0;i<this.snapshots.length;i++){this.snapshots[i].preInitialize();}},initialize(){for(let i=0;i<this.snapshots.length;i++){this.snapshots[i].initialize();}},isAliveAt(ts){if(ts<this.creationTs&&this.creationTsWasExplicit){return false;}
4474if(ts>this.deletionTs){return false;}
4475return true;},getSnapshotAt(ts){if(ts<this.creationTs){if(this.creationTsWasExplicit){throw new Error('ts must be within lifetime of this instance');}
4476return this.snapshots[0];}
4477if(ts>this.deletionTs){throw new Error('ts must be within lifetime of this instance');}
4478const snapshots=this.snapshots;const i=tr.b.findIndexInSortedIntervals(snapshots,function(snapshot){return snapshot.ts;},function(snapshot,i){if(i===snapshots.length-1){return snapshots[i].objectInstance.deletionTs;}
4479return snapshots[i+1].ts-snapshots[i].ts;},ts);if(i<0){return this.snapshots[0];}
4480if(i>=this.snapshots.length){return this.snapshots[this.snapshots.length-1];}
4481return this.snapshots[i];},updateBounds(){this.bounds.reset();this.bounds.addValue(this.creationTs);if(this.deletionTs!==Number.MAX_VALUE){this.bounds.addValue(this.deletionTs);}else if(this.snapshots.length>0){this.bounds.addValue(this.snapshots[this.snapshots.length-1].ts);}},shiftTimestampsForward(amount){this.creationTs+=amount;if(this.deletionTs!==Number.MAX_VALUE){this.deletionTs+=amount;}
4482this.snapshots.forEach(function(snapshot){snapshot.ts+=amount;});},get userFriendlyName(){return this.typeName+' object '+this.scopedId;}};tr.model.EventRegistry.register(ObjectInstance,{name:'objectInstance',pluralName:'objectInstances'});return{ObjectInstance,};});'use strict';tr.exportTo('tr.e.chrome',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;const ObjectInstance=tr.model.ObjectInstance;function BlameContextSnapshot(){ObjectSnapshot.apply(this,arguments);}
4483BlameContextSnapshot.prototype={__proto__:ObjectSnapshot.prototype,get parentContext(){if(this.args.parent instanceof BlameContextSnapshot){return this.args.parent;}
4484return undefined;},get userFriendlyName(){return'BlameContext';}};function BlameContextInstance(){ObjectInstance.apply(this,arguments);}
4485BlameContextInstance.prototype={__proto__:ObjectInstance.prototype,get blameContextType(){throw new Error('Not implemented');}};return{BlameContextSnapshot,BlameContextInstance,};});'use strict';tr.exportTo('tr.e.chrome',function(){const BlameContextSnapshot=tr.e.chrome.BlameContextSnapshot;const BlameContextInstance=tr.e.chrome.BlameContextInstance;function FrameTreeNodeSnapshot(){BlameContextSnapshot.apply(this,arguments);}
4486FrameTreeNodeSnapshot.prototype={__proto__:BlameContextSnapshot.prototype,get renderFrame(){if(this.args.renderFrame instanceof tr.e.chrome.RenderFrameSnapshot){return this.args.renderFrame;}
4487return undefined;},get url(){return this.args.url;},get userFriendlyName(){return'FrameTreeNode';}};tr.model.ObjectSnapshot.subTypes.register(FrameTreeNodeSnapshot,{typeName:'FrameTreeNode'});function FrameTreeNodeInstance(){BlameContextInstance.apply(this,arguments);}
4488FrameTreeNodeInstance.prototype={__proto__:BlameContextInstance.prototype,get blameContextType(){return'Frame';}};tr.model.ObjectInstance.subTypes.register(FrameTreeNodeInstance,{typeName:'FrameTreeNode'});return{FrameTreeNodeSnapshot,FrameTreeNodeInstance,};});'use strict';tr.exportTo('tr.e.chrome',function(){const BlameContextSnapshot=tr.e.chrome.BlameContextSnapshot;const BlameContextInstance=tr.e.chrome.BlameContextInstance;function RenderFrameSnapshot(){BlameContextSnapshot.apply(this,arguments);}
4489RenderFrameSnapshot.prototype={__proto__:BlameContextSnapshot.prototype,referencedAt(item,object,field){if(item instanceof tr.e.chrome.FrameTreeNodeSnapshot&&object===item.args&&field==='renderFrame'){this.args.frameTreeNode=item;}},get frameTreeNode(){if(this.args.frameTreeNode instanceof
4490tr.e.chrome.FrameTreeNodeSnapshot){return this.args.frameTreeNode;}
4491return undefined;},get url(){if(this.frameTreeNode){return this.frameTreeNode.url;}
4492return undefined;},get userFriendlyName(){return'RenderFrame';}};tr.model.ObjectSnapshot.subTypes.register(RenderFrameSnapshot,{typeName:'RenderFrame'});function RenderFrameInstance(){BlameContextInstance.apply(this,arguments);}
4493RenderFrameInstance.prototype={__proto__:BlameContextInstance.prototype,get blameContextType(){return'Frame';}};tr.model.ObjectInstance.subTypes.register(RenderFrameInstance,{typeName:'RenderFrame'});return{RenderFrameSnapshot,RenderFrameInstance,};});'use strict';tr.exportTo('tr.e.chrome',function(){const BlameContextSnapshot=tr.e.chrome.BlameContextSnapshot;const BlameContextInstance=tr.e.chrome.BlameContextInstance;function TopLevelSnapshot(){BlameContextSnapshot.apply(this,arguments);}
4494TopLevelSnapshot.prototype={__proto__:BlameContextSnapshot.prototype,get userFriendlyName(){return'TopLevel';}};tr.model.ObjectSnapshot.subTypes.register(TopLevelSnapshot,{typeName:'TopLevel'});function TopLevelInstance(){BlameContextInstance.apply(this,arguments);}
4495TopLevelInstance.prototype={__proto__:BlameContextInstance.prototype,get blameContextType(){return'TopLevel';}};tr.model.ObjectInstance.subTypes.register(TopLevelInstance,{typeName:'TopLevel'});return{TopLevelSnapshot,TopLevelInstance,};});'use strict';tr.exportTo('tr.model',function(){function AsyncSlice(category,title,colorId,start,args,duration,opt_isTopLevel,opt_cpuStart,opt_cpuDuration,opt_argsStripped){tr.model.TimedEvent.call(this,start);this.category=category||'';this.originalTitle=title;this.title=title;this.colorId=colorId;this.args=args;this.startStackFrame=undefined;this.endStackFrame=undefined;this.didNotFinish=false;this.important=false;this.subSlices=[];this.parentContainer_=undefined;this.id=undefined;this.startThread=undefined;this.endThread=undefined;this.cpuStart=undefined;this.cpuDuration=undefined;this.argsStripped=false;this.startStackFrame=undefined;this.endStackFrame=undefined;this.duration=duration;this.isTopLevel=(opt_isTopLevel===true);if(opt_cpuStart!==undefined){this.cpuStart=opt_cpuStart;}
4496if(opt_cpuDuration!==undefined){this.cpuDuration=opt_cpuDuration;}
4497if(opt_argsStripped!==undefined){this.argsStripped=opt_argsStripped;}}
4498AsyncSlice.prototype={__proto__:tr.model.TimedEvent.prototype,get analysisTypeName(){return this.title;},get parentContainer(){return this.parentContainer_;},set parentContainer(parentContainer){this.parentContainer_=parentContainer;for(let i=0;i<this.subSlices.length;i++){const subSlice=this.subSlices[i];if(subSlice.parentContainer===undefined){subSlice.parentContainer=parentContainer;}}},get viewSubGroupTitle(){return this.title;},get viewSubGroupGroupingKey(){return undefined;},get userFriendlyName(){return'Async slice '+this.title+' at '+
4499tr.b.Unit.byName.timeStampInMs.format(this.start);},get stableId(){const parentAsyncSliceGroup=this.parentContainer.asyncSliceGroup;return parentAsyncSliceGroup.stableId+'.'+
4500parentAsyncSliceGroup.slices.indexOf(this);},*findTopmostSlicesRelativeToThisSlice(eventPredicate,opt_this){if(eventPredicate(this)){yield this;return;}
4501for(const s of this.subSlices){yield*s.findTopmostSlicesRelativeToThisSlice(eventPredicate);}},findDescendentSlice(targetTitle){if(!this.subSlices)return undefined;for(let i=0;i<this.subSlices.length;i++){if(this.subSlices[i].title===targetTitle){return this.subSlices[i];}
4502const slice=this.subSlices[i].findDescendentSlice(targetTitle);if(slice)return slice;}
4503return undefined;},*enumerateAllDescendents(){for(const slice of this.subSlices){yield slice;}
4504for(const slice of this.subSlices){if(slice.enumerateAllDescendents!==undefined){yield*slice.enumerateAllDescendents();}}},compareTo(that){return this.title.localeCompare(that.title);}};tr.model.EventRegistry.register(AsyncSlice,{name:'asyncSlice',pluralName:'asyncSlices'});return{AsyncSlice,};});'use strict';tr.exportTo('tr.e.blink',function(){class BlinkSchedulerAsyncSlice extends tr.model.AsyncSlice{get viewSubGroupGroupingKey(){if(this.title.startsWith('WebFrameScheduler.')){return'WebFrame'+this.id;}
4505return undefined;}}
4506tr.model.AsyncSlice.subTypes.register(BlinkSchedulerAsyncSlice,{categoryParts:['renderer.scheduler','disabled-by-default-renderer.scheduler',]});return{BlinkSchedulerAsyncSlice,};});'use strict';tr.exportTo('tr.model.helpers',function(){const MAIN_FRAMETIME_TYPE='main_frametime_type';const IMPL_FRAMETIME_TYPE='impl_frametime_type';const MAIN_RENDERING_STATS='BenchmarkInstrumentation::MainThreadRenderingStats';const IMPL_RENDERING_STATS='BenchmarkInstrumentation::ImplThreadRenderingStats';function getSlicesIntersectingRange(rangeOfInterest,slices){const slicesInFilterRange=[];for(let i=0;i<slices.length;i++){const slice=slices[i];if(rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end)){slicesInFilterRange.push(slice);}}
4507return slicesInFilterRange;}
4508function ChromeProcessHelper(modelHelper,process){this.modelHelper=modelHelper;this.process=process;this.telemetryInternalRanges_=undefined;}
4509ChromeProcessHelper.prototype={get pid(){return this.process.pid;},isTelemetryInternalEvent(slice){if(this.telemetryInternalRanges_===undefined){this.findTelemetryInternalRanges_();}
4510for(const range of this.telemetryInternalRanges_){if(range.containsExplicitRangeInclusive(slice.start,slice.end)){return true;}}
4511return false;},findTelemetryInternalRanges_(){this.telemetryInternalRanges_=[];let start=0;for(const thread of Object.values(this.process.threads)){for(const slice of thread.asyncSliceGroup.getDescendantEvents()){if(/^telemetry\.internal\..*\.start$/.test(slice.title)){start=slice.start;}else if(/^telemetry\.internal\..*\.end$/.test(slice.title)&&start!==undefined){this.telemetryInternalRanges_.push(tr.b.math.Range.fromExplicitRange(start,slice.end));start=undefined;}}}},getFrameEventsInRange(frametimeType,range){const titleToGet=(frametimeType===MAIN_FRAMETIME_TYPE?MAIN_RENDERING_STATS:IMPL_RENDERING_STATS);const frameEvents=[];for(const event of this.process.getDescendantEvents()){if(event.title===titleToGet){if(range.intersectsExplicitRangeInclusive(event.start,event.end)){frameEvents.push(event);}}}
4512frameEvents.sort(function(a,b){return a.start-b.start;});return frameEvents;}};function getFrametimeDataFromEvents(frameEvents){const frametimeData=[];for(let i=1;i<frameEvents.length;i++){const diff=frameEvents[i].start-frameEvents[i-1].start;frametimeData.push({'x':frameEvents[i].start,'frametime':diff});}
4513return frametimeData;}
4514return{ChromeProcessHelper,MAIN_FRAMETIME_TYPE,IMPL_FRAMETIME_TYPE,MAIN_RENDERING_STATS,IMPL_RENDERING_STATS,getSlicesIntersectingRange,getFrametimeDataFromEvents,};});'use strict';tr.exportTo('tr.model.helpers',function(){function ChromeBrowserHelper(modelHelper,process){tr.model.helpers.ChromeProcessHelper.call(this,modelHelper,process);this.mainThread_=process.findAtMostOneThreadNamed('CrBrowserMain');if(!process.name){process.name=ChromeBrowserHelper.PROCESS_NAME;}}
4515ChromeBrowserHelper.PROCESS_NAME='Browser';ChromeBrowserHelper.isBrowserProcess=function(process){return!!process.findAtMostOneThreadNamed('CrBrowserMain');};ChromeBrowserHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype,get browserName(){const hasInProcessRendererThread=this.process.findAllThreadsNamed('Chrome_InProcRendererThread').length>0;return hasInProcessRendererThread?'webview':'chrome';},get mainThread(){return this.mainThread_;},get rendererHelpers(){return this.modelHelper.rendererHelpers;},getLoadingEventsInRange(rangeOfInterest){return this.getAllAsyncSlicesMatching(function(slice){return slice.title.indexOf('WebContentsImpl Loading')===0&&rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end);});},getCommitProvisionalLoadEventsInRange(rangeOfInterest){return this.getAllAsyncSlicesMatching(function(slice){return slice.title==='RenderFrameImpl::didCommitProvisionalLoad'&&rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end);});},get hasLatencyEvents(){let hasLatency=false;for(const thread of this.modelHelper.model.getAllThreads()){for(const event of thread.getDescendantEvents()){if(!event.isTopLevel)continue;if(!(event instanceof tr.e.cc.InputLatencyAsyncSlice)){continue;}
4516hasLatency=true;}}
4517return hasLatency;},getLatencyEventsInRange(rangeOfInterest){return this.getAllAsyncSlicesMatching(function(slice){return(slice.title.indexOf('InputLatency')===0)&&rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end);});},getAllAsyncSlicesMatching(pred,opt_this){const events=[];this.iterAllThreads(function(thread){for(const slice of thread.getDescendantEvents()){if(pred.call(opt_this,slice)){events.push(slice);}}});return events;},iterAllThreads(func,opt_this){for(const thread of Object.values(this.process.threads)){func.call(opt_this,thread);}
4518for(const rendererHelper of Object.values(this.rendererHelpers)){const rendererProcess=rendererHelper.process;for(const thread of Object.values(rendererProcess.threads)){func.call(opt_this,thread);}}}};return{ChromeBrowserHelper,};});'use strict';tr.exportTo('tr.model.helpers',function(){function ChromeGpuHelper(modelHelper,process){tr.model.helpers.ChromeProcessHelper.call(this,modelHelper,process);if(!process.name){process.name=ChromeGpuHelper.PROCESS_NAME;}}
4519ChromeGpuHelper.PROCESS_NAME='GPU Process';ChromeGpuHelper.isGpuProcess=function(process){if(process.findAtMostOneThreadNamed('CrBrowserMain')||process.findAtMostOneThreadNamed('CrRendererMain')){return false;}
4520return process.findAllThreadsNamed('CrGpuMain').length>0;};ChromeGpuHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype};return{ChromeGpuHelper,};});'use strict';tr.exportTo('tr.model.helpers',function(){const NET_CATEGORIES=new Set(['net','netlog','disabled-by-default-netlog','disabled-by-default-network']);class ChromeThreadHelper{constructor(thread){this.thread=thread;}
4521getNetworkEvents(){const networkEvents=[];for(const slice of this.thread.asyncSliceGroup.slices){const categories=tr.b.getCategoryParts(slice.category);const isNetEvent=category=>NET_CATEGORIES.has(category);if(categories.filter(isNetEvent).length===0)continue;networkEvents.push(slice);}
4522return networkEvents;}}
4523return{ChromeThreadHelper,};});'use strict';tr.exportTo('tr.model.helpers',function(){const ChromeThreadHelper=tr.model.helpers.ChromeThreadHelper;function ChromeRendererHelper(modelHelper,process){tr.model.helpers.ChromeProcessHelper.call(this,modelHelper,process);this.mainThread_=process.findAtMostOneThreadNamed('CrRendererMain')||process.findAtMostOneThreadNamed('Chrome_InProcRendererThread');this.compositorThread_=process.findAtMostOneThreadNamed('Compositor');this.rasterWorkerThreads_=process.findAllThreadsMatching(function(t){if(t.name===undefined)return false;if(t.name.indexOf('CompositorTileWorker')===0)return true;if(t.name.indexOf('CompositorRasterWorker')===0)return true;return false;});if(!process.name){process.name=ChromeRendererHelper.PROCESS_NAME;}}
4524ChromeRendererHelper.PROCESS_NAME='Renderer';ChromeRendererHelper.isRenderProcess=function(process){if(process.findAtMostOneThreadNamed('CrRendererMain'))return true;if(process.findAtMostOneThreadNamed('Compositor'))return true;return false;};ChromeRendererHelper.isTracingProcess=function(process){return process.labels!==undefined&&process.labels.length===1&&process.labels[0]==='chrome://tracing';};ChromeRendererHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype,get mainThread(){return this.mainThread_;},get compositorThread(){return this.compositorThread_;},get rasterWorkerThreads(){return this.rasterWorkerThreads_;},get isChromeTracingUI(){return ChromeRendererHelper.isTracingProcess(this.process);},};return{ChromeRendererHelper,};});'use strict';tr.exportTo('tr.model.helpers',function(){function findChromeBrowserProcesses(model){return model.getAllProcesses(tr.model.helpers.ChromeBrowserHelper.isBrowserProcess);}
4525function findChromeRenderProcesses(model){return model.getAllProcesses(tr.model.helpers.ChromeRendererHelper.isRenderProcess);}
4526function findChromeGpuProcess(model){const gpuProcesses=model.getAllProcesses(tr.model.helpers.ChromeGpuHelper.isGpuProcess);if(gpuProcesses.length!==1)return undefined;return gpuProcesses[0];}
4527function ChromeModelHelper(model){this.model_=model;const browserProcesses=findChromeBrowserProcesses(model);this.browserHelpers_=browserProcesses.map(p=>new tr.model.helpers.ChromeBrowserHelper(this,p));const gpuProcess=findChromeGpuProcess(model);if(gpuProcess){this.gpuHelper_=new tr.model.helpers.ChromeGpuHelper(this,gpuProcess);}else{this.gpuHelper_=undefined;}
4528const rendererProcesses_=findChromeRenderProcesses(model);this.rendererHelpers_={};rendererProcesses_.forEach(function(renderProcess){const rendererHelper=new tr.model.helpers.ChromeRendererHelper(this,renderProcess);this.rendererHelpers_[rendererHelper.pid]=rendererHelper;},this);this.chromeBounds_=undefined;}
4529ChromeModelHelper.guid=tr.b.GUID.allocateSimple();ChromeModelHelper.supportsModel=function(model){if(findChromeBrowserProcesses(model).length)return true;if(findChromeRenderProcesses(model).length)return true;return false;};ChromeModelHelper.prototype={get pid(){throw new Error('woah');},get process(){throw new Error('woah');},get model(){return this.model_;},get browserProcess(){if(this.browserHelper===undefined)return undefined;return this.browserHelper.process;},get browserHelper(){return this.browserHelpers_[0];},get browserHelpers(){return this.browserHelpers_;},get gpuHelper(){return this.gpuHelper_;},get rendererHelpers(){return this.rendererHelpers_;},get rendererWithLargestPid(){let largestPid=-1;for(const pid in this.rendererHelpers){const rendererHelper=this.rendererHelpers[pid];if(rendererHelper.isChromeTracingUI)continue;if(pid>largestPid)largestPid=pid;}
4530if(largestPid===-1)return undefined;return this.rendererHelpers[largestPid];},get chromeBounds(){if(!this.chromeBounds_){this.chromeBounds_=new tr.b.math.Range();for(const browserHelper of Object.values(this.browserHelpers)){this.chromeBounds_.addRange(browserHelper.process.bounds);}
4531for(const rendererHelper of Object.values(this.rendererHelpers)){this.chromeBounds_.addRange(rendererHelper.process.bounds);}
4532if(this.gpuHelper){this.chromeBounds_.addRange(this.gpuHelper.process.bounds);}}
4533if(this.chromeBounds_.isEmpty){return undefined;}
4534return this.chromeBounds_;}};return{ChromeModelHelper,};});'use strict';tr.exportTo('tr.e.cc',function(){const AsyncSlice=tr.model.AsyncSlice;const EventSet=tr.model.EventSet;const UI_COMP_NAME='INPUT_EVENT_LATENCY_UI_COMPONENT';const ORIGINAL_COMP_NAME='INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT';const BEGIN_COMP_NAME='INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT';const END_COMP_NAME='INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT';const MAIN_RENDERER_THREAD_NAME='CrRendererMain';const COMPOSITOR_THREAD_NAME='Compositor';const POSTTASK_FLOW_EVENT='disabled-by-default-toplevel.flow';const IPC_FLOW_EVENT='disabled-by-default-ipc.flow';const INPUT_EVENT_TYPE_NAMES={CHAR:'Char',CLICK:'GestureClick',CONTEXT_MENU:'ContextMenu',FLING_CANCEL:'GestureFlingCancel',FLING_START:'GestureFlingStart',KEY_DOWN:'KeyDown',KEY_DOWN_RAW:'RawKeyDown',KEY_UP:'KeyUp',LATENCY_SCROLL_UPDATE:'ScrollUpdate',MOUSE_DOWN:'MouseDown',MOUSE_ENTER:'MouseEnter',MOUSE_LEAVE:'MouseLeave',MOUSE_MOVE:'MouseMove',MOUSE_UP:'MouseUp',MOUSE_WHEEL:'MouseWheel',PINCH_BEGIN:'GesturePinchBegin',PINCH_END:'GesturePinchEnd',PINCH_UPDATE:'GesturePinchUpdate',SCROLL_BEGIN:'GestureScrollBegin',SCROLL_END:'GestureScrollEnd',SCROLL_UPDATE:'GestureScrollUpdate',SCROLL_UPDATE_RENDERER:'ScrollUpdate',SHOW_PRESS:'GestureShowPress',TAP:'GestureTap',TAP_CANCEL:'GestureTapCancel',TAP_DOWN:'GestureTapDown',TOUCH_CANCEL:'TouchCancel',TOUCH_END:'TouchEnd',TOUCH_MOVE:'TouchMove',TOUCH_START:'TouchStart',UNKNOWN:'UNKNOWN'};function InputLatencyAsyncSlice(){AsyncSlice.apply(this,arguments);this.associatedEvents_=new EventSet();this.typeName_=undefined;if(!this.isLegacyEvent){this.determineModernTypeName_();}}
4535InputLatencyAsyncSlice.prototype={__proto__:AsyncSlice.prototype,get isLegacyEvent(){return this.title==='InputLatency';},get typeName(){if(!this.typeName_){this.determineLegacyTypeName_();}
4536return this.typeName_;},checkTypeName_(){if(!this.typeName_){throw new Error('Unable to determine typeName');}
4537let found=false;for(const typeName in INPUT_EVENT_TYPE_NAMES){if(this.typeName===INPUT_EVENT_TYPE_NAMES[typeName]){found=true;break;}}
4538if(!found){this.typeName_=INPUT_EVENT_TYPE_NAMES.UNKNOWN;}},determineModernTypeName_(){const lastColonIndex=this.title.lastIndexOf(':');if(lastColonIndex<0)return;const characterAfterLastColonIndex=lastColonIndex+1;this.typeName_=this.title.slice(characterAfterLastColonIndex);this.checkTypeName_();},determineLegacyTypeName_(){for(const subSlice of this.enumerateAllDescendents()){const subSliceIsAInputLatencyAsyncSlice=(subSlice instanceof InputLatencyAsyncSlice);if(!subSliceIsAInputLatencyAsyncSlice)continue;if(!subSlice.typeName)continue;if(this.typeName_&&subSlice.typeName_){const subSliceHasDifferentTypeName=(this.typeName_!==subSlice.typeName_);if(subSliceHasDifferentTypeName){throw new Error('InputLatencyAsyncSlice.determineLegacyTypeName_() '+' found multiple typeNames');}}
4539this.typeName_=subSlice.typeName_;}
4540if(!this.typeName_){throw new Error('InputLatencyAsyncSlice.determineLegacyTypeName_() failed');}
4541this.checkTypeName_();},getRendererHelper(sourceSlices){const traceModel=this.startThread.parent.model;const modelHelper=traceModel.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(!modelHelper)return undefined;let mainThread=undefined;let compositorThread=undefined;for(const i in sourceSlices){if(sourceSlices[i].parentContainer.name===MAIN_RENDERER_THREAD_NAME){mainThread=sourceSlices[i].parentContainer;}else if(sourceSlices[i].parentContainer.name===COMPOSITOR_THREAD_NAME){compositorThread=sourceSlices[i].parentContainer;}
4542if(mainThread&&compositorThread)break;}
4543const rendererHelpers=modelHelper.rendererHelpers;const pids=Object.keys(rendererHelpers);for(let i=0;i<pids.length;i++){const pid=pids[i];const rendererHelper=rendererHelpers[pid];if(rendererHelper.mainThread===mainThread||rendererHelper.compositorThread===compositorThread){return rendererHelper;}}
4544return undefined;},addEntireSliceHierarchy(slice){this.associatedEvents_.push(slice);slice.iterateAllSubsequentSlices(function(subsequentSlice){this.associatedEvents_.push(subsequentSlice);},this);},addDirectlyAssociatedEvents(flowEvents){const slices=[];flowEvents.forEach(function(flowEvent){this.associatedEvents_.push(flowEvent);const newSource=flowEvent.startSlice.mostTopLevelSlice;if(slices.indexOf(newSource)===-1){slices.push(newSource);}},this);const lastFlowEvent=flowEvents[flowEvents.length-1];const lastSource=lastFlowEvent.endSlice.mostTopLevelSlice;if(slices.indexOf(lastSource)===-1){slices.push(lastSource);}
4545return slices;},addScrollUpdateEvents(rendererHelper){if(!rendererHelper||!rendererHelper.compositorThread){return;}
4546const compositorThread=rendererHelper.compositorThread;const gestureScrollUpdateStart=this.start;const gestureScrollUpdateEnd=this.end;const allCompositorAsyncSlices=compositorThread.asyncSliceGroup.slices;for(const i in allCompositorAsyncSlices){const slice=allCompositorAsyncSlices[i];if(slice.title!=='Latency::ScrollUpdate')continue;const parentId=slice.args.data.INPUT_EVENT_LATENCY_FORWARD_SCROLL_UPDATE_TO_MAIN_COMPONENT.sequence_number;if(parentId===undefined){if(slice.start<gestureScrollUpdateStart||slice.start>=gestureScrollUpdateEnd){continue;}}else{if(parseInt(parentId)!==parseInt(this.id)){continue;}}
4547slice.associatedEvents.forEach(function(event){this.associatedEvents_.push(event);},this);break;}},belongToOtherInputs(slice,flowEvents){let fromOtherInputs=false;slice.iterateEntireHierarchy(function(subsequentSlice){if(fromOtherInputs)return;subsequentSlice.inFlowEvents.forEach(function(inflow){if(fromOtherInputs)return;if(inflow.category.indexOf('input')>-1){if(flowEvents.indexOf(inflow)===-1){fromOtherInputs=true;}}},this);},this);return fromOtherInputs;},triggerOtherInputs(event,flowEvents){if(event.outFlowEvents===undefined||event.outFlowEvents.length===0){return false;}
4548const flow=event.outFlowEvents[0];if(flow.category!==POSTTASK_FLOW_EVENT||!flow.endSlice){return false;}
4549const endSlice=flow.endSlice;if(this.belongToOtherInputs(endSlice.mostTopLevelSlice,flowEvents)){return true;}
4550return false;},followSubsequentSlices(event,queue,visited,flowEvents){let stopFollowing=false;let inputAck=false;event.iterateAllSubsequentSlices(function(slice){if(stopFollowing)return;if(slice.title==='TaskQueueManager::RunTask')return;if(slice.title==='ThreadProxy::ScheduledActionSendBeginMainFrame'){return;}
4551if(slice.title==='Scheduler::ScheduleBeginImplFrameDeadline'){if(this.triggerOtherInputs(slice,flowEvents))return;}
4552if(slice.title==='CompositorImpl::PostComposite'){if(this.triggerOtherInputs(slice,flowEvents))return;}
4553if(slice.title==='InputRouterImpl::ProcessInputEventAck'){inputAck=true;}
4554if(inputAck&&slice.title==='InputRouterImpl::FilterAndSendWebInputEvent'){stopFollowing=true;}
4555this.followCurrentSlice(slice,queue,visited);},this);},followCurrentSlice(event,queue,visited){event.outFlowEvents.forEach(function(outflow){if((outflow.category===POSTTASK_FLOW_EVENT||outflow.category===IPC_FLOW_EVENT)&&outflow.endSlice){this.associatedEvents_.push(outflow);const nextEvent=outflow.endSlice.mostTopLevelSlice;if(!visited.contains(nextEvent)){visited.push(nextEvent);queue.push(nextEvent);}}},this);},backtraceFromDraw(beginImplFrame,visited){const pendingEventQueue=[];pendingEventQueue.push(beginImplFrame.mostTopLevelSlice);while(pendingEventQueue.length!==0){const event=pendingEventQueue.pop();this.addEntireSliceHierarchy(event);event.inFlowEvents.forEach(function(inflow){if(inflow.category===POSTTASK_FLOW_EVENT&&inflow.startSlice){const nextEvent=inflow.startSlice.mostTopLevelSlice;if(!visited.contains(nextEvent)){visited.push(nextEvent);pendingEventQueue.push(nextEvent);}}},this);}},sortRasterizerSlices(rasterWorkerThreads,sortedRasterizerSlices){rasterWorkerThreads.forEach(function(rasterizer){Array.prototype.push.apply(sortedRasterizerSlices,rasterizer.sliceGroup.slices);},this);sortedRasterizerSlices.sort(function(a,b){if(a.start!==b.start){return a.start-b.start;}
4556return a.guid-b.guid;});},addRasterizationEvents(prepareTiles,rendererHelper,visited,flowEvents,sortedRasterizerSlices){if(!prepareTiles.args.prepare_tiles_id)return;if(!rendererHelper||!rendererHelper.rasterWorkerThreads){return;}
4557const rasterWorkerThreads=rendererHelper.rasterWorkerThreads;const prepareTileId=prepareTiles.args.prepare_tiles_id;const pendingEventQueue=[];if(sortedRasterizerSlices.length===0){this.sortRasterizerSlices(rasterWorkerThreads,sortedRasterizerSlices);}
4558let numFinishedTasks=0;const RASTER_TASK_TITLE='RasterizerTaskImpl::RunOnWorkerThread';const IMAGEDECODE_TASK_TITLE='ImageDecodeTaskImpl::RunOnWorkerThread';const FINISHED_TASK_TITLE='TaskSetFinishedTaskImpl::RunOnWorkerThread';for(let i=0;i<sortedRasterizerSlices.length;i++){const task=sortedRasterizerSlices[i];if(task.title===RASTER_TASK_TITLE||task.title===IMAGEDECODE_TASK_TITLE){if(task.args.source_prepare_tiles_id===prepareTileId){this.addEntireSliceHierarchy(task.mostTopLevelSlice);}}else if(task.title===FINISHED_TASK_TITLE){if(task.start>prepareTiles.start){pendingEventQueue.push(task.mostTopLevelSlice);if(++numFinishedTasks===3)break;}}}
4559while(pendingEventQueue.length!==0){const event=pendingEventQueue.pop();this.addEntireSliceHierarchy(event);this.followSubsequentSlices(event,pendingEventQueue,visited,flowEvents);}},addOtherCausallyRelatedEvents(rendererHelper,sourceSlices,flowEvents,sortedRasterizerSlices){const pendingEventQueue=[];const visitedEvents=new EventSet();let beginImplFrame=undefined;let prepareTiles=undefined;sortedRasterizerSlices=[];sourceSlices.forEach(function(sourceSlice){if(!visitedEvents.contains(sourceSlice)){visitedEvents.push(sourceSlice);pendingEventQueue.push(sourceSlice);}},this);while(pendingEventQueue.length!==0){const event=pendingEventQueue.pop();this.addEntireSliceHierarchy(event);this.followCurrentSlice(event,pendingEventQueue,visitedEvents);this.followSubsequentSlices(event,pendingEventQueue,visitedEvents,flowEvents);const COMPOSITOR_PREPARE_TILES='TileManager::PrepareTiles';prepareTiles=event.findDescendentSlice(COMPOSITOR_PREPARE_TILES);if(prepareTiles){this.addRasterizationEvents(prepareTiles,rendererHelper,visitedEvents,flowEvents,sortedRasterizerSlices);}
4560const COMPOSITOR_ON_BIFD='Scheduler::OnBeginImplFrameDeadline';beginImplFrame=event.findDescendentSlice(COMPOSITOR_ON_BIFD);if(beginImplFrame){this.backtraceFromDraw(beginImplFrame,visitedEvents);}}
4561const INPUT_GSU='InputLatency::GestureScrollUpdate';if(this.title===INPUT_GSU){this.addScrollUpdateEvents(rendererHelper);}},get associatedEvents(){if(this.associatedEvents_.length!==0){return this.associatedEvents_;}
4562const modelIndices=this.startThread.parent.model.modelIndices;const flowEvents=modelIndices.getFlowEventsWithId(this.id);if(flowEvents.length===0){return this.associatedEvents_;}
4563const sourceSlices=this.addDirectlyAssociatedEvents(flowEvents);const rendererHelper=this.getRendererHelper(sourceSlices);this.addOtherCausallyRelatedEvents(rendererHelper,sourceSlices,flowEvents);return this.associatedEvents_;},get inputLatency(){if(!('data'in this.args))return undefined;const data=this.args.data;if(!(END_COMP_NAME in data))return undefined;let latency=0;const endTime=data[END_COMP_NAME].time;if(ORIGINAL_COMP_NAME in data){latency=endTime-data[ORIGINAL_COMP_NAME].time;}else if(UI_COMP_NAME in data){latency=endTime-data[UI_COMP_NAME].time;}else if(BEGIN_COMP_NAME in data){latency=endTime-data[BEGIN_COMP_NAME].time;}else{throw new Error('No valid begin latency component');}
4564return latency;}};const eventTypeNames=['Char','ContextMenu','GestureClick','GestureFlingCancel','GestureFlingStart','GestureScrollBegin','GestureScrollEnd','GestureScrollUpdate','GestureShowPress','GestureTap','GestureTapCancel','GestureTapDown','GesturePinchBegin','GesturePinchEnd','GesturePinchUpdate','KeyDown','KeyUp','MouseDown','MouseEnter','MouseLeave','MouseMove','MouseUp','MouseWheel','RawKeyDown','ScrollUpdate','TouchCancel','TouchEnd','TouchMove','TouchStart'];const allTypeNames=['InputLatency'];eventTypeNames.forEach(function(eventTypeName){allTypeNames.push('InputLatency:'+eventTypeName);allTypeNames.push('InputLatency::'+eventTypeName);});AsyncSlice.subTypes.register(InputLatencyAsyncSlice,{typeNames:allTypeNames,categoryParts:['latencyInfo']});return{InputLatencyAsyncSlice,INPUT_EVENT_TYPE_NAMES,};});'use strict';tr.exportTo('tr.b',function(){function SinebowColorGenerator(opt_a,opt_brightness){this.a_=(opt_a===undefined)?1:opt_a;this.brightness_=(opt_brightness===undefined)?1:opt_brightness;this.colorIndex_=0;this.keyToColor={};}
4565SinebowColorGenerator.prototype={colorForKey(key){if(!this.keyToColor[key]){this.keyToColor[key]=this.nextColor();}
4566return this.keyToColor[key];},nextColor(){const components=SinebowColorGenerator.nthColor(this.colorIndex_++);return tr.b.Color.fromString(SinebowColorGenerator.calculateColor(components[0],components[1],components[2],this.a_,this.brightness_));}};SinebowColorGenerator.PHI=(1+Math.sqrt(5))/2;SinebowColorGenerator.sinebow_=function(h){h+=0.5;h=-h;let r=Math.sin(Math.PI*h);let g=Math.sin(Math.PI*(h+1/3));let b=Math.sin(Math.PI*(h+2/3));r*=r;g*=g;b*=b;const y=2*(0.2989*r+0.5870*g+0.1140*b);r/=y;g/=y;b/=y;return[256*r,256*g,256*b];};SinebowColorGenerator.nthColor=function(n){return SinebowColorGenerator.sinebow_(n*this.PHI);};SinebowColorGenerator.calculateColor=function(r,g,b,a,brightness){if(brightness<=1){r*=brightness;g*=brightness;b*=brightness;}else{r=tr.b.math.lerp(tr.b.math.normalize(brightness,1,2),r,255);g=tr.b.math.lerp(tr.b.math.normalize(brightness,1,2),g,255);b=tr.b.math.lerp(tr.b.math.normalize(brightness,1,2),b,255);}
4567r=Math.round(r);g=Math.round(g);b=Math.round(b);return'rgba('+r+','+g+','+b+', '+a+')';};return{SinebowColorGenerator,};});'use strict';tr.exportTo('tr.e.chrome',function(){const SAME_AS_PARENT='same-as-parent';const TITLES_FOR_USER_FRIENDLY_CATEGORY={composite:['CompositingInputsUpdater::update','ThreadProxy::SetNeedsUpdateLayers','LayerTreeHost::UpdateLayers::CalcDrawProps','UpdateLayerTree',],gc:['minorGC','majorGC','MajorGC','MinorGC','V8.GCScavenger','V8.GCIncrementalMarking','V8.GCIdleNotification','V8.GCContext','V8.GCCompactor','V8GCController::traceDOMWrappers',],iframe_creation:['WebLocalFrameImpl::createChildframe',],imageDecode:['Decode Image','ImageFrameGenerator::decode','ImageFrameGenerator::decodeAndScale','ImageResourceContent::updateImage',],input:['HitTest','ScrollableArea::scrollPositionChanged','EventHandler::handleMouseMoveEvent',],layout:['DisplayItemList::Finalize','IntersectionObserverController::computeTrackedIntersectionObservations','LocalFrameView::invalidateTree','LocalFrameView::layout','LocalFrameView::performLayout','LocalFrameView::performPostLayoutTasks','LocalFrameView::performPreLayoutTasks','FrameView::invalidateTree','FrameView::layout','FrameView::performLayout','FrameView::performPostLayoutTasks','FrameView::performPreLayoutTasks','Layer::updateLayerPositionsAfterLayout','LayerTreeHostInProcess::UpdateLayers::BuildPropertyTrees','Layout','LayoutView::hitTest','PaintLayer::updateLayerPositionsAfterLayout','ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities','WebViewImpl::layout',],parseHTML:['BackgroundHTMLParser::pumpTokenizer','BackgroundHTMLParser::sendTokensToMainThread','HTMLDocumentParser::didReceiveParsedChunkFromBackgroundParser','HTMLDocumentParser::documentElementAvailable','HTMLDocumentParser::notifyPendingTokenizedChunks','HTMLDocumentParser::processParsedChunkFromBackgroundParser','HTMLDocumentParser::processTokenizedChunkFromBackgroundParser','ParseHTML',],raster:['DisplayListRasterSource::PerformSolidColorAnalysis','Picture::Raster','RasterBufferImpl::Playback','RasterTask','RasterizerTaskImpl::RunOnWorkerThread','SkCanvas::drawImageRect()','SkCanvas::drawPicture()','SkCanvas::drawTextBlob()','TileTaskWorkerPool::PlaybackToMemory',],record:['Canvas2DLayerBridge::flushRecordingOnly','CompositingRequirementsUpdater::updateRecursive','ContentLayerDelegate::paintContents','DeprecatedPaintLayerCompositor::updateIfNeededRecursive','DeprecatedPaintLayerCompositor::updateLayerPositionsAfterLayout','LocalFrameView::paintTree','LocalFrameView::prePaint','Paint','PaintController::commitNewDisplayItems','PaintLayerCompositor::updateIfNeededRecursive','Picture::Record','PictureLayer::Update','RenderLayer::updateLayerPositionsAfterLayout',],style:['CSSParserImpl::parseStyleSheet.parse','CSSParserImpl::parseStyleSheet.tokenize','Document::rebuildLayoutTree','Document::recalcStyle','Document::updateActiveStyle','Document::updateStyle','Document::updateStyleInvalidationIfNeeded','LocalFrameView::updateStyleAndLayoutIfNeededRecursive','ParseAuthorStyleSheet','RuleSet::addRulesFromSheet','StyleElement::processStyleSheet','StyleEngine::createResolver','StyleEngine::updateActiveStyleSheets','StyleSheetContents::parseAuthorStyleSheet','UpdateLayoutTree',],script_parse_and_compile:['V8.CompileFullCode','V8.NewContext','V8.Parse','V8.ParseLazy','V8.RecompileSynchronous','V8.ScriptCompiler','v8.compile','v8.parseOnBackground',],script_execute:['EvaluateScript','FunctionCall','HTMLParserScriptRunner ExecuteScript','V8.Execute','V8.RunMicrotasks','V8.Task','WindowProxy::initialize','v8.callFunction','v8.run',],resource_loading:['RenderFrameImpl::didFinishDocumentLoad','RenderFrameImpl::didFinishLoad','Resource::appendData','ResourceDispatcher::OnReceivedData','ResourceDispatcher::OnReceivedResponse','ResourceDispatcher::OnRequestComplete','ResourceFetcher::requestResource','WebURLLoaderImpl::Context::Cancel','WebURLLoaderImpl::Context::OnCompletedRequest','WebURLLoaderImpl::Context::OnReceivedData','WebURLLoaderImpl::Context::OnReceivedRedirect','WebURLLoaderImpl::Context::OnReceivedResponse','WebURLLoaderImpl::Context::Start','WebURLLoaderImpl::loadAsynchronously','WebURLLoaderImpl::loadSynchronously','content::mojom::URLLoaderClient',],renderer_misc:['DecodeFont','ThreadState::completeSweep',],v8_runtime:[],[SAME_AS_PARENT]:['SyncChannel::Send',]};const COLOR_FOR_USER_FRIENDLY_CATEGORY=new tr.b.SinebowColorGenerator();const USER_FRIENDLY_CATEGORY_FOR_TITLE=new Map();for(const category in TITLES_FOR_USER_FRIENDLY_CATEGORY){TITLES_FOR_USER_FRIENDLY_CATEGORY[category].forEach(function(title){USER_FRIENDLY_CATEGORY_FOR_TITLE.set(title,category);});}
4568const USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY={netlog:'net',overhead:'overhead',startup:'startup',gpu:'gpu',};function ChromeUserFriendlyCategoryDriver(){}
4569ChromeUserFriendlyCategoryDriver.fromEvent=function(event){let userFriendlyCategory=USER_FRIENDLY_CATEGORY_FOR_TITLE.get(event.title);if(userFriendlyCategory){if(userFriendlyCategory===SAME_AS_PARENT){if(event.parentSlice){return ChromeUserFriendlyCategoryDriver.fromEvent(event.parentSlice);}}else{return userFriendlyCategory;}}
4570const eventCategoryParts=tr.b.getCategoryParts(event.category);for(let i=0;i<eventCategoryParts.length;++i){const eventCategory=eventCategoryParts[i];userFriendlyCategory=USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY[eventCategory];if(userFriendlyCategory){return userFriendlyCategory;}}
4571return'other';};ChromeUserFriendlyCategoryDriver.getColor=function(ufc){return COLOR_FOR_USER_FRIENDLY_CATEGORY.colorForKey(ufc);};ChromeUserFriendlyCategoryDriver.ALL_TITLES=['other'];for(const category in TITLES_FOR_USER_FRIENDLY_CATEGORY){if(category===SAME_AS_PARENT)continue;ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);}
4572for(const category of Object.values(USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY)){ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);}
4573ChromeUserFriendlyCategoryDriver.ALL_TITLES.sort();for(const category of ChromeUserFriendlyCategoryDriver.ALL_TITLES){ChromeUserFriendlyCategoryDriver.getColor(category);}
4574return{ChromeUserFriendlyCategoryDriver,};});'use strict';tr.exportTo('tr.model',function(){return{BROWSER_PROCESS_PID_REF:-1,OBJECT_DEFAULT_SCOPE:'ptr',LOCAL_ID_PHASES:new Set(['N','D','O','(',')'])};});'use strict';tr.exportTo('tr.e.audits',function(){const Auditor=tr.c.Auditor;function ChromeAuditor(model){Auditor.call(this,model);const modelHelper=this.model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(modelHelper&&modelHelper.browserHelper){this.modelHelper=modelHelper;}else{this.modelHelper=undefined;}}
4575ChromeAuditor.prototype={__proto__:Auditor.prototype,runAnnotate(){if(!this.modelHelper)return;for(const pid in this.modelHelper.rendererHelpers){const rendererHelper=this.modelHelper.rendererHelpers[pid];if(rendererHelper.isChromeTracingUI){rendererHelper.process.important=false;}}},installUserFriendlyCategoryDriverIfNeeded(){this.model.addUserFriendlyCategoryDriver(tr.e.chrome.ChromeUserFriendlyCategoryDriver);},runAudit(){if(!this.modelHelper)return;this.model.replacePIDRefsInPatchups(tr.model.BROWSER_PROCESS_PID_REF,this.modelHelper.browserProcess.pid);this.model.applyObjectRefPatchups();}};Auditor.register(ChromeAuditor);return{ChromeAuditor,};});'use strict';tr.exportTo('tr.e.chrome',function(){const KNOWN_PROPERTIES={absX:1,absY:1,address:1,anonymous:1,childNeeds:1,children:1,classNames:1,col:1,colSpan:1,float:1,height:1,htmlId:1,name:1,posChildNeeds:1,positioned:1,positionedMovement:1,relX:1,relY:1,relativePositioned:1,row:1,rowSpan:1,selfNeeds:1,stickyPositioned:1,tag:1,width:1};function LayoutObject(snapshot,args){this.snapshot_=snapshot;this.id_=args.address;this.name_=args.name;this.childLayoutObjects_=[];this.otherProperties_={};this.tag_=args.tag;this.relativeRect_=tr.b.math.Rect.fromXYWH(args.relX,args.relY,args.width,args.height);this.absoluteRect_=tr.b.math.Rect.fromXYWH(args.absX,args.absY,args.width,args.height);this.isFloat_=args.float;this.isStickyPositioned_=args.stickyPositioned;this.isPositioned_=args.positioned;this.isRelativePositioned_=args.relativePositioned;this.isAnonymous_=args.anonymous;this.htmlId_=args.htmlId;this.classNames_=args.classNames;this.needsLayoutReasons_=[];if(args.selfNeeds){this.needsLayoutReasons_.push('self');}
4576if(args.childNeeds){this.needsLayoutReasons_.push('child');}
4577if(args.posChildNeeds){this.needsLayoutReasons_.push('positionedChild');}
4578if(args.positionedMovement){this.needsLayoutReasons_.push('positionedMovement');}
4579this.tableRow_=args.row;this.tableCol_=args.col;this.tableRowSpan_=args.rowSpan;this.tableColSpan_=args.colSpan;if(args.children){args.children.forEach(function(child){this.childLayoutObjects_.push(new LayoutObject(snapshot,child));}.bind(this));}
4580for(const property in args){if(!KNOWN_PROPERTIES[property]){this.otherProperties_[property]=args[property];}}}
4581LayoutObject.prototype={get snapshot(){return this.snapshot_;},get id(){return this.id_;},get name(){return this.name_;},get tag(){return this.tag_;},get relativeRect(){return this.relativeRect_;},get absoluteRect(){return this.absoluteRect_;},get isPositioned(){return this.isPositioned_;},get isFloat(){return this.isFloat_;},get isStickyPositioned(){return this.isStickyPositioned_;},get isRelativePositioned(){return this.isRelativePositioned_;},get isAnonymous(){return this.isAnonymous_;},get tableRow(){return this.tableRow_;},get tableCol(){return this.tableCol_;},get tableRowSpan(){return this.tableRowSpan_;},get tableColSpan(){return this.tableColSpan_;},get htmlId(){return this.htmlId_;},get classNames(){return this.classNames_;},get needsLayoutReasons(){return this.needsLayoutReasons_;},get hasChildLayoutObjects(){return this.childLayoutObjects_.length>0;},get childLayoutObjects(){return this.childLayoutObjects_;},traverseTree(cb,opt_this){cb.call(opt_this,this);if(!this.hasChildLayoutObjects)return;this.childLayoutObjects.forEach(function(child){child.traverseTree(cb,opt_this);});},get otherPropertyNames(){const names=[];for(const name in this.otherProperties_){names.push(name);}
4582return names;},getProperty(name){return this.otherProperties_[name];},get previousSnapshotLayoutObject(){if(!this.snapshot.previousSnapshot)return undefined;return this.snapshot.previousSnapshot.getLayoutObjectById(this.id);},get nextSnapshotLayoutObject(){if(!this.snapshot.nextSnapshot)return undefined;return this.snapshot.nextSnapshot.getLayoutObjectById(this.id);}};return{LayoutObject,};});'use strict';tr.exportTo('tr.e.chrome',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;const ObjectInstance=tr.model.ObjectInstance;function LayoutTreeInstance(){ObjectInstance.apply(this,arguments);}
4583LayoutTreeInstance.prototype={__proto__:ObjectInstance.prototype,};ObjectInstance.subTypes.register(LayoutTreeInstance,{typeName:'LayoutTree'});function LayoutTreeSnapshot(){ObjectSnapshot.apply(this,arguments);this.rootLayoutObject=new tr.e.chrome.LayoutObject(this,this.args);}
4584LayoutTreeSnapshot.prototype={__proto__:ObjectSnapshot.prototype,};ObjectSnapshot.subTypes.register(LayoutTreeSnapshot,{typeName:'LayoutTree'});return{LayoutTreeInstance,LayoutTreeSnapshot,};});'use strict';tr.exportTo('tr.model',function(){function EventContainer(){this.guid_=tr.b.GUID.allocateSimple();this.important=true;this.bounds_=new tr.b.math.Range();}
4585EventContainer.prototype={get guid(){return this.guid_;},get stableId(){throw new Error('Not implemented');},get bounds(){return this.bounds_;},updateBounds(){throw new Error('Not implemented');},shiftTimestampsForward(amount){throw new Error('Not implemented');},*childEvents(){},*getDescendantEvents(){yield*this.childEvents();for(const container of this.childEventContainers()){yield*container.getDescendantEvents();}},*childEventContainers(){},*getDescendantEventContainers(){yield this;for(const container of this.childEventContainers()){yield*container.getDescendantEventContainers();}},*findTopmostSlicesInThisContainer(eventPredicate,opt_this){},*findTopmostSlices(eventPredicate){for(const ec of this.getDescendantEventContainers()){yield*ec.findTopmostSlicesInThisContainer(eventPredicate);}},*findTopmostSlicesNamed(name){yield*this.findTopmostSlices(e=>e.title===name);}};return{EventContainer,};});'use strict';tr.exportTo('tr.model',function(){const Event=tr.model.Event;const EventRegistry=tr.model.EventRegistry;class ResourceUsageSample extends Event{constructor(series,start,usage){super();this.series_=series;this.start_=start;this.usage_=usage;}
4586get series(){return this.series_;}
4587get start(){return this.start_;}
4588set start(value){this.start_=value;}
4589get usage(){return this.usage_;}
4590set usage(value){this.usage_=value;}
4591addBoundsToRange(range){range.addValue(this.start);}}
4592EventRegistry.register(ResourceUsageSample,{name:'resourceUsageSample',pluralName:'resourceUsageSamples'});return{ResourceUsageSample,};});'use strict';tr.exportTo('tr.model',function(){const ResourceUsageSample=tr.model.ResourceUsageSample;class ResourceUsageSeries extends tr.model.EventContainer{constructor(device){super();this.device_=device;this.samples_=[];}
4593get device(){return this.device_;}
4594get samples(){return this.samples_;}
4595get stableId(){return this.device_.stableId+'.ResourceUsageSeries';}
4596addUsageSample(ts,val){const sample=new ResourceUsageSample(this,ts,val);this.samples_.push(sample);return sample;}
4597computeResourceTimeConsumedInMs(start,end){const measurementRange=tr.b.math.Range.fromExplicitRange(start,end);let resourceTimeInMs=0;let startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start)-1;const endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);if(startIndex<0)startIndex=0;for(let i=startIndex;i<endIndex;i++){const sample=this.samples[i];const nextSample=this.samples[i+1];const sampleRange=new tr.b.math.Range();sampleRange.addValue(sample.start);sampleRange.addValue(nextSample?nextSample.start:sample.start);const intersectionRangeInMs=measurementRange.findIntersection(sampleRange);resourceTimeInMs+=intersectionRangeInMs.duration*sample.usage;}
4598return resourceTimeInMs;}
4599getSamplesWithinRange(start,end){const startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start);const endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);return this.samples.slice(startIndex,endIndex);}
4600shiftTimestampsForward(amount){for(let i=0;i<this.samples_.length;++i){this.samples_[i].start+=amount;}}
4601updateBounds(){this.bounds.reset();if(this.samples_.length===0)return;this.bounds.addValue(this.samples_[0].start);this.bounds.addValue(this.samples_[this.samples_.length-1].start);}*childEvents(){yield*this.samples_;}}
4602return{ResourceUsageSeries,};});'use strict';tr.exportTo('tr.e.audits',function(){class CpuUsageAuditor extends tr.c.Auditor{constructor(model){super();this.model_=model;}
4603runAnnotate(){this.model_.device.cpuUsageSeries=this.computeCpuUsageSeries_(this.model_.bounds.min,this.model_.bounds.max,this.computeCpuUsage_());}
4604computeBinSize_(start,end){const MIN_BIN_SIZE_MS=1.0;const MAX_NUM_BINS=100000;const interval=end-start;let binSize=MIN_BIN_SIZE_MS;while(binSize*MAX_NUM_BINS<interval)binSize*=2;return binSize;}
4605computeCpuUsageSeries_(start,end,usageRecords){const series=new tr.model.ResourceUsageSeries();if(start===undefined||usageRecords.length===0)return series;const binSize=this.computeBinSize_(start,end);const numBins=Math.ceil((end-start)/binSize);const arr=new Array(numBins).fill(0);for(const record of usageRecords){const firstIndex=Math.ceil((record.start-start)/binSize);const lastIndex=Math.floor((record.end-start)/binSize);for(let i=firstIndex;i<=lastIndex;i++)arr[i]+=record.usage;}
4606for(let i=0;i<numBins;i++){series.addUsageSample(start+(i*binSize),arr[i]);}
4607return series;}
4608computeCpuUsage_(){const model=this.model_;const result=[];for(const pid in model.processes){for(const e of model.processes[pid].getDescendantEvents()){if(!(e instanceof tr.model.ThreadSlice)||e.duration===0||e.cpuDuration===undefined){continue;}
4609if(e.selfTime===0||e.selfTime===undefined||e.cpuSelfTime===undefined){continue;}
4610const usage=tr.b.math.clamp(e.cpuSelfTime/e.selfTime,0,1);let lastTime=e.start;for(const subslice of e.subSlices){result.push({usage,start:lastTime,end:subslice.start});lastTime=subslice.end;}
4611result.push({usage,start:lastTime,end:e.end});}}
4612return result;}}
4613tr.c.Auditor.register(CpuUsageAuditor);return{CpuUsageAuditor};});'use strict';tr.exportTo('tr.b',function(){function Base64(){}
4614function b64ToUint6(nChr){if(nChr>64&&nChr<91)return nChr-65;if(nChr>96&&nChr<123)return nChr-71;if(nChr>47&&nChr<58)return nChr+4;if(nChr===43)return 62;if(nChr===47)return 63;return 0;}
4615Base64.getDecodedBufferLength=function(input){let pad=0;if(input.substr(-2)==='=='){pad=2;}else if(input.substr(-1)==='='){pad=1;}
4616return((input.length*3+1)>>2)-pad;};Base64.EncodeArrayBufferToString=function(input){let binary='';const bytes=new Uint8Array(input);const len=bytes.byteLength;for(let i=0;i<len;i++){binary+=String.fromCharCode(bytes[i]);}
4617return btoa(binary);};Base64.DecodeToTypedArray=function(input,output){const nInLen=input.length;const nOutLen=Base64.getDecodedBufferLength(input);let nMod3=0;let nMod4=0;let nUint24=0;let nOutIdx=0;if(nOutLen>output.byteLength){throw new Error('Output buffer too small to decode.');}
4618for(let nInIdx=0;nInIdx<nInLen;nInIdx++){nMod4=nInIdx&3;nUint24|=b64ToUint6(input.charCodeAt(nInIdx))<<18-6*nMod4;if(nMod4===3||nInLen-nInIdx===1){for(nMod3=0;nMod3<3&&nOutIdx<nOutLen;nMod3++,nOutIdx++){output.setUint8(nOutIdx,nUint24>>>(16>>>nMod3&24)&255);}
4619nUint24=0;}}
4620return nOutLen;};Base64.btoa=function(input){return btoa(input);};Base64.atob=function(input){return atob(input);};return{Base64,};});'use strict';tr.exportTo('tr.e.importer.etw',function(){function Parser(importer){this.importer=importer;this.model=importer.model;}
4621Parser.prototype={__proto__:Object.prototype};const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.mandatoryBaseClass=Parser;tr.b.decorateExtensionRegistry(Parser,options);return{Parser,};});'use strict';tr.exportTo('tr.e.importer.etw',function(){const Parser=tr.e.importer.etw.Parser;const guid='68FDD900-4A3E-11D1-84F4-0000F80464E3';const kEventTraceHeaderOpcode=0;function EventTraceParser(importer){Parser.call(this,importer);importer.registerEventHandler(guid,kEventTraceHeaderOpcode,EventTraceParser.prototype.decodeHeader.bind(this));}
4622EventTraceParser.prototype={__proto__:Parser.prototype,decodeFields(header,decoder){if(header.version!==2){throw new Error('Incompatible EventTrace event version.');}
4623const bufferSize=decoder.decodeUInt32();const version=decoder.decodeUInt32();const providerVersion=decoder.decodeUInt32();const numberOfProcessors=decoder.decodeUInt32();const endTime=decoder.decodeUInt64ToString();const timerResolution=decoder.decodeUInt32();const maxFileSize=decoder.decodeUInt32();const logFileMode=decoder.decodeUInt32();const buffersWritten=decoder.decodeUInt32();const startBuffers=decoder.decodeUInt32();const pointerSize=decoder.decodeUInt32();const eventsLost=decoder.decodeUInt32();const cpuSpeed=decoder.decodeUInt32();const loggerName=decoder.decodeUInteger(header.is64);const logFileName=decoder.decodeUInteger(header.is64);const timeZoneInformation=decoder.decodeTimeZoneInformation();const padding=decoder.decodeUInt32();const bootTime=decoder.decodeUInt64ToString();const perfFreq=decoder.decodeUInt64ToString();const startTime=decoder.decodeUInt64ToString();const reservedFlags=decoder.decodeUInt32();const buffersLost=decoder.decodeUInt32();const sessionNameString=decoder.decodeW16String();const logFileNameString=decoder.decodeW16String();return{bufferSize,version,providerVersion,numberOfProcessors,endTime,timerResolution,maxFileSize,logFileMode,buffersWritten,startBuffers,pointerSize,eventsLost,cpuSpeed,loggerName,logFileName,timeZoneInformation,bootTime,perfFreq,startTime,reservedFlags,buffersLost,sessionNameString,logFileNameString};},decodeHeader(header,decoder){const fields=this.decodeFields(header,decoder);return true;}};Parser.register(EventTraceParser);return{EventTraceParser,};});'use strict';tr.exportTo('tr.e.importer.etw',function(){const Parser=tr.e.importer.etw.Parser;const guid='3D6FA8D0-FE05-11D0-9DDA-00C04FD7BA7C';const kProcessStartOpcode=1;const kProcessEndOpcode=2;const kProcessDCStartOpcode=3;const kProcessDCEndOpcode=4;const kProcessDefunctOpcode=39;function ProcessParser(importer){Parser.call(this,importer);importer.registerEventHandler(guid,kProcessStartOpcode,ProcessParser.prototype.decodeStart.bind(this));importer.registerEventHandler(guid,kProcessEndOpcode,ProcessParser.prototype.decodeEnd.bind(this));importer.registerEventHandler(guid,kProcessDCStartOpcode,ProcessParser.prototype.decodeDCStart.bind(this));importer.registerEventHandler(guid,kProcessDCEndOpcode,ProcessParser.prototype.decodeDCEnd.bind(this));importer.registerEventHandler(guid,kProcessDefunctOpcode,ProcessParser.prototype.decodeDefunct.bind(this));}
4624ProcessParser.prototype={__proto__:Parser.prototype,decodeFields(header,decoder){if(header.version>5){throw new Error('Incompatible Process event version.');}
4625let pageDirectoryBase;if(header.version===1){pageDirectoryBase=decoder.decodeUInteger(header.is64);}
4626let uniqueProcessKey;if(header.version>=2){uniqueProcessKey=decoder.decodeUInteger(header.is64);}
4627const processId=decoder.decodeUInt32();const parentId=decoder.decodeUInt32();let sessionId;let exitStatus;if(header.version>=1){sessionId=decoder.decodeUInt32();exitStatus=decoder.decodeInt32();}
4628let directoryTableBase;if(header.version>=3){directoryTableBase=decoder.decodeUInteger(header.is64);}
4629let flags;if(header.version>=4){flags=decoder.decodeUInt32();}
4630const userSID=decoder.decodeSID(header.is64);let imageFileName;if(header.version>=1){imageFileName=decoder.decodeString();}
4631let commandLine;if(header.version>=2){commandLine=decoder.decodeW16String();}
4632let packageFullName;let applicationId;if(header.version>=4){packageFullName=decoder.decodeW16String();applicationId=decoder.decodeW16String();}
4633let exitTime;if(header.version===5&&header.opcode===kProcessDefunctOpcode){exitTime=decoder.decodeUInt64ToString();}
4634return{pageDirectoryBase,uniqueProcessKey,processId,parentId,sessionId,exitStatus,directoryTableBase,flags,userSID,imageFileName,commandLine,packageFullName,applicationId,exitTime};},decodeStart(header,decoder){const fields=this.decodeFields(header,decoder);const process=this.model.getOrCreateProcess(fields.processId);if(process.hasOwnProperty('has_ended')){throw new Error('Process clash detected.');}
4635process.name=fields.imageFileName;return true;},decodeEnd(header,decoder){const fields=this.decodeFields(header,decoder);const process=this.model.getOrCreateProcess(fields.processId);process.has_ended=true;return true;},decodeDCStart(header,decoder){const fields=this.decodeFields(header,decoder);const process=this.model.getOrCreateProcess(fields.processId);if(process.hasOwnProperty('has_ended')){throw new Error('Process clash detected.');}
4636process.name=fields.imageFileName;return true;},decodeDCEnd(header,decoder){const fields=this.decodeFields(header,decoder);const process=this.model.getOrCreateProcess(fields.processId);process.has_ended=true;return true;},decodeDefunct(header,decoder){const fields=this.decodeFields(header,decoder);return true;}};Parser.register(ProcessParser);return{ProcessParser,};});'use strict';tr.exportTo('tr.e.importer.etw',function(){const Parser=tr.e.importer.etw.Parser;const guid='3D6FA8D1-FE05-11D0-9DDA-00C04FD7BA7C';const kThreadStartOpcode=1;const kThreadEndOpcode=2;const kThreadDCStartOpcode=3;const kThreadDCEndOpcode=4;const kThreadCSwitchOpcode=36;function ThreadParser(importer){Parser.call(this,importer);importer.registerEventHandler(guid,kThreadStartOpcode,ThreadParser.prototype.decodeStart.bind(this));importer.registerEventHandler(guid,kThreadEndOpcode,ThreadParser.prototype.decodeEnd.bind(this));importer.registerEventHandler(guid,kThreadDCStartOpcode,ThreadParser.prototype.decodeDCStart.bind(this));importer.registerEventHandler(guid,kThreadDCEndOpcode,ThreadParser.prototype.decodeDCEnd.bind(this));importer.registerEventHandler(guid,kThreadCSwitchOpcode,ThreadParser.prototype.decodeCSwitch.bind(this));}
4637ThreadParser.prototype={__proto__:Parser.prototype,decodeFields(header,decoder){if(header.version>3){throw new Error('Incompatible Thread event version.');}
4638const processId=decoder.decodeUInt32();const threadId=decoder.decodeUInt32();let stackBase;let stackLimit;let userStackBase;let userStackLimit;let affinity;let startAddr;let win32StartAddr;let tebBase;let subProcessTag;let basePriority;let pagePriority;let ioPriority;let threadFlags;let waitMode;if(header.version===1){if(header.opcode===kThreadStartOpcode||header.opcode===kThreadDCStartOpcode){stackBase=decoder.decodeUInteger(header.is64);stackLimit=decoder.decodeUInteger(header.is64);userStackBase=decoder.decodeUInteger(header.is64);userStackLimit=decoder.decodeUInteger(header.is64);startAddr=decoder.decodeUInteger(header.is64);win32StartAddr=decoder.decodeUInteger(header.is64);waitMode=decoder.decodeInt8();decoder.skip(3);}}else{stackBase=decoder.decodeUInteger(header.is64);stackLimit=decoder.decodeUInteger(header.is64);userStackBase=decoder.decodeUInteger(header.is64);userStackLimit=decoder.decodeUInteger(header.is64);if(header.version===2){startAddr=decoder.decodeUInteger(header.is64);}else{affinity=decoder.decodeUInteger(header.is64);}
4639win32StartAddr=decoder.decodeUInteger(header.is64);tebBase=decoder.decodeUInteger(header.is64);subProcessTag=decoder.decodeUInt32();if(header.version===3){basePriority=decoder.decodeUInt8();pagePriority=decoder.decodeUInt8();ioPriority=decoder.decodeUInt8();threadFlags=decoder.decodeUInt8();}}
4640return{processId,threadId,stackBase,stackLimit,userStackBase,userStackLimit,affinity,startAddr,win32StartAddr,tebBase,subProcessTag,waitMode,basePriority,pagePriority,ioPriority,threadFlags};},decodeCSwitchFields(header,decoder){if(header.version!==2){throw new Error('Incompatible Thread event version.');}
4641const newThreadId=decoder.decodeUInt32();const oldThreadId=decoder.decodeUInt32();const newThreadPriority=decoder.decodeInt8();const oldThreadPriority=decoder.decodeInt8();const previousCState=decoder.decodeUInt8();const spareByte=decoder.decodeInt8();const oldThreadWaitReason=decoder.decodeInt8();const oldThreadWaitMode=decoder.decodeInt8();const oldThreadState=decoder.decodeInt8();const oldThreadWaitIdealProcessor=decoder.decodeInt8();const newThreadWaitTime=decoder.decodeUInt32();const reserved=decoder.decodeUInt32();return{newThreadId,oldThreadId,newThreadPriority,oldThreadPriority,previousCState,spareByte,oldThreadWaitReason,oldThreadWaitMode,oldThreadState,oldThreadWaitIdealProcessor,newThreadWaitTime,reserved};},decodeStart(header,decoder){const fields=this.decodeFields(header,decoder);this.importer.createThreadIfNeeded(fields.processId,fields.threadId);return true;},decodeEnd(header,decoder){const fields=this.decodeFields(header,decoder);this.importer.removeThreadIfPresent(fields.threadId);return true;},decodeDCStart(header,decoder){const fields=this.decodeFields(header,decoder);this.importer.createThreadIfNeeded(fields.processId,fields.threadId);return true;},decodeDCEnd(header,decoder){const fields=this.decodeFields(header,decoder);this.importer.removeThreadIfPresent(fields.threadId);return true;},decodeCSwitch(header,decoder){const fields=this.decodeCSwitchFields(header,decoder);const cpu=this.importer.getOrCreateCpu(header.cpu);const newThread=this.importer.getThreadFromWindowsTid(fields.newThreadId);let newThreadName;if(newThread&&newThread.userFriendlyName){newThreadName=newThread.userFriendlyName;}else{const newProcessId=this.importer.getPidFromWindowsTid(fields.newThreadId);const newProcess=this.model.getProcess(newProcessId);let newProcessName;if(newProcess){newProcessName=newProcess.name;}else{newProcessName='Unknown process';}
4642newThreadName=newProcessName+' (tid '+fields.newThreadId+')';}
4643cpu.switchActiveThread(header.timestamp,{},fields.newThreadId,newThreadName,fields);return true;}};Parser.register(ThreadParser);return{ThreadParser,};});'use strict';tr.exportTo('tr.b',function(){function max(a,b){if(a===undefined)return b;if(b===undefined)return a;return Math.max(a,b);}
4644function IntervalTree(beginPositionCb,endPositionCb){this.beginPositionCb_=beginPositionCb;this.endPositionCb_=endPositionCb;this.root_=undefined;this.size_=0;}
4645IntervalTree.prototype={insert(datum){const startPosition=this.beginPositionCb_(datum);const endPosition=this.endPositionCb_(datum);const node=new IntervalTreeNode(datum,startPosition,endPosition);this.size_++;this.root_=this.insertNode_(this.root_,node);this.root_.colour=Colour.BLACK;return datum;},insertNode_(root,node){if(root===undefined)return node;if(root.leftNode&&root.leftNode.isRed&&root.rightNode&&root.rightNode.isRed){this.flipNodeColour_(root);}
4646if(node.key<root.key){root.leftNode=this.insertNode_(root.leftNode,node);}else if(node.key===root.key){root.merge(node);}else{root.rightNode=this.insertNode_(root.rightNode,node);}
4647if(root.rightNode&&root.rightNode.isRed&&(root.leftNode===undefined||!root.leftNode.isRed)){root=this.rotateLeft_(root);}
4648if(root.leftNode&&root.leftNode.isRed&&root.leftNode.leftNode&&root.leftNode.leftNode.isRed){root=this.rotateRight_(root);}
4649return root;},rotateRight_(node){const sibling=node.leftNode;node.leftNode=sibling.rightNode;sibling.rightNode=node;sibling.colour=node.colour;node.colour=Colour.RED;return sibling;},rotateLeft_(node){const sibling=node.rightNode;node.rightNode=sibling.leftNode;sibling.leftNode=node;sibling.colour=node.colour;node.colour=Colour.RED;return sibling;},flipNodeColour_(node){node.colour=this.flipColour_(node.colour);node.leftNode.colour=this.flipColour_(node.leftNode.colour);node.rightNode.colour=this.flipColour_(node.rightNode.colour);},flipColour_(colour){return colour===Colour.RED?Colour.BLACK:Colour.RED;},updateHighValues(){this.updateHighValues_(this.root_);},updateHighValues_(node){if(node===undefined)return undefined;node.maxHighLeft=this.updateHighValues_(node.leftNode);node.maxHighRight=this.updateHighValues_(node.rightNode);return max(max(node.maxHighLeft,node.highValue),node.maxHighRight);},validateFindArguments_(queryLow,queryHigh){if(queryLow===undefined||queryHigh===undefined){throw new Error('queryLow and queryHigh must be defined');}
4650if((typeof queryLow!=='number')||(typeof queryHigh!=='number')){throw new Error('queryLow and queryHigh must be numbers');}},findIntersection(queryLow,queryHigh){this.validateFindArguments_(queryLow,queryHigh);if(this.root_===undefined)return[];const ret=[];this.root_.appendIntersectionsInto_(ret,queryLow,queryHigh);return ret;},get size(){return this.size_;},get root(){return this.root_;},dump_(){if(this.root_===undefined)return[];return this.root_.dump();}};const Colour={RED:'red',BLACK:'black'};function IntervalTreeNode(datum,lowValue,highValue){this.lowValue_=lowValue;this.data_=[{datum,high:highValue,low:lowValue}];this.colour_=Colour.RED;this.parentNode_=undefined;this.leftNode_=undefined;this.rightNode_=undefined;this.maxHighLeft_=undefined;this.maxHighRight_=undefined;}
4651IntervalTreeNode.prototype={appendIntersectionsInto_(ret,queryLow,queryHigh){if(this.lowValue_>=queryHigh){if(!this.leftNode_)return;return this.leftNode_.appendIntersectionsInto_(ret,queryLow,queryHigh);}
4652if(this.maxHighLeft_>queryLow){this.leftNode_.appendIntersectionsInto_(ret,queryLow,queryHigh);}
4653if(this.highValue>queryLow){for(let i=(this.data.length-1);i>=0;--i){if(this.data[i].high<queryLow)break;ret.push(this.data[i].datum);}}
4654if(this.rightNode_){this.rightNode_.appendIntersectionsInto_(ret,queryLow,queryHigh);}},get colour(){return this.colour_;},set colour(colour){this.colour_=colour;},get key(){return this.lowValue_;},get lowValue(){return this.lowValue_;},get highValue(){return this.data_[this.data_.length-1].high;},set leftNode(left){this.leftNode_=left;},get leftNode(){return this.leftNode_;},get hasLeftNode(){return this.leftNode_!==undefined;},set rightNode(right){this.rightNode_=right;},get rightNode(){return this.rightNode_;},get hasRightNode(){return this.rightNode_!==undefined;},set parentNode(parent){this.parentNode_=parent;},get parentNode(){return this.parentNode_;},get isRootNode(){return this.parentNode_===undefined;},set maxHighLeft(high){this.maxHighLeft_=high;},get maxHighLeft(){return this.maxHighLeft_;},set maxHighRight(high){this.maxHighRight_=high;},get maxHighRight(){return this.maxHighRight_;},get data(){return this.data_;},get isRed(){return this.colour_===Colour.RED;},merge(node){for(let i=0;i<node.data.length;i++){this.data_.push(node.data[i]);}
4655this.data_.sort(function(a,b){return a.high-b.high;});},dump(){const ret={};if(this.leftNode_){ret.left=this.leftNode_.dump();}
4656ret.data=this.data_.map(function(d){return[d.low,d.high];});if(this.rightNode_){ret.right=this.rightNode_.dump();}
4657return ret;}};return{IntervalTree,};});'use strict';tr.exportTo('tr.b.math',function(){const tmpVec2s=[];for(let i=0;i<8;i++){tmpVec2s[i]=vec2.create();}
4658const tmpVec2a=vec4.create();const tmpVec4a=vec4.create();const tmpVec4b=vec4.create();const tmpMat4=mat4.create();const tmpMat4b=mat4.create();const p00=vec2.createXY(0,0);const p10=vec2.createXY(1,0);const p01=vec2.createXY(0,1);const p11=vec2.createXY(1,1);const lerpingVecA=vec2.create();const lerpingVecB=vec2.create();function lerpVec2(out,a,b,amt){vec2.scale(lerpingVecA,a,amt);vec2.scale(lerpingVecB,b,1-amt);vec2.add(out,lerpingVecA,lerpingVecB);vec2.normalize(out,out);return out;}
4659function Quad(){this.p1=vec2.create();this.p2=vec2.create();this.p3=vec2.create();this.p4=vec2.create();}
4660Quad.fromXYWH=function(x,y,w,h){const q=new Quad();vec2.set(q.p1,x,y);vec2.set(q.p2,x+w,y);vec2.set(q.p3,x+w,y+h);vec2.set(q.p4,x,y+h);return q;};Quad.fromRect=function(r){return new Quad.fromXYWH(r.x,r.y,r.width,r.height);};Quad.from4Vecs=function(p1,p2,p3,p4){const q=new Quad();vec2.set(q.p1,p1[0],p1[1]);vec2.set(q.p2,p2[0],p2[1]);vec2.set(q.p3,p3[0],p3[1]);vec2.set(q.p4,p4[0],p4[1]);return q;};Quad.from8Array=function(arr){if(arr.length!==8){throw new Error('Array must be 8 long');}
4661const q=new Quad();q.p1[0]=arr[0];q.p1[1]=arr[1];q.p2[0]=arr[2];q.p2[1]=arr[3];q.p3[0]=arr[4];q.p3[1]=arr[5];q.p4[0]=arr[6];q.p4[1]=arr[7];return q;};Quad.prototype={pointInside(point){return pointInImplicitQuad(point,this.p1,this.p2,this.p3,this.p4);},boundingRect(){const x0=Math.min(this.p1[0],this.p2[0],this.p3[0],this.p4[0]);const y0=Math.min(this.p1[1],this.p2[1],this.p3[1],this.p4[1]);const x1=Math.max(this.p1[0],this.p2[0],this.p3[0],this.p4[0]);const y1=Math.max(this.p1[1],this.p2[1],this.p3[1],this.p4[1]);return new tr.b.math.Rect.fromXYWH(x0,y0,x1-x0,y1-y0);},clone(){const q=new Quad();vec2.copy(q.p1,this.p1);vec2.copy(q.p2,this.p2);vec2.copy(q.p3,this.p3);vec2.copy(q.p4,this.p4);return q;},scale(s){const q=new Quad();this.scaleFast(q,s);return q;},scaleFast(dstQuad,s){vec2.copy(dstQuad.p1,this.p1,s);vec2.copy(dstQuad.p2,this.p2,s);vec2.copy(dstQuad.p3,this.p3,s);vec2.copy(dstQuad.p3,this.p3,s);},isRectangle(){const bounds=this.boundingRect();return(bounds.x===this.p1[0]&&bounds.y===this.p1[1]&&bounds.width===this.p2[0]-this.p1[0]&&bounds.y===this.p2[1]&&bounds.width===this.p3[0]-this.p1[0]&&bounds.height===this.p3[1]-this.p2[1]&&bounds.x===this.p4[0]&&bounds.height===this.p4[1]-this.p2[1]);},projectUnitRect(rect){const q=new Quad();this.projectUnitRectFast(q,rect);return q;},projectUnitRectFast(dstQuad,rect){const v12=tmpVec2s[0];const v14=tmpVec2s[1];const v23=tmpVec2s[2];const v43=tmpVec2s[3];vec2.sub(v12,this.p2,this.p1);const l12=vec2.length(v12);vec2.scale(v12,v12,1/l12);vec2.sub(v14,this.p4,this.p1);const l14=vec2.length(v14);vec2.scale(v14,v14,1/l14);vec2.sub(v23,this.p3,this.p2);const l23=vec2.length(v23);vec2.scale(v23,v23,1/l23);vec2.sub(v43,this.p3,this.p4);const l43=vec2.length(v43);vec2.scale(v43,v43,1/l43);const b12=tmpVec2s[0];const b14=tmpVec2s[1];const b23=tmpVec2s[2];const b43=tmpVec2s[3];lerpVec2(b12,v12,v43,rect.y);lerpVec2(b43,v12,v43,1-rect.bottom);lerpVec2(b14,v14,v23,rect.x);lerpVec2(b23,v14,v23,1-rect.right);vec2.addTwoScaledUnitVectors(tmpVec2a,b12,l12*rect.x,b14,l14*rect.y);vec2.add(dstQuad.p1,this.p1,tmpVec2a);vec2.addTwoScaledUnitVectors(tmpVec2a,b12,l12*-(1.0-rect.right),b23,l23*rect.y);vec2.add(dstQuad.p2,this.p2,tmpVec2a);vec2.addTwoScaledUnitVectors(tmpVec2a,b43,l43*-(1.0-rect.right),b23,l23*-(1.0-rect.bottom));vec2.add(dstQuad.p3,this.p3,tmpVec2a);vec2.addTwoScaledUnitVectors(tmpVec2a,b43,l43*rect.left,b14,l14*-(1.0-rect.bottom));vec2.add(dstQuad.p4,this.p4,tmpVec2a);},toString(){return'Quad('+
4662vec2.toString(this.p1)+', '+
4663vec2.toString(this.p2)+', '+
4664vec2.toString(this.p3)+', '+
4665vec2.toString(this.p4)+')';}};function sign(p1,p2,p3){return(p1[0]-p3[0])*(p2[1]-p3[1])-
4666(p2[0]-p3[0])*(p1[1]-p3[1]);}
4667function pointInTriangle2(pt,p1,p2,p3){const b1=sign(pt,p1,p2)<0.0;const b2=sign(pt,p2,p3)<0.0;const b3=sign(pt,p3,p1)<0.0;return((b1===b2)&&(b2===b3));}
4668function pointInImplicitQuad(point,p1,p2,p3,p4){return pointInTriangle2(point,p1,p2,p3)||pointInTriangle2(point,p1,p3,p4);}
4669return{pointInTriangle2,pointInImplicitQuad,Quad,};});'use strict';tr.exportTo('tr.b',function(){const ESTIMATED_IDLE_PERIOD_LENGTH_MILLISECONDS=10;const REQUEST_IDLE_CALLBACK_TIMEOUT_MILLISECONDS=100;const recordRAFStacks=false;let pendingPreAFs=[];let pendingRAFs=[];const pendingIdleCallbacks=[];let currentRAFDispatchList=undefined;let rafScheduled=false;let idleWorkScheduled=false;function scheduleRAF(){if(rafScheduled)return;rafScheduled=true;if(tr.isHeadless){Promise.resolve().then(function(){processRequests(false,0);},function(e){throw e;});}else{if(window.requestAnimationFrame){window.requestAnimationFrame(processRequests.bind(this,false));}else{const delta=Date.now()-window.performance.now();window.webkitRequestAnimationFrame(function(domTimeStamp){processRequests(false,domTimeStamp-delta);});}}}
4670function nativeRequestIdleCallbackSupported(){return!tr.isHeadless&&window.requestIdleCallback;}
4671function scheduleIdleWork(){if(idleWorkScheduled)return;if(!nativeRequestIdleCallbackSupported()){scheduleRAF();return;}
4672idleWorkScheduled=true;window.requestIdleCallback(function(deadline,didTimeout){processIdleWork(false,deadline);},{timeout:REQUEST_IDLE_CALLBACK_TIMEOUT_MILLISECONDS});}
4673function onAnimationFrameError(e,opt_stack){console.log(e.stack);if(tr.isHeadless)throw e;if(opt_stack)console.log(opt_stack);if(e.message){console.error(e.message,e.stack);}else{console.error(e);}}
4674function runTask(task,frameBeginTime){try{task.callback.call(task.context,frameBeginTime);}catch(e){tr.b.onAnimationFrameError(e,task.stack);}}
4675function processRequests(forceAllTasksToRun,frameBeginTime){rafScheduled=false;const currentPreAFs=pendingPreAFs;currentRAFDispatchList=pendingRAFs;pendingPreAFs=[];pendingRAFs=[];const hasRAFTasks=currentPreAFs.length||currentRAFDispatchList.length;for(let i=0;i<currentPreAFs.length;i++){runTask(currentPreAFs[i],frameBeginTime);}
4676while(currentRAFDispatchList.length>0){runTask(currentRAFDispatchList.shift(),frameBeginTime);}
4677currentRAFDispatchList=undefined;if((!hasRAFTasks&&!nativeRequestIdleCallbackSupported())||forceAllTasksToRun){const rafCompletionDeadline=frameBeginTime+ESTIMATED_IDLE_PERIOD_LENGTH_MILLISECONDS;processIdleWork(forceAllTasksToRun,{timeRemaining(){return rafCompletionDeadline-window.performance.now();}});}
4678if(pendingIdleCallbacks.length>0)scheduleIdleWork();}
4679function processIdleWork(forceAllTasksToRun,deadline){idleWorkScheduled=false;while(pendingIdleCallbacks.length>0){runTask(pendingIdleCallbacks.shift());if(!forceAllTasksToRun&&(tr.isHeadless||deadline.timeRemaining()<=0)){break;}}
4680if(pendingIdleCallbacks.length>0)scheduleIdleWork();}
4681function getStack_(){if(!recordRAFStacks)return'';const stackLines=tr.b.stackTrace();stackLines.shift();return stackLines.join('\n');}
4682function requestPreAnimationFrame(callback,opt_this){pendingPreAFs.push({callback,context:opt_this||global,stack:getStack_()});scheduleRAF();}
4683function requestAnimationFrameInThisFrameIfPossible(callback,opt_this){if(!currentRAFDispatchList){requestAnimationFrame(callback,opt_this);return;}
4684currentRAFDispatchList.push({callback,context:opt_this||global,stack:getStack_()});return;}
4685function requestAnimationFrame(callback,opt_this){pendingRAFs.push({callback,context:opt_this||global,stack:getStack_()});scheduleRAF();}
4686function animationFrame(){return new Promise(resolve=>requestAnimationFrame(resolve));}
4687function requestIdleCallback(callback,opt_this){pendingIdleCallbacks.push({callback,context:opt_this||global,stack:getStack_()});scheduleIdleWork();}
4688function forcePendingRAFTasksToRun(frameBeginTime){if(!rafScheduled)return;processRequests(false,frameBeginTime);}
4689function forceAllPendingTasksToRunForTest(){if(!rafScheduled&&!idleWorkScheduled)return;processRequests(true,0);}
4690function timeout(ms){return new Promise(resolve=>window.setTimeout(resolve,ms));}
4691function idle(){return new Promise(resolve=>requestIdleCallback(resolve));}
4692return{animationFrame,forceAllPendingTasksToRunForTest,forcePendingRAFTasksToRun,idle,onAnimationFrameError,requestAnimationFrame,requestAnimationFrameInThisFrameIfPossible,requestIdleCallback,requestPreAnimationFrame,timeout,};});'use strict';tr.exportTo('tr.b',function(){class Mark{constructor(groupName,functionName){if(tr.isHeadless)return;this.groupName_=groupName;this.functionName_=functionName;const guid=tr.b.GUID.allocateSimple();this.measureName_=`${groupName} ${functionName}`;this.startMarkName_=`${this.measureName} ${guid} start`;this.endMarkName_=`${this.measureName} ${guid} end`;window.performance.mark(this.startMarkName_);}
4693get groupName(){return this.groupName_;}
4694get functionName(){return this.functionName_;}
4695get measureName(){return this.measureName_;}
4696get startMark(){return tr.b.getOnlyElement(window.performance.getEntriesByName(this.startMarkName_));}
4697get endMark(){return tr.b.getOnlyElement(window.performance.getEntriesByName(this.endMarkName_));}
4698get durationMs(){return this.endMark.startTime-this.startMark.startTime;}
4699end(){if(tr.isHeadless)return;window.performance.mark(this.endMarkName_);window.performance.measure(this.measureName_,this.startMarkName_,this.endMarkName_);if(!(window.ga instanceof Function))return;ga('send',{hitType:'event',eventCategory:this.groupName,eventAction:this.functionName,eventValue:this.durationMs,});}}
4700class Timing{static mark(groupName,functionName){return new Mark(groupName,functionName);}
4701static instant(groupName,functionName,opt_value){const valueString=opt_value===undefined?'':' '+opt_value;if(console&&console.timeStamp){console.timeStamp(`${groupName} ${functionName}${valueString}`);}
4702if(window&&window.ga instanceof Function){ga('send',{hitType:'event',eventCategory:groupName,eventAction:functionName,eventValue:opt_value,});}}
4703static getCurrentTimeMs(){try{return performance.now();}catch(error){}
4704return 0;}}
4705return{Timing,};});'use strict';tr.exportTo('tr.b',function(){const Timing=tr.b.Timing;function Task(runCb,thisArg){if(runCb!==undefined&&thisArg===undefined&&runCb.prototype!==undefined){throw new Error('Almost certainly you meant to pass a bound callback '+'or thisArg.');}
4706this.runCb_=runCb;this.thisArg_=thisArg;this.afterTask_=undefined;this.subTasks_=[];this.updatesUi_=false;}
4707Task.prototype={get name(){return this.runCb_.name;},set updatesUi(value){this.updatesUi_=value;},subTask(cb,thisArg){if(cb instanceof Task){this.subTasks_.push(cb);}else{this.subTasks_.push(new Task(cb,thisArg));}
4708return this.subTasks_[this.subTasks_.length-1];},run(){if(this.runCb_!==undefined)this.runCb_.call(this.thisArg_,this);const subTasks=this.subTasks_;this.subTasks_=undefined;if(!subTasks.length)return this.afterTask_;for(let i=1;i<subTasks.length;i++){subTasks[i-1].afterTask_=subTasks[i];}
4709subTasks[subTasks.length-1].afterTask_=this.afterTask_;return subTasks[0];},after(cb,thisArg){if(this.afterTask_){throw new Error('Has an after task already');}
4710if(cb instanceof Task){this.afterTask_=cb;}else{this.afterTask_=new Task(cb,thisArg);}
4711return this.afterTask_;},enqueue(cb,thisArg){if(!this.afterTask_)return this.after(cb,thisArg);return this.afterTask_.enqueue(cb,thisArg);}};Task.RunSynchronously=function(task){let curTask=task;while(curTask){curTask=curTask.run();}};Task.RunWhenIdle=function(task){return new Promise(function(resolve,reject){let curTask=task;function runAnother(){try{curTask=curTask.run();}catch(e){reject(e);return;}
4712if(curTask){if(curTask.updatesUi_){tr.b.requestAnimationFrameInThisFrameIfPossible(runAnother);}else{tr.b.requestIdleCallback(runAnother);}
4713return;}
4714resolve();}
4715tr.b.requestIdleCallback(runAnother);});};return{Task,};});'use strict';tr.exportTo('tr.c',function(){function makeCaseInsensitiveRegex(pattern){pattern=pattern.replace(/[.*+?^${}()|[\]\\]/g,'\\$&');return new RegExp(pattern,'i');}
4716function Filter(){}
4717Filter.prototype={__proto__:Object.prototype,matchCounter(counter){return true;},matchCpu(cpu){return true;},matchProcess(process){return true;},matchSlice(slice){return true;},matchThread(thread){return true;}};function TitleOrCategoryFilter(text){Filter.call(this);this.regex_=makeCaseInsensitiveRegex(text);if(!text.length){throw new Error('Filter text is empty.');}}
4718TitleOrCategoryFilter.prototype={__proto__:Filter.prototype,matchSlice(slice){if(slice.title===undefined&&slice.category===undefined){return false;}
4719return this.regex_.test(slice.title)||(!!slice.category&&this.regex_.test(slice.category));}};function ExactTitleFilter(text){Filter.call(this);this.text_=text;if(!text.length){throw new Error('Filter text is empty.');}}
4720ExactTitleFilter.prototype={__proto__:Filter.prototype,matchSlice(slice){return slice.title===this.text_;}};function FullTextFilter(text){Filter.call(this);this.regex_=makeCaseInsensitiveRegex(text);this.titleOrCategoryFilter_=new TitleOrCategoryFilter(text);}
4721FullTextFilter.prototype={__proto__:Filter.prototype,matchObject_(obj){for(const key in obj){if(!obj.hasOwnProperty(key))continue;if(this.regex_.test(key))return true;if(this.regex_.test(obj[key]))return true;}
4722return false;},matchSlice(slice){if(this.titleOrCategoryFilter_.matchSlice(slice))return true;return this.matchObject_(slice.args);}};return{Filter,TitleOrCategoryFilter,ExactTitleFilter,FullTextFilter,};});'use strict';tr.exportTo('tr.model',function(){const ClockDomainId={BATTOR:'BATTOR',UNKNOWN_CHROME_LEGACY:'UNKNOWN_CHROME_LEGACY',LINUX_CLOCK_MONOTONIC:'LINUX_CLOCK_MONOTONIC',LINUX_FTRACE_GLOBAL:'LINUX_FTRACE_GLOBAL',MAC_MACH_ABSOLUTE_TIME:'MAC_MACH_ABSOLUTE_TIME',WIN_ROLLOVER_PROTECTED_TIME_GET_TIME:'WIN_ROLLOVER_PROTECTED_TIME_GET_TIME',WIN_QPC:'WIN_QPC',SYSTRACE:'SYSTRACE',TELEMETRY:'TELEMETRY'};const POSSIBLE_CHROME_CLOCK_DOMAINS=new Set([ClockDomainId.UNKNOWN_CHROME_LEGACY,ClockDomainId.LINUX_CLOCK_MONOTONIC,ClockDomainId.MAC_MACH_ABSOLUTE_TIME,ClockDomainId.WIN_ROLLOVER_PROTECTED_TIME_GET_TIME,ClockDomainId.WIN_QPC]);const BATTOR_FAST_SYNC_THRESHOLD_MS=3;function ClockSyncManager(){this.domainsSeen_=new Set();this.markersBySyncId_=new Map();this.transformerMapByDomainId_={};}
4723ClockSyncManager.prototype={addClockSyncMarker(domainId,syncId,startTs,opt_endTs){this.onDomainSeen_(domainId);if(Object.values(ClockDomainId).indexOf(domainId)<0){throw new Error('"'+domainId+'" is not in the list of known '+'clock domain IDs.');}
4724if(this.modelDomainId_){throw new Error('Cannot add new clock sync markers after getting '+'a model time transformer.');}
4725const marker=new ClockSyncMarker(domainId,startTs,opt_endTs);if(!this.markersBySyncId_.has(syncId)){this.markersBySyncId_.set(syncId,[marker]);return;}
4726const markers=this.markersBySyncId_.get(syncId);if(markers.length===2){throw new Error('Clock sync with ID "'+syncId+'" is already '+'complete - cannot add a third clock sync marker to it.');}
4727if(markers[0].domainId===domainId){throw new Error('A clock domain cannot sync with itself.');}
4728markers.push(marker);this.onSyncCompleted_(markers[0],marker);},get markersBySyncId(){return this.markersBySyncId_;},get domainsSeen(){return this.domainsSeen_;},getModelTimeTransformer(domainId){this.onDomainSeen_(domainId);if(!this.modelDomainId_){this.selectModelDomainId_();}
4729return this.getTimeTransformerRaw_(domainId,this.modelDomainId_).fn;},getTimeTransformerError(fromDomainId,toDomainId){this.onDomainSeen_(fromDomainId);this.onDomainSeen_(toDomainId);return this.getTimeTransformerRaw_(fromDomainId,toDomainId).error;},getTimeTransformerRaw_(fromDomainId,toDomainId){const transformer=this.getTransformerBetween_(fromDomainId,toDomainId);if(!transformer){throw new Error('No clock sync markers exist pairing clock domain "'+
4730fromDomainId+'" '+'with target clock domain "'+
4731toDomainId+'".');}
4732return transformer;},getTransformerBetween_(fromDomainId,toDomainId){const visitedDomainIds=new Set();const queue=[{domainId:fromDomainId,transformer:Transformer.IDENTITY}];while(queue.length>0){queue.sort((domain1,domain2)=>domain1.transformer.error-domain2.transformer.error);const current=queue.shift();if(current.domainId===toDomainId){return current.transformer;}
4733if(visitedDomainIds.has(current.domainId)){continue;}
4734visitedDomainIds.add(current.domainId);const outgoingTransformers=this.transformerMapByDomainId_[current.domainId];if(!outgoingTransformers)continue;for(const outgoingDomainId in outgoingTransformers){const toNextDomainTransformer=outgoingTransformers[outgoingDomainId];const toCurrentDomainTransformer=current.transformer;queue.push({domainId:outgoingDomainId,transformer:Transformer.compose(toNextDomainTransformer,toCurrentDomainTransformer)});}}
4735return undefined;},selectModelDomainId_(){this.ensureAllDomainsAreConnected_();for(const chromeDomainId of POSSIBLE_CHROME_CLOCK_DOMAINS){if(this.domainsSeen_.has(chromeDomainId)){this.modelDomainId_=chromeDomainId;return;}}
4736const domainsSeenArray=Array.from(this.domainsSeen_);domainsSeenArray.sort();this.modelDomainId_=domainsSeenArray[0];},ensureAllDomainsAreConnected_(){let firstDomainId=undefined;for(const domainId of this.domainsSeen_){if(!firstDomainId){firstDomainId=domainId;continue;}
4737if(!this.getTransformerBetween_(firstDomainId,domainId)){throw new Error('Unable to select a primary clock domain because no '+'path can be found from "'+firstDomainId+'" to "'+domainId+'".');}}
4738return true;},onDomainSeen_(domainId){if(domainId===ClockDomainId.UNKNOWN_CHROME_LEGACY&&!this.domainsSeen_.has(ClockDomainId.UNKNOWN_CHROME_LEGACY)){for(const chromeDomainId of POSSIBLE_CHROME_CLOCK_DOMAINS){if(chromeDomainId===ClockDomainId.UNKNOWN_CHROME_LEGACY){continue;}
4739this.collapseDomains_(ClockDomainId.UNKNOWN_CHROME_LEGACY,chromeDomainId);}}
4740this.domainsSeen_.add(domainId);},onSyncCompleted_(marker1,marker2){const forwardTransformer=Transformer.fromMarkers(marker1,marker2);const backwardTransformer=Transformer.fromMarkers(marker2,marker1);const existingTransformer=this.getOrCreateTransformerMap_(marker1.domainId)[marker2.domainId];if(!existingTransformer||forwardTransformer.error<existingTransformer.error){this.getOrCreateTransformerMap_(marker1.domainId)[marker2.domainId]=forwardTransformer;this.getOrCreateTransformerMap_(marker2.domainId)[marker1.domainId]=backwardTransformer;}},collapseDomains_(domain1Id,domain2Id){this.getOrCreateTransformerMap_(domain1Id)[domain2Id]=this.getOrCreateTransformerMap_(domain2Id)[domain1Id]=Transformer.IDENTITY;},getOrCreateTransformerMap_(domainId){if(!this.transformerMapByDomainId_[domainId]){this.transformerMapByDomainId_[domainId]={};}
4741return this.transformerMapByDomainId_[domainId];},computeDotGraph(){let dotString='graph {\n';const domainsSeen=[...this.domainsSeen_].sort();for(const domainId of domainsSeen){dotString+=`  ${domainId}[shape=box]\n`;}
4742const markersBySyncIdEntries=[...this.markersBySyncId_.entries()].sort(([syncId1,markers1],[syncId2,markers2])=>syncId1.localeCompare(syncId2));for(const[syncId,markers]of markersBySyncIdEntries){const sortedMarkers=markers.sort((a,b)=>a.domainId.localeCompare(b.domainId));for(const m of markers){dotString+=`  "${syncId}" -- ${m.domainId} `;dotString+=`[label="[${m.startTs}, ${m.endTs}]"]\n`;}}
4743dotString+='}';return dotString;}};function ClockSyncMarker(domainId,startTs,opt_endTs){this.domainId=domainId;this.startTs=startTs;this.endTs=opt_endTs===undefined?startTs:opt_endTs;}
4744ClockSyncMarker.prototype={get duration(){return this.endTs-this.startTs;},get ts(){return this.startTs+this.duration/2;}};function Transformer(fn,error){this.fn=fn;this.error=error;}
4745Transformer.IDENTITY=new Transformer((x=>x),0);Transformer.compose=function(aToB,bToC){return new Transformer((ts)=>bToC.fn(aToB.fn(ts)),aToB.error+bToC.error);};Transformer.fromMarkers=function(fromMarker,toMarker){let fromTs=fromMarker.ts;let toTs=toMarker.ts;if(fromMarker.domainId===ClockDomainId.BATTOR&&toMarker.duration>BATTOR_FAST_SYNC_THRESHOLD_MS){toTs=toMarker.startTs;}else if(toMarker.domainId===ClockDomainId.BATTOR&&fromMarker.duration>BATTOR_FAST_SYNC_THRESHOLD_MS){fromTs=fromMarker.startTs;}
4746const tsShift=toTs-fromTs;return new Transformer((ts)=>ts+tsShift,fromMarker.duration+toMarker.duration);};return{ClockDomainId,ClockSyncManager,};});'use strict';tr.exportTo('tr.model',function(){function CounterSample(series,timestamp,value){tr.model.Event.call(this);this.series_=series;this.timestamp_=timestamp;this.value_=value;}
4747CounterSample.groupByTimestamp=function(samples){const samplesByTimestamp=tr.b.groupIntoMap(samples,s=>s.timestamp);const timestamps=Array.from(samplesByTimestamp.keys());timestamps.sort();const groups=[];for(const ts of timestamps){const group=samplesByTimestamp.get(ts);group.sort((x,y)=>x.series.seriesIndex-y.series.seriesIndex);groups.push(group);}
4748return groups;};CounterSample.prototype={__proto__:tr.model.Event.prototype,get series(){return this.series_;},get timestamp(){return this.timestamp_;},get value(){return this.value_;},set timestamp(timestamp){this.timestamp_=timestamp;},addBoundsToRange(range){range.addValue(this.timestamp);},getSampleIndex(){return tr.b.findLowIndexInSortedArray(this.series.timestamps,function(x){return x;},this.timestamp_);},get userFriendlyName(){return'Counter sample from '+this.series_.title+' at '+
4749tr.b.Unit.byName.timeStampInMs.format(this.timestamp);}};tr.model.EventRegistry.register(CounterSample,{name:'counterSample',pluralName:'counterSamples'});return{CounterSample,};});'use strict';tr.exportTo('tr.model',function(){const CounterSample=tr.model.CounterSample;function CounterSeries(name,color){tr.model.EventContainer.call(this);this.name_=name;this.color_=color;this.timestamps_=[];this.samples_=[];this.counter=undefined;this.seriesIndex=undefined;}
4750CounterSeries.prototype={__proto__:tr.model.EventContainer.prototype,get length(){return this.timestamps_.length;},get name(){return this.name_;},get color(){return this.color_;},get samples(){return this.samples_;},get timestamps(){return this.timestamps_;},getSample(idx){return this.samples_[idx];},getTimestamp(idx){return this.timestamps_[idx];},addCounterSample(ts,val){const sample=new CounterSample(this,ts,val);this.addSample(sample);return sample;},addSample(sample){this.timestamps_.push(sample.timestamp);this.samples_.push(sample);},getStatistics(sampleIndices){let sum=0;let min=Number.MAX_VALUE;let max=-Number.MAX_VALUE;for(let i=0;i<sampleIndices.length;++i){const sample=this.getSample(sampleIndices[i]).value;sum+=sample;min=Math.min(sample,min);max=Math.max(sample,max);}
4751return{min,max,avg:(sum/sampleIndices.length),start:this.getSample(sampleIndices[0]).value,end:this.getSample(sampleIndices.length-1).value};},shiftTimestampsForward(amount){for(let i=0;i<this.timestamps_.length;++i){this.timestamps_[i]+=amount;this.samples_[i].timestamp=this.timestamps_[i];}},*childEvents(){yield*this.samples_;},*childEventContainers(){}};return{CounterSeries,};});'use strict';tr.exportTo('tr.model',function(){function Counter(parent,id,category,name){tr.model.EventContainer.call(this);this.parent_=parent;this.id_=id;this.category_=category||'';this.name_=name;this.series_=[];this.totals=[];}
4752Counter.prototype={__proto__:tr.model.EventContainer.prototype,get parent(){return this.parent_;},get id(){return this.id_;},get category(){return this.category_;},get name(){return this.name_;},*childEvents(){},*childEventContainers(){yield*this.series;},set timestamps(arg){throw new Error('Bad counter API. No cookie.');},set seriesNames(arg){throw new Error('Bad counter API. No cookie.');},set seriesColors(arg){throw new Error('Bad counter API. No cookie.');},set samples(arg){throw new Error('Bad counter API. No cookie.');},addSeries(series){series.counter=this;series.seriesIndex=this.series_.length;this.series_.push(series);return series;},getSeries(idx){return this.series_[idx];},get series(){return this.series_;},get numSeries(){return this.series_.length;},get numSamples(){if(this.series_.length===0)return 0;return this.series_[0].length;},get timestamps(){if(this.series_.length===0)return[];return this.series_[0].timestamps;},getSampleStatistics(sampleIndices){sampleIndices.sort();const ret=[];this.series_.forEach(function(series){ret.push(series.getStatistics(sampleIndices));});return ret;},shiftTimestampsForward(amount){for(let i=0;i<this.series_.length;++i){this.series_[i].shiftTimestampsForward(amount);}},updateBounds(){this.totals=[];this.maxTotal=0;this.bounds.reset();if(this.series_.length===0)return;const firstSeries=this.series_[0];const lastSeries=this.series_[this.series_.length-1];this.bounds.addValue(firstSeries.getTimestamp(0));this.bounds.addValue(lastSeries.getTimestamp(lastSeries.length-1));const numSeries=this.numSeries;this.maxTotal=-Infinity;for(let i=0;i<firstSeries.length;++i){let total=0;this.series_.forEach(function(series){total+=series.getSample(i).value;this.totals.push(total);}.bind(this));this.maxTotal=Math.max(total,this.maxTotal);}}};Counter.compare=function(x,y){let tmp=x.parent.compareTo(y.parent);if(tmp!==0)return tmp;tmp=x.name.localeCompare(y.name);if(tmp===0)return x.tid-y.tid;return tmp;};return{Counter,};});'use strict';tr.exportTo('tr.model',function(){const Slice=tr.model.Slice;function CpuSlice(cat,title,colorId,start,args,opt_duration){Slice.apply(this,arguments);this.threadThatWasRunning=undefined;this.cpu=undefined;}
4753CpuSlice.prototype={__proto__:Slice.prototype,get analysisTypeName(){return'tr.ui.analysis.CpuSlice';},getAssociatedTimeslice(){if(!this.threadThatWasRunning){return undefined;}
4754const timeSlices=this.threadThatWasRunning.timeSlices;for(let i=0;i<timeSlices.length;i++){const timeSlice=timeSlices[i];if(timeSlice.start!==this.start){continue;}
4755if(timeSlice.duration!==this.duration){continue;}
4756return timeSlice;}
4757return undefined;}};tr.model.EventRegistry.register(CpuSlice,{name:'cpuSlice',pluralName:'cpuSlices'});return{CpuSlice,};});'use strict';tr.exportTo('tr.model',function(){function TimeToObjectInstanceMap(createObjectInstanceFunction,parent,scopedId){this.createObjectInstanceFunction_=createObjectInstanceFunction;this.parent=parent;this.scopedId=scopedId;this.instances=[];}
4758TimeToObjectInstanceMap.prototype={idWasCreated(category,name,ts){if(this.instances.length===0){this.instances.push(this.createObjectInstanceFunction_(this.parent,this.scopedId,category,name,ts));this.instances[0].creationTsWasExplicit=true;return this.instances[0];}
4759let lastInstance=this.instances[this.instances.length-1];if(ts<lastInstance.deletionTs){throw new Error('Mutation of the TimeToObjectInstanceMap must be '+'done in ascending timestamp order.');}
4760lastInstance=this.createObjectInstanceFunction_(this.parent,this.scopedId,category,name,ts);lastInstance.creationTsWasExplicit=true;this.instances.push(lastInstance);return lastInstance;},addSnapshot(category,name,ts,args,opt_baseTypeName){if(this.instances.length===0){this.instances.push(this.createObjectInstanceFunction_(this.parent,this.scopedId,category,name,ts,opt_baseTypeName));}
4761const i=tr.b.findIndexInSortedIntervals(this.instances,function(inst){return inst.creationTs;},function(inst){return inst.deletionTs-inst.creationTs;},ts);let instance;if(i<0){instance=this.instances[0];if(ts>instance.deletionTs||instance.creationTsWasExplicit){throw new Error('At the provided timestamp, no instance was still alive');}
4762if(instance.snapshots.length!==0){throw new Error('Cannot shift creationTs forward, '+'snapshots have been added. First snap was at ts='+
4763instance.snapshots[0].ts+' and creationTs was '+
4764instance.creationTs);}
4765instance.creationTs=ts;}else if(i>=this.instances.length){instance=this.instances[this.instances.length-1];if(ts>=instance.deletionTs){instance=this.createObjectInstanceFunction_(this.parent,this.scopedId,category,name,ts,opt_baseTypeName);this.instances.push(instance);}else{let lastValidIndex;for(let i=this.instances.length-1;i>=0;i--){const tmp=this.instances[i];if(ts>=tmp.deletionTs)break;if(tmp.creationTsWasExplicit===false&&tmp.snapshots.length===0){lastValidIndex=i;}}
4766if(lastValidIndex===undefined){throw new Error('Cannot add snapshot. No instance was alive that was mutable.');}
4767instance=this.instances[lastValidIndex];instance.creationTs=ts;}}else{instance=this.instances[i];}
4768return instance.addSnapshot(ts,args,name,opt_baseTypeName);},get lastInstance(){if(this.instances.length===0)return undefined;return this.instances[this.instances.length-1];},idWasDeleted(category,name,ts){if(this.instances.length===0){this.instances.push(this.createObjectInstanceFunction_(this.parent,this.scopedId,category,name,ts));}
4769let lastInstance=this.instances[this.instances.length-1];if(ts<lastInstance.creationTs){throw new Error('Cannot delete an id before it was created');}
4770if(lastInstance.deletionTs===Number.MAX_VALUE){lastInstance.wasDeleted(ts);return lastInstance;}
4771if(ts<lastInstance.deletionTs){throw new Error('id was already deleted earlier.');}
4772lastInstance=this.createObjectInstanceFunction_(this.parent,this.scopedId,category,name,ts);this.instances.push(lastInstance);lastInstance.wasDeleted(ts);return lastInstance;},getInstanceAt(ts){const i=tr.b.findIndexInSortedIntervals(this.instances,function(inst){return inst.creationTs;},function(inst){return inst.deletionTs-inst.creationTs;},ts);if(i<0){if(this.instances[0].creationTsWasExplicit){return undefined;}
4773return this.instances[0];}else if(i>=this.instances.length){return undefined;}
4774return this.instances[i];}};return{TimeToObjectInstanceMap,};});'use strict';tr.exportTo('tr.model',function(){const ObjectInstance=tr.model.ObjectInstance;const ObjectSnapshot=tr.model.ObjectSnapshot;function ObjectCollection(parent){tr.model.EventContainer.call(this);this.parent=parent;this.instanceMapsByScopedId_={};this.instancesByTypeName_={};this.createObjectInstance_=this.createObjectInstance_.bind(this);}
4775ObjectCollection.prototype={__proto__:tr.model.EventContainer.prototype,*childEvents(){for(const instance of this.getAllObjectInstances()){yield instance;yield*instance.snapshots;}},createObjectInstance_(parent,scopedId,category,name,creationTs,opt_baseTypeName){const constructor=tr.model.ObjectInstance.subTypes.getConstructor(category,name);const instance=new constructor(parent,scopedId,category,name,creationTs,opt_baseTypeName);const typeName=instance.typeName;let instancesOfTypeName=this.instancesByTypeName_[typeName];if(!instancesOfTypeName){instancesOfTypeName=[];this.instancesByTypeName_[typeName]=instancesOfTypeName;}
4776instancesOfTypeName.push(instance);return instance;},getOrCreateInstanceMap_(scopedId){let dict;if(scopedId.scope in this.instanceMapsByScopedId_){dict=this.instanceMapsByScopedId_[scopedId.scope];}else{dict={};this.instanceMapsByScopedId_[scopedId.scope]=dict;}
4777let instanceMap=dict[scopedId.id];if(instanceMap)return instanceMap;instanceMap=new tr.model.TimeToObjectInstanceMap(this.createObjectInstance_,this.parent,scopedId);dict[scopedId.id]=instanceMap;return instanceMap;},idWasCreated(scopedId,category,name,ts){const instanceMap=this.getOrCreateInstanceMap_(scopedId);return instanceMap.idWasCreated(category,name,ts);},addSnapshot(scopedId,category,name,ts,args,opt_baseTypeName){const instanceMap=this.getOrCreateInstanceMap_(scopedId);const snapshot=instanceMap.addSnapshot(category,name,ts,args,opt_baseTypeName);if(snapshot.objectInstance.category!==category){const msg='Added snapshot name='+name+' with cat='+category+' impossible. It instance was created/snapshotted with cat='+
4778snapshot.objectInstance.category+' name='+
4779snapshot.objectInstance.name;throw new Error(msg);}
4780if(opt_baseTypeName&&snapshot.objectInstance.baseTypeName!==opt_baseTypeName){throw new Error('Could not add snapshot with baseTypeName='+
4781opt_baseTypeName+'. It '+'was previously created with name='+
4782snapshot.objectInstance.baseTypeName);}
4783if(snapshot.objectInstance.name!==name){throw new Error('Could not add snapshot with name='+name+'. It '+'was previously created with name='+
4784snapshot.objectInstance.name);}
4785return snapshot;},idWasDeleted(scopedId,category,name,ts){const instanceMap=this.getOrCreateInstanceMap_(scopedId);const deletedInstance=instanceMap.idWasDeleted(category,name,ts);if(!deletedInstance)return;if(deletedInstance.category!==category){const msg='Deleting object '+deletedInstance.name+' with a different category '+'than when it was created. It previous had cat='+
4786deletedInstance.category+' but the delete command '+'had cat='+category;throw new Error(msg);}
4787if(deletedInstance.baseTypeName!==name){throw new Error('Deletion requested for name='+
4788name+' could not proceed: '+'An existing object with baseTypeName='+
4789deletedInstance.baseTypeName+' existed.');}},autoDeleteObjects(maxTimestamp){for(const imapById of Object.values(this.instanceMapsByScopedId_)){for(const i2imap of Object.values(imapById)){const lastInstance=i2imap.lastInstance;if(lastInstance.deletionTs!==Number.MAX_VALUE)continue;i2imap.idWasDeleted(lastInstance.category,lastInstance.name,maxTimestamp);lastInstance.deletionTsWasExplicit=false;}}},getObjectInstanceAt(scopedId,ts){let instanceMap;if(scopedId.scope in this.instanceMapsByScopedId_){instanceMap=this.instanceMapsByScopedId_[scopedId.scope][scopedId.id];}
4790if(!instanceMap)return undefined;return instanceMap.getInstanceAt(ts);},getSnapshotAt(scopedId,ts){const instance=this.getObjectInstanceAt(scopedId,ts);if(!instance)return undefined;return instance.getSnapshotAt(ts);},iterObjectInstances(iter,opt_this){opt_this=opt_this||this;for(const imapById of Object.values(this.instanceMapsByScopedId_)){for(const i2imap of Object.values(imapById)){i2imap.instances.forEach(iter,opt_this);}}},getAllObjectInstances(){const instances=[];this.iterObjectInstances(function(i){instances.push(i);});return instances;},getAllInstancesNamed(name){return this.instancesByTypeName_[name];},getAllInstancesByTypeName(){return this.instancesByTypeName_;},preInitializeAllObjects(){this.iterObjectInstances(function(instance){instance.preInitialize();});},initializeAllObjects(){this.iterObjectInstances(function(instance){instance.initialize();});},initializeInstances(){this.iterObjectInstances(function(instance){instance.initialize();});},updateBounds(){this.bounds.reset();this.iterObjectInstances(function(instance){instance.updateBounds();this.bounds.addRange(instance.bounds);},this);},shiftTimestampsForward(amount){this.iterObjectInstances(function(instance){instance.shiftTimestampsForward(amount);});},addCategoriesToDict(categoriesDict){this.iterObjectInstances(function(instance){categoriesDict[instance.category]=true;});}};return{ObjectCollection,};});'use strict';tr.exportTo('tr.model',function(){class AsyncSliceGroup extends tr.model.EventContainer{constructor(parentContainer,opt_name){super();this.parentContainer_=parentContainer;this.name_=opt_name;this.slices=[];this.viewSubGroups_=undefined;this.nestedLevel_=0;this.hasNestedSubGroups_=true;this.title_=undefined;}
4791get parentContainer(){return this.parentContainer_;}
4792get model(){return this.parentContainer_.parent.model;}
4793get stableId(){return this.parentContainer_.stableId+'.AsyncSliceGroup';}
4794get title(){if(this.nested_level_===0){return'<root>';}
4795return this.title_;}
4796getSettingsKey(){if(this.name_===undefined){return undefined;}
4797const parentKey=this.parentContainer_.getSettingsKey();if(parentKey===undefined){return undefined;}
4798return parentKey+'.'+this.name_;}
4799push(slice){if(this.viewSubGroups_!==undefined){throw new Error('No new slices are allowed when view sub-groups already formed.');}
4800slice.parentContainer=this.parentContainer;this.slices.push(slice);return slice;}
4801get length(){return this.slices.length;}
4802shiftTimestampsForward(amount){for(const slice of this.childEvents()){slice.start+=amount;}}
4803updateBounds(){this.bounds.reset();for(let i=0;i<this.slices.length;i++){this.bounds.addValue(this.slices[i].start);this.bounds.addValue(this.slices[i].end);}}
4804autoCloseOpenSlices(){const maxTimestamp=this.parentContainer_.parent.model.bounds.max;for(const slice of this.childEvents()){if(slice.didNotFinish){slice.duration=maxTimestamp-slice.start;}}}
4805get viewSubGroups(){if(!this.hasNestedSubGroups_||this.nestedLevel_===2){return[];}
4806if(this.viewSubGroups_!==undefined){return this.viewSubGroups_;}
4807const subGroupsByTitle=new Map();for(const slice of this.slices){let subGroupTitle=slice.viewSubGroupTitle;let hasNestedSubGroups=false;if(this.nestedLevel_===0&&slice.viewSubGroupGroupingKey!==undefined){subGroupTitle=slice.viewSubGroupGroupingKey;hasNestedSubGroups=true;}
4808let subGroup=subGroupsByTitle.get(subGroupTitle);if(subGroup===undefined){let name;if(this.name_!==undefined){name=this.name_+'.'+subGroupTitle;}else{name=subGroupTitle;}
4809subGroup=new AsyncSliceGroup(this.parentContainer_,name);subGroup.title_=subGroupTitle;subGroup.hasNestedSubGroups_=hasNestedSubGroups;subGroup.nestedLevel_=this.nestedLevel_+1;subGroupsByTitle.set(subGroupTitle,subGroup);}
4810subGroup.push(slice);}
4811this.viewSubGroups_=Array.from(subGroupsByTitle.values());this.viewSubGroups_.sort((a,b)=>a.title.localeCompare(b.title));return this.viewSubGroups_;}*findTopmostSlicesInThisContainer(eventPredicate,opt_this){for(const slice of this.slices){if(slice.isTopLevel){yield*slice.findTopmostSlicesRelativeToThisSlice(eventPredicate,opt_this);}}}*childEvents(){for(const slice of this.slices){yield slice;yield*slice.enumerateAllDescendents();}}*childEventContainers(){}}
4812return{AsyncSliceGroup,};});'use strict';tr.exportTo('tr.model',function(){const Slice=tr.model.Slice;function ThreadSlice(cat,title,colorId,start,args,opt_duration,opt_cpuStart,opt_cpuDuration,opt_argsStripped,opt_bindId){Slice.call(this,cat,title,colorId,start,args,opt_duration,opt_cpuStart,opt_cpuDuration,opt_argsStripped,opt_bindId);this.subSlices=[];}
4813ThreadSlice.prototype={__proto__:Slice.prototype,get overlappingSamples(){const samples=new tr.model.EventSet();if(!this.parentContainer||!this.parentContainer.samples){return samples;}
4814this.parentContainer.samples.forEach(function(sample){if(this.start<=sample.start&&sample.start<=this.end){samples.push(sample);}},this);return samples;}};tr.model.EventRegistry.register(ThreadSlice,{name:'slice',pluralName:'slices'});return{ThreadSlice,};});'use strict';tr.exportTo('tr.model',function(){const ColorScheme=tr.b.ColorScheme;const ThreadSlice=tr.model.ThreadSlice;function getSliceLo(s){return s.start;}
4815function getSliceHi(s){return s.end;}
4816function SliceGroup(parentContainer,opt_sliceConstructor,opt_name){tr.model.EventContainer.call(this);this.parentContainer_=parentContainer;const sliceConstructor=opt_sliceConstructor||ThreadSlice;this.sliceConstructor=sliceConstructor;this.sliceConstructorSubTypes=this.sliceConstructor.subTypes;if(!this.sliceConstructorSubTypes){throw new Error('opt_sliceConstructor must have a subtype registry.');}
4817this.openPartialSlices_=[];this.slices=[];this.topLevelSlices=[];this.haveTopLevelSlicesBeenBuilt=false;this.name_=opt_name;if(this.model===undefined){throw new Error('SliceGroup must have model defined.');}}
4818SliceGroup.prototype={__proto__:tr.model.EventContainer.prototype,get parentContainer(){return this.parentContainer_;},get model(){return this.parentContainer_.model;},get stableId(){return this.parentContainer_.stableId+'.SliceGroup';},getSettingsKey(){if(!this.name_)return undefined;const parentKey=this.parentContainer_.getSettingsKey();if(!parentKey)return undefined;return parentKey+'.'+this.name;},get length(){return this.slices.length;},pushSlice(slice){this.haveTopLevelSlicesBeenBuilt=false;slice.parentContainer=this.parentContainer_;this.slices.push(slice);return slice;},pushSlices(slices){this.haveTopLevelSlicesBeenBuilt=false;slices.forEach(function(slice){slice.parentContainer=this.parentContainer_;this.slices.push(slice);},this);},beginSlice(category,title,ts,opt_args,opt_tts,opt_argsStripped,opt_colorId){if(this.openPartialSlices_.length){const prevSlice=this.openPartialSlices_[this.openPartialSlices_.length-1];if(ts<prevSlice.start){throw new Error('Slices must be added in increasing timestamp order');}}
4819const colorId=opt_colorId||ColorScheme.getColorIdForGeneralPurposeString(title);const sliceConstructorSubTypes=this.sliceConstructorSubTypes;const sliceType=sliceConstructorSubTypes.getConstructor(category,title);const slice=new sliceType(category,title,colorId,ts,opt_args?opt_args:{},null,opt_tts,undefined,opt_argsStripped);this.openPartialSlices_.push(slice);slice.didNotFinish=true;this.pushSlice(slice);return slice;},isTimestampValidForBeginOrEnd(ts){if(!this.openPartialSlices_.length)return true;const top=this.openPartialSlices_[this.openPartialSlices_.length-1];return ts>=top.start;},get openSliceCount(){return this.openPartialSlices_.length;},get mostRecentlyOpenedPartialSlice(){if(!this.openPartialSlices_.length)return undefined;return this.openPartialSlices_[this.openPartialSlices_.length-1];},endSlice(ts,opt_tts,opt_colorId){if(!this.openSliceCount){throw new Error('endSlice called without an open slice');}
4820const slice=this.openPartialSlices_[this.openSliceCount-1];this.openPartialSlices_.splice(this.openSliceCount-1,1);if(ts<slice.start){throw new Error('Slice '+slice.title+' end time is before its start.');}
4821slice.duration=ts-slice.start;slice.didNotFinish=false;slice.colorId=opt_colorId||slice.colorId;if(opt_tts&&slice.cpuStart!==undefined){slice.cpuDuration=opt_tts-slice.cpuStart;}
4822return slice;},pushCompleteSlice(category,title,ts,duration,tts,cpuDuration,opt_args,opt_argsStripped,opt_colorId,opt_bindId){const colorId=opt_colorId||ColorScheme.getColorIdForGeneralPurposeString(title);const sliceConstructorSubTypes=this.sliceConstructorSubTypes;const sliceType=sliceConstructorSubTypes.getConstructor(category,title);const slice=new sliceType(category,title,colorId,ts,opt_args?opt_args:{},duration,tts,cpuDuration,opt_argsStripped,opt_bindId);if(duration===undefined){slice.didNotFinish=true;}
4823this.pushSlice(slice);return slice;},autoCloseOpenSlices(){this.updateBounds();const maxTimestamp=this.bounds.max;for(let sI=0;sI<this.slices.length;sI++){const slice=this.slices[sI];if(slice.didNotFinish){slice.duration=maxTimestamp-slice.start;}}
4824this.openPartialSlices_=[];},shiftTimestampsForward(amount){for(let sI=0;sI<this.slices.length;sI++){const slice=this.slices[sI];slice.start=(slice.start+amount);}},updateBounds(){this.bounds.reset();for(let i=0;i<this.slices.length;i++){this.bounds.addValue(this.slices[i].start);this.bounds.addValue(this.slices[i].end);}},copySlice(slice){const sliceConstructorSubTypes=this.sliceConstructorSubTypes;const sliceType=sliceConstructorSubTypes.getConstructor(slice.category,slice.title);const newSlice=new sliceType(slice.category,slice.title,slice.colorId,slice.start,slice.args,slice.duration,slice.cpuStart,slice.cpuDuration);newSlice.didNotFinish=slice.didNotFinish;return newSlice;},*findTopmostSlicesInThisContainer(eventPredicate,opt_this){if(!this.haveTopLevelSlicesBeenBuilt){throw new Error('Nope');}
4825for(const s of this.topLevelSlices){yield*s.findTopmostSlicesRelativeToThisSlice(eventPredicate);}},*childEvents(){yield*this.slices;},*childEventContainers(){},getSlicesOfName(title){const slices=[];for(let i=0;i<this.slices.length;i++){if(this.slices[i].title===title){slices.push(this.slices[i]);}}
4826return slices;},iterSlicesInTimeRange(callback,start,end){const ret=[];tr.b.iterateOverIntersectingIntervals(this.topLevelSlices,function(s){return s.start;},function(s){return s.duration;},start,end,function(topLevelSlice){callback(topLevelSlice);for(const slice of topLevelSlice.enumerateAllDescendents()){callback(slice);}});return ret;},findFirstSlice(){if(!this.haveTopLevelSlicesBeenBuilt){throw new Error('Nope');}
4827if(0===this.slices.length)return undefined;return this.slices[0];},findSliceAtTs(ts){if(!this.haveTopLevelSlicesBeenBuilt)throw new Error('Nope');let i=tr.b.findIndexInSortedClosedIntervals(this.topLevelSlices,getSliceLo,getSliceHi,ts);if(i===-1||i===this.topLevelSlices.length){return undefined;}
4828let curSlice=this.topLevelSlices[i];while(true){i=tr.b.findIndexInSortedClosedIntervals(curSlice.subSlices,getSliceLo,getSliceHi,ts);if(i===-1||i===curSlice.subSlices.length){return curSlice;}
4829curSlice=curSlice.subSlices[i];}},findNextSliceAfter(ts,refGuid){let i=tr.b.findLowIndexInSortedArray(this.slices,getSliceLo,ts);if(i===this.slices.length){return undefined;}
4830for(;i<this.slices.length;i++){const slice=this.slices[i];if(slice.start>ts)return slice;if(slice.guid<=refGuid)continue;return slice;}
4831return undefined;},hasCpuDuration_(){if(this.slices.some(function(slice){return slice.cpuDuration!==undefined;}))return true;return false;},createSubSlices(){this.haveTopLevelSlicesBeenBuilt=true;this.createSubSlicesImpl_();if(!this.hasCpuDuration_()&&this.parentContainer.timeSlices){this.addCpuTimeToSubslices_(this.parentContainer.timeSlices);}
4832this.slices.forEach(function(slice){let selfTime=slice.duration;for(let i=0;i<slice.subSlices.length;i++){selfTime-=slice.subSlices[i].duration;}
4833slice.selfTime=selfTime;if(slice.cpuDuration===undefined)return;let cpuSelfTime=slice.cpuDuration;for(let i=0;i<slice.subSlices.length;i++){if(slice.subSlices[i].cpuDuration!==undefined){cpuSelfTime-=slice.subSlices[i].cpuDuration;}}
4834slice.cpuSelfTime=cpuSelfTime;});},createSubSlicesImpl_(){const precisionUnit=this.model.intrinsicTimeUnit;function addSliceIfBounds(parent,child){if(parent.bounds(child,precisionUnit)){child.parentSlice=parent;if(parent.subSlices===undefined){parent.subSlices=[];}
4835parent.subSlices.push(child);return true;}
4836return false;}
4837if(!this.slices.length)return;const ops=[];for(let i=0;i<this.slices.length;i++){if(this.slices[i].subSlices){this.slices[i].subSlices.splice(0,this.slices[i].subSlices.length);}
4838ops.push(i);}
4839const originalSlices=this.slices;ops.sort(function(ix,iy){const x=originalSlices[ix];const y=originalSlices[iy];if(x.start!==y.start){return x.start-y.start;}
4840return ix-iy;});const slices=new Array(this.slices.length);for(let i=0;i<ops.length;i++){slices[i]=originalSlices[ops[i]];}
4841let rootSlice=slices[0];this.topLevelSlices=[];this.topLevelSlices.push(rootSlice);rootSlice.isTopLevel=true;for(let i=1;i<slices.length;i++){const slice=slices[i];while(rootSlice!==undefined&&(!addSliceIfBounds(rootSlice,slice))){rootSlice=rootSlice.parentSlice;}
4842if(rootSlice===undefined){this.topLevelSlices.push(slice);slice.isTopLevel=true;}
4843rootSlice=slice;}
4844this.slices=slices;},addCpuTimeToSubslices_(timeSlices){const SCHEDULING_STATE=tr.model.SCHEDULING_STATE;let sliceIdx=0;timeSlices.forEach(function(timeSlice){if(timeSlice.schedulingState===SCHEDULING_STATE.RUNNING){while(sliceIdx<this.topLevelSlices.length){if(this.addCpuTimeToSubslice_(this.topLevelSlices[sliceIdx],timeSlice)){sliceIdx++;}else{break;}}}},this);},addCpuTimeToSubslice_(slice,timeSlice){if(slice.start>timeSlice.end||slice.end<timeSlice.start){return slice.end<=timeSlice.end;}
4845let duration=timeSlice.duration;if(slice.start>timeSlice.start){duration-=slice.start-timeSlice.start;}
4846if(timeSlice.end>slice.end){duration-=timeSlice.end-slice.end;}
4847if(slice.cpuDuration){slice.cpuDuration+=duration;}else{slice.cpuDuration=duration;}
4848for(let i=0;i<slice.subSlices.length;i++){this.addCpuTimeToSubslice_(slice.subSlices[i],timeSlice);}
4849return slice.end<=timeSlice.end;}};SliceGroup.merge=function(groupA,groupB){if(groupA.openPartialSlices_.length>0){throw new Error('groupA has open partial slices');}
4850if(groupB.openPartialSlices_.length>0){throw new Error('groupB has open partial slices');}
4851if(groupA.parentContainer!==groupB.parentContainer){throw new Error('Different parent threads. Cannot merge');}
4852if(groupA.sliceConstructor!==groupB.sliceConstructor){throw new Error('Different slice constructors. Cannot merge');}
4853const result=new SliceGroup(groupA.parentContainer,groupA.sliceConstructor,groupA.name_);const slicesA=groupA.slices;const slicesB=groupB.slices;let idxA=0;let idxB=0;const openA=[];const openB=[];const splitOpenSlices=function(when){for(let i=0;i<openB.length;i++){const oldSlice=openB[i];const oldEnd=oldSlice.end;if(when<oldSlice.start||oldEnd<when){throw new Error('slice should not be split');}
4854const newSlice=result.copySlice(oldSlice);newSlice.start=when;newSlice.duration=oldEnd-when;if(newSlice.title.indexOf(' (cont.)')===-1){newSlice.title+=' (cont.)';}
4855oldSlice.duration=when-oldSlice.start;openB[i]=newSlice;result.pushSlice(newSlice);}};const closeOpenSlices=function(upTo){while(openA.length>0||openB.length>0){const nextA=openA[openA.length-1];const nextB=openB[openB.length-1];const endA=nextA&&nextA.end;const endB=nextB&&nextB.end;if((endA===undefined||endA>upTo)&&(endB===undefined||endB>upTo)){return;}
4856if(endB===undefined||endA<endB){splitOpenSlices(endA);openA.pop();}else{openB.pop();}}};while(idxA<slicesA.length||idxB<slicesB.length){const sA=slicesA[idxA];const sB=slicesB[idxB];let nextSlice;let isFromB;if(sA===undefined||(sB!==undefined&&sA.start>sB.start)){nextSlice=result.copySlice(sB);isFromB=true;idxB++;}else{nextSlice=result.copySlice(sA);isFromB=false;idxA++;}
4857closeOpenSlices(nextSlice.start);result.pushSlice(nextSlice);if(isFromB){openB.push(nextSlice);}else{splitOpenSlices(nextSlice.start);openA.push(nextSlice);}}
4858closeOpenSlices();return result;};return{SliceGroup,};});'use strict';tr.exportTo('tr.model',function(){const AsyncSlice=tr.model.AsyncSlice;const AsyncSliceGroup=tr.model.AsyncSliceGroup;const SliceGroup=tr.model.SliceGroup;const ThreadSlice=tr.model.ThreadSlice;const ThreadTimeSlice=tr.model.ThreadTimeSlice;function Thread(parent,tid){if(!parent){throw new Error('Parent must be provided.');}
4859tr.model.EventContainer.call(this);this.parent=parent;this.sortIndex=0;this.tid=tid;this.name=undefined;this.samples_=undefined;this.sliceGroup=new SliceGroup(this,ThreadSlice,'slices');this.timeSlices=undefined;this.kernelSliceGroup=new SliceGroup(this,ThreadSlice,'kernel-slices');this.asyncSliceGroup=new AsyncSliceGroup(this,'async-slices');}
4860Thread.prototype={__proto__:tr.model.EventContainer.prototype,get model(){return this.parent.model;},get stableId(){return this.parent.stableId+'.'+this.tid;},compareTo(that){return Thread.compare(this,that);},*childEventContainers(){if(this.sliceGroup.length){yield this.sliceGroup;}
4861if(this.kernelSliceGroup.length){yield this.kernelSliceGroup;}
4862if(this.asyncSliceGroup.length){yield this.asyncSliceGroup;}},*childEvents(){if(this.timeSlices){yield*this.timeSlices;}},iterateAllPersistableObjects(cb){cb(this);if(this.sliceGroup.length){cb(this.sliceGroup);}
4863this.asyncSliceGroup.viewSubGroups.forEach(cb);},shiftTimestampsForward(amount){this.sliceGroup.shiftTimestampsForward(amount);if(this.timeSlices){for(let i=0;i<this.timeSlices.length;i++){const slice=this.timeSlices[i];slice.start+=amount;}}
4864this.kernelSliceGroup.shiftTimestampsForward(amount);this.asyncSliceGroup.shiftTimestampsForward(amount);},get isEmpty(){if(this.sliceGroup.length)return false;if(this.sliceGroup.openSliceCount)return false;if(this.timeSlices&&this.timeSlices.length)return false;if(this.kernelSliceGroup.length)return false;if(this.asyncSliceGroup.length)return false;if(this.samples_.length)return false;return true;},updateBounds(){this.bounds.reset();this.sliceGroup.updateBounds();this.bounds.addRange(this.sliceGroup.bounds);this.kernelSliceGroup.updateBounds();this.bounds.addRange(this.kernelSliceGroup.bounds);this.asyncSliceGroup.updateBounds();this.bounds.addRange(this.asyncSliceGroup.bounds);if(this.timeSlices&&this.timeSlices.length){this.bounds.addValue(this.timeSlices[0].start);this.bounds.addValue(this.timeSlices[this.timeSlices.length-1].end);}
4865if(this.samples_&&this.samples_.length){this.bounds.addValue(this.samples_[0].start);this.bounds.addValue(this.samples_[this.samples_.length-1].end);}},addCategoriesToDict(categoriesDict){for(let i=0;i<this.sliceGroup.length;i++){categoriesDict[this.sliceGroup.slices[i].category]=true;}
4866for(let i=0;i<this.kernelSliceGroup.length;i++){categoriesDict[this.kernelSliceGroup.slices[i].category]=true;}
4867for(let i=0;i<this.asyncSliceGroup.length;i++){categoriesDict[this.asyncSliceGroup.slices[i].category]=true;}
4868if(this.samples_){for(let i=0;i<this.samples_.length;i++){categoriesDict[this.samples_[i].category]=true;}}},autoCloseOpenSlices(){this.sliceGroup.autoCloseOpenSlices();this.asyncSliceGroup.autoCloseOpenSlices();this.kernelSliceGroup.autoCloseOpenSlices();},mergeKernelWithUserland(){if(this.kernelSliceGroup.length>0){const newSlices=SliceGroup.merge(this.sliceGroup,this.kernelSliceGroup);this.sliceGroup.slices=newSlices.slices;this.kernelSliceGroup=new SliceGroup(this);this.updateBounds();}},createSubSlices(){this.sliceGroup.createSubSlices();this.samples_=this.parent.model.samples.filter(sample=>sample.thread===this);},get userFriendlyName(){return this.name||this.tid;},get userFriendlyDetails(){return'tid: '+this.tid+
4869(this.name?', name: '+this.name:'');},getSettingsKey(){if(!this.name)return undefined;const parentKey=this.parent.getSettingsKey();if(!parentKey)return undefined;return parentKey+'.'+this.name;},getProcess(){return this.parent;},indexOfTimeSlice(timeSlice){const i=tr.b.findLowIndexInSortedArray(this.timeSlices,function(slice){return slice.start;},timeSlice.start);if(this.timeSlices[i]!==timeSlice)return undefined;return i;},getCpuStatsForRange(range){const stats={};stats.total=0;if(!this.timeSlices)return stats;function addStatsForSlice(threadTimeSlice){const freqRange=tr.b.math.Range.fromExplicitRange(threadTimeSlice.start,threadTimeSlice.end);const intersection=freqRange.findIntersection(range);if(threadTimeSlice.schedulingState===tr.model.SCHEDULING_STATE.RUNNING){const cpu=threadTimeSlice.cpuOnWhichThreadWasRunning;if(!(cpu.cpuNumber in stats)){stats[cpu.cpuNumber]=0;}
4870stats[cpu.cpuNumber]+=intersection.duration;stats.total+=intersection.duration;}}
4871tr.b.iterateOverIntersectingIntervals(this.timeSlices,function(x){return x.start;},function(x){return x.end;},range.min,range.max,addStatsForSlice);return stats;},getSchedulingStatsForRange(start,end){const stats={};if(!this.timeSlices)return stats;function addStatsForSlice(threadTimeSlice){const overlapStart=Math.max(threadTimeSlice.start,start);const overlapEnd=Math.min(threadTimeSlice.end,end);const schedulingState=threadTimeSlice.schedulingState;if(!(schedulingState in stats))stats[schedulingState]=0;stats[schedulingState]+=overlapEnd-overlapStart;}
4872tr.b.iterateOverIntersectingIntervals(this.timeSlices,function(x){return x.start;},function(x){return x.end;},start,end,addStatsForSlice);return stats;},get samples(){return this.samples_;},get type(){const re=/^[^0-9|\/]+/;const matches=re.exec(this.name);if(matches&&matches[0])return matches[0];throw new Error('Could not determine thread type for thread name '+
4873this.name);}};Thread.compare=function(x,y){let tmp=x.parent.compareTo(y.parent);if(tmp)return tmp;tmp=x.sortIndex-y.sortIndex;if(tmp)return tmp;if(x.name!==undefined){if(y.name!==undefined){tmp=x.name.localeCompare(y.name);}else{tmp=-1;}}else if(y.name!==undefined){tmp=1;}
4874if(tmp)return tmp;return x.tid-y.tid;};return{Thread,};});'use strict';tr.exportTo('tr.model',function(){const Thread=tr.model.Thread;const Counter=tr.model.Counter;function ProcessBase(model){if(!model){throw new Error('Must provide a model');}
4875tr.model.EventContainer.call(this);this.model=model;this.threads={};this.counters={};this.objects=new tr.model.ObjectCollection(this);this.sortIndex=0;}
4876ProcessBase.compare=function(x,y){return x.sortIndex-y.sortIndex;};ProcessBase.prototype={__proto__:tr.model.EventContainer.prototype,get stableId(){throw new Error('Not implemented');},*childEventContainers(){yield*Object.values(this.threads);yield*Object.values(this.counters);yield this.objects;},iterateAllPersistableObjects(cb){cb(this);for(const tid in this.threads){this.threads[tid].iterateAllPersistableObjects(cb);}},get numThreads(){let n=0;for(const p in this.threads){n++;}
4877return n;},shiftTimestampsForward(amount){for(const child of this.childEventContainers()){child.shiftTimestampsForward(amount);}},autoCloseOpenSlices(){for(const tid in this.threads){const thread=this.threads[tid];thread.autoCloseOpenSlices();}},autoDeleteObjects(maxTimestamp){this.objects.autoDeleteObjects(maxTimestamp);},preInitializeObjects(){this.objects.preInitializeAllObjects();},initializeObjects(){this.objects.initializeAllObjects();},mergeKernelWithUserland(){for(const tid in this.threads){const thread=this.threads[tid];thread.mergeKernelWithUserland();}},updateBounds(){this.bounds.reset();for(const tid in this.threads){this.threads[tid].updateBounds();this.bounds.addRange(this.threads[tid].bounds);}
4878for(const id in this.counters){this.counters[id].updateBounds();this.bounds.addRange(this.counters[id].bounds);}
4879this.objects.updateBounds();this.bounds.addRange(this.objects.bounds);},addCategoriesToDict(categoriesDict){for(const tid in this.threads){this.threads[tid].addCategoriesToDict(categoriesDict);}
4880for(const id in this.counters){categoriesDict[this.counters[id].category]=true;}
4881this.objects.addCategoriesToDict(categoriesDict);},findAllThreadsMatching(predicate,opt_this){const threads=[];for(const tid in this.threads){const thread=this.threads[tid];if(predicate.call(opt_this,thread)){threads.push(thread);}}
4882return threads;},findAllThreadsNamed(name){const threads=this.findAllThreadsMatching(function(thread){if(!thread.name)return false;return thread.name===name;});return threads;},findAtMostOneThreadNamed(name){const threads=this.findAllThreadsNamed(name);if(threads.length===0)return undefined;if(threads.length>1){throw new Error('Expected no more than one '+name);}
4883return threads[0];},pruneEmptyContainers(){const threadsToKeep={};for(const tid in this.threads){const thread=this.threads[tid];if(!thread.isEmpty){threadsToKeep[tid]=thread;}}
4884this.threads=threadsToKeep;},getThread(tid){return this.threads[tid];},getOrCreateThread(tid){if(!this.threads[tid]){this.threads[tid]=new Thread(this,tid);}
4885return this.threads[tid];},getOrCreateCounter(cat,name){const id=cat+'.'+name;if(!this.counters[id]){this.counters[id]=new Counter(this,id,cat,name);}
4886return this.counters[id];},getSettingsKey(){throw new Error('Not implemented');},createSubSlices(){for(const tid in this.threads){this.threads[tid].createSubSlices();}}};return{ProcessBase,};});'use strict';tr.exportTo('tr.model',function(){const ColorScheme=tr.b.ColorScheme;const Counter=tr.model.Counter;const CpuSlice=tr.model.CpuSlice;function Cpu(kernel,number){if(kernel===undefined||number===undefined){throw new Error('Missing arguments');}
4887this.kernel=kernel;this.cpuNumber=number;this.slices=[];this.counters={};this.bounds_=new tr.b.math.Range();this.samples_=undefined;this.lastActiveTimestamp_=undefined;this.lastActiveThread_=undefined;this.lastActiveName_=undefined;this.lastActiveArgs_=undefined;}
4888Cpu.prototype={__proto__:tr.model.EventContainer.prototype,get samples(){return this.samples_;},get userFriendlyName(){return'CPU '+this.cpuNumber;},*findTopmostSlicesInThisContainer(eventPredicate,opt_this){for(const s of this.slices){yield*s.findTopmostSlicesRelativeToThisSlice(eventPredicate,opt_this);}},*childEvents(){yield*this.slices;if(this.samples_){yield*this.samples_;}},*childEventContainers(){yield*Object.values(this.counters);},getOrCreateCounter(cat,name){const id=cat+'.'+name;if(!this.counters[id]){this.counters[id]=new Counter(this,id,cat,name);}
4889return this.counters[id];},getCounter(cat,name){const id=cat+'.'+name;if(!this.counters[id]){return undefined;}
4890return this.counters[id];},shiftTimestampsForward(amount){for(let sI=0;sI<this.slices.length;sI++){this.slices[sI].start=(this.slices[sI].start+amount);}
4891for(const id in this.counters){this.counters[id].shiftTimestampsForward(amount);}},updateBounds(){this.bounds_.reset();if(this.slices.length){this.bounds_.addValue(this.slices[0].start);this.bounds_.addValue(this.slices[this.slices.length-1].end);}
4892for(const id in this.counters){this.counters[id].updateBounds();this.bounds_.addRange(this.counters[id].bounds);}
4893if(this.samples_&&this.samples_.length){this.bounds_.addValue(this.samples_[0].start);this.bounds_.addValue(this.samples_[this.samples_.length-1].end);}},createSubSlices(){this.samples_=this.kernel.model.samples.filter(function(sample){return sample.cpu===this;},this);},addCategoriesToDict(categoriesDict){for(let i=0;i<this.slices.length;i++){categoriesDict[this.slices[i].category]=true;}
4894for(const id in this.counters){categoriesDict[this.counters[id].category]=true;}
4895for(let i=0;i<this.samples_.length;i++){categoriesDict[this.samples_[i].category]=true;}},indexOf(cpuSlice){const i=tr.b.findLowIndexInSortedArray(this.slices,function(slice){return slice.start;},cpuSlice.start);if(this.slices[i]!==cpuSlice)return undefined;return i;},closeActiveThread(endTimestamp,args){if(this.lastActiveThread_===undefined||this.lastActiveThread_===0){return;}
4896if(endTimestamp<this.lastActiveTimestamp_){throw new Error('The end timestamp of a thread running on CPU '+
4897this.cpuNumber+' is before its start timestamp.');}
4898for(const key in args){this.lastActiveArgs_[key]=args[key];}
4899const duration=endTimestamp-this.lastActiveTimestamp_;const slice=new tr.model.CpuSlice('',this.lastActiveName_,ColorScheme.getColorIdForGeneralPurposeString(this.lastActiveName_),this.lastActiveTimestamp_,this.lastActiveArgs_,duration);slice.cpu=this;this.slices.push(slice);this.lastActiveTimestamp_=undefined;this.lastActiveThread_=undefined;this.lastActiveName_=undefined;this.lastActiveArgs_=undefined;},switchActiveThread(timestamp,oldThreadArgs,newThreadId,newThreadName,newThreadArgs){this.closeActiveThread(timestamp,oldThreadArgs);this.lastActiveTimestamp_=timestamp;this.lastActiveThread_=newThreadId;this.lastActiveName_=newThreadName;this.lastActiveArgs_=newThreadArgs;},getFreqStatsForRange(range){const stats={};function addStatsForFreq(freqSample,index){const freqEnd=(index<freqSample.series_.length-1)?freqSample.series_.samples_[index+1].timestamp:range.max;const freqRange=tr.b.math.Range.fromExplicitRange(freqSample.timestamp,freqEnd);const intersection=freqRange.findIntersection(range);if(!(freqSample.value in stats)){stats[freqSample.value]=0;}
4900stats[freqSample.value]+=intersection.duration;}
4901const freqCounter=this.getCounter('','Clock Frequency');if(freqCounter!==undefined){const freqSeries=freqCounter.getSeries(0);if(!freqSeries)return;tr.b.iterateOverIntersectingIntervals(freqSeries.samples_,function(x){return x.timestamp;},function(x,index){if(index<freqSeries.length-1){return freqSeries.samples_[index+1].timestamp;}
4902return range.max;},range.min,range.max,addStatsForFreq);}
4903return stats;}};Cpu.compare=function(x,y){return x.cpuNumber-y.cpuNumber;};return{Cpu,};});'use strict';tr.exportTo('tr.model',function(){const Event=tr.model.Event;const EventRegistry=tr.model.EventRegistry;function PowerSample(series,start,powerInW){Event.call(this);this.series_=series;this.start_=parseFloat(start);this.powerInW_=parseFloat(powerInW);}
4904PowerSample.prototype={__proto__:Event.prototype,get series(){return this.series_;},get start(){return this.start_;},set start(value){this.start_=value;},get powerInW(){return this.powerInW_;},set powerInW(value){this.powerInW_=value;},addBoundsToRange(range){range.addValue(this.start);}};EventRegistry.register(PowerSample,{name:'powerSample',pluralName:'powerSamples'});return{PowerSample,};});'use strict';tr.exportTo('tr.model',function(){const PowerSample=tr.model.PowerSample;function PowerSeries(device){tr.model.EventContainer.call(this);this.device_=device;this.samples_=[];}
4905PowerSeries.prototype={__proto__:tr.model.EventContainer.prototype,get device(){return this.device_;},get samples(){return this.samples_;},get stableId(){return this.device_.stableId+'.PowerSeries';},addPowerSample(ts,val){const sample=new PowerSample(this,ts,val);this.samples_.push(sample);return sample;},getEnergyConsumedInJ(start,end){const measurementRange=tr.b.math.Range.fromExplicitRange(start,end);let energyConsumedInJ=0;let startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start)-1;const endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);if(startIndex<0){startIndex=0;}
4906for(let i=startIndex;i<endIndex;i++){const sample=this.samples[i];const nextSample=this.samples[i+1];const sampleRange=new tr.b.math.Range();sampleRange.addValue(sample.start);sampleRange.addValue(nextSample?nextSample.start:sample.start);const intersectionRangeInMs=measurementRange.findIntersection(sampleRange);const durationInS=tr.b.convertUnit(intersectionRangeInMs.duration,tr.b.UnitPrefixScale.METRIC.MILLI,tr.b.UnitPrefixScale.METRIC.NONE);energyConsumedInJ+=durationInS*sample.powerInW;}
4907return energyConsumedInJ;},getSamplesWithinRange(start,end){const startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start);const endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);return this.samples.slice(startIndex,endIndex);},shiftTimestampsForward(amount){for(let i=0;i<this.samples_.length;++i){this.samples_[i].start+=amount;}},updateBounds(){this.bounds.reset();if(this.samples_.length===0)return;this.bounds.addValue(this.samples_[0].start);this.bounds.addValue(this.samples_[this.samples_.length-1].start);},*childEvents(){yield*this.samples_;},};return{PowerSeries,};});'use strict';tr.exportTo('tr.model',function(){function Device(model){if(!model){throw new Error('Must provide a model.');}
4908tr.model.EventContainer.call(this);this.powerSeries_=undefined;this.cpuUsageSeries_=undefined;this.vSyncTimestamps_=[];}
4909Device.compare=function(x,y){return x.guid-y.guid;};Device.prototype={__proto__:tr.model.EventContainer.prototype,compareTo(that){return Device.compare(this,that);},get userFriendlyName(){return'Device';},get userFriendlyDetails(){return'Device';},get stableId(){return'Device';},getSettingsKey(){return'device';},get powerSeries(){return this.powerSeries_;},set powerSeries(powerSeries){this.powerSeries_=powerSeries;},get cpuUsageSeries(){return this.cpuUsageSeries_;},set cpuUsageSeries(cpuUsageSeries){this.cpuUsageSeries_=cpuUsageSeries;},get vSyncTimestamps(){return this.vSyncTimestamps_;},set vSyncTimestamps(value){this.vSyncTimestamps_=value;},updateBounds(){this.bounds.reset();for(const child of this.childEventContainers()){child.updateBounds();this.bounds.addRange(child.bounds);}},shiftTimestampsForward(amount){for(const child of this.childEventContainers()){child.shiftTimestampsForward(amount);}
4910for(let i=0;i<this.vSyncTimestamps_.length;i++){this.vSyncTimestamps_[i]+=amount;}},addCategoriesToDict(categoriesDict){},*childEventContainers(){if(this.powerSeries_){yield this.powerSeries_;}
4911if(this.cpuUsageSeries_){yield this.cpuUsageSeries_;}}};return{Device,};});'use strict';tr.exportTo('tr.model',function(){function FlowEvent(category,id,title,colorId,start,args,opt_duration){tr.model.TimedEvent.call(this,start);this.category=category||'';this.title=title;this.colorId=colorId;this.start=start;this.args=args;this.id=id;this.startSlice=undefined;this.endSlice=undefined;this.startStackFrame=undefined;this.endStackFrame=undefined;if(opt_duration!==undefined){this.duration=opt_duration;}}
4912FlowEvent.prototype={__proto__:tr.model.TimedEvent.prototype,get userFriendlyName(){return'Flow event named '+this.title+' at '+
4913tr.b.Unit.byName.timeStampInMs.format(this.timestamp);}};tr.model.EventRegistry.register(FlowEvent,{name:'flowEvent',pluralName:'flowEvents'});return{FlowEvent,};});'use strict';tr.exportTo('tr.model',function(){function ContainerMemoryDump(start){tr.model.TimedEvent.call(this,start);this.levelOfDetail=undefined;this.memoryAllocatorDumps_=undefined;this.memoryAllocatorDumpsByFullName_=undefined;}
4914ContainerMemoryDump.LevelOfDetail={BACKGROUND:0,LIGHT:1,DETAILED:2};ContainerMemoryDump.prototype={__proto__:tr.model.TimedEvent.prototype,shiftTimestampsForward(amount){this.start+=amount;},get memoryAllocatorDumps(){return this.memoryAllocatorDumps_;},set memoryAllocatorDumps(memoryAllocatorDumps){this.memoryAllocatorDumps_=memoryAllocatorDumps;this.forceRebuildingMemoryAllocatorDumpByFullNameIndex();},getMemoryAllocatorDumpByFullName(fullName){if(this.memoryAllocatorDumps_===undefined)return undefined;if(this.memoryAllocatorDumpsByFullName_===undefined){const index={};function addDumpsToIndex(dumps){dumps.forEach(function(dump){index[dump.fullName]=dump;addDumpsToIndex(dump.children);});}
4915addDumpsToIndex(this.memoryAllocatorDumps_);this.memoryAllocatorDumpsByFullName_=index;}
4916return this.memoryAllocatorDumpsByFullName_[fullName];},forceRebuildingMemoryAllocatorDumpByFullNameIndex(){this.memoryAllocatorDumpsByFullName_=undefined;},iterateRootAllocatorDumps(fn,opt_this){if(this.memoryAllocatorDumps===undefined)return;this.memoryAllocatorDumps.forEach(fn,opt_this||this);}};return{ContainerMemoryDump,};});'use strict';tr.exportTo('tr.model',function(){function MemoryAllocatorDump(containerMemoryDump,fullName,opt_guid){this.fullName=fullName;this.parent=undefined;this.children=[];this.numerics={};this.diagnostics={};this.containerMemoryDump=containerMemoryDump;this.owns=undefined;this.ownedBy=[];this.ownedBySiblingSizes=new Map();this.retains=[];this.retainedBy=[];this.weak=false;this.infos=[];this.guid=opt_guid;}
4917MemoryAllocatorDump.SIZE_NUMERIC_NAME='size';MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME='effective_size';MemoryAllocatorDump.RESIDENT_SIZE_NUMERIC_NAME='resident_size';MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME=MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME;MemoryAllocatorDump.prototype={get name(){return this.fullName.substring(this.fullName.lastIndexOf('/')+1);},get quantifiedName(){return'\''+this.fullName+'\' in '+
4918this.containerMemoryDump.containerName;},getDescendantDumpByFullName(fullName){return this.containerMemoryDump.getMemoryAllocatorDumpByFullName(this.fullName+'/'+fullName);},isDescendantOf(otherDump){if(this===otherDump)return true;if(this.parent===undefined)return false;return this.parent.isDescendantOf(otherDump);},addNumeric(name,numeric){if(!(numeric instanceof tr.b.Scalar)){throw new Error('Numeric value must be an instance of Scalar.');}
4919if(name in this.numerics){throw new Error('Duplicate numeric name: '+name+'.');}
4920this.numerics[name]=numeric;},addDiagnostic(name,text){if(typeof text!=='string'){throw new Error('Diagnostic text must be a string.');}
4921if(name in this.diagnostics){throw new Error('Duplicate diagnostic name: '+name+'.');}
4922this.diagnostics[name]=text;},aggregateNumericsRecursively(opt_model){const numericNames=new Set();this.children.forEach(function(child){child.aggregateNumericsRecursively(opt_model);for(const[item,value]of Object.entries(child.numerics)){numericNames.add(item,value);}},this);numericNames.forEach(function(numericName){if(numericName===MemoryAllocatorDump.SIZE_NUMERIC_NAME||numericName===MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME||this.numerics[numericName]!==undefined){return;}
4923this.numerics[numericName]=MemoryAllocatorDump.aggregateNumerics(this.children.map(function(child){return child.numerics[numericName];}),opt_model);},this);}};MemoryAllocatorDump.aggregateNumerics=function(numerics,opt_model){let shouldLogWarning=!!opt_model;let aggregatedUnit=undefined;let aggregatedValue=0;numerics.forEach(function(numeric){if(numeric===undefined)return;const unit=numeric.unit;if(aggregatedUnit===undefined){aggregatedUnit=unit;}else if(aggregatedUnit!==unit){if(shouldLogWarning){opt_model.importWarning({type:'numeric_parse_error',message:'Multiple units provided for numeric: \''+
4924aggregatedUnit.unitName+'\' and \''+unit.unitName+'\'.'});shouldLogWarning=false;}
4925aggregatedUnit=tr.b.Unit.byName.unitlessNumber_smallerIsBetter;}
4926aggregatedValue+=numeric.value;},this);if(aggregatedUnit===undefined)return undefined;return new tr.b.Scalar(aggregatedUnit,aggregatedValue);};function MemoryAllocatorDumpLink(source,target,opt_importance){this.source=source;this.target=target;this.importance=opt_importance;this.size=undefined;}
4927const MemoryAllocatorDumpInfoType={PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN:0,PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER:1};return{MemoryAllocatorDump,MemoryAllocatorDumpLink,MemoryAllocatorDumpInfoType,};});'use strict';tr.exportTo('tr.model',function(){function GlobalMemoryDump(model,start){tr.model.ContainerMemoryDump.call(this,start);this.model=model;this.processMemoryDumps={};}
4928const SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.SIZE_NUMERIC_NAME;const EFFECTIVE_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME;const MemoryAllocatorDumpInfoType=tr.model.MemoryAllocatorDumpInfoType;const PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN=MemoryAllocatorDumpInfoType.PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN;const PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER=MemoryAllocatorDumpInfoType.PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER;function getSize(dump){const numeric=dump.numerics[SIZE_NUMERIC_NAME];if(numeric===undefined)return 0;return numeric.value;}
4929function hasSize(dump){return dump.numerics[SIZE_NUMERIC_NAME]!==undefined;}
4930function optional(value,defaultValue){if(value===undefined)return defaultValue;return value;}
4931GlobalMemoryDump.prototype={__proto__:tr.model.ContainerMemoryDump.prototype,get userFriendlyName(){return'Global memory dump at '+
4932tr.b.Unit.byName.timeStampInMs.format(this.start);},get containerName(){return'global space';},finalizeGraph(){this.removeWeakDumps();this.setUpTracingOverheadOwnership();this.aggregateNumerics();this.calculateSizes();this.calculateEffectiveSizes();this.discountTracingOverheadFromVmRegions();this.forceRebuildingMemoryAllocatorDumpByFullNameIndices();},removeWeakDumps(){this.traverseAllocatorDumpsInDepthFirstPreOrder(function(dump){if(dump.weak)return;if((dump.owns!==undefined&&dump.owns.target.weak)||(dump.parent!==undefined&&dump.parent.weak)){dump.weak=true;}});function removeWeakDumpsFromListRecursively(dumps){tr.b.inPlaceFilter(dumps,function(dump){if(dump.weak){return false;}
4933removeWeakDumpsFromListRecursively(dump.children);tr.b.inPlaceFilter(dump.ownedBy,function(ownershipLink){return!ownershipLink.source.weak;});return true;});}
4934this.iterateContainerDumps(function(containerDump){const memoryAllocatorDumps=containerDump.memoryAllocatorDumps;if(memoryAllocatorDumps!==undefined){removeWeakDumpsFromListRecursively(memoryAllocatorDumps);}});},calculateSizes(){this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateMemoryAllocatorDumpSize_.bind(this));},calculateMemoryAllocatorDumpSize_(dump){let shouldDefineSize=false;function getDependencySize(dependencyDump){const numeric=dependencyDump.numerics[SIZE_NUMERIC_NAME];if(numeric===undefined)return 0;shouldDefineSize=true;return numeric.value;}
4935const sizeNumeric=dump.numerics[SIZE_NUMERIC_NAME];let size=0;let checkDependencySizeIsConsistent=function(){};if(sizeNumeric!==undefined){size=sizeNumeric.value;shouldDefineSize=true;if(sizeNumeric.unit!==tr.b.Unit.byName.sizeInBytes_smallerIsBetter){this.model.importWarning({type:'memory_dump_parse_error',message:'Invalid unit of \'size\' numeric of memory allocator '+'dump '+dump.quantifiedName+': '+
4936sizeNumeric.unit.unitName+'.'});}
4937checkDependencySizeIsConsistent=function(dependencySize,dependencyInfoType,dependencyName){if(size>=dependencySize)return;this.model.importWarning({type:'memory_dump_parse_error',message:'Size provided by memory allocator dump \''+
4938dump.fullName+'\''+
4939tr.b.Unit.byName.sizeInBytes.format(size)+') is less than '+dependencyName+' ('+
4940tr.b.Unit.byName.sizeInBytes.format(dependencySize)+').'});dump.infos.push({type:dependencyInfoType,providedSize:size,dependencySize});}.bind(this);}
4941let aggregatedChildrenSize=0;const allOverlaps={};dump.children.forEach(function(childDump){function aggregateDescendantDump(descendantDump){const ownedDumpLink=descendantDump.owns;if(ownedDumpLink!==undefined&&ownedDumpLink.target.isDescendantOf(dump)){let ownedChildDump=ownedDumpLink.target;while(ownedChildDump.parent!==dump){ownedChildDump=ownedChildDump.parent;}
4942if(childDump!==ownedChildDump){const ownedBySiblingSize=getDependencySize(descendantDump);if(ownedBySiblingSize>0){const previousTotalOwnedBySiblingSize=ownedChildDump.ownedBySiblingSizes.get(childDump)||0;const updatedTotalOwnedBySiblingSize=previousTotalOwnedBySiblingSize+ownedBySiblingSize;ownedChildDump.ownedBySiblingSizes.set(childDump,updatedTotalOwnedBySiblingSize);}}
4943return;}
4944if(descendantDump.children.length===0){aggregatedChildrenSize+=getDependencySize(descendantDump);return;}
4945descendantDump.children.forEach(aggregateDescendantDump);}
4946aggregateDescendantDump(childDump);});checkDependencySizeIsConsistent(aggregatedChildrenSize,PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN,'the aggregated size of its children');let largestOwnerSize=0;dump.ownedBy.forEach(function(ownershipLink){const owner=ownershipLink.source;const ownerSize=getDependencySize(owner);largestOwnerSize=Math.max(largestOwnerSize,ownerSize);});checkDependencySizeIsConsistent(largestOwnerSize,PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER,'the size of its largest owner');if(!shouldDefineSize){delete dump.numerics[SIZE_NUMERIC_NAME];return;}
4947size=Math.max(size,aggregatedChildrenSize,largestOwnerSize);dump.numerics[SIZE_NUMERIC_NAME]=new tr.b.Scalar(tr.b.Unit.byName.sizeInBytes_smallerIsBetter,size);if(aggregatedChildrenSize<size&&dump.children!==undefined&&dump.children.length>0){const virtualChild=new tr.model.MemoryAllocatorDump(dump.containerMemoryDump,dump.fullName+'/<unspecified>');virtualChild.parent=dump;dump.children.unshift(virtualChild);virtualChild.numerics[SIZE_NUMERIC_NAME]=new tr.b.Scalar(tr.b.Unit.byName.sizeInBytes_smallerIsBetter,size-aggregatedChildrenSize);}},calculateEffectiveSizes(){this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpSubSizes_.bind(this));this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpOwnershipCoefficient_.bind(this));this.traverseAllocatorDumpsInDepthFirstPreOrder(this.calculateDumpCumulativeOwnershipCoefficient_.bind(this));this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpEffectiveSize_.bind(this));},calculateDumpSubSizes_(dump){if(!hasSize(dump))return;if(dump.children===undefined||dump.children.length===0){const size=getSize(dump);dump.notOwningSubSize_=size;dump.notOwnedSubSize_=size;return;}
4948let notOwningSubSize=0;dump.children.forEach(function(childDump){if(childDump.owns!==undefined)return;notOwningSubSize+=optional(childDump.notOwningSubSize_,0);});dump.notOwningSubSize_=notOwningSubSize;let notOwnedSubSize=0;dump.children.forEach(function(childDump){if(childDump.ownedBy.length===0){notOwnedSubSize+=optional(childDump.notOwnedSubSize_,0);return;}
4949let largestChildOwnerSize=0;childDump.ownedBy.forEach(function(ownershipLink){largestChildOwnerSize=Math.max(largestChildOwnerSize,getSize(ownershipLink.source));});notOwnedSubSize+=getSize(childDump)-largestChildOwnerSize;});dump.notOwnedSubSize_=notOwnedSubSize;},calculateDumpOwnershipCoefficient_(dump){if(!hasSize(dump))return;if(dump.ownedBy.length===0)return;const owners=dump.ownedBy.map(function(ownershipLink){return{dump:ownershipLink.source,importance:optional(ownershipLink.importance,0),notOwningSubSize:optional(ownershipLink.source.notOwningSubSize_,0)};});owners.sort(function(a,b){if(a.importance===b.importance){return a.notOwningSubSize-b.notOwningSubSize;}
4950return b.importance-a.importance;});let currentImportanceStartPos=0;let alreadyAttributedSubSize=0;while(currentImportanceStartPos<owners.length){const currentImportance=owners[currentImportanceStartPos].importance;let nextImportanceStartPos=currentImportanceStartPos+1;while(nextImportanceStartPos<owners.length&&owners[nextImportanceStartPos].importance===currentImportance){nextImportanceStartPos++;}
4951let attributedNotOwningSubSize=0;for(let pos=currentImportanceStartPos;pos<nextImportanceStartPos;pos++){const owner=owners[pos];const notOwningSubSize=owner.notOwningSubSize;if(notOwningSubSize>alreadyAttributedSubSize){attributedNotOwningSubSize+=(notOwningSubSize-alreadyAttributedSubSize)/(nextImportanceStartPos-pos);alreadyAttributedSubSize=notOwningSubSize;}
4952let owningCoefficient=0;if(notOwningSubSize!==0){owningCoefficient=attributedNotOwningSubSize/notOwningSubSize;}
4953owner.dump.owningCoefficient_=owningCoefficient;}
4954currentImportanceStartPos=nextImportanceStartPos;}
4955const notOwnedSubSize=optional(dump.notOwnedSubSize_,0);const remainderSubSize=notOwnedSubSize-alreadyAttributedSubSize;let ownedCoefficient=0;if(notOwnedSubSize!==0){ownedCoefficient=remainderSubSize/notOwnedSubSize;}
4956dump.ownedCoefficient_=ownedCoefficient;},calculateDumpCumulativeOwnershipCoefficient_(dump){if(!hasSize(dump))return;let cumulativeOwnedCoefficient=optional(dump.ownedCoefficient_,1);const parent=dump.parent;if(dump.parent!==undefined){cumulativeOwnedCoefficient*=dump.parent.cumulativeOwnedCoefficient_;}
4957dump.cumulativeOwnedCoefficient_=cumulativeOwnedCoefficient;let cumulativeOwningCoefficient;if(dump.owns!==undefined){cumulativeOwningCoefficient=dump.owningCoefficient_*dump.owns.target.cumulativeOwningCoefficient_;}else if(dump.parent!==undefined){cumulativeOwningCoefficient=dump.parent.cumulativeOwningCoefficient_;}else{cumulativeOwningCoefficient=1;}
4958dump.cumulativeOwningCoefficient_=cumulativeOwningCoefficient;},calculateDumpEffectiveSize_(dump){if(!hasSize(dump)){delete dump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME];return;}
4959let effectiveSize;if(dump.children===undefined||dump.children.length===0){effectiveSize=getSize(dump)*dump.cumulativeOwningCoefficient_*dump.cumulativeOwnedCoefficient_;}else{effectiveSize=0;dump.children.forEach(function(childDump){if(!hasSize(childDump))return;effectiveSize+=childDump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME].value;});}
4960dump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME]=new tr.b.Scalar(tr.b.Unit.byName.sizeInBytes_smallerIsBetter,effectiveSize);},aggregateNumerics(){this.iterateRootAllocatorDumps(function(dump){dump.aggregateNumericsRecursively(this.model);});this.iterateRootAllocatorDumps(this.propagateNumericsAndDiagnosticsRecursively);for(const processMemoryDump of Object.values(this.processMemoryDumps)){processMemoryDump.iterateRootAllocatorDumps(function(dump){dump.aggregateNumericsRecursively(this.model);},this);}},propagateNumericsAndDiagnosticsRecursively(globalAllocatorDump){['numerics','diagnostics'].forEach(function(field){for(const[name,value]of
4961Object.entries(globalAllocatorDump[field])){globalAllocatorDump.ownedBy.forEach(function(ownershipLink){const processAllocatorDump=ownershipLink.source;if(processAllocatorDump[field][name]!==undefined){return;}
4962processAllocatorDump[field][name]=value;});}});globalAllocatorDump.children.forEach(this.propagateNumericsAndDiagnosticsRecursively,this);},setUpTracingOverheadOwnership(){for(const dump of Object.values(this.processMemoryDumps)){dump.setUpTracingOverheadOwnership(this.model);}},discountTracingOverheadFromVmRegions(){for(const dump of Object.values(this.processMemoryDumps)){dump.discountTracingOverheadFromVmRegions(this.model);}},forceRebuildingMemoryAllocatorDumpByFullNameIndices(){this.iterateContainerDumps(function(containerDump){containerDump.forceRebuildingMemoryAllocatorDumpByFullNameIndex();});},iterateContainerDumps(fn){fn.call(this,this);for(const processDump of Object.values(this.processMemoryDumps)){fn.call(this,processDump);}},iterateAllRootAllocatorDumps(fn){this.iterateContainerDumps(function(containerDump){containerDump.iterateRootAllocatorDumps(fn,this);});},traverseAllocatorDumpsInDepthFirstPostOrder(fn){const visitedDumps=new WeakSet();const openDumps=new WeakSet();function visit(dump){if(visitedDumps.has(dump))return;if(openDumps.has(dump)){throw new Error(dump.userFriendlyName+' contains a cycle');}
4963openDumps.add(dump);dump.ownedBy.forEach(function(ownershipLink){visit.call(this,ownershipLink.source);},this);dump.children.forEach(visit,this);fn.call(this,dump);visitedDumps.add(dump);openDumps.delete(dump);}
4964this.iterateAllRootAllocatorDumps(visit);},traverseAllocatorDumpsInDepthFirstPreOrder(fn){const visitedDumps=new WeakSet();function visit(dump){if(visitedDumps.has(dump))return;if(dump.owns!==undefined&&!visitedDumps.has(dump.owns.target)){return;}
4965if(dump.parent!==undefined&&!visitedDumps.has(dump.parent)){return;}
4966fn.call(this,dump);visitedDumps.add(dump);dump.ownedBy.forEach(function(ownershipLink){visit.call(this,ownershipLink.source);},this);dump.children.forEach(visit,this);}
4967this.iterateAllRootAllocatorDumps(visit);}};tr.model.EventRegistry.register(GlobalMemoryDump,{name:'globalMemoryDump',pluralName:'globalMemoryDumps'});return{GlobalMemoryDump,};});'use strict';tr.exportTo('tr.model',function(){const InstantEventType={GLOBAL:1,PROCESS:2};function InstantEvent(category,title,colorId,start,args){tr.model.TimedEvent.call(this,start);this.category=category||'';this.title=title;this.colorId=colorId;this.args=args;this.type=undefined;}
4968InstantEvent.prototype={__proto__:tr.model.TimedEvent.prototype};function GlobalInstantEvent(category,title,colorId,start,args){InstantEvent.apply(this,arguments);this.type=InstantEventType.GLOBAL;}
4969GlobalInstantEvent.prototype={__proto__:InstantEvent.prototype,get userFriendlyName(){return'Global instant event '+this.title+' @ '+
4970tr.b.Unit.byName.timeStampInMs.format(start);}};function ProcessInstantEvent(category,title,colorId,start,args){InstantEvent.apply(this,arguments);this.type=InstantEventType.PROCESS;}
4971ProcessInstantEvent.prototype={__proto__:InstantEvent.prototype,get userFriendlyName(){return'Process-level instant event '+this.title+' @ '+
4972tr.b.Unit.byName.timeStampInMs.format(start);}};tr.model.EventRegistry.register(InstantEvent,{name:'instantEvent',pluralName:'instantEvents'});return{GlobalInstantEvent,ProcessInstantEvent,InstantEventType,InstantEvent,};});'use strict';tr.exportTo('tr.model',function(){const Cpu=tr.model.Cpu;const ProcessBase=tr.model.ProcessBase;function Kernel(model){ProcessBase.call(this,model);this.cpus={};this.softwareMeasuredCpuCount_=undefined;}
4973Kernel.compare=function(x,y){return 0;};Kernel.prototype={__proto__:ProcessBase.prototype,compareTo(that){return Kernel.compare(this,that);},get userFriendlyName(){return'Kernel';},get userFriendlyDetails(){return'Kernel';},get stableId(){return'Kernel';},getOrCreateCpu(cpuNumber){if(!this.cpus[cpuNumber]){this.cpus[cpuNumber]=new Cpu(this,cpuNumber);}
4974return this.cpus[cpuNumber];},get softwareMeasuredCpuCount(){return this.softwareMeasuredCpuCount_;},set softwareMeasuredCpuCount(softwareMeasuredCpuCount){if(this.softwareMeasuredCpuCount_!==undefined&&this.softwareMeasuredCpuCount_!==softwareMeasuredCpuCount){throw new Error('Cannot change the softwareMeasuredCpuCount once it is set');}
4975this.softwareMeasuredCpuCount_=softwareMeasuredCpuCount;},get bestGuessAtCpuCount(){const realCpuCount=Object.keys(this.cpus).length;if(realCpuCount!==0){return realCpuCount;}
4976return this.softwareMeasuredCpuCount;},updateBounds(){ProcessBase.prototype.updateBounds.call(this);for(const cpuNumber in this.cpus){const cpu=this.cpus[cpuNumber];cpu.updateBounds();this.bounds.addRange(cpu.bounds);}},createSubSlices(){ProcessBase.prototype.createSubSlices.call(this);for(const cpuNumber in this.cpus){const cpu=this.cpus[cpuNumber];cpu.createSubSlices();}},addCategoriesToDict(categoriesDict){ProcessBase.prototype.addCategoriesToDict.call(this,categoriesDict);for(const cpuNumber in this.cpus){this.cpus[cpuNumber].addCategoriesToDict(categoriesDict);}},getSettingsKey(){return'kernel';},*childEventContainers(){yield*ProcessBase.prototype.childEventContainers.call(this);yield*Object.values(this.cpus);},};return{Kernel,};});'use strict';tr.exportTo('tr.model',function(){function ModelIndices(model){this.flowEventsById_={};model.flowEvents.forEach(function(fe){if(fe.id!==undefined){if(!this.flowEventsById_.hasOwnProperty(fe.id)){this.flowEventsById_[fe.id]=[];}
4977this.flowEventsById_[fe.id].push(fe);}},this);}
4978ModelIndices.prototype={addEventWithId(id,event){if(!this.flowEventsById_.hasOwnProperty(id)){this.flowEventsById_[id]=[];}
4979this.flowEventsById_[id].push(event);},getFlowEventsWithId(id){if(!this.flowEventsById_.hasOwnProperty(id)){return[];}
4980return this.flowEventsById_[id];}};return{ModelIndices,};});'use strict';tr.exportTo('tr.model',function(){function ModelStats(){this.traceEventCountsByKey_=new Map();this.allTraceEventStats_=[];this.traceEventStatsInTimeIntervals_=new Map();this.allTraceEventStatsInTimeIntervals_=[];this.hasEventSizesinBytes_=false;this.traceImportDurationMs_=undefined;}
4981ModelStats.prototype={TIME_INTERVAL_SIZE_IN_MS:100,willProcessBasicTraceEvent(phase,category,title,ts,opt_eventSizeinBytes){const key=phase+'/'+category+'/'+title;let eventStats=this.traceEventCountsByKey_.get(key);if(eventStats===undefined){eventStats={phase,category,title,numEvents:0,totalEventSizeinBytes:0};this.traceEventCountsByKey_.set(key,eventStats);this.allTraceEventStats_.push(eventStats);}
4982eventStats.numEvents++;const timeIntervalKey=Math.floor(tr.b.Unit.timestampFromUs(ts)/this.TIME_INTERVAL_SIZE_IN_MS);let eventStatsByTimeInverval=this.traceEventStatsInTimeIntervals_.get(timeIntervalKey);if(eventStatsByTimeInverval===undefined){eventStatsByTimeInverval={timeInterval:timeIntervalKey,numEvents:0,totalEventSizeinBytes:0};this.traceEventStatsInTimeIntervals_.set(timeIntervalKey,eventStatsByTimeInverval);this.allTraceEventStatsInTimeIntervals_.push(eventStatsByTimeInverval);}
4983eventStatsByTimeInverval.numEvents++;if(opt_eventSizeinBytes!==undefined){this.hasEventSizesinBytes_=true;eventStats.totalEventSizeinBytes+=opt_eventSizeinBytes;eventStatsByTimeInverval.totalEventSizeinBytes+=opt_eventSizeinBytes;}},get allTraceEventStats(){return this.allTraceEventStats_;},get allTraceEventStatsInTimeIntervals(){return this.allTraceEventStatsInTimeIntervals_;},get hasEventSizesinBytes(){return this.hasEventSizesinBytes_;},get traceImportDurationMs(){return this.traceImportDurationMs_;},set traceImportDurationMs(traceImportDurationMs){this.traceImportDurationMs_=traceImportDurationMs;}};return{ModelStats,};});'use strict';tr.exportTo('tr.model',function(){function VMRegion(startAddress,sizeInBytes,protectionFlags,mappedFile,byteStats){this.startAddress=startAddress;this.sizeInBytes=sizeInBytes;this.protectionFlags=protectionFlags;this.mappedFile=mappedFile||'';this.byteStats=byteStats||{};}
4984VMRegion.PROTECTION_FLAG_READ=4;VMRegion.PROTECTION_FLAG_WRITE=2;VMRegion.PROTECTION_FLAG_EXECUTE=1;VMRegion.PROTECTION_FLAG_MAYSHARE=128;VMRegion.prototype={get uniqueIdWithinProcess(){return this.mappedFile+'#'+this.startAddress;},get protectionFlagsToString(){if(this.protectionFlags===undefined)return undefined;return((this.protectionFlags&VMRegion.PROTECTION_FLAG_READ?'r':'-')+
4985(this.protectionFlags&VMRegion.PROTECTION_FLAG_WRITE?'w':'-')+
4986(this.protectionFlags&VMRegion.PROTECTION_FLAG_EXECUTE?'x':'-')+
4987(this.protectionFlags&VMRegion.PROTECTION_FLAG_MAYSHARE?'s':'p'));}};VMRegion.fromDict=function(dict){return new VMRegion(dict.startAddress,dict.sizeInBytes,dict.protectionFlags,dict.mappedFile,dict.byteStats);};function VMRegionClassificationNode(opt_rule){this.rule_=opt_rule||VMRegionClassificationNode.CLASSIFICATION_RULES;this.hasRegions=false;this.sizeInBytes=undefined;this.byteStats={};this.children_=undefined;this.regions_=[];}
4988VMRegionClassificationNode.CLASSIFICATION_RULES={name:'Total',children:[{name:'Android',file:/^\/dev\/ashmem(?!\/libc malloc)/,children:[{name:'Java runtime',file:/^\/dev\/ashmem\/dalvik-/,children:[{name:'Spaces',file:/\/dalvik-(alloc|main|large object|non moving|zygote) space/,children:[{name:'Normal',file:/\/dalvik-(alloc|main)/},{name:'Large',file:/\/dalvik-large object/},{name:'Zygote',file:/\/dalvik-zygote/},{name:'Non-moving',file:/\/dalvik-non moving/}]},{name:'Linear Alloc',file:/\/dalvik-LinearAlloc/},{name:'Indirect Reference Table',file:/\/dalvik-indirect.ref/},{name:'Cache',file:/\/dalvik-jit-code-cache/},{name:'Accounting'}]},{name:'Cursor',file:/\/CursorWindow/},{name:'Ashmem'}]},{name:'Native heap',file:/^((\[heap\])|(\[anon:)|(\/dev\/ashmem\/libc malloc)|(\[discounted tracing overhead\])|$)/},{name:'Stack',file:/^\[stack/},{name:'Files',file:/\.((((jar)|(apk)|(ttf)|(odex)|(oat)|(art))$)|(dex)|(so))/,children:[{name:'so',file:/\.so/},{name:'jar',file:/\.jar$/},{name:'apk',file:/\.apk$/},{name:'ttf',file:/\.ttf$/},{name:'dex',file:/\.((dex)|(odex$))/},{name:'oat',file:/\.oat$/},{name:'art',file:/\.art$/}]},{name:'Devices',file:/(^\/dev\/)|(anon_inode:dmabuf)/,children:[{name:'GPU',file:/\/((nv)|(mali)|(kgsl))/},{name:'DMA',file:/anon_inode:dmabuf/}]}]};VMRegionClassificationNode.OTHER_RULE={name:'Other'};VMRegionClassificationNode.fromRegions=function(regions,opt_rules){const tree=new VMRegionClassificationNode(opt_rules);tree.regions_=regions;for(let i=0;i<regions.length;i++){tree.addStatsFromRegion_(regions[i]);}
4989return tree;};VMRegionClassificationNode.prototype={get title(){return this.rule_.name;},get children(){if(this.isLeafNode){return undefined;}
4990if(this.children_===undefined){this.buildTree_();}
4991return this.children_;},get regions(){if(!this.isLeafNode){return undefined;}
4992return this.regions_;},get allRegionsForTesting(){if(this.regions_!==undefined){if(this.children_!==undefined){throw new Error('Internal error: a VM region classification node '+'cannot have both regions and children');}
4993return this.regions_;}
4994let regions=[];this.children_.forEach(function(childNode){regions=regions.concat(childNode.allRegionsForTesting);});return regions;},get isLeafNode(){const children=this.rule_.children;return children===undefined||children.length===0;},addRegion(region){this.addRegionRecursively_(region,true);},someRegion(fn,opt_this){if(this.regions_!==undefined){return this.regions_.some(fn,opt_this);}
4995return this.children_.some(function(childNode){return childNode.someRegion(fn,opt_this);});},addRegionRecursively_(region,addStatsToThisNode){if(addStatsToThisNode){this.addStatsFromRegion_(region);}
4996if(this.regions_!==undefined){if(this.children_!==undefined){throw new Error('Internal error: a VM region classification node '+'cannot have both regions and children');}
4997this.regions_.push(region);return;}
4998function regionRowMatchesChildNide(child){const fileRegExp=child.rule_.file;if(fileRegExp===undefined)return true;return fileRegExp.test(region.mappedFile);}
4999let matchedChild=this.children_.find(regionRowMatchesChildNide);if(matchedChild===undefined){if(this.children_.length!==this.rule_.children.length){throw new Error('Internal error');}
5000matchedChild=new VMRegionClassificationNode(VMRegionClassificationNode.OTHER_RULE);this.children_.push(matchedChild);}
5001matchedChild.addRegionRecursively_(region,true);},buildTree_(){const cachedRegions=this.regions_;this.regions_=undefined;this.buildChildNodesRecursively_();for(let i=0;i<cachedRegions.length;i++){this.addRegionRecursively_(cachedRegions[i],false);}},buildChildNodesRecursively_(){if(this.children_!==undefined){throw new Error('Internal error: Classification node already has children');}
5002if(this.regions_!==undefined&&this.regions_.length!==0){throw new Error('Internal error: Classification node should have no regions');}
5003if(this.isLeafNode){return;}
5004this.regions_=undefined;this.children_=this.rule_.children.map(function(childRule){const child=new VMRegionClassificationNode(childRule);child.buildChildNodesRecursively_();return child;});},addStatsFromRegion_(region){this.hasRegions=true;const regionSizeInBytes=region.sizeInBytes;if(regionSizeInBytes!==undefined){this.sizeInBytes=(this.sizeInBytes||0)+regionSizeInBytes;}
5005const thisByteStats=this.byteStats;const regionByteStats=region.byteStats;for(const byteStatName in regionByteStats){const regionByteStatValue=regionByteStats[byteStatName];if(regionByteStatValue===undefined)continue;thisByteStats[byteStatName]=(thisByteStats[byteStatName]||0)+regionByteStatValue;}}};return{VMRegion,VMRegionClassificationNode,};});'use strict';tr.exportTo('tr.model',function(){const DISCOUNTED_ALLOCATOR_NAMES=['winheap','malloc'];const TRACING_OVERHEAD_PATH=['allocated_objects','tracing_overhead'];const SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.SIZE_NUMERIC_NAME;const RESIDENT_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.RESIDENT_SIZE_NUMERIC_NAME;function getSizeNumericValue(dump,sizeNumericName){const sizeNumeric=dump.numerics[sizeNumericName];if(sizeNumeric===undefined)return 0;return sizeNumeric.value;}
5006function ProcessMemoryDump(globalMemoryDump,process,start){tr.model.ContainerMemoryDump.call(this,start);this.process=process;this.globalMemoryDump=globalMemoryDump;this.totals=undefined;this.vmRegions=undefined;this.heapDumps=undefined;this.tracingOverheadOwnershipSetUp_=false;this.tracingOverheadDiscountedFromVmRegions_=false;}
5007ProcessMemoryDump.prototype={__proto__:tr.model.ContainerMemoryDump.prototype,get userFriendlyName(){return'Process memory dump at '+
5008tr.b.Unit.byName.timeStampInMs.format(this.start);},get containerName(){return this.process.userFriendlyName;},get processMemoryDumps(){const dumps={};dumps[this.process.pid]=this;return dumps;},get hasOwnVmRegions(){return this.vmRegions!==undefined;},setUpTracingOverheadOwnership(opt_model){if(this.tracingOverheadOwnershipSetUp_)return;this.tracingOverheadOwnershipSetUp_=true;const tracingDump=this.getMemoryAllocatorDumpByFullName('tracing');if(tracingDump===undefined||tracingDump.owns!==undefined){return;}
5009if(tracingDump.owns!==undefined)return;const hasDiscountedFromAllocatorDumps=DISCOUNTED_ALLOCATOR_NAMES.some(function(allocatorName){const allocatorDump=this.getMemoryAllocatorDumpByFullName(allocatorName);if(allocatorDump===undefined){return false;}
5010let nextPathIndex=0;let currentDump=allocatorDump;let currentFullName=allocatorName;for(;nextPathIndex<TRACING_OVERHEAD_PATH.length;nextPathIndex++){const childFullName=currentFullName+'/'+
5011TRACING_OVERHEAD_PATH[nextPathIndex];const childDump=this.getMemoryAllocatorDumpByFullName(childFullName);if(childDump===undefined)break;currentDump=childDump;currentFullName=childFullName;}
5012for(;nextPathIndex<TRACING_OVERHEAD_PATH.length;nextPathIndex++){const childFullName=currentFullName+'/'+
5013TRACING_OVERHEAD_PATH[nextPathIndex];const childDump=new tr.model.MemoryAllocatorDump(currentDump.containerMemoryDump,childFullName);childDump.parent=currentDump;currentDump.children.push(childDump);currentFullName=childFullName;currentDump=childDump;}
5014const ownershipLink=new tr.model.MemoryAllocatorDumpLink(tracingDump,currentDump);tracingDump.owns=ownershipLink;currentDump.ownedBy.push(ownershipLink);return true;},this);if(hasDiscountedFromAllocatorDumps){this.forceRebuildingMemoryAllocatorDumpByFullNameIndex();}},discountTracingOverheadFromVmRegions(opt_model){if(this.tracingOverheadDiscountedFromVmRegions_)return;this.tracingOverheadDiscountedFromVmRegions_=true;const tracingDump=this.getMemoryAllocatorDumpByFullName('tracing');if(tracingDump===undefined)return;const discountedSize=getSizeNumericValue(tracingDump,SIZE_NUMERIC_NAME);const discountedResidentSize=getSizeNumericValue(tracingDump,RESIDENT_SIZE_NUMERIC_NAME);if(discountedSize<=0&&discountedResidentSize<=0)return;if(this.totals!==undefined){if(this.totals.residentBytes!==undefined){this.totals.residentBytes-=discountedResidentSize;}
5015if(this.totals.peakResidentBytes!==undefined){this.totals.peakResidentBytes-=discountedResidentSize;}}
5016if(this.vmRegions!==undefined){const hasSizeInBytes=this.vmRegions.sizeInBytes!==undefined;const hasPrivateDirtyResident=this.vmRegions.byteStats.privateDirtyResident!==undefined;const hasProportionalResident=this.vmRegions.byteStats.proportionalResident!==undefined;if((hasSizeInBytes&&discountedSize>0)||((hasPrivateDirtyResident||hasProportionalResident)&&discountedResidentSize>0)){const byteStats={};if(hasPrivateDirtyResident){byteStats.privateDirtyResident=-discountedResidentSize;}
5017if(hasProportionalResident){byteStats.proportionalResident=-discountedResidentSize;}
5018this.vmRegions.addRegion(tr.model.VMRegion.fromDict({mappedFile:'[discounted tracing overhead]',sizeInBytes:hasSizeInBytes?-discountedSize:undefined,byteStats}));}}}};ProcessMemoryDump.hookUpMostRecentVmRegionsLinks=function(processDumps){let mostRecentVmRegions=undefined;processDumps.forEach(function(processDump){if(processDump.vmRegions!==undefined){mostRecentVmRegions=processDump.vmRegions;}
5019processDump.mostRecentVmRegions=mostRecentVmRegions;});};tr.model.EventRegistry.register(ProcessMemoryDump,{name:'processMemoryDump',pluralName:'processMemoryDumps'});return{ProcessMemoryDump,};});'use strict';tr.exportTo('tr.model',function(){const ProcessBase=tr.model.ProcessBase;const ProcessInstantEvent=tr.model.ProcessInstantEvent;const Frame=tr.model.Frame;const ProcessMemoryDump=tr.model.ProcessMemoryDump;function Process(model,pid){if(model===undefined){throw new Error('model must be provided');}
5020if(pid===undefined){throw new Error('pid must be provided');}
5021tr.model.ProcessBase.call(this,model);this.pid=pid;this.name=undefined;this.labels=[];this.uptime_seconds=0;this.instantEvents=[];this.memoryDumps=[];this.frames=[];this.activities=[];}
5022Process.compare=function(x,y){let tmp=tr.model.ProcessBase.compare(x,y);if(tmp)return tmp;if(x.name!==undefined){if(y.name!==undefined){tmp=x.name.localeCompare(y.name);}else{tmp=-1;}}else if(y.name!==undefined){tmp=1;}
5023if(tmp)return tmp;tmp=tr.b.compareArrays(x.labels,y.labels,function(x,y){return x.localeCompare(y);});if(tmp)return tmp;return x.pid-y.pid;};Process.prototype={__proto__:tr.model.ProcessBase.prototype,get stableId(){return this.pid;},compareTo(that){return Process.compare(this,that);},*childEvents(){yield*ProcessBase.prototype.childEvents.call(this);yield*this.instantEvents;yield*this.frames;yield*this.memoryDumps;},addLabelIfNeeded(labelName){for(let i=0;i<this.labels.length;i++){if(this.labels[i]===labelName)return;}
5024this.labels.push(labelName);},get userFriendlyName(){let res;if(this.name){res=this.name+' (pid '+this.pid+')';}else{res='Process '+this.pid;}
5025if(this.labels.length){res+=': '+this.labels.join(', ');}
5026if(this.uptime_seconds){res+=', uptime:'+this.uptime_seconds+'s';}
5027return res;},get userFriendlyDetails(){if(this.name){return this.name+' (pid '+this.pid+')';}
5028return'pid: '+this.pid;},getSettingsKey(){if(!this.name)return undefined;if(!this.labels.length)return'processes.'+this.name;return'processes.'+this.name+'.'+this.labels.join('.');},shiftTimestampsForward(amount){for(let i=0;i<this.instantEvents.length;i++){this.instantEvents[i].start+=amount;}
5029for(let i=0;i<this.frames.length;i++){this.frames[i].shiftTimestampsForward(amount);}
5030for(let i=0;i<this.memoryDumps.length;i++){this.memoryDumps[i].shiftTimestampsForward(amount);}
5031for(let i=0;i<this.activities.length;i++){this.activities[i].shiftTimestampsForward(amount);}
5032tr.model.ProcessBase.prototype.shiftTimestampsForward.apply(this,arguments);},updateBounds(){tr.model.ProcessBase.prototype.updateBounds.apply(this);for(let i=0;i<this.frames.length;i++){this.frames[i].addBoundsToRange(this.bounds);}
5033for(let i=0;i<this.memoryDumps.length;i++){this.memoryDumps[i].addBoundsToRange(this.bounds);}
5034for(let i=0;i<this.activities.length;i++){this.activities[i].addBoundsToRange(this.bounds);}},sortMemoryDumps(){this.memoryDumps.sort(function(x,y){return x.start-y.start;});tr.model.ProcessMemoryDump.hookUpMostRecentVmRegionsLinks(this.memoryDumps);}};return{Process,};});'use strict';tr.exportTo('tr.model',function(){function Sample(start,title,leafNode,thread,opt_cpu,opt_weight,opt_args){tr.model.TimedEvent.call(this,start);this.start_=start;this.title_=title;this.leafNode_=leafNode;this.thread_=thread;this.colorId_=leafNode.colorId;this.cpu_=opt_cpu;this.weight_=opt_weight;this.args=opt_args||{};}
5035Sample.prototype={__proto__:tr.model.TimedEvent.prototype,get title(){return this.title_;},get colorId(){return this.colorId_;},get thread(){return this.thread_;},get leafNode(){return this.leafNode_;},get userFriendlyName(){return'Sample at '+
5036tr.b.Unit.byName.timeStampInMs.format(this.start);},get userFriendlyStack(){return this.leafNode_.userFriendlyStack;},getNodesAsArray(){const nodes=[];let node=this.leafNode_;while(node!==undefined){nodes.push(node);node=node.parentNode;}
5037return nodes;},get cpu(){return this.cpu_;},get weight(){return this.weight_;},};tr.model.EventRegistry.register(Sample,{name:'Sample',pluralName:'Samples'});return{Sample,};});'use strict';tr.exportTo('tr.model',function(){function StackFrame(parentFrame,id,title,colorId,opt_sourceInfo){if(id===undefined){throw new Error('id must be given');}
5038this.parentFrame_=parentFrame;this.id=id;this.title_=title;this.colorId=colorId;this.children=[];this.sourceInfo_=opt_sourceInfo;if(this.parentFrame_){this.parentFrame_.addChild(this);}}
5039StackFrame.prototype={get parentFrame(){return this.parentFrame_;},get title(){if(this.sourceInfo_){const src=this.sourceInfo_.toString();return this.title_+(src===''?'':' '+src);}
5040return this.title_;},get domain(){let result='unknown';if(this.sourceInfo_&&this.sourceInfo_.domain){result=this.sourceInfo_.domain;}
5041if(result==='unknown'&&this.parentFrame){result=this.parentFrame.domain;}
5042return result;},get sourceInfo(){return this.sourceInfo_;},set parentFrame(parentFrame){if(this.parentFrame_){Polymer.dom(this.parentFrame_).removeChild(this);}
5043this.parentFrame_=parentFrame;if(this.parentFrame_){this.parentFrame_.addChild(this);}},addChild(child){this.children.push(child);},removeChild(child){const i=this.children.indexOf(child.id);if(i===-1){throw new Error('omg');}
5044this.children.splice(i,1);},removeAllChildren(){for(let i=0;i<this.children.length;i++){this.children[i].parentFrame_=undefined;}
5045this.children.splice(0,this.children.length);},get stackTrace(){const stack=[this];let cur=this.parentFrame;while(cur){stack.push(cur);cur=cur.parentFrame;}
5046return stack;},getUserFriendlyStackTrace(){return this.stackTrace.map(function(x){return x.title;});}};return{StackFrame,};});'use strict';tr.exportTo('tr.model.um',function(){class Segment extends tr.model.TimedEvent{constructor(start,duration){super(start);this.duration=duration;this.expectations_=[];}
5047get expectations(){return this.expectations_;}
5048clone(){const clone=new Segment(this.start,this.duration);clone.expectations.push(...this.expectations);return clone;}
5049addSegment(other){this.duration+=other.duration;this.expectations.push(...other.expectations);}}
5050return{Segment,};});'use strict';tr.exportTo('tr.model.um',function(){class UserModel extends tr.model.EventContainer{constructor(parentModel){super();this.parentModel_=parentModel;this.expectations_=new tr.model.EventSet();this.segments_=[];}
5051get stableId(){return'UserModel';}
5052get parentModel(){return this.parentModel_;}
5053sortExpectations(){this.expectations_.sortEvents((x,y)=>(x.start-y.start));}
5054get expectations(){return this.expectations_;}
5055shiftTimestampsForward(amount){}
5056addCategoriesToDict(categoriesDict){}
5057get segments(){return this.segments_;}*childEvents(){yield*this.expectations;}*childEventContainers(){}
5058updateBounds(){this.bounds.reset();for(const expectation of this.expectations){expectation.addBoundsToRange(this.bounds);}}
5059resegment(getKeyForSegment){const newSegments=[];let prevKey=undefined;let prevSegment=undefined;for(let i=0;i<this.segments.length;++i){const segment=this.segments[i];const key=getKeyForSegment(segment,i);if(prevSegment!==undefined&&key===prevKey){prevSegment.addSegment(segment);}else{prevSegment=segment.clone();newSegments.push(prevSegment);}
5060prevKey=key;}
5061return newSegments;}}
5062return{UserModel,};});'use strict';tr.exportTo('tr',function(){const Process=tr.model.Process;const Device=tr.model.Device;const Kernel=tr.model.Kernel;const GlobalMemoryDump=tr.model.GlobalMemoryDump;const GlobalInstantEvent=tr.model.GlobalInstantEvent;const FlowEvent=tr.model.FlowEvent;const Alert=tr.model.Alert;const Sample=tr.model.Sample;function Model(){tr.model.EventContainer.call(this);tr.b.EventTarget.decorate(this);this.timestampShiftToZeroAmount_=0;this.faviconHue='blue';this.device=new Device(this);this.kernel=new Kernel(this);this.processes={};this.metadata=[];this.categories=[];this.instantEvents=[];this.flowEvents=[];this.clockSyncManager=new tr.model.ClockSyncManager();this.intrinsicTimeUnit_=undefined;this.stackFrames={};this.samples=[];this.alerts=[];this.userModel=new tr.model.um.UserModel(this);this.flowIntervalTree=new tr.b.IntervalTree((f)=>f.start,(f)=>f.end);this.globalMemoryDumps=[];this.userFriendlyCategoryDrivers_=[];this.annotationsByGuid_={};this.modelIndices=undefined;this.stats=new tr.model.ModelStats();this.importWarnings_=[];this.reportedImportWarnings_={};this.isTimeHighResolution_=true;this.patchupsToApply_=[];this.doesHelperGUIDSupportThisModel_={};this.helpersByConstructorGUID_={};this.eventsByStableId_=undefined;}
5063Model.prototype={__proto__:tr.model.EventContainer.prototype,getEventByStableId(stableId){if(this.eventsByStableId_===undefined){this.eventsByStableId_={};for(const event of this.getDescendantEvents()){this.eventsByStableId_[event.stableId]=event;}}
5064return this.eventsByStableId_[stableId];},getOrCreateHelper(constructor){if(!constructor.guid){throw new Error('Helper constructors must have GUIDs');}
5065if(this.helpersByConstructorGUID_[constructor.guid]===undefined){if(this.doesHelperGUIDSupportThisModel_[constructor.guid]===undefined){this.doesHelperGUIDSupportThisModel_[constructor.guid]=constructor.supportsModel(this);}
5066if(!this.doesHelperGUIDSupportThisModel_[constructor.guid]){return undefined;}
5067this.helpersByConstructorGUID_[constructor.guid]=new constructor(this);}
5068return this.helpersByConstructorGUID_[constructor.guid];},*childEvents(){yield*this.globalMemoryDumps;yield*this.instantEvents;yield*this.flowEvents;yield*this.alerts;yield*this.samples;},*childEventContainers(){yield this.userModel;yield this.device;yield this.kernel;yield*Object.values(this.processes);},iterateAllPersistableObjects(callback){this.kernel.iterateAllPersistableObjects(callback);for(const pid in this.processes){this.processes[pid].iterateAllPersistableObjects(callback);}},updateBounds(){this.bounds.reset();const bounds=this.bounds;for(const ec of this.childEventContainers()){ec.updateBounds();bounds.addRange(ec.bounds);}
5069for(const event of this.childEvents()){event.addBoundsToRange(bounds);}},shiftWorldToZero(){const shiftAmount=-this.bounds.min;this.timestampShiftToZeroAmount_=shiftAmount;for(const ec of this.childEventContainers()){ec.shiftTimestampsForward(shiftAmount);}
5070for(const event of this.childEvents()){event.start+=shiftAmount;}
5071this.updateBounds();},convertTimestampToModelTime(sourceClockDomainName,ts){if(sourceClockDomainName!=='traceEventClock'){throw new Error('Only traceEventClock is supported.');}
5072return tr.b.Unit.timestampFromUs(ts)+
5073this.timestampShiftToZeroAmount_;},get numProcesses(){let n=0;for(const p in this.processes){n++;}
5074return n;},getProcess(pid){return this.processes[pid];},getOrCreateProcess(pid){if(!this.processes[pid]){this.processes[pid]=new Process(this,pid);}
5075return this.processes[pid];},addStackFrame(stackFrame){if(this.stackFrames[stackFrame.id]){throw new Error('Stack frame already exists');}
5076this.stackFrames[stackFrame.id]=stackFrame;return stackFrame;},updateCategories_(){const categoriesDict={};this.userModel.addCategoriesToDict(categoriesDict);this.device.addCategoriesToDict(categoriesDict);this.kernel.addCategoriesToDict(categoriesDict);for(const pid in this.processes){this.processes[pid].addCategoriesToDict(categoriesDict);}
5077this.categories=[];for(const category in categoriesDict){if(category!==''){this.categories.push(category);}}},getAllThreads(){const threads=[];for(const tid in this.kernel.threads){threads.push(process.threads[tid]);}
5078for(const pid in this.processes){const process=this.processes[pid];for(const tid in process.threads){threads.push(process.threads[tid]);}}
5079return threads;},getAllProcesses(opt_predicate){const processes=[];for(const pid in this.processes){const process=this.processes[pid];if(opt_predicate===undefined||opt_predicate(process)){processes.push(process);}}
5080return processes;},getAllCounters(){const counters=[];counters.push.apply(counters,Object.values(this.device.counters||{}));counters.push.apply(counters,Object.values(this.kernel.counters||{}));for(const pid in this.processes){const process=this.processes[pid];for(const tid in process.counters){counters.push(process.counters[tid]);}}
5081return counters;},getAnnotationByGUID(guid){return this.annotationsByGuid_[guid];},addAnnotation(annotation){if(!annotation.guid){throw new Error('Annotation with undefined guid given');}
5082this.annotationsByGuid_[annotation.guid]=annotation;tr.b.dispatchSimpleEvent(this,'annotationChange');},removeAnnotation(annotation){this.annotationsByGuid_[annotation.guid].onRemove();delete this.annotationsByGuid_[annotation.guid];tr.b.dispatchSimpleEvent(this,'annotationChange');},getAllAnnotations(){return Object.values(this.annotationsByGuid_);},addUserFriendlyCategoryDriver(ufcd){this.userFriendlyCategoryDrivers_.push(ufcd);},getUserFriendlyCategoryFromEvent(event){for(let i=0;i<this.userFriendlyCategoryDrivers_.length;i++){const ufc=this.userFriendlyCategoryDrivers_[i].fromEvent(event);if(ufc!==undefined)return ufc;}
5083return undefined;},findAllThreadsNamed(name){const namedThreads=[];namedThreads.push.apply(namedThreads,this.kernel.findAllThreadsNamed(name));for(const pid in this.processes){namedThreads.push.apply(namedThreads,this.processes[pid].findAllThreadsNamed(name));}
5084return namedThreads;},get importOptions(){return this.importOptions_;},set importOptions(options){this.importOptions_=options;},get intrinsicTimeUnit(){if(this.intrinsicTimeUnit_===undefined){return tr.b.TimeDisplayModes.ms;}
5085return this.intrinsicTimeUnit_;},set intrinsicTimeUnit(value){if(this.intrinsicTimeUnit_===value)return;if(this.intrinsicTimeUnit_!==undefined){throw new Error('Intrinsic time unit already set');}
5086this.intrinsicTimeUnit_=value;},get isTimeHighResolution(){return this.isTimeHighResolution_;},set isTimeHighResolution(value){this.isTimeHighResolution_=value;},get canonicalUrl(){return this.canonicalUrl_;},set canonicalUrl(value){if(this.canonicalUrl_===value)return;if(this.canonicalUrl_!==undefined){throw new Error('canonicalUrl already set');}
5087this.canonicalUrl_=value;},importWarning(data){data.showToUser=!!data.showToUser;this.importWarnings_.push(data);if(this.reportedImportWarnings_[data.type]===true)return;this.reportedImportWarnings_[data.type]=true;},get hasImportWarnings(){return(this.importWarnings_.length>0);},get importWarnings(){return this.importWarnings_;},get importWarningsThatShouldBeShownToUser(){return this.importWarnings_.filter(function(warning){return warning.showToUser;});},autoCloseOpenSlices(){this.samples.sort(function(x,y){return x.start-y.start;});this.updateBounds();this.kernel.autoCloseOpenSlices();for(const pid in this.processes){this.processes[pid].autoCloseOpenSlices();}},createSubSlices(){this.kernel.createSubSlices();for(const pid in this.processes){this.processes[pid].createSubSlices();}},preInitializeObjects(){for(const pid in this.processes){this.processes[pid].preInitializeObjects();}},initializeObjects(){for(const pid in this.processes){this.processes[pid].initializeObjects();}},pruneEmptyContainers(){this.kernel.pruneEmptyContainers();for(const pid in this.processes){this.processes[pid].pruneEmptyContainers();}},mergeKernelWithUserland(){for(const pid in this.processes){this.processes[pid].mergeKernelWithUserland();}},computeWorldBounds(shiftWorldToZero){this.updateBounds();this.updateCategories_();if(shiftWorldToZero){this.shiftWorldToZero();}},buildFlowEventIntervalTree(){for(let i=0;i<this.flowEvents.length;++i){const flowEvent=this.flowEvents[i];this.flowIntervalTree.insert(flowEvent);}
5088this.flowIntervalTree.updateHighValues();},cleanupUndeletedObjects(){for(const pid in this.processes){this.processes[pid].autoDeleteObjects(this.bounds.max);}},sortMemoryDumps(){this.globalMemoryDumps.sort(function(x,y){return x.start-y.start;});for(const pid in this.processes){this.processes[pid].sortMemoryDumps();}},finalizeMemoryGraphs(){this.globalMemoryDumps.forEach(function(dump){dump.finalizeGraph();});},buildEventIndices(){this.modelIndices=new tr.model.ModelIndices(this);},sortAlerts(){this.alerts.sort(function(x,y){return x.start-y.start;});},applyObjectRefPatchups(){const unresolved=[];this.patchupsToApply_.forEach(function(patchup){if(patchup.pidRef in this.processes){const snapshot=this.processes[patchup.pidRef].objects.getSnapshotAt(patchup.scopedId,patchup.ts);if(snapshot){patchup.object[patchup.field]=snapshot;snapshot.referencedAt(patchup.item,patchup.object,patchup.field);return;}}
5089unresolved.push(patchup);},this);this.patchupsToApply_=unresolved;},replacePIDRefsInPatchups(oldPidRef,newPidRef){this.patchupsToApply_.forEach(function(patchup){if(patchup.pidRef===oldPidRef){patchup.pidRef=newPidRef;}});},joinRefs(){this.joinObjectRefs_();this.applyObjectRefPatchups();},joinObjectRefs_(){for(const[pid,process]of Object.entries(this.processes)){this.joinObjectRefsForProcess_(pid,process);}},joinObjectRefsForProcess_(pid,process){for(const thread of Object.values(process.threads)){thread.asyncSliceGroup.slices.forEach(function(item){this.searchItemForIDRefs_(pid,'start',item);},this);thread.sliceGroup.slices.forEach(function(item){this.searchItemForIDRefs_(pid,'start',item);},this);}
5090process.objects.iterObjectInstances(function(instance){instance.snapshots.forEach(function(item){this.searchItemForIDRefs_(pid,'ts',item);},this);},this);},searchItemForIDRefs_(pid,itemTimestampField,item){if(!item.args&&!item.contexts)return;const patchupsToApply=this.patchupsToApply_;function handleField(object,fieldName,fieldValue){if(!fieldValue||(!fieldValue.id_ref&&!fieldValue.idRef)){return;}
5091const scope=fieldValue.scope||tr.model.OBJECT_DEFAULT_SCOPE;const idRef=fieldValue.id_ref||fieldValue.idRef;const scopedId=new tr.model.ScopedId(scope,idRef);const pidRef=fieldValue.pid_ref||fieldValue.pidRef||pid;const ts=item[itemTimestampField];patchupsToApply.push({item,object,field:fieldName,pidRef,scopedId,ts});}
5092function iterObjectFieldsRecursively(object){if(!(object instanceof Object))return;if((object instanceof tr.model.ObjectSnapshot)||(object instanceof Float32Array)||(object instanceof tr.b.math.Quad)){return;}
5093if(object instanceof Array){for(let i=0;i<object.length;i++){handleField(object,i,object[i]);iterObjectFieldsRecursively(object[i]);}
5094return;}
5095for(const key in object){const value=object[key];handleField(object,key,value);iterObjectFieldsRecursively(value);}}
5096iterObjectFieldsRecursively(item.args);iterObjectFieldsRecursively(item.contexts);}};return{Model,};});'use strict';tr.exportTo('tr.e.importer.etw',function(){const kThreadGuid='3D6FA8D1-FE05-11D0-9DDA-00C04FD7BA7C';const kThreadDCStartOpcode=3;function Decoder(){this.payload_=new DataView(new ArrayBuffer(256));}
5097Decoder.prototype={__proto__:Object.prototype,reset(base64Payload){const decodedSize=tr.b.Base64.getDecodedBufferLength(base64Payload);if(decodedSize>this.payload_.byteLength){this.payload_=new DataView(new ArrayBuffer(decodedSize));}
5098tr.b.Base64.DecodeToTypedArray(base64Payload,this.payload_);this.position_=0;},skip(length){this.position_+=length;},decodeUInt8(){const result=this.payload_.getUint8(this.position_,true);this.position_+=1;return result;},decodeUInt16(){const result=this.payload_.getUint16(this.position_,true);this.position_+=2;return result;},decodeUInt32(){const result=this.payload_.getUint32(this.position_,true);this.position_+=4;return result;},decodeUInt64ToString(){const low=this.decodeUInt32();const high=this.decodeUInt32();const lowStr=('0000000'+low.toString(16)).substr(-8);const highStr=('0000000'+high.toString(16)).substr(-8);const result=highStr+lowStr;return result;},decodeInt8(){const result=this.payload_.getInt8(this.position_,true);this.position_+=1;return result;},decodeInt16(){const result=this.payload_.getInt16(this.position_,true);this.position_+=2;return result;},decodeInt32(){const result=this.payload_.getInt32(this.position_,true);this.position_+=4;return result;},decodeInt64ToString(){return this.decodeUInt64ToString();},decodeUInteger(is64){if(is64){return this.decodeUInt64ToString();}
5099return this.decodeUInt32();},decodeString(){let str='';while(true){const c=this.decodeUInt8();if(!c)return str;str=str+String.fromCharCode(c);}},decodeW16String(){let str='';while(true){const c=this.decodeUInt16();if(!c)return str;str=str+String.fromCharCode(c);}},decodeFixedW16String(length){const oldPosition=this.position_;let str='';for(let i=0;i<length;i++){const c=this.decodeUInt16();if(!c)break;str=str+String.fromCharCode(c);}
5100this.position_=oldPosition+2*length;return str;},decodeBytes(length){const bytes=[];for(let i=0;i<length;++i){const c=this.decodeUInt8();bytes.push(c);}
5101return bytes;},decodeSID(is64){const pSid=this.decodeUInteger(is64);const attributes=this.decodeUInt32();if(is64){this.decodeUInt32();}
5102const revision=this.decodeUInt8();const subAuthorityCount=this.decodeUInt8();this.decodeUInt16();this.decodeUInt32();if(revision!==1){throw new Error('Invalid SID revision: could not decode the SID structure.');}
5103const sid=this.decodeBytes(4*subAuthorityCount);return{pSid,attributes,sid};},decodeSystemTime(){const wYear=this.decodeInt16();const wMonth=this.decodeInt16();const wDayOfWeek=this.decodeInt16();const wDay=this.decodeInt16();const wHour=this.decodeInt16();const wMinute=this.decodeInt16();const wSecond=this.decodeInt16();const wMilliseconds=this.decodeInt16();return{wYear,wMonth,wDayOfWeek,wDay,wHour,wMinute,wSecond,wMilliseconds};},decodeTimeZoneInformation(){const bias=this.decodeUInt32();const standardName=this.decodeFixedW16String(32);const standardDate=this.decodeSystemTime();const standardBias=this.decodeUInt32();const daylightName=this.decodeFixedW16String(32);const daylightDate=this.decodeSystemTime();const daylightBias=this.decodeUInt32();return{bias,standardName,standardDate,standardBias,daylightName,daylightDate,daylightBias};}};function EtwImporter(model,events){this.importPriority=3;this.model_=model;this.events_=events;this.handlers_={};this.decoder_=new Decoder();this.walltime_=undefined;this.ticks_=undefined;this.is64bit_=undefined;this.tidsToPid_={};const allTypeInfos=tr.e.importer.etw.Parser.getAllRegisteredTypeInfos();this.parsers_=allTypeInfos.map(function(typeInfo){return new typeInfo.constructor(this);},this);}
5104EtwImporter.canImport=function(events){if(!events.hasOwnProperty('name')||!events.hasOwnProperty('content')||events.name!=='ETW'){return false;}
5105return true;};EtwImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'EtwImporter';},get model(){return this.model_;},createThreadIfNeeded(pid,tid){this.tidsToPid_[tid]=pid;},removeThreadIfPresent(tid){this.tidsToPid_[tid]=undefined;},getPidFromWindowsTid(tid){if(tid===0)return 0;const pid=this.tidsToPid_[tid];if(pid===undefined){return 0;}
5106return pid;},getThreadFromWindowsTid(tid){const pid=this.getPidFromWindowsTid(tid);const process=this.model_.getProcess(pid);if(!process)return undefined;return process.getThread(tid);},getOrCreateCpu(cpuNumber){const cpu=this.model_.kernel.getOrCreateCpu(cpuNumber);return cpu;},importEvents(){this.events_.content.forEach(this.parseInfo.bind(this));if(this.walltime_===undefined||this.ticks_===undefined){throw Error('Cannot find clock sync information in the system trace.');}
5107if(this.is64bit_===undefined){throw Error('Cannot determine pointer size of the system trace.');}
5108this.events_.content.forEach(this.parseEvent.bind(this));},importTimestamp(timestamp){const ts=parseInt(timestamp,16);return(ts-this.walltime_+this.ticks_)/1000.;},parseInfo(event){if(event.hasOwnProperty('guid')&&event.hasOwnProperty('walltime')&&event.hasOwnProperty('tick')&&event.guid==='ClockSync'){this.walltime_=parseInt(event.walltime,16);this.ticks_=parseInt(event.tick,16);}
5109if(this.is64bit_===undefined&&event.hasOwnProperty('guid')&&event.hasOwnProperty('op')&&event.hasOwnProperty('ver')&&event.hasOwnProperty('payload')&&event.guid===kThreadGuid&&event.op===kThreadDCStartOpcode){const decodedSize=tr.b.Base64.getDecodedBufferLength(event.payload);if(event.ver===1){if(decodedSize>=52){this.is64bit_=true;}else{this.is64bit_=false;}}else if(event.ver===2){if(decodedSize>=64){this.is64bit_=true;}else{this.is64bit_=false;}}else if(event.ver===3){if(decodedSize>=60){this.is64bit_=true;}else{this.is64bit_=false;}}}
5110return true;},parseEvent(event){if(!event.hasOwnProperty('guid')||!event.hasOwnProperty('op')||!event.hasOwnProperty('ver')||!event.hasOwnProperty('cpu')||!event.hasOwnProperty('ts')||!event.hasOwnProperty('payload')){return false;}
5111const timestamp=this.importTimestamp(event.ts);const header={guid:event.guid,opcode:event.op,version:event.ver,cpu:event.cpu,timestamp,is64:this.is64bit_};const decoder=this.decoder_;decoder.reset(event.payload);const handler=this.getEventHandler(header.guid,header.opcode);if(!handler)return false;if(!handler(header,decoder)){this.model_.importWarning({type:'parse_error',message:'Malformed '+header.guid+' event ('+event.payload+')'});return false;}
5112return true;},registerEventHandler(guid,opcode,handler){if(this.handlers_[guid]===undefined){this.handlers_[guid]=[];}
5113this.handlers_[guid][opcode]=handler;},getEventHandler(guid,opcode){if(this.handlers_[guid]===undefined){return undefined;}
5114return this.handlers_[guid][opcode];}};tr.importer.Importer.register(EtwImporter);return{EtwImporter,};});'use strict';tr.exportTo('tr.b',function(){class TraceStream{static get HEADER_SIZE(){return Math.pow(2,10);}
5115static get CHUNK_SIZE(){return Math.pow(2,20);}
5116get isBinary(){throw new Error('Not implemented');}
5117get hasData(){throw new Error('Not implemented');}
5118get header(){throw new Error('Not implemented');}
5119readUntilDelimiter(delim){throw new Error('Not implemented');}
5120readNumBytes(opt_size){throw new Error('Not implemented');}
5121rewind(){throw new Error('Not implemented');}
5122substream(offset,opt_length,opt_headerSize){throw new Error('Not implemented');}}
5123return{TraceStream,};});'use strict';tr.exportTo('tr.e.importer.fuchsia',function(){const IMPORT_PRIORITY=0;const IDLE_THREAD_THRESHOLD=6444000000;class FuchsiaImporter extends tr.importer.Importer{constructor(model,eventData){super(model,eventData);this.importPriority=IMPORT_PRIORITY;this.model_=model;this.events_=eventData.events;this.parsers_=[];this.threadInfo_=new Map();this.processNames_=new Map();}
5124static canImport(eventData){if(eventData instanceof tr.b.TraceStream){if(eventData.isBinary)return false;eventData=eventData.header;}
5125if(eventData instanceof Object&&eventData.type==='fuchsia'){return true;}
5126return false;}
5127get importerName(){return'FuchsiaImporter';}
5128get model(){return this.model_;}
5129importClockSyncMarkers(){}
5130finalizeImport(){}
5131processContextSwitchEvent_(event){let tid=event.in.tid;let threadName=tid.toString();let procName='';if(this.threadInfo_.has(tid)){const threadInfo=this.threadInfo_.get(tid);threadName=threadInfo.name;const pid=threadInfo.pid;if(this.processNames_.has(pid)){procName=this.processNames_.get(pid)+':';}}
5132const name=procName+threadName;if(tid>IDLE_THREAD_THRESHOLD){tid=undefined;}
5133const cpu=this.model_.kernel.getOrCreateCpu(event.cpu);cpu.switchActiveThread(tr.b.Unit.timestampFromUs(event.ts),{},tid,name,tid);}
5134processProcessInfoEvent_(event){const process=this.model_.getOrCreateProcess(event.pid);process.name=event.name;this.processNames_.set(event.pid,event.name);if('sort_index'in event){process.sortIndex=event.sort_index;}}
5135processThreadInfoEvent_(event){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);thread.name=event.name;this.threadInfo_.set(event.tid,{'name':event.name,'pid':event.pid});if('sort_index'in event){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);thread.sortIndex=event.sort_index;}}
5136processEvent_(event){switch(event.ph){case'k':this.processContextSwitchEvent_(event);break;case'p':this.processProcessInfoEvent_(event);break;case't':this.processThreadInfoEvent_(event);break;}}
5137importEvents(){for(const event of this.events_){this.processEvent_(event);}}}
5138tr.importer.Importer.register(FuchsiaImporter);return{FuchsiaImporter,IMPORT_PRIORITY,};});'use strict';tr.exportTo('tr.b',function(){const MAX_FUNCTION_ARGS_COUNT=Math.pow(2,15)-1;class InMemoryTraceStream extends tr.b.TraceStream{constructor(buffer,isBinary,opt_headerSize){super();if(!buffer instanceof Uint8Array){throw new Error('buffer should be a Uint8Array');}
5139const headerSize=opt_headerSize||tr.b.TraceStream.HEADER_SIZE;this.data_=buffer;this.isBinary_=isBinary;this.header_=InMemoryTraceStream.uint8ArrayToString_(this.data_.subarray(0,headerSize));this.cursor_=0;}
5140get isBinary(){return this.isBinary_;}
5141get hasData(){return this.cursor_<this.data_.length;}
5142get header(){return this.header_;}
5143get data(){return this.data_;}
5144toString(){this.rewind();return this.readNumBytes(Number.MAX_VALUE);}
5145readUntilDelimiter(delim){if(delim.length!==1){throw new Error('delim must be exactly one character');}
5146const offset=this.data_.indexOf(delim.charCodeAt(0),this.cursor_)+1;return this.readToOffset_(offset>0?Math.min(offset,this.data_.length):this.data_.length);}
5147readNumBytes(opt_size){if(opt_size!==undefined&&opt_size<=0){throw new Error(`readNumBytes expects a positive size (${opt_size} given)`);}
5148const size=opt_size||tr.b.TraceStream.CHUNK_SIZE;const offset=Math.min(this.cursor_+size,this.data_.length);return this.readToOffset_(offset);}
5149rewind(){this.cursor_=0;}
5150substream(startOffset,opt_endOffset,opt_headerSize){return new InMemoryTraceStream(this.data_.subarray(startOffset,opt_endOffset),this.isBinary_,opt_headerSize);}
5151readToOffset_(offset){const out=InMemoryTraceStream.uint8ArrayToString_(this.data_.subarray(this.cursor_,offset));this.cursor_=offset;return out;}
5152static uint8ArrayToString_(arr){if(typeof TextDecoder!=='undefined'){const decoder=new TextDecoder('utf-8');return decoder.decode(arr);}
5153const c=[];for(let i=0;i<arr.length;i+=MAX_FUNCTION_ARGS_COUNT){c.push(String.fromCharCode(...arr.subarray(i,i+MAX_FUNCTION_ARGS_COUNT)));}
5154return c.join('');}}
5155return{InMemoryTraceStream,};});!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).pako=t()}}(function(){return function t(e,a,i){function n(s,o){if(!a[s]){if(!e[s]){var l="function"==typeof require&&require;if(!o&&l)return l(s,!0);if(r)return r(s,!0);var h=new Error("Cannot find module '"+s+"'");throw h.code="MODULE_NOT_FOUND",h}var d=a[s]={exports:{}};e[s][0].call(d.exports,function(t){var a=e[s][1][t];return n(a||t)},d,d.exports,t,e,a,i)}return a[s].exports}for(var r="function"==typeof require&&require,s=0;s<i.length;s++)n(i[s]);return n}({1:[function(t,e,a){"use strict";function i(t){if(!(this instanceof i))return new i(t);this.options=s.assign({level:_,method:c,chunkSize:16384,windowBits:15,memLevel:8,strategy:u,to:""},t||{});var e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new h,this.strm.avail_out=0;var a=r.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==f)throw new Error(l[a]);if(e.header&&r.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(n="string"==typeof e.dictionary?o.string2buf(e.dictionary):"[object ArrayBuffer]"===d.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,(a=r.deflateSetDictionary(this.strm,n))!==f)throw new Error(l[a]);this._dict_set=!0}}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg||l[a.err];return a.result}var r=t("./zlib/deflate"),s=t("./utils/common"),o=t("./utils/strings"),l=t("./zlib/messages"),h=t("./zlib/zstream"),d=Object.prototype.toString,f=0,_=-1,u=0,c=8;i.prototype.push=function(t,e){var a,i,n=this.strm,l=this.options.chunkSize;if(this.ended)return!1;i=e===~~e?e:!0===e?4:0,"string"==typeof t?n.input=o.string2buf(t):"[object ArrayBuffer]"===d.call(t)?n.input=new Uint8Array(t):n.input=t,n.next_in=0,n.avail_in=n.input.length;do{if(0===n.avail_out&&(n.output=new s.Buf8(l),n.next_out=0,n.avail_out=l),1!==(a=r.deflate(n,i))&&a!==f)return this.onEnd(a),this.ended=!0,!1;0!==n.avail_out&&(0!==n.avail_in||4!==i&&2!==i)||("string"===this.options.to?this.onData(o.buf2binstring(s.shrinkBuf(n.output,n.next_out))):this.onData(s.shrinkBuf(n.output,n.next_out)))}while((n.avail_in>0||0===n.avail_out)&&1!==a);return 4===i?(a=r.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===f):2!==i||(this.onEnd(f),n.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===f&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=s.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Deflate=i,a.deflate=n,a.deflateRaw=function(t,e){return e=e||{},e.raw=!0,n(t,e)},a.gzip=function(t,e){return e=e||{},e.gzip=!0,n(t,e)}},{"./utils/common":3,"./utils/strings":4,"./zlib/deflate":8,"./zlib/messages":13,"./zlib/zstream":15}],2:[function(t,e,a){"use strict";function i(t){if(!(this instanceof i))return new i(t);this.options=s.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new d,this.strm.avail_out=0;var a=r.inflateInit2(this.strm,e.windowBits);if(a!==l.Z_OK)throw new Error(h[a]);this.header=new f,r.inflateGetHeader(this.strm,this.header)}function n(t,e){var a=new i(e);if(a.push(t,!0),a.err)throw a.msg||h[a.err];return a.result}var r=t("./zlib/inflate"),s=t("./utils/common"),o=t("./utils/strings"),l=t("./zlib/constants"),h=t("./zlib/messages"),d=t("./zlib/zstream"),f=t("./zlib/gzheader"),_=Object.prototype.toString;i.prototype.push=function(t,e){var a,i,n,h,d,f,u=this.strm,c=this.options.chunkSize,b=this.options.dictionary,g=!1;if(this.ended)return!1;i=e===~~e?e:!0===e?l.Z_FINISH:l.Z_NO_FLUSH,"string"==typeof t?u.input=o.binstring2buf(t):"[object ArrayBuffer]"===_.call(t)?u.input=new Uint8Array(t):u.input=t,u.next_in=0,u.avail_in=u.input.length;do{if(0===u.avail_out&&(u.output=new s.Buf8(c),u.next_out=0,u.avail_out=c),(a=r.inflate(u,l.Z_NO_FLUSH))===l.Z_NEED_DICT&&b&&(f="string"==typeof b?o.string2buf(b):"[object ArrayBuffer]"===_.call(b)?new Uint8Array(b):b,a=r.inflateSetDictionary(this.strm,f)),a===l.Z_BUF_ERROR&&!0===g&&(a=l.Z_OK,g=!1),a!==l.Z_STREAM_END&&a!==l.Z_OK)return this.onEnd(a),this.ended=!0,!1;u.next_out&&(0!==u.avail_out&&a!==l.Z_STREAM_END&&(0!==u.avail_in||i!==l.Z_FINISH&&i!==l.Z_SYNC_FLUSH)||("string"===this.options.to?(n=o.utf8border(u.output,u.next_out),h=u.next_out-n,d=o.buf2string(u.output,n),u.next_out=h,u.avail_out=c-h,h&&s.arraySet(u.output,u.output,n,h,0),this.onData(d)):this.onData(s.shrinkBuf(u.output,u.next_out)))),0===u.avail_in&&0===u.avail_out&&(g=!0)}while((u.avail_in>0||0===u.avail_out)&&a!==l.Z_STREAM_END);return a===l.Z_STREAM_END&&(i=l.Z_FINISH),i===l.Z_FINISH?(a=r.inflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===l.Z_OK):i!==l.Z_SYNC_FLUSH||(this.onEnd(l.Z_OK),u.avail_out=0,!0)},i.prototype.onData=function(t){this.chunks.push(t)},i.prototype.onEnd=function(t){t===l.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=s.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Inflate=i,a.inflate=n,a.inflateRaw=function(t,e){return e=e||{},e.raw=!0,n(t,e)},a.ungzip=n},{"./utils/common":3,"./utils/strings":4,"./zlib/constants":6,"./zlib/gzheader":9,"./zlib/inflate":11,"./zlib/messages":13,"./zlib/zstream":15}],3:[function(t,e,a){"use strict";function i(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;a.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var a=e.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(var n in a)i(a,n)&&(t[n]=a[n])}}return t},a.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var r={arraySet:function(t,e,a,i,n){if(e.subarray&&t.subarray)t.set(e.subarray(a,a+i),n);else for(var r=0;r<i;r++)t[n+r]=e[a+r]},flattenChunks:function(t){var e,a,i,n,r,s;for(i=0,e=0,a=t.length;e<a;e++)i+=t[e].length;for(s=new Uint8Array(i),n=0,e=0,a=t.length;e<a;e++)r=t[e],s.set(r,n),n+=r.length;return s}},s={arraySet:function(t,e,a,i,n){for(var r=0;r<i;r++)t[n+r]=e[a+r]},flattenChunks:function(t){return[].concat.apply([],t)}};a.setTyped=function(t){t?(a.Buf8=Uint8Array,a.Buf16=Uint16Array,a.Buf32=Int32Array,a.assign(a,r)):(a.Buf8=Array,a.Buf16=Array,a.Buf32=Array,a.assign(a,s))},a.setTyped(n)},{}],4:[function(t,e,a){"use strict";function i(t,e){if(e<65537&&(t.subarray&&s||!t.subarray&&r))return String.fromCharCode.apply(null,n.shrinkBuf(t,e));for(var a="",i=0;i<e;i++)a+=String.fromCharCode(t[i]);return a}var n=t("./common"),r=!0,s=!0;try{String.fromCharCode.apply(null,[0])}catch(t){r=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){s=!1}for(var o=new n.Buf8(256),l=0;l<256;l++)o[l]=l>=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;o[254]=o[254]=1,a.string2buf=function(t){var e,a,i,r,s,o=t.length,l=0;for(r=0;r<o;r++)55296==(64512&(a=t.charCodeAt(r)))&&r+1<o&&56320==(64512&(i=t.charCodeAt(r+1)))&&(a=65536+(a-55296<<10)+(i-56320),r++),l+=a<128?1:a<2048?2:a<65536?3:4;for(e=new n.Buf8(l),s=0,r=0;s<l;r++)55296==(64512&(a=t.charCodeAt(r)))&&r+1<o&&56320==(64512&(i=t.charCodeAt(r+1)))&&(a=65536+(a-55296<<10)+(i-56320),r++),a<128?e[s++]=a:a<2048?(e[s++]=192|a>>>6,e[s++]=128|63&a):a<65536?(e[s++]=224|a>>>12,e[s++]=128|a>>>6&63,e[s++]=128|63&a):(e[s++]=240|a>>>18,e[s++]=128|a>>>12&63,e[s++]=128|a>>>6&63,e[s++]=128|63&a);return e},a.buf2binstring=function(t){return i(t,t.length)},a.binstring2buf=function(t){for(var e=new n.Buf8(t.length),a=0,i=e.length;a<i;a++)e[a]=t.charCodeAt(a);return e},a.buf2string=function(t,e){var a,n,r,s,l=e||t.length,h=new Array(2*l);for(n=0,a=0;a<l;)if((r=t[a++])<128)h[n++]=r;else if((s=o[r])>4)h[n++]=65533,a+=s-1;else{for(r&=2===s?31:3===s?15:7;s>1&&a<l;)r=r<<6|63&t[a++],s--;s>1?h[n++]=65533:r<65536?h[n++]=r:(r-=65536,h[n++]=55296|r>>10&1023,h[n++]=56320|1023&r)}return i(h,n)},a.utf8border=function(t,e){var a;for((e=e||t.length)>t.length&&(e=t.length),a=e-1;a>=0&&128==(192&t[a]);)a--;return a<0?e:0===a?e:a+o[t[a]]>e?a:e}},{"./common":3}],5:[function(t,e,a){"use strict";e.exports=function(t,e,a,i){for(var n=65535&t|0,r=t>>>16&65535|0,s=0;0!==a;){a-=s=a>2e3?2e3:a;do{r=r+(n=n+e[i++]|0)|0}while(--s);n%=65521,r%=65521}return n|r<<16|0}},{}],6:[function(t,e,a){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],7:[function(t,e,a){"use strict";var i=function(){for(var t,e=[],a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e}();e.exports=function(t,e,a,n){var r=i,s=n+a;t^=-1;for(var o=n;o<s;o++)t=t>>>8^r[255&(t^e[o])];return-1^t}},{}],8:[function(t,e,a){"use strict";function i(t,e){return t.msg=A[e],e}function n(t){return(t<<1)-(t>4?9:0)}function r(t){for(var e=t.length;--e>=0;)t[e]=0}function s(t){var e=t.state,a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(z.arraySet(t.output,e.pending_buf,e.pending_out,a,t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))}function o(t,e){B._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,s(t.strm)}function l(t,e){t.pending_buf[t.pending++]=e}function h(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function d(t,e,a,i){var n=t.avail_in;return n>i&&(n=i),0===n?0:(t.avail_in-=n,z.arraySet(e,t.input,t.next_in,n,a),1===t.state.wrap?t.adler=S(t.adler,e,n,a):2===t.state.wrap&&(t.adler=E(t.adler,e,n,a)),t.next_in+=n,t.total_in+=n,n)}function f(t,e){var a,i,n=t.max_chain_length,r=t.strstart,s=t.prev_length,o=t.nice_match,l=t.strstart>t.w_size-it?t.strstart-(t.w_size-it):0,h=t.window,d=t.w_mask,f=t.prev,_=t.strstart+at,u=h[r+s-1],c=h[r+s];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(a=e,h[a+s]===c&&h[a+s-1]===u&&h[a]===h[r]&&h[++a]===h[r+1]){r+=2,a++;do{}while(h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&r<_);if(i=at-(_-r),r=_-at,i>s){if(t.match_start=e,s=i,i>=o)break;u=h[r+s-1],c=h[r+s]}}}while((e=f[e&d])>l&&0!=--n);return s<=t.lookahead?s:t.lookahead}function _(t){var e,a,i,n,r,s=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=s+(s-it)){z.arraySet(t.window,t.window,s,s,0),t.match_start-=s,t.strstart-=s,t.block_start-=s,e=a=t.hash_size;do{i=t.head[--e],t.head[e]=i>=s?i-s:0}while(--a);e=a=s;do{i=t.prev[--e],t.prev[e]=i>=s?i-s:0}while(--a);n+=s}if(0===t.strm.avail_in)break;if(a=d(t.strm,t.window,t.strstart+t.lookahead,n),t.lookahead+=a,t.lookahead+t.insert>=et)for(r=t.strstart-t.insert,t.ins_h=t.window[r],t.ins_h=(t.ins_h<<t.hash_shift^t.window[r+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[r+et-1])&t.hash_mask,t.prev[r&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=r,r++,t.insert--,!(t.lookahead+t.insert<et)););}while(t.lookahead<it&&0!==t.strm.avail_in)}function u(t,e){for(var a,i;;){if(t.lookahead<it){if(_(t),t.lookahead<it&&e===Z)return _t;if(0===t.lookahead)break}if(a=0,t.lookahead>=et&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+et-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==a&&t.strstart-a<=t.w_size-it&&(t.match_length=f(t,a)),t.match_length>=et)if(i=B._tr_tally(t,t.strstart-t.match_start,t.match_length-et),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=et){t.match_length--;do{t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+et-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!=--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else i=B._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(o(t,!1),0===t.strm.avail_out))return _t}return t.insert=t.strstart<et-1?t.strstart:et-1,e===N?(o(t,!0),0===t.strm.avail_out?ct:bt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?_t:ut}function c(t,e){for(var a,i,n;;){if(t.lookahead<it){if(_(t),t.lookahead<it&&e===Z)return _t;if(0===t.lookahead)break}if(a=0,t.lookahead>=et&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+et-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=et-1,0!==a&&t.prev_length<t.max_lazy_match&&t.strstart-a<=t.w_size-it&&(t.match_length=f(t,a),t.match_length<=5&&(t.strategy===H||t.match_length===et&&t.strstart-t.match_start>4096)&&(t.match_length=et-1)),t.prev_length>=et&&t.match_length<=t.prev_length){n=t.strstart+t.lookahead-et,i=B._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-et),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=n&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+et-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!=--t.prev_length);if(t.match_available=0,t.match_length=et-1,t.strstart++,i&&(o(t,!1),0===t.strm.avail_out))return _t}else if(t.match_available){if((i=B._tr_tally(t,0,t.window[t.strstart-1]))&&o(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return _t}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=B._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<et-1?t.strstart:et-1,e===N?(o(t,!0),0===t.strm.avail_out?ct:bt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?_t:ut}function b(t,e){for(var a,i,n,r,s=t.window;;){if(t.lookahead<=at){if(_(t),t.lookahead<=at&&e===Z)return _t;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=et&&t.strstart>0&&(n=t.strstart-1,(i=s[n])===s[++n]&&i===s[++n]&&i===s[++n])){r=t.strstart+at;do{}while(i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&n<r);t.match_length=at-(r-n),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=et?(a=B._tr_tally(t,1,t.match_length-et),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=B._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(o(t,!1),0===t.strm.avail_out))return _t}return t.insert=0,e===N?(o(t,!0),0===t.strm.avail_out?ct:bt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?_t:ut}function g(t,e){for(var a;;){if(0===t.lookahead&&(_(t),0===t.lookahead)){if(e===Z)return _t;break}if(t.match_length=0,a=B._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(o(t,!1),0===t.strm.avail_out))return _t}return t.insert=0,e===N?(o(t,!0),0===t.strm.avail_out?ct:bt):t.last_lit&&(o(t,!1),0===t.strm.avail_out)?_t:ut}function m(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}function w(t){t.window_size=2*t.w_size,r(t.head),t.max_lazy_match=x[t.level].max_lazy,t.good_match=x[t.level].good_length,t.nice_match=x[t.level].nice_length,t.max_chain_length=x[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=et-1,t.match_available=0,t.ins_h=0}function p(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=q,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new z.Buf16(2*$),this.dyn_dtree=new z.Buf16(2*(2*Q+1)),this.bl_tree=new z.Buf16(2*(2*V+1)),r(this.dyn_ltree),r(this.dyn_dtree),r(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new z.Buf16(tt+1),this.heap=new z.Buf16(2*J+1),r(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new z.Buf16(2*J+1),r(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function v(t){var e;return t&&t.state?(t.total_in=t.total_out=0,t.data_type=Y,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?rt:dt,t.adler=2===e.wrap?0:1,e.last_flush=Z,B._tr_init(e),D):i(t,U)}function k(t){var e=v(t);return e===D&&w(t.state),e}function y(t,e,a,n,r,s){if(!t)return U;var o=1;if(e===L&&(e=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),r<1||r>G||a!==q||n<8||n>15||e<0||e>9||s<0||s>M)return i(t,U);8===n&&(n=9);var l=new p;return t.state=l,l.strm=t,l.wrap=o,l.gzhead=null,l.w_bits=n,l.w_size=1<<l.w_bits,l.w_mask=l.w_size-1,l.hash_bits=r+7,l.hash_size=1<<l.hash_bits,l.hash_mask=l.hash_size-1,l.hash_shift=~~((l.hash_bits+et-1)/et),l.window=new z.Buf8(2*l.w_size),l.head=new z.Buf16(l.hash_size),l.prev=new z.Buf16(l.w_size),l.lit_bufsize=1<<r+6,l.pending_buf_size=4*l.lit_bufsize,l.pending_buf=new z.Buf8(l.pending_buf_size),l.d_buf=1*l.lit_bufsize,l.l_buf=3*l.lit_bufsize,l.level=e,l.strategy=s,l.method=a,k(t)}var x,z=t("../utils/common"),B=t("./trees"),S=t("./adler32"),E=t("./crc32"),A=t("./messages"),Z=0,R=1,C=3,N=4,O=5,D=0,I=1,U=-2,T=-3,F=-5,L=-1,H=1,j=2,K=3,M=4,P=0,Y=2,q=8,G=9,X=15,W=8,J=286,Q=30,V=19,$=2*J+1,tt=15,et=3,at=258,it=at+et+1,nt=32,rt=42,st=69,ot=73,lt=91,ht=103,dt=113,ft=666,_t=1,ut=2,ct=3,bt=4,gt=3;x=[new m(0,0,0,0,function(t,e){var a=65535;for(a>t.pending_buf_size-5&&(a=t.pending_buf_size-5);;){if(t.lookahead<=1){if(_(t),0===t.lookahead&&e===Z)return _t;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+a;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,o(t,!1),0===t.strm.avail_out))return _t;if(t.strstart-t.block_start>=t.w_size-it&&(o(t,!1),0===t.strm.avail_out))return _t}return t.insert=0,e===N?(o(t,!0),0===t.strm.avail_out?ct:bt):(t.strstart>t.block_start&&(o(t,!1),t.strm.avail_out),_t)}),new m(4,4,8,4,u),new m(4,5,16,8,u),new m(4,6,32,32,u),new m(4,4,16,16,c),new m(8,16,32,32,c),new m(8,16,128,128,c),new m(8,32,128,256,c),new m(32,128,258,1024,c),new m(32,258,258,4096,c)],a.deflateInit=function(t,e){return y(t,e,q,X,W,P)},a.deflateInit2=y,a.deflateReset=k,a.deflateResetKeep=v,a.deflateSetHeader=function(t,e){return t&&t.state?2!==t.state.wrap?U:(t.state.gzhead=e,D):U},a.deflate=function(t,e){var a,o,d,f;if(!t||!t.state||e>O||e<0)return t?i(t,U):U;if(o=t.state,!t.output||!t.input&&0!==t.avail_in||o.status===ft&&e!==N)return i(t,0===t.avail_out?F:U);if(o.strm=t,a=o.last_flush,o.last_flush=e,o.status===rt)if(2===o.wrap)t.adler=0,l(o,31),l(o,139),l(o,8),o.gzhead?(l(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),l(o,255&o.gzhead.time),l(o,o.gzhead.time>>8&255),l(o,o.gzhead.time>>16&255),l(o,o.gzhead.time>>24&255),l(o,9===o.level?2:o.strategy>=j||o.level<2?4:0),l(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(l(o,255&o.gzhead.extra.length),l(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(t.adler=E(t.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=st):(l(o,0),l(o,0),l(o,0),l(o,0),l(o,0),l(o,9===o.level?2:o.strategy>=j||o.level<2?4:0),l(o,gt),o.status=dt);else{var _=q+(o.w_bits-8<<4)<<8;_|=(o.strategy>=j||o.level<2?0:o.level<6?1:6===o.level?2:3)<<6,0!==o.strstart&&(_|=nt),_+=31-_%31,o.status=dt,h(o,_),0!==o.strstart&&(h(o,t.adler>>>16),h(o,65535&t.adler)),t.adler=1}if(o.status===st)if(o.gzhead.extra){for(d=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending!==o.pending_buf_size));)l(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=ot)}else o.status=ot;if(o.status===ot)if(o.gzhead.name){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindex<o.gzhead.name.length?255&o.gzhead.name.charCodeAt(o.gzindex++):0,l(o,f)}while(0!==f);o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.gzindex=0,o.status=lt)}else o.status=lt;if(o.status===lt)if(o.gzhead.comment){d=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),s(t),d=o.pending,o.pending===o.pending_buf_size)){f=1;break}f=o.gzindex<o.gzhead.comment.length?255&o.gzhead.comment.charCodeAt(o.gzindex++):0,l(o,f)}while(0!==f);o.gzhead.hcrc&&o.pending>d&&(t.adler=E(t.adler,o.pending_buf,o.pending-d,d)),0===f&&(o.status=ht)}else o.status=ht;if(o.status===ht&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&s(t),o.pending+2<=o.pending_buf_size&&(l(o,255&t.adler),l(o,t.adler>>8&255),t.adler=0,o.status=dt)):o.status=dt),0!==o.pending){if(s(t),0===t.avail_out)return o.last_flush=-1,D}else if(0===t.avail_in&&n(e)<=n(a)&&e!==N)return i(t,F);if(o.status===ft&&0!==t.avail_in)return i(t,F);if(0!==t.avail_in||0!==o.lookahead||e!==Z&&o.status!==ft){var u=o.strategy===j?g(o,e):o.strategy===K?b(o,e):x[o.level].func(o,e);if(u!==ct&&u!==bt||(o.status=ft),u===_t||u===ct)return 0===t.avail_out&&(o.last_flush=-1),D;if(u===ut&&(e===R?B._tr_align(o):e!==O&&(B._tr_stored_block(o,0,0,!1),e===C&&(r(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),s(t),0===t.avail_out))return o.last_flush=-1,D}return e!==N?D:o.wrap<=0?I:(2===o.wrap?(l(o,255&t.adler),l(o,t.adler>>8&255),l(o,t.adler>>16&255),l(o,t.adler>>24&255),l(o,255&t.total_in),l(o,t.total_in>>8&255),l(o,t.total_in>>16&255),l(o,t.total_in>>24&255)):(h(o,t.adler>>>16),h(o,65535&t.adler)),s(t),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?D:I)},a.deflateEnd=function(t){var e;return t&&t.state?(e=t.state.status)!==rt&&e!==st&&e!==ot&&e!==lt&&e!==ht&&e!==dt&&e!==ft?i(t,U):(t.state=null,e===dt?i(t,T):D):U},a.deflateSetDictionary=function(t,e){var a,i,n,s,o,l,h,d,f=e.length;if(!t||!t.state)return U;if(a=t.state,2===(s=a.wrap)||1===s&&a.status!==rt||a.lookahead)return U;for(1===s&&(t.adler=S(t.adler,e,f,0)),a.wrap=0,f>=a.w_size&&(0===s&&(r(a.head),a.strstart=0,a.block_start=0,a.insert=0),d=new z.Buf8(a.w_size),z.arraySet(d,e,f-a.w_size,a.w_size,0),e=d,f=a.w_size),o=t.avail_in,l=t.next_in,h=t.input,t.avail_in=f,t.next_in=0,t.input=e,_(a);a.lookahead>=et;){i=a.strstart,n=a.lookahead-(et-1);do{a.ins_h=(a.ins_h<<a.hash_shift^a.window[i+et-1])&a.hash_mask,a.prev[i&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=i,i++}while(--n);a.strstart=i,a.lookahead=et-1,_(a)}return a.strstart+=a.lookahead,a.block_start=a.strstart,a.insert=a.lookahead,a.lookahead=0,a.match_length=a.prev_length=et-1,a.match_available=0,t.next_in=l,t.input=h,t.avail_in=o,a.wrap=s,D},a.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":3,"./adler32":5,"./crc32":7,"./messages":13,"./trees":14}],9:[function(t,e,a){"use strict";e.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},{}],10:[function(t,e,a){"use strict";e.exports=function(t,e){var a,i,n,r,s,o,l,h,d,f,_,u,c,b,g,m,w,p,v,k,y,x,z,B,S;a=t.state,i=t.next_in,B=t.input,n=i+(t.avail_in-5),r=t.next_out,S=t.output,s=r-(e-t.avail_out),o=r+(t.avail_out-257),l=a.dmax,h=a.wsize,d=a.whave,f=a.wnext,_=a.window,u=a.hold,c=a.bits,b=a.lencode,g=a.distcode,m=(1<<a.lenbits)-1,w=(1<<a.distbits)-1;t:do{c<15&&(u+=B[i++]<<c,c+=8,u+=B[i++]<<c,c+=8),p=b[u&m];e:for(;;){if(v=p>>>24,u>>>=v,c-=v,0===(v=p>>>16&255))S[r++]=65535&p;else{if(!(16&v)){if(0==(64&v)){p=b[(65535&p)+(u&(1<<v)-1)];continue e}if(32&v){a.mode=12;break t}t.msg="invalid literal/length code",a.mode=30;break t}k=65535&p,(v&=15)&&(c<v&&(u+=B[i++]<<c,c+=8),k+=u&(1<<v)-1,u>>>=v,c-=v),c<15&&(u+=B[i++]<<c,c+=8,u+=B[i++]<<c,c+=8),p=g[u&w];a:for(;;){if(v=p>>>24,u>>>=v,c-=v,!(16&(v=p>>>16&255))){if(0==(64&v)){p=g[(65535&p)+(u&(1<<v)-1)];continue a}t.msg="invalid distance code",a.mode=30;break t}if(y=65535&p,v&=15,c<v&&(u+=B[i++]<<c,(c+=8)<v&&(u+=B[i++]<<c,c+=8)),(y+=u&(1<<v)-1)>l){t.msg="invalid distance too far back",a.mode=30;break t}if(u>>>=v,c-=v,v=r-s,y>v){if((v=y-v)>d&&a.correct){t.msg="invalid distance too far back",a.mode=30;break t}if(x=0,z=_,0===f){if(x+=h-v,v<k){k-=v;do{S[r++]=_[x++]}while(--v);x=r-y,z=S}}else if(f<v){if(x+=h+f-v,(v-=f)<k){k-=v;do{S[r++]=_[x++]}while(--v);if(x=0,f<k){k-=v=f;do{S[r++]=_[x++]}while(--v);x=r-y,z=S}}}else if(x+=f-v,v<k){k-=v;do{S[r++]=_[x++]}while(--v);x=r-y,z=S}for(;k>2;)S[r++]=z[x++],S[r++]=z[x++],S[r++]=z[x++],k-=3;k&&(S[r++]=z[x++],k>1&&(S[r++]=z[x++]))}else{x=r-y;do{S[r++]=S[x++],S[r++]=S[x++],S[r++]=S[x++],k-=3}while(k>2);k&&(S[r++]=S[x++],k>1&&(S[r++]=S[x++]))}break}}break}}while(i<n&&r<o);i-=k=c>>3,u&=(1<<(c-=k<<3))-1,t.next_in=i,t.next_out=r,t.avail_in=i<n?n-i+5:5-(i-n),t.avail_out=r<o?o-r+257:257-(r-o),a.hold=u,a.bits=c}},{}],11:[function(t,e,a){"use strict";function i(t){return(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function n(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new u.Buf16(320),this.work=new u.Buf16(288),this.lendyn=null,this.distdyn=null,this.correct=0,this.back=0,this.was=0}function r(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=N,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new u.Buf32(dt),e.distcode=e.distdyn=new u.Buf32(ft),e.correct=1,e.back=-1,z):E}function s(t){var e;return t&&t.state?(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,r(t)):E}function o(t,e){var a,i;return t&&t.state?(i=t.state,e<0?(a=0,e=-e):(a=1+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?E:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,s(t))):E}function l(t,e){var a,i;return t?(i=new n,t.state=i,i.window=null,(a=o(t,e))!==z&&(t.state=null),a):E}function h(t){if(ut){var e;for(f=new u.Buf32(512),_=new u.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(m(p,t.lens,0,288,f,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;m(v,t.lens,0,32,_,0,t.work,{bits:5}),ut=!1}t.lencode=f,t.lenbits=9,t.distcode=_,t.distbits=5}function d(t,e,a,i){var n,r=t.state;return null===r.window&&(r.wsize=1<<r.wbits,r.wnext=0,r.whave=0,r.window=new u.Buf8(r.wsize)),i>=r.wsize?(u.arraySet(r.window,e,a-r.wsize,r.wsize,0),r.wnext=0,r.whave=r.wsize):((n=r.wsize-r.wnext)>i&&(n=i),u.arraySet(r.window,e,a-i,n,r.wnext),(i-=n)?(u.arraySet(r.window,e,a-i,i,0),r.wnext=i,r.whave=r.wsize):(r.wnext+=n,r.wnext===r.wsize&&(r.wnext=0),r.whave<r.wsize&&(r.whave+=n))),0}var f,_,u=t("../utils/common"),c=t("./adler32"),b=t("./crc32"),g=t("./inffast"),m=t("./inftrees"),w=0,p=1,v=2,k=4,y=5,x=6,z=0,B=1,S=2,E=-2,A=-3,Z=-4,R=-5,C=8,N=1,O=2,D=3,I=4,U=5,T=6,F=7,L=8,H=9,j=10,K=11,M=12,P=13,Y=14,q=15,G=16,X=17,W=18,J=19,Q=20,V=21,$=22,tt=23,et=24,at=25,it=26,nt=27,rt=28,st=29,ot=30,lt=31,ht=32,dt=852,ft=592,_t=15,ut=!0;a.inflateReset=s,a.inflateReset2=o,a.inflateResetKeep=r,a.inflateInit=function(t){return l(t,_t)},a.inflateInit2=l,a.inflate=function(t,e){var a,n,r,s,o,l,f,_,dt,ft,_t,ut,ct,bt,gt,mt,wt,pt,vt,kt,yt,xt,zt,Bt,St=0,Et=new u.Buf8(4),At=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&0!==t.avail_in)return E;(a=t.state).mode===M&&(a.mode=P),o=t.next_out,r=t.output,f=t.avail_out,s=t.next_in,n=t.input,l=t.avail_in,_=a.hold,dt=a.bits,ft=l,_t=f,xt=z;t:for(;;)switch(a.mode){case N:if(0===a.wrap){a.mode=P;break}for(;dt<16;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(2&a.wrap&&35615===_){a.check=0,Et[0]=255&_,Et[1]=_>>>8&255,a.check=b(a.check,Et,2,0),_=0,dt=0,a.mode=O;break}if(a.flags=0,a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&_)<<8)+(_>>8))%31){t.msg="incorrect header check",a.mode=ot;break}if((15&_)!==C){t.msg="unknown compression method",a.mode=ot;break}if(_>>>=4,dt-=4,yt=8+(15&_),0===a.wbits)a.wbits=yt;else if(yt>a.wbits){t.msg="invalid window size",a.mode=ot;break}a.dmax=1<<yt,t.adler=a.check=1,a.mode=512&_?j:M,_=0,dt=0;break;case O:for(;dt<16;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(a.flags=_,(255&a.flags)!==C){t.msg="unknown compression method",a.mode=ot;break}if(57344&a.flags){t.msg="unknown header flags set",a.mode=ot;break}a.head&&(a.head.text=_>>8&1),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=b(a.check,Et,2,0)),_=0,dt=0,a.mode=D;case D:for(;dt<32;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}a.head&&(a.head.time=_),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,Et[2]=_>>>16&255,Et[3]=_>>>24&255,a.check=b(a.check,Et,4,0)),_=0,dt=0,a.mode=I;case I:for(;dt<16;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}a.head&&(a.head.xflags=255&_,a.head.os=_>>8),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=b(a.check,Et,2,0)),_=0,dt=0,a.mode=U;case U:if(1024&a.flags){for(;dt<16;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}a.length=_,a.head&&(a.head.extra_len=_),512&a.flags&&(Et[0]=255&_,Et[1]=_>>>8&255,a.check=b(a.check,Et,2,0)),_=0,dt=0}else a.head&&(a.head.extra=null);a.mode=T;case T:if(1024&a.flags&&((ut=a.length)>l&&(ut=l),ut&&(a.head&&(yt=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Array(a.head.extra_len)),u.arraySet(a.head.extra,n,s,ut,yt)),512&a.flags&&(a.check=b(a.check,n,ut,s)),l-=ut,s+=ut,a.length-=ut),a.length))break t;a.length=0,a.mode=F;case F:if(2048&a.flags){if(0===l)break t;ut=0;do{yt=n[s+ut++],a.head&&yt&&a.length<65536&&(a.head.name+=String.fromCharCode(yt))}while(yt&&ut<l);if(512&a.flags&&(a.check=b(a.check,n,ut,s)),l-=ut,s+=ut,yt)break t}else a.head&&(a.head.name=null);a.length=0,a.mode=L;case L:if(4096&a.flags){if(0===l)break t;ut=0;do{yt=n[s+ut++],a.head&&yt&&a.length<65536&&(a.head.comment+=String.fromCharCode(yt))}while(yt&&ut<l);if(512&a.flags&&(a.check=b(a.check,n,ut,s)),l-=ut,s+=ut,yt)break t}else a.head&&(a.head.comment=null);a.mode=H;case H:if(512&a.flags){for(;dt<16;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(_!==(65535&a.check)){t.msg="header crc mismatch",a.mode=ot;break}_=0,dt=0}a.head&&(a.head.hcrc=a.flags>>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=M;break;case j:for(;dt<32;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}t.adler=a.check=i(_),_=0,dt=0,a.mode=K;case K:if(0===a.havedict)return t.next_out=o,t.avail_out=f,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=dt,S;t.adler=a.check=1,a.mode=M;case M:if(e===y||e===x)break t;case P:if(a.last){_>>>=7&dt,dt-=7&dt,a.mode=nt;break}for(;dt<3;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}switch(a.last=1&_,_>>>=1,dt-=1,3&_){case 0:a.mode=Y;break;case 1:if(h(a),a.mode=Q,e===x){_>>>=2,dt-=2;break t}break;case 2:a.mode=X;break;case 3:t.msg="invalid block type",a.mode=ot}_>>>=2,dt-=2;break;case Y:for(_>>>=7&dt,dt-=7&dt;dt<32;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if((65535&_)!=(_>>>16^65535)){t.msg="invalid stored block lengths",a.mode=ot;break}if(a.length=65535&_,_=0,dt=0,a.mode=q,e===x)break t;case q:a.mode=G;case G:if(ut=a.length){if(ut>l&&(ut=l),ut>f&&(ut=f),0===ut)break t;u.arraySet(r,n,s,ut,o),l-=ut,s+=ut,f-=ut,o+=ut,a.length-=ut;break}a.mode=M;break;case X:for(;dt<14;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(a.nlen=257+(31&_),_>>>=5,dt-=5,a.ndist=1+(31&_),_>>>=5,dt-=5,a.ncode=4+(15&_),_>>>=4,dt-=4,a.nlen>286||a.ndist>30){t.msg="too many length or distance symbols",a.mode=ot;break}a.have=0,a.mode=W;case W:for(;a.have<a.ncode;){for(;dt<3;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}a.lens[At[a.have++]]=7&_,_>>>=3,dt-=3}for(;a.have<19;)a.lens[At[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,zt={bits:a.lenbits},xt=m(w,a.lens,0,19,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid code lengths set",a.mode=ot;break}a.have=0,a.mode=J;case J:for(;a.have<a.nlen+a.ndist;){for(;St=a.lencode[_&(1<<a.lenbits)-1],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(gt<=dt);){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(wt<16)_>>>=gt,dt-=gt,a.lens[a.have++]=wt;else{if(16===wt){for(Bt=gt+2;dt<Bt;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(_>>>=gt,dt-=gt,0===a.have){t.msg="invalid bit length repeat",a.mode=ot;break}yt=a.lens[a.have-1],ut=3+(3&_),_>>>=2,dt-=2}else if(17===wt){for(Bt=gt+3;dt<Bt;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}dt-=gt,yt=0,ut=3+(7&(_>>>=gt)),_>>>=3,dt-=3}else{for(Bt=gt+7;dt<Bt;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}dt-=gt,yt=0,ut=11+(127&(_>>>=gt)),_>>>=7,dt-=7}if(a.have+ut>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=ot;break}for(;ut--;)a.lens[a.have++]=yt}}if(a.mode===ot)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=ot;break}if(a.lenbits=9,zt={bits:a.lenbits},xt=m(p,a.lens,0,a.nlen,a.lencode,0,a.work,zt),a.lenbits=zt.bits,xt){t.msg="invalid literal/lengths set",a.mode=ot;break}if(a.distbits=6,a.distcode=a.distdyn,zt={bits:a.distbits},xt=m(v,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,zt),a.distbits=zt.bits,xt){t.msg="invalid distances set",a.mode=ot;break}if(a.mode=Q,e===x)break t;case Q:a.mode=V;case V:if(l>=6&&f>=258){t.next_out=o,t.avail_out=f,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=dt,g(t,_t),o=t.next_out,r=t.output,f=t.avail_out,s=t.next_in,n=t.input,l=t.avail_in,_=a.hold,dt=a.bits,a.mode===M&&(a.back=-1);break}for(a.back=0;St=a.lencode[_&(1<<a.lenbits)-1],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(gt<=dt);){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(mt&&0==(240&mt)){for(pt=gt,vt=mt,kt=wt;St=a.lencode[kt+((_&(1<<pt+vt)-1)>>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=dt);){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}_>>>=pt,dt-=pt,a.back+=pt}if(_>>>=gt,dt-=gt,a.back+=gt,a.length=wt,0===mt){a.mode=it;break}if(32&mt){a.back=-1,a.mode=M;break}if(64&mt){t.msg="invalid literal/length code",a.mode=ot;break}a.extra=15&mt,a.mode=$;case $:if(a.extra){for(Bt=a.extra;dt<Bt;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}a.length+=_&(1<<a.extra)-1,_>>>=a.extra,dt-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=tt;case tt:for(;St=a.distcode[_&(1<<a.distbits)-1],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(gt<=dt);){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(0==(240&mt)){for(pt=gt,vt=mt,kt=wt;St=a.distcode[kt+((_&(1<<pt+vt)-1)>>pt)],gt=St>>>24,mt=St>>>16&255,wt=65535&St,!(pt+gt<=dt);){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}_>>>=pt,dt-=pt,a.back+=pt}if(_>>>=gt,dt-=gt,a.back+=gt,64&mt){t.msg="invalid distance code",a.mode=ot;break}a.offset=wt,a.extra=15&mt,a.mode=et;case et:if(a.extra){for(Bt=a.extra;dt<Bt;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}a.offset+=_&(1<<a.extra)-1,_>>>=a.extra,dt-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=ot;break}a.mode=at;case at:if(0===f)break t;if(ut=_t-f,a.offset>ut){if((ut=a.offset-ut)>a.whave&&a.correct){t.msg="invalid distance too far back",a.mode=ot;break}ut>a.wnext?(ut-=a.wnext,ct=a.wsize-ut):ct=a.wnext-ut,ut>a.length&&(ut=a.length),bt=a.window}else bt=r,ct=o-a.offset,ut=a.length;ut>f&&(ut=f),f-=ut,a.length-=ut;do{r[o++]=bt[ct++]}while(--ut);0===a.length&&(a.mode=V);break;case it:if(0===f)break t;r[o++]=a.length,f--,a.mode=V;break;case nt:if(a.wrap){for(;dt<32;){if(0===l)break t;l--,_|=n[s++]<<dt,dt+=8}if(_t-=f,t.total_out+=_t,a.total+=_t,_t&&(t.adler=a.check=a.flags?b(a.check,r,_t,o-_t):c(a.check,r,_t,o-_t)),_t=f,(a.flags?_:i(_))!==a.check){t.msg="incorrect data check",a.mode=ot;break}_=0,dt=0}a.mode=rt;case rt:if(a.wrap&&a.flags){for(;dt<32;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(_!==(4294967295&a.total)){t.msg="incorrect length check",a.mode=ot;break}_=0,dt=0}a.mode=st;case st:xt=B;break t;case ot:xt=A;break t;case lt:return Z;case ht:default:return E}return t.next_out=o,t.avail_out=f,t.next_in=s,t.avail_in=l,a.hold=_,a.bits=dt,(a.wsize||_t!==t.avail_out&&a.mode<ot&&(a.mode<nt||e!==k))&&d(t,t.output,t.next_out,_t-t.avail_out)?(a.mode=lt,Z):(ft-=t.avail_in,_t-=t.avail_out,t.total_in+=ft,t.total_out+=_t,a.total+=_t,a.wrap&&_t&&(t.adler=a.check=a.flags?b(a.check,r,_t,t.next_out-_t):c(a.check,r,_t,t.next_out-_t)),t.data_type=a.bits+(a.last?64:0)+(a.mode===M?128:0)+(a.mode===Q||a.mode===q?256:0),(0===ft&&0===_t||e===k)&&xt===z&&(xt=R),xt)},a.inflateEnd=function(t){if(!t||!t.state)return E;var e=t.state;return e.window&&(e.window=null),t.state=null,z},a.inflateGetHeader=function(t,e){var a;return t&&t.state?0==(2&(a=t.state).wrap)?E:(a.head=e,e.done=!1,z):E},a.inflateSetDictionary=function(t,e){var a,i,n=e.length;return t&&t.state?0!==(a=t.state).wrap&&a.mode!==K?E:a.mode===K&&(i=1,(i=c(i,e,n,0))!==a.check)?A:d(t,e,n,n)?(a.mode=lt,Z):(a.havedict=1,z):E},a.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":3,"./adler32":5,"./crc32":7,"./inffast":10,"./inftrees":12}],12:[function(t,e,a){"use strict";var i=t("../utils/common"),n=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],r=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],s=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],o=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];e.exports=function(t,e,a,l,h,d,f,_){var u,c,b,g,m,w,p,v,k,y=_.bits,x=0,z=0,B=0,S=0,E=0,A=0,Z=0,R=0,C=0,N=0,O=null,D=0,I=new i.Buf16(16),U=new i.Buf16(16),T=null,F=0;for(x=0;x<=15;x++)I[x]=0;for(z=0;z<l;z++)I[e[a+z]]++;for(E=y,S=15;S>=1&&0===I[S];S--);if(E>S&&(E=S),0===S)return h[d++]=20971520,h[d++]=20971520,_.bits=1,0;for(B=1;B<S&&0===I[B];B++);for(E<B&&(E=B),R=1,x=1;x<=15;x++)if(R<<=1,(R-=I[x])<0)return-1;if(R>0&&(0===t||1!==S))return-1;for(U[1]=0,x=1;x<15;x++)U[x+1]=U[x]+I[x];for(z=0;z<l;z++)0!==e[a+z]&&(f[U[e[a+z]]++]=z);if(0===t?(O=T=f,w=19):1===t?(O=n,D-=257,T=r,F-=257,w=256):(O=s,T=o,w=-1),N=0,z=0,x=B,m=d,A=E,Z=0,b=-1,C=1<<E,g=C-1,1===t&&C>852||2===t&&C>592)return 1;for(;;){p=x-Z,f[z]<w?(v=0,k=f[z]):f[z]>w?(v=T[F+f[z]],k=O[D+f[z]]):(v=96,k=0),u=1<<x-Z,B=c=1<<A;do{h[m+(N>>Z)+(c-=u)]=p<<24|v<<16|k|0}while(0!==c);for(u=1<<x-1;N&u;)u>>=1;if(0!==u?(N&=u-1,N+=u):N=0,z++,0==--I[x]){if(x===S)break;x=e[a+f[z]]}if(x>E&&(N&g)!==b){for(0===Z&&(Z=E),m+=B,R=1<<(A=x-Z);A+Z<S&&!((R-=I[A+Z])<=0);)A++,R<<=1;if(C+=1<<A,1===t&&C>852||2===t&&C>592)return 1;h[b=N&g]=E<<24|A<<16|m-d|0}}return 0!==N&&(h[m+N]=x-Z<<24|64<<16|0),_.bits=E,0}},{"../utils/common":3}],13:[function(t,e,a){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],14:[function(t,e,a){"use strict";function i(t){for(var e=t.length;--e>=0;)t[e]=0}function n(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}function r(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function s(t){return t<256?et[t]:et[256+(t>>>7)]}function o(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function l(t,e,a){t.bi_valid>M-a?(t.bi_buf|=e<<t.bi_valid&65535,o(t,t.bi_buf),t.bi_buf=e>>M-t.bi_valid,t.bi_valid+=a-M):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=a)}function h(t,e,a){l(t,a[2*e],a[2*e+1])}function d(t,e){var a=0;do{a|=1&t,t>>>=1,a<<=1}while(--e>0);return a>>>1}function f(t){16===t.bi_valid?(o(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}function _(t,e){var a,i,n,r,s,o,l=e.dyn_tree,h=e.max_code,d=e.stat_desc.static_tree,f=e.stat_desc.has_stree,_=e.stat_desc.extra_bits,u=e.stat_desc.extra_base,c=e.stat_desc.max_length,b=0;for(r=0;r<=K;r++)t.bl_count[r]=0;for(l[2*t.heap[t.heap_max]+1]=0,a=t.heap_max+1;a<j;a++)(r=l[2*l[2*(i=t.heap[a])+1]+1]+1)>c&&(r=c,b++),l[2*i+1]=r,i>h||(t.bl_count[r]++,s=0,i>=u&&(s=_[i-u]),o=l[2*i],t.opt_len+=o*(r+s),f&&(t.static_len+=o*(d[2*i+1]+s)));if(0!==b){do{for(r=c-1;0===t.bl_count[r];)r--;t.bl_count[r]--,t.bl_count[r+1]+=2,t.bl_count[c]--,b-=2}while(b>0);for(r=c;0!==r;r--)for(i=t.bl_count[r];0!==i;)(n=t.heap[--a])>h||(l[2*n+1]!==r&&(t.opt_len+=(r-l[2*n+1])*l[2*n],l[2*n+1]=r),i--)}}function u(t,e,a){var i,n,r=new Array(K+1),s=0;for(i=1;i<=K;i++)r[i]=s=s+a[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=d(r[o]++,o))}}function c(){var t,e,a,i,r,s=new Array(K+1);for(a=0,i=0;i<U-1;i++)for(it[i]=a,t=0;t<1<<W[i];t++)at[a++]=i;for(at[a-1]=i,r=0,i=0;i<16;i++)for(nt[i]=r,t=0;t<1<<J[i];t++)et[r++]=i;for(r>>=7;i<L;i++)for(nt[i]=r<<7,t=0;t<1<<J[i]-7;t++)et[256+r++]=i;for(e=0;e<=K;e++)s[e]=0;for(t=0;t<=143;)$[2*t+1]=8,t++,s[8]++;for(;t<=255;)$[2*t+1]=9,t++,s[9]++;for(;t<=279;)$[2*t+1]=7,t++,s[7]++;for(;t<=287;)$[2*t+1]=8,t++,s[8]++;for(u($,F+1,s),t=0;t<L;t++)tt[2*t+1]=5,tt[2*t]=d(t,5);rt=new n($,W,T+1,F,K),st=new n(tt,J,0,L,K),ot=new n(new Array(0),Q,0,H,P)}function b(t){var e;for(e=0;e<F;e++)t.dyn_ltree[2*e]=0;for(e=0;e<L;e++)t.dyn_dtree[2*e]=0;for(e=0;e<H;e++)t.bl_tree[2*e]=0;t.dyn_ltree[2*Y]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function g(t){t.bi_valid>8?o(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function m(t,e,a,i){g(t),i&&(o(t,a),o(t,~a)),A.arraySet(t.pending_buf,t.window,e,a,t.pending),t.pending+=a}function w(t,e,a,i){var n=2*e,r=2*a;return t[n]<t[r]||t[n]===t[r]&&i[e]<=i[a]}function p(t,e,a){for(var i=t.heap[a],n=a<<1;n<=t.heap_len&&(n<t.heap_len&&w(e,t.heap[n+1],t.heap[n],t.depth)&&n++,!w(e,i,t.heap[n],t.depth));)t.heap[a]=t.heap[n],a=n,n<<=1;t.heap[a]=i}function v(t,e,a){var i,n,r,o,d=0;if(0!==t.last_lit)do{i=t.pending_buf[t.d_buf+2*d]<<8|t.pending_buf[t.d_buf+2*d+1],n=t.pending_buf[t.l_buf+d],d++,0===i?h(t,n,e):(h(t,(r=at[n])+T+1,e),0!==(o=W[r])&&l(t,n-=it[r],o),h(t,r=s(--i),a),0!==(o=J[r])&&l(t,i-=nt[r],o))}while(d<t.last_lit);h(t,Y,e)}function k(t,e){var a,i,n,r=e.dyn_tree,s=e.stat_desc.static_tree,o=e.stat_desc.has_stree,l=e.stat_desc.elems,h=-1;for(t.heap_len=0,t.heap_max=j,a=0;a<l;a++)0!==r[2*a]?(t.heap[++t.heap_len]=h=a,t.depth[a]=0):r[2*a+1]=0;for(;t.heap_len<2;)r[2*(n=t.heap[++t.heap_len]=h<2?++h:0)]=1,t.depth[n]=0,t.opt_len--,o&&(t.static_len-=s[2*n+1]);for(e.max_code=h,a=t.heap_len>>1;a>=1;a--)p(t,r,a);n=l;do{a=t.heap[1],t.heap[1]=t.heap[t.heap_len--],p(t,r,1),i=t.heap[1],t.heap[--t.heap_max]=a,t.heap[--t.heap_max]=i,r[2*n]=r[2*a]+r[2*i],t.depth[n]=(t.depth[a]>=t.depth[i]?t.depth[a]:t.depth[i])+1,r[2*a+1]=r[2*i+1]=n,t.heap[1]=n++,p(t,r,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],_(t,e),u(r,h,t.bl_count)}function y(t,e,a){var i,n,r=-1,s=e[1],o=0,l=7,h=4;for(0===s&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=s,s=e[2*(i+1)+1],++o<l&&n===s||(o<h?t.bl_tree[2*n]+=o:0!==n?(n!==r&&t.bl_tree[2*n]++,t.bl_tree[2*q]++):o<=10?t.bl_tree[2*G]++:t.bl_tree[2*X]++,o=0,r=n,0===s?(l=138,h=3):n===s?(l=6,h=3):(l=7,h=4))}function x(t,e,a){var i,n,r=-1,s=e[1],o=0,d=7,f=4;for(0===s&&(d=138,f=3),i=0;i<=a;i++)if(n=s,s=e[2*(i+1)+1],!(++o<d&&n===s)){if(o<f)do{h(t,n,t.bl_tree)}while(0!=--o);else 0!==n?(n!==r&&(h(t,n,t.bl_tree),o--),h(t,q,t.bl_tree),l(t,o-3,2)):o<=10?(h(t,G,t.bl_tree),l(t,o-3,3)):(h(t,X,t.bl_tree),l(t,o-11,7));o=0,r=n,0===s?(d=138,f=3):n===s?(d=6,f=3):(d=7,f=4)}}function z(t){var e;for(y(t,t.dyn_ltree,t.l_desc.max_code),y(t,t.dyn_dtree,t.d_desc.max_code),k(t,t.bl_desc),e=H-1;e>=3&&0===t.bl_tree[2*V[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}function B(t,e,a,i){var n;for(l(t,e-257,5),l(t,a-1,5),l(t,i-4,4),n=0;n<i;n++)l(t,t.bl_tree[2*V[n]+1],3);x(t,t.dyn_ltree,e-1),x(t,t.dyn_dtree,a-1)}function S(t){var e,a=4093624447;for(e=0;e<=31;e++,a>>>=1)if(1&a&&0!==t.dyn_ltree[2*e])return R;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return C;for(e=32;e<T;e++)if(0!==t.dyn_ltree[2*e])return C;return R}function E(t,e,a,i){l(t,(O<<1)+(i?1:0),3),m(t,e,a,!0)}var A=t("../utils/common"),Z=4,R=0,C=1,N=2,O=0,D=1,I=2,U=29,T=256,F=T+1+U,L=30,H=19,j=2*F+1,K=15,M=16,P=7,Y=256,q=16,G=17,X=18,W=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],J=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],Q=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],V=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],$=new Array(2*(F+2));i($);var tt=new Array(2*L);i(tt);var et=new Array(512);i(et);var at=new Array(256);i(at);var it=new Array(U);i(it);var nt=new Array(L);i(nt);var rt,st,ot,lt=!1;a._tr_init=function(t){lt||(c(),lt=!0),t.l_desc=new r(t.dyn_ltree,rt),t.d_desc=new r(t.dyn_dtree,st),t.bl_desc=new r(t.bl_tree,ot),t.bi_buf=0,t.bi_valid=0,b(t)},a._tr_stored_block=E,a._tr_flush_block=function(t,e,a,i){var n,r,s=0;t.level>0?(t.strm.data_type===N&&(t.strm.data_type=S(t)),k(t,t.l_desc),k(t,t.d_desc),s=z(t),n=t.opt_len+3+7>>>3,(r=t.static_len+3+7>>>3)<=n&&(n=r)):n=r=a+5,a+4<=n&&-1!==e?E(t,e,a,i):t.strategy===Z||r===n?(l(t,(D<<1)+(i?1:0),3),v(t,$,tt)):(l(t,(I<<1)+(i?1:0),3),B(t,t.l_desc.max_code+1,t.d_desc.max_code+1,s+1),v(t,t.dyn_ltree,t.dyn_dtree)),b(t),i&&g(t)},a._tr_tally=function(t,e,a){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&a,t.last_lit++,0===e?t.dyn_ltree[2*a]++:(t.matches++,e--,t.dyn_ltree[2*(at[a]+T+1)]++,t.dyn_dtree[2*s(e)]++),t.last_lit===t.lit_bufsize-1},a._tr_align=function(t){l(t,D<<1,3),h(t,Y,$),f(t)}},{"../utils/common":3}],15:[function(t,e,a){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],"/":[function(t,e,a){"use strict";var i={};(0,t("./lib/utils/common").assign)(i,t("./lib/deflate"),t("./lib/inflate"),t("./lib/zlib/constants")),e.exports=i},{"./lib/deflate":1,"./lib/inflate":2,"./lib/utils/common":3,"./lib/zlib/constants":6}]},{},[])("/")});'use strict';tr.exportTo('tr.e.importer',function(){const GZIP_MEMBER_HEADER_ID_SIZE=3;const GZIP_HEADER_ID1=0x1f;const GZIP_HEADER_ID2=0x8b;const GZIP_DEFLATE_COMPRESSION=8;function _stringToUInt8Array(str){const array=new Uint8Array(str.length);for(let i=0;i<str.length;++i){array[i]=str.charCodeAt(i);}
5156return array;}
5157function GzipImporter(model,eventData){this.inflateAsTraceStream=false;if(typeof(eventData)==='string'||eventData instanceof String){eventData=_stringToUInt8Array(eventData);}else if(eventData instanceof ArrayBuffer){eventData=new Uint8Array(eventData);}else if(eventData instanceof tr.b.InMemoryTraceStream){eventData=eventData.data;this.inflateAsTraceStream_=true;}else{throw new Error('Unknown gzip data format');}
5158this.model_=model;this.gzipData_=eventData;}
5159GzipImporter.canImport=function(eventData){if(eventData instanceof tr.b.InMemoryTraceStream){eventData=eventData.header;}
5160let header;if(eventData instanceof ArrayBuffer){header=new Uint8Array(eventData.slice(0,GZIP_MEMBER_HEADER_ID_SIZE));}else if(typeof(eventData)==='string'||eventData instanceof String){header=eventData.substring(0,GZIP_MEMBER_HEADER_ID_SIZE);header=_stringToUInt8Array(header);}else{return false;}
5161return header[0]===GZIP_HEADER_ID1&&header[1]===GZIP_HEADER_ID2&&header[2]===GZIP_DEFLATE_COMPRESSION;};GzipImporter.inflateGzipData_=function(data){let position=0;function getByte(){if(position>=data.length){throw new Error('Unexpected end of gzip data');}
5162return data[position++];}
5163function getWord(){const low=getByte();const high=getByte();return(high<<8)+low;}
5164function skipBytes(amount){position+=amount;}
5165function skipZeroTerminatedString(){while(getByte()!==0){}}
5166const id1=getByte();const id2=getByte();if(id1!==GZIP_HEADER_ID1||id2!==GZIP_HEADER_ID2){throw new Error('Not gzip data');}
5167const compressionMethod=getByte();if(compressionMethod!==GZIP_DEFLATE_COMPRESSION){throw new Error('Unsupported compression method: '+compressionMethod);}
5168const flags=getByte();const haveHeaderCrc=flags&(1<<1);const haveExtraFields=flags&(1<<2);const haveFileName=flags&(1<<3);const haveComment=flags&(1<<4);skipBytes(4+1+1);if(haveExtraFields){const bytesToSkip=getWord();skipBytes(bytesToSkip);}
5169if(haveFileName)skipZeroTerminatedString();if(haveComment)skipZeroTerminatedString();if(haveHeaderCrc)getWord();const inflatedData=pako.inflateRaw(data.subarray(position));if(this.inflateAsTraceStream_){return GzipImporter.transformToStream(inflatedData);}
5170let string;try{string=GzipImporter.transformToString(inflatedData);}catch(err){return GzipImporter.transformToStream(inflatedData);}
5171if(inflatedData.length>0&&string.length===0){return GzipImporter.transformToStream(inflatedData);}
5172return string;};GzipImporter.transformToStream=function(data){if(data instanceof Uint8Array){return new tr.b.InMemoryTraceStream(data,false);}
5173throw new Error(`Cannot transform ${type} to TraceStream.`);};GzipImporter.transformToString=function(data){if(typeof(data)==='string')return data;if(typeof TextDecoder==='undefined'){if(data instanceof ArrayBuffer){data=new Uint8Array(data);}
5174const result=[];let chunk=65536;let k=0;const len=data.length;while(k<len&&chunk>1){try{const chunklen=Math.min(k+chunk,len);let dataslice;if(data instanceof Array){dataslice=data.slice(k,chunklen);}else{dataslice=data.subarray(k,chunklen);}
5175result.push(String.fromCharCode.apply(null,dataslice));k+=chunk;}catch(e){chunk=Math.floor(chunk/2);}}
5176return result.join('');}
5177if(data instanceof Array){data=new Uint8Array(data);}
5178return new TextDecoder('utf-8').decode(data);};GzipImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'GzipImporter';},isTraceDataContainer(){return true;},extractSubtraces(){const eventData=GzipImporter.inflateGzipData_(this.gzipData_);return eventData?[eventData]:[];}};tr.importer.Importer.register(GzipImporter);return{GzipImporter,};});'use strict';tr.exportTo('tr.importer',function(){class SimpleLineReader{constructor(text){this.data_=text instanceof tr.b.TraceStream?text:text.split(new RegExp('\r?\n'));this.curLine_=0;this.readLastLine_=false;this.savedLines_=undefined;}*[Symbol.iterator](){let lastLine=undefined;while(this.hasData_){if(this.readLastLine_){this.curLine_++;this.readLastLine_=false;}else if(this.data_ instanceof tr.b.TraceStream){this.curLine_++;const line=this.data_.readUntilDelimiter('\n');if(line.endsWith('\r\n')){lastLine=line.slice(0,-2);}else if(line.endsWith('\n')){lastLine=line.slice(0,-1);}else{lastLine=line;}}else{this.curLine_++;lastLine=this.data_[this.curLine_-1];}
5179yield lastLine;}}
5180get curLineNumber(){return this.curLine_;}
5181get hasData_(){if(this.data_ instanceof tr.b.TraceStream)return this.data_.hasData;return this.curLine_<this.data_.length;}
5182advanceToLineMatching(regex){for(const line of this){if(this.savedLines_!==undefined)this.savedLines_.push(line);if(regex.test(line)){this.goBack_();return true;}}
5183return false;}
5184goBack_(){if(this.readLastLine_){throw new Error('There should be at least one nextLine call between '+'any two goBack calls.');}
5185if(this.curLine_===0){throw new Error('There should be at least one nextLine call before '+'the first goBack call.');}
5186this.readLastLine_=true;this.curLine_--;}
5187beginSavingLines(){this.savedLines_=[];}
5188endSavingLinesAndGetResult(){const tmp=this.savedLines_;this.savedLines_=undefined;return tmp;}}
5189return{SimpleLineReader,};});'use strict';tr.exportTo('tr.e.importer',function(){function Trace2HTMLImporter(model,events){this.importPriority=0;}
5190Trace2HTMLImporter.subtraces_=[];function _extractEventsFromHTML(text){Trace2HTMLImporter.subtraces_=[];const r=new tr.importer.SimpleLineReader(text);while(true){if(!r.advanceToLineMatching(new RegExp('^<\s*script id="viewer-data" '+'type="(application\/json|text\/plain)">\r?$'))){break;}
5191r.beginSavingLines();if(!r.advanceToLineMatching(/^<\/\s*script>\r?$/))return;let rawEvents=r.endSavingLinesAndGetResult();rawEvents=rawEvents.slice(1,rawEvents.length-1);const data64=rawEvents.join('\n');const buffer=new ArrayBuffer(tr.b.Base64.getDecodedBufferLength(data64));const len=tr.b.Base64.DecodeToTypedArray(data64,new DataView(buffer));Trace2HTMLImporter.subtraces_.push(buffer.slice(0,len));}}
5192function _canImportFromHTML(text){if(!/^<!DOCTYPE html>/.test(text))return false;_extractEventsFromHTML(text);if(Trace2HTMLImporter.subtraces_.length===0)return false;return true;}
5193Trace2HTMLImporter.canImport=function(events){if(events instanceof tr.b.TraceStream)return false;return _canImportFromHTML(events);};Trace2HTMLImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'Trace2HTMLImporter';},isTraceDataContainer(){return true;},extractSubtraces(){return Trace2HTMLImporter.subtraces_;},importEvents(){}};tr.importer.Importer.register(Trace2HTMLImporter);return{Trace2HTMLImporter,};});'use strict';tr.exportTo('tr.e.importer.v8',function(){function SplayTree(){}
5194SplayTree.prototype.root_=null;SplayTree.prototype.isEmpty=function(){return!this.root_;};SplayTree.prototype.insert=function(key,value){if(this.isEmpty()){this.root_=new SplayTree.Node(key,value);return;}
5195this.splay_(key);if(this.root_.key===key){return;}
5196const node=new SplayTree.Node(key,value);if(key>this.root_.key){node.left=this.root_;node.right=this.root_.right;this.root_.right=null;}else{node.right=this.root_;node.left=this.root_.left;this.root_.left=null;}
5197this.root_=node;};SplayTree.prototype.remove=function(key){if(this.isEmpty()){throw Error('Key not found: '+key);}
5198this.splay_(key);if(this.root_.key!==key){throw Error('Key not found: '+key);}
5199const removed=this.root_;if(!this.root_.left){this.root_=this.root_.right;}else{const right=this.root_.right;this.root_=this.root_.left;this.splay_(key);this.root_.right=right;}
5200return removed;};SplayTree.prototype.find=function(key){if(this.isEmpty())return null;this.splay_(key);return this.root_.key===key?this.root_:null;};SplayTree.prototype.findMin=function(){if(this.isEmpty())return null;let current=this.root_;while(current.left){current=current.left;}
5201return current;};SplayTree.prototype.findMax=function(opt_startNode){if(this.isEmpty())return null;let current=opt_startNode||this.root_;while(current.right){current=current.right;}
5202return current;};SplayTree.prototype.findGreatestLessThan=function(key){if(this.isEmpty())return null;this.splay_(key);if(this.root_.key<=key){return this.root_;}
5203if(this.root_.left){return this.findMax(this.root_.left);}
5204return null;};SplayTree.prototype.exportKeysAndValues=function(){const result=[];this.traverse_(function(node){result.push([node.key,node.value]);});return result;};SplayTree.prototype.exportValues=function(){const result=[];this.traverse_(function(node){result.push(node.value);});return result;};SplayTree.prototype.splay_=function(key){if(this.isEmpty())return;const dummy=new SplayTree.Node(null,null);let left=dummy;let right=dummy;let current=this.root_;while(true){if(key<current.key){if(!current.left){break;}
5205if(key<current.left.key){const tmp=current.left;current.left=tmp.right;tmp.right=current;current=tmp;if(!current.left){break;}}
5206right.left=current;right=current;current=current.left;}else if(key>current.key){if(!current.right){break;}
5207if(key>current.right.key){const tmp=current.right;current.right=tmp.left;tmp.left=current;current=tmp;if(!current.right){break;}}
5208left.right=current;left=current;current=current.right;}else{break;}}
5209left.right=current.left;right.left=current.right;current.left=dummy.right;current.right=dummy.left;this.root_=current;};SplayTree.prototype.traverse_=function(f){const nodesToVisit=[this.root_];while(nodesToVisit.length>0){const node=nodesToVisit.shift();if(node===null)continue;f(node);nodesToVisit.push(node.left);nodesToVisit.push(node.right);}};SplayTree.Node=function(key,value){this.key=key;this.value=value;};SplayTree.Node.prototype.left=null;SplayTree.Node.prototype.right=null;return{SplayTree,};});'use strict';tr.exportTo('tr.e.importer.v8',function(){function CodeMap(){this.dynamics_=new tr.e.importer.v8.SplayTree();this.dynamicsNameGen_=new tr.e.importer.v8.CodeMap.NameGenerator();this.statics_=new tr.e.importer.v8.SplayTree();this.libraries_=new tr.e.importer.v8.SplayTree();this.pages_=[];}
5210CodeMap.PAGE_ALIGNMENT=12;CodeMap.PAGE_SIZE=1<<CodeMap.PAGE_ALIGNMENT;CodeMap.prototype.addCode=function(start,codeEntry){this.deleteAllCoveredNodes_(this.dynamics_,start,start+codeEntry.size);this.dynamics_.insert(start,codeEntry);};CodeMap.prototype.moveCode=function(from,to){const removedNode=this.dynamics_.remove(from);this.deleteAllCoveredNodes_(this.dynamics_,to,to+removedNode.value.size);this.dynamics_.insert(to,removedNode.value);};CodeMap.prototype.deleteCode=function(start){const removedNode=this.dynamics_.remove(start);};CodeMap.prototype.addLibrary=function(start,codeEntry){this.markPages_(start,start+codeEntry.size);this.libraries_.insert(start,codeEntry);};CodeMap.prototype.addStaticCode=function(start,codeEntry){this.statics_.insert(start,codeEntry);};CodeMap.prototype.markPages_=function(start,end){for(let addr=start;addr<=end;addr+=CodeMap.PAGE_SIZE){this.pages_[addr>>>CodeMap.PAGE_ALIGNMENT]=1;}};CodeMap.prototype.deleteAllCoveredNodes_=function(tree,start,end){const toDelete=[];let addr=end-1;while(addr>=start){const node=tree.findGreatestLessThan(addr);if(!node)break;const start2=node.key;const end2=start2+node.value.size;if(start2<end&&start<end2)toDelete.push(start2);addr=start2-1;}
5211for(let i=0,l=toDelete.length;i<l;++i)tree.remove(toDelete[i]);};CodeMap.prototype.isAddressBelongsTo_=function(addr,node){return addr>=node.key&&addr<(node.key+node.value.size);};CodeMap.prototype.findInTree_=function(tree,addr){const node=tree.findGreatestLessThan(addr);return node&&this.isAddressBelongsTo_(addr,node)?node.value:null;};CodeMap.prototype.findEntryInLibraries=function(addr){const pageAddr=addr>>>CodeMap.PAGE_ALIGNMENT;if(pageAddr in this.pages_){return this.findInTree_(this.libraries_,addr);}
5212return undefined;};CodeMap.prototype.findEntry=function(addr){const pageAddr=addr>>>CodeMap.PAGE_ALIGNMENT;if(pageAddr in this.pages_){return this.findInTree_(this.statics_,addr)||this.findInTree_(this.libraries_,addr);}
5213const min=this.dynamics_.findMin();const max=this.dynamics_.findMax();if(max!==null&&addr<(max.key+max.value.size)&&addr>=min.key){const dynaEntry=this.findInTree_(this.dynamics_,addr);if(dynaEntry===null)return null;if(!dynaEntry.nameUpdated_){dynaEntry.name=this.dynamicsNameGen_.getName(dynaEntry.name);dynaEntry.nameUpdated_=true;}
5214return dynaEntry;}
5215return null;};CodeMap.prototype.findDynamicEntryByStartAddress=function(addr){const node=this.dynamics_.find(addr);return node?node.value:null;};CodeMap.prototype.getAllDynamicEntries=function(){return this.dynamics_.exportValues();};CodeMap.prototype.getAllDynamicEntriesWithAddresses=function(){return this.dynamics_.exportKeysAndValues();};CodeMap.prototype.getAllStaticEntries=function(){return this.statics_.exportValues();};CodeMap.prototype.getAllLibrariesEntries=function(){return this.libraries_.exportValues();};CodeMap.CodeState={COMPILED:0,OPTIMIZABLE:1,OPTIMIZED:2};CodeMap.CodeEntry=function(size,opt_name,opt_type){this.id=tr.b.GUID.allocateSimple();this.size=size;this.name_=opt_name||'';this.type=opt_type||'';this.nameUpdated_=false;};CodeMap.CodeEntry.prototype={__proto__:Object.prototype,get name(){return this.name_;},set name(value){this.name_=value;},toString(){this.name_+': '+this.size.toString(16);}};CodeMap.CodeEntry.TYPE={SHARED_LIB:'SHARED_LIB',CPP:'CPP'};CodeMap.DynamicFuncCodeEntry=function(size,type,func,state){CodeMap.CodeEntry.call(this,size,'',type);this.func=func;this.state=state;};CodeMap.DynamicFuncCodeEntry.STATE_PREFIX=['','~','*'];CodeMap.DynamicFuncCodeEntry.prototype={__proto__:CodeMap.CodeEntry.prototype,get name(){return CodeMap.DynamicFuncCodeEntry.STATE_PREFIX[this.state]+
5216this.func.name;},set name(value){this.name_=value;},getRawName(){return this.func.getName();},isJSFunction(){return true;},toString(){return this.type+': '+this.name+': '+this.size.toString(16);}};CodeMap.FunctionEntry=function(name){CodeMap.CodeEntry.call(this,0,name);};CodeMap.FunctionEntry.prototype={__proto__:CodeMap.CodeEntry.prototype,get name(){let name=this.name_;if(name.length===0){name='<anonymous>';}else if(name.charAt(0)===' '){name='<anonymous>'+name;}
5217return name;},set name(value){this.name_=value;}};CodeMap.NameGenerator=function(){this.knownNames_={};};CodeMap.NameGenerator.prototype.getName=function(name){if(!(name in this.knownNames_)){this.knownNames_[name]=0;return name;}
5218const count=++this.knownNames_[name];return name+' {'+count+'}';};return{CodeMap,};});'use strict';tr.exportTo('tr.e.importer.v8',function(){function CsvParser(){}
5219CsvParser.CSV_FIELD_RE_=/^"((?:[^"]|"")*)"|([^,]*)/;CsvParser.DOUBLE_QUOTE_RE_=/""/g;CsvParser.prototype.parseLine=function(line){const fieldRe=CsvParser.CSV_FIELD_RE_;const doubleQuoteRe=CsvParser.DOUBLE_QUOTE_RE_;let pos=0;const endPos=line.length;const fields=[];if(endPos>0){do{const fieldMatch=fieldRe.exec(line.substr(pos));if(typeof fieldMatch[1]==='string'){const field=fieldMatch[1];pos+=field.length+3;fields.push(field.replace(doubleQuoteRe,'"'));}else{const field=fieldMatch[2];pos+=field.length+1;fields.push(field);}}while(pos<=endPos);}
5220return fields;};function LogReader(dispatchTable){this.dispatchTable_=dispatchTable;this.lineNum_=0;this.csvParser_=new CsvParser();}
5221LogReader.prototype.printError=function(str){};LogReader.prototype.processLogChunk=function(chunk){this.processLog_(chunk.split('\n'));};LogReader.prototype.processLogLine=function(line){this.processLog_([line]);};LogReader.prototype.processStack=function(pc,func,stack){const fullStack=func?[pc,func]:[pc];let prevFrame=pc;for(let i=0,n=stack.length;i<n;++i){const frame=stack[i];const firstChar=frame.charAt(0);if(firstChar==='+'||firstChar==='-'){prevFrame+=parseInt(frame,16);fullStack.push(prevFrame);}else if(firstChar!=='o'){fullStack.push(parseInt(frame,16));}}
5222return fullStack;};LogReader.prototype.skipDispatch=function(dispatch){return false;};LogReader.prototype.dispatchLogRow_=function(fields){const command=fields[0];if(!(command in this.dispatchTable_))return;const dispatch=this.dispatchTable_[command];if(dispatch===null||this.skipDispatch(dispatch)){return;}
5223const parsedFields=[];for(let i=0;i<dispatch.parsers.length;++i){const parser=dispatch.parsers[i];if(parser===null){parsedFields.push(fields[1+i]);}else if(typeof parser==='function'){parsedFields.push(parser(fields[1+i]));}else{parsedFields.push(fields.slice(1+i));break;}}
5224dispatch.processor.apply(this,parsedFields);};LogReader.prototype.processLog_=function(lines){for(let i=0,n=lines.length;i<n;++i,++this.lineNum_){const line=lines[i];if(!line){continue;}
5225try{const fields=this.csvParser_.parseLine(line);this.dispatchLogRow_(fields);}catch(e){this.printError('line '+(this.lineNum_+1)+': '+
5226(e.message||e));}}};return{LogReader,};});'use strict';tr.exportTo('tr.model',function(){function ProfileNode(id,title,parentNode){this.id_=id;this.title_=title;this.parentNode_=parentNode;this.colorId_=-1;this.userFriendlyStack_=[];}
5227ProfileNode.prototype={__proto__:Object.prototype,get title(){return this.title_;},get parentNode(){return this.parentNode_;},set parentNode(value){this.parentNode_=value;},get id(){return this.id_;},get colorId(){return this.colorId_;},set colorId(value){this.colorId_=value;},get userFriendlyName(){return this.title_;},get userFriendlyStack(){if(this.userFriendlyStack_.length===0){this.userFriendlyStack_=[this.userFriendlyName];if(this.parentNode_!==undefined){this.userFriendlyStack_=this.userFriendlyStack_.concat(this.parentNode_.userFriendlyStack);}}
5228return this.userFriendlyStack_;},get sampleTitle(){throw new Error('Not implemented.');}};tr.model.EventRegistry.register(ProfileNode,{name:'Node',pluralName:'Nodes'});return{ProfileNode,};});'use strict';tr.exportTo('tr.e.v8',function(){const ProfileNode=tr.model.ProfileNode;function V8CpuProfileNode(id,callFrame,parentNode){ProfileNode.call(this,id,callFrame.functionName,parentNode);this.callFrame_=tr.b.deepCopy(callFrame);this.deoptReason_='';this.colorId_=tr.b.ColorScheme.getColorIdForGeneralPurposeString(callFrame.functionName);}
5229V8CpuProfileNode.prototype={__proto__:ProfileNode.prototype,get functionName(){return this.callFrame_.functionName;},get scriptId(){return this.callFrame_.scriptId;},get url(){if(!this.callFrame_.url){return'unknown';}
5230let url=this.callFrame_.url;if(this.callFrame_.lineNumber===undefined){return url;}
5231url=url+':'+this.callFrame_.lineNumber;if(this.callFrame_.columnNumber===undefined){return url;}
5232url=url+':'+this.callFrame_.columnNumber;return url;},get deoptReason(){return this.deoptReason_;},set deoptReason(value){this.deoptReason_=value;},get userFriendlyName(){const name=this.functionName+' url: '+this.url;return!this.deoptReason_?name:name+' Deoptimized reason: '+this.deoptReason_;},get sampleTitle(){return'V8 Sample';}};V8CpuProfileNode.constructFromObject=function(profileTree,node){const nodeId=node.id;if(nodeId===1){return undefined;}
5233const parentNode=profileTree.getNode(node.parent);const profileNode=new V8CpuProfileNode(nodeId,node.callFrame,parentNode);if(node.deoptReason!==undefined){profileNode.deoptReason=node.deoptReason;}
5234return profileNode;};ProfileNode.subTypes.register(V8CpuProfileNode,{typeName:'cpuProfile',name:'v8 cpu profile node',pluralName:'v8 cpu profile nodes'});ProfileNode.subTypes.register(V8CpuProfileNode,{typeName:'legacySample',name:'v8 cpu profile node',pluralName:'v8 cpu profile nodes'});return{ProfileNode,};});'use strict';tr.exportTo('tr.model',function(){function ProfileTree(){this.startTime_=undefined;this.endTime_=undefined;this.tree_=new Map();this.pid_=-1;this.tid_=-1;}
5235ProfileTree.prototype={__proto__:Object.prototype,get pid(){return this.pid_;},set pid(value){this.pid_=value;},get tid(){return this.tid_;},set tid(value){this.tid_=value;},get tree(){return this.tree_;},get startTime(){return this.startTime_;},set startTime(value){this.startTime_=value;this.endTime_=value;},get endTime(){return this.endTime_;},set endTime(value){this.endTime_=value;},add(node){if(this.tree_.has(node.id)){throw new Error('Conflict id in the profile tree.');}
5236this.tree_.set(node.id,node);return node;},getNode(nodeId){return this.tree_.get(nodeId);}};return{ProfileTree,};});'use strict';tr.exportTo('tr.e.importer.v8',function(){const CodeEntry=tr.e.importer.v8.CodeMap.CodeEntry;const CodeMap=tr.e.importer.v8.CodeMap;const ColorScheme=tr.b.ColorScheme;const DynamicFuncCodeEntry=tr.e.importer.v8.CodeMap.DynamicFuncCodeEntry;const FunctionEntry=tr.e.importer.v8.CodeMap.FunctionEntry;const ProfileNodeType=tr.model.ProfileNode.subTypes.getConstructor(undefined,'legacySample');function V8LogImporter(model,eventData){this.importPriority=3;this.model_=model;this.logData_=eventData;this.code_map_=new CodeMap();this.v8_timer_thread_=undefined;this.v8_thread_=undefined;this.profileTree_=new tr.model.ProfileTree();this.profileTree_.add(new ProfileNodeType(-1,{url:'',functionName:'unknown'}));this.v8_stack_timeline_=[];}
5237const kV8BinarySuffixes=['/d8','/libv8.so'];const TimerEventDefaultArgs={'V8.Execute':{pause:false,no_execution:false},'V8.External':{pause:false,no_execution:true},'V8.CompileFullCode':{pause:true,no_execution:true},'V8.RecompileSynchronous':{pause:true,no_execution:true},'V8.RecompileParallel':{pause:false,no_execution:false},'V8.CompileEval':{pause:true,no_execution:true},'V8.Parse':{pause:true,no_execution:true},'V8.PreParse':{pause:true,no_execution:true},'V8.ParseLazy':{pause:true,no_execution:true},'V8.GCScavenger':{pause:true,no_execution:true},'V8.GCCompactor':{pause:true,no_execution:true},'V8.GCContext':{pause:true,no_execution:true}};V8LogImporter.canImport=function(eventData){if(typeof(eventData)!=='string'&&!(eventData instanceof String)){return false;}
5238return eventData.substring(0,11)==='v8-version,'||eventData.substring(0,12)==='timer-event,'||eventData.substring(0,5)==='tick,'||eventData.substring(0,15)==='shared-library,'||eventData.substring(0,9)==='profiler,'||eventData.substring(0,14)==='code-creation,';};V8LogImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'V8LogImporter';},processTimerEvent_(name,startInUs,lengthInUs){const args=TimerEventDefaultArgs[name];if(args===undefined)return;const startInMs=tr.b.convertUnit(startInUs,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);const lengthInMs=tr.b.convertUnit(lengthInUs,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);const colorId=ColorScheme.getColorIdForGeneralPurposeString(name);const slice=new tr.model.ThreadSlice('v8',name,colorId,startInMs,args,lengthInMs);this.v8_timer_thread_.sliceGroup.pushSlice(slice);},processTimerEventStart_(name,startInUs){const args=TimerEventDefaultArgs[name];if(args===undefined)return;const startInMs=tr.b.convertUnit(startInUs,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);this.v8_timer_thread_.sliceGroup.beginSlice('v8',name,startInMs,args);},processTimerEventEnd_(name,endInUs){const endInMs=tr.b.convertUnit(endInUs,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);this.v8_timer_thread_.sliceGroup.endSlice(endInMs);},processCodeCreateEvent_(type,kind,address,size,name,maybeFunc){function parseState(s){switch(s){case'':return CodeMap.CodeState.COMPILED;case'~':return CodeMap.CodeState.OPTIMIZABLE;case'*':return CodeMap.CodeState.OPTIMIZED;}
5239throw new Error('unknown code state: '+s);}
5240if(maybeFunc.length){const funcAddr=parseInt(maybeFunc[0]);const state=parseState(maybeFunc[1]);let func=this.code_map_.findDynamicEntryByStartAddress(funcAddr);if(!func){func=new FunctionEntry(name);func.kind=kind;this.code_map_.addCode(funcAddr,func);}else if(func.name!==name){func.name=name;}
5241let entry=this.code_map_.findDynamicEntryByStartAddress(address);if(entry){if(entry.size===size&&entry.func===func){entry.state=state;}}else{entry=new DynamicFuncCodeEntry(size,type,func,state);entry.kind=kind;this.code_map_.addCode(address,entry);}}else{const codeEntry=new CodeEntry(size,name);codeEntry.kind=kind;this.code_map_.addCode(address,codeEntry);}},processCodeMoveEvent_(from,to){this.code_map_.moveCode(from,to);},processCodeDeleteEvent_(address){this.code_map_.deleteCode(address);},processSharedLibrary_(name,start,end){const codeEntry=new CodeEntry(end-start,name,CodeEntry.TYPE.SHARED_LIB);codeEntry.kind=-3;for(let i=0;i<kV8BinarySuffixes.length;i++){const suffix=kV8BinarySuffixes[i];if(name.indexOf(suffix,name.length-suffix.length)>=0){codeEntry.kind=-1;break;}}
5242this.code_map_.addLibrary(start,codeEntry);},processCppSymbol_(address,size,name){const codeEntry=new CodeEntry(size,name,CodeEntry.TYPE.CPP);codeEntry.kind=-1;this.code_map_.addStaticCode(address,codeEntry);},processTickEvent_(pc,startInUs,isExternalCallback,tosOrExternalCallback,vmstate,stack){const startInMs=tr.b.convertUnit(startInUs,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);function findChildWithEntryID(stackFrame,entryID){for(let i=0;i<stackFrame.children.length;i++){if(stackFrame.children[i].entryID===entryID){return stackFrame.children[i];}}
5243return undefined;}
5244function processStack(pc,func,stack){const fullStack=func?[pc,func]:[pc];let prevFrame=pc;for(let i=0,n=stack.length;i<n;++i){const frame=stack[i];const firstChar=frame.charAt(0);if(firstChar==='+'||firstChar==='-'){prevFrame+=parseInt(frame,16);fullStack.push(prevFrame);}else if(firstChar!=='o'){fullStack.push(parseInt(frame,16));}}
5245return fullStack;}
5246if(isExternalCallback){pc=tosOrExternalCallback;tosOrExternalCallback=0;}else if(tosOrExternalCallback){const funcEntry=this.code_map_.findEntry(tosOrExternalCallback);if(!funcEntry||!funcEntry.isJSFunction||!funcEntry.isJSFunction()){tosOrExternalCallback=0;}}
5247let processedStack=processStack(pc,tosOrExternalCallback,stack);let node=undefined;let lastNode=undefined;processedStack=processedStack.reverse();for(let i=0,n=processedStack.length;i<n;i++){const frame=processedStack[i];if(!frame)break;const entry=this.code_map_.findEntry(frame);if(!entry&&i!==0){continue;}
5248let sourceInfo=undefined;if(entry&&entry.type===CodeEntry.TYPE.CPP){const libEntry=this.code_map_.findEntryInLibraries(frame);if(libEntry){sourceInfo={file:libEntry.name};}}
5249const entryId=entry?entry.id:-1;node=this.profileTree_.getNode(entryId);if(node===undefined){node=this.profileTree_.add(new ProfileNodeType(entryId,{functionName:entry.name,url:sourceInfo?sourceInfo.file:'',lineNumber:sourceInfo?sourceInfo.line:undefined,columnNumber:sourceInfo?sourceInfo.column:undefined,scriptId:sourceInfo?sourceInfo.scriptId:undefined},lastNode));}
5250lastNode=node;}
5251this.model_.samples.push(new tr.model.Sample(startInMs,'V8 PC',node,this.v8_thread_,undefined,1));},processDistortion_(distortionInPicoseconds){},processPlotRange_(start,end){},processV8Version_(major,minor,build,patch,candidate){},importEvents(){const logreader=new tr.e.importer.v8.LogReader({'timer-event':{parsers:[null,parseInt,parseInt],processor:this.processTimerEvent_.bind(this)},'shared-library':{parsers:[null,parseInt,parseInt],processor:this.processSharedLibrary_.bind(this)},'timer-event-start':{parsers:[null,parseInt],processor:this.processTimerEventStart_.bind(this)},'timer-event-end':{parsers:[null,parseInt],processor:this.processTimerEventEnd_.bind(this)},'code-creation':{parsers:[null,parseInt,parseInt,parseInt,null,'var-args'],processor:this.processCodeCreateEvent_.bind(this)},'code-move':{parsers:[parseInt,parseInt],processor:this.processCodeMoveEvent_.bind(this)},'code-delete':{parsers:[parseInt],processor:this.processCodeDeleteEvent_.bind(this)},'cpp':{parsers:[parseInt,parseInt,null],processor:this.processCppSymbol_.bind(this)},'tick':{parsers:[parseInt,parseInt,parseInt,parseInt,parseInt,'var-args'],processor:this.processTickEvent_.bind(this)},'distortion':{parsers:[parseInt],processor:this.processDistortion_.bind(this)},'plot-range':{parsers:[parseInt,parseInt],processor:this.processPlotRange_.bind(this)},'v8-version':{parsers:[parseInt,parseInt,parseInt,parseInt,parseInt],processor:this.processV8Version_.bind(this)}});this.v8_timer_thread_=this.model_.getOrCreateProcess(-32).getOrCreateThread(1);this.v8_timer_thread_.name='V8 Timers';this.v8_thread_=this.model_.getOrCreateProcess(-32).getOrCreateThread(2);this.v8_thread_.name='V8';const lines=this.logData_.split('\n');for(let i=0;i<lines.length;i++){logreader.processLogLine(lines[i]);}
5252function addSlices(slices,thread){for(let i=0;i<slices.length;i++){const duration=slices[i].end-slices[i].start;const slice=new tr.model.ThreadSlice('v8',slices[i].name,ColorScheme.getColorIdForGeneralPurposeString(slices[i].name),slices[i].start,{},duration);thread.sliceGroup.pushSlice(slice);addSlices(slices[i].children,thread);}}
5253addSlices(this.v8_stack_timeline_,this.v8_thread_);}};tr.importer.Importer.register(V8LogImporter);return{V8LogImporter,};});'use strict';if(tr.isVinn){global.window={};}
5254!function(a){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var b;"undefined"!=typeof window?b=window:"undefined"!=typeof global?b=global:"undefined"!=typeof self&&(b=self),b.JSZip=a()}}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){"use strict";var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";c.encode=function(a){for(var b,c,e,f,g,h,i,j="",k=0;k<a.length;)b=a.charCodeAt(k++),c=a.charCodeAt(k++),e=a.charCodeAt(k++),f=b>>2,g=(3&b)<<4|c>>4,h=(15&c)<<2|e>>6,i=63&e,isNaN(c)?h=i=64:isNaN(e)&&(i=64),j=j+d.charAt(f)+d.charAt(g)+d.charAt(h)+d.charAt(i);return j},c.decode=function(a){var b,c,e,f,g,h,i,j="",k=0;for(a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");k<a.length;)f=d.indexOf(a.charAt(k++)),g=d.indexOf(a.charAt(k++)),h=d.indexOf(a.charAt(k++)),i=d.indexOf(a.charAt(k++)),b=f<<2|g>>4,c=(15&g)<<4|h>>2,e=(3&h)<<6|i,j+=String.fromCharCode(b),64!=h&&(j+=String.fromCharCode(c)),64!=i&&(j+=String.fromCharCode(e));return j}},{}],2:[function(a,b){"use strict";function c(){this.compressedSize=0,this.uncompressedSize=0,this.crc32=0,this.compressionMethod=null,this.compressedContent=null}c.prototype={getContent:function(){return null},getCompressedContent:function(){return null}},b.exports=c},{}],3:[function(a,b,c){"use strict";c.STORE={magic:"\x00\x00",compress:function(a){return a},uncompress:function(a){return a},compressInputType:null,uncompressInputType:null},c.DEFLATE=a("./flate")},{"./flate":8}],4:[function(a,b){"use strict";var c=a("./utils"),d=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];b.exports=function(a,b){if("undefined"==typeof a||!a.length)return 0;var e="string"!==c.getTypeOf(a);"undefined"==typeof b&&(b=0);var f=0,g=0,h=0;b=-1^b;for(var i=0,j=a.length;j>i;i++)h=e?a[i]:a.charCodeAt(i),g=255&(b^h),f=d[g],b=b>>>8^f;return-1^b}},{"./utils":21}],5:[function(a,b){"use strict";function c(){this.data=null,this.length=0,this.index=0}var d=a("./utils");c.prototype={checkOffset:function(a){this.checkIndex(this.index+a)},checkIndex:function(a){if(this.length<a||0>a)throw new Error("End of data reached (data length = "+this.length+", asked index = "+a+"). Corrupted zip ?")},setIndex:function(a){this.checkIndex(a),this.index=a},skip:function(a){this.setIndex(this.index+a)},byteAt:function(){},readInt:function(a){var b,c=0;for(this.checkOffset(a),b=this.index+a-1;b>=this.index;b--)c=(c<<8)+this.byteAt(b);return this.index+=a,c},readString:function(a){return d.transformTo("string",this.readData(a))},readData:function(){},lastIndexOfSignature:function(){},readDate:function(){var a=this.readInt(4);return new Date((a>>25&127)+1980,(a>>21&15)-1,a>>16&31,a>>11&31,a>>5&63,(31&a)<<1)}},b.exports=c},{"./utils":21}],6:[function(a,b,c){"use strict";c.base64=!1,c.binary=!1,c.dir=!1,c.createFolders=!1,c.date=null,c.compression=null,c.comment=null},{}],7:[function(a,b,c){"use strict";var d=a("./utils");c.string2binary=function(a){return d.string2binary(a)},c.string2Uint8Array=function(a){return d.transformTo("uint8array",a)},c.uint8Array2String=function(a){return d.transformTo("string",a)},c.string2Blob=function(a){var b=d.transformTo("arraybuffer",a);return d.arrayBuffer2Blob(b)},c.arrayBuffer2Blob=function(a){return d.arrayBuffer2Blob(a)},c.transformTo=function(a,b){return d.transformTo(a,b)},c.getTypeOf=function(a){return d.getTypeOf(a)},c.checkSupport=function(a){return d.checkSupport(a)},c.MAX_VALUE_16BITS=d.MAX_VALUE_16BITS,c.MAX_VALUE_32BITS=d.MAX_VALUE_32BITS,c.pretty=function(a){return d.pretty(a)},c.findCompression=function(a){return d.findCompression(a)},c.isRegExp=function(a){return d.isRegExp(a)}},{"./utils":21}],8:[function(a,b,c){"use strict";var d="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,e=a("pako");c.uncompressInputType=d?"uint8array":"array",c.compressInputType=d?"uint8array":"array",c.magic="\b\x00",c.compress=function(a){return e.deflateRaw(a)},c.uncompress=function(a){return e.inflateRaw(a)}},{pako:24}],9:[function(a,b){"use strict";function c(a,b){return this instanceof c?(this.files={},this.comment=null,this.root="",a&&this.load(a,b),void(this.clone=function(){var a=new c;for(var b in this)"function"!=typeof this[b]&&(a[b]=this[b]);return a})):new c(a,b)}var d=a("./base64");c.prototype=a("./object"),c.prototype.load=a("./load"),c.support=a("./support"),c.defaults=a("./defaults"),c.utils=a("./deprecatedPublicUtils"),c.base64={encode:function(a){return d.encode(a)},decode:function(a){return d.decode(a)}},c.compressions=a("./compressions"),b.exports=c},{"./base64":1,"./compressions":3,"./defaults":6,"./deprecatedPublicUtils":7,"./load":10,"./object":13,"./support":17}],10:[function(a,b){"use strict";var c=a("./base64"),d=a("./zipEntries");b.exports=function(a,b){var e,f,g,h;for(b=b||{},b.base64&&(a=c.decode(a)),f=new d(a,b),e=f.files,g=0;g<e.length;g++)h=e[g],this.file(h.fileName,h.decompressed,{binary:!0,optimizedBinaryString:!0,date:h.date,dir:h.dir,comment:h.fileComment.length?h.fileComment:null,createFolders:b.createFolders});return f.zipComment.length&&(this.comment=f.zipComment),this}},{"./base64":1,"./zipEntries":22}],11:[function(a,b){(function(a){"use strict";b.exports=function(b,c){return new a(b,c)},b.exports.test=function(b){return a.isBuffer(b)}}).call(this,"undefined"!=typeof Buffer?Buffer:void 0)},{}],12:[function(a,b){"use strict";function c(a){this.data=a,this.length=this.data.length,this.index=0}var d=a("./uint8ArrayReader");c.prototype=new d,c.prototype.readData=function(a){this.checkOffset(a);var b=this.data.slice(this.index,this.index+a);return this.index+=a,b},b.exports=c},{"./uint8ArrayReader":18}],13:[function(a,b){"use strict";var c=a("./support"),d=a("./utils"),e=a("./crc32"),f=a("./signature"),g=a("./defaults"),h=a("./base64"),i=a("./compressions"),j=a("./compressedObject"),k=a("./nodeBuffer"),l=a("./utf8"),m=a("./stringWriter"),n=a("./uint8ArrayWriter"),o=function(a){if(a._data instanceof j&&(a._data=a._data.getContent(),a.options.binary=!0,a.options.base64=!1,"uint8array"===d.getTypeOf(a._data))){var b=a._data;a._data=new Uint8Array(b.length),0!==b.length&&a._data.set(b,0)}return a._data},p=function(a){var b=o(a),e=d.getTypeOf(b);return"string"===e?!a.options.binary&&c.nodebuffer?k(b,"utf-8"):a.asBinary():b},q=function(a){var b=o(this);return null===b||"undefined"==typeof b?"":(this.options.base64&&(b=h.decode(b)),b=a&&this.options.binary?A.utf8decode(b):d.transformTo("string",b),a||this.options.binary||(b=d.transformTo("string",A.utf8encode(b))),b)},r=function(a,b,c){this.name=a,this.dir=c.dir,this.date=c.date,this.comment=c.comment,this._data=b,this.options=c,this._initialMetadata={dir:c.dir,date:c.date}};r.prototype={asText:function(){return q.call(this,!0)},asBinary:function(){return q.call(this,!1)},asNodeBuffer:function(){var a=p(this);return d.transformTo("nodebuffer",a)},asUint8Array:function(){var a=p(this);return d.transformTo("uint8array",a)},asArrayBuffer:function(){return this.asUint8Array().buffer}};var s=function(a,b){var c,d="";for(c=0;b>c;c++)d+=String.fromCharCode(255&a),a>>>=8;return d},t=function(){var a,b,c={};for(a=0;a<arguments.length;a++)for(b in arguments[a])arguments[a].hasOwnProperty(b)&&"undefined"==typeof c[b]&&(c[b]=arguments[a][b]);return c},u=function(a){return a=a||{},a.base64!==!0||null!==a.binary&&void 0!==a.binary||(a.binary=!0),a=t(a,g),a.date=a.date||new Date,null!==a.compression&&(a.compression=a.compression.toUpperCase()),a},v=function(a,b,c){var e,f=d.getTypeOf(b);if(c=u(c),c.createFolders&&(e=w(a))&&x.call(this,e,!0),c.dir||null===b||"undefined"==typeof b)c.base64=!1,c.binary=!1,b=null;else if("string"===f)c.binary&&!c.base64&&c.optimizedBinaryString!==!0&&(b=d.string2binary(b));else{if(c.base64=!1,c.binary=!0,!(f||b instanceof j))throw new Error("The data of '"+a+"' is in an unsupported format !");"arraybuffer"===f&&(b=d.transformTo("uint8array",b))}var g=new r(a,b,c);return this.files[a]=g,g},w=function(a){"/"==a.slice(-1)&&(a=a.substring(0,a.length-1));var b=a.lastIndexOf("/");return b>0?a.substring(0,b):""},x=function(a,b){return"/"!=a.slice(-1)&&(a+="/"),b="undefined"!=typeof b?b:!1,this.files[a]||v.call(this,a,null,{dir:!0,createFolders:b}),this.files[a]},y=function(a,b){var c,f=new j;return a._data instanceof j?(f.uncompressedSize=a._data.uncompressedSize,f.crc32=a._data.crc32,0===f.uncompressedSize||a.dir?(b=i.STORE,f.compressedContent="",f.crc32=0):a._data.compressionMethod===b.magic?f.compressedContent=a._data.getCompressedContent():(c=a._data.getContent(),f.compressedContent=b.compress(d.transformTo(b.compressInputType,c)))):(c=p(a),(!c||0===c.length||a.dir)&&(b=i.STORE,c=""),f.uncompressedSize=c.length,f.crc32=e(c),f.compressedContent=b.compress(d.transformTo(b.compressInputType,c))),f.compressedSize=f.compressedContent.length,f.compressionMethod=b.magic,f},z=function(a,b,c,g){var h,i,j,k,m=(c.compressedContent,d.transformTo("string",l.utf8encode(b.name))),n=b.comment||"",o=d.transformTo("string",l.utf8encode(n)),p=m.length!==b.name.length,q=o.length!==n.length,r=b.options,t="",u="",v="";j=b._initialMetadata.dir!==b.dir?b.dir:r.dir,k=b._initialMetadata.date!==b.date?b.date:r.date,h=k.getHours(),h<<=6,h|=k.getMinutes(),h<<=5,h|=k.getSeconds()/2,i=k.getFullYear()-1980,i<<=4,i|=k.getMonth()+1,i<<=5,i|=k.getDate(),p&&(u=s(1,1)+s(e(m),4)+m,t+="up"+s(u.length,2)+u),q&&(v=s(1,1)+s(this.crc32(o),4)+o,t+="uc"+s(v.length,2)+v);var w="";w+="\n\x00",w+=p||q?"\x00\b":"\x00\x00",w+=c.compressionMethod,w+=s(h,2),w+=s(i,2),w+=s(c.crc32,4),w+=s(c.compressedSize,4),w+=s(c.uncompressedSize,4),w+=s(m.length,2),w+=s(t.length,2);var x=f.LOCAL_FILE_HEADER+w+m+t,y=f.CENTRAL_FILE_HEADER+"\x00"+w+s(o.length,2)+"\x00\x00\x00\x00"+(j===!0?"\x00\x00\x00":"\x00\x00\x00\x00")+s(g,4)+m+t+o;return{fileRecord:x,dirRecord:y,compressedObject:c}},A={load:function(){throw new Error("Load method is not defined. Is the file jszip-load.js included ?")},filter:function(a){var b,c,d,e,f=[];for(b in this.files)this.files.hasOwnProperty(b)&&(d=this.files[b],e=new r(d.name,d._data,t(d.options)),c=b.slice(this.root.length,b.length),b.slice(0,this.root.length)===this.root&&a(c,e)&&f.push(e));return f},file:function(a,b,c){if(1===arguments.length){if(d.isRegExp(a)){var e=a;return this.filter(function(a,b){return!b.dir&&e.test(a)})}return this.filter(function(b,c){return!c.dir&&b===a})[0]||null}return a=this.root+a,v.call(this,a,b,c),this},folder:function(a){if(!a)return this;if(d.isRegExp(a))return this.filter(function(b,c){return c.dir&&a.test(b)});var b=this.root+a,c=x.call(this,b),e=this.clone();return e.root=c.name,e},remove:function(a){a=this.root+a;var b=this.files[a];if(b||("/"!=a.slice(-1)&&(a+="/"),b=this.files[a]),b&&!b.dir)delete this.files[a];else for(var c=this.filter(function(b,c){return c.name.slice(0,a.length)===a}),d=0;d<c.length;d++)delete this.files[c[d].name];return this},generate:function(a){a=t(a||{},{base64:!0,compression:"STORE",type:"base64",comment:null}),d.checkSupport(a.type);var b,c,e=[],g=0,j=0,k=d.transformTo("string",this.utf8encode(a.comment||this.comment||""));for(var l in this.files)if(this.files.hasOwnProperty(l)){var o=this.files[l],p=o.options.compression||a.compression.toUpperCase(),q=i[p];if(!q)throw new Error(p+" is not a valid compression method !");var r=y.call(this,o,q),u=z.call(this,l,o,r,g);g+=u.fileRecord.length+r.compressedSize,j+=u.dirRecord.length,e.push(u)}var v="";v=f.CENTRAL_DIRECTORY_END+"\x00\x00\x00\x00"+s(e.length,2)+s(e.length,2)+s(j,4)+s(g,4)+s(k.length,2)+k;var w=a.type.toLowerCase();for(b="uint8array"===w||"arraybuffer"===w||"blob"===w||"nodebuffer"===w?new n(g+j+v.length):new m(g+j+v.length),c=0;c<e.length;c++)b.append(e[c].fileRecord),b.append(e[c].compressedObject.compressedContent);for(c=0;c<e.length;c++)b.append(e[c].dirRecord);b.append(v);var x=b.finalize();switch(a.type.toLowerCase()){case"uint8array":case"arraybuffer":case"nodebuffer":return d.transformTo(a.type.toLowerCase(),x);case"blob":return d.arrayBuffer2Blob(d.transformTo("arraybuffer",x));case"base64":return a.base64?h.encode(x):x;default:return x}},crc32:function(a,b){return e(a,b)},utf8encode:function(a){return d.transformTo("string",l.utf8encode(a))},utf8decode:function(a){return l.utf8decode(a)}};b.exports=A},{"./base64":1,"./compressedObject":2,"./compressions":3,"./crc32":4,"./defaults":6,"./nodeBuffer":11,"./signature":14,"./stringWriter":16,"./support":17,"./uint8ArrayWriter":19,"./utf8":20,"./utils":21}],14:[function(a,b,c){"use strict";c.LOCAL_FILE_HEADER="PK",c.CENTRAL_FILE_HEADER="PK",c.CENTRAL_DIRECTORY_END="PK",c.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",c.ZIP64_CENTRAL_DIRECTORY_END="PK",c.DATA_DESCRIPTOR="PK\b"},{}],15:[function(a,b){"use strict";function c(a,b){this.data=a,b||(this.data=e.string2binary(this.data)),this.length=this.data.length,this.index=0}var d=a("./dataReader"),e=a("./utils");c.prototype=new d,c.prototype.byteAt=function(a){return this.data.charCodeAt(a)},c.prototype.lastIndexOfSignature=function(a){return this.data.lastIndexOf(a)},c.prototype.readData=function(a){this.checkOffset(a);var b=this.data.slice(this.index,this.index+a);return this.index+=a,b},b.exports=c},{"./dataReader":5,"./utils":21}],16:[function(a,b){"use strict";var c=a("./utils"),d=function(){this.data=[]};d.prototype={append:function(a){a=c.transformTo("string",a),this.data.push(a)},finalize:function(){return this.data.join("")}},b.exports=d},{"./utils":21}],17:[function(a,b,c){(function(a){"use strict";if(c.base64=!0,c.array=!0,c.string=!0,c.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,c.nodebuffer="undefined"!=typeof a,c.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)c.blob=!1;else{var b=new ArrayBuffer(0);try{c.blob=0===new Blob([b],{type:"application/zip"}).size}catch(d){try{var e=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,f=new e;f.append(b),c.blob=0===f.getBlob("application/zip").size}catch(d){c.blob=!1}}}}).call(this,"undefined"!=typeof Buffer?Buffer:void 0)},{}],18:[function(a,b){"use strict";function c(a){a&&(this.data=a,this.length=this.data.length,this.index=0)}var d=a("./dataReader");c.prototype=new d,c.prototype.byteAt=function(a){return this.data[a]},c.prototype.lastIndexOfSignature=function(a){for(var b=a.charCodeAt(0),c=a.charCodeAt(1),d=a.charCodeAt(2),e=a.charCodeAt(3),f=this.length-4;f>=0;--f)if(this.data[f]===b&&this.data[f+1]===c&&this.data[f+2]===d&&this.data[f+3]===e)return f;return-1},c.prototype.readData=function(a){if(this.checkOffset(a),0===a)return new Uint8Array(0);var b=this.data.subarray(this.index,this.index+a);return this.index+=a,b},b.exports=c},{"./dataReader":5}],19:[function(a,b){"use strict";var c=a("./utils"),d=function(a){this.data=new Uint8Array(a),this.index=0};d.prototype={append:function(a){0!==a.length&&(a=c.transformTo("uint8array",a),this.data.set(a,this.index),this.index+=a.length)},finalize:function(){return this.data}},b.exports=d},{"./utils":21}],20:[function(a,b,c){"use strict";for(var d=a("./utils"),e=a("./support"),f=a("./nodeBuffer"),g=new Array(256),h=0;256>h;h++)g[h]=h>=252?6:h>=248?5:h>=240?4:h>=224?3:h>=192?2:1;g[254]=g[254]=1;var i=function(a){var b,c,d,f,g,h=a.length,i=0;for(f=0;h>f;f++)c=a.charCodeAt(f),55296===(64512&c)&&h>f+1&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),i+=128>c?1:2048>c?2:65536>c?3:4;for(b=e.uint8array?new Uint8Array(i):new Array(i),g=0,f=0;i>g;f++)c=a.charCodeAt(f),55296===(64512&c)&&h>f+1&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),128>c?b[g++]=c:2048>c?(b[g++]=192|c>>>6,b[g++]=128|63&c):65536>c?(b[g++]=224|c>>>12,b[g++]=128|c>>>6&63,b[g++]=128|63&c):(b[g++]=240|c>>>18,b[g++]=128|c>>>12&63,b[g++]=128|c>>>6&63,b[g++]=128|63&c);return b},j=function(a,b){var c;for(b=b||a.length,b>a.length&&(b=a.length),c=b-1;c>=0&&128===(192&a[c]);)c--;return 0>c?b:0===c?b:c+g[a[c]]>b?c:b},k=function(a){var b,c,e,f,h=a.length,i=new Array(2*h);for(c=0,b=0;h>b;)if(e=a[b++],128>e)i[c++]=e;else if(f=g[e],f>4)i[c++]=65533,b+=f-1;else{for(e&=2===f?31:3===f?15:7;f>1&&h>b;)e=e<<6|63&a[b++],f--;f>1?i[c++]=65533:65536>e?i[c++]=e:(e-=65536,i[c++]=55296|e>>10&1023,i[c++]=56320|1023&e)}return i.length!==c&&(i.subarray?i=i.subarray(0,c):i.length=c),d.applyFromCharCode(i)};c.utf8encode=function(a){return e.nodebuffer?f(a,"utf-8"):i(a)},c.utf8decode=function(a){if(e.nodebuffer)return d.transformTo("nodebuffer",a).toString("utf-8");a=d.transformTo(e.uint8array?"uint8array":"array",a);for(var b=[],c=0,f=a.length,g=65536;f>c;){var h=j(a,Math.min(c+g,f));b.push(e.uint8array?k(a.subarray(c,h)):k(a.slice(c,h))),c=h}return b.join("")}},{"./nodeBuffer":11,"./support":17,"./utils":21}],21:[function(a,b,c){"use strict";function d(a){return a}function e(a,b){for(var c=0;c<a.length;++c)b[c]=255&a.charCodeAt(c);return b}function f(a){var b=65536,d=[],e=a.length,f=c.getTypeOf(a),g=0,h=!0;try{switch(f){case"uint8array":String.fromCharCode.apply(null,new Uint8Array(0));break;case"nodebuffer":String.fromCharCode.apply(null,j(0))}}catch(i){h=!1}if(!h){for(var k="",l=0;l<a.length;l++)k+=String.fromCharCode(a[l]);return k}for(;e>g&&b>1;)try{d.push("array"===f||"nodebuffer"===f?String.fromCharCode.apply(null,a.slice(g,Math.min(g+b,e))):String.fromCharCode.apply(null,a.subarray(g,Math.min(g+b,e)))),g+=b}catch(i){b=Math.floor(b/2)}return d.join("")}function g(a,b){for(var c=0;c<a.length;c++)b[c]=a[c];return b}var h=a("./support"),i=a("./compressions"),j=a("./nodeBuffer");c.string2binary=function(a){for(var b="",c=0;c<a.length;c++)b+=String.fromCharCode(255&a.charCodeAt(c));return b},c.arrayBuffer2Blob=function(a){c.checkSupport("blob");try{return new Blob([a],{type:"application/zip"})}catch(b){try{var d=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,e=new d;return e.append(a),e.getBlob("application/zip")}catch(b){throw new Error("Bug : can't construct the Blob.")}}},c.applyFromCharCode=f;var k={};k.string={string:d,array:function(a){return e(a,new Array(a.length))},arraybuffer:function(a){return k.string.uint8array(a).buffer},uint8array:function(a){return e(a,new Uint8Array(a.length))},nodebuffer:function(a){return e(a,j(a.length))}},k.array={string:f,array:d,arraybuffer:function(a){return new Uint8Array(a).buffer},uint8array:function(a){return new Uint8Array(a)},nodebuffer:function(a){return j(a)}},k.arraybuffer={string:function(a){return f(new Uint8Array(a))},array:function(a){return g(new Uint8Array(a),new Array(a.byteLength))},arraybuffer:d,uint8array:function(a){return new Uint8Array(a)},nodebuffer:function(a){return j(new Uint8Array(a))}},k.uint8array={string:f,array:function(a){return g(a,new Array(a.length))},arraybuffer:function(a){return a.buffer},uint8array:d,nodebuffer:function(a){return j(a)}},k.nodebuffer={string:f,array:function(a){return g(a,new Array(a.length))},arraybuffer:function(a){return k.nodebuffer.uint8array(a).buffer},uint8array:function(a){return g(a,new Uint8Array(a.length))},nodebuffer:d},c.transformTo=function(a,b){if(b||(b=""),!a)return b;c.checkSupport(a);var d=c.getTypeOf(b),e=k[d][a](b);return e},c.getTypeOf=function(a){return"string"==typeof a?"string":"[object Array]"===Object.prototype.toString.call(a)?"array":h.nodebuffer&&j.test(a)?"nodebuffer":h.uint8array&&a instanceof Uint8Array?"uint8array":h.arraybuffer&&a instanceof ArrayBuffer?"arraybuffer":void 0},c.checkSupport=function(a){var b=h[a.toLowerCase()];if(!b)throw new Error(a+" is not supported by this browser")},c.MAX_VALUE_16BITS=65535,c.MAX_VALUE_32BITS=-1,c.pretty=function(a){var b,c,d="";for(c=0;c<(a||"").length;c++)b=a.charCodeAt(c),d+="\\x"+(16>b?"0":"")+b.toString(16).toUpperCase();return d},c.findCompression=function(a){for(var b in i)if(i.hasOwnProperty(b)&&i[b].magic===a)return i[b];return null},c.isRegExp=function(a){return"[object RegExp]"===Object.prototype.toString.call(a)}},{"./compressions":3,"./nodeBuffer":11,"./support":17}],22:[function(a,b){"use strict";function c(a,b){this.files=[],this.loadOptions=b,a&&this.load(a)}var d=a("./stringReader"),e=a("./nodeBufferReader"),f=a("./uint8ArrayReader"),g=a("./utils"),h=a("./signature"),i=a("./zipEntry"),j=a("./support"),k=a("./object");c.prototype={checkSignature:function(a){var b=this.reader.readString(4);if(b!==a)throw new Error("Corrupted zip or bug : unexpected signature ("+g.pretty(b)+", expected "+g.pretty(a)+")")},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2),this.zipComment=this.reader.readString(this.zipCommentLength),this.zipComment=k.utf8decode(this.zipComment)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.versionMadeBy=this.reader.readString(2),this.versionNeeded=this.reader.readInt(2),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var a,b,c,d=this.zip64EndOfCentralSize-44,e=0;d>e;)a=this.reader.readInt(2),b=this.reader.readInt(4),c=this.reader.readString(b),this.zip64ExtensibleData[a]={id:a,length:b,value:c}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),this.disksCount>1)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var a,b;for(a=0;a<this.files.length;a++)b=this.files[a],this.reader.setIndex(b.localHeaderOffset),this.checkSignature(h.LOCAL_FILE_HEADER),b.readLocalPart(this.reader),b.handleUTF8()},readCentralDir:function(){var a;for(this.reader.setIndex(this.centralDirOffset);this.reader.readString(4)===h.CENTRAL_FILE_HEADER;)a=new i({zip64:this.zip64},this.loadOptions),a.readCentralPart(this.reader),this.files.push(a)},readEndOfCentral:function(){var a=this.reader.lastIndexOfSignature(h.CENTRAL_DIRECTORY_END);if(-1===a)throw new Error("Corrupted zip : can't find end of central directory");if(this.reader.setIndex(a),this.checkSignature(h.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===g.MAX_VALUE_16BITS||this.diskWithCentralDirStart===g.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===g.MAX_VALUE_16BITS||this.centralDirRecords===g.MAX_VALUE_16BITS||this.centralDirSize===g.MAX_VALUE_32BITS||this.centralDirOffset===g.MAX_VALUE_32BITS){if(this.zip64=!0,a=this.reader.lastIndexOfSignature(h.ZIP64_CENTRAL_DIRECTORY_LOCATOR),-1===a)throw new Error("Corrupted zip : can't find the ZIP64 end of central directory locator");this.reader.setIndex(a),this.checkSignature(h.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(h.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}},prepareReader:function(a){var b=g.getTypeOf(a);this.reader="string"!==b||j.uint8array?"nodebuffer"===b?new e(a):new f(g.transformTo("uint8array",a)):new d(a,this.loadOptions.optimizedBinaryString)},load:function(a){this.prepareReader(a),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},b.exports=c},{"./nodeBufferReader":12,"./object":13,"./signature":14,"./stringReader":15,"./support":17,"./uint8ArrayReader":18,"./utils":21,"./zipEntry":23}],23:[function(a,b){"use strict";function c(a,b){this.options=a,this.loadOptions=b}var d=a("./stringReader"),e=a("./utils"),f=a("./compressedObject"),g=a("./object");c.prototype={isEncrypted:function(){return 1===(1&this.bitFlag)},useUTF8:function(){return 2048===(2048&this.bitFlag)},prepareCompressedContent:function(a,b,c){return function(){var d=a.index;a.setIndex(b);var e=a.readData(c);return a.setIndex(d),e}},prepareContent:function(a,b,c,d,f){return function(){var a=e.transformTo(d.uncompressInputType,this.getCompressedContent()),b=d.uncompress(a);if(b.length!==f)throw new Error("Bug : uncompressed data size mismatch");return b}},readLocalPart:function(a){var b,c;if(a.skip(22),this.fileNameLength=a.readInt(2),c=a.readInt(2),this.fileName=a.readString(this.fileNameLength),a.skip(c),-1==this.compressedSize||-1==this.uncompressedSize)throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory (compressedSize == -1 || uncompressedSize == -1)");if(b=e.findCompression(this.compressionMethod),null===b)throw new Error("Corrupted zip : compression "+e.pretty(this.compressionMethod)+" unknown (inner file : "+this.fileName+")");if(this.decompressed=new f,this.decompressed.compressedSize=this.compressedSize,this.decompressed.uncompressedSize=this.uncompressedSize,this.decompressed.crc32=this.crc32,this.decompressed.compressionMethod=this.compressionMethod,this.decompressed.getCompressedContent=this.prepareCompressedContent(a,a.index,this.compressedSize,b),this.decompressed.getContent=this.prepareContent(a,a.index,this.compressedSize,b,this.uncompressedSize),this.loadOptions.checkCRC32&&(this.decompressed=e.transformTo("string",this.decompressed.getContent()),g.crc32(this.decompressed)!==this.crc32))throw new Error("Corrupted zip : CRC32 mismatch")},readCentralPart:function(a){if(this.versionMadeBy=a.readString(2),this.versionNeeded=a.readInt(2),this.bitFlag=a.readInt(2),this.compressionMethod=a.readString(2),this.date=a.readDate(),this.crc32=a.readInt(4),this.compressedSize=a.readInt(4),this.uncompressedSize=a.readInt(4),this.fileNameLength=a.readInt(2),this.extraFieldsLength=a.readInt(2),this.fileCommentLength=a.readInt(2),this.diskNumberStart=a.readInt(2),this.internalFileAttributes=a.readInt(2),this.externalFileAttributes=a.readInt(4),this.localHeaderOffset=a.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");this.fileName=a.readString(this.fileNameLength),this.readExtraFields(a),this.parseZIP64ExtraField(a),this.fileComment=a.readString(this.fileCommentLength),this.dir=16&this.externalFileAttributes?!0:!1},parseZIP64ExtraField:function(){if(this.extraFields[1]){var a=new d(this.extraFields[1].value);this.uncompressedSize===e.MAX_VALUE_32BITS&&(this.uncompressedSize=a.readInt(8)),this.compressedSize===e.MAX_VALUE_32BITS&&(this.compressedSize=a.readInt(8)),this.localHeaderOffset===e.MAX_VALUE_32BITS&&(this.localHeaderOffset=a.readInt(8)),this.diskNumberStart===e.MAX_VALUE_32BITS&&(this.diskNumberStart=a.readInt(4))}},readExtraFields:function(a){var b,c,d,e=a.index;for(this.extraFields=this.extraFields||{};a.index<e+this.extraFieldsLength;)b=a.readInt(2),c=a.readInt(2),d=a.readString(c),this.extraFields[b]={id:b,length:c,value:d}},handleUTF8:function(){if(this.useUTF8())this.fileName=g.utf8decode(this.fileName),this.fileComment=g.utf8decode(this.fileComment);else{var a=this.findExtraFieldUnicodePath();null!==a&&(this.fileName=a);var b=this.findExtraFieldUnicodeComment();null!==b&&(this.fileComment=b)}},findExtraFieldUnicodePath:function(){var a=this.extraFields[28789];if(a){var b=new d(a.value);return 1!==b.readInt(1)?null:g.crc32(this.fileName)!==b.readInt(4)?null:g.utf8decode(b.readString(a.length-5))}return null},findExtraFieldUnicodeComment:function(){var a=this.extraFields[25461];if(a){var b=new d(a.value);return 1!==b.readInt(1)?null:g.crc32(this.fileComment)!==b.readInt(4)?null:g.utf8decode(b.readString(a.length-5))}return null}},b.exports=c},{"./compressedObject":2,"./object":13,"./stringReader":15,"./utils":21}],24:[function(a,b){"use strict";var c=a("./lib/utils/common").assign,d=a("./lib/deflate"),e=a("./lib/inflate"),f=a("./lib/zlib/constants"),g={};c(g,d,e,f),b.exports=g},{"./lib/deflate":25,"./lib/inflate":26,"./lib/utils/common":27,"./lib/zlib/constants":30}],25:[function(a,b,c){"use strict";function d(a,b){var c=new s(b);if(c.push(a,!0),c.err)throw c.msg;return c.result}function e(a,b){return b=b||{},b.raw=!0,d(a,b)}function f(a,b){return b=b||{},b.gzip=!0,d(a,b)}var g=a("./zlib/deflate.js"),h=a("./utils/common"),i=a("./utils/strings"),j=a("./zlib/messages"),k=a("./zlib/zstream"),l=0,m=4,n=0,o=1,p=-1,q=0,r=8,s=function(a){this.options=h.assign({level:p,method:r,chunkSize:16384,windowBits:15,memLevel:8,strategy:q,to:""},a||{});var b=this.options;b.raw&&b.windowBits>0?b.windowBits=-b.windowBits:b.gzip&&b.windowBits>0&&b.windowBits<16&&(b.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new k,this.strm.avail_out=0;var c=g.deflateInit2(this.strm,b.level,b.method,b.windowBits,b.memLevel,b.strategy);if(c!==n)throw new Error(j[c]);b.header&&g.deflateSetHeader(this.strm,b.header)};s.prototype.push=function(a,b){var c,d,e=this.strm,f=this.options.chunkSize;if(this.ended)return!1;d=b===~~b?b:b===!0?m:l,e.input="string"==typeof a?i.string2buf(a):a,e.next_in=0,e.avail_in=e.input.length;do{if(0===e.avail_out&&(e.output=new h.Buf8(f),e.next_out=0,e.avail_out=f),c=g.deflate(e,d),c!==o&&c!==n)return this.onEnd(c),this.ended=!0,!1;(0===e.avail_out||0===e.avail_in&&d===m)&&this.onData("string"===this.options.to?i.buf2binstring(h.shrinkBuf(e.output,e.next_out)):h.shrinkBuf(e.output,e.next_out))}while((e.avail_in>0||0===e.avail_out)&&c!==o);return d===m?(c=g.deflateEnd(this.strm),this.onEnd(c),this.ended=!0,c===n):!0},s.prototype.onData=function(a){this.chunks.push(a)},s.prototype.onEnd=function(a){a===n&&(this.result="string"===this.options.to?this.chunks.join(""):h.flattenChunks(this.chunks)),this.chunks=[],this.err=a,this.msg=this.strm.msg},c.Deflate=s,c.deflate=d,c.deflateRaw=e,c.gzip=f},{"./utils/common":27,"./utils/strings":28,"./zlib/deflate.js":32,"./zlib/messages":37,"./zlib/zstream":39}],26:[function(a,b,c){"use strict";function d(a,b){var c=new m(b);if(c.push(a,!0),c.err)throw c.msg;return c.result}function e(a,b){return b=b||{},b.raw=!0,d(a,b)}var f=a("./zlib/inflate.js"),g=a("./utils/common"),h=a("./utils/strings"),i=a("./zlib/constants"),j=a("./zlib/messages"),k=a("./zlib/zstream"),l=a("./zlib/gzheader"),m=function(a){this.options=g.assign({chunkSize:16384,windowBits:0,to:""},a||{});var b=this.options;b.raw&&b.windowBits>=0&&b.windowBits<16&&(b.windowBits=-b.windowBits,0===b.windowBits&&(b.windowBits=-15)),!(b.windowBits>=0&&b.windowBits<16)||a&&a.windowBits||(b.windowBits+=32),b.windowBits>15&&b.windowBits<48&&0===(15&b.windowBits)&&(b.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new k,this.strm.avail_out=0;var c=f.inflateInit2(this.strm,b.windowBits);if(c!==i.Z_OK)throw new Error(j[c]);this.header=new l,f.inflateGetHeader(this.strm,this.header)};m.prototype.push=function(a,b){var c,d,e,j,k,l=this.strm,m=this.options.chunkSize;if(this.ended)return!1;d=b===~~b?b:b===!0?i.Z_FINISH:i.Z_NO_FLUSH,l.input="string"==typeof a?h.binstring2buf(a):a,l.next_in=0,l.avail_in=l.input.length;do{if(0===l.avail_out&&(l.output=new g.Buf8(m),l.next_out=0,l.avail_out=m),c=f.inflate(l,i.Z_NO_FLUSH),c!==i.Z_STREAM_END&&c!==i.Z_OK)return this.onEnd(c),this.ended=!0,!1;l.next_out&&(0===l.avail_out||c===i.Z_STREAM_END||0===l.avail_in&&d===i.Z_FINISH)&&("string"===this.options.to?(e=h.utf8border(l.output,l.next_out),j=l.next_out-e,k=h.buf2string(l.output,e),l.next_out=j,l.avail_out=m-j,j&&g.arraySet(l.output,l.output,e,j,0),this.onData(k)):this.onData(g.shrinkBuf(l.output,l.next_out)))}while(l.avail_in>0&&c!==i.Z_STREAM_END);return c===i.Z_STREAM_END&&(d=i.Z_FINISH),d===i.Z_FINISH?(c=f.inflateEnd(this.strm),this.onEnd(c),this.ended=!0,c===i.Z_OK):!0},m.prototype.onData=function(a){this.chunks.push(a)},m.prototype.onEnd=function(a){a===i.Z_OK&&(this.result="string"===this.options.to?this.chunks.join(""):g.flattenChunks(this.chunks)),this.chunks=[],this.err=a,this.msg=this.strm.msg},c.Inflate=m,c.inflate=d,c.inflateRaw=e,c.ungzip=d},{"./utils/common":27,"./utils/strings":28,"./zlib/constants":30,"./zlib/gzheader":33,"./zlib/inflate.js":35,"./zlib/messages":37,"./zlib/zstream":39}],27:[function(a,b,c){"use strict";var d="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;c.assign=function(a){for(var b=Array.prototype.slice.call(arguments,1);b.length;){var c=b.shift();if(c){if("object"!=typeof c)throw new TypeError(c+"must be non-object");for(var d in c)c.hasOwnProperty(d)&&(a[d]=c[d])}}return a},c.shrinkBuf=function(a,b){return a.length===b?a:a.subarray?a.subarray(0,b):(a.length=b,a)};var e={arraySet:function(a,b,c,d,e){if(b.subarray&&a.subarray)return void a.set(b.subarray(c,c+d),e);for(var f=0;d>f;f++)a[e+f]=b[c+f]},flattenChunks:function(a){var b,c,d,e,f,g;for(d=0,b=0,c=a.length;c>b;b++)d+=a[b].length;for(g=new Uint8Array(d),e=0,b=0,c=a.length;c>b;b++)f=a[b],g.set(f,e),e+=f.length;return g}},f={arraySet:function(a,b,c,d,e){for(var f=0;d>f;f++)a[e+f]=b[c+f]},flattenChunks:function(a){return[].concat.apply([],a)}};c.setTyped=function(a){a?(c.Buf8=Uint8Array,c.Buf16=Uint16Array,c.Buf32=Int32Array,c.assign(c,e)):(c.Buf8=Array,c.Buf16=Array,c.Buf32=Array,c.assign(c,f))},c.setTyped(d)},{}],28:[function(a,b,c){"use strict";function d(a,b){if(65537>b&&(a.subarray&&g||!a.subarray&&f))return String.fromCharCode.apply(null,e.shrinkBuf(a,b));for(var c="",d=0;b>d;d++)c+=String.fromCharCode(a[d]);return c}var e=a("./common"),f=!0,g=!0;try{String.fromCharCode.apply(null,[0])}catch(h){f=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(h){g=!1}for(var i=new e.Buf8(256),j=0;256>j;j++)i[j]=j>=252?6:j>=248?5:j>=240?4:j>=224?3:j>=192?2:1;i[254]=i[254]=1,c.string2buf=function(a){var b,c,d,f,g,h=a.length,i=0;for(f=0;h>f;f++)c=a.charCodeAt(f),55296===(64512&c)&&h>f+1&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),i+=128>c?1:2048>c?2:65536>c?3:4;for(b=new e.Buf8(i),g=0,f=0;i>g;f++)c=a.charCodeAt(f),55296===(64512&c)&&h>f+1&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),128>c?b[g++]=c:2048>c?(b[g++]=192|c>>>6,b[g++]=128|63&c):65536>c?(b[g++]=224|c>>>12,b[g++]=128|c>>>6&63,b[g++]=128|63&c):(b[g++]=240|c>>>18,b[g++]=128|c>>>12&63,b[g++]=128|c>>>6&63,b[g++]=128|63&c);return b},c.buf2binstring=function(a){return d(a,a.length)},c.binstring2buf=function(a){for(var b=new e.Buf8(a.length),c=0,d=b.length;d>c;c++)b[c]=a.charCodeAt(c);return b},c.buf2string=function(a,b){var c,e,f,g,h=b||a.length,j=new Array(2*h);for(e=0,c=0;h>c;)if(f=a[c++],128>f)j[e++]=f;else if(g=i[f],g>4)j[e++]=65533,c+=g-1;else{for(f&=2===g?31:3===g?15:7;g>1&&h>c;)f=f<<6|63&a[c++],g--;g>1?j[e++]=65533:65536>f?j[e++]=f:(f-=65536,j[e++]=55296|f>>10&1023,j[e++]=56320|1023&f)}return d(j,e)},c.utf8border=function(a,b){var c;for(b=b||a.length,b>a.length&&(b=a.length),c=b-1;c>=0&&128===(192&a[c]);)c--;return 0>c?b:0===c?b:c+i[a[c]]>b?c:b}},{"./common":27}],29:[function(a,b){"use strict";function c(a,b,c,d){for(var e=65535&a|0,f=a>>>16&65535|0,g=0;0!==c;){g=c>2e3?2e3:c,c-=g;do e=e+b[d++]|0,f=f+e|0;while(--g);e%=65521,f%=65521}return e|f<<16|0}b.exports=c},{}],30:[function(a,b){b.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],31:[function(a,b){"use strict";function c(){for(var a,b=[],c=0;256>c;c++){a=c;for(var d=0;8>d;d++)a=1&a?3988292384^a>>>1:a>>>1;b[c]=a}return b}function d(a,b,c,d){var f=e,g=d+c;a=-1^a;for(var h=d;g>h;h++)a=a>>>8^f[255&(a^b[h])];return-1^a}var e=c();b.exports=d},{}],32:[function(a,b,c){"use strict";function d(a,b){return a.msg=G[b],b}function e(a){return(a<<1)-(a>4?9:0)}function f(a){for(var b=a.length;--b>=0;)a[b]=0}function g(a){var b=a.state,c=b.pending;c>a.avail_out&&(c=a.avail_out),0!==c&&(C.arraySet(a.output,b.pending_buf,b.pending_out,c,a.next_out),a.next_out+=c,b.pending_out+=c,a.total_out+=c,a.avail_out-=c,b.pending-=c,0===b.pending&&(b.pending_out=0))}function h(a,b){D._tr_flush_block(a,a.block_start>=0?a.block_start:-1,a.strstart-a.block_start,b),a.block_start=a.strstart,g(a.strm)}function i(a,b){a.pending_buf[a.pending++]=b}function j(a,b){a.pending_buf[a.pending++]=b>>>8&255,a.pending_buf[a.pending++]=255&b}function k(a,b,c,d){var e=a.avail_in;return e>d&&(e=d),0===e?0:(a.avail_in-=e,C.arraySet(b,a.input,a.next_in,e,c),1===a.state.wrap?a.adler=E(a.adler,b,e,c):2===a.state.wrap&&(a.adler=F(a.adler,b,e,c)),a.next_in+=e,a.total_in+=e,e)}function l(a,b){var c,d,e=a.max_chain_length,f=a.strstart,g=a.prev_length,h=a.nice_match,i=a.strstart>a.w_size-jb?a.strstart-(a.w_size-jb):0,j=a.window,k=a.w_mask,l=a.prev,m=a.strstart+ib,n=j[f+g-1],o=j[f+g];a.prev_length>=a.good_match&&(e>>=2),h>a.lookahead&&(h=a.lookahead);do if(c=b,j[c+g]===o&&j[c+g-1]===n&&j[c]===j[f]&&j[++c]===j[f+1]){f+=2,c++;do;while(j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&m>f);if(d=ib-(m-f),f=m-ib,d>g){if(a.match_start=b,g=d,d>=h)break;n=j[f+g-1],o=j[f+g]}}while((b=l[b&k])>i&&0!==--e);return g<=a.lookahead?g:a.lookahead}function m(a){var b,c,d,e,f,g=a.w_size;do{if(e=a.window_size-a.lookahead-a.strstart,a.strstart>=g+(g-jb)){C.arraySet(a.window,a.window,g,g,0),a.match_start-=g,a.strstart-=g,a.block_start-=g,c=a.hash_size,b=c;do d=a.head[--b],a.head[b]=d>=g?d-g:0;while(--c);c=g,b=c;do d=a.prev[--b],a.prev[b]=d>=g?d-g:0;while(--c);e+=g}if(0===a.strm.avail_in)break;if(c=k(a.strm,a.window,a.strstart+a.lookahead,e),a.lookahead+=c,a.lookahead+a.insert>=hb)for(f=a.strstart-a.insert,a.ins_h=a.window[f],a.ins_h=(a.ins_h<<a.hash_shift^a.window[f+1])&a.hash_mask;a.insert&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[f+hb-1])&a.hash_mask,a.prev[f&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=f,f++,a.insert--,!(a.lookahead+a.insert<hb)););}while(a.lookahead<jb&&0!==a.strm.avail_in)}function n(a,b){var c=65535;for(c>a.pending_buf_size-5&&(c=a.pending_buf_size-5);;){if(a.lookahead<=1){if(m(a),0===a.lookahead&&b===H)return sb;if(0===a.lookahead)break}a.strstart+=a.lookahead,a.lookahead=0;var d=a.block_start+c;if((0===a.strstart||a.strstart>=d)&&(a.lookahead=a.strstart-d,a.strstart=d,h(a,!1),0===a.strm.avail_out))return sb;if(a.strstart-a.block_start>=a.w_size-jb&&(h(a,!1),0===a.strm.avail_out))return sb}return a.insert=0,b===K?(h(a,!0),0===a.strm.avail_out?ub:vb):a.strstart>a.block_start&&(h(a,!1),0===a.strm.avail_out)?sb:sb}function o(a,b){for(var c,d;;){if(a.lookahead<jb){if(m(a),a.lookahead<jb&&b===H)return sb;if(0===a.lookahead)break}if(c=0,a.lookahead>=hb&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+hb-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart),0!==c&&a.strstart-c<=a.w_size-jb&&(a.match_length=l(a,c)),a.match_length>=hb)if(d=D._tr_tally(a,a.strstart-a.match_start,a.match_length-hb),a.lookahead-=a.match_length,a.match_length<=a.max_lazy_match&&a.lookahead>=hb){a.match_length--;do a.strstart++,a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+hb-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart;while(0!==--a.match_length);a.strstart++}else a.strstart+=a.match_length,a.match_length=0,a.ins_h=a.window[a.strstart],a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+1])&a.hash_mask;else d=D._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++;if(d&&(h(a,!1),0===a.strm.avail_out))return sb}return a.insert=a.strstart<hb-1?a.strstart:hb-1,b===K?(h(a,!0),0===a.strm.avail_out?ub:vb):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sb:tb}function p(a,b){for(var c,d,e;;){if(a.lookahead<jb){if(m(a),a.lookahead<jb&&b===H)return sb;if(0===a.lookahead)break}if(c=0,a.lookahead>=hb&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+hb-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart),a.prev_length=a.match_length,a.prev_match=a.match_start,a.match_length=hb-1,0!==c&&a.prev_length<a.max_lazy_match&&a.strstart-c<=a.w_size-jb&&(a.match_length=l(a,c),a.match_length<=5&&(a.strategy===S||a.match_length===hb&&a.strstart-a.match_start>4096)&&(a.match_length=hb-1)),a.prev_length>=hb&&a.match_length<=a.prev_length){e=a.strstart+a.lookahead-hb,d=D._tr_tally(a,a.strstart-1-a.prev_match,a.prev_length-hb),a.lookahead-=a.prev_length-1,a.prev_length-=2;do++a.strstart<=e&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+hb-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart);while(0!==--a.prev_length);if(a.match_available=0,a.match_length=hb-1,a.strstart++,d&&(h(a,!1),0===a.strm.avail_out))return sb}else if(a.match_available){if(d=D._tr_tally(a,0,a.window[a.strstart-1]),d&&h(a,!1),a.strstart++,a.lookahead--,0===a.strm.avail_out)return sb}else a.match_available=1,a.strstart++,a.lookahead--}return a.match_available&&(d=D._tr_tally(a,0,a.window[a.strstart-1]),a.match_available=0),a.insert=a.strstart<hb-1?a.strstart:hb-1,b===K?(h(a,!0),0===a.strm.avail_out?ub:vb):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sb:tb}function q(a,b){for(var c,d,e,f,g=a.window;;){if(a.lookahead<=ib){if(m(a),a.lookahead<=ib&&b===H)return sb;if(0===a.lookahead)break}if(a.match_length=0,a.lookahead>=hb&&a.strstart>0&&(e=a.strstart-1,d=g[e],d===g[++e]&&d===g[++e]&&d===g[++e])){f=a.strstart+ib;do;while(d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&f>e);a.match_length=ib-(f-e),a.match_length>a.lookahead&&(a.match_length=a.lookahead)}if(a.match_length>=hb?(c=D._tr_tally(a,1,a.match_length-hb),a.lookahead-=a.match_length,a.strstart+=a.match_length,a.match_length=0):(c=D._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++),c&&(h(a,!1),0===a.strm.avail_out))return sb}return a.insert=0,b===K?(h(a,!0),0===a.strm.avail_out?ub:vb):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sb:tb}function r(a,b){for(var c;;){if(0===a.lookahead&&(m(a),0===a.lookahead)){if(b===H)return sb;break}if(a.match_length=0,c=D._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++,c&&(h(a,!1),0===a.strm.avail_out))return sb}return a.insert=0,b===K?(h(a,!0),0===a.strm.avail_out?ub:vb):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?sb:tb}function s(a){a.window_size=2*a.w_size,f(a.head),a.max_lazy_match=B[a.level].max_lazy,a.good_match=B[a.level].good_length,a.nice_match=B[a.level].nice_length,a.max_chain_length=B[a.level].max_chain,a.strstart=0,a.block_start=0,a.lookahead=0,a.insert=0,a.match_length=a.prev_length=hb-1,a.match_available=0,a.ins_h=0}function t(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Y,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new C.Buf16(2*fb),this.dyn_dtree=new C.Buf16(2*(2*db+1)),this.bl_tree=new C.Buf16(2*(2*eb+1)),f(this.dyn_ltree),f(this.dyn_dtree),f(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new C.Buf16(gb+1),this.heap=new C.Buf16(2*cb+1),f(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new C.Buf16(2*cb+1),f(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function u(a){var b;return a&&a.state?(a.total_in=a.total_out=0,a.data_type=X,b=a.state,b.pending=0,b.pending_out=0,b.wrap<0&&(b.wrap=-b.wrap),b.status=b.wrap?lb:qb,a.adler=2===b.wrap?0:1,b.last_flush=H,D._tr_init(b),M):d(a,O)}function v(a){var b=u(a);return b===M&&s(a.state),b}function w(a,b){return a&&a.state?2!==a.state.wrap?O:(a.state.gzhead=b,M):O}function x(a,b,c,e,f,g){if(!a)return O;var h=1;if(b===R&&(b=6),0>e?(h=0,e=-e):e>15&&(h=2,e-=16),1>f||f>Z||c!==Y||8>e||e>15||0>b||b>9||0>g||g>V)return d(a,O);8===e&&(e=9);var i=new t;return a.state=i,i.strm=a,i.wrap=h,i.gzhead=null,i.w_bits=e,i.w_size=1<<i.w_bits,i.w_mask=i.w_size-1,i.hash_bits=f+7,i.hash_size=1<<i.hash_bits,i.hash_mask=i.hash_size-1,i.hash_shift=~~((i.hash_bits+hb-1)/hb),i.window=new C.Buf8(2*i.w_size),i.head=new C.Buf16(i.hash_size),i.prev=new C.Buf16(i.w_size),i.lit_bufsize=1<<f+6,i.pending_buf_size=4*i.lit_bufsize,i.pending_buf=new C.Buf8(i.pending_buf_size),i.d_buf=i.lit_bufsize>>1,i.l_buf=3*i.lit_bufsize,i.level=b,i.strategy=g,i.method=c,v(a)}function y(a,b){return x(a,b,Y,$,_,W)}function z(a,b){var c,h,k,l;if(!a||!a.state||b>L||0>b)return a?d(a,O):O;if(h=a.state,!a.output||!a.input&&0!==a.avail_in||h.status===rb&&b!==K)return d(a,0===a.avail_out?Q:O);if(h.strm=a,c=h.last_flush,h.last_flush=b,h.status===lb)if(2===h.wrap)a.adler=0,i(h,31),i(h,139),i(h,8),h.gzhead?(i(h,(h.gzhead.text?1:0)+(h.gzhead.hcrc?2:0)+(h.gzhead.extra?4:0)+(h.gzhead.name?8:0)+(h.gzhead.comment?16:0)),i(h,255&h.gzhead.time),i(h,h.gzhead.time>>8&255),i(h,h.gzhead.time>>16&255),i(h,h.gzhead.time>>24&255),i(h,9===h.level?2:h.strategy>=T||h.level<2?4:0),i(h,255&h.gzhead.os),h.gzhead.extra&&h.gzhead.extra.length&&(i(h,255&h.gzhead.extra.length),i(h,h.gzhead.extra.length>>8&255)),h.gzhead.hcrc&&(a.adler=F(a.adler,h.pending_buf,h.pending,0)),h.gzindex=0,h.status=mb):(i(h,0),i(h,0),i(h,0),i(h,0),i(h,0),i(h,9===h.level?2:h.strategy>=T||h.level<2?4:0),i(h,wb),h.status=qb);else{var m=Y+(h.w_bits-8<<4)<<8,n=-1;n=h.strategy>=T||h.level<2?0:h.level<6?1:6===h.level?2:3,m|=n<<6,0!==h.strstart&&(m|=kb),m+=31-m%31,h.status=qb,j(h,m),0!==h.strstart&&(j(h,a.adler>>>16),j(h,65535&a.adler)),a.adler=1}if(h.status===mb)if(h.gzhead.extra){for(k=h.pending;h.gzindex<(65535&h.gzhead.extra.length)&&(h.pending!==h.pending_buf_size||(h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending!==h.pending_buf_size));)i(h,255&h.gzhead.extra[h.gzindex]),h.gzindex++;h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),h.gzindex===h.gzhead.extra.length&&(h.gzindex=0,h.status=nb)}else h.status=nb;if(h.status===nb)if(h.gzhead.name){k=h.pending;do{if(h.pending===h.pending_buf_size&&(h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending===h.pending_buf_size)){l=1;break}l=h.gzindex<h.gzhead.name.length?255&h.gzhead.name.charCodeAt(h.gzindex++):0,i(h,l)}while(0!==l);h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),0===l&&(h.gzindex=0,h.status=ob)}else h.status=ob;if(h.status===ob)if(h.gzhead.comment){k=h.pending;do{if(h.pending===h.pending_buf_size&&(h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending===h.pending_buf_size)){l=1;break}l=h.gzindex<h.gzhead.comment.length?255&h.gzhead.comment.charCodeAt(h.gzindex++):0,i(h,l)}while(0!==l);h.gzhead.hcrc&&h.pending>k&&(a.adler=F(a.adler,h.pending_buf,h.pending-k,k)),0===l&&(h.status=pb)}else h.status=pb;if(h.status===pb&&(h.gzhead.hcrc?(h.pending+2>h.pending_buf_size&&g(a),h.pending+2<=h.pending_buf_size&&(i(h,255&a.adler),i(h,a.adler>>8&255),a.adler=0,h.status=qb)):h.status=qb),0!==h.pending){if(g(a),0===a.avail_out)return h.last_flush=-1,M}else if(0===a.avail_in&&e(b)<=e(c)&&b!==K)return d(a,Q);if(h.status===rb&&0!==a.avail_in)return d(a,Q);if(0!==a.avail_in||0!==h.lookahead||b!==H&&h.status!==rb){var o=h.strategy===T?r(h,b):h.strategy===U?q(h,b):B[h.level].func(h,b);if((o===ub||o===vb)&&(h.status=rb),o===sb||o===ub)return 0===a.avail_out&&(h.last_flush=-1),M;if(o===tb&&(b===I?D._tr_align(h):b!==L&&(D._tr_stored_block(h,0,0,!1),b===J&&(f(h.head),0===h.lookahead&&(h.strstart=0,h.block_start=0,h.insert=0))),g(a),0===a.avail_out))return h.last_flush=-1,M}return b!==K?M:h.wrap<=0?N:(2===h.wrap?(i(h,255&a.adler),i(h,a.adler>>8&255),i(h,a.adler>>16&255),i(h,a.adler>>24&255),i(h,255&a.total_in),i(h,a.total_in>>8&255),i(h,a.total_in>>16&255),i(h,a.total_in>>24&255)):(j(h,a.adler>>>16),j(h,65535&a.adler)),g(a),h.wrap>0&&(h.wrap=-h.wrap),0!==h.pending?M:N)}function A(a){var b;return a&&a.state?(b=a.state.status,b!==lb&&b!==mb&&b!==nb&&b!==ob&&b!==pb&&b!==qb&&b!==rb?d(a,O):(a.state=null,b===qb?d(a,P):M)):O}var B,C=a("../utils/common"),D=a("./trees"),E=a("./adler32"),F=a("./crc32"),G=a("./messages"),H=0,I=1,J=3,K=4,L=5,M=0,N=1,O=-2,P=-3,Q=-5,R=-1,S=1,T=2,U=3,V=4,W=0,X=2,Y=8,Z=9,$=15,_=8,ab=29,bb=256,cb=bb+1+ab,db=30,eb=19,fb=2*cb+1,gb=15,hb=3,ib=258,jb=ib+hb+1,kb=32,lb=42,mb=69,nb=73,ob=91,pb=103,qb=113,rb=666,sb=1,tb=2,ub=3,vb=4,wb=3,xb=function(a,b,c,d,e){this.good_length=a,this.max_lazy=b,this.nice_length=c,this.max_chain=d,this.func=e};B=[new xb(0,0,0,0,n),new xb(4,4,8,4,o),new xb(4,5,16,8,o),new xb(4,6,32,32,o),new xb(4,4,16,16,p),new xb(8,16,32,32,p),new xb(8,16,128,128,p),new xb(8,32,128,256,p),new xb(32,128,258,1024,p),new xb(32,258,258,4096,p)],c.deflateInit=y,c.deflateInit2=x,c.deflateReset=v,c.deflateResetKeep=u,c.deflateSetHeader=w,c.deflate=z,c.deflateEnd=A,c.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":27,"./adler32":29,"./crc32":31,"./messages":37,"./trees":38}],33:[function(a,b){"use strict";function c(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}b.exports=c},{}],34:[function(a,b){"use strict";var c=30,d=12;b.exports=function(a,b){var e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C;e=a.state,f=a.next_in,B=a.input,g=f+(a.avail_in-5),h=a.next_out,C=a.output,i=h-(b-a.avail_out),j=h+(a.avail_out-257),k=e.dmax,l=e.wsize,m=e.whave,n=e.wnext,o=e.window,p=e.hold,q=e.bits,r=e.lencode,s=e.distcode,t=(1<<e.lenbits)-1,u=(1<<e.distbits)-1;a:do{15>q&&(p+=B[f++]<<q,q+=8,p+=B[f++]<<q,q+=8),v=r[p&t];b:for(;;){if(w=v>>>24,p>>>=w,q-=w,w=v>>>16&255,0===w)C[h++]=65535&v;else{if(!(16&w)){if(0===(64&w)){v=r[(65535&v)+(p&(1<<w)-1)];continue b}if(32&w){e.mode=d;break a}a.msg="invalid literal/length code",e.mode=c;break a}x=65535&v,w&=15,w&&(w>q&&(p+=B[f++]<<q,q+=8),x+=p&(1<<w)-1,p>>>=w,q-=w),15>q&&(p+=B[f++]<<q,q+=8,p+=B[f++]<<q,q+=8),v=s[p&u];c:for(;;){if(w=v>>>24,p>>>=w,q-=w,w=v>>>16&255,!(16&w)){if(0===(64&w)){v=s[(65535&v)+(p&(1<<w)-1)];continue c}a.msg="invalid distance code",e.mode=c;break a}if(y=65535&v,w&=15,w>q&&(p+=B[f++]<<q,q+=8,w>q&&(p+=B[f++]<<q,q+=8)),y+=p&(1<<w)-1,y>k){a.msg="invalid distance too far back",e.mode=c;break a}if(p>>>=w,q-=w,w=h-i,y>w){if(w=y-w,w>m&&e.correct){a.msg="invalid distance too far back",e.mode=c;break a}if(z=0,A=o,0===n){if(z+=l-w,x>w){x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}}else if(w>n){if(z+=l+n-w,w-=n,x>w){x-=w;do C[h++]=o[z++];while(--w);if(z=0,x>n){w=n,x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}}}else if(z+=n-w,x>w){x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}for(;x>2;)C[h++]=A[z++],C[h++]=A[z++],C[h++]=A[z++],x-=3;x&&(C[h++]=A[z++],x>1&&(C[h++]=A[z++]))}else{z=h-y;do C[h++]=C[z++],C[h++]=C[z++],C[h++]=C[z++],x-=3;while(x>2);x&&(C[h++]=C[z++],x>1&&(C[h++]=C[z++]))}break}}break}}while(g>f&&j>h);x=q>>3,f-=x,q-=x<<3,p&=(1<<q)-1,a.next_in=f,a.next_out=h,a.avail_in=g>f?5+(g-f):5-(f-g),a.avail_out=j>h?257+(j-h):257-(h-j),e.hold=p,e.bits=q}},{}],35:[function(a,b,c){"use strict";function d(a){return(a>>>24&255)+(a>>>8&65280)+((65280&a)<<8)+((255&a)<<24)}function e(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new r.Buf16(320),this.work=new r.Buf16(288),this.lendyn=null,this.distdyn=null,this.correct=0,this.back=0,this.was=0}function f(a){var b;return a&&a.state?(b=a.state,a.total_in=a.total_out=b.total=0,a.msg="",b.wrap&&(a.adler=1&b.wrap),b.mode=K,b.last=0,b.havedict=0,b.dmax=32768,b.head=null,b.hold=0,b.bits=0,b.lencode=b.lendyn=new r.Buf32(ob),b.distcode=b.distdyn=new r.Buf32(pb),b.correct=1,b.back=-1,C):F}function g(a){var b;return a&&a.state?(b=a.state,b.wsize=0,b.whave=0,b.wnext=0,f(a)):F}function h(a,b){var c,d;return a&&a.state?(d=a.state,0>b?(c=0,b=-b):(c=(b>>4)+1,48>b&&(b&=15)),b&&(8>b||b>15)?F:(null!==d.window&&d.wbits!==b&&(d.window=null),d.wrap=c,d.wbits=b,g(a))):F}function i(a,b){var c,d;return a?(d=new e,a.state=d,d.window=null,c=h(a,b),c!==C&&(a.state=null),c):F}function j(a){return i(a,rb)}function k(a){if(sb){var b;for(p=new r.Buf32(512),q=new r.Buf32(32),b=0;144>b;)a.lens[b++]=8;for(;256>b;)a.lens[b++]=9;for(;280>b;)a.lens[b++]=7;for(;288>b;)a.lens[b++]=8;for(v(x,a.lens,0,288,p,0,a.work,{bits:9}),b=0;32>b;)a.lens[b++]=5;v(y,a.lens,0,32,q,0,a.work,{bits:5}),sb=!1}a.lencode=p,a.lenbits=9,a.distcode=q,a.distbits=5}function l(a,b,c,d){var e,f=a.state;return null===f.window&&(f.wsize=1<<f.wbits,f.wnext=0,f.whave=0,f.window=new r.Buf8(f.wsize)),d>=f.wsize?(r.arraySet(f.window,b,c-f.wsize,f.wsize,0),f.wnext=0,f.whave=f.wsize):(e=f.wsize-f.wnext,e>d&&(e=d),r.arraySet(f.window,b,c-d,e,f.wnext),d-=e,d?(r.arraySet(f.window,b,c-d,d,0),f.wnext=d,f.whave=f.wsize):(f.wnext+=e,f.wnext===f.wsize&&(f.wnext=0),f.whave<f.wsize&&(f.whave+=e))),0}function m(a,b){var c,e,f,g,h,i,j,m,n,o,p,q,ob,pb,qb,rb,sb,tb,ub,vb,wb,xb,yb,zb,Ab=0,Bb=new r.Buf8(4),Cb=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!a||!a.state||!a.output||!a.input&&0!==a.avail_in)return F;c=a.state,c.mode===V&&(c.mode=W),h=a.next_out,f=a.output,j=a.avail_out,g=a.next_in,e=a.input,i=a.avail_in,m=c.hold,n=c.bits,o=i,p=j,xb=C;a:for(;;)switch(c.mode){case K:if(0===c.wrap){c.mode=W;break}for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(2&c.wrap&&35615===m){c.check=0,Bb[0]=255&m,Bb[1]=m>>>8&255,c.check=t(c.check,Bb,2,0),m=0,n=0,c.mode=L;break}if(c.flags=0,c.head&&(c.head.done=!1),!(1&c.wrap)||(((255&m)<<8)+(m>>8))%31){a.msg="incorrect header check",c.mode=lb;break}if((15&m)!==J){a.msg="unknown compression method",c.mode=lb;break}if(m>>>=4,n-=4,wb=(15&m)+8,0===c.wbits)c.wbits=wb;else if(wb>c.wbits){a.msg="invalid window size",c.mode=lb;break}c.dmax=1<<wb,a.adler=c.check=1,c.mode=512&m?T:V,m=0,n=0;break;case L:for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(c.flags=m,(255&c.flags)!==J){a.msg="unknown compression method",c.mode=lb;break}if(57344&c.flags){a.msg="unknown header flags set",c.mode=lb;break}c.head&&(c.head.text=m>>8&1),512&c.flags&&(Bb[0]=255&m,Bb[1]=m>>>8&255,c.check=t(c.check,Bb,2,0)),m=0,n=0,c.mode=M;case M:for(;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.head&&(c.head.time=m),512&c.flags&&(Bb[0]=255&m,Bb[1]=m>>>8&255,Bb[2]=m>>>16&255,Bb[3]=m>>>24&255,c.check=t(c.check,Bb,4,0)),m=0,n=0,c.mode=N;case N:for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.head&&(c.head.xflags=255&m,c.head.os=m>>8),512&c.flags&&(Bb[0]=255&m,Bb[1]=m>>>8&255,c.check=t(c.check,Bb,2,0)),m=0,n=0,c.mode=O;case O:if(1024&c.flags){for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.length=m,c.head&&(c.head.extra_len=m),512&c.flags&&(Bb[0]=255&m,Bb[1]=m>>>8&255,c.check=t(c.check,Bb,2,0)),m=0,n=0}else c.head&&(c.head.extra=null);c.mode=P;case P:if(1024&c.flags&&(q=c.length,q>i&&(q=i),q&&(c.head&&(wb=c.head.extra_len-c.length,c.head.extra||(c.head.extra=new Array(c.head.extra_len)),r.arraySet(c.head.extra,e,g,q,wb)),512&c.flags&&(c.check=t(c.check,e,q,g)),i-=q,g+=q,c.length-=q),c.length))break a;c.length=0,c.mode=Q;case Q:if(2048&c.flags){if(0===i)break a;q=0;do wb=e[g+q++],c.head&&wb&&c.length<65536&&(c.head.name+=String.fromCharCode(wb));while(wb&&i>q);if(512&c.flags&&(c.check=t(c.check,e,q,g)),i-=q,g+=q,wb)break a}else c.head&&(c.head.name=null);c.length=0,c.mode=R;case R:if(4096&c.flags){if(0===i)break a;q=0;do wb=e[g+q++],c.head&&wb&&c.length<65536&&(c.head.comment+=String.fromCharCode(wb));while(wb&&i>q);if(512&c.flags&&(c.check=t(c.check,e,q,g)),i-=q,g+=q,wb)break a}else c.head&&(c.head.comment=null);c.mode=S;case S:if(512&c.flags){for(;16>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m!==(65535&c.check)){a.msg="header crc mismatch",c.mode=lb;break}m=0,n=0}c.head&&(c.head.hcrc=c.flags>>9&1,c.head.done=!0),a.adler=c.check=0,c.mode=V;break;case T:for(;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}a.adler=c.check=d(m),m=0,n=0,c.mode=U;case U:if(0===c.havedict)return a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,E;a.adler=c.check=1,c.mode=V;case V:if(b===A||b===B)break a;case W:if(c.last){m>>>=7&n,n-=7&n,c.mode=ib;break}for(;3>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}switch(c.last=1&m,m>>>=1,n-=1,3&m){case 0:c.mode=X;break;case 1:if(k(c),c.mode=bb,b===B){m>>>=2,n-=2;break a}break;case 2:c.mode=$;break;case 3:a.msg="invalid block type",c.mode=lb}m>>>=2,n-=2;break;case X:for(m>>>=7&n,n-=7&n;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if((65535&m)!==(m>>>16^65535)){a.msg="invalid stored block lengths",c.mode=lb;break}if(c.length=65535&m,m=0,n=0,c.mode=Y,b===B)break a;case Y:c.mode=Z;case Z:if(q=c.length){if(q>i&&(q=i),q>j&&(q=j),0===q)break a;r.arraySet(f,e,g,q,h),i-=q,g+=q,j-=q,h+=q,c.length-=q;break}c.mode=V;break;case $:for(;14>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(c.nlen=(31&m)+257,m>>>=5,n-=5,c.ndist=(31&m)+1,m>>>=5,n-=5,c.ncode=(15&m)+4,m>>>=4,n-=4,c.nlen>286||c.ndist>30){a.msg="too many length or distance symbols",c.mode=lb;break}c.have=0,c.mode=_;case _:for(;c.have<c.ncode;){for(;3>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.lens[Cb[c.have++]]=7&m,m>>>=3,n-=3}for(;c.have<19;)c.lens[Cb[c.have++]]=0;if(c.lencode=c.lendyn,c.lenbits=7,yb={bits:c.lenbits},xb=v(w,c.lens,0,19,c.lencode,0,c.work,yb),c.lenbits=yb.bits,xb){a.msg="invalid code lengths set",c.mode=lb;break}c.have=0,c.mode=ab;case ab:for(;c.have<c.nlen+c.ndist;){for(;Ab=c.lencode[m&(1<<c.lenbits)-1],qb=Ab>>>24,rb=Ab>>>16&255,sb=65535&Ab,!(n>=qb);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(16>sb)m>>>=qb,n-=qb,c.lens[c.have++]=sb;else{if(16===sb){for(zb=qb+2;zb>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m>>>=qb,n-=qb,0===c.have){a.msg="invalid bit length repeat",c.mode=lb;break}wb=c.lens[c.have-1],q=3+(3&m),m>>>=2,n-=2}else if(17===sb){for(zb=qb+3;zb>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=qb,n-=qb,wb=0,q=3+(7&m),m>>>=3,n-=3}else{for(zb=qb+7;zb>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=qb,n-=qb,wb=0,q=11+(127&m),m>>>=7,n-=7}if(c.have+q>c.nlen+c.ndist){a.msg="invalid bit length repeat",c.mode=lb;break}for(;q--;)c.lens[c.have++]=wb}}if(c.mode===lb)break;if(0===c.lens[256]){a.msg="invalid code -- missing end-of-block",c.mode=lb;break}if(c.lenbits=9,yb={bits:c.lenbits},xb=v(x,c.lens,0,c.nlen,c.lencode,0,c.work,yb),c.lenbits=yb.bits,xb){a.msg="invalid literal/lengths set",c.mode=lb;break}if(c.distbits=6,c.distcode=c.distdyn,yb={bits:c.distbits},xb=v(y,c.lens,c.nlen,c.ndist,c.distcode,0,c.work,yb),c.distbits=yb.bits,xb){a.msg="invalid distances set",c.mode=lb;break}if(c.mode=bb,b===B)break a;case bb:c.mode=cb;case cb:if(i>=6&&j>=258){a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,u(a,p),h=a.next_out,f=a.output,j=a.avail_out,g=a.next_in,e=a.input,i=a.avail_in,m=c.hold,n=c.bits,c.mode===V&&(c.back=-1);break}for(c.back=0;Ab=c.lencode[m&(1<<c.lenbits)-1],qb=Ab>>>24,rb=Ab>>>16&255,sb=65535&Ab,!(n>=qb);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(rb&&0===(240&rb)){for(tb=qb,ub=rb,vb=sb;Ab=c.lencode[vb+((m&(1<<tb+ub)-1)>>tb)],qb=Ab>>>24,rb=Ab>>>16&255,sb=65535&Ab,!(n>=tb+qb);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=tb,n-=tb,c.back+=tb}if(m>>>=qb,n-=qb,c.back+=qb,c.length=sb,0===rb){c.mode=hb;break}if(32&rb){c.back=-1,c.mode=V;break}if(64&rb){a.msg="invalid literal/length code",c.mode=lb;break}c.extra=15&rb,c.mode=db;case db:if(c.extra){for(zb=c.extra;zb>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.length+=m&(1<<c.extra)-1,m>>>=c.extra,n-=c.extra,c.back+=c.extra}c.was=c.length,c.mode=eb;case eb:for(;Ab=c.distcode[m&(1<<c.distbits)-1],qb=Ab>>>24,rb=Ab>>>16&255,sb=65535&Ab,!(n>=qb);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(0===(240&rb)){for(tb=qb,ub=rb,vb=sb;Ab=c.distcode[vb+((m&(1<<tb+ub)-1)>>tb)],qb=Ab>>>24,rb=Ab>>>16&255,sb=65535&Ab,!(n>=tb+qb);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=tb,n-=tb,c.back+=tb}if(m>>>=qb,n-=qb,c.back+=qb,64&rb){a.msg="invalid distance code",c.mode=lb;break}c.offset=sb,c.extra=15&rb,c.mode=fb;case fb:if(c.extra){for(zb=c.extra;zb>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.offset+=m&(1<<c.extra)-1,m>>>=c.extra,n-=c.extra,c.back+=c.extra}if(c.offset>c.dmax){a.msg="invalid distance too far back",c.mode=lb;break}c.mode=gb;case gb:if(0===j)break a;if(q=p-j,c.offset>q){if(q=c.offset-q,q>c.whave&&c.correct){a.msg="invalid distance too far back",c.mode=lb;break}q>c.wnext?(q-=c.wnext,ob=c.wsize-q):ob=c.wnext-q,q>c.length&&(q=c.length),pb=c.window}else pb=f,ob=h-c.offset,q=c.length;q>j&&(q=j),j-=q,c.length-=q;do f[h++]=pb[ob++];while(--q);0===c.length&&(c.mode=cb);break;case hb:if(0===j)break a;f[h++]=c.length,j--,c.mode=cb;break;case ib:if(c.wrap){for(;32>n;){if(0===i)break a;i--,m|=e[g++]<<n,n+=8}if(p-=j,a.total_out+=p,c.total+=p,p&&(a.adler=c.check=c.flags?t(c.check,f,p,h-p):s(c.check,f,p,h-p)),p=j,(c.flags?m:d(m))!==c.check){a.msg="incorrect data check",c.mode=lb;break}m=0,n=0}c.mode=jb;case jb:if(c.wrap&&c.flags){for(;32>n;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m!==(4294967295&c.total)){a.msg="incorrect length check",c.mode=lb;break}m=0,n=0}c.mode=kb;case kb:xb=D;break a;case lb:xb=G;break a;case mb:return H;case nb:default:return F}return a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,(c.wsize||p!==a.avail_out&&c.mode<lb&&(c.mode<ib||b!==z))&&l(a,a.output,a.next_out,p-a.avail_out)?(c.mode=mb,H):(o-=a.avail_in,p-=a.avail_out,a.total_in+=o,a.total_out+=p,c.total+=p,c.wrap&&p&&(a.adler=c.check=c.flags?t(c.check,f,p,a.next_out-p):s(c.check,f,p,a.next_out-p)),a.data_type=c.bits+(c.last?64:0)+(c.mode===V?128:0)+(c.mode===bb||c.mode===Y?256:0),(0===o&&0===p||b===z)&&xb===C&&(xb=I),xb)}function n(a){if(!a||!a.state)return F;var b=a.state;return b.window&&(b.window=null),a.state=null,C}function o(a,b){var c;return a&&a.state?(c=a.state,0===(2&c.wrap)?F:(c.head=b,b.done=!1,C)):F}var p,q,r=a("../utils/common"),s=a("./adler32"),t=a("./crc32"),u=a("./inffast"),v=a("./inftrees"),w=0,x=1,y=2,z=4,A=5,B=6,C=0,D=1,E=2,F=-2,G=-3,H=-4,I=-5,J=8,K=1,L=2,M=3,N=4,O=5,P=6,Q=7,R=8,S=9,T=10,U=11,V=12,W=13,X=14,Y=15,Z=16,$=17,_=18,ab=19,bb=20,cb=21,db=22,eb=23,fb=24,gb=25,hb=26,ib=27,jb=28,kb=29,lb=30,mb=31,nb=32,ob=852,pb=592,qb=15,rb=qb,sb=!0;c.inflateReset=g,c.inflateReset2=h,c.inflateResetKeep=f,c.inflateInit=j,c.inflateInit2=i,c.inflate=m,c.inflateEnd=n,c.inflateGetHeader=o,c.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":27,"./adler32":29,"./crc32":31,"./inffast":34,"./inftrees":36}],36:[function(a,b){"use strict";var c=a("../utils/common"),d=15,e=852,f=592,g=0,h=1,i=2,j=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],k=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],l=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],m=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];b.exports=function(a,b,n,o,p,q,r,s){var t,u,v,w,x,y,z,A,B,C=s.bits,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=null,O=0,P=new c.Buf16(d+1),Q=new c.Buf16(d+1),R=null,S=0;for(D=0;d>=D;D++)P[D]=0;for(E=0;o>E;E++)P[b[n+E]]++;for(H=C,G=d;G>=1&&0===P[G];G--);if(H>G&&(H=G),0===G)return p[q++]=20971520,p[q++]=20971520,s.bits=1,0;for(F=1;G>F&&0===P[F];F++);for(F>H&&(H=F),K=1,D=1;d>=D;D++)if(K<<=1,K-=P[D],0>K)return-1;if(K>0&&(a===g||1!==G))return-1;for(Q[1]=0,D=1;d>D;D++)Q[D+1]=Q[D]+P[D];for(E=0;o>E;E++)0!==b[n+E]&&(r[Q[b[n+E]]++]=E);if(a===g?(N=R=r,y=19):a===h?(N=j,O-=257,R=k,S-=257,y=256):(N=l,R=m,y=-1),M=0,E=0,D=F,x=q,I=H,J=0,v=-1,L=1<<H,w=L-1,a===h&&L>e||a===i&&L>f)return 1;for(var T=0;;){T++,z=D-J,r[E]<y?(A=0,B=r[E]):r[E]>y?(A=R[S+r[E]],B=N[O+r[E]]):(A=96,B=0),t=1<<D-J,u=1<<I,F=u;do u-=t,p[x+(M>>J)+u]=z<<24|A<<16|B|0;while(0!==u);for(t=1<<D-1;M&t;)t>>=1;if(0!==t?(M&=t-1,M+=t):M=0,E++,0===--P[D]){if(D===G)break;D=b[n+r[E]]}if(D>H&&(M&w)!==v){for(0===J&&(J=H),x+=F,I=D-J,K=1<<I;G>I+J&&(K-=P[I+J],!(0>=K));)I++,K<<=1;if(L+=1<<I,a===h&&L>e||a===i&&L>f)return 1;v=M&w,p[v]=H<<24|I<<16|x-q|0}}return 0!==M&&(p[x+M]=D-J<<24|64<<16|0),s.bits=H,0}},{"../utils/common":27}],37:[function(a,b){"use strict";b.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],38:[function(a,b,c){"use strict";function d(a){for(var b=a.length;--b>=0;)a[b]=0}function e(a){return 256>a?gb[a]:gb[256+(a>>>7)]}function f(a,b){a.pending_buf[a.pending++]=255&b,a.pending_buf[a.pending++]=b>>>8&255}function g(a,b,c){a.bi_valid>V-c?(a.bi_buf|=b<<a.bi_valid&65535,f(a,a.bi_buf),a.bi_buf=b>>V-a.bi_valid,a.bi_valid+=c-V):(a.bi_buf|=b<<a.bi_valid&65535,a.bi_valid+=c)}function h(a,b,c){g(a,c[2*b],c[2*b+1])}function i(a,b){var c=0;do c|=1&a,a>>>=1,c<<=1;while(--b>0);return c>>>1}function j(a){16===a.bi_valid?(f(a,a.bi_buf),a.bi_buf=0,a.bi_valid=0):a.bi_valid>=8&&(a.pending_buf[a.pending++]=255&a.bi_buf,a.bi_buf>>=8,a.bi_valid-=8)}function k(a,b){var c,d,e,f,g,h,i=b.dyn_tree,j=b.max_code,k=b.stat_desc.static_tree,l=b.stat_desc.has_stree,m=b.stat_desc.extra_bits,n=b.stat_desc.extra_base,o=b.stat_desc.max_length,p=0;for(f=0;U>=f;f++)a.bl_count[f]=0;for(i[2*a.heap[a.heap_max]+1]=0,c=a.heap_max+1;T>c;c++)d=a.heap[c],f=i[2*i[2*d+1]+1]+1,f>o&&(f=o,p++),i[2*d+1]=f,d>j||(a.bl_count[f]++,g=0,d>=n&&(g=m[d-n]),h=i[2*d],a.opt_len+=h*(f+g),l&&(a.static_len+=h*(k[2*d+1]+g)));if(0!==p){do{for(f=o-1;0===a.bl_count[f];)f--;a.bl_count[f]--,a.bl_count[f+1]+=2,a.bl_count[o]--,p-=2}while(p>0);for(f=o;0!==f;f--)for(d=a.bl_count[f];0!==d;)e=a.heap[--c],e>j||(i[2*e+1]!==f&&(a.opt_len+=(f-i[2*e+1])*i[2*e],i[2*e+1]=f),d--)}}function l(a,b,c){var d,e,f=new Array(U+1),g=0;for(d=1;U>=d;d++)f[d]=g=g+c[d-1]<<1;for(e=0;b>=e;e++){var h=a[2*e+1];0!==h&&(a[2*e]=i(f[h]++,h))}}function m(){var a,b,c,d,e,f=new Array(U+1);for(c=0,d=0;O-1>d;d++)for(ib[d]=c,a=0;a<1<<_[d];a++)hb[c++]=d;for(hb[c-1]=d,e=0,d=0;16>d;d++)for(jb[d]=e,a=0;a<1<<ab[d];a++)gb[e++]=d;for(e>>=7;R>d;d++)for(jb[d]=e<<7,a=0;a<1<<ab[d]-7;a++)gb[256+e++]=d;for(b=0;U>=b;b++)f[b]=0;for(a=0;143>=a;)eb[2*a+1]=8,a++,f[8]++;for(;255>=a;)eb[2*a+1]=9,a++,f[9]++;for(;279>=a;)eb[2*a+1]=7,a++,f[7]++;for(;287>=a;)eb[2*a+1]=8,a++,f[8]++;for(l(eb,Q+1,f),a=0;R>a;a++)fb[2*a+1]=5,fb[2*a]=i(a,5);kb=new nb(eb,_,P+1,Q,U),lb=new nb(fb,ab,0,R,U),mb=new nb(new Array(0),bb,0,S,W)}function n(a){var b;for(b=0;Q>b;b++)a.dyn_ltree[2*b]=0;for(b=0;R>b;b++)a.dyn_dtree[2*b]=0;for(b=0;S>b;b++)a.bl_tree[2*b]=0;a.dyn_ltree[2*X]=1,a.opt_len=a.static_len=0,a.last_lit=a.matches=0}function o(a){a.bi_valid>8?f(a,a.bi_buf):a.bi_valid>0&&(a.pending_buf[a.pending++]=a.bi_buf),a.bi_buf=0,a.bi_valid=0}function p(a,b,c,d){o(a),d&&(f(a,c),f(a,~c)),E.arraySet(a.pending_buf,a.window,b,c,a.pending),a.pending+=c}function q(a,b,c,d){var e=2*b,f=2*c;return a[e]<a[f]||a[e]===a[f]&&d[b]<=d[c]}function r(a,b,c){for(var d=a.heap[c],e=c<<1;e<=a.heap_len&&(e<a.heap_len&&q(b,a.heap[e+1],a.heap[e],a.depth)&&e++,!q(b,d,a.heap[e],a.depth));)a.heap[c]=a.heap[e],c=e,e<<=1;a.heap[c]=d}function s(a,b,c){var d,f,i,j,k=0;if(0!==a.last_lit)do d=a.pending_buf[a.d_buf+2*k]<<8|a.pending_buf[a.d_buf+2*k+1],f=a.pending_buf[a.l_buf+k],k++,0===d?h(a,f,b):(i=hb[f],h(a,i+P+1,b),j=_[i],0!==j&&(f-=ib[i],g(a,f,j)),d--,i=e(d),h(a,i,c),j=ab[i],0!==j&&(d-=jb[i],g(a,d,j)));while(k<a.last_lit);h(a,X,b)}function t(a,b){var c,d,e,f=b.dyn_tree,g=b.stat_desc.static_tree,h=b.stat_desc.has_stree,i=b.stat_desc.elems,j=-1;for(a.heap_len=0,a.heap_max=T,c=0;i>c;c++)0!==f[2*c]?(a.heap[++a.heap_len]=j=c,a.depth[c]=0):f[2*c+1]=0;for(;a.heap_len<2;)e=a.heap[++a.heap_len]=2>j?++j:0,f[2*e]=1,a.depth[e]=0,a.opt_len--,h&&(a.static_len-=g[2*e+1]);for(b.max_code=j,c=a.heap_len>>1;c>=1;c--)r(a,f,c);e=i;do c=a.heap[1],a.heap[1]=a.heap[a.heap_len--],r(a,f,1),d=a.heap[1],a.heap[--a.heap_max]=c,a.heap[--a.heap_max]=d,f[2*e]=f[2*c]+f[2*d],a.depth[e]=(a.depth[c]>=a.depth[d]?a.depth[c]:a.depth[d])+1,f[2*c+1]=f[2*d+1]=e,a.heap[1]=e++,r(a,f,1);while(a.heap_len>=2);a.heap[--a.heap_max]=a.heap[1],k(a,b),l(f,j,a.bl_count)}function u(a,b,c){var d,e,f=-1,g=b[1],h=0,i=7,j=4;for(0===g&&(i=138,j=3),b[2*(c+1)+1]=65535,d=0;c>=d;d++)e=g,g=b[2*(d+1)+1],++h<i&&e===g||(j>h?a.bl_tree[2*e]+=h:0!==e?(e!==f&&a.bl_tree[2*e]++,a.bl_tree[2*Y]++):10>=h?a.bl_tree[2*Z]++:a.bl_tree[2*$]++,h=0,f=e,0===g?(i=138,j=3):e===g?(i=6,j=3):(i=7,j=4))}function v(a,b,c){var d,e,f=-1,i=b[1],j=0,k=7,l=4;for(0===i&&(k=138,l=3),d=0;c>=d;d++)if(e=i,i=b[2*(d+1)+1],!(++j<k&&e===i)){if(l>j){do h(a,e,a.bl_tree);while(0!==--j)}else 0!==e?(e!==f&&(h(a,e,a.bl_tree),j--),h(a,Y,a.bl_tree),g(a,j-3,2)):10>=j?(h(a,Z,a.bl_tree),g(a,j-3,3)):(h(a,$,a.bl_tree),g(a,j-11,7));j=0,f=e,0===i?(k=138,l=3):e===i?(k=6,l=3):(k=7,l=4)}}function w(a){var b;for(u(a,a.dyn_ltree,a.l_desc.max_code),u(a,a.dyn_dtree,a.d_desc.max_code),t(a,a.bl_desc),b=S-1;b>=3&&0===a.bl_tree[2*cb[b]+1];b--);return a.opt_len+=3*(b+1)+5+5+4,b}function x(a,b,c,d){var e;for(g(a,b-257,5),g(a,c-1,5),g(a,d-4,4),e=0;d>e;e++)g(a,a.bl_tree[2*cb[e]+1],3);v(a,a.dyn_ltree,b-1),v(a,a.dyn_dtree,c-1)}function y(a){var b,c=4093624447;for(b=0;31>=b;b++,c>>>=1)if(1&c&&0!==a.dyn_ltree[2*b])return G;if(0!==a.dyn_ltree[18]||0!==a.dyn_ltree[20]||0!==a.dyn_ltree[26])return H;for(b=32;P>b;b++)if(0!==a.dyn_ltree[2*b])return H;return G}function z(a){pb||(m(),pb=!0),a.l_desc=new ob(a.dyn_ltree,kb),a.d_desc=new ob(a.dyn_dtree,lb),a.bl_desc=new ob(a.bl_tree,mb),a.bi_buf=0,a.bi_valid=0,n(a)}function A(a,b,c,d){g(a,(J<<1)+(d?1:0),3),p(a,b,c,!0)}function B(a){g(a,K<<1,3),h(a,X,eb),j(a)}function C(a,b,c,d){var e,f,h=0;a.level>0?(a.strm.data_type===I&&(a.strm.data_type=y(a)),t(a,a.l_desc),t(a,a.d_desc),h=w(a),e=a.opt_len+3+7>>>3,f=a.static_len+3+7>>>3,e>=f&&(e=f)):e=f=c+5,e>=c+4&&-1!==b?A(a,b,c,d):a.strategy===F||f===e?(g(a,(K<<1)+(d?1:0),3),s(a,eb,fb)):(g(a,(L<<1)+(d?1:0),3),x(a,a.l_desc.max_code+1,a.d_desc.max_code+1,h+1),s(a,a.dyn_ltree,a.dyn_dtree)),n(a),d&&o(a)}function D(a,b,c){return a.pending_buf[a.d_buf+2*a.last_lit]=b>>>8&255,a.pending_buf[a.d_buf+2*a.last_lit+1]=255&b,a.pending_buf[a.l_buf+a.last_lit]=255&c,a.last_lit++,0===b?a.dyn_ltree[2*c]++:(a.matches++,b--,a.dyn_ltree[2*(hb[c]+P+1)]++,a.dyn_dtree[2*e(b)]++),a.last_lit===a.lit_bufsize-1}var E=a("../utils/common"),F=4,G=0,H=1,I=2,J=0,K=1,L=2,M=3,N=258,O=29,P=256,Q=P+1+O,R=30,S=19,T=2*Q+1,U=15,V=16,W=7,X=256,Y=16,Z=17,$=18,_=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],ab=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],bb=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],cb=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],db=512,eb=new Array(2*(Q+2));d(eb);var fb=new Array(2*R);d(fb);var gb=new Array(db);d(gb);var hb=new Array(N-M+1);d(hb);var ib=new Array(O);d(ib);var jb=new Array(R);d(jb);var kb,lb,mb,nb=function(a,b,c,d,e){this.static_tree=a,this.extra_bits=b,this.extra_base=c,this.elems=d,this.max_length=e,this.has_stree=a&&a.length},ob=function(a,b){this.dyn_tree=a,this.max_code=0,this.stat_desc=b},pb=!1;c._tr_init=z,c._tr_stored_block=A,c._tr_flush_block=C,c._tr_tally=D,c._tr_align=B},{"../utils/common":27}],39:[function(a,b){"use strict";function c(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}b.exports=c},{}]},{},[9])(9)});'use strict';if(tr.isVinn){global.JSZip=global.window.JSZip;global.window=undefined;}else if(tr.isNode){const jsZipAbsPath=HTMLImportsLoader.hrefToAbsolutePath('/jszip.min.js');const jsZipModule=require(jsZipAbsPath);global.JSZip=jsZipModule;}'use strict';tr.exportTo('tr.e.importer',function(){function ZipImporter(model,eventData){if(eventData instanceof ArrayBuffer){eventData=new Uint8Array(eventData);}
5255this.model_=model;this.eventData_=eventData;}
5256ZipImporter.canImport=function(eventData){let header;if(eventData instanceof ArrayBuffer){header=new Uint8Array(eventData.slice(0,2));}else if(typeof(eventData)==='string'||eventData instanceof String){header=[eventData.charCodeAt(0),eventData.charCodeAt(1)];}else{return false;}
5257return header[0]==='P'.charCodeAt(0)&&header[1]==='K'.charCodeAt(0);};ZipImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'ZipImporter';},isTraceDataContainer(){return true;},extractSubtraces(){const zip=new JSZip(this.eventData_);const subtraces=[];for(const idx in zip.files){subtraces.push(zip.files[idx].asBinary());}
5258return subtraces;}};tr.importer.Importer.register(ZipImporter);return{ZipImporter,};});'use strict';tr.exportTo('tr.model',function(){function HeapEntry(heapDump,leafStackFrame,objectTypeName,size,count,valuesAreTotals){this.heapDump=heapDump;this.leafStackFrame=leafStackFrame;this.objectTypeName=objectTypeName;this.size=size;this.count=count;this.valuesAreTotals=valuesAreTotals;}
5259function HeapDump(processMemoryDump,allocatorName,isComplete){this.processMemoryDump=processMemoryDump;this.allocatorName=allocatorName;this.isComplete=isComplete;this.entries=[];}
5260HeapDump.prototype={addEntry(leafStackFrame,objectTypeName,size,count,opt_valuesAreTotals){if(opt_valuesAreTotals===undefined)opt_valuesAreTotals=true;const valuesAreTotals=opt_valuesAreTotals;const entry=new HeapEntry(this,leafStackFrame,objectTypeName,size,count,valuesAreTotals);this.entries.push(entry);return entry;}};return{HeapEntry,HeapDump,};});'use strict';tr.exportTo('tr.e.importer',function(){function HeapDumpTraceEventImporter(heapProfileExpander,stackFrames,processMemoryDump,idPrefix,model){this.expander=heapProfileExpander;this.stackFrames=stackFrames;this.processMemoryDump=processMemoryDump;this.idPrefix=idPrefix;this.model=model;}
5261HeapDumpTraceEventImporter.prototype={getLeafStackFrame(stackFrameId){if(stackFrameId==='')return undefined;const parentId=this.idPrefix+stackFrameId;const id=parentId+':self';if(!this.stackFrames[id]){const parentStackFrame=this.stackFrames[parentId];const stackFrame=new tr.model.StackFrame(parentStackFrame,id,'<self>',undefined);this.model.addStackFrame(stackFrame);}
5262return this.stackFrames[id];},parseEntry(entry,heapDump){const size=entry.size;const count=entry.count;const leafStackFrame=this.getLeafStackFrame(entry.node.id);const objectTypeName=entry.type.name;const valuesAreTotals=false;if(objectTypeName===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Missing object type name (ID '+typeId+')',});}
5263heapDump.addEntry(leafStackFrame,objectTypeName,size,count,valuesAreTotals);},parse(){const heapDumps={};const inflated=this.expander.inflated;for(const[allocatorName,entries]of Object.entries(inflated)){const heapDump=new tr.model.HeapDump(this.processMemoryDump,allocatorName);for(const entry of entries){this.parseEntry(entry,heapDump);}
5264heapDump.isComplete=true;heapDumps[allocatorName]=heapDump;}
5265return heapDumps;},};return{HeapDumpTraceEventImporter,};});'use strict';tr.exportTo('tr.e.importer',function(){function LegacyHeapDumpTraceEventImporter(model,processMemoryDump,processObjectTypeNameMap,idPrefix,dumpId,rawHeapDumps){this.model_=model;this.processObjectTypeNameMap_=processObjectTypeNameMap;this.idPrefix_=idPrefix;this.processMemoryDump_=processMemoryDump;this.pid_=this.processMemoryDump_.process.pid;this.dumpId_=dumpId;this.rawHeapDumps_=rawHeapDumps;}
5266LegacyHeapDumpTraceEventImporter.prototype={parseRawHeapDump(rawHeapDump,allocatorName){const model=this.model_;const processMemoryDump=this.processMemoryDump_;const heapDump=new tr.model.HeapDump(processMemoryDump,allocatorName);const entries=rawHeapDump.entries;if(entries===undefined||entries.length===0){this.model_.importWarning({type:'memory_dump_parse_error',message:'No heap entries in a '+allocatorName+' heap dump for PID='+this.pid_+' and dump ID='+this.dumpId_+'.'});return undefined;}
5267const isOldFormat=entries[0].bt===undefined;if(!isOldFormat&&this.processObjectTypeNameMap_===undefined){return undefined;}
5268for(let i=0;i<entries.length;i++){const entry=entries[i];const size=parseInt(entry.size,16);const leafStackFrameIndex=entry.bt;let leafStackFrame;if(isOldFormat){if(leafStackFrameIndex===undefined){leafStackFrame=undefined;}else{let leafStackFrameId=this.idPrefix_+leafStackFrameIndex;if(leafStackFrameIndex===''){leafStackFrame=undefined;}else{leafStackFrame=model.stackFrames[leafStackFrameId];if(leafStackFrame===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Missing leaf stack frame (ID '+
5269leafStackFrameId+') of heap entry '+i+' (size '+
5270size+') in a '+allocatorName+' heap dump for PID='+this.pid_+'.'});continue;}}
5271leafStackFrameId+=':self';if(model.stackFrames[leafStackFrameId]!==undefined){leafStackFrame=model.stackFrames[leafStackFrameId];}else{leafStackFrame=new tr.model.StackFrame(leafStackFrame,leafStackFrameId,'<self>',undefined);model.addStackFrame(leafStackFrame);}}}else{if(leafStackFrameIndex===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Missing stack frame ID of heap entry '+i+' (size '+size+') in a '+allocatorName+' heap dump for PID='+this.pid_+'.'});continue;}
5272const leafStackFrameId=this.idPrefix_+leafStackFrameIndex;if(leafStackFrameIndex===''){leafStackFrame=undefined;}else{leafStackFrame=model.stackFrames[leafStackFrameId];if(leafStackFrame===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Missing leaf stack frame (ID '+leafStackFrameId+') of heap entry '+i+' (size '+size+') in a '+
5273allocatorName+' heap dump for PID='+this.pid_+'.'});continue;}}}
5274const objectTypeId=entry.type;let objectTypeName;if(objectTypeId===undefined){objectTypeName=undefined;}else if(this.processObjectTypeNameMap_===undefined){continue;}else{objectTypeName=this.processObjectTypeNameMap_[objectTypeId];if(objectTypeName===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Missing object type name (ID '+objectTypeId+') of heap entry '+i+' (size '+size+') in a '+
5275allocatorName+' heap dump for PID='+this.pid_+'.'});continue;}}
5276const count=entry.count===undefined?undefined:parseInt(entry.count,16);heapDump.addEntry(leafStackFrame,objectTypeName,size,count);}
5277return heapDump;},parse(){const heapDumps={};for(const allocatorName in this.rawHeapDumps_){const rawHeapDump=this.rawHeapDumps_[allocatorName];const heapDump=this.parseRawHeapDump(rawHeapDump,allocatorName);if(heapDump!==undefined&&heapDump.entries.length>0){heapDumps[allocatorName]=heapDump;}}
5278return heapDumps;},};return{LegacyHeapDumpTraceEventImporter,};});'use strict';if(tr.isHeadless){global.window={};}
5279(function(window,Object,Array,Error,JSON,undefined){var partialComplete=varArgs(function(fn,args){var numBoundArgs=args.length;return varArgs(function(callArgs){for(var i=0;i<callArgs.length;i++){args[numBoundArgs+i]=callArgs[i];}
5280args.length=numBoundArgs+callArgs.length;return fn.apply(this,args);});}),compose=varArgs(function(fns){var fnsList=arrayAsList(fns);function next(params,curFn){return[apply(params,curFn)];}
5281return varArgs(function(startParams){return foldR(next,startParams,fnsList)[0];});});function compose2(f1,f2){return function(){return f1.call(this,f2.apply(this,arguments));}}
5282function attr(key){return function(o){return o[key];};}
5283var lazyUnion=varArgs(function(fns){return varArgs(function(params){var maybeValue;for(var i=0;i<len(fns);i++){maybeValue=apply(params,fns[i]);if(maybeValue){return maybeValue;}}});});function apply(args,fn){return fn.apply(undefined,args);}
5284function varArgs(fn){var numberOfFixedArguments=fn.length-1,slice=Array.prototype.slice;if(numberOfFixedArguments==0){return function(){return fn.call(this,slice.call(arguments));}}else if(numberOfFixedArguments==1){return function(){return fn.call(this,arguments[0],slice.call(arguments,1));}}
5285var argsHolder=Array(fn.length);return function(){for(var i=0;i<numberOfFixedArguments;i++){argsHolder[i]=arguments[i];}
5286argsHolder[numberOfFixedArguments]=slice.call(arguments,numberOfFixedArguments);return fn.apply(this,argsHolder);}}
5287function flip(fn){return function(a,b){return fn(b,a);}}
5288function lazyIntersection(fn1,fn2){return function(param){return fn1(param)&&fn2(param);};}
5289function noop(){}
5290function always(){return true}
5291function functor(val){return function(){return val;}}
5292function isOfType(T,maybeSomething){return maybeSomething&&maybeSomething.constructor===T;}
5293var len=attr('length'),isString=partialComplete(isOfType,String);function defined(value){return value!==undefined;}
5294function hasAllProperties(fieldList,o){return(o instanceof Object)&&all(function(field){return(field in o);},fieldList);}
5295function cons(x,xs){return[x,xs];}
5296var emptyList=null,head=attr(0),tail=attr(1);function arrayAsList(inputArray){return reverseList(inputArray.reduce(flip(cons),emptyList));}
5297var list=varArgs(arrayAsList);function listAsArray(list){return foldR(function(arraySoFar,listItem){arraySoFar.unshift(listItem);return arraySoFar;},[],list);}
5298function map(fn,list){return list?cons(fn(head(list)),map(fn,tail(list))):emptyList;}
5299function foldR(fn,startValue,list){return list?fn(foldR(fn,startValue,tail(list)),head(list)):startValue;}
5300function foldR1(fn,list){return tail(list)?fn(foldR1(fn,tail(list)),head(list)):head(list);}
5301function without(list,test,removedFn){return withoutInner(list,removedFn||noop);function withoutInner(subList,removedFn){return subList?(test(head(subList))?(removedFn(head(subList)),tail(subList)):cons(head(subList),withoutInner(tail(subList),removedFn))):emptyList;}}
5302function all(fn,list){return!list||(fn(head(list))&&all(fn,tail(list)));}
5303function applyEach(fnList,args){if(fnList){head(fnList).apply(null,args);applyEach(tail(fnList),args);}}
5304function reverseList(list){function reverseInner(list,reversedAlready){if(!list){return reversedAlready;}
5305return reverseInner(tail(list),cons(head(list),reversedAlready))}
5306return reverseInner(list,emptyList);}
5307function first(test,list){return list&&(test(head(list))?head(list):first(test,tail(list)));}
5308function clarinet(eventBus){"use strict";var
5309emitSaxKey=eventBus(SAX_KEY).emit,emitValueOpen=eventBus(SAX_VALUE_OPEN).emit,emitValueClose=eventBus(SAX_VALUE_CLOSE).emit,emitFail=eventBus(FAIL_EVENT).emit,MAX_BUFFER_LENGTH=64*1024,stringTokenPattern=/[\\"\n]/g,_n=0,BEGIN=_n++,VALUE=_n++,OPEN_OBJECT=_n++,CLOSE_OBJECT=_n++,OPEN_ARRAY=_n++,CLOSE_ARRAY=_n++,STRING=_n++,OPEN_KEY=_n++,CLOSE_KEY=_n++,TRUE=_n++,TRUE2=_n++,TRUE3=_n++,FALSE=_n++,FALSE2=_n++,FALSE3=_n++,FALSE4=_n++,NULL=_n++,NULL2=_n++,NULL3=_n++,NUMBER_DECIMAL_POINT=_n++,NUMBER_DIGIT=_n,bufferCheckPosition=MAX_BUFFER_LENGTH,latestError,c,p,textNode=undefined,numberNode="",slashed=false,closed=false,state=BEGIN,stack=[],unicodeS=null,unicodeI=0,depth=0,position=0,column=0,line=1;function checkBufferLength(){var maxActual=0;if(textNode!==undefined&&textNode.length>MAX_BUFFER_LENGTH){emitError("Max buffer length exceeded: textNode");maxActual=Math.max(maxActual,textNode.length);}
5310if(numberNode.length>MAX_BUFFER_LENGTH){emitError("Max buffer length exceeded: numberNode");maxActual=Math.max(maxActual,numberNode.length);}
5311bufferCheckPosition=(MAX_BUFFER_LENGTH-maxActual)
5312+position;}
5313eventBus(STREAM_DATA).on(handleData);eventBus(STREAM_END).on(handleStreamEnd);function emitError(errorString){if(textNode!==undefined){emitValueOpen(textNode);emitValueClose();textNode=undefined;}
5314latestError=Error(errorString+"\nLn: "+line+"\nCol: "+column+"\nChr: "+c);emitFail(errorReport(undefined,undefined,latestError));}
5315function handleStreamEnd(){if(state==BEGIN){emitValueOpen({});emitValueClose();closed=true;return;}
5316if(state!==VALUE||depth!==0)
5317emitError("Unexpected end");if(textNode!==undefined){emitValueOpen(textNode);emitValueClose();textNode=undefined;}
5318closed=true;}
5319function whitespace(c){return c=='\r'||c=='\n'||c==' '||c=='\t';}
5320function handleData(chunk){if(latestError)
5321return;if(closed){return emitError("Cannot write after close");}
5322var i=0;c=chunk[0];while(c){p=c;c=chunk[i++];if(!c)break;position++;if(c=="\n"){line++;column=0;}else column++;switch(state){case BEGIN:if(c==="{")state=OPEN_OBJECT;else if(c==="[")state=OPEN_ARRAY;else if(!whitespace(c))
5323return emitError("Non-whitespace before {[.");continue;case OPEN_KEY:case OPEN_OBJECT:if(whitespace(c))continue;if(state===OPEN_KEY)stack.push(CLOSE_KEY);else{if(c==='}'){emitValueOpen({});emitValueClose();state=stack.pop()||VALUE;continue;}else stack.push(CLOSE_OBJECT);}
5324if(c==='"')
5325state=STRING;else
5326return emitError("Malformed object key should start with \" ");continue;case CLOSE_KEY:case CLOSE_OBJECT:if(whitespace(c))continue;if(c===':'){if(state===CLOSE_OBJECT){stack.push(CLOSE_OBJECT);if(textNode!==undefined){emitValueOpen({});emitSaxKey(textNode);textNode=undefined;}
5327depth++;}else{if(textNode!==undefined){emitSaxKey(textNode);textNode=undefined;}}
5328state=VALUE;}else if(c==='}'){if(textNode!==undefined){emitValueOpen(textNode);emitValueClose();textNode=undefined;}
5329emitValueClose();depth--;state=stack.pop()||VALUE;}else if(c===','){if(state===CLOSE_OBJECT)
5330stack.push(CLOSE_OBJECT);if(textNode!==undefined){emitValueOpen(textNode);emitValueClose();textNode=undefined;}
5331state=OPEN_KEY;}else
5332return emitError('Bad object');continue;case OPEN_ARRAY:case VALUE:if(whitespace(c))continue;if(state===OPEN_ARRAY){emitValueOpen([]);depth++;state=VALUE;if(c===']'){emitValueClose();depth--;state=stack.pop()||VALUE;continue;}else{stack.push(CLOSE_ARRAY);}}
5333if(c==='"')state=STRING;else if(c==='{')state=OPEN_OBJECT;else if(c==='[')state=OPEN_ARRAY;else if(c==='t')state=TRUE;else if(c==='f')state=FALSE;else if(c==='n')state=NULL;else if(c==='-'){numberNode+=c;}else if(c==='0'){numberNode+=c;state=NUMBER_DIGIT;}else if('123456789'.indexOf(c)!==-1){numberNode+=c;state=NUMBER_DIGIT;}else
5334return emitError("Bad value");continue;case CLOSE_ARRAY:if(c===','){stack.push(CLOSE_ARRAY);if(textNode!==undefined){emitValueOpen(textNode);emitValueClose();textNode=undefined;}
5335state=VALUE;}else if(c===']'){if(textNode!==undefined){emitValueOpen(textNode);emitValueClose();textNode=undefined;}
5336emitValueClose();depth--;state=stack.pop()||VALUE;}else if(whitespace(c))
5337continue;else
5338return emitError('Bad array');continue;case STRING:if(textNode===undefined){textNode="";}
5339var starti=i-1;STRING_BIGLOOP:while(true){while(unicodeI>0){unicodeS+=c;c=chunk.charAt(i++);if(unicodeI===4){textNode+=String.fromCharCode(parseInt(unicodeS,16));unicodeI=0;starti=i-1;}else{unicodeI++;}
5340if(!c)break STRING_BIGLOOP;}
5341if(c==='"'&&!slashed){state=stack.pop()||VALUE;textNode+=chunk.substring(starti,i-1);break;}
5342if(c==='\\'&&!slashed){slashed=true;textNode+=chunk.substring(starti,i-1);c=chunk.charAt(i++);if(!c)break;}
5343if(slashed){slashed=false;if(c==='n'){textNode+='\n';}
5344else if(c==='r'){textNode+='\r';}
5345else if(c==='t'){textNode+='\t';}
5346else if(c==='f'){textNode+='\f';}
5347else if(c==='b'){textNode+='\b';}
5348else if(c==='u'){unicodeI=1;unicodeS='';}else{textNode+=c;}
5349c=chunk.charAt(i++);starti=i-1;if(!c)break;else continue;}
5350stringTokenPattern.lastIndex=i;var reResult=stringTokenPattern.exec(chunk);if(!reResult){i=chunk.length+1;textNode+=chunk.substring(starti,i-1);break;}
5351i=reResult.index+1;c=chunk.charAt(reResult.index);if(!c){textNode+=chunk.substring(starti,i-1);break;}}
5352continue;case TRUE:if(!c)continue;if(c==='r')state=TRUE2;else
5353return emitError('Invalid true started with t'+c);continue;case TRUE2:if(!c)continue;if(c==='u')state=TRUE3;else
5354return emitError('Invalid true started with tr'+c);continue;case TRUE3:if(!c)continue;if(c==='e'){emitValueOpen(true);emitValueClose();state=stack.pop()||VALUE;}else
5355return emitError('Invalid true started with tru'+c);continue;case FALSE:if(!c)continue;if(c==='a')state=FALSE2;else
5356return emitError('Invalid false started with f'+c);continue;case FALSE2:if(!c)continue;if(c==='l')state=FALSE3;else
5357return emitError('Invalid false started with fa'+c);continue;case FALSE3:if(!c)continue;if(c==='s')state=FALSE4;else
5358return emitError('Invalid false started with fal'+c);continue;case FALSE4:if(!c)continue;if(c==='e'){emitValueOpen(false);emitValueClose();state=stack.pop()||VALUE;}else
5359return emitError('Invalid false started with fals'+c);continue;case NULL:if(!c)continue;if(c==='u')state=NULL2;else
5360return emitError('Invalid null started with n'+c);continue;case NULL2:if(!c)continue;if(c==='l')state=NULL3;else
5361return emitError('Invalid null started with nu'+c);continue;case NULL3:if(!c)continue;if(c==='l'){emitValueOpen(null);emitValueClose();state=stack.pop()||VALUE;}else
5362return emitError('Invalid null started with nul'+c);continue;case NUMBER_DECIMAL_POINT:if(c==='.'){numberNode+=c;state=NUMBER_DIGIT;}else
5363return emitError('Leading zero not followed by .');continue;case NUMBER_DIGIT:if('0123456789'.indexOf(c)!==-1)numberNode+=c;else if(c==='.'){if(numberNode.indexOf('.')!==-1)
5364return emitError('Invalid number has two dots');numberNode+=c;}else if(c==='e'||c==='E'){if(numberNode.indexOf('e')!==-1||numberNode.indexOf('E')!==-1)
5365return emitError('Invalid number has two exponential');numberNode+=c;}else if(c==="+"||c==="-"){if(!(p==='e'||p==='E'))
5366return emitError('Invalid symbol in number');numberNode+=c;}else{if(numberNode){emitValueOpen(parseFloat(numberNode));emitValueClose();numberNode="";}
5367i--;state=stack.pop()||VALUE;}
5368continue;default:return emitError("Unknown state: "+state);}}
5369if(position>=bufferCheckPosition)
5370checkBufferLength();}}
5371function ascentManager(oboeBus,handlers){"use strict";var listenerId={},ascent;function stateAfter(handler){return function(param){ascent=handler(ascent,param);}}
5372for(var eventName in handlers){oboeBus(eventName).on(stateAfter(handlers[eventName]),listenerId);}
5373oboeBus(NODE_SWAP).on(function(newNode){var oldHead=head(ascent),key=keyOf(oldHead),ancestors=tail(ascent),parentNode;if(ancestors){parentNode=nodeOf(head(ancestors));parentNode[key]=newNode;}});oboeBus(NODE_DROP).on(function(){var oldHead=head(ascent),key=keyOf(oldHead),ancestors=tail(ascent),parentNode;if(ancestors){parentNode=nodeOf(head(ancestors));delete parentNode[key];}});oboeBus(ABORTING).on(function(){for(var eventName in handlers){oboeBus(eventName).un(listenerId);}});}
5374function parseResponseHeaders(headerStr){var headers={};headerStr&&headerStr.split('\u000d\u000a').forEach(function(headerPair){var index=headerPair.indexOf('\u003a\u0020');headers[headerPair.substring(0,index)]=headerPair.substring(index+2);});return headers;}
5375function isCrossOrigin(pageLocation,ajaxHost){function defaultPort(protocol){return{'http:':80,'https:':443}[protocol];}
5376function portOf(location){return location.port||defaultPort(location.protocol||pageLocation.protocol);}
5377return!!((ajaxHost.protocol&&(ajaxHost.protocol!=pageLocation.protocol))||(ajaxHost.host&&(ajaxHost.host!=pageLocation.host))||(ajaxHost.host&&(portOf(ajaxHost)!=portOf(pageLocation))));}
5378function parseUrlOrigin(url){var URL_HOST_PATTERN=/(\w+:)?(?:\/\/)([\w.-]+)?(?::(\d+))?\/?/,urlHostMatch=URL_HOST_PATTERN.exec(url)||[];return{protocol:urlHostMatch[1]||'',host:urlHostMatch[2]||'',port:urlHostMatch[3]||''};}
5379function httpTransport(){return new XMLHttpRequest();}
5380function streamingHttp(oboeBus,xhr,method,url,data,headers,withCredentials){"use strict";var emitStreamData=oboeBus(STREAM_DATA).emit,emitFail=oboeBus(FAIL_EVENT).emit,numberOfCharsAlreadyGivenToCallback=0,stillToSendStartEvent=true;oboeBus(ABORTING).on(function(){xhr.onreadystatechange=null;xhr.abort();});function handleProgress(){var textSoFar=xhr.responseText,newText=textSoFar.substr(numberOfCharsAlreadyGivenToCallback);if(newText){emitStreamData(newText);}
5381numberOfCharsAlreadyGivenToCallback=len(textSoFar);}
5382if('onprogress'in xhr){xhr.onprogress=handleProgress;}
5383xhr.onreadystatechange=function(){function sendStartIfNotAlready(){try{stillToSendStartEvent&&oboeBus(HTTP_START).emit(xhr.status,parseResponseHeaders(xhr.getAllResponseHeaders()));stillToSendStartEvent=false;}catch(e){}}
5384switch(xhr.readyState){case 2:case 3:return sendStartIfNotAlready();case 4:sendStartIfNotAlready();var successful=String(xhr.status)[0]==2;if(successful){handleProgress();oboeBus(STREAM_END).emit();}else{emitFail(errorReport(xhr.status,xhr.responseText));}}};try{xhr.open(method,url,true);for(var headerName in headers){xhr.setRequestHeader(headerName,headers[headerName]);}
5385if(!isCrossOrigin(window.location,parseUrlOrigin(url))){xhr.setRequestHeader('X-Requested-With','XMLHttpRequest');}
5386xhr.withCredentials=withCredentials;xhr.send(data);}catch(e){window.setTimeout(partialComplete(emitFail,errorReport(undefined,undefined,e)),0);}}
5387var jsonPathSyntax=(function(){var
5388regexDescriptor=function regexDescriptor(regex){return regex.exec.bind(regex);},jsonPathClause=varArgs(function(componentRegexes){componentRegexes.unshift(/^/);return regexDescriptor(RegExp(componentRegexes.map(attr('source')).join('')));}),possiblyCapturing=/(\$?)/,namedNode=/([\w-_]+|\*)/,namePlaceholder=/()/,nodeInArrayNotation=/\["([^"]+)"\]/,numberedNodeInArrayNotation=/\[(\d+|\*)\]/,fieldList=/{([\w ]*?)}/,optionalFieldList=/(?:{([\w ]*?)})?/
5389,jsonPathNamedNodeInObjectNotation=jsonPathClause(possiblyCapturing,namedNode,optionalFieldList),jsonPathNamedNodeInArrayNotation=jsonPathClause(possiblyCapturing,nodeInArrayNotation,optionalFieldList),jsonPathNumberedNodeInArrayNotation=jsonPathClause(possiblyCapturing,numberedNodeInArrayNotation,optionalFieldList),jsonPathPureDuckTyping=jsonPathClause(possiblyCapturing,namePlaceholder,fieldList),jsonPathDoubleDot=jsonPathClause(/\.\./),jsonPathDot=jsonPathClause(/\./),jsonPathBang=jsonPathClause(possiblyCapturing,/!/),emptyString=jsonPathClause(/$/);return function(fn){return fn(lazyUnion(jsonPathNamedNodeInObjectNotation,jsonPathNamedNodeInArrayNotation,jsonPathNumberedNodeInArrayNotation,jsonPathPureDuckTyping),jsonPathDoubleDot,jsonPathDot,jsonPathBang,emptyString);};}());function namedNode(key,node){return{key:key,node:node};}
5390var keyOf=attr('key');var nodeOf=attr('node');var ROOT_PATH={};function incrementalContentBuilder(oboeBus){var emitNodeOpened=oboeBus(NODE_OPENED).emit,emitNodeClosed=oboeBus(NODE_CLOSED).emit,emitRootOpened=oboeBus(ROOT_PATH_FOUND).emit,emitRootClosed=oboeBus(ROOT_NODE_FOUND).emit;function arrayIndicesAreKeys(possiblyInconsistentAscent,newDeepestNode){var parentNode=nodeOf(head(possiblyInconsistentAscent));return isOfType(Array,parentNode)?keyFound(possiblyInconsistentAscent,len(parentNode),newDeepestNode):possiblyInconsistentAscent;}
5391function nodeOpened(ascent,newDeepestNode){if(!ascent){emitRootOpened(newDeepestNode);return keyFound(ascent,ROOT_PATH,newDeepestNode);}
5392var arrayConsistentAscent=arrayIndicesAreKeys(ascent,newDeepestNode),ancestorBranches=tail(arrayConsistentAscent),previouslyUnmappedName=keyOf(head(arrayConsistentAscent));appendBuiltContent(ancestorBranches,previouslyUnmappedName,newDeepestNode);return cons(namedNode(previouslyUnmappedName,newDeepestNode),ancestorBranches);}
5393function appendBuiltContent(ancestorBranches,key,node){nodeOf(head(ancestorBranches))[key]=node;}
5394function keyFound(ascent,newDeepestName,maybeNewDeepestNode){if(ascent){appendBuiltContent(ascent,newDeepestName,maybeNewDeepestNode);}
5395var ascentWithNewPath=cons(namedNode(newDeepestName,maybeNewDeepestNode),ascent);emitNodeOpened(ascentWithNewPath);return ascentWithNewPath;}
5396function nodeClosed(ascent){emitNodeClosed(ascent);return tail(ascent)||emitRootClosed(nodeOf(head(ascent)));}
5397var contentBuilderHandlers={};contentBuilderHandlers[SAX_VALUE_OPEN]=nodeOpened;contentBuilderHandlers[SAX_VALUE_CLOSE]=nodeClosed;contentBuilderHandlers[SAX_KEY]=keyFound;return contentBuilderHandlers;}
5398var jsonPathCompiler=jsonPathSyntax(function(pathNodeSyntax,doubleDotSyntax,dotSyntax,bangSyntax,emptySyntax){var CAPTURING_INDEX=1;var NAME_INDEX=2;var FIELD_LIST_INDEX=3;var headKey=compose2(keyOf,head),headNode=compose2(nodeOf,head);function nameClause(previousExpr,detection){var name=detection[NAME_INDEX],matchesName=(!name||name=='*')?always:function(ascent){return headKey(ascent)==name};return lazyIntersection(matchesName,previousExpr);}
5399function duckTypeClause(previousExpr,detection){var fieldListStr=detection[FIELD_LIST_INDEX];if(!fieldListStr)
5400return previousExpr;var hasAllrequiredFields=partialComplete(hasAllProperties,arrayAsList(fieldListStr.split(/\W+/))),isMatch=compose2(hasAllrequiredFields,headNode);return lazyIntersection(isMatch,previousExpr);}
5401function capture(previousExpr,detection){var capturing=!!detection[CAPTURING_INDEX];if(!capturing)
5402return previousExpr;return lazyIntersection(previousExpr,head);}
5403function skip1(previousExpr){if(previousExpr==always){return always;}
5404function notAtRoot(ascent){return headKey(ascent)!=ROOT_PATH;}
5405return lazyIntersection(notAtRoot,compose2(previousExpr,tail));}
5406function skipMany(previousExpr){if(previousExpr==always){return always;}
5407var
5408terminalCaseWhenArrivingAtRoot=rootExpr(),terminalCaseWhenPreviousExpressionIsSatisfied=previousExpr,recursiveCase=skip1(function(ascent){return cases(ascent);}),cases=lazyUnion(terminalCaseWhenArrivingAtRoot,terminalCaseWhenPreviousExpressionIsSatisfied,recursiveCase);return cases;}
5409function rootExpr(){return function(ascent){return headKey(ascent)==ROOT_PATH;};}
5410function statementExpr(lastClause){return function(ascent){var exprMatch=lastClause(ascent);return exprMatch===true?head(ascent):exprMatch;};}
5411function expressionsReader(exprs,parserGeneratedSoFar,detection){return foldR(function(parserGeneratedSoFar,expr){return expr(parserGeneratedSoFar,detection);},parserGeneratedSoFar,exprs);}
5412function generateClauseReaderIfTokenFound(tokenDetector,clauseEvaluatorGenerators,jsonPath,parserGeneratedSoFar,onSuccess){var detected=tokenDetector(jsonPath);if(detected){var compiledParser=expressionsReader(clauseEvaluatorGenerators,parserGeneratedSoFar,detected),remainingUnparsedJsonPath=jsonPath.substr(len(detected[0]));return onSuccess(remainingUnparsedJsonPath,compiledParser);}}
5413function clauseMatcher(tokenDetector,exprs){return partialComplete(generateClauseReaderIfTokenFound,tokenDetector,exprs);}
5414var clauseForJsonPath=lazyUnion(clauseMatcher(pathNodeSyntax,list(capture,duckTypeClause,nameClause,skip1)),clauseMatcher(doubleDotSyntax,list(skipMany)),clauseMatcher(dotSyntax,list()),clauseMatcher(bangSyntax,list(capture,rootExpr)),clauseMatcher(emptySyntax,list(statementExpr)),function(jsonPath){throw Error('"'+jsonPath+'" could not be tokenised')});function returnFoundParser(_remainingJsonPath,compiledParser){return compiledParser}
5415function compileJsonPathToFunction(uncompiledJsonPath,parserGeneratedSoFar){var onFind=uncompiledJsonPath?compileJsonPathToFunction:returnFoundParser;return clauseForJsonPath(uncompiledJsonPath,parserGeneratedSoFar,onFind);}
5416return function(jsonPath){try{return compileJsonPathToFunction(jsonPath,always);}catch(e){throw Error('Could not compile "'+jsonPath+'" because '+e.message);}}});function singleEventPubSub(eventType,newListener,removeListener){var listenerTupleList,listenerList;function hasId(id){return function(tuple){return tuple.id==id;};}
5417return{on:function(listener,listenerId){var tuple={listener:listener,id:listenerId||listener};if(newListener){newListener.emit(eventType,listener,tuple.id);}
5418listenerTupleList=cons(tuple,listenerTupleList);listenerList=cons(listener,listenerList);return this;},emit:function(){applyEach(listenerList,arguments);},un:function(listenerId){var removed;listenerTupleList=without(listenerTupleList,hasId(listenerId),function(tuple){removed=tuple;});if(removed){listenerList=without(listenerList,function(listener){return listener==removed.listener;});if(removeListener){removeListener.emit(eventType,removed.listener,removed.id);}}},listeners:function(){return listenerList;},hasListener:function(listenerId){var test=listenerId?hasId(listenerId):always;return defined(first(test,listenerTupleList));}};}
5419function pubSub(){var singles={},newListener=newSingle('newListener'),removeListener=newSingle('removeListener');function newSingle(eventName){return singles[eventName]=singleEventPubSub(eventName,newListener,removeListener);}
5420function pubSubInstance(eventName){return singles[eventName]||newSingle(eventName);}
5421['emit','on','un'].forEach(function(methodName){pubSubInstance[methodName]=varArgs(function(eventName,parameters){apply(parameters,pubSubInstance(eventName)[methodName]);});});return pubSubInstance;}
5422var
5423_S=1,NODE_OPENED=_S++,NODE_CLOSED=_S++,NODE_SWAP=_S++,NODE_DROP=_S++,FAIL_EVENT='fail',ROOT_NODE_FOUND=_S++,ROOT_PATH_FOUND=_S++,HTTP_START='start',STREAM_DATA='data',STREAM_END='end',ABORTING=_S++,SAX_KEY=_S++,SAX_VALUE_OPEN=_S++,SAX_VALUE_CLOSE=_S++;function errorReport(statusCode,body,error){try{var jsonBody=JSON.parse(body);}catch(e){}
5424return{statusCode:statusCode,body:body,jsonBody:jsonBody,thrown:error};}
5425function patternAdapter(oboeBus,jsonPathCompiler){var predicateEventMap={node:oboeBus(NODE_CLOSED),path:oboeBus(NODE_OPENED)};function emitMatchingNode(emitMatch,node,ascent){var descent=reverseList(ascent);emitMatch(node,listAsArray(tail(map(keyOf,descent))),listAsArray(map(nodeOf,descent)));}
5426function addUnderlyingListener(fullEventName,predicateEvent,compiledJsonPath){var emitMatch=oboeBus(fullEventName).emit;predicateEvent.on(function(ascent){var maybeMatchingMapping=compiledJsonPath(ascent);if(maybeMatchingMapping!==false){emitMatchingNode(emitMatch,nodeOf(maybeMatchingMapping),ascent);}},fullEventName);oboeBus('removeListener').on(function(removedEventName){if(removedEventName==fullEventName){if(!oboeBus(removedEventName).listeners()){predicateEvent.un(fullEventName);}}});}
5427oboeBus('newListener').on(function(fullEventName){var match=/(node|path):(.*)/.exec(fullEventName);if(match){var predicateEvent=predicateEventMap[match[1]];if(!predicateEvent.hasListener(fullEventName)){addUnderlyingListener(fullEventName,predicateEvent,jsonPathCompiler(match[2]));}}})}
5428function instanceApi(oboeBus,contentSource){var oboeApi,fullyQualifiedNamePattern=/^(node|path):./,rootNodeFinishedEvent=oboeBus(ROOT_NODE_FOUND),emitNodeDrop=oboeBus(NODE_DROP).emit,emitNodeSwap=oboeBus(NODE_SWAP).emit,addListener=varArgs(function(eventId,parameters){if(oboeApi[eventId]){apply(parameters,oboeApi[eventId]);}else{var event=oboeBus(eventId),listener=parameters[0];if(fullyQualifiedNamePattern.test(eventId)){addForgettableCallback(event,listener);}else{event.on(listener);}}
5429return oboeApi;}),removeListener=function(eventId,p2,p3){if(eventId=='done'){rootNodeFinishedEvent.un(p2);}else if(eventId=='node'||eventId=='path'){oboeBus.un(eventId+':'+p2,p3);}else{var listener=p2;oboeBus(eventId).un(listener);}
5430return oboeApi;};function addProtectedCallback(eventName,callback){oboeBus(eventName).on(protectedCallback(callback),callback);return oboeApi;}
5431function addForgettableCallback(event,callback,listenerId){listenerId=listenerId||callback;var safeCallback=protectedCallback(callback);event.on(function(){var discard=false;oboeApi.forget=function(){discard=true;};apply(arguments,safeCallback);delete oboeApi.forget;if(discard){event.un(listenerId);}},listenerId);return oboeApi;}
5432function protectedCallback(callback){return function(){try{return callback.apply(oboeApi,arguments);}catch(e){setTimeout(function(){throw new Error(e.message);});}}}
5433function fullyQualifiedPatternMatchEvent(type,pattern){return oboeBus(type+':'+pattern);}
5434function wrapCallbackToSwapNodeIfSomethingReturned(callback){return function(){var returnValueFromCallback=callback.apply(this,arguments);if(defined(returnValueFromCallback)){if(returnValueFromCallback==oboe.drop){emitNodeDrop();}else{emitNodeSwap(returnValueFromCallback);}}}}
5435function addSingleNodeOrPathListener(eventId,pattern,callback){var effectiveCallback;if(eventId=='node'){effectiveCallback=wrapCallbackToSwapNodeIfSomethingReturned(callback);}else{effectiveCallback=callback;}
5436addForgettableCallback(fullyQualifiedPatternMatchEvent(eventId,pattern),effectiveCallback,callback);}
5437function addMultipleNodeOrPathListeners(eventId,listenerMap){for(var pattern in listenerMap){addSingleNodeOrPathListener(eventId,pattern,listenerMap[pattern]);}}
5438function addNodeOrPathListenerApi(eventId,jsonPathOrListenerMap,callback){if(isString(jsonPathOrListenerMap)){addSingleNodeOrPathListener(eventId,jsonPathOrListenerMap,callback);}else{addMultipleNodeOrPathListeners(eventId,jsonPathOrListenerMap);}
5439return oboeApi;}
5440oboeBus(ROOT_PATH_FOUND).on(function(rootNode){oboeApi.root=functor(rootNode);});oboeBus(HTTP_START).on(function(_statusCode,headers){oboeApi.header=function(name){return name?headers[name]:headers;}});return oboeApi={on:addListener,addListener:addListener,removeListener:removeListener,emit:oboeBus.emit,node:partialComplete(addNodeOrPathListenerApi,'node'),path:partialComplete(addNodeOrPathListenerApi,'path'),done:partialComplete(addForgettableCallback,rootNodeFinishedEvent),start:partialComplete(addProtectedCallback,HTTP_START),fail:oboeBus(FAIL_EVENT).on,abort:oboeBus(ABORTING).emit,write:oboeBus(STREAM_DATA).emit,finish:oboeBus(STREAM_END).emit,header:noop,root:noop,source:contentSource};}
5441function wire(httpMethodName,contentSource,body,headers,withCredentials){var oboeBus=pubSub();if(contentSource){streamingHttp(oboeBus,httpTransport(),httpMethodName,contentSource,body,headers,withCredentials);}
5442clarinet(oboeBus);ascentManager(oboeBus,incrementalContentBuilder(oboeBus));patternAdapter(oboeBus,jsonPathCompiler);return instanceApi(oboeBus,contentSource);}
5443function applyDefaults(passthrough,url,httpMethodName,body,headers,withCredentials,cached){headers=headers?JSON.parse(JSON.stringify(headers)):{};if(body){if(!isString(body)){body=JSON.stringify(body);headers['Content-Type']=headers['Content-Type']||'application/json';}}else{body=null;}
5444function modifiedUrl(baseUrl,cached){if(cached===false){if(baseUrl.indexOf('?')==-1){baseUrl+='?';}else{baseUrl+='&';}
5445baseUrl+='_='+new Date().getTime();}
5446return baseUrl;}
5447return passthrough(httpMethodName||'GET',modifiedUrl(url,cached),body,headers,withCredentials||false);}
5448function oboe(arg1){var nodeStreamMethodNames=list('resume','pause','pipe'),isStream=partialComplete(hasAllProperties,nodeStreamMethodNames);if(arg1){if(isStream(arg1)||isString(arg1)){return applyDefaults(wire,arg1);}else{return applyDefaults(wire,arg1.url,arg1.method,arg1.body,arg1.headers,arg1.withCredentials,arg1.cached);}}else{return wire();}}
5449oboe.drop=function(){return oboe.drop;};if(typeof define==="function"&&define.amd){define("oboe",[],function(){return oboe;});}else if(typeof exports==='object'){module.exports=oboe;}else{window.oboe=oboe;}})((function(){try{return window;}catch(e){return self;}}()),Object,Array,Error,JSON);'use strict';if(tr.isVinn){global.oboe=global.window.oboe;global.window=undefined;}else if(tr.isNode){global.window=undefined;const path=HTMLImportsLoader.hrefToAbsolutePath('/oboe/dist/oboe-node.js');global.oboe=require(path);}'use strict';tr.exportTo('tr.e.importer',function(){const STRING_ID_SUFFIX='_sid';const PLURAL_STRING_ID_SUFFIX='_sids';function isStringReference(s){return s.endsWith(STRING_ID_SUFFIX)||s.endsWith(PLURAL_STRING_ID_SUFFIX);}
5450function getStringReferenceName(name){if(name.endsWith(PLURAL_STRING_ID_SUFFIX)){return name.slice(0,-PLURAL_STRING_ID_SUFFIX.length);}
5451return name.slice(0,-STRING_ID_SUFFIX.length);}
5452function deferenceStrings(idToString,o){const clone=Object.assign({},o);for(const[key,value]of Object.entries(clone)){if(isStringReference(key)){const name=getStringReferenceName(key);clone[name]=idToString(value);}}
5453return clone;}
5454function singularize(word){if(word.endsWith('s')){return word.slice(0,-1);}
5455return word;}
5456function getMetadataPairs(dataJson){const isMetadata=v=>typeof v!=='object'||Array.isArray(v);const pairs=Object.entries(dataJson);const metadataPairs=pairs.filter(([_,v])=>isMetadata(v));return metadataPairs;}
5457function getGroupPairs(dataJson){const pairs=Object.entries(dataJson);const nonMapPairs=pairs.filter(([k,_])=>k!=='maps');const groupPairs=nonMapPairs.filter(([_,v])=>typeof v==='object');return groupPairs;}
5458function createMap(mapJson){const map=new Map();for(const entry of mapJson){if(entry.id===undefined){throw new Error('Missing required key "id" in streaming event.');}
5459map.set(entry.id,entry);}
5460return map;}
5461function createMaps(mapsJson){const maps=new Map();for(const[name,mapJson]of Object.entries(mapsJson)){maps.set(name,createMap(mapJson));}
5462return maps;}
5463function createGroup(groupJson,opt_startTime){const entries=[];const n=Object.values(groupJson)[0].length;for(let i=0;i<n;i++){const entry={};for(const name in groupJson){entry[name]=groupJson[name][i];}
5464entries.push(entry);}
5465const timeDelta=groupJson.timeDelta;if(opt_startTime===undefined&&timeDelta!==undefined){throw new Error('Missing required key "startTime" in streaming event.');}
5466if(opt_startTime){let delta=0;for(const entry of entries){delta+=entry.timeDelta?entry.timeDelta:0;entry.time=opt_startTime+delta;}}
5467return entries;}
5468function createGroups(groupsJson,opt_startTime){const groups=new Map();for(const[name,groupJson]of Object.entries(groupsJson)){groups.set(name,createGroup(groupJson,opt_startTime));}
5469return groups;}
5470function createMetadata(metadataPairs){const metadata=new Map();for(const[name,value]of metadataPairs){metadata.set(name,value);}
5471if(metadata.get('version')===undefined){throw new Error('Missing required key "version" in streaming event.');}
5472return metadata;}
5473class ProfilingDictionaryReader{constructor(opt_metadata,opt_maps,opt_groups,opt_parent){this.metadata=opt_metadata||new Map();this.maps=opt_maps||new Map();this.groups=opt_groups||new Map();this.parent_=opt_parent||undefined;this.inflated_=undefined;this.raw_=undefined;this.boundGetString_=this.getString.bind(this);this.deferenceStrings_=o=>deferenceStrings(this.boundGetString_,o);}
5474static empty(){return new ProfilingDictionaryReader();}
5475get parent(){return this.parent_;}
5476get raw(){if(this.raw_)return this.raw_;this.raw_={};for(const[name,group]of this.groups.entries()){this.raw_[name]=group;}
5477return this.raw_;}
5478get inflated(){if(this.inflated_)return this.inflated_;this.inflated_={};for(const[name,group]of this.groups.entries()){this.inflated_[name]=this.inflateGroup(group);}
5479return this.inflated_;}
5480getNewMap(name){return this.maps.get(name)||new Map();}
5481getMapValue(mapName,id){let value=this.getNewMap(mapName).get(id);if(value===undefined&&this.parent){value=this.parent.getMapValue(mapName,id);}
5482return value;}
5483getString(id){const value=this.getMapValue('strings',id);if(value===undefined)return undefined;return value.string;}
5484hasMap(name){if(this.maps.has(name))return true;if(this.parent===undefined)return false;return this.parent.hasMap(name);}
5485inflateGroup(group){return group.map(this.inflateEntry.bind(this));}
5486inflateEntry(entry){const inflatedEntry={};for(const[name,value]of Object.entries(entry)){let inflatedValue;if(this.hasMap(name)){const id=value;inflatedValue=this.deferenceStrings_(this.getMapValue(name,id));}else{inflatedValue=value;}
5487inflatedEntry[singularize(name)]=inflatedValue;}
5488return this.deferenceStrings_(inflatedEntry);}
5489expandData(data){const mapsJson=data.maps||{};const groupsJson=data.allocators||{};const metadataPairs=getMetadataPairs(data);const metadata=createMetadata(metadataPairs);const opt_startTime=metadata.get('startTime');const maps=createMaps(mapsJson);const groups=createGroups(groupsJson,opt_startTime);return new ProfilingDictionaryReader(metadata,maps,groups,this);}
5490expandEvent(event){return this.expandData(event.args.data);}}
5491return{ProfilingDictionaryReader,singularize,deferenceStringsForTest:deferenceStrings,};});'use strict';tr.exportTo('tr.model.source_info',function(){function SourceInfo(file,opt_line,opt_column){this.file_=file;this.line_=opt_line||-1;this.column_=opt_column||-1;}
5492SourceInfo.prototype={get file(){return this.file_;},get line(){return this.line_;},get column(){return this.column_;},get domain(){if(!this.file_)return undefined;const domain=this.file_.match(/(.*:\/\/[^:\/]*)/i);return domain?domain[1]:undefined;},toString(){let str='';if(this.file_){str+=this.file_;}
5493if(this.line_>0){str+=':'+this.line_;}
5494if(this.column_>0){str+=':'+this.column_;}
5495return str;}};return{SourceInfo,};});'use strict';tr.exportTo('tr.model.source_info',function(){function JSSourceInfo(file,line,column,isNative,scriptId,state){tr.model.source_info.SourceInfo.call(this,file,line,column);this.isNative_=isNative;this.scriptId_=scriptId;this.state_=state;}
5496JSSourceInfo.prototype={__proto__:tr.model.source_info.SourceInfo.prototype,get state(){return this.state_;},get isNative(){return this.isNative_;},get scriptId(){return this.scriptId_;},toString(){const str=this.isNative_?'[native v8] ':'';return str+
5497tr.model.source_info.SourceInfo.prototype.toString.call(this);}};const JSSourceState={COMPILED:'compiled',OPTIMIZABLE:'optimizable',OPTIMIZED:'optimized',UNKNOWN:'unknown',};return{JSSourceInfo,JSSourceState,};});'use strict';tr.exportTo('tr.e.importer',function(){function TraceCodeEntry(address,size,name,scriptId){this.id_=tr.b.GUID.allocateSimple();this.address_=address;this.size_=size;const rePrefix=/^(\w*:)?([*~]?)(.*)$/m;const tokens=rePrefix.exec(name);const prefix=tokens[1];let state=tokens[2];const body=tokens[3];if(state==='*'){state=tr.model.source_info.JSSourceState.OPTIMIZED;}else if(state==='~'){state=tr.model.source_info.JSSourceState.OPTIMIZABLE;}else if(state===''){state=tr.model.source_info.JSSourceState.COMPILED;}else{state=tr.model.source_info.JSSourceState.UNKNOWN;}
5498let rawName;let rawUrl;if(prefix==='Script:'){rawName='';rawUrl=body;}else{const spacePos=body.lastIndexOf(' ');rawName=spacePos!==-1?body.substr(0,spacePos):body;rawUrl=spacePos!==-1?body.substr(spacePos+1):'';}
5499function splitLineAndColumn(url){const lineColumnRegEx=/(?::(\d+))?(?::(\d+))?$/;const lineColumnMatch=lineColumnRegEx.exec(url);let lineNumber;let columnNumber;if(typeof(lineColumnMatch[1])==='string'){lineNumber=parseInt(lineColumnMatch[1],10);lineNumber=isNaN(lineNumber)?undefined:lineNumber-1;}
5500if(typeof(lineColumnMatch[2])==='string'){columnNumber=parseInt(lineColumnMatch[2],10);columnNumber=isNaN(columnNumber)?undefined:columnNumber-1;}
5501return{url:url.substring(0,url.length-lineColumnMatch[0].length),lineNumber,columnNumber};}
5502const nativeSuffix=' native';const isNative=rawName.endsWith(nativeSuffix);this.name_=isNative?rawName.slice(0,-nativeSuffix.length):rawName;const urlData=splitLineAndColumn(rawUrl);const url=urlData.url||'';const line=urlData.lineNumber||0;const column=urlData.columnNumber||0;this.sourceInfo_=new tr.model.source_info.JSSourceInfo(url,line,column,isNative,scriptId,state);}
5503TraceCodeEntry.prototype={get id(){return this.id_;},get sourceInfo(){return this.sourceInfo_;},get name(){return this.name_;},set address(address){this.address_=address;},get address(){return this.address_;},set size(size){this.size_=size;},get size(){return this.size_;}};return{TraceCodeEntry,};});'use strict';tr.exportTo('tr.e.importer',function(){function TraceCodeMap(){this.banks_=new Map();}
5504TraceCodeMap.prototype={addEntry(addressHex,size,name,scriptId){const entry=new tr.e.importer.TraceCodeEntry(this.getAddress_(addressHex),size,name,scriptId);this.addEntry_(addressHex,entry);},moveEntry(oldAddressHex,newAddressHex,size){const entry=this.getBank_(oldAddressHex).removeEntry(this.getAddress_(oldAddressHex));if(!entry)return;entry.address=this.getAddress_(newAddressHex);entry.size=size;this.addEntry_(newAddressHex,entry);},lookupEntry(addressHex){return this.getBank_(addressHex).lookupEntry(this.getAddress_(addressHex));},addEntry_(addressHex,entry){this.getBank_(addressHex).addEntry(entry);},getAddress_(addressHex){const bankSizeHexDigits=13;addressHex=addressHex.slice(2);return parseInt(addressHex.slice(-bankSizeHexDigits),16);},getBank_(addressHex){addressHex=addressHex.slice(2);const bankSizeHexDigits=13;const maxHexDigits=16;const bankName=addressHex.slice(-maxHexDigits,-bankSizeHexDigits);let bank=this.banks_.get(bankName);if(!bank){bank=new TraceCodeBank();this.banks_.set(bankName,bank);}
5505return bank;}};function TraceCodeBank(){this.entries_=[];}
5506TraceCodeBank.prototype={removeEntry(address){if(this.entries_.length===0)return undefined;const index=tr.b.findLowIndexInSortedArray(this.entries_,function(entry){return entry.address;},address);const entry=this.entries_[index];if(!entry||entry.address!==address)return undefined;this.entries_.splice(index,1);return entry;},lookupEntry(address){const index=tr.b.findFirstTrueIndexInSortedArray(this.entries_,e=>(address<e.address))-1;const entry=this.entries_[index];return entry&&address<entry.address+entry.size?entry:undefined;},addEntry(newEntry){if(this.entries_.length===0){this.entries_.push(newEntry);}
5507const endAddress=newEntry.address+newEntry.size;const lastIndex=tr.b.findLowIndexInSortedArray(this.entries_,function(entry){return entry.address;},endAddress);let index;for(index=lastIndex-1;index>=0;--index){const entry=this.entries_[index];const entryEndAddress=entry.address+entry.size;if(entryEndAddress<=newEntry.address)break;}
5508++index;this.entries_.splice(index,lastIndex-index,newEntry);}};return{TraceCodeMap,};});'use strict';tr.exportTo('tr.importer',function(){function ContextProcessor(model){this.model_=model;this.activeContexts_=[];this.stackPerType_={};this.contextCache_={};this.contextSetCache_={};this.cachedEntryForActiveContexts_=undefined;this.seenSnapshots_={};}
5509ContextProcessor.prototype={enterContext(contextType,scopedId){const newActiveContexts=[this.getOrCreateContext_(contextType,scopedId),];for(const oldContext of this.activeContexts_){if(oldContext.type===contextType){this.pushContext_(oldContext);}else{newActiveContexts.push(oldContext);}}
5510this.activeContexts_=newActiveContexts;this.cachedEntryForActiveContexts_=undefined;},leaveContext(contextType,scopedId){this.leaveContextImpl_(context=>context.type===contextType&&context.snapshot.scope===scopedId.scope&&context.snapshot.idRef===scopedId.id);},destroyContext(scopedId){for(const stack of Object.values(this.stackPerType_)){let newLength=0;for(let i=0;i<stack.length;++i){if(stack[i].snapshot.scope!==scopedId.scope||stack[i].snapshot.idRef!==scopedId.id){stack[newLength++]=stack[i];}}
5511stack.length=newLength;}
5512this.leaveContextImpl_(context=>context.snapshot.scope===scopedId.scope&&context.snapshot.idRef===scopedId.id);},leaveContextImpl_(predicate){const newActiveContexts=[];for(const oldContext of this.activeContexts_){if(predicate(oldContext)){const previousContext=this.popContext_(oldContext.type);if(previousContext){newActiveContexts.push(previousContext);}}else{newActiveContexts.push(oldContext);}}
5513this.activeContexts_=newActiveContexts;this.cachedEntryForActiveContexts_=undefined;},getOrCreateContext_(contextType,scopedId){const context={type:contextType,snapshot:{scope:scopedId.scope,idRef:scopedId.id}};const key=this.getContextKey_(context);if(key in this.contextCache_){return this.contextCache_[key];}
5514this.contextCache_[key]=context;const snapshotKey=this.getSnapshotKey_(scopedId);this.seenSnapshots_[snapshotKey]=true;return context;},pushContext_(context){if(!(context.type in this.stackPerType_)){this.stackPerType_[context.type]=[];}
5515this.stackPerType_[context.type].push(context);},popContext_(contextType){if(!(contextType in this.stackPerType_)){return undefined;}
5516return this.stackPerType_[contextType].pop();},getContextKey_(context){return[context.type,context.snapshot.scope,context.snapshot.idRef].join('\x00');},getSnapshotKey_(scopedId){return[scopedId.scope,scopedId.idRef].join('\x00');},get activeContexts(){if(this.cachedEntryForActiveContexts_===undefined){let key=[];for(const context of this.activeContexts_){key.push(this.getContextKey_(context));}
5517key.sort();key=key.join('\x00');if(key in this.contextSetCache_){this.cachedEntryForActiveContexts_=this.contextSetCache_[key];}else{this.activeContexts_.sort(function(a,b){const keyA=this.getContextKey_(a);const keyB=this.getContextKey_(b);if(keyA<keyB){return-1;}
5518if(keyA>keyB){return 1;}
5519return 0;}.bind(this));this.contextSetCache_[key]=Object.freeze(this.activeContexts_);this.cachedEntryForActiveContexts_=this.contextSetCache_[key];}}
5520return this.cachedEntryForActiveContexts_;},invalidateContextCacheForSnapshot(scopedId){const snapshotKey=this.getSnapshotKey_(scopedId);if(!(snapshotKey in this.seenSnapshots_))return;this.contextCache_={};this.contextSetCache_={};this.cachedEntryForActiveContexts_=undefined;this.activeContexts_=this.activeContexts_.map(function(context){if(context.snapshot.scope!==scopedId.scope||context.snapshot.idRef!==scopedId.id){return context;}
5521return{type:context.type,snapshot:{scope:context.snapshot.scope,idRef:context.snapshot.idRef}};});this.seenSnapshots_={};},};return{ContextProcessor,};});'use strict';tr.exportTo('tr.model',function(){function Annotation(){this.guid_=tr.b.GUID.allocateSimple();this.view_=undefined;}
5522Annotation.fromDictIfPossible=function(args){if(args.typeName===undefined){throw new Error('Missing typeName argument');}
5523const typeInfo=Annotation.findTypeInfoMatching(function(typeInfo){return typeInfo.metadata.typeName===args.typeName;});if(typeInfo===undefined)return undefined;return typeInfo.constructor.fromDict(args);};Annotation.fromDict=function(){throw new Error('Not implemented');};Annotation.prototype={get guid(){return this.guid_;},onRemove(){},toDict(){throw new Error('Not implemented');},getOrCreateView(viewport){if(!this.view_){this.view_=this.createView_(viewport);}
5524return this.view_;},createView_(){throw new Error('Not implemented');}};const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(Annotation,options);Annotation.addEventListener('will-register',function(e){if(!e.typeInfo.constructor.hasOwnProperty('fromDict')){throw new Error('Must have fromDict method');}
5525if(!e.typeInfo.metadata.typeName){throw new Error('Registered Annotations must provide typeName');}});return{Annotation,};});'use strict';tr.exportTo('tr.model',function(){function YComponent(stableId,yPercentOffset){this.stableId=stableId;this.yPercentOffset=yPercentOffset;}
5526YComponent.prototype={toDict(){return{stableId:this.stableId,yPercentOffset:this.yPercentOffset};}};function Location(xWorld,yComponents){this.xWorld_=xWorld;this.yComponents_=yComponents;}
5527Location.fromViewCoordinates=function(viewport,viewX,viewY){const dt=viewport.currentDisplayTransform;const xWorld=dt.xViewToWorld(viewX);const yComponents=[];let elem=document.elementFromPoint(viewX+viewport.modelTrackContainer.canvas.offsetLeft,viewY+viewport.modelTrackContainer.canvas.offsetTop);while(elem instanceof tr.ui.tracks.Track){if(elem.eventContainer){const boundRect=elem.getBoundingClientRect();const yPercentOffset=(viewY-boundRect.top)/boundRect.height;yComponents.push(new YComponent(elem.eventContainer.stableId,yPercentOffset));}
5528elem=elem.parentElement;}
5529if(yComponents.length===0)return;return new Location(xWorld,yComponents);};Location.fromStableIdAndTimestamp=function(viewport,stableId,ts){const xWorld=ts;const yComponents=[];const containerToTrack=viewport.containerToTrackMap;let elem=containerToTrack.getTrackByStableId(stableId);if(!elem)return;const firstY=elem.getBoundingClientRect().top;while(elem instanceof tr.ui.tracks.Track){if(elem.eventContainer){const boundRect=elem.getBoundingClientRect();const yPercentOffset=(firstY-boundRect.top)/boundRect.height;yComponents.push(new YComponent(elem.eventContainer.stableId,yPercentOffset));}
5530elem=elem.parentElement;}
5531if(yComponents.length===0)return;return new Location(xWorld,yComponents);};Location.prototype={get xWorld(){return this.xWorld_;},getContainingTrack(viewport){const containerToTrack=viewport.containerToTrackMap;for(const i in this.yComponents_){const yComponent=this.yComponents_[i];const track=containerToTrack.getTrackByStableId(yComponent.stableId);if(track!==undefined)return track;}},toViewCoordinates(viewport){const dt=viewport.currentDisplayTransform;const containerToTrack=viewport.containerToTrackMap;const viewX=dt.xWorldToView(this.xWorld_);let viewY=-1;for(const index in this.yComponents_){const yComponent=this.yComponents_[index];const track=containerToTrack.getTrackByStableId(yComponent.stableId);if(track!==undefined){const boundRect=track.getBoundingClientRect();viewY=yComponent.yPercentOffset*boundRect.height+boundRect.top;break;}}
5532return{viewX,viewY};},toDict(){return{xWorld:this.xWorld_,yComponents:this.yComponents_};}};return{Location,};});'use strict';tr.exportTo('tr.ui.annotations',function(){function AnnotationView(viewport,annotation){}
5533AnnotationView.prototype={draw(ctx){throw new Error('Not implemented');}};return{AnnotationView,};});'use strict';tr.exportTo('tr.ui.annotations',function(){function RectAnnotationView(viewport,annotation){this.viewport_=viewport;this.annotation_=annotation;}
5534RectAnnotationView.prototype={__proto__:tr.ui.annotations.AnnotationView.prototype,draw(ctx){const dt=this.viewport_.currentDisplayTransform;const startCoords=this.annotation_.startLocation.toViewCoordinates(this.viewport_);const endCoords=this.annotation_.endLocation.toViewCoordinates(this.viewport_);let startY=startCoords.viewY-ctx.canvas.getBoundingClientRect().top;const sizeY=endCoords.viewY-startCoords.viewY;if(startY+sizeY<0){startY=sizeY;}else if(startY<0){startY=0;}
5535ctx.fillStyle=this.annotation_.fillStyle;ctx.fillRect(startCoords.viewX,startY,endCoords.viewX-startCoords.viewX,sizeY);}};return{RectAnnotationView,};});'use strict';tr.exportTo('tr.model',function(){function RectAnnotation(start,end){tr.model.Annotation.apply(this,arguments);this.startLocation_=start;this.endLocation_=end;this.fillStyle='rgba(255, 180, 0, 0.3)';}
5536RectAnnotation.fromDict=function(dict){const args=dict.args;const startLoc=new tr.model.Location(args.start.xWorld,args.start.yComponents);const endLoc=new tr.model.Location(args.end.xWorld,args.end.yComponents);return new tr.model.RectAnnotation(startLoc,endLoc);};RectAnnotation.prototype={__proto__:tr.model.Annotation.prototype,get startLocation(){return this.startLocation_;},get endLocation(){return this.endLocation_;},toDict(){return{typeName:'rect',args:{start:this.startLocation.toDict(),end:this.endLocation.toDict()}};},createView_(viewport){return new tr.ui.annotations.RectAnnotationView(viewport,this);}};tr.model.Annotation.register(RectAnnotation,{typeName:'rect'});return{RectAnnotation,};});'use strict';tr.exportTo('tr.ui.annotations',function(){function CommentBoxAnnotationView(viewport,annotation){this.viewport_=viewport;this.annotation_=annotation;this.textArea_=undefined;this.styleWidth=250;this.styleHeight=50;this.fontSize=10;this.rightOffset=50;this.topOffset=25;}
5537CommentBoxAnnotationView.prototype={__proto__:tr.ui.annotations.AnnotationView.prototype,removeTextArea(){Polymer.dom(Polymer.dom(this.textArea_).parentNode).removeChild(this.textArea_);},draw(ctx){const coords=this.annotation_.location.toViewCoordinates(this.viewport_);if(coords.viewX<0){if(this.textArea_){this.textArea_.style.visibility='hidden';}
5538return;}
5539if(!this.textArea_){this.textArea_=document.createElement('textarea');this.textArea_.style.position='absolute';this.textArea_.readOnly=true;this.textArea_.value=this.annotation_.text;this.textArea_.style.zIndex=1;Polymer.dom(Polymer.dom(ctx.canvas).parentNode).appendChild(this.textArea_);}
5540this.textArea_.style.width=this.styleWidth+'px';this.textArea_.style.height=this.styleHeight+'px';this.textArea_.style.fontSize=this.fontSize+'px';this.textArea_.style.visibility='visible';this.textArea_.style.left=coords.viewX+ctx.canvas.getBoundingClientRect().left+
5541this.rightOffset+'px';this.textArea_.style.top=coords.viewY-ctx.canvas.getBoundingClientRect().top-
5542this.topOffset+'px';ctx.strokeStyle='rgb(0, 0, 0)';ctx.lineWidth=2;ctx.beginPath();tr.ui.b.drawLine(ctx,coords.viewX,coords.viewY-ctx.canvas.getBoundingClientRect().top,coords.viewX+this.rightOffset,coords.viewY-this.topOffset-
5543ctx.canvas.getBoundingClientRect().top);ctx.stroke();}};return{CommentBoxAnnotationView,};});'use strict';tr.exportTo('tr.model',function(){function CommentBoxAnnotation(location,text){tr.model.Annotation.apply(this,arguments);this.location=location;this.text=text;}
5544CommentBoxAnnotation.fromDict=function(dict){const args=dict.args;const location=new tr.model.Location(args.location.xWorld,args.location.yComponents);return new tr.model.CommentBoxAnnotation(location,args.text);};CommentBoxAnnotation.prototype={__proto__:tr.model.Annotation.prototype,onRemove(){this.view_.removeTextArea();},toDict(){return{typeName:'comment_box',args:{text:this.text,location:this.location.toDict()}};},createView_(viewport){return new tr.ui.annotations.CommentBoxAnnotationView(viewport,this);}};tr.model.Annotation.register(CommentBoxAnnotation,{typeName:'comment_box'});return{CommentBoxAnnotation,};});'use strict';tr.exportTo('tr.model',function(){function ScopedId(scope,id,pid){if(scope===undefined){throw new Error('Scope should be defined. Use \''+
5545tr.model.OBJECT_DEFAULT_SCOPE+'\' as the default scope.');}
5546this.scope=scope;this.id=id;this.pid=pid;}
5547ScopedId.prototype={toString(){const pidStr=this.pid===undefined?'':'pid: '+this.pid+', ';return'{'+pidStr+'scope: '+this.scope+', id: '+this.id+'}';},toStringWithDelimiter(delim){return(this.pid===undefined?'':this.pid)+delim+
5548this.scope+delim+this.id;}};return{ScopedId,};});'use strict';tr.exportTo('tr.ui.annotations',function(){function XMarkerAnnotationView(viewport,annotation){this.viewport_=viewport;this.annotation_=annotation;}
5549XMarkerAnnotationView.prototype={__proto__:tr.ui.annotations.AnnotationView.prototype,draw(ctx){const dt=this.viewport_.currentDisplayTransform;const viewX=dt.xWorldToView(this.annotation_.timestamp);ctx.beginPath();tr.ui.b.drawLine(ctx,viewX,0,viewX,ctx.canvas.height);ctx.strokeStyle=this.annotation_.strokeStyle;ctx.stroke();}};return{XMarkerAnnotationView,};});'use strict';tr.exportTo('tr.model',function(){function XMarkerAnnotation(timestamp){tr.model.Annotation.apply(this,arguments);this.timestamp=timestamp;this.strokeStyle='rgba(0, 0, 255, 0.5)';}
5550XMarkerAnnotation.fromDict=function(dict){return new XMarkerAnnotation(dict.args.timestamp);};XMarkerAnnotation.prototype={__proto__:tr.model.Annotation.prototype,toDict(){return{typeName:'xmarker',args:{timestamp:this.timestamp}};},createView_(viewport){return new tr.ui.annotations.XMarkerAnnotationView(viewport,this);}};tr.model.Annotation.register(XMarkerAnnotation,{typeName:'xmarker'});return{XMarkerAnnotation,};});'use strict';tr.exportTo('tr.e.importer',function(){const Base64=tr.b.Base64;const deepCopy=tr.b.deepCopy;const ColorScheme=tr.b.ColorScheme;const HeapDumpTraceEventImporter=tr.e.importer.HeapDumpTraceEventImporter;const LegacyHeapDumpTraceEventImporter=tr.e.importer.LegacyHeapDumpTraceEventImporter;const StreamingEventExpander=tr.e.importer.StreamingEventExpander;const ProfilingDictionaryReader=tr.e.importer.ProfilingDictionaryReader;function getEventColor(event,opt_customName){if(event.cname){return ColorScheme.getColorIdForReservedName(event.cname);}else if(opt_customName||event.name){return ColorScheme.getColorIdForGeneralPurposeString(opt_customName||event.name);}}
5551function isLegacyChromeClockSyncEvent(event){return event.name!==undefined&&event.name.startsWith(LEGACY_CHROME_CLOCK_SYNC_EVENT_NAME_PREFIX)&&((event.ph==='S')||(event.ph==='F'));}
5552const PRODUCER='producer';const CONSUMER='consumer';const STEP='step';const BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;const LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;const DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;const MEMORY_DUMP_LEVEL_OF_DETAIL_ORDER=[undefined,BACKGROUND,LIGHT,DETAILED];const GLOBAL_MEMORY_ALLOCATOR_DUMP_PREFIX='global/';const LEGACY_CHROME_CLOCK_SYNC_EVENT_NAME_PREFIX='ClockSyncEvent.';const BYTE_STAT_NAME_MAP={'pc':'privateCleanResident','pd':'privateDirtyResident','sc':'sharedCleanResident','sd':'sharedDirtyResident','pss':'proportionalResident','sw':'swapped'};const WEAK_MEMORY_ALLOCATOR_DUMP_FLAG=1<<0;const OBJECT_TYPE_NAME_PATTERNS=[{prefix:'const char *WOW::getStringWithTypeName() [T = ',suffix:']'},{prefix:'const char* WOW::getStringWithTypeName() [with T = ',suffix:']'},{prefix:'const char *__cdecl WOW::getStringWithTypeName<',suffix:'>(void)'}];const SUBTRACE_FIELDS=new Set(['powerTraceAsString','systemTraceEvents',]);const NON_METADATA_FIELDS=new Set(['displayTimeUnit','samples','stackFrames','traceAnnotations','traceEvents',...SUBTRACE_FIELDS]);function TraceEventImporter(model,eventData){this.hasEvents_=undefined;this.importPriority=1;this.model_=model;this.events_=undefined;this.sampleEvents_=undefined;this.stackFrameEvents_=undefined;this.stackFrameTree_=new tr.model.ProfileTree();this.subtraces_=[];this.eventsWereFromString_=false;this.softwareMeasuredCpuCount_=undefined;this.allAsyncEvents_=[];this.allFlowEvents_=[];this.allObjectEvents_=[];this.contextProcessorPerThread={};this.traceEventSampleStackFramesByName_={};this.v8ProcessCodeMaps_={};this.v8ProcessRootStackFrame_={};this.v8SamplingData_=[];this.profileTrees_=new Map();this.profileInfo_=new Map();this.legacyChromeClockSyncStartEvent_=undefined;this.legacyChromeClockSyncFinishEvent_=undefined;this.allMemoryDumpEvents_={};this.heapProfileExpander=new ProfilingDictionaryReader();this.objectTypeNameMap_={};this.clockDomainId_=tr.model.ClockDomainId.UNKNOWN_CHROME_LEGACY;this.toModelTime_=undefined;if(typeof(eventData)==='string'||eventData instanceof String){eventData=eventData.trim();if(eventData[0]==='['){eventData=eventData.replace(/\s*,\s*$/,'');if(eventData[eventData.length-1]!==']'){eventData=eventData+']';}}
5553this.events_=JSON.parse(eventData);this.eventsWereFromString_=true;}else{this.events_=eventData;}
5554if(this.events_.traceEvents){const container=this.events_;this.events_=this.events_.traceEvents;for(const subtraceField of SUBTRACE_FIELDS){if(container[subtraceField]){this.storeSubtrace_(container[subtraceField]);}}
5555this.storeSamples_(container.samples);this.storeStackFrames_(container.stackFrames);this.storeDisplayTimeUnit_(container.displayTimeUnit);this.storeTraceAnnotations_(container.traceAnnotations);this.storeMetadata_(container);}else if(this.events_ instanceof tr.b.TraceStream){const parser=oboe().node('{cat ph}',function(e){return oboe.drop;}).node('!.powerTraceAsString',this.storeSubtrace_.bind(this)).node('!.systemTraceEvents',this.storeSubtrace_.bind(this)).node('!.samples',this.storeSamples_.bind(this)).node('!.stackFrames',this.storeStackFrames_.bind(this)).node('!.displayTimeUnit',this.storeDisplayTimeUnit_.bind(this)).node('!.traceAnnotations',this.storeTraceAnnotations_.bind(this)).done(this.storeMetadata_.bind(this));this.events_.rewind();while(this.events_.hasData){parser.write(this.events_.readNumBytes());}
5556parser.finish();}}
5557TraceEventImporter.canImport=function(eventData){if(eventData instanceof tr.b.TraceStream){if(eventData.isBinary)return false;eventData=eventData.header;}
5558if(typeof(eventData)==='string'||eventData instanceof String){eventData=eventData.trim();return eventData[0]==='{'||eventData[0]==='[';}
5559if(eventData instanceof Array&&eventData.length&&eventData[0].ph){return true;}
5560if(eventData.traceEvents){if(eventData.traceEvents instanceof Array){if(eventData.traceEvents.length&&eventData.traceEvents[0].ph){return true;}
5561if(eventData.samples&&eventData.samples.length&&eventData.stackFrames!==undefined){return true;}}}
5562return false;};TraceEventImporter.scopedIdForEvent_=function(event){const scope=event.scope||tr.model.OBJECT_DEFAULT_SCOPE;let pid=undefined;if(event.id!==undefined){if(event.id2!==undefined){throw new Error('Event has both id and id2');}
5563pid=tr.model.LOCAL_ID_PHASES.has(event.ph)?event.pid:undefined;return new tr.model.ScopedId(scope,event.id,pid);}else if(event.id2!==undefined){if(event.id2.global!==undefined){return new tr.model.ScopedId(scope,event.id2.global);}else if(event.id2.local!==undefined){return new tr.model.ScopedId(scope,event.id2.local,event.pid);}
5564throw new Error('Event that uses id2 must have either a global or local ID');}
5565return undefined;};TraceEventImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'TraceEventImporter';},extractSubtraces(){const subtraces=this.subtraces_;this.subtraces_=[];return subtraces;},deepCopyIfNeeded_(obj){if(obj===undefined)obj={};if(this.eventsWereFromString_)return obj;return deepCopy(obj);},deepCopyAlways_(obj){if(obj===undefined)obj={};return deepCopy(obj);},processAsyncEvent(event){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);this.allAsyncEvents_.push({sequenceNumber:this.allAsyncEvents_.length,event,thread});},processFlowEvent(event,opt_slice){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);this.allFlowEvents_.push({refGuid:tr.b.GUID.getLastSimpleGuid(),sequenceNumber:this.allFlowEvents_.length,event,slice:opt_slice,thread});},processCounterEvent(event){let ctrName;if(event.id!==undefined){ctrName=event.name+'['+event.id+']';}else{ctrName=event.name;}
5566const ctr=this.model_.getOrCreateProcess(event.pid).getOrCreateCounter(event.cat,ctrName);const reservedColorId=event.cname?getEventColor(event):undefined;if(ctr.numSeries===0){for(const seriesName in event.args){const colorId=reservedColorId||getEventColor(event,ctr.name+'.'+seriesName);ctr.addSeries(new tr.model.CounterSeries(seriesName,colorId));}
5567if(ctr.numSeries===0){this.model_.importWarning({type:'counter_parse_error',message:'Expected counter '+event.name+' to have at least one argument to use as a value.'});delete ctr.parent.counters[ctr.name];return;}}
5568const ts=this.toModelTimeFromUs_(event.ts);ctr.series.forEach(function(series){const val=event.args[series.name]?event.args[series.name]:0;series.addCounterSample(ts,val);});},processObjectEvent(event){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);this.allObjectEvents_.push({sequenceNumber:this.allObjectEvents_.length,event,thread});if(thread.guid in this.contextProcessorPerThread){const processor=this.contextProcessorPerThread[thread.guid];const scopedId=TraceEventImporter.scopedIdForEvent_(event);if(event.ph==='D'){processor.destroyContext(scopedId);}
5569processor.invalidateContextCacheForSnapshot(scopedId);}},processContextEvent(event){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);if(!(thread.guid in this.contextProcessorPerThread)){this.contextProcessorPerThread[thread.guid]=new tr.importer.ContextProcessor(this.model_);}
5570const scopedId=TraceEventImporter.scopedIdForEvent_(event);const contextType=event.name;const processor=this.contextProcessorPerThread[thread.guid];if(event.ph==='('){processor.enterContext(contextType,scopedId);}else if(event.ph===')'){processor.leaveContext(contextType,scopedId);}else{this.model_.importWarning({type:'unknown_context_phase',message:'Unknown context event phase: '+event.ph+'.'});}},setContextsFromThread_(thread,slice){if(thread.guid in this.contextProcessorPerThread){slice.contexts=this.contextProcessorPerThread[thread.guid].activeContexts;}},processDurationEvent(event){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);const ts=this.toModelTimeFromUs_(event.ts);if(!thread.sliceGroup.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'duration_parse_error',message:'Timestamps are moving backward.'});return;}
5571if(event.ph==='B'){const slice=thread.sliceGroup.beginSlice(event.cat,event.name,this.toModelTimeFromUs_(event.ts),this.deepCopyIfNeeded_(event.args),this.toModelTimeFromUs_(event.tts),event.argsStripped,getEventColor(event));slice.startStackFrame=this.getStackFrameForEvent_(event);this.setContextsFromThread_(thread,slice);}else if(event.ph==='I'||event.ph==='i'||event.ph==='R'){if(event.s!==undefined&&event.s!=='t'){throw new Error('This should never happen');}
5572thread.sliceGroup.beginSlice(event.cat,event.name,this.toModelTimeFromUs_(event.ts),this.deepCopyIfNeeded_(event.args),this.toModelTimeFromUs_(event.tts),event.argsStripped,getEventColor(event));const slice=thread.sliceGroup.endSlice(this.toModelTimeFromUs_(event.ts),this.toModelTimeFromUs_(event.tts));slice.startStackFrame=this.getStackFrameForEvent_(event);slice.endStackFrame=undefined;}else{if(!thread.sliceGroup.openSliceCount){this.model_.importWarning({type:'duration_parse_error',message:'E phase event without a matching B phase event.'});return;}
5573const slice=thread.sliceGroup.endSlice(this.toModelTimeFromUs_(event.ts),this.toModelTimeFromUs_(event.tts),getEventColor(event));if(event.name&&slice.title!==event.name){this.model_.importWarning({type:'title_match_error',message:'Titles do not match. Title is '+
5574slice.title+' in openSlice, and is '+
5575event.name+' in endSlice'});}
5576slice.endStackFrame=this.getStackFrameForEvent_(event);this.mergeArgsInto_(slice.args,event.args,slice.title);}},mergeArgsInto_(dstArgs,srcArgs,eventName){for(const arg in srcArgs){if(dstArgs[arg]!==undefined){this.model_.importWarning({type:'arg_merge_error',message:'Different phases of '+eventName+' provided values for argument '+arg+'.'+' The last provided value will be used.'});}
5577dstArgs[arg]=this.deepCopyIfNeeded_(srcArgs[arg]);}},processCompleteEvent(event){if(event.cat!==undefined&&event.cat.indexOf('trace_event_overhead')>-1){return undefined;}
5578const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);if(event.flow_out){if(event.flow_in){event.flowPhase=STEP;}else{event.flowPhase=PRODUCER;}}else if(event.flow_in){event.flowPhase=CONSUMER;}
5579const slice=thread.sliceGroup.pushCompleteSlice(event.cat,event.name,this.toModelTimeFromUs_(event.ts),this.maybeToModelTimeFromUs_(event.dur),this.maybeToModelTimeFromUs_(event.tts),this.maybeToModelTimeFromUs_(event.tdur),this.deepCopyIfNeeded_(event.args),event.argsStripped,getEventColor(event),event.bind_id);slice.startStackFrame=this.getStackFrameForEvent_(event);slice.endStackFrame=this.getStackFrameForEvent_(event,true);this.setContextsFromThread_(thread,slice);return slice;},processJitCodeEvent(event){if(this.v8ProcessCodeMaps_[event.pid]===undefined){this.v8ProcessCodeMaps_[event.pid]=new tr.e.importer.TraceCodeMap();}
5580const map=this.v8ProcessCodeMaps_[event.pid];const data=event.args.data;if(event.name==='JitCodeMoved'){map.moveEntry(data.code_start,data.new_code_start,data.code_len);}else{map.addEntry(data.code_start,data.code_len,data.name,data.script_id);}},processMetadataEvent(event){if(event.name==='JitCodeAdded'||event.name==='JitCodeMoved'){this.v8SamplingData_.push(event);return;}
5581if(event.argsStripped)return;if(event.name==='process_name'){const process=this.model_.getOrCreateProcess(event.pid);process.name=event.args.name;}else if(event.name==='process_labels'){const process=this.model_.getOrCreateProcess(event.pid);const labels=event.args.labels.split(',');for(let i=0;i<labels.length;i++){process.addLabelIfNeeded(labels[i]);}}else if(event.name==='process_uptime_seconds'){const process=this.model_.getOrCreateProcess(event.pid);process.uptime_seconds=event.args.uptime;}else if(event.name==='process_sort_index'){const process=this.model_.getOrCreateProcess(event.pid);process.sortIndex=event.args.sort_index;}else if(event.name==='thread_name'){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);thread.name=event.args.name;}else if(event.name==='thread_sort_index'){const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);thread.sortIndex=event.args.sort_index;}else if(event.name==='num_cpus'){let n=event.args.number;if(this.softwareMeasuredCpuCount_!==undefined){n=Math.max(n,this.softwareMeasuredCpuCount_);}
5582this.softwareMeasuredCpuCount_=n;}else if(event.name==='stackFrames'){const stackFrames=event.args.stackFrames;if(stackFrames===undefined){this.model_.importWarning({type:'metadata_parse_error',message:'No stack frames found in a \''+event.name+'\' metadata event'});}else{this.importStackFrames_(stackFrames,'p'+event.pid+':');}}else if(event.name==='typeNames'){const objectTypeNameMap=event.args.typeNames;if(objectTypeNameMap===undefined){this.model_.importWarning({type:'metadata_parse_error',message:'No mapping from object type IDs to names found in a \''+
5583event.name+'\' metadata event'});}else{this.importObjectTypeNameMap_(objectTypeNameMap,event.pid);}}else if(event.name==='TraceConfig'){this.model_.metadata.push({name:'TraceConfig',value:event.args.value});}else{this.model_.importWarning({type:'metadata_parse_error',message:'Unrecognized metadata name: '+event.name});}},processInstantEvent(event){if(event.name==='JitCodeAdded'||event.name==='JitCodeMoved'){this.v8SamplingData_.push(event);return;}
5584if(event.s==='t'||event.s===undefined){this.processDurationEvent(event);return;}
5585let constructor;switch(event.s){case'g':constructor=tr.model.GlobalInstantEvent;break;case'p':constructor=tr.model.ProcessInstantEvent;break;default:this.model_.importWarning({type:'instant_parse_error',message:'I phase event with unknown "s" field value.'});return;}
5586const instantEvent=new constructor(event.cat,event.name,getEventColor(event),this.toModelTimeFromUs_(event.ts),this.deepCopyIfNeeded_(event.args));switch(instantEvent.type){case tr.model.InstantEventType.GLOBAL:this.model_.instantEvents.push(instantEvent);break;case tr.model.InstantEventType.PROCESS:{const process=this.model_.getOrCreateProcess(event.pid);process.instantEvents.push(instantEvent);break;}
5587default:throw new Error('Unknown instant event type: '+event.s);}},getOrCreateProfileTree_(sampleType,id){if(!this.profileTrees_.has(sampleType)){this.profileTrees_.set(sampleType,new Map());}
5588const profileTreeMap=this.profileTrees_.get(sampleType);if(profileTreeMap.has(id)){return profileTreeMap.get(id);}
5589const profileTree=new tr.model.ProfileTree();profileTreeMap.set(id,profileTree);const info=this.profileInfo_.get(id);if(info!==undefined){profileTree.startTime=info.startTime;profileTree.pid=info.pid;profileTree.tid=info.tid;}
5590return profileTree;},processSample(event){if(event.args===undefined||event.args.data===undefined){return;}
5591if(event.id===undefined){throw new Error('No event ID in sample');}
5592const data=event.args.data;if(data.startTime!==undefined){this.profileInfo_.set(event.id,{startTime:data.startTime,pid:event.pid,tid:event.tid});}
5593const timeDeltas=data.timeDeltas;for(const sampleType in data){if(sampleType==='timeDeltas'||sampleType==='startTime'){continue;}
5594if(data[sampleType].samples&&timeDeltas&&data[sampleType].samples.length!==timeDeltas.length){throw new Error('samples and timeDeltas array should have same length');}
5595const profileTree=this.getOrCreateProfileTree_(sampleType,event.id);const nodes=data[sampleType].nodes;const samples=data[sampleType].samples;if(nodes!==undefined){for(const node of nodes){const ProfileNodeType=tr.model.ProfileNode.subTypes.getConstructor(undefined,sampleType);const profileNode=ProfileNodeType.constructFromObject(profileTree,node);if(profileNode===undefined){continue;}
5596profileTree.add(profileNode);}}
5597if(samples!==undefined){const thread=this.model_.getOrCreateProcess(profileTree.pid).getOrCreateThread(profileTree.tid);for(let i=0,len=samples.length;i<len;++i){const node=profileTree.getNode(samples[i]);profileTree.endTime+=timeDeltas[i];if(node===undefined)continue;const start=this.toModelTimeFromUs_(profileTree.endTime);this.model_.samples.push(new tr.model.Sample(start,node.sampleTitle,node,thread));}}}},processLegacyV8Sample(event){const data=event.args.data;const sampleType='legacySample';const ProfileNodeType=tr.model.ProfileNode.subTypes.getConstructor(undefined,sampleType);if(data.vm_state==='js'&&!data.stack.length)return;const profileTree=this.getOrCreateProfileTree_(sampleType,event.pid);if(profileTree.getNode(-1)===undefined){profileTree.add(new ProfileNodeType(-1,{url:'',scriptId:-1,functionName:'unknown'},undefined));}
5598let node=undefined;if(data.stack.length>0&&this.v8ProcessCodeMaps_[event.pid]){const map=this.v8ProcessCodeMaps_[event.pid];data.stack.reverse();let parentNode=undefined;for(let i=0;i<data.stack.length;i++){const entry=map.lookupEntry(data.stack[i]);if(entry===undefined){node=profileTree.getNode(-1);}else{node=profileTree.getNode(entry.id);if(node===undefined){const sourceInfo=entry.sourceInfo;node=new ProfileNodeType(entry.id,{functionName:entry.name,url:entry.sourceInfo.file,lineNumber:sourceInfo.line!==-1?sourceInfo.line:undefined,columnNumber:sourceInfo.column!==-1?sourceInfo.column:undefined,scriptid:entry.sourceInfo.scriptId},parentNode);profileTree.add(node);}}
5599parentNode=node;}}else{node=profileTree.getNode(data.vm_state);if(node===undefined){node=new ProfileNodeType(data.vm_state,{url:'',functionName:data.vm_state},undefined);profileTree.add(node);}}
5600const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);this.model_.samples.push(new tr.model.Sample(this.toModelTimeFromUs_(event.ts),node.sampleTitle,node,thread));},processTraceSampleEvent(event){if(event.name==='V8Sample'||event.name.startsWith('Profile')){this.v8SamplingData_.push(event);return;}
5601let node=this.stackFrameTree_.getNode(event.name);if(node===undefined&&event.sf!==undefined){node=this.stackFrameTree_.getNode('g'+event.sf);}
5602if(node===undefined){let id=event.name;if(event.sf){id='g'+event.sf;}
5603const ProfileNodeType=tr.model.ProfileNode.subTypes.getConstructor(undefined,'legacySample');node=this.stackFrameTree_.add(new ProfileNodeType(id,{functionName:event.name},undefined));}
5604const thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);const sample=new tr.model.Sample(this.toModelTimeFromUs_(event.ts),'Trace Event Sample',node,thread,undefined,1,this.deepCopyIfNeeded_(event.args));this.setContextsFromThread_(thread,sample);this.model_.samples.push(sample);},processMemoryDumpEvent(event){if(event.ph!=='v'){throw new Error('Invalid memory dump event phase "'+event.ph+'".');}
5605const dumpId=event.id;if(dumpId===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory dump event (phase \''+event.ph+'\') without a dump ID.'});return;}
5606const pid=event.pid;if(pid===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory dump event (phase\''+event.ph+'\', dump ID \''+
5607dumpId+'\') without a PID.'});return;}
5608const allEvents=this.allMemoryDumpEvents_;let dumpIdEvents=allEvents[dumpId];if(dumpIdEvents===undefined){allEvents[dumpId]=dumpIdEvents={};}
5609let processEvents=dumpIdEvents[pid];if(processEvents===undefined){dumpIdEvents[pid]=processEvents=[];}
5610processEvents.push(event);},processClockSyncEvent(event){if(event.ph!=='c'){throw new Error('Invalid clock sync event phase "'+event.ph+'".');}
5611const syncId=event.args.sync_id;if(syncId===undefined){this.model_.importWarning({type:'clock_sync_parse_error',message:'Clock sync at time '+event.ts+' without an ID.'});return;}
5612if(event.args&&event.args.issue_ts!==undefined){this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,syncId,tr.b.Unit.timestampFromUs(event.args.issue_ts),tr.b.Unit.timestampFromUs(event.ts));}else{this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,syncId,tr.b.Unit.timestampFromUs(event.ts));}},processLegacyChromeClockSyncEvent(event){if(event.ph==='S'){this.legacyChromeClockSyncStartEvent_=event;}else if(event.ph==='F'){this.legacyChromeClockSyncFinishEvent_=event;}
5613if(this.legacyChromeClockSyncStartEvent_===undefined||this.legacyChromeClockSyncFinishEvent_===undefined){return;}
5614const startSyncId=this.legacyChromeClockSyncStartEvent_.name.substring(LEGACY_CHROME_CLOCK_SYNC_EVENT_NAME_PREFIX.length);const finishSyncId=this.legacyChromeClockSyncFinishEvent_.name.substring(LEGACY_CHROME_CLOCK_SYNC_EVENT_NAME_PREFIX.length);if(startSyncId!==finishSyncId){throw new Error('Inconsistent clock sync ID of legacy Chrome clock sync events');}
5615this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,startSyncId,tr.b.Unit.timestampFromUs(this.legacyChromeClockSyncStartEvent_.ts),tr.b.Unit.timestampFromUs(this.legacyChromeClockSyncFinishEvent_.ts));},processV8Events(){this.v8SamplingData_.sort(function(a,b){if(a.ts!==b.ts)return a.ts-b.ts;if(a.ph==='M'||a.ph==='I'){return-1;}else if(b.ph==='M'||b.ph==='I'){return 1;}
5616return 0;});const length=this.v8SamplingData_.length;for(let i=0;i<length;++i){const event=this.v8SamplingData_[i];if(event.ph==='M'||event.ph==='I'){this.processJitCodeEvent(event);}else if(event.ph==='P'){if(event.name.startsWith('Profile')){this.processSample(event);}else{this.processLegacyV8Sample(event);}}}},importClockSyncMarkers(){if(this.events_ instanceof tr.b.TraceStream){const parser=oboe().node('{cat ph}',this.importClockSyncMarker_.bind(this));this.events_.rewind();while(this.events_.hasData){parser.write(this.events_.readNumBytes());}
5617parser.finish();}else{for(let i=0;i<this.events_.length;i++){this.importClockSyncMarker_(this.events_[i]);}}},importClockSyncMarker_(event){const isLegacyChromeClockSync=isLegacyChromeClockSyncEvent(event);if(event.ph!=='c'&&!isLegacyChromeClockSync)return;const eventSizeInBytes=this.model_.importOptions.trackDetailedModelStats?JSON.stringify(event).length:undefined;this.model_.stats.willProcessBasicTraceEvent('clock_sync',event.cat,event.name,event.ts,eventSizeInBytes);if(isLegacyChromeClockSync){this.processLegacyChromeClockSyncEvent(event);}else{this.processClockSyncEvent(event);}},importEvents(){this.hasEvents_=false;if(this.stackFrameEvents_){this.importStackFrames_(this.stackFrameEvents_,'g');}
5618if(this.traceAnnotations_)this.importAnnotations_();if(this.events_ instanceof tr.b.TraceStream){const parser=oboe().node('{cat ph}',this.processEvent_.bind(this));this.events_.rewind();while(this.events_.hasData){parser.write(this.events_.readNumBytes());}
5619parser.finish();}else{for(let eI=0;eI<this.events_.length;eI++){this.processEvent_(this.events_[eI]);}}
5620this.createAsyncSlices_();this.processV8Events();for(const frame of Object.values(this.v8ProcessRootStackFrame_)){frame.removeAllChildren();}},storeSubtrace_(subtrace){this.subtraces_.push(subtrace);return oboe.drop;},storeSamples_(samples){this.sampleEvents_=samples;return oboe.drop;},storeStackFrames_(stackFrames){this.stackFrameEvents_=stackFrames;return oboe.drop;},storeDisplayTimeUnit_(unitName){if(!unitName)return;const unit=tr.b.TimeDisplayModes[unitName];if(unit===undefined){throw new Error('Unit '+unitName+' is not supported.');}
5621this.model_.intrinsicTimeUnit=unit;return oboe.drop;},storeTraceAnnotations_(traceAnnotations){this.traceAnnotations_=traceAnnotations;return oboe.drop;},storeMetadata_(container){for(const fieldName of Object.keys(container)){if(NON_METADATA_FIELDS.has(fieldName))continue;this.model_.metadata.push({name:fieldName,value:container[fieldName]});if(fieldName!=='metadata')continue;const metadata=container[fieldName];if(metadata['highres-ticks']){this.model_.isTimeHighResolution=metadata['highres-ticks'];}
5622if(metadata['clock-domain']){this.clockDomainId_=metadata['clock-domain'];}}
5623return oboe.drop;},processEvent_(event){this.hasEvents_=true;const importOptions=this.model_.importOptions;const trackDetailedModelStats=importOptions.trackDetailedModelStats;const modelStats=this.model_.stats;if(event.args==='__stripped__'){event.argsStripped=true;event.args=undefined;}
5624let eventSizeInBytes=undefined;if(trackDetailedModelStats){eventSizeInBytes=JSON.stringify(event).length;}
5625switch(event.ph){case'B':case'E':modelStats.willProcessBasicTraceEvent('begin_end (non-compact)',event.cat,event.name,event.ts,eventSizeInBytes);this.processDurationEvent(event);break;case'X':{modelStats.willProcessBasicTraceEvent('begin_end (compact)',event.cat,event.name,event.ts,eventSizeInBytes);const slice=this.processCompleteEvent(event);if(slice!==undefined&&event.bind_id!==undefined){this.processFlowEvent(event,slice);}
5626break;}
5627case'b':case'e':case'n':case'S':case'F':case'T':case'p':modelStats.willProcessBasicTraceEvent('async',event.cat,event.name,event.ts,eventSizeInBytes);this.processAsyncEvent(event);break;case'I':case'i':case'R':modelStats.willProcessBasicTraceEvent('instant',event.cat,event.name,event.ts,eventSizeInBytes);this.processInstantEvent(event);break;case'P':modelStats.willProcessBasicTraceEvent('samples',event.cat,event.name,event.ts,eventSizeInBytes);this.processTraceSampleEvent(event);break;case'C':modelStats.willProcessBasicTraceEvent('counters',event.cat,event.name,event.ts,eventSizeInBytes);this.processCounterEvent(event);break;case'M':modelStats.willProcessBasicTraceEvent('metadata',event.cat,event.name,event.ts,eventSizeInBytes);this.processMetadataEvent(event);break;case'N':case'D':case'O':modelStats.willProcessBasicTraceEvent('objects',event.cat,event.name,event.ts,eventSizeInBytes);this.processObjectEvent(event);break;case's':case't':case'f':modelStats.willProcessBasicTraceEvent('flows',event.cat,event.name,event.ts,eventSizeInBytes);this.processFlowEvent(event);break;case'v':modelStats.willProcessBasicTraceEvent('memory_dumps',event.cat,event.name,event.ts,eventSizeInBytes);this.processMemoryDumpEvent(event);break;case'(':case')':this.processContextEvent(event);break;case'c':break;default:modelStats.willProcessBasicTraceEvent('unknown',event.cat,event.name,event.ts,eventSizeInBytes);this.model_.importWarning({type:'parse_error',message:'Unrecognized event phase: '+
5628event.ph+' ('+event.name+')'});}
5629return oboe.drop;},importStackFrames_(rawStackFrames,idPrefix){const model=this.model_;for(const id in rawStackFrames){const rawStackFrame=rawStackFrames[id];const fullId=idPrefix+id;const textForColor=rawStackFrame.category?rawStackFrame.category:rawStackFrame.name;const stackFrame=new tr.model.StackFrame(undefined,fullId,rawStackFrame.name,ColorScheme.getColorIdForGeneralPurposeString(textForColor));model.addStackFrame(stackFrame);}
5630for(const id in rawStackFrames){const fullId=idPrefix+id;const stackFrame=model.stackFrames[fullId];if(stackFrame===undefined){throw new Error('Internal error');}
5631const rawStackFrame=rawStackFrames[id];const parentId=rawStackFrame.parent;let parentStackFrame;if(parentId===undefined){parentStackFrame=undefined;}else{const parentFullId=idPrefix+parentId;parentStackFrame=model.stackFrames[parentFullId];if(parentStackFrame===undefined){this.model_.importWarning({type:'metadata_parse_error',message:'Missing parent frame with ID '+parentFullId+' for stack frame \''+stackFrame.name+'\' (ID '+fullId+').'});}}
5632stackFrame.parentFrame=parentStackFrame;}
5633const ProfileNodeType=tr.model.ProfileNode.subTypes.getConstructor(undefined,'legacySample');if(idPrefix==='g'){for(const id in rawStackFrames){const rawStackFrame=rawStackFrames[id];const textForColor=rawStackFrame.category?rawStackFrame.category:rawStackFrame.name;const node=this.stackFrameTree_.add(new ProfileNodeType('g'+id,{functionName:rawStackFrame.name},undefined));node.colorId=ColorScheme.getColorIdForGeneralPurposeString(textForColor);node.parentId=rawStackFrame.parent;}
5634for(const id in rawStackFrames){const node=this.stackFrameTree_.getNode('g'+id);const parentId=node.parentId;let parentNode=undefined;if(parentId!==undefined){parentNode=this.stackFrameTree_.getNode('g'+parentId);if(parentNode===undefined){this.model_.importWarning({type:'metadata_parse_error',message:'Missing parent frame with ID '+parentId+' for stack frame \''+node.name+'\' (ID '+node.id+').'});}
5635node.parentNode=parentNode;}}}},importObjectTypeNameMap_(rawObjectTypeNameMap,pid){if(pid in this.objectTypeNameMap_){this.model_.importWarning({type:'metadata_parse_error',message:'Mapping from object type IDs to names provided for pid='+
5636pid+' multiple times.'});return;}
5637let objectTypeNamePrefix=undefined;let objectTypeNameSuffix=undefined;const objectTypeNameMap={};for(const objectTypeId in rawObjectTypeNameMap){const rawObjectTypeName=rawObjectTypeNameMap[objectTypeId];if(objectTypeNamePrefix===undefined){for(let i=0;i<OBJECT_TYPE_NAME_PATTERNS.length;i++){const pattern=OBJECT_TYPE_NAME_PATTERNS[i];if(rawObjectTypeName.startsWith(pattern.prefix)&&rawObjectTypeName.endsWith(pattern.suffix)){objectTypeNamePrefix=pattern.prefix;objectTypeNameSuffix=pattern.suffix;break;}}}
5638if(objectTypeNamePrefix!==undefined&&rawObjectTypeName.startsWith(objectTypeNamePrefix)&&rawObjectTypeName.endsWith(objectTypeNameSuffix)){objectTypeNameMap[objectTypeId]=rawObjectTypeName.substring(objectTypeNamePrefix.length,rawObjectTypeName.length-objectTypeNameSuffix.length);}else{objectTypeNameMap[objectTypeId]=rawObjectTypeName;}}
5639this.objectTypeNameMap_[pid]=objectTypeNameMap;},importAnnotations_(){for(const id in this.traceAnnotations_){const annotation=tr.model.Annotation.fromDictIfPossible(this.traceAnnotations_[id]);if(!annotation){this.model_.importWarning({type:'annotation_warning',message:'Unrecognized traceAnnotation typeName \"'+
5640this.traceAnnotations_[id].typeName+'\"'});continue;}
5641this.model_.addAnnotation(annotation);}},finalizeImport(){if(this.softwareMeasuredCpuCount_!==undefined){this.model_.kernel.softwareMeasuredCpuCount=this.softwareMeasuredCpuCount_;}
5642this.createFlowSlices_();this.createExplicitObjects_();this.createImplicitObjects_();this.createMemoryDumps_();},getStackFrameForEvent_(event,opt_lookForEndEvent){let sf;let stack;if(opt_lookForEndEvent){sf=event.esf;stack=event.estack;}else{sf=event.sf;stack=event.stack;}
5643if(stack!==undefined&&sf!==undefined){this.model_.importWarning({type:'stack_frame_and_stack_error',message:'Event at '+event.ts+' cannot have both a stack and a stackframe.'});return undefined;}
5644if(stack!==undefined){return this.model_.resolveStackToStackFrame_(event.pid,stack);}
5645if(sf===undefined)return undefined;const stackFrame=this.model_.stackFrames['g'+sf];if(stackFrame===undefined){this.model_.importWarning({type:'sample_import_error',message:'No frame for '+sf});return;}
5646return stackFrame;},resolveStackToStackFrame_(pid,stack){return undefined;},importSampleData(){if(!this.sampleEvents_)return;const m=this.model_;const events=this.sampleEvents_;if(this.hasEvents_===undefined){throw new Error('importEvents is not run before importSampleData');}else if(!this.hasEvents_){for(let i=0;i<events.length;i++){const event=events[i];m.getOrCreateProcess(event.tid).getOrCreateThread(event.tid);}}
5647const threadsByTid={};m.getAllThreads().forEach(function(t){threadsByTid[t.tid]=t;});for(let i=0;i<events.length;i++){const event=events[i];const thread=threadsByTid[event.tid];if(thread===undefined){m.importWarning({type:'sample_import_error',message:'Thread '+events.tid+'not found'});continue;}
5648let cpu;if(event.cpu!==undefined){cpu=m.kernel.getOrCreateCpu(event.cpu);}
5649const leafNode=this.stackFrameTree_.getNode('g'+event.sf);const sample=new tr.model.Sample(this.toModelTimeFromUs_(event.ts),event.name,leafNode,thread,cpu,event.weight);m.samples.push(sample);}},createAsyncSlices_(){if(this.allAsyncEvents_.length===0)return;this.allAsyncEvents_.sort(function(x,y){const d=x.event.ts-y.event.ts;if(d!==0)return d;return x.sequenceNumber-y.sequenceNumber;});const legacyEvents=[];const nestableAsyncEventsByKey={};const nestableMeasureAsyncEventsByKey={};for(let i=0;i<this.allAsyncEvents_.length;i++){const asyncEventState=this.allAsyncEvents_[i];const event=asyncEventState.event;if(event.ph==='S'||event.ph==='F'||event.ph==='T'||event.ph==='p'){legacyEvents.push(asyncEventState);continue;}
5650if(event.cat===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'Nestable async events (ph: b, e, or n) require a '+'cat parameter.'});continue;}
5651if(event.name===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'Nestable async events (ph: b, e, or n) require a '+'name parameter.'});continue;}
5652const id=TraceEventImporter.scopedIdForEvent_(event);if(id===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'Nestable async events (ph: b, e, or n) require an '+'id parameter.'});continue;}
5653if(event.cat==='blink.user_timing'){const matched=/([^\/:]+):([^\/:]+)\/?(.*)/.exec(event.name);if(matched!==null){const key=matched[1]+':'+event.cat;event.args=JSON.parse(Base64.atob(matched[3])||'{}');if(nestableMeasureAsyncEventsByKey[key]===undefined){nestableMeasureAsyncEventsByKey[key]=[];}
5654nestableMeasureAsyncEventsByKey[key].push(asyncEventState);continue;}}
5655const key=event.cat+':'+id.toStringWithDelimiter(':');if(nestableAsyncEventsByKey[key]===undefined){nestableAsyncEventsByKey[key]=[];}
5656nestableAsyncEventsByKey[key].push(asyncEventState);}
5657this.createLegacyAsyncSlices_(legacyEvents);this.createNestableAsyncSlices_(nestableMeasureAsyncEventsByKey);this.createNestableAsyncSlices_(nestableAsyncEventsByKey);},createLegacyAsyncSlice_(events){const asyncEventState=events[events.length-1];const event=asyncEventState.event;const name=event.name;const id=TraceEventImporter.scopedIdForEvent_(event);const key=id.toStringWithDelimiter(':');const asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(events[0].event.cat,name);let duration;if(event.ts!==undefined){duration=this.toModelTimeFromUs_(event.ts-events[0].event.ts);}
5658const slice=new asyncSliceConstructor(events[0].event.cat,name,getEventColor(events[0].event),this.toModelTimeFromUs_(events[0].event.ts),Object.assign({},events[0].event.args,event.args),duration||0,true,undefined,undefined,events[0].event.argsStripped);if(duration===undefined){slice.didNotFinish=true;slice.error='Slice has no matching END. End time has been adjusted.';this.model_.importWarning({type:'async_slice_parse_error',message:'Legacy async BEGIN event at '+
5659events[0].event.ts+' with name="'+
5660name+'" and id='+key+' was unmatched.'});}
5661slice.startThread=events[0].thread;slice.endThread=asyncEventState.thread;slice.id=key;const stepType=events[1].event.ph;let isValid=true;for(let j=1;j<events.length-1;++j){if(events[j].event.ph==='T'||events[j].event.ph==='p'){isValid=this.assertStepTypeMatches_(stepType,events[j]);if(!isValid)break;}
5662if(events[j].event.ph==='S'){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+events[j].event.ts+', a slice named "'+
5663name+'" with id='+id+' had a step before the start event.'});continue;}
5664if(events[j].event.ph==='F'){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+events[j].event.ts+', a slice named '+
5665name+' with id='+id+' had a step after the finish event.'});continue;}
5666const startIndex=j+(stepType==='T'?0:-1);const endIndex=startIndex+1;let subName=name;if(!events[j].event.argsStripped&&(events[j].event.ph==='T'||events[j].event.ph==='p')){subName=events[j].event.args.step;}
5667const asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(events[0].event.cat,subName);let duration;if(events[endIndex].event.ts!==undefined){duration=this.toModelTimeFromUs_(events[endIndex].event.ts-events[startIndex].event.ts);}
5668const subSlice=new asyncSliceConstructor(events[0].event.cat,subName,getEventColor(events[0].event,subName+j),this.toModelTimeFromUs_(events[startIndex].event.ts),this.deepCopyIfNeeded_(events[j].event.args),duration||0,undefined,undefined,events[startIndex].event.argsStripped);if(duration===undefined){subSlice.didNotFinish=true;subSlice.error='Slice has no matching END. End time has been adjusted.';}
5669subSlice.startThread=events[startIndex].thread;subSlice.endThread=events[endIndex].thread;subSlice.id=key;slice.subSlices.push(subSlice);}
5670if(isValid){slice.startThread.asyncSliceGroup.push(slice);}},createLegacyAsyncSlices_(legacyEvents){if(legacyEvents.length===0)return;legacyEvents.sort(function(x,y){const d=x.event.ts-y.event.ts;if(d!==0)return d;return x.sequenceNumber-y.sequenceNumber;});const asyncEventStatesByNameThenID={};for(let i=0;i<legacyEvents.length;i++){const asyncEventState=legacyEvents[i];const event=asyncEventState.event;const name=event.name;if(name===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'Async events (ph: S, T, p, or F) require a name '+' parameter.'});continue;}
5671const id=TraceEventImporter.scopedIdForEvent_(event);if(id===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'Async events (ph: S, T, p, or F) require an id parameter.'});continue;}
5672const key=id.toStringWithDelimiter(':');if(event.ph==='S'){if(asyncEventStatesByNameThenID[name]===undefined){asyncEventStatesByNameThenID[name]={};}
5673if(asyncEventStatesByNameThenID[name][key]){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.ts+', a slice of the same id '+id+' was alrady open.'});continue;}
5674asyncEventStatesByNameThenID[name][key]=[];asyncEventStatesByNameThenID[name][key].push(asyncEventState);}else{if(asyncEventStatesByNameThenID[name]===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:`At ${event.ts}, no slice named "${name}" was open.`,});continue;}
5675if(asyncEventStatesByNameThenID[name][key]===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:`At ${event.ts}, no slice named "${name}" with id=${id} was `+'open.',});continue;}
5676const events=asyncEventStatesByNameThenID[name][key];events.push(asyncEventState);if(event.ph==='F'){this.createLegacyAsyncSlice_(events);delete asyncEventStatesByNameThenID[name][key];}}}
5677for(const[name,statesByID]of
5678Object.entries(asyncEventStatesByNameThenID)){for(const[id,states]of Object.entries(statesByID)){const startEvent=states[0].event;states.push({sequenceNumber:1+states[states.length-1].sequenceNumber,event:{ph:'F',name,id:startEvent.id,id2:startEvent.id2,scope:startEvent.scope,pid:startEvent.pid,tid:startEvent.tid,cat:startEvent.cat,args:{},},thread:this.model_.getOrCreateProcess(startEvent.pid).getOrCreateThread(startEvent.tid),});this.createLegacyAsyncSlice_(states);}}},createNestableAsyncSlices_(nestableEventsByKey){for(const key in nestableEventsByKey){const eventStateEntries=nestableEventsByKey[key];const parentStack=[];for(let i=0;i<eventStateEntries.length;++i){const eventStateEntry=eventStateEntries[i];if(eventStateEntry.event.ph==='e'){let parentIndex=-1;for(let k=parentStack.length-1;k>=0;--k){if(parentStack[k].event.name===eventStateEntry.event.name){parentIndex=k;break;}}
5679if(parentIndex===-1){eventStateEntry.finished=false;}else{parentStack[parentIndex].end=eventStateEntry;while(parentIndex<parentStack.length){parentStack.pop();}}}
5680if(parentStack.length>0){eventStateEntry.parentEntry=parentStack[parentStack.length-1];}
5681if(eventStateEntry.event.ph==='b'){parentStack.push(eventStateEntry);}}
5682const topLevelSlices=[];for(let i=0;i<eventStateEntries.length;++i){const eventStateEntry=eventStateEntries[i];if(eventStateEntry.event.ph==='e'&&eventStateEntry.finished===undefined){continue;}
5683let startState=undefined;let endState=undefined;let sliceArgs=eventStateEntry.event.args||{};let sliceError=undefined;const id=TraceEventImporter.scopedIdForEvent_(eventStateEntry.event);if(eventStateEntry.event.ph==='n'){startState=eventStateEntry;endState=eventStateEntry;}else if(eventStateEntry.event.ph==='b'){if(eventStateEntry.end===undefined){eventStateEntry.end=eventStateEntries[eventStateEntries.length-1];sliceError='Slice has no matching END. End time has been adjusted.';this.model_.importWarning({type:'async_slice_parse_error',message:'Nestable async BEGIN event at '+
5684eventStateEntry.event.ts+' with name="'+
5685eventStateEntry.event.name+'" and id='+id+' was unmatched.'});}else{function concatenateArguments(args1,args2){if(args1.params===undefined||args2.params===undefined){return Object.assign({},args1,args2);}
5686const args3={};args3.params=Object.assign({},args1.params,args2.params);return Object.assign({},args1,args2,args3);}
5687const endArgs=eventStateEntry.end.event.args||{};sliceArgs=concatenateArguments(sliceArgs,endArgs);}
5688startState=eventStateEntry;endState=eventStateEntry.end;}else{sliceError='Slice has no matching BEGIN. Start time has been adjusted.';this.model_.importWarning({type:'async_slice_parse_error',message:'Nestable async END event at '+
5689eventStateEntry.event.ts+' with name='+
5690eventStateEntry.event.name+' and id='+id+' was unmatched.'});startState=eventStateEntries[0];endState=eventStateEntry;}
5691const isTopLevel=(eventStateEntry.parentEntry===undefined);const asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(eventStateEntry.event.cat,eventStateEntry.event.name);let threadStart=undefined;let threadDuration=undefined;if(startState.event.tts&&startState.event.use_async_tts){threadStart=this.toModelTimeFromUs_(startState.event.tts);if(endState.event.tts){const threadEnd=this.toModelTimeFromUs_(endState.event.tts);threadDuration=threadEnd-threadStart;}}
5692const slice=new asyncSliceConstructor(eventStateEntry.event.cat,eventStateEntry.event.name,getEventColor(endState.event),this.toModelTimeFromUs_(startState.event.ts),sliceArgs,this.toModelTimeFromUs_(endState.event.ts-startState.event.ts),isTopLevel,threadStart,threadDuration,startState.event.argsStripped);slice.startThread=startState.thread;slice.endThread=endState.thread;slice.startStackFrame=this.getStackFrameForEvent_(startState.event);slice.endStackFrame=this.getStackFrameForEvent_(endState.event);slice.id=key;if(sliceError!==undefined){slice.error=sliceError;}
5693eventStateEntry.slice=slice;if(isTopLevel){topLevelSlices.push(slice);}else if(eventStateEntry.parentEntry.slice!==undefined){eventStateEntry.parentEntry.slice.subSlices.push(slice);}}
5694for(let si=0;si<topLevelSlices.length;si++){topLevelSlices[si].startThread.asyncSliceGroup.push(topLevelSlices[si]);}}},assertStepTypeMatches_(stepType,event){if(stepType!==event.event.ph){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.event.ts+', a slice named '+
5695event.event.name+' with id='+
5696TraceEventImporter.scopedIdForEvent_(event.event)+' had both begin and end steps, which is not allowed.'});return false;}
5697return true;},validateFlowEvent_(event){if(event.name===undefined){this.model_.importWarning({type:'flow_slice_parse_error',message:'Flow events (ph: s, t or f) require a name parameter.'});return false;}
5698if(event.ph==='s'||event.ph==='f'||event.ph==='t'){if(event.id===undefined){this.model_.importWarning({type:'flow_slice_parse_error',message:'Flow events (ph: s, t or f) require an id parameter.'});return false;}
5699return true;}
5700if(event.bind_id){if(event.flow_in===undefined&&event.flow_out===undefined){this.model_.importWarning({type:'flow_slice_parse_error',message:'Flow producer or consumer require flow_in or flow_out.'});return false;}
5701return true;}
5702return false;},createFlowSlices_(){if(this.allFlowEvents_.length===0)return;const createFlowEvent=function(thread,event,opt_slice){let startSlice;let flowId;let flowStartTs;if(event.bind_id){startSlice=opt_slice;flowId=event.bind_id;flowStartTs=this.toModelTimeFromUs_(event.ts+event.dur);}else{const ts=this.toModelTimeFromUs_(event.ts);startSlice=thread.sliceGroup.findSliceAtTs(ts);if(startSlice===undefined)return undefined;flowId=event.id;flowStartTs=ts;}
5703const flowEvent=new tr.model.FlowEvent(event.cat,flowId,event.name,getEventColor(event),flowStartTs,this.deepCopyAlways_(event.args));flowEvent.startSlice=startSlice;flowEvent.startStackFrame=this.getStackFrameForEvent_(event);flowEvent.endStackFrame=undefined;startSlice.outFlowEvents.push(flowEvent);return flowEvent;}.bind(this);const finishFlowEventWith=function(flowEvent,thread,event,refGuid,bindToParent,opt_slice){let endSlice;if(event.bind_id){endSlice=opt_slice;}else{const ts=this.toModelTimeFromUs_(event.ts);if(bindToParent){endSlice=thread.sliceGroup.findSliceAtTs(ts);}else{endSlice=thread.sliceGroup.findNextSliceAfter(ts,refGuid);}
5704if(endSlice===undefined)return false;}
5705endSlice.inFlowEvents.push(flowEvent);flowEvent.endSlice=endSlice;flowEvent.duration=this.toModelTimeFromUs_(event.ts)-flowEvent.start;flowEvent.endStackFrame=this.getStackFrameForEvent_(event);this.mergeArgsInto_(flowEvent.args,event.args,flowEvent.title);return true;}.bind(this);const processFlowConsumer=function(flowIdToEvent,sliceGuidToEvent,event,slice){let flowEvent=flowIdToEvent[event.bind_id];if(flowEvent===undefined){this.model_.importWarning({type:'flow_slice_ordering_error',message:'Flow consumer '+event.bind_id+' does not have '+'a flow producer'});return false;}else if(flowEvent.endSlice){const flowProducer=flowEvent.startSlice;flowEvent=createFlowEvent(undefined,sliceGuidToEvent[flowProducer.guid],flowProducer);}
5706const refGuid=undefined;const ok=finishFlowEventWith(flowEvent,undefined,event,refGuid,undefined,slice);if(ok){this.model_.flowEvents.push(flowEvent);}else{this.model_.importWarning({type:'flow_slice_end_error',message:'Flow consumer '+event.bind_id+' does not end '+'at an actual slice, so cannot be created.'});return false;}
5707return true;}.bind(this);const processFlowProducer=function(flowIdToEvent,flowStatus,event,slice){if(flowIdToEvent[event.bind_id]&&flowStatus[event.bind_id]){this.model_.importWarning({type:'flow_slice_start_error',message:'Flow producer '+event.bind_id+' already seen'});return false;}
5708const flowEvent=createFlowEvent(undefined,event,slice);if(!flowEvent){this.model_.importWarning({type:'flow_slice_start_error',message:'Flow producer '+event.bind_id+' does not start'+'a flow'});return false;}
5709flowIdToEvent[event.bind_id]=flowEvent;}.bind(this);this.allFlowEvents_.sort(function(x,y){const d=x.event.ts-y.event.ts;if(d!==0)return d;return x.sequenceNumber-y.sequenceNumber;});const flowIdToEvent={};const sliceGuidToEvent={};const flowStatus={};for(let i=0;i<this.allFlowEvents_.length;++i){const data=this.allFlowEvents_[i];const refGuid=data.refGuid;const event=data.event;const thread=data.thread;if(!this.validateFlowEvent_(event))continue;if(event.bind_id){const slice=data.slice;sliceGuidToEvent[slice.guid]=event;if(event.flowPhase===PRODUCER){if(!processFlowProducer(flowIdToEvent,flowStatus,event,slice)){continue;}
5710flowStatus[event.bind_id]=true;}else{if(!processFlowConsumer(flowIdToEvent,sliceGuidToEvent,event,slice)){continue;}
5711flowStatus[event.bind_id]=false;if(event.flowPhase===STEP){if(!processFlowProducer(flowIdToEvent,flowStatus,event,slice)){continue;}
5712flowStatus[event.bind_id]=true;}}
5713continue;}
5714let flowEvent;if(event.ph==='s'){if(flowIdToEvent[event.id]){this.model_.importWarning({type:'flow_slice_start_error',message:'event id '+event.id+' already seen when '+'encountering start of flow event.'});continue;}
5715flowEvent=createFlowEvent(thread,event);if(!flowEvent){this.model_.importWarning({type:'flow_slice_start_error',message:'event id '+event.id+' does not start '+'at an actual slice, so cannot be created.'});continue;}
5716flowIdToEvent[event.id]=flowEvent;}else if(event.ph==='t'||event.ph==='f'){flowEvent=flowIdToEvent[event.id];if(flowEvent===undefined){this.model_.importWarning({type:'flow_slice_ordering_error',message:'Found flow phase '+event.ph+' for id: '+event.id+' but no flow start found.'});continue;}
5717let bindToParent=event.ph==='t';if(event.ph==='f'){if(event.bp===undefined){if(event.cat.indexOf('input')>-1){bindToParent=true;}else if(event.cat.indexOf('ipc.flow')>-1){bindToParent=true;}}else{if(event.bp!=='e'){this.model_.importWarning({type:'flow_slice_bind_point_error',message:'Flow event with invalid binding point (event.bp).'});continue;}
5718bindToParent=true;}}
5719const ok=finishFlowEventWith(flowEvent,thread,event,refGuid,bindToParent);if(ok){this.model_.flowEvents.push(flowEvent);}else{this.model_.importWarning({type:'flow_slice_end_error',message:'event id '+event.id+' does not end '+'at an actual slice, so cannot be created.'});}
5720flowIdToEvent[event.id]=undefined;if(ok&&event.ph==='t'){flowEvent=createFlowEvent(thread,event);flowIdToEvent[event.id]=flowEvent;}}}},createExplicitObjects_(){if(this.allObjectEvents_.length===0)return;const processEvent=function(objectEventState){const event=objectEventState.event;const scopedId=TraceEventImporter.scopedIdForEvent_(event);const thread=objectEventState.thread;if(event.name===undefined){this.model_.importWarning({type:'object_parse_error',message:'While processing '+JSON.stringify(event)+': '+'Object events require an name parameter.'});}
5721if(scopedId===undefined||scopedId.id===undefined){this.model_.importWarning({type:'object_parse_error',message:'While processing '+JSON.stringify(event)+': '+'Object events require an id parameter.'});}
5722const process=thread.parent;const ts=this.toModelTimeFromUs_(event.ts);let instance;if(event.ph==='N'){try{instance=process.objects.idWasCreated(scopedId,event.cat,event.name,ts);}catch(e){this.model_.importWarning({type:'object_parse_error',message:'While processing create of '+
5723scopedId+' at ts='+ts+': '+e});return;}}else if(event.ph==='O'){if(event.args.snapshot===undefined){this.model_.importWarning({type:'object_parse_error',message:'While processing '+scopedId+' at ts='+ts+': '+'Snapshots must have args: {snapshot: ...}'});return;}
5724let snapshot;try{const args=this.deepCopyIfNeeded_(event.args.snapshot);let cat;if(args.cat){cat=args.cat;delete args.cat;}else{cat=event.cat;}
5725let baseTypename;if(args.base_type){baseTypename=args.base_type;delete args.base_type;}else{baseTypename=undefined;}
5726snapshot=process.objects.addSnapshot(scopedId,cat,event.name,ts,args,baseTypename);snapshot.snapshottedOnThread=thread;}catch(e){this.model_.importWarning({type:'object_parse_error',message:'While processing snapshot of '+
5727scopedId+' at ts='+ts+': '+e});return;}
5728instance=snapshot.objectInstance;}else if(event.ph==='D'){try{process.objects.idWasDeleted(scopedId,event.cat,event.name,ts);const instanceMap=process.objects.getOrCreateInstanceMap_(scopedId);instance=instanceMap.lastInstance;}catch(e){this.model_.importWarning({type:'object_parse_error',message:'While processing delete of '+
5729scopedId+' at ts='+ts+': '+e});return;}}
5730if(instance){instance.colorId=getEventColor(event,instance.typeName);}}.bind(this);this.allObjectEvents_.sort(function(x,y){const d=x.event.ts-y.event.ts;if(d!==0)return d;return x.sequenceNumber-y.sequenceNumber;});const allObjectEvents=this.allObjectEvents_;for(let i=0;i<allObjectEvents.length;i++){const objectEventState=allObjectEvents[i];try{processEvent.call(this,objectEventState);}catch(e){this.model_.importWarning({type:'object_parse_error',message:e.message});}}},createImplicitObjects_(){for(const proc of Object.values(this.model_.processes)){this.createImplicitObjectsForProcess_(proc);}},createImplicitObjectsForProcess_(process){function processField(referencingObject,referencingObjectFieldName,referencingObjectFieldValue,containingSnapshot){if(!referencingObjectFieldValue)return;if(referencingObjectFieldValue instanceof
5731tr.model.ObjectSnapshot){return null;}
5732if(referencingObjectFieldValue.id===undefined)return;const implicitSnapshot=referencingObjectFieldValue;const rawId=implicitSnapshot.id;const m=/(.+)\/(.+)/.exec(rawId);if(!m){throw new Error('Implicit snapshots must have names.');}
5733delete implicitSnapshot.id;const name=m[1];const id=m[2];let res;let cat;if(implicitSnapshot.cat!==undefined){cat=implicitSnapshot.cat;}else{cat=containingSnapshot.objectInstance.category;}
5734let baseTypename;if(implicitSnapshot.base_type){baseTypename=implicitSnapshot.base_type;}else{baseTypename=undefined;}
5735const scope=containingSnapshot.objectInstance.scopedId.scope;try{res=process.objects.addSnapshot(new tr.model.ScopedId(scope,id),cat,name,containingSnapshot.ts,implicitSnapshot,baseTypename);}catch(e){this.model_.importWarning({type:'object_snapshot_parse_error',message:'While processing implicit snapshot of '+
5736rawId+' at ts='+containingSnapshot.ts+': '+e});return;}
5737res.objectInstance.hasImplicitSnapshots=true;res.containingSnapshot=containingSnapshot;res.snapshottedOnThread=containingSnapshot.snapshottedOnThread;referencingObject[referencingObjectFieldName]=res;if(!(res instanceof tr.model.ObjectSnapshot)){throw new Error('Created object must be instanceof snapshot');}
5738return res.args;}
5739function iterObject(object,func,containingSnapshot,thisArg){if(!(object instanceof Object))return;if(object instanceof Array){for(let i=0;i<object.length;i++){const res=func.call(thisArg,object,i,object[i],containingSnapshot);if(res===null)continue;if(res){iterObject(res,func,containingSnapshot,thisArg);}else{iterObject(object[i],func,containingSnapshot,thisArg);}}
5740return;}
5741for(const key in object){const res=func.call(thisArg,object,key,object[key],containingSnapshot);if(res===null)continue;if(res){iterObject(res,func,containingSnapshot,thisArg);}else{iterObject(object[key],func,containingSnapshot,thisArg);}}}
5742process.objects.iterObjectInstances(function(instance){instance.snapshots.forEach(function(snapshot){if(snapshot.args.id!==undefined){throw new Error('args cannot have an id field inside it');}
5743iterObject(snapshot.args,processField,snapshot,this);},this);},this);},minimalTimestampInPidToEvents_(pidToEvents){let smallestTs=Infinity;for(const events of Object.values(pidToEvents)){for(const event of events){if(event.ts<smallestTs){smallestTs=event.ts;}}}
5744return smallestTs;},createMemoryDumps_(){const pairs=Object.entries(this.allMemoryDumpEvents_);const key=x=>this.minimalTimestampInPidToEvents_(x);pairs.sort((x,y)=>key(x[1])-key(y[1]));for(const[dumpId,pidToEvents]of pairs){this.createGlobalMemoryDump_(pidToEvents,dumpId);}},createGlobalMemoryDump_(dumpIdEvents,dumpId){const globalRange=new tr.b.math.Range();for(const pid in dumpIdEvents){const processEvents=dumpIdEvents[pid];for(let i=0;i<processEvents.length;i++){globalRange.addValue(this.toModelTimeFromUs_(processEvents[i].ts));}}
5745if(globalRange.isEmpty){throw new Error('Internal error: Global memory dump without events');}
5746const globalMemoryDump=new tr.model.GlobalMemoryDump(this.model_,globalRange.min);globalMemoryDump.duration=globalRange.range;this.model_.globalMemoryDumps.push(globalMemoryDump);const globalMemoryAllocatorDumpsByFullName={};const levelsOfDetail={};const allMemoryAllocatorDumpsByGuid={};for(const pid in dumpIdEvents){this.createProcessMemoryDump_(globalMemoryDump,globalMemoryAllocatorDumpsByFullName,levelsOfDetail,allMemoryAllocatorDumpsByGuid,dumpIdEvents[pid],pid,dumpId);}
5747globalMemoryDump.levelOfDetail=levelsOfDetail.global;globalMemoryDump.memoryAllocatorDumps=this.inferMemoryAllocatorDumpTree_(globalMemoryAllocatorDumpsByFullName);this.parseMemoryDumpAllocatorEdges_(allMemoryAllocatorDumpsByGuid,dumpIdEvents,dumpId);},createProcessMemoryDump_(globalMemoryDump,globalMemoryAllocatorDumpsByFullName,levelsOfDetail,allMemoryAllocatorDumpsByGuid,processEvents,pid,dumpId){const processRange=new tr.b.math.Range();for(let i=0;i<processEvents.length;i++){processRange.addValue(this.toModelTimeFromUs_(processEvents[i].ts));}
5748if(processRange.isEmpty){throw new Error('Internal error: Process memory dump without events');}
5749const process=this.model_.getOrCreateProcess(pid);const processMemoryDump=new tr.model.ProcessMemoryDump(globalMemoryDump,process,processRange.min);processMemoryDump.duration=processRange.range;process.memoryDumps.push(processMemoryDump);globalMemoryDump.processMemoryDumps[pid]=processMemoryDump;const processMemoryAllocatorDumpsByFullName={};for(let i=0;i<processEvents.length;i++){const processEvent=processEvents[i];const dumps=processEvent.args.dumps;if(dumps===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'\'dumps\' field not found in a process memory dump'+' event for PID='+pid+' and dump ID='+dumpId+'.'});continue;}
5750this.parseMemoryDumpTotals_(processMemoryDump,dumps,pid,dumpId);this.parseMemoryDumpVmRegions_(processMemoryDump,dumps,pid,dumpId);this.parseMemoryDumpHeapDumps_(processMemoryDump,dumps,pid,dumpId);this.parseMemoryDumpLevelOfDetail_(levelsOfDetail,dumps,pid,dumpId);this.parseMemoryDumpAllocatorDumps_(processMemoryDump,globalMemoryDump,processMemoryAllocatorDumpsByFullName,globalMemoryAllocatorDumpsByFullName,allMemoryAllocatorDumpsByGuid,dumps,pid,dumpId);}
5751if(levelsOfDetail.process===undefined){levelsOfDetail.process=processMemoryDump.vmRegions?DETAILED:LIGHT;}
5752if(!this.updateMemoryDumpLevelOfDetail_(levelsOfDetail,'global',levelsOfDetail.process)){this.model_.importWarning({type:'memory_dump_parse_error',message:'diffent levels of detail provided for global memory'+' dump (dump ID='+dumpId+').'});}
5753processMemoryDump.levelOfDetail=levelsOfDetail.process;delete levelsOfDetail.process;processMemoryDump.memoryAllocatorDumps=this.inferMemoryAllocatorDumpTree_(processMemoryAllocatorDumpsByFullName);},parseMemoryDumpTotals_(processMemoryDump,dumps,pid,dumpId){const rawTotals=dumps.process_totals;if(rawTotals===undefined)return;if(processMemoryDump.totals!==undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Process totals provided multiple times for'+' process memory dump for PID='+pid+' and dump ID='+dumpId+'.'});return;}
5754const totals={};let platformSpecificTotals=undefined;for(const rawTotalName in rawTotals){const rawTotalValue=rawTotals[rawTotalName];if(rawTotalValue===undefined)continue;if(rawTotalName==='resident_set_bytes'){totals.residentBytes=parseInt(rawTotalValue,16);continue;}
5755if(rawTotalName==='peak_resident_set_bytes'){totals.peakResidentBytes=parseInt(rawTotalValue,16);continue;}
5756if(rawTotalName==='is_peak_rss_resetable'){totals.arePeakResidentBytesResettable=!!rawTotalValue;continue;}
5757if(rawTotalName==='private_footprint_bytes'){totals.privateFootprintBytes=parseInt(rawTotalValue,16);continue;}
5758if(platformSpecificTotals===undefined){platformSpecificTotals={};totals.platformSpecific=platformSpecificTotals;}
5759platformSpecificTotals[rawTotalName]=parseInt(rawTotalValue,16);}
5760if(totals.peakResidentBytes===undefined&&totals.arePeakResidentBytesResettable!==undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Optional field peak_resident_set_bytes found'+' but is_peak_rss_resetable not found in'+' process memory dump for PID='+pid+' and dump ID='+dumpId+'.'});}
5761if(totals.arePeakResidentBytesResettable!==undefined&&totals.peakResidentBytes===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Optional field is_peak_rss_resetable found'+' but peak_resident_set_bytes not found in'+' process memory dump for PID='+pid+' and dump ID='+dumpId+'.'});}
5762processMemoryDump.totals=totals;},parseMemoryDumpVmRegions_(processMemoryDump,dumps,pid,dumpId){const rawProcessMmaps=dumps.process_mmaps;if(rawProcessMmaps===undefined)return;const rawVmRegions=rawProcessMmaps.vm_regions;if(rawVmRegions===undefined)return;if(processMemoryDump.vmRegions!==undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'VM regions provided multiple times for'+' process memory dump for PID='+pid+' and dump ID='+dumpId+'.'});return;}
5763const vmRegions=new Array(rawVmRegions.length);for(let i=0;i<rawVmRegions.length;i++){const rawVmRegion=rawVmRegions[i];const byteStats={};const rawByteStats=rawVmRegion.bs;for(const rawByteStatName in rawByteStats){const rawByteStatValue=rawByteStats[rawByteStatName];if(rawByteStatValue===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Byte stat \''+rawByteStatName+'\' of VM region '+
5764i+' ('+rawVmRegion.mf+') in process memory dump for '+'PID='+pid+' and dump ID='+dumpId+' does not have a value.'});continue;}
5765const byteStatName=BYTE_STAT_NAME_MAP[rawByteStatName];if(byteStatName===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Unknown byte stat name \''+rawByteStatName+'\' ('+
5766rawByteStatValue+') of VM region '+i+' ('+
5767rawVmRegion.mf+') in process memory dump for PID='+pid+' and dump ID='+dumpId+'.'});continue;}
5768byteStats[byteStatName]=parseInt(rawByteStatValue,16);if(byteStatName==='proportionalResident'&&byteStats[byteStatName]===0){byteStats[byteStatName]=undefined;}}
5769vmRegions[i]=new tr.model.VMRegion(parseInt(rawVmRegion.sa,16),parseInt(rawVmRegion.sz,16),rawVmRegion.pf,rawVmRegion.mf,byteStats);}
5770processMemoryDump.vmRegions=tr.model.VMRegionClassificationNode.fromRegions(vmRegions);},parseMemoryDumpHeapDumps_(processMemoryDump,dumps,pid,dumpId){const idPrefix='p'+pid+':';let importer;if(dumps.heaps){const processTypeMap=this.objectTypeNameMap_[pid];if(processTypeMap===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Missing mapping from object type IDs to names.'});}
5771importer=new LegacyHeapDumpTraceEventImporter(this.model_,processMemoryDump,processTypeMap,idPrefix,dumpId,dumps.heaps);}else if(dumps.heaps_v2){const data=dumps.heaps_v2;this.heapProfileExpander=this.heapProfileExpander.expandData(data);this.addNewStackFramesFromExpander_(this.heapProfileExpander,idPrefix);importer=new HeapDumpTraceEventImporter(this.heapProfileExpander,this.model_.stackFrames,processMemoryDump,idPrefix,this.model_);}
5772if(!importer)return;const heapDumps=importer.parse();if(!heapDumps)return;if(processMemoryDump.heapDumps!==undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Heap dumps provided multiple times for'+' process memory dump for PID='+pid+' and dump ID='+dumpId+'.'});return;}
5773if(Object.keys(heapDumps).length>0){processMemoryDump.heapDumps=heapDumps;}},addNewStackFramesFromExpander_(expander,idPrefix){const nodeMap=expander.getNewMap('nodes');const newStackFrames={};for(const[id,stackFrame]of nodeMap.entries()){if(!this.model_.stackFrames[idPrefix+id]){newStackFrames[id]={id,name:expander.getString(stackFrame.name_sid),};if(stackFrame.parent)newStackFrames[id].parent=stackFrame.parent;}}
5774this.importStackFrames_(newStackFrames,idPrefix);},parseMemoryDumpLevelOfDetail_(levelsOfDetail,dumps,pid,dumpId){const rawLevelOfDetail=dumps.level_of_detail;let level;switch(rawLevelOfDetail){case'background':level=BACKGROUND;break;case'light':level=LIGHT;break;case'detailed':level=DETAILED;break;case undefined:level=undefined;break;default:this.model_.importWarning({type:'memory_dump_parse_error',message:'unknown raw level of detail \''+rawLevelOfDetail+'\' of process memory dump for PID='+pid+' and dump ID='+dumpId+'.'});return;}
5775if(!this.updateMemoryDumpLevelOfDetail_(levelsOfDetail,'process',level)){this.model_.importWarning({type:'memory_dump_parse_error',message:'diffent levels of detail provided for process memory'+' dump for PID='+pid+' (dump ID='+dumpId+').'});}},updateMemoryDumpLevelOfDetail_(levelsOfDetail,scope,level){if(!(scope in levelsOfDetail)||level===levelsOfDetail[scope]){levelsOfDetail[scope]=level;return true;}
5776if(MEMORY_DUMP_LEVEL_OF_DETAIL_ORDER.indexOf(level)>MEMORY_DUMP_LEVEL_OF_DETAIL_ORDER.indexOf(levelsOfDetail[scope])){levelsOfDetail[scope]=level;}
5777return false;},parseMemoryDumpAllocatorDumps_(processMemoryDump,globalMemoryDump,processMemoryAllocatorDumpsByFullName,globalMemoryAllocatorDumpsByFullName,allMemoryAllocatorDumpsByGuid,dumps,pid,dumpId){const rawAllocatorDumps=dumps.allocators;if(rawAllocatorDumps===undefined)return;for(let fullName in rawAllocatorDumps){const rawAllocatorDump=rawAllocatorDumps[fullName];const guid=rawAllocatorDump.guid;if(guid===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory allocator dump '+fullName+' for PID='+pid+' and dump ID='+dumpId+' does not have a GUID.'});}
5778const flags=rawAllocatorDump.flags||0;const isWeakDump=!!(flags&WEAK_MEMORY_ALLOCATOR_DUMP_FLAG);let containerMemoryDump;let dstIndex;if(fullName.startsWith(GLOBAL_MEMORY_ALLOCATOR_DUMP_PREFIX)){fullName=fullName.substring(GLOBAL_MEMORY_ALLOCATOR_DUMP_PREFIX.length);containerMemoryDump=globalMemoryDump;dstIndex=globalMemoryAllocatorDumpsByFullName;}else{containerMemoryDump=processMemoryDump;dstIndex=processMemoryAllocatorDumpsByFullName;}
5779let allocatorDump=allMemoryAllocatorDumpsByGuid[guid];if(allocatorDump===undefined){if(fullName in dstIndex){this.model_.importWarning({type:'memory_dump_parse_error',message:'Multiple GUIDs provided for'+' memory allocator dump '+fullName+': '+
5780dstIndex[fullName].guid+', '+guid+' (ignored) for'+' PID='+pid+' and dump ID='+dumpId+'.'});continue;}
5781allocatorDump=new tr.model.MemoryAllocatorDump(containerMemoryDump,fullName,guid);allocatorDump.weak=isWeakDump;dstIndex[fullName]=allocatorDump;if(guid!==undefined){allMemoryAllocatorDumpsByGuid[guid]=allocatorDump;}}else{if(allocatorDump.containerMemoryDump!==containerMemoryDump){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+
5782dumpId+' dumped in different contexts.'});continue;}
5783if(allocatorDump.fullName!==fullName){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory allocator dump with GUID='+guid+' for PID='+
5784pid+' and dump ID='+dumpId+' has multiple names: '+
5785allocatorDump.fullName+', '+fullName+' (ignored).'});continue;}
5786if(!isWeakDump){allocatorDump.weak=false;}}
5787let attributes=rawAllocatorDump.attrs;if(attributes===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+dumpId+' does not have attributes.'});attributes={};}
5788for(const attrName in attributes){const attrArgs=attributes[attrName];const attrType=attrArgs.type;const attrValue=attrArgs.value;switch(attrType){case'scalar':{if(attrName in allocatorDump.numerics){this.model_.importWarning({type:'memory_dump_parse_error',message:'Multiple values provided for scalar attribute '+
5789attrName+' of memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+
5790dumpId+'.'});break;}
5791const unit=attrArgs.units==='bytes'?tr.b.Unit.byName.sizeInBytes_smallerIsBetter:tr.b.Unit.byName.unitlessNumber_smallerIsBetter;const value=parseInt(attrValue,16);allocatorDump.addNumeric(attrName,new tr.b.Scalar(unit,value));break;}
5792case'string':if(attrName in allocatorDump.diagnostics){this.model_.importWarning({type:'memory_dump_parse_error',message:'Multiple values provided for string attribute '+
5793attrName+' of memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+
5794dumpId+'.'});break;}
5795allocatorDump.addDiagnostic(attrName,attrValue);break;default:this.model_.importWarning({type:'memory_dump_parse_error',message:'Unknown type provided for attribute '+attrName+' of memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+dumpId+': '+
5796attrType});break;}}}},inferMemoryAllocatorDumpTree_(memoryAllocatorDumpsByFullName){const rootAllocatorDumps=[];const fullNames=Object.keys(memoryAllocatorDumpsByFullName);fullNames.sort();for(let i=0;i<fullNames.length;i++){let fullName=fullNames[i];let allocatorDump=memoryAllocatorDumpsByFullName[fullName];while(true){const lastSlashIndex=fullName.lastIndexOf('/');if(lastSlashIndex===-1){rootAllocatorDumps.push(allocatorDump);break;}
5797const parentFullName=fullName.substring(0,lastSlashIndex);let parentAllocatorDump=memoryAllocatorDumpsByFullName[parentFullName];let parentAlreadyExisted=true;if(parentAllocatorDump===undefined){parentAlreadyExisted=false;parentAllocatorDump=new tr.model.MemoryAllocatorDump(allocatorDump.containerMemoryDump,parentFullName);if(allocatorDump.weak!==false){parentAllocatorDump.weak=undefined;}
5798memoryAllocatorDumpsByFullName[parentFullName]=parentAllocatorDump;}
5799allocatorDump.parent=parentAllocatorDump;parentAllocatorDump.children.push(allocatorDump);if(parentAlreadyExisted){if(!allocatorDump.weak){while(parentAllocatorDump!==undefined&&parentAllocatorDump.weak===undefined){parentAllocatorDump.weak=false;parentAllocatorDump=parentAllocatorDump.parent;}}
5800break;}
5801fullName=parentFullName;allocatorDump=parentAllocatorDump;}}
5802for(const fullName in memoryAllocatorDumpsByFullName){const allocatorDump=memoryAllocatorDumpsByFullName[fullName];if(allocatorDump.weak===undefined){allocatorDump.weak=true;}}
5803return rootAllocatorDumps;},parseMemoryDumpAllocatorEdges_(allMemoryAllocatorDumpsByGuid,dumpIdEvents,dumpId){for(const pid in dumpIdEvents){const processEvents=dumpIdEvents[pid];for(let i=0;i<processEvents.length;i++){const processEvent=processEvents[i];const dumps=processEvent.args.dumps;if(dumps===undefined)continue;const rawEdges=dumps.allocators_graph;if(rawEdges===undefined)continue;for(let j=0;j<rawEdges.length;j++){const rawEdge=rawEdges[j];const sourceGuid=rawEdge.source;const sourceDump=allMemoryAllocatorDumpsByGuid[sourceGuid];if(sourceDump===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Edge for PID='+pid+' and dump ID='+dumpId+' is missing source memory allocator dump (GUID='+
5804sourceGuid+').'});continue;}
5805const targetGuid=rawEdge.target;const targetDump=allMemoryAllocatorDumpsByGuid[targetGuid];if(targetDump===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Edge for PID='+pid+' and dump ID='+dumpId+' is missing target memory allocator dump (GUID='+
5806targetGuid+').'});continue;}
5807const importance=rawEdge.importance;const edge=new tr.model.MemoryAllocatorDumpLink(sourceDump,targetDump,importance);switch(rawEdge.type){case'ownership':if(sourceDump.owns!==undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory allocator dump '+sourceDump.fullName+' (GUID='+sourceGuid+') already owns a memory'+' allocator dump ('+
5808sourceDump.owns.target.fullName+').'});}else{sourceDump.owns=edge;targetDump.ownedBy.push(edge);}
5809break;case'retention':sourceDump.retains.push(edge);targetDump.retainedBy.push(edge);break;default:this.model_.importWarning({type:'memory_dump_parse_error',message:'Invalid edge type: '+rawEdge.type+' (PID='+pid+', dump ID='+dumpId+', source='+sourceGuid+', target='+targetGuid+', importance='+importance+').'});}}}}},toModelTimeFromUs_(ts){if(!this.toModelTime_){this.toModelTime_=this.model_.clockSyncManager.getModelTimeTransformer(this.clockDomainId_);}
5810return this.toModelTime_(tr.b.Unit.timestampFromUs(ts));},maybeToModelTimeFromUs_(ts){if(ts===undefined){return undefined;}
5811return this.toModelTimeFromUs_(ts);}};tr.importer.Importer.register(TraceEventImporter);return{TraceEventImporter,};});'use strict';tr.exportTo('tr.e.measure',function(){const AsyncSlice=tr.model.AsyncSlice;function MeasureAsyncSlice(){this.groupTitle_='Ungrouped Measure';const matched=/([^\/:]+):([^\/:]+)\/?(.*)/.exec(arguments[1]);if(matched!==null){arguments[1]=matched[2];this.groupTitle_=matched[1];}
5812AsyncSlice.apply(this,arguments);}
5813MeasureAsyncSlice.prototype={__proto__:AsyncSlice.prototype,get viewSubGroupTitle(){return this.groupTitle_;},get title(){return this.title_;},set title(title){this.title_=title;}};AsyncSlice.subTypes.register(MeasureAsyncSlice,{categoryParts:['blink.user_timing']});return{MeasureAsyncSlice,};});'use strict';tr.exportTo('tr.e.net',function(){const AsyncSlice=tr.model.AsyncSlice;function NetAsyncSlice(){AsyncSlice.apply(this,arguments);this.url_=undefined;this.byteCount_=undefined;this.isTitleComputed_=false;this.isUrlComputed_=false;}
5814NetAsyncSlice.prototype={__proto__:AsyncSlice.prototype,get viewSubGroupTitle(){return'NetLog';},get title(){if(this.isTitleComputed_||!this.isTopLevel){return this.title_;}
5815if(this.url!==undefined&&this.url.length>0){this.title_=this.url;}else if(this.args!==undefined&&this.args.source_type!==undefined){this.title_=this.args.source_type;}
5816this.isTitleComputed_=true;return this.title_;},set title(title){this.title_=title;},get url(){if(this.isUrlComputed_){return this.url_;}
5817if(this.args!==undefined&&this.args.params!==undefined&&this.args.params.url!==undefined){this.url_=this.args.params.url;}else if(this.subSlices!==undefined&&this.subSlices.length>0){for(let i=0;i<this.subSlices.length&&!this.url_;i++){if(this.subSlices[i].url!==undefined){this.url_=this.subSlices[i].url;}}}
5818this.isUrlComputed_=true;return this.url_;},get byteCount(){if(this.byteCount_!==undefined){return this.byteCount_;}
5819this.byteCount_=0;if((this.originalTitle==='URL_REQUEST_JOB_FILTERED_BYTES_READ'||this.originalTitle==='URL_REQUEST_JOB_BYTES_READ')&&this.args!==undefined&&this.args.params!==undefined&&this.args.params.byte_count!==undefined){this.byteCount_=this.args.params.byte_count;}
5820for(let i=0;i<this.subSlices.length;i++){this.byteCount_+=this.subSlices[i].byteCount;}
5821return this.byteCount_;}};AsyncSlice.subTypes.register(NetAsyncSlice,{categoryParts:['netlog','disabled-by-default-netlog']});return{NetAsyncSlice,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){function Parser(importer){this.importer=importer;this.model=importer.model;}
5822Parser.prototype={__proto__:Object.prototype};const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.mandatoryBaseClass=Parser;tr.b.decorateExtensionRegistry(Parser,options);return{Parser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function AndroidParser(importer){Parser.call(this,importer);importer.registerEventHandler('tracing_mark_write:android',AndroidParser.prototype.traceMarkWriteAndroidEvent.bind(this));importer.registerEventHandler('0:android',AndroidParser.prototype.traceMarkWriteAndroidEvent.bind(this));this.model_=importer.model_;this.ppids_={};}
5823function parseArgs(argsString){const args={};if(argsString){const argsArray=argsString.split(';');for(let i=0;i<argsArray.length;++i){const parts=argsArray[i].split('=');if(parts[0]){args[parts.shift()]=parts.join('=');}}}
5824return args;}
5825AndroidParser.prototype={__proto__:Parser.prototype,openAsyncSlice(thread,category,name,cookie,ts,args){const asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(category,name);const slice=new asyncSliceConstructor(category,name,ColorScheme.getColorIdForGeneralPurposeString(name),ts,args);const key=category+':'+name+':'+cookie;slice.id=cookie;slice.startThread=thread;if(!this.openAsyncSlices){this.openAsyncSlices={};}
5826this.openAsyncSlices[key]=slice;},closeAsyncSlice(thread,category,name,cookie,ts,args){if(!this.openAsyncSlices){return;}
5827const key=category+':'+name+':'+cookie;const slice=this.openAsyncSlices[key];if(!slice){return;}
5828for(const arg in args){if(slice.args[arg]!==undefined){this.model_.importWarning({type:'parse_error',message:'Both the S and F events of '+slice.title+' provided values for argument '+arg+'.'+' The value of the F event will be used.'});}
5829slice.args[arg]=args[arg];}
5830slice.endThread=thread;slice.duration=ts-slice.start;slice.startThread.asyncSliceGroup.push(slice);delete this.openAsyncSlices[key];},traceMarkWriteAndroidEvent(eventName,cpuNumber,pid,ts,eventBase){const eventData=eventBase.details.split('|');switch(eventData[0]){case'B':{const ppid=parseInt(eventData[1]);const title=eventData[2];const args=parseArgs(eventData[3]);let category=eventData[4];if(category===undefined)category='android';const thread=this.model_.getOrCreateProcess(ppid).getOrCreateThread(pid);thread.name=eventBase.threadName;if(!thread.sliceGroup.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'parse_error',message:'Timestamps are moving backward.'});return false;}
5831this.ppids_[pid]=ppid;thread.sliceGroup.beginSlice(category,title,ts,args);break;}
5832case'E':{const ppid=this.ppids_[pid];if(ppid===undefined){break;}
5833const thread=this.model_.getOrCreateProcess(ppid).getOrCreateThread(pid);if(!thread.sliceGroup.openSliceCount){break;}
5834const slice=thread.sliceGroup.endSlice(ts);const args=parseArgs(eventData[3]);for(const arg in args){if(slice.args[arg]!==undefined){this.model_.importWarning({type:'parse_error',message:'Both the B and E events of '+slice.title+' provided values for argument '+arg+'.'+' The value of the E event will be used.'});}
5835slice.args[arg]=args[arg];}
5836break;}
5837case'C':{const ppid=parseInt(eventData[1]);const name=eventData[2];const value=parseInt(eventData[3]);let category=eventData[4];if(category===undefined)category='android';const ctr=this.model_.getOrCreateProcess(ppid).getOrCreateCounter(category,name);if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries(value,ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
5838ctr.series.forEach(function(series){series.addCounterSample(ts,value);});break;}
5839case'S':{const ppid=parseInt(eventData[1]);const name=eventData[2];const cookie=parseInt(eventData[3]);const args=parseArgs(eventData[4]);let category=eventData[5];if(category===undefined)category='android';const thread=this.model_.getOrCreateProcess(ppid).getOrCreateThread(pid);thread.name=eventBase.threadName;this.ppids_[pid]=ppid;this.openAsyncSlice(thread,category,name,cookie,ts,args);break;}
5840case'F':{const ppid=parseInt(eventData[1]);const name=eventData[2];const cookie=parseInt(eventData[3]);const args=parseArgs(eventData[4]);let category=eventData[5];if(category===undefined)category='android';const thread=this.model_.getOrCreateProcess(ppid).getOrCreateThread(pid);thread.name=eventBase.threadName;this.ppids_[pid]=ppid;this.closeAsyncSlice(thread,category,name,cookie,ts,args);break;}
5841default:return false;}
5842return true;}};Parser.register(AndroidParser);return{AndroidParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;const binderTransRE=new RegExp('transaction=(\\d+) dest_node=(\\d+) '+'dest_proc=(\\d+) dest_thread=(\\d+) '+'reply=(\\d+) flags=(0x[0-9a-fA-F]+) '+'code=(0x[0-9a-fA-F]+)');const binderTransReceivedRE=/transaction=(\d+)/;function isBinderThread(name){return(name.indexOf('Binder')>-1);}
5843const TF_ONE_WAY=0x01;const TF_ROOT_OBJECT=0x04;const TF_STATUS_CODE=0x08;const TF_ACCEPT_FDS=0x10;const NO_FLAGS=0;function binderFlagsToHuman(num){const flag=parseInt(num,16);let str='';if(flag&TF_ONE_WAY){str+='this is a one-way call: async, no return; ';}
5844if(flag&TF_ROOT_OBJECT){str+='contents are the components root object; ';}
5845if(flag&TF_STATUS_CODE){str+='contents are a 32-bit status code; ';}
5846if(flag&TF_ACCEPT_FDS){str+='allow replies with file descriptors; ';}
5847if(flag===NO_FLAGS){str+='No Flags Set';}
5848return str;}
5849function isReplyToOrigin(calling,called){return(called.dest_proc===calling.calling_pid||called.dest_thread===calling.calling_pid);}
5850function binderCodeToHuman(code){return'Java Layer Dependent';}
5851function doInternalSlice(trans,slice,ts){if(slice.subSlices.length!==0){slice.subSlices[0].start=ts;return slice.subSlices[0];}
5852const kthread=trans.calling_kthread.thread;const internalSlice=kthread.sliceGroup.pushCompleteSlice('binder',slice.title,ts,.001,0,0,slice.args);internalSlice.title=slice.title;internalSlice.id=slice.id;internalSlice.colorId=slice.colorId;slice.subSlices.push(internalSlice);return internalSlice;}
5853function generateBinderArgsForSlice(trans,cThreadName){return{'Transaction Id':trans.transaction_key,'Destination Node':trans.dest_node,'Destination Process':trans.dest_proc,'Destination Thread':trans.dest_thread,'Destination Name':cThreadName,'Reply transaction?':trans.is_reply_transaction,'Flags':trans.flags+' '+
5854binderFlagsToHuman(trans.flags),'Code':trans.code+' '+
5855binderCodeToHuman(trans.code),'Calling PID':trans.calling_pid,'Calling tgid':trans.calling_kthread.thread.parent.pid};}
5856function BinderTransaction(events,callingPid,callingTs,callingKthread){this.transaction_key=parseInt(events[1]);this.dest_node=parseInt(events[2]);this.dest_proc=parseInt(events[3]);this.dest_thread=parseInt(events[4]);this.is_reply_transaction=parseInt(events[5])===1?true:false;this.expect_reply=((this.is_reply_transaction===false)&&(parseInt(events[6],16)&TF_ONE_WAY)===0);this.flags=events[6];this.code=events[7];this.calling_pid=callingPid;this.calling_ts=callingTs;this.calling_kthread=callingKthread;}
5857function BinderParser(importer){Parser.call(this,importer);importer.registerEventHandler('binder_locked',BinderParser.prototype.binderLocked.bind(this));importer.registerEventHandler('binder_unlock',BinderParser.prototype.binderUnlock.bind(this));importer.registerEventHandler('binder_lock',BinderParser.prototype.binderLock.bind(this));importer.registerEventHandler('binder_transaction',BinderParser.prototype.binderTransaction.bind(this));importer.registerEventHandler('binder_transaction_received',BinderParser.prototype.binderTransactionReceived.bind(this));this.model_=importer.model;this.kthreadlookup={};this.importer_=importer;this.transWaitingRecv={};this.syncTransWaitingCompletion={};this.recursiveSyncTransWaitingCompletion_ByPID={};this.receivedTransWaitingConversion={};}
5858BinderParser.prototype={__proto__:Parser.prototype,binderLock(eventName,cpuNumber,pid,ts,eventBase){const tgid=parseInt(eventBase.tgid);if(isNaN(tgid))return false;this.doNameMappings(pid,tgid,eventName.threadName);const kthread=this.importer_.getOrCreateBinderKernelThread(eventBase.threadName,tgid,pid);kthread.binderAttemptLockTS=ts;kthread.binderOpenTsA=ts;return true;},binderLocked(eventName,cpuNumber,pid,ts,eventBase){const tgid=parseInt(eventBase.tgid);if(isNaN(tgid))return false;const binderThread=isBinderThread(eventBase.threadName);const name=eventBase.threadName;const kthread=this.importer_.getOrCreateBinderKernelThread(eventBase.threadName,tgid,pid);this.doNameMappings(pid,tgid,name);const rthread=kthread.thread;kthread.binderLockAquiredTS=ts;if(kthread.binderAttemptLockTS===undefined)return false;const args=this.generateArgsForSlice(tgid,pid,name,kthread);rthread.sliceGroup.pushCompleteSlice('binder','binder lock waiting',kthread.binderAttemptLockTS,ts-kthread.binderAttemptLockTS,0,0,args);kthread.binderAttemptLockTS=undefined;return true;},binderUnlock(eventName,cpuNumber,pid,ts,eventBase){const tgid=parseInt(eventBase.tgid);if(isNaN(tgid))return false;const kthread=this.importer_.getOrCreateBinderKernelThread(eventBase.threadName,tgid,pid);if(kthread.binderLockAquiredTS===undefined)return false;const args=this.generateArgsForSlice(tgid,pid,eventBase.threadName,kthread);kthread.thread.sliceGroup.pushCompleteSlice('binder','binder lock held',kthread.binderLockAquiredTS,ts-kthread.binderLockAquiredTS,0,0,args);kthread.binderLockAquiredTS=undefined;return true;},binderTransaction(eventName,cpuNumber,pid,ts,eventBase){const event=binderTransRE.exec(eventBase.details);if(event===undefined)return false;const tgid=parseInt(eventBase.tgid);if(isNaN(tgid))return false;this.doNameMappings(pid,tgid,eventBase.threadName);const kthread=this.importer_.getOrCreateBinderKernelThread(eventBase.threadName,tgid,pid);const trans=new BinderTransaction(event,pid,ts,kthread);const args=generateBinderArgsForSlice(trans,eventBase.threadName);const priorReceive=this.getPriorReceiveOnPID(pid);if(priorReceive!==false){return this.modelPriorReceive(priorReceive,ts,pid,tgid,kthread,trans,args,event);}
5859const recursiveTrans=this.getRecursiveTransactionNeedingCompletion(pid);if(recursiveTrans!==false){return this.modelRecursiveTransactions(recursiveTrans,ts,pid,kthread,trans,args);}
5860const slice=kthread.thread.sliceGroup.pushCompleteSlice('binder','',ts,.03,0,0,args);slice.colorId=ColorScheme.getColorIdForGeneralPurposeString(ts.toString());trans.slice=slice;if(trans.expect_reply){slice.title='binder transaction';}else{slice.title='binder transaction async';}
5861this.addTransactionWaitingForRecv(trans.transaction_key,trans);return true;},binderTransactionReceived(eventName,cpuNumber,pid,ts,eventBase){const event=binderTransReceivedRE.exec(eventBase.details);if(event===undefined)return false;const tgid=parseInt(eventBase.tgid);if(isNaN(tgid))return false;const transactionkey=parseInt(event[1]);const kthread=this.importer_.getOrCreateBinderKernelThread(eventBase.threadName,tgid,pid);const syncComplete=this.getSyncTransNeedsCompletion(transactionkey);if(syncComplete!==false){const syncTrans=syncComplete[0];const syncSlice=syncTrans.slice;const responseTrans=syncComplete[1];const responseSlice=responseTrans.slice;syncSlice.duration=ts-syncSlice.start;const syncInternal=doInternalSlice(syncTrans,syncSlice,ts);const responseTs=responseSlice.start+responseSlice.duration;const responseInternal=doInternalSlice(responseTrans,responseSlice,responseTs);if(responseSlice.outFlowEvents.length===0||syncSlice.inFlowEvents.length===0){const flow=this.generateFlow(responseInternal,syncInternal,responseTrans,syncTrans);syncSlice.inFlowEvents.push(flow);responseSlice.outFlowEvents.push(flow);this.model_.flowEvents.push(flow);}
5862for(let i=1;i<syncSlice.inFlowEvents.length;i++){syncSlice.inFlowEvents[i].duration=ts-syncSlice.inFlowEvents[i].start;}
5863return true;}
5864const trForRecv=this.getTransactionWaitingForRecv(transactionkey);if(trForRecv!==false){if(!trForRecv.expect_reply){const args=generateBinderArgsForSlice(trForRecv,eventBase.threadName);const slice=kthread.thread.sliceGroup.pushCompleteSlice('binder','binder Async recv',ts,.03,0,0,args);const fakeEvent=[0,0,0,0,0,0,0];const fakeTrans=new BinderTransaction(fakeEvent,pid,ts,kthread);const flow=this.generateFlow(trForRecv.slice,slice,trForRecv,fakeTrans);this.model_.flowEvents.push(flow);trForRecv.slice.title='binder transaction async';trForRecv.slice.duration=.03;return true;}
5865trForRecv.slice.title='binder transaction';this.setCurrentReceiveOnPID(pid,[ts,trForRecv]);return true;}
5866return false;},modelRecursiveTransactions(recursiveTrans,ts,pid,kthread,trans,args){const recursiveSlice=recursiveTrans[1].slice;const origSlice=recursiveTrans[0].slice;recursiveSlice.duration=ts-recursiveSlice.start;trans.slice=recursiveSlice;if(trans.is_reply_transaction){origSlice.duration=ts-origSlice.start;this.addSyncTransNeedingCompletion(trans.transaction_key,recursiveTrans);if(isReplyToOrigin(recursiveTrans[0],trans)){this.removeRecursiveTransaction(pid);}}else{const slice=kthread.thread.sliceGroup.pushCompleteSlice('binder','',ts,.03,0,0,args);trans.slice=slice;this.addTransactionWaitingForRecv(trans.transaction_key,trans);}
5867return true;},modelPriorReceive(priorReceive,ts,pid,tgid,kthread,trans,args,event){const calleeSlice=priorReceive[1].slice;const calleeTrans=priorReceive[1];const recvTs=priorReceive[0];let slice=kthread.thread.sliceGroup.pushCompleteSlice('binder','',recvTs,ts-recvTs,0,0,args);const flow=this.generateFlow(calleeSlice,slice,calleeTrans,trans);this.model_.flowEvents.push(flow);trans.slice=slice;if(trans.is_reply_transaction){slice.title='binder reply';this.addSyncTransNeedingCompletion(trans.transaction_key,[calleeTrans,trans]);}else{slice.title='binder reply';const trans1=new BinderTransaction(event,pid,ts,kthread);slice=kthread.thread.sliceGroup.pushCompleteSlice('binder','binder transaction',recvTs,(ts-recvTs),0,0,args);if(!trans.expect_reply){slice.title='binder transaction async';slice.duration=.03;}else{}
5868trans1.slice=slice;this.addRecursiveSyncTransNeedingCompletion(pid,[calleeTrans,trans]);this.addTransactionWaitingForRecv(trans.transaction_key,trans1);}
5869return true;},getRecursiveTransactionNeedingCompletion(pid){if(this.recursiveSyncTransWaitingCompletion_ByPID[pid]===undefined){return false;}
5870const len=this.recursiveSyncTransWaitingCompletion_ByPID[pid].length;if(len===0)return false;return this.recursiveSyncTransWaitingCompletion_ByPID[pid][len-1];},addRecursiveSyncTransNeedingCompletion(pid,tuple){if(this.recursiveSyncTransWaitingCompletion_ByPID[pid]===undefined){this.recursiveSyncTransWaitingCompletion_ByPID[pid]=[];}
5871this.recursiveSyncTransWaitingCompletion_ByPID[pid].push(tuple);},removeRecursiveTransaction(pid){const len=this.recursiveSyncTransWaitingCompletion_ByPID[pid].length;if(len===0){delete this.recursiveSyncTransWaitingCompletion_ByPID[pid];return;}
5872this.recursiveSyncTransWaitingCompletion_ByPID[pid].splice(len-1,1);},setCurrentReceiveOnPID(pid,tuple){if(this.receivedTransWaitingConversion[pid]===undefined){this.receivedTransWaitingConversion[pid]=[];}
5873this.receivedTransWaitingConversion[pid].push(tuple);},getPriorReceiveOnPID(pid){if(this.receivedTransWaitingConversion[pid]===undefined){return false;}
5874const len=this.receivedTransWaitingConversion[pid].length;if(len===0)return false;return this.receivedTransWaitingConversion[pid].splice(len-1,1)[0];},addSyncTransNeedingCompletion(transactionkey,tuple){const dict=this.syncTransWaitingCompletion;dict[transactionkey]=tuple;},getSyncTransNeedsCompletion(transactionkey){const ret=this.syncTransWaitingCompletion[transactionkey];if(ret===undefined)return false;delete this.syncTransWaitingCompletion[transactionkey];return ret;},getTransactionWaitingForRecv(transactionkey){const ret=this.transWaitingRecv[transactionkey];if(ret===undefined)return false;delete this.transWaitingRecv[transactionkey];return ret;},addTransactionWaitingForRecv(transactionkey,transaction){this.transWaitingRecv[transactionkey]=transaction;},generateFlow(from,to,fromTrans,toTrans){const title='Transaction from : '+
5875this.pid2name(fromTrans.calling_pid)+' From PID: '+fromTrans.calling_pid+' to pid: '+
5876toTrans.calling_pid+' Thread Name: '+this.pid2name(toTrans.calling_pid);const ts=from.start;const flow=new tr.model.FlowEvent('binder','binder',title,1,ts,[]);flow.startSlice=from;flow.endSlice=to;flow.start=from.start;flow.duration=to.start-ts;from.outFlowEvents.push(flow);to.inFlowEvents.push(flow);return flow;},generateArgsForSlice(tgid,pid,name,kthread){return{'Thread Name':name,pid,'gid':tgid};},pid2name(pid){return this.kthreadlookup[pid];},doNameMappings(pid,tgid,name){this.registerPidName(pid,name);this.registerPidName(tgid,name);},registerPidName(pid,name){if(this.pid2name(pid)===undefined){this.kthreadlookup[pid]=name;}}};Parser.register(BinderParser);return{BinderParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function BusParser(importer){Parser.call(this,importer);importer.registerEventHandler('memory_bus_usage',BusParser.prototype.traceMarkWriteBusEvent.bind(this));this.model_=importer.model_;this.ppids_={};}
5877BusParser.prototype={__proto__:Parser.prototype,traceMarkWriteBusEvent(eventName,cpuNumber,pid,ts,eventBase,threadName){const re=new RegExp('bus=(\\S+) rw_bytes=(\\d+) r_bytes=(\\d+) '+'w_bytes=(\\d+) cycles=(\\d+) ns=(\\d+)');const event=re.exec(eventBase.details);const name=event[1];const rwBytes=parseInt(event[2]);const rBytes=parseInt(event[3]);const wBytes=parseInt(event[4]);const cycles=parseInt(event[5]);const ns=parseInt(event[6]);const sec=tr.b.convertUnit(ns,tr.b.UnitPrefixScale.METRIC.NANO,tr.b.UnitPrefixScale.METRIC.NONE);const readBandwidthInBps=rBytes/sec;const readBandwidthInMiBps=tr.b.convertUnit(readBandwidthInBps,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI);const writeBandwidthInBps=wBytes/sec;const writeBandwidthInMiBps=tr.b.convertUnit(writeBandwidthInBps,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI);let ctr=this.model_.kernel.getOrCreateCounter(null,'bus '+name+' read');if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
5878ctr.series.forEach(function(series){series.addCounterSample(ts,readBandwidthInMiBps);});ctr=this.model_.kernel.getOrCreateCounter(null,'bus '+name+' write');if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
5879ctr.series.forEach(function(series){series.addCounterSample(ts,writeBandwidthInMiBps);});return true;}};Parser.register(BusParser);return{BusParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function ClockParser(importer){Parser.call(this,importer);importer.registerEventHandler('clock_set_rate',ClockParser.prototype.traceMarkWriteClockEvent.bind(this));importer.registerEventHandler('clk_set_rate',ClockParser.prototype.traceMarkWriteClkEvent.bind(this));importer.registerEventHandler('clock_enable',ClockParser.prototype.traceMarkWriteClockOnOffEvent.bind(this));importer.registerEventHandler('clock_disable',ClockParser.prototype.traceMarkWriteClockOnOffEvent.bind(this));importer.registerEventHandler('clk_enable',ClockParser.prototype.traceMarkWriteClkOnEvent.bind(this));importer.registerEventHandler('clk_disable',ClockParser.prototype.traceMarkWriteClkOffEvent.bind(this));this.model_=importer.model_;this.ppids_={};}
5880ClockParser.prototype={__proto__:Parser.prototype,clockMark(name,subName,value,ts){const ctr=this.model_.kernel.getOrCreateCounter(null,name+' '+subName);if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
5881ctr.series.forEach(function(series){series.addCounterSample(ts,value);});},traceMarkWriteClockEvent(eventName,cpuNumber,pid,ts,eventBase,threadName){const event=/(\S+) state=(\d+)/.exec(eventBase.details);const name=event[1];const rate=parseInt(event[2]);this.clockMark(name,'Frequency',rate,ts);return true;},traceMarkWriteClkEvent(eventName,cpuNumber,pid,ts,eventBase,threadName){const event=/(\S+) (\d+)/.exec(eventBase.details);const name=event[1];const rate=parseInt(event[2]);this.clockMark(name,'Frequency',rate,ts);return true;},traceMarkWriteClockOnOffEvent(eventName,cpuNumber,pid,ts,eventBase,threadName){const event=/(\S+) state=(\d+)/.exec(eventBase.details);const name=event[1];const state=parseInt(event[2]);this.clockMark(name,'State',state,ts);return true;},traceMarkWriteClkOnEvent(eventName,cpuNumber,pid,ts,eventBase,threadName){const event=/\S+/.exec(eventBase.details);const name=event[0];this.clockMark(name,'State',1,ts);return true;},traceMarkWriteClkOffEvent(eventName,cpuNumber,pid,ts,eventBase,threadName){const event=/\S+/.exec(eventBase.details);const name=event[0];this.clockMark(name,'State',0,ts);return true;}};Parser.register(ClockParser);return{ClockParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function CpufreqParser(importer){Parser.call(this,importer);importer.registerEventHandler('cpufreq_interactive_up',CpufreqParser.prototype.cpufreqUpDownEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_down',CpufreqParser.prototype.cpufreqUpDownEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_already',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_notyet',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_setspeed',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_target',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_boost',CpufreqParser.prototype.cpufreqBoostUnboostEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_unboost',CpufreqParser.prototype.cpufreqBoostUnboostEvent.bind(this));}
5882function splitData(input){const data={};const args=input.split(/\s+/);const len=args.length;for(let i=0;i<len;i++){const item=args[i].split('=');data[item[0]]=parseInt(item[1]);}
5883return data;}
5884CpufreqParser.prototype={__proto__:Parser.prototype,cpufreqSlice(ts,eventName,cpu,args){const kthread=this.importer.getOrCreatePseudoThread('cpufreq');kthread.openSlice=eventName;const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),ts,args,0);kthread.thread.sliceGroup.pushSlice(slice);},cpufreqBoostSlice(ts,eventName,args){const kthread=this.importer.getOrCreatePseudoThread('cpufreq_boost');kthread.openSlice=eventName;const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),ts,args,0);kthread.thread.sliceGroup.pushSlice(slice);},cpufreqUpDownEvent(eventName,cpuNumber,pid,ts,eventBase){const data=splitData(eventBase.details);this.cpufreqSlice(ts,eventName,data.cpu,data);return true;},cpufreqTargetEvent(eventName,cpuNumber,pid,ts,eventBase){const data=splitData(eventBase.details);this.cpufreqSlice(ts,eventName,data.cpu,data);return true;},cpufreqBoostUnboostEvent(eventName,cpuNumber,pid,ts,eventBase){this.cpufreqBoostSlice(ts,eventName,{type:eventBase.details});return true;}};Parser.register(CpufreqParser);return{CpufreqParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function DiskParser(importer){Parser.call(this,importer);importer.registerEventHandler('f2fs_write_begin',DiskParser.prototype.f2fsWriteBeginEvent.bind(this));importer.registerEventHandler('f2fs_write_end',DiskParser.prototype.f2fsWriteEndEvent.bind(this));importer.registerEventHandler('f2fs_sync_file_enter',DiskParser.prototype.f2fsSyncFileEnterEvent.bind(this));importer.registerEventHandler('f2fs_sync_file_exit',DiskParser.prototype.f2fsSyncFileExitEvent.bind(this));importer.registerEventHandler('ext4_sync_file_enter',DiskParser.prototype.ext4SyncFileEnterEvent.bind(this));importer.registerEventHandler('ext4_sync_file_exit',DiskParser.prototype.ext4SyncFileExitEvent.bind(this));importer.registerEventHandler('ext4_da_write_begin',DiskParser.prototype.ext4WriteBeginEvent.bind(this));importer.registerEventHandler('ext4_da_write_end',DiskParser.prototype.ext4WriteEndEvent.bind(this));importer.registerEventHandler('block_rq_issue',DiskParser.prototype.blockRqIssueEvent.bind(this));importer.registerEventHandler('block_rq_complete',DiskParser.prototype.blockRqCompleteEvent.bind(this));}
5885DiskParser.prototype={__proto__:Parser.prototype,openAsyncSlice(ts,category,threadName,pid,key,name){const kthread=this.importer.getOrCreateKernelThread(category+':'+threadName,pid);const asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(category,name);const slice=new asyncSliceConstructor(category,name,ColorScheme.getColorIdForGeneralPurposeString(name),ts);slice.startThread=kthread.thread;if(!kthread.openAsyncSlices){kthread.openAsyncSlices={};}
5886kthread.openAsyncSlices[key]=slice;},closeAsyncSlice(ts,category,threadName,pid,key,args){const kthread=this.importer.getOrCreateKernelThread(category+':'+threadName,pid);if(kthread.openAsyncSlices){const slice=kthread.openAsyncSlices[key];if(slice){slice.duration=ts-slice.start;slice.args=args;slice.endThread=kthread.thread;slice.subSlices=[new tr.model.AsyncSlice(category,slice.title,slice.colorId,slice.start,slice.args,slice.duration)];kthread.thread.asyncSliceGroup.push(slice);delete kthread.openAsyncSlices[key];}}},f2fsWriteBeginEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev = \((\d+,\d+)\), ino = (\d+), pos = (\d+), len = (\d+), flags = (\d+)/.exec(eventBase.details);if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const pos=parseInt(event[3]);const len=parseInt(event[4]);const key=device+'-'+inode+'-'+pos+'-'+len;this.openAsyncSlice(ts,'f2fs',eventBase.threadName,eventBase.pid,key,'f2fs_write');return true;},f2fsWriteEndEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev = \((\d+,\d+)\), ino = (\d+), pos = (\d+), len = (\d+), copied = (\d+)/.exec(eventBase.details);if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const pos=parseInt(event[3]);const len=parseInt(event[4]);const error=parseInt(event[5])!==len;const key=device+'-'+inode+'-'+pos+'-'+len;this.closeAsyncSlice(ts,'f2fs',eventBase.threadName,eventBase.pid,key,{device,inode,error});return true;},ext4WriteBeginEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev (\d+,\d+) ino (\d+) pos (\d+) len (\d+) flags (\d+)/.exec(eventBase.details);if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const pos=parseInt(event[3]);const len=parseInt(event[4]);const key=device+'-'+inode+'-'+pos+'-'+len;this.openAsyncSlice(ts,'ext4',eventBase.threadName,eventBase.pid,key,'ext4_write');return true;},ext4WriteEndEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev (\d+,\d+) ino (\d+) pos (\d+) len (\d+) copied (\d+)/.exec(eventBase.details);if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const pos=parseInt(event[3]);const len=parseInt(event[4]);const error=parseInt(event[5])!==len;const key=device+'-'+inode+'-'+pos+'-'+len;this.closeAsyncSlice(ts,'ext4',eventBase.threadName,eventBase.pid,key,{device,inode,error});return true;},f2fsSyncFileEnterEvent(eventName,cpuNumber,pid,ts,eventBase){const event=new RegExp('dev = \\((\\d+,\\d+)\\), ino = (\\d+), pino = (\\d+), i_mode = (\\S+), '+'i_size = (\\d+), i_nlink = (\\d+), i_blocks = (\\d+), i_advise = (\\d+)').exec(eventBase.details);if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const key=device+'-'+inode;this.openAsyncSlice(ts,'f2fs',eventBase.threadName,eventBase.pid,key,'fsync');return true;},f2fsSyncFileExitEvent(eventName,cpuNumber,pid,ts,eventBase){const event=new RegExp('dev = \\((\\d+,\\d+)\\), ino = (\\d+), checkpoint is (\\S+), '+'datasync = (\\d+), ret = (\\d+)').exec(eventBase.details.replace('not needed','not_needed'));if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const error=parseInt(event[5]);const key=device+'-'+inode;this.closeAsyncSlice(ts,'f2fs',eventBase.threadName,eventBase.pid,key,{device,inode,error});return true;},ext4SyncFileEnterEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev (\d+,\d+) ino (\d+) parent (\d+) datasync (\d+)/.exec(eventBase.details);if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const datasync=(event[4]==='1')||(event[4]===1);const key=device+'-'+inode;const action=datasync?'fdatasync':'fsync';this.openAsyncSlice(ts,'ext4',eventBase.threadName,eventBase.pid,key,action);return true;},ext4SyncFileExitEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev (\d+,\d+) ino (\d+) ret (\d+)/.exec(eventBase.details);if(!event)return false;const device=event[1];const inode=parseInt(event[2]);const error=parseInt(event[3]);const key=device+'-'+inode;this.closeAsyncSlice(ts,'ext4',eventBase.threadName,eventBase.pid,key,{device,inode,error});return true;},blockRqIssueEvent(eventName,cpuNumber,pid,ts,eventBase){const event=new RegExp('(\\d+,\\d+) (F)?([DWRN])(F)?(A)?(S)?(M)? '+'\\d+ \\(.*\\) (\\d+) \\+ (\\d+) \\[.*\\]').exec(eventBase.details);if(!event)return false;let action;switch(event[3]){case'D':action='discard';break;case'W':action='write';break;case'R':action='read';break;case'N':action='none';break;default:action='unknown';break;}
5887if(event[2]){action+=' flush';}
5888if(event[4]==='F'){action+=' fua';}
5889if(event[5]==='A'){action+=' ahead';}
5890if(event[6]==='S'){action+=' sync';}
5891if(event[7]==='M'){action+=' meta';}
5892const device=event[1];const sector=parseInt(event[8]);const numSectors=parseInt(event[9]);const key=device+'-'+sector+'-'+numSectors;this.openAsyncSlice(ts,'block',eventBase.threadName,eventBase.pid,key,action);return true;},blockRqCompleteEvent(eventName,cpuNumber,pid,ts,eventBase){const event=new RegExp('(\\d+,\\d+) (F)?([DWRN])(F)?(A)?(S)?(M)? '+'\\(.*\\) (\\d+) \\+ (\\d+) \\[(.*)\\]').exec(eventBase.details);if(!event)return false;const device=event[1];const sector=parseInt(event[8]);const numSectors=parseInt(event[9]);const error=parseInt(event[10]);const key=device+'-'+sector+'-'+numSectors;this.closeAsyncSlice(ts,'block',eventBase.threadName,eventBase.pid,key,{device,sector,numSectors,error});return true;}};Parser.register(DiskParser);return{DiskParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function DrmParser(importer){Parser.call(this,importer);importer.registerEventHandler('drm_vblank_event',DrmParser.prototype.vblankEvent.bind(this));}
5893DrmParser.prototype={__proto__:Parser.prototype,drmVblankSlice(ts,eventName,args){const kthread=this.importer.getOrCreatePseudoThread('drm_vblank');kthread.openSlice=eventName;const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),ts,args,0);kthread.thread.sliceGroup.pushSlice(slice);},vblankEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/crtc=(\d+), seq=(\d+)/.exec(eventBase.details);if(!event)return false;const crtc=parseInt(event[1]);const seq=parseInt(event[2]);this.drmVblankSlice(ts,'vblank:'+crtc,{crtc,seq});return true;}};Parser.register(DrmParser);return{DrmParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function ExynosParser(importer){Parser.call(this,importer);importer.registerEventHandler('exynos_busfreq_target_int',ExynosParser.prototype.busfreqTargetIntEvent.bind(this));importer.registerEventHandler('exynos_busfreq_target_mif',ExynosParser.prototype.busfreqTargetMifEvent.bind(this));importer.registerEventHandler('exynos_page_flip_state',ExynosParser.prototype.pageFlipStateEvent.bind(this));}
5894ExynosParser.prototype={__proto__:Parser.prototype,exynosBusfreqSample(name,ts,frequency){const targetCpu=this.importer.getOrCreateCpu(0);const counter=targetCpu.getOrCreateCounter('',name);if(counter.numSeries===0){counter.addSeries(new tr.model.CounterSeries('frequency',ColorScheme.getColorIdForGeneralPurposeString(counter.name+'.'+'frequency')));}
5895counter.series.forEach(function(series){series.addCounterSample(ts,frequency);});},busfreqTargetIntEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/frequency=(\d+)/.exec(eventBase.details);if(!event)return false;this.exynosBusfreqSample('INT Frequency',ts,parseInt(event[1]));return true;},busfreqTargetMifEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/frequency=(\d+)/.exec(eventBase.details);if(!event)return false;this.exynosBusfreqSample('MIF Frequency',ts,parseInt(event[1]));return true;},exynosPageFlipStateOpenSlice(ts,pipe,fb,state){const kthread=this.importer.getOrCreatePseudoThread('exynos_flip_state (pipe:'+pipe+', fb:'+fb+')');kthread.openSliceTS=ts;kthread.openSlice=state;},exynosPageFlipStateCloseSlice(ts,pipe,fb,args){const kthread=this.importer.getOrCreatePseudoThread('exynos_flip_state (pipe:'+pipe+', fb:'+fb+')');if(kthread.openSlice){const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),kthread.openSliceTS,args,ts-kthread.openSliceTS);kthread.thread.sliceGroup.pushSlice(slice);}
5896kthread.openSlice=undefined;},pageFlipStateEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/pipe=(\d+), fb=(\d+), state=(.*)/.exec(eventBase.details);if(!event)return false;const pipe=parseInt(event[1]);const fb=parseInt(event[2]);const state=event[3];this.exynosPageFlipStateCloseSlice(ts,pipe,fb,{pipe,fb});if(state!=='flipped'){this.exynosPageFlipStateOpenSlice(ts,pipe,fb,state);}
5897return true;}};Parser.register(ExynosParser);return{ExynosParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const Parser=tr.e.importer.linux_perf.Parser;function GestureParser(importer){Parser.call(this,importer);importer.registerEventHandler('tracing_mark_write:log',GestureParser.prototype.logEvent.bind(this));importer.registerEventHandler('tracing_mark_write:SyncInterpret',GestureParser.prototype.syncEvent.bind(this));importer.registerEventHandler('tracing_mark_write:HandleTimer',GestureParser.prototype.timerEvent.bind(this));}
5898GestureParser.prototype={__proto__:Parser.prototype,gestureOpenSlice(title,ts,opt_args){const thread=this.importer.getOrCreatePseudoThread('gesture').thread;thread.sliceGroup.beginSlice('touchpad_gesture',title,ts,opt_args);},gestureCloseSlice(title,ts){const thread=this.importer.getOrCreatePseudoThread('gesture').thread;if(thread.sliceGroup.openSliceCount){const slice=thread.sliceGroup.mostRecentlyOpenedPartialSlice;if(slice.title!==title){this.importer.model.importWarning({type:'title_match_error',message:'Titles do not match. Title is '+
5899slice.title+' in openSlice, and is '+
5900title+' in endSlice'});}else{thread.sliceGroup.endSlice(ts);}}},logEvent(eventName,cpuNumber,pid,ts,eventBase){const innerEvent=/^\s*(\w+):\s*(\w+)$/.exec(eventBase.details);switch(innerEvent[1]){case'start':this.gestureOpenSlice('GestureLog',ts,{name:innerEvent[2]});break;case'end':this.gestureCloseSlice('GestureLog',ts);}
5901return true;},syncEvent(eventName,cpuNumber,pid,ts,eventBase){const innerEvent=/^\s*(\w+):\s*(\w+)$/.exec(eventBase.details);switch(innerEvent[1]){case'start':this.gestureOpenSlice('SyncInterpret',ts,{interpreter:innerEvent[2]});break;case'end':this.gestureCloseSlice('SyncInterpret',ts);}
5902return true;},timerEvent(eventName,cpuNumber,pid,ts,eventBase){const innerEvent=/^\s*(\w+):\s*(\w+)$/.exec(eventBase.details);switch(innerEvent[1]){case'start':this.gestureOpenSlice('HandleTimer',ts,{interpreter:innerEvent[2]});break;case'end':this.gestureCloseSlice('HandleTimer',ts);}
5903return true;}};Parser.register(GestureParser);return{GestureParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function I2cParser(importer){Parser.call(this,importer);importer.registerEventHandler('i2c_write',I2cParser.prototype.i2cWriteEvent.bind(this));importer.registerEventHandler('i2c_read',I2cParser.prototype.i2cReadEvent.bind(this));importer.registerEventHandler('i2c_reply',I2cParser.prototype.i2cReplyEvent.bind(this));importer.registerEventHandler('i2c_result',I2cParser.prototype.i2cResultEvent.bind(this));}
5904const i2cWriteReplyRE=new RegExp('i2c-(\\d+) #(\\d+) a=([\\da-fA-F]+) f=([\\da-fA-F]+) l=(\\d+) '+'(\\[[\\da-fA-F\\-]+\\])');const i2cReadRE=/i2c-(\d+) #(\d+) a=([\da-fA-F]+) f=([\da-fA-F]+) l=(\d+)/;const i2cResultRE=/i2c-(\d+) n=(\d+) ret=(\d+)/;I2cParser.prototype={__proto__:Parser.prototype,i2cWriteEvent(eventName,cpuNumber,pid,ts,eventBase){const event=i2cWriteReplyRE.exec(eventBase.details);if(!event)return false;const adapterNumber=parseInt(event[1]);const messageNumber=event[2];const address=event[3];const flags=event[4];const dataLength=event[5];const data=event[6];const thread=this.importer.getOrCreatePseudoThread('i2c adapter '+adapterNumber);pushLastSliceIfNeeded(thread,event[1],ts);thread.lastEntryTitle='i2c write';thread.lastEntryTs=ts;thread.lastEntryArgs={'Message number':messageNumber,'Address':address,'Flags':flags,'Data Length':dataLength,'Data':data};return true;},i2cReadEvent(eventName,cpuNumber,pid,ts,eventBase){const event=i2cReadRE.exec(eventBase.details);if(!event)return false;const adapterNumber=parseInt(event[1]);const messageNumber=event[2];const address=event[3];const flags=event[4];const dataLength=event[5];const thread=this.importer.getOrCreatePseudoThread('i2c adapter '+adapterNumber);pushLastSliceIfNeeded(thread,event[1],ts);thread.lastEntryTitle='i2c read';thread.lastEntryTs=ts;thread.lastEntryArgs={'Message number':messageNumber,'Address':address,'Flags':flags,'Data Length':dataLength};return true;},i2cReplyEvent(eventName,cpuNumber,pid,ts,eventBase){const event=i2cWriteReplyRE.exec(eventBase.details);if(!event)return false;const adapterNumber=parseInt(event[1]);const messageNumber=event[2];const address=event[3];const flags=event[4];const dataLength=event[5];const data=event[6];const thread=this.importer.getOrCreatePseudoThread('i2c adapter '+adapterNumber);pushLastSliceIfNeeded(thread,event[1],ts);thread.lastEntryTitle='i2c reply';thread.lastEntryTs=ts;thread.lastEntryArgs={'Message number':messageNumber,'Address':address,'Flags':flags,'Data Length':dataLength,'Data':data};return true;},i2cResultEvent(eventName,cpuNumber,pid,ts,eventBase){const event=i2cResultRE.exec(eventBase.details);if(!event)return false;const adapterNumber=parseInt(event[1]);const numMessages=event[2];const ret=event[3];const thread=this.importer.getOrCreatePseudoThread('i2c adapter '+adapterNumber);const args=thread.lastEntryArgs;if(args!==undefined){args['Number of messages']=numMessages;args.Return=ret;}
5905pushLastSliceIfNeeded(thread,event[1],ts);thread.lastEntryTitle=undefined;thread.lastEntryTs=undefined;thread.lastEntryArgs=undefined;return true;},};function pushLastSliceIfNeeded(thread,id,currentTs){if(thread.lastEntryTs!==undefined){const duration=currentTs-thread.lastEntryTs;const slice=new tr.model.ThreadSlice('',thread.lastEntryTitle,ColorScheme.getColorIdForGeneralPurposeString(id),thread.lastEntryTs,thread.lastEntryArgs,duration);thread.thread.sliceGroup.pushSlice(slice);}}
5906Parser.register(I2cParser);return{I2cParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function I915Parser(importer){Parser.call(this,importer);importer.registerEventHandler('i915_gem_object_create',I915Parser.prototype.gemObjectCreateEvent.bind(this));importer.registerEventHandler('i915_gem_object_bind',I915Parser.prototype.gemObjectBindEvent.bind(this));importer.registerEventHandler('i915_gem_object_unbind',I915Parser.prototype.gemObjectBindEvent.bind(this));importer.registerEventHandler('i915_gem_object_change_domain',I915Parser.prototype.gemObjectChangeDomainEvent.bind(this));importer.registerEventHandler('i915_gem_object_pread',I915Parser.prototype.gemObjectPreadWriteEvent.bind(this));importer.registerEventHandler('i915_gem_object_pwrite',I915Parser.prototype.gemObjectPreadWriteEvent.bind(this));importer.registerEventHandler('i915_gem_object_fault',I915Parser.prototype.gemObjectFaultEvent.bind(this));importer.registerEventHandler('i915_gem_object_clflush',I915Parser.prototype.gemObjectDestroyEvent.bind(this));importer.registerEventHandler('i915_gem_object_destroy',I915Parser.prototype.gemObjectDestroyEvent.bind(this));importer.registerEventHandler('i915_gem_ring_dispatch',I915Parser.prototype.gemRingDispatchEvent.bind(this));importer.registerEventHandler('i915_gem_ring_flush',I915Parser.prototype.gemRingFlushEvent.bind(this));importer.registerEventHandler('i915_gem_request',I915Parser.prototype.gemRequestEvent.bind(this));importer.registerEventHandler('i915_gem_request_add',I915Parser.prototype.gemRequestEvent.bind(this));importer.registerEventHandler('i915_gem_request_complete',I915Parser.prototype.gemRequestEvent.bind(this));importer.registerEventHandler('i915_gem_request_retire',I915Parser.prototype.gemRequestEvent.bind(this));importer.registerEventHandler('i915_gem_request_wait_begin',I915Parser.prototype.gemRequestEvent.bind(this));importer.registerEventHandler('i915_gem_request_wait_end',I915Parser.prototype.gemRequestEvent.bind(this));importer.registerEventHandler('i915_gem_ring_wait_begin',I915Parser.prototype.gemRingWaitEvent.bind(this));importer.registerEventHandler('i915_gem_ring_wait_end',I915Parser.prototype.gemRingWaitEvent.bind(this));importer.registerEventHandler('i915_reg_rw',I915Parser.prototype.regRWEvent.bind(this));importer.registerEventHandler('i915_flip_request',I915Parser.prototype.flipEvent.bind(this));importer.registerEventHandler('i915_flip_complete',I915Parser.prototype.flipEvent.bind(this));importer.registerEventHandler('intel_gpu_freq_change',I915Parser.prototype.gpuFrequency.bind(this));}
5907I915Parser.prototype={__proto__:Parser.prototype,i915FlipOpenSlice(ts,obj,plane){const kthread=this.importer.getOrCreatePseudoThread('i915_flip');kthread.openSliceTS=ts;kthread.openSlice='flip:'+obj+'/'+plane;},i915FlipCloseSlice(ts,args){const kthread=this.importer.getOrCreatePseudoThread('i915_flip');if(kthread.openSlice){const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),kthread.openSliceTS,args,ts-kthread.openSliceTS);kthread.thread.sliceGroup.pushSlice(slice);}
5908kthread.openSlice=undefined;},i915GemObjectSlice(ts,eventName,obj,args){const kthread=this.importer.getOrCreatePseudoThread('i915_gem');kthread.openSlice=eventName+':'+obj;const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),ts,args,0);kthread.thread.sliceGroup.pushSlice(slice);},i915GemRingSlice(ts,eventName,dev,ring,args){const kthread=this.importer.getOrCreatePseudoThread('i915_gem_ring');kthread.openSlice=eventName+':'+dev+'.'+ring;const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),ts,args,0);kthread.thread.sliceGroup.pushSlice(slice);},i915RegSlice(ts,eventName,reg,args){const kthread=this.importer.getOrCreatePseudoThread('i915_reg');kthread.openSlice=eventName+':'+reg;const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),ts,args,0);kthread.thread.sliceGroup.pushSlice(slice);},i915FreqChangeSlice(ts,eventName,args){const kthread=this.importer.getOrCreatePseudoThread('i915_gpu_freq');kthread.openSlice=eventName;const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),ts,args,0);kthread.thread.sliceGroup.pushSlice(slice);},gemObjectCreateEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/obj=(\w+), size=(\d+)/.exec(eventBase.details);if(!event)return false;const obj=event[1];const size=parseInt(event[2]);this.i915GemObjectSlice(ts,eventName,obj,{obj,size});return true;},gemObjectBindEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/obj=(\w+), offset=(\w+), size=(\d+)/.exec(eventBase.details);if(!event)return false;const obj=event[1];const offset=event[2];const size=parseInt(event[3]);this.i915ObjectGemSlice(ts,eventName+':'+obj,{obj,offset,size});return true;},gemObjectChangeDomainEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/obj=(\w+), read=(\w+=>\w+), write=(\w+=>\w+)/.exec(eventBase.details);if(!event)return false;const obj=event[1];const read=event[2];const write=event[3];this.i915GemObjectSlice(ts,eventName,obj,{obj,read,write});return true;},gemObjectPreadWriteEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/obj=(\w+), offset=(\d+), len=(\d+)/.exec(eventBase.details);if(!event)return false;const obj=event[1];const offset=parseInt(event[2]);const len=parseInt(event[3]);this.i915GemObjectSlice(ts,eventName,obj,{obj,offset,len});return true;},gemObjectFaultEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/obj=(\w+), (\w+) index=(\d+)/.exec(eventBase.details);if(!event)return false;const obj=event[1];const type=event[2];const index=parseInt(event[3]);this.i915GemObjectSlice(ts,eventName,obj,{obj,type,index});return true;},gemObjectDestroyEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/obj=(\w+)/.exec(eventBase.details);if(!event)return false;const obj=event[1];this.i915GemObjectSlice(ts,eventName,obj,{obj});return true;},gemRingDispatchEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev=(\d+), ring=(\d+), seqno=(\d+)/.exec(eventBase.details);if(!event)return false;const dev=parseInt(event[1]);const ring=parseInt(event[2]);const seqno=parseInt(event[3]);this.i915GemRingSlice(ts,eventName,dev,ring,{dev,ring,seqno});return true;},gemRingFlushEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev=(\d+), ring=(\w+), invalidate=(\w+), flush=(\w+)/.exec(eventBase.details);if(!event)return false;const dev=parseInt(event[1]);const ring=parseInt(event[2]);const invalidate=event[3];const flush=event[4];this.i915GemRingSlice(ts,eventName,dev,ring,{dev,ring,invalidate,flush});return true;},gemRequestEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev=(\d+), ring=(\d+), seqno=(\d+)/.exec(eventBase.details);if(!event)return false;const dev=parseInt(event[1]);const ring=parseInt(event[2]);const seqno=parseInt(event[3]);this.i915GemRingSlice(ts,eventName,dev,ring,{dev,ring,seqno});return true;},gemRingWaitEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/dev=(\d+), ring=(\d+)/.exec(eventBase.details);if(!event)return false;const dev=parseInt(event[1]);const ring=parseInt(event[2]);this.i915GemRingSlice(ts,eventName,dev,ring,{dev,ring});return true;},regRWEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/(\w+) reg=(\w+), len=(\d+), val=(\(\w+, \w+\))/.exec(eventBase.details);if(!event)return false;const rw=event[1];const reg=event[2];const len=event[3];const data=event[3];this.i915RegSlice(ts,rw,reg,{rw,reg,len,data});return true;},flipEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/plane=(\d+), obj=(\w+)/.exec(eventBase.details);if(!event)return false;const plane=parseInt(event[1]);const obj=event[2];if(eventName==='i915_flip_request'){this.i915FlipOpenSlice(ts,obj,plane);}else{this.i915FlipCloseSlice(ts,{obj,plane});}
5909return true;},gpuFrequency(eventName,cpuNumver,pid,ts,eventBase){const event=/new_freq=(\d+)/.exec(eventBase.details);if(!event)return false;const freq=parseInt(event[1]);this.i915FreqChangeSlice(ts,eventName,{freq});return true;}};Parser.register(I915Parser);return{I915Parser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function IrqParser(importer){Parser.call(this,importer);importer.registerEventHandler('irq_handler_entry',IrqParser.prototype.irqHandlerEntryEvent.bind(this));importer.registerEventHandler('irq_handler_exit',IrqParser.prototype.irqHandlerExitEvent.bind(this));importer.registerEventHandler('softirq_raise',IrqParser.prototype.softirqRaiseEvent.bind(this));importer.registerEventHandler('softirq_entry',IrqParser.prototype.softirqEntryEvent.bind(this));importer.registerEventHandler('softirq_exit',IrqParser.prototype.softirqExitEvent.bind(this));importer.registerEventHandler('ipi_entry',IrqParser.prototype.ipiEntryEvent.bind(this));importer.registerEventHandler('ipi_exit',IrqParser.prototype.ipiExitEvent.bind(this));importer.registerEventHandler('preempt_disable',IrqParser.prototype.preemptStartEvent.bind(this));importer.registerEventHandler('preempt_enable',IrqParser.prototype.preemptEndEvent.bind(this));importer.registerEventHandler('irq_disable',IrqParser.prototype.irqoffStartEvent.bind(this));importer.registerEventHandler('irq_enable',IrqParser.prototype.irqoffEndEvent.bind(this));}
5910const irqHandlerEntryRE=/irq=(\d+) name=(.+)/;const irqHandlerExitRE=/irq=(\d+) ret=(.+)/;const softirqRE=/vec=(\d+) \[action=(.+)\]/;const ipiHandlerExitRE=/\((.+)\)/;const preemptirqRE=/caller=(.+) parent=(.+)/;IrqParser.prototype={__proto__:Parser.prototype,irqHandlerEntryEvent(eventName,cpuNumber,pid,ts,eventBase){const event=irqHandlerEntryRE.exec(eventBase.details);if(!event)return false;const irq=parseInt(event[1]);const name=event[2];const thread=this.importer.getOrCreatePseudoThread('irqs cpu '+cpuNumber);thread.lastEntryTs=ts;thread.irqName=name;return true;},irqHandlerExitEvent(eventName,cpuNumber,pid,ts,eventBase){const event=irqHandlerExitRE.exec(eventBase.details);if(!event)return false;const irq=parseInt(event[1]);const ret=event[2];const thread=this.importer.getOrCreatePseudoThread('irqs cpu '+cpuNumber);if(thread.lastEntryTs!==undefined){const duration=ts-thread.lastEntryTs;const slice=new tr.model.ThreadSlice('','IRQ ('+thread.irqName+')',ColorScheme.getColorIdForGeneralPurposeString(event[1]),thread.lastEntryTs,{ret},duration);thread.thread.sliceGroup.pushSlice(slice);}
5911thread.lastEntryTs=undefined;thread.irqName=undefined;return true;},softirqRaiseEvent(eventName,cpuNumber,pid,ts,eventBase){return true;},softirqEntryEvent(eventName,cpuNumber,pid,ts,eventBase){const event=softirqRE.exec(eventBase.details);if(!event)return false;const action=event[2];const thread=this.importer.getOrCreatePseudoThread('softirq cpu '+cpuNumber);thread.lastEntryTs=ts;return true;},softirqExitEvent(eventName,cpuNumber,pid,ts,eventBase){const event=softirqRE.exec(eventBase.details);if(!event)return false;const vec=parseInt(event[1]);const action=event[2];const thread=this.importer.getOrCreatePseudoThread('softirq cpu '+cpuNumber);if(thread.lastEntryTs!==undefined){const duration=ts-thread.lastEntryTs;const slice=new tr.model.ThreadSlice('',action,ColorScheme.getColorIdForGeneralPurposeString(event[1]),thread.lastEntryTs,{vec},duration);thread.thread.sliceGroup.pushSlice(slice);}
5912thread.lastEntryTs=undefined;return true;},ipiEntryEvent(eventName,cpuNumber,pid,ts,eventBase){const thread=this.importer.getOrCreatePseudoThread('irqs cpu '+cpuNumber);thread.lastEntryTs=ts;return true;},ipiExitEvent(eventName,cpuNumber,pid,ts,eventBase){const event=ipiHandlerExitRE.exec(eventBase.details);if(!event)return false;const ipiName=event[1];const thread=this.importer.getOrCreatePseudoThread('irqs cpu '+cpuNumber);if(thread.lastEntryTs!==undefined){const duration=ts-thread.lastEntryTs;const slice=new tr.model.ThreadSlice('','IPI ('+ipiName+')',ColorScheme.getColorIdForGeneralPurposeString(ipiName),thread.lastEntryTs,{},duration);thread.thread.sliceGroup.pushSlice(slice);}
5913thread.lastEntryTs=undefined;return true;},preemptStartEvent(eventName,cpuNumber,pid,ts,eventBase){const event=preemptirqRE.exec(eventBase.details);if(!event)return false;const thread=this.importer.getOrCreatePseudoThread('preempt cpu '+cpuNumber);thread.lastEntryTs=ts;thread.preemptStartCaller=event[1];thread.preemptStartParent=event[2];return true;},preemptEndEvent(eventName,cpuNumber,pid,ts,eventBase){const event=preemptirqRE.exec(eventBase.details);if(!event)return false;const thread=this.importer.getOrCreatePseudoThread('preempt cpu '+cpuNumber);thread.preemptEndCaller=event[1];thread.preemptEndParent=event[2];if(thread.lastEntryTs!==undefined){const duration=ts-thread.lastEntryTs;const slice=new tr.model.ThreadSlice('',thread.preemptStartParent+': '+thread.preemptStartCaller,ColorScheme.getColorIdForGeneralPurposeString(thread.preemptEndCaller),thread.lastEntryTs,{},duration);thread.thread.sliceGroup.pushSlice(slice);}
5914thread.lastEntryTs=undefined;return true;},irqoffStartEvent(eventName,cpuNumber,pid,ts,eventBase){const event=preemptirqRE.exec(eventBase.details);if(!event)return false;const thread=this.importer.getOrCreatePseudoThread('irqoff cpu '+cpuNumber);thread.lastEntryTs=ts;thread.irqoffStartCaller=event[1];thread.irqoffStartParent=event[2];return true;},irqoffEndEvent(eventName,cpuNumber,pid,ts,eventBase){const event=preemptirqRE.exec(eventBase.details);if(!event)return false;const thread=this.importer.getOrCreatePseudoThread('irqoff cpu '+cpuNumber);thread.irqoffEndCaller=event[1];thread.irqoffEndParent=event[2];if(thread.lastEntryTs!==undefined){const duration=ts-thread.lastEntryTs;const slice=new tr.model.ThreadSlice('',thread.irqoffStartParent+': '+thread.irqoffStartCaller,ColorScheme.getColorIdForGeneralPurposeString(thread.irqoffEndCaller),thread.lastEntryTs,{},duration);thread.thread.sliceGroup.pushSlice(slice);}
5915thread.lastEntryTs=undefined;return true;}};Parser.register(IrqParser);return{IrqParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const LinuxPerfParser=tr.e.importer.linux_perf.Parser;function KernelFuncParser(importer){LinuxPerfParser.call(this,importer);importer.registerEventHandler('graph_ent',KernelFuncParser.prototype.traceKernelFuncEnterEvent.bind(this));importer.registerEventHandler('graph_ret',KernelFuncParser.prototype.traceKernelFuncReturnEvent.bind(this));this.model_=importer.model_;this.ppids_={};}
5916const TestExports={};const funcEnterRE=new RegExp('func=(.+)');TestExports.funcEnterRE=funcEnterRE;KernelFuncParser.prototype={__proto__:LinuxPerfParser.prototype,traceKernelFuncEnterEvent(eventName,cpuNumber,pid,ts,eventBase){const eventData=funcEnterRE.exec(eventBase.details);if(!eventData)return false;if(eventBase.tgid===undefined){return false;}
5917const tgid=parseInt(eventBase.tgid);const name=eventData[1];const thread=this.model_.getOrCreateProcess(tgid).getOrCreateThread(pid);thread.name=eventBase.threadName;const slices=thread.kernelSliceGroup;if(!slices.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'parse_error',message:'Timestamps are moving backward.'});return false;}
5918const slice=slices.beginSlice(null,name,ts,{});return true;},traceKernelFuncReturnEvent(eventName,cpuNumber,pid,ts,eventBase){if(eventBase.tgid===undefined){return false;}
5919const tgid=parseInt(eventBase.tgid);const thread=this.model_.getOrCreateProcess(tgid).getOrCreateThread(pid);thread.name=eventBase.threadName;const slices=thread.kernelSliceGroup;if(!slices.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'parse_error',message:'Timestamps are moving backward.'});return false;}
5920if(slices.openSliceCount>0){slices.endSlice(ts);}
5921return true;}};LinuxPerfParser.register(KernelFuncParser);return{KernelFuncParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function MaliParser(importer){Parser.call(this,importer);importer.registerEventHandler('mali_dvfs_event',MaliParser.prototype.dvfsEventEvent.bind(this));importer.registerEventHandler('mali_dvfs_set_clock',MaliParser.prototype.dvfsSetClockEvent.bind(this));importer.registerEventHandler('mali_dvfs_set_voltage',MaliParser.prototype.dvfsSetVoltageEvent.bind(this));this.addJMCounter('mali_hwc_MESSAGES_SENT','Messages Sent');this.addJMCounter('mali_hwc_MESSAGES_RECEIVED','Messages Received');this.addJMCycles('mali_hwc_GPU_ACTIVE','GPU Active');this.addJMCycles('mali_hwc_IRQ_ACTIVE','IRQ Active');for(let i=0;i<7;i++){const jobStr='JS'+i;const jobHWCStr='mali_hwc_'+jobStr;this.addJMCounter(jobHWCStr+'_JOBS',jobStr+' Jobs');this.addJMCounter(jobHWCStr+'_TASKS',jobStr+' Tasks');this.addJMCycles(jobHWCStr+'_ACTIVE',jobStr+' Active');this.addJMCycles(jobHWCStr+'_WAIT_READ',jobStr+' Wait Read');this.addJMCycles(jobHWCStr+'_WAIT_ISSUE',jobStr+' Wait Issue');this.addJMCycles(jobHWCStr+'_WAIT_DEPEND',jobStr+' Wait Depend');this.addJMCycles(jobHWCStr+'_WAIT_FINISH',jobStr+' Wait Finish');}
5922this.addTilerCounter('mali_hwc_TRIANGLES','Triangles');this.addTilerCounter('mali_hwc_QUADS','Quads');this.addTilerCounter('mali_hwc_POLYGONS','Polygons');this.addTilerCounter('mali_hwc_POINTS','Points');this.addTilerCounter('mali_hwc_LINES','Lines');this.addTilerCounter('mali_hwc_VCACHE_HIT','VCache Hit');this.addTilerCounter('mali_hwc_VCACHE_MISS','VCache Miss');this.addTilerCounter('mali_hwc_FRONT_FACING','Front Facing');this.addTilerCounter('mali_hwc_BACK_FACING','Back Facing');this.addTilerCounter('mali_hwc_PRIM_VISIBLE','Prim Visible');this.addTilerCounter('mali_hwc_PRIM_CULLED','Prim Culled');this.addTilerCounter('mali_hwc_PRIM_CLIPPED','Prim Clipped');this.addTilerCounter('mali_hwc_WRBUF_HIT','Wrbuf Hit');this.addTilerCounter('mali_hwc_WRBUF_MISS','Wrbuf Miss');this.addTilerCounter('mali_hwc_WRBUF_LINE','Wrbuf Line');this.addTilerCounter('mali_hwc_WRBUF_PARTIAL','Wrbuf Partial');this.addTilerCounter('mali_hwc_WRBUF_STALL','Wrbuf Stall');this.addTilerCycles('mali_hwc_ACTIVE','Tiler Active');this.addTilerCycles('mali_hwc_INDEX_WAIT','Index Wait');this.addTilerCycles('mali_hwc_INDEX_RANGE_WAIT','Index Range Wait');this.addTilerCycles('mali_hwc_VERTEX_WAIT','Vertex Wait');this.addTilerCycles('mali_hwc_PCACHE_WAIT','Pcache Wait');this.addTilerCycles('mali_hwc_WRBUF_WAIT','Wrbuf Wait');this.addTilerCycles('mali_hwc_BUS_READ','Bus Read');this.addTilerCycles('mali_hwc_BUS_WRITE','Bus Write');this.addTilerCycles('mali_hwc_TILER_UTLB_STALL','Tiler UTLB Stall');this.addTilerCycles('mali_hwc_TILER_UTLB_HIT','Tiler UTLB Hit');this.addFragCycles('mali_hwc_FRAG_ACTIVE','Active');this.addFragCounter('mali_hwc_FRAG_PRIMATIVES','Primitives');this.addFragCounter('mali_hwc_FRAG_PRIMATIVES_DROPPED','Primitives Dropped');this.addFragCycles('mali_hwc_FRAG_CYCLE_DESC','Descriptor Processing');this.addFragCycles('mali_hwc_FRAG_CYCLES_PLR','PLR Processing??');this.addFragCycles('mali_hwc_FRAG_CYCLES_VERT','Vertex Processing');this.addFragCycles('mali_hwc_FRAG_CYCLES_TRISETUP','Triangle Setup');this.addFragCycles('mali_hwc_FRAG_CYCLES_RAST','Rasterization???');this.addFragCounter('mali_hwc_FRAG_THREADS','Threads');this.addFragCounter('mali_hwc_FRAG_DUMMY_THREADS','Dummy Threads');this.addFragCounter('mali_hwc_FRAG_QUADS_RAST','Quads Rast');this.addFragCounter('mali_hwc_FRAG_QUADS_EZS_TEST','Quads EZS Test');this.addFragCounter('mali_hwc_FRAG_QUADS_EZS_KILLED','Quads EZS Killed');this.addFragCounter('mali_hwc_FRAG_QUADS_LZS_TEST','Quads LZS Test');this.addFragCounter('mali_hwc_FRAG_QUADS_LZS_KILLED','Quads LZS Killed');this.addFragCycles('mali_hwc_FRAG_CYCLE_NO_TILE','No Tiles');this.addFragCounter('mali_hwc_FRAG_NUM_TILES','Tiles');this.addFragCounter('mali_hwc_FRAG_TRANS_ELIM','Transactions Eliminated');this.addComputeCycles('mali_hwc_COMPUTE_ACTIVE','Active');this.addComputeCounter('mali_hwc_COMPUTE_TASKS','Tasks');this.addComputeCounter('mali_hwc_COMPUTE_THREADS','Threads Started');this.addComputeCycles('mali_hwc_COMPUTE_CYCLES_DESC','Waiting for Descriptors');this.addTripipeCycles('mali_hwc_TRIPIPE_ACTIVE','Active');this.addArithCounter('mali_hwc_ARITH_WORDS','Instructions (/Pipes)');this.addArithCycles('mali_hwc_ARITH_CYCLES_REG','Reg scheduling stalls (/Pipes)');this.addArithCycles('mali_hwc_ARITH_CYCLES_L0','L0 cache miss stalls (/Pipes)');this.addArithCounter('mali_hwc_ARITH_FRAG_DEPEND','Frag dep check failures (/Pipes)');this.addLSCounter('mali_hwc_LS_WORDS','Instruction Words Completed');this.addLSCounter('mali_hwc_LS_ISSUES','Full Pipeline Issues');this.addLSCounter('mali_hwc_LS_RESTARTS','Restarts (unpairable insts)');this.addLSCounter('mali_hwc_LS_REISSUES_MISS','Pipeline reissue (cache miss/uTLB)');this.addLSCounter('mali_hwc_LS_REISSUES_VD','Pipeline reissue (varying data)');this.addLSCounter('mali_hwc_LS_REISSUE_ATTRIB_MISS','Pipeline reissue (attribute cache miss)');this.addLSCounter('mali_hwc_LS_REISSUE_NO_WB','Writeback not used');this.addTexCounter('mali_hwc_TEX_WORDS','Words');this.addTexCounter('mali_hwc_TEX_BUBBLES','Bubbles');this.addTexCounter('mali_hwc_TEX_WORDS_L0','Words L0');this.addTexCounter('mali_hwc_TEX_WORDS_DESC','Words Desc');this.addTexCounter('mali_hwc_TEX_THREADS','Threads');this.addTexCounter('mali_hwc_TEX_RECIRC_FMISS','Recirc due to Full Miss');this.addTexCounter('mali_hwc_TEX_RECIRC_DESC','Recirc due to Desc Miss');this.addTexCounter('mali_hwc_TEX_RECIRC_MULTI','Recirc due to Multipass');this.addTexCounter('mali_hwc_TEX_RECIRC_PMISS','Recirc due to Partial Cache Miss');this.addTexCounter('mali_hwc_TEX_RECIRC_CONF','Recirc due to Cache Conflict');this.addLSCCounter('mali_hwc_LSC_READ_HITS','Read Hits');this.addLSCCounter('mali_hwc_LSC_READ_MISSES','Read Misses');this.addLSCCounter('mali_hwc_LSC_WRITE_HITS','Write Hits');this.addLSCCounter('mali_hwc_LSC_WRITE_MISSES','Write Misses');this.addLSCCounter('mali_hwc_LSC_ATOMIC_HITS','Atomic Hits');this.addLSCCounter('mali_hwc_LSC_ATOMIC_MISSES','Atomic Misses');this.addLSCCounter('mali_hwc_LSC_LINE_FETCHES','Line Fetches');this.addLSCCounter('mali_hwc_LSC_DIRTY_LINE','Dirty Lines');this.addLSCCounter('mali_hwc_LSC_SNOOPS','Snoops');this.addAXICounter('mali_hwc_AXI_TLB_STALL','Address channel stall');this.addAXICounter('mali_hwc_AXI_TLB_MISS','Cache Miss');this.addAXICounter('mali_hwc_AXI_TLB_TRANSACTION','Transactions');this.addAXICounter('mali_hwc_LS_TLB_MISS','LS Cache Miss');this.addAXICounter('mali_hwc_LS_TLB_HIT','LS Cache Hit');this.addAXICounter('mali_hwc_AXI_BEATS_READ','Read Beats');this.addAXICounter('mali_hwc_AXI_BEATS_WRITE','Write Beats');this.addMMUCounter('mali_hwc_MMU_TABLE_WALK','Page Table Walks');this.addMMUCounter('mali_hwc_MMU_REPLAY_MISS','Cache Miss from Replay Buffer');this.addMMUCounter('mali_hwc_MMU_REPLAY_FULL','Replay Buffer Full');this.addMMUCounter('mali_hwc_MMU_NEW_MISS','Cache Miss on New Request');this.addMMUCounter('mali_hwc_MMU_HIT','Cache Hit');this.addMMUCycles('mali_hwc_UTLB_STALL','UTLB Stalled');this.addMMUCycles('mali_hwc_UTLB_REPLAY_MISS','UTLB Replay Miss');this.addMMUCycles('mali_hwc_UTLB_REPLAY_FULL','UTLB Replay Full');this.addMMUCycles('mali_hwc_UTLB_NEW_MISS','UTLB New Miss');this.addMMUCycles('mali_hwc_UTLB_HIT','UTLB Hit');this.addL2Counter('mali_hwc_L2_READ_BEATS','Read Beats');this.addL2Counter('mali_hwc_L2_WRITE_BEATS','Write Beats');this.addL2Counter('mali_hwc_L2_ANY_LOOKUP','Any Lookup');this.addL2Counter('mali_hwc_L2_READ_LOOKUP','Read Lookup');this.addL2Counter('mali_hwc_L2_SREAD_LOOKUP','Shareable Read Lookup');this.addL2Counter('mali_hwc_L2_READ_REPLAY','Read Replayed');this.addL2Counter('mali_hwc_L2_READ_SNOOP','Read Snoop');this.addL2Counter('mali_hwc_L2_READ_HIT','Read Cache Hit');this.addL2Counter('mali_hwc_L2_CLEAN_MISS','CleanUnique Miss');this.addL2Counter('mali_hwc_L2_WRITE_LOOKUP','Write Lookup');this.addL2Counter('mali_hwc_L2_SWRITE_LOOKUP','Shareable Write Lookup');this.addL2Counter('mali_hwc_L2_WRITE_REPLAY','Write Replayed');this.addL2Counter('mali_hwc_L2_WRITE_SNOOP','Write Snoop');this.addL2Counter('mali_hwc_L2_WRITE_HIT','Write Cache Hit');this.addL2Counter('mali_hwc_L2_EXT_READ_FULL','ExtRD with BIU Full');this.addL2Counter('mali_hwc_L2_EXT_READ_HALF','ExtRD with BIU >1/2 Full');this.addL2Counter('mali_hwc_L2_EXT_WRITE_FULL','ExtWR with BIU Full');this.addL2Counter('mali_hwc_L2_EXT_WRITE_HALF','ExtWR with BIU >1/2 Full');this.addL2Counter('mali_hwc_L2_EXT_READ','External Read (ExtRD)');this.addL2Counter('mali_hwc_L2_EXT_READ_LINE','ExtRD (linefill)');this.addL2Counter('mali_hwc_L2_EXT_WRITE','External Write (ExtWR)');this.addL2Counter('mali_hwc_L2_EXT_WRITE_LINE','ExtWR (linefill)');this.addL2Counter('mali_hwc_L2_EXT_WRITE_SMALL','ExtWR (burst size <64B)');this.addL2Counter('mali_hwc_L2_EXT_BARRIER','External Barrier');this.addL2Counter('mali_hwc_L2_EXT_AR_STALL','Address Read stalls');this.addL2Counter('mali_hwc_L2_EXT_R_BUF_FULL','Response Buffer full stalls');this.addL2Counter('mali_hwc_L2_EXT_RD_BUF_FULL','Read Data Buffer full stalls');this.addL2Counter('mali_hwc_L2_EXT_R_RAW','RAW hazard stalls');this.addL2Counter('mali_hwc_L2_EXT_W_STALL','Write Data stalls');this.addL2Counter('mali_hwc_L2_EXT_W_BUF_FULL','Write Data Buffer full');this.addL2Counter('mali_hwc_L2_EXT_R_W_HAZARD','WAW or WAR hazard stalls');this.addL2Counter('mali_hwc_L2_TAG_HAZARD','Tag hazard replays');this.addL2Cycles('mali_hwc_L2_SNOOP_FULL','Snoop buffer full');this.addL2Cycles('mali_hwc_L2_REPLAY_FULL','Replay buffer full');importer.registerEventHandler('tracing_mark_write:mali_driver',MaliParser.prototype.maliDDKEvent.bind(this));this.model_=importer.model_;}
5923MaliParser.prototype={__proto__:Parser.prototype,maliDDKOpenSlice(pid,tid,ts,func,blockinfo){const thread=this.importer.model_.getOrCreateProcess(pid).getOrCreateThread(tid);const funcArgs=/^([\w\d_]*)(?:\(\))?:?\s*(.*)$/.exec(func);thread.sliceGroup.beginSlice('gpu-driver',funcArgs[1],ts,{'args':funcArgs[2],blockinfo});},maliDDKCloseSlice(pid,tid,ts,args,blockinfo){const thread=this.importer.model_.getOrCreateProcess(pid).getOrCreateThread(tid);if(!thread.sliceGroup.openSliceCount){return;}
5924thread.sliceGroup.endSlice(ts);},autoDetectLineRE(line){const lineREWithThread=/^\s*\(([\w\-]*)\)\s*(\w+):\s*([\w\\\/\.\-]*@\d*):?\s*(.*)$/;if(lineREWithThread.test(line)){return lineREWithThread;}
5925const lineRENoThread=/^s*()(\w+):\s*([\w\\\/.\-]*):?\s*(.*)$/;if(lineRENoThread.test(line)){return lineRENoThread;}
5926return null;},lineRE:null,maliDDKEvent(eventName,cpuNumber,pid,ts,eventBase){if(this.lineRE===null){this.lineRE=this.autoDetectLineRE(eventBase.details);if(this.lineRE===null)return false;}
5927const maliEvent=this.lineRE.exec(eventBase.details);const tid=(maliEvent[1]===''?'mali':maliEvent[1]);switch(maliEvent[2]){case'cros_trace_print_enter':this.maliDDKOpenSlice(pid,tid,ts,maliEvent[4],maliEvent[3]);break;case'cros_trace_print_exit':this.maliDDKCloseSlice(pid,tid,ts,[],maliEvent[3]);}
5928return true;},dvfsSample(counterName,seriesName,ts,s){const value=parseInt(s);const counter=this.model_.kernel.getOrCreateCounter('DVFS',counterName);if(counter.numSeries===0){counter.addSeries(new tr.model.CounterSeries(seriesName,ColorScheme.getColorIdForGeneralPurposeString(counter.name)));}
5929counter.series.forEach(function(series){series.addCounterSample(ts,value);});},dvfsEventEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/utilization=(\d+)/.exec(eventBase.details);if(!event)return false;this.dvfsSample('DVFS Utilization','utilization',ts,event[1]);return true;},dvfsSetClockEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/frequency=(\d+)/.exec(eventBase.details);if(!event)return false;this.dvfsSample('DVFS Frequency','frequency',ts,event[1]);return true;},dvfsSetVoltageEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/voltage=(\d+)/.exec(eventBase.details);if(!event)return false;this.dvfsSample('DVFS Voltage','voltage',ts,event[1]);return true;},hwcSample(cat,counterName,seriesName,ts,eventBase){const event=/val=(\d+)/.exec(eventBase.details);if(!event)return false;const value=parseInt(event[1]);const counter=this.model_.kernel.getOrCreateCounter(cat,counterName);if(counter.numSeries===0){counter.addSeries(new tr.model.CounterSeries(seriesName,ColorScheme.getColorIdForGeneralPurposeString(counter.name)));}
5930counter.series.forEach(function(series){series.addCounterSample(ts,value);});return true;},jmSample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:jm','JM: '+ctrName,seriesName,ts,eventBase);},addJMCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.jmSample(hwcTitle,'count',ts,eventBase);}
5931this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addJMCycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.jmSample(hwcTitle,'cycles',ts,eventBase);}
5932this.importer.registerEventHandler(hwcEventName,handler.bind(this));},tilerSample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:tiler','Tiler: '+ctrName,seriesName,ts,eventBase);},addTilerCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.tilerSample(hwcTitle,'count',ts,eventBase);}
5933this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addTilerCycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.tilerSample(hwcTitle,'cycles',ts,eventBase);}
5934this.importer.registerEventHandler(hwcEventName,handler.bind(this));},fragSample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:fragment','Fragment: '+ctrName,seriesName,ts,eventBase);},addFragCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.fragSample(hwcTitle,'count',ts,eventBase);}
5935this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addFragCycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.fragSample(hwcTitle,'cycles',ts,eventBase);}
5936this.importer.registerEventHandler(hwcEventName,handler.bind(this));},computeSample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:compute','Compute: '+ctrName,seriesName,ts,eventBase);},addComputeCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.computeSample(hwcTitle,'count',ts,eventBase);}
5937this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addComputeCycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.computeSample(hwcTitle,'cycles',ts,eventBase);}
5938this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addTripipeCycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.hwcSample('mali:shader','Tripipe: '+hwcTitle,'cycles',ts,eventBase);}
5939this.importer.registerEventHandler(hwcEventName,handler.bind(this));},arithSample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:arith','Arith: '+ctrName,seriesName,ts,eventBase);},addArithCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.arithSample(hwcTitle,'count',ts,eventBase);}
5940this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addArithCycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.arithSample(hwcTitle,'cycles',ts,eventBase);}
5941this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addLSCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.hwcSample('mali:ls','LS: '+hwcTitle,'count',ts,eventBase);}
5942this.importer.registerEventHandler(hwcEventName,handler.bind(this));},textureSample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:texture','Texture: '+ctrName,seriesName,ts,eventBase);},addTexCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.textureSample(hwcTitle,'count',ts,eventBase);}
5943this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addLSCCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.hwcSample('mali:lsc','LSC: '+hwcTitle,'count',ts,eventBase);}
5944this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addAXICounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.hwcSample('mali:axi','AXI: '+hwcTitle,'count',ts,eventBase);}
5945this.importer.registerEventHandler(hwcEventName,handler.bind(this));},mmuSample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:mmu','MMU: '+ctrName,seriesName,ts,eventBase);},addMMUCounter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.mmuSample(hwcTitle,'count',ts,eventBase);}
5946this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addMMUCycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.mmuSample(hwcTitle,'cycles',ts,eventBase);}
5947this.importer.registerEventHandler(hwcEventName,handler.bind(this));},l2Sample(ctrName,seriesName,ts,eventBase){return this.hwcSample('mali:l2','L2: '+ctrName,seriesName,ts,eventBase);},addL2Counter(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.l2Sample(hwcTitle,'count',ts,eventBase);}
5948this.importer.registerEventHandler(hwcEventName,handler.bind(this));},addL2Cycles(hwcEventName,hwcTitle){function handler(eventName,cpuNumber,pid,ts,eventBase){return this.l2Sample(hwcTitle,'cycles',ts,eventBase);}
5949this.importer.registerEventHandler(hwcEventName,handler.bind(this));}};Parser.register(MaliParser);return{MaliParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const Parser=tr.e.importer.linux_perf.Parser;function MemReclaimParser(importer){Parser.call(this,importer);importer.registerEventHandler('mm_vmscan_kswapd_wake',MemReclaimParser.prototype.kswapdWake.bind(this));importer.registerEventHandler('mm_vmscan_kswapd_sleep',MemReclaimParser.prototype.kswapdSleep.bind(this));importer.registerEventHandler('mm_vmscan_direct_reclaim_begin',MemReclaimParser.prototype.reclaimBegin.bind(this));importer.registerEventHandler('mm_vmscan_direct_reclaim_end',MemReclaimParser.prototype.reclaimEnd.bind(this));importer.registerEventHandler('lowmemory_kill',MemReclaimParser.prototype.lowmemoryKill.bind(this));}
5950const kswapdWakeRE=/nid=(\d+) order=(\d+)/;const kswapdSleepRE=/nid=(\d+)/;const reclaimBeginRE=/order=(\d+) may_writepage=\d+ gfp_flags=(.+)/;const reclaimEndRE=/nr_reclaimed=(\d+)/;const lowmemoryRE=/([^ ]+) \((\d+)\), page cache (\d+)kB \(limit (\d+)kB\), free (-?\d+)Kb/;MemReclaimParser.prototype={__proto__:Parser.prototype,kswapdWake(eventName,cpuNumber,pid,ts,eventBase){const event=kswapdWakeRE.exec(eventBase.details);if(!event)return false;const tgid=parseInt(eventBase.tgid);const nid=parseInt(event[1]);const order=parseInt(event[2]);const kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,tgid,pid);if(kthread.openSliceTS){if(order>kthread.order){kthread.order=order;}}else{kthread.openSliceTS=ts;kthread.order=order;}
5951return true;},kswapdSleep(eventName,cpuNumber,pid,ts,eventBase){const tgid=parseInt(eventBase.tgid);const kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,tgid,pid);if(kthread.openSliceTS){kthread.thread.sliceGroup.pushCompleteSlice('memreclaim',eventBase.threadName,kthread.openSliceTS,ts-kthread.openSliceTS,0,0,{order:kthread.order});}
5952kthread.openSliceTS=undefined;kthread.order=undefined;return true;},reclaimBegin(eventName,cpuNumber,pid,ts,eventBase){const event=reclaimBeginRE.exec(eventBase.details);if(!event)return false;const order=parseInt(event[1]);const gfp=event[2];const tgid=parseInt(eventBase.tgid);const kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,tgid,pid);kthread.openSliceTS=ts;kthread.order=order;kthread.gfp=gfp;return true;},reclaimEnd(eventName,cpuNumber,pid,ts,eventBase){const event=reclaimEndRE.exec(eventBase.details);if(!event)return false;const nrReclaimed=parseInt(event[1]);const tgid=parseInt(eventBase.tgid);const kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,tgid,pid);if(kthread.openSliceTS!==undefined){kthread.thread.sliceGroup.pushCompleteSlice('memreclaim','direct reclaim',kthread.openSliceTS,ts-kthread.openSliceTS,0,0,{order:kthread.order,gfp:kthread.gfp,nr_reclaimed:nrReclaimed});}
5953kthread.openSliceTS=undefined;kthread.order=undefined;kthread.gfp=undefined;return true;},lowmemoryKill(eventName,cpuNumber,pid,ts,eventBase){const event=lowmemoryRE.exec(eventBase.details);if(!event)return false;const tgid=parseInt(eventBase.tgid);const killedName=event[1];const killedPid=parseInt(event[2]);const cache=parseInt(event[3]);const free=parseInt(event[5]);const kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,tgid,pid);kthread.thread.sliceGroup.pushCompleteSlice('lowmemory','low memory kill',ts,0,0,0,{killed_name:killedName,killed_pid:killedPid,cache,free});return true;}};Parser.register(MemReclaimParser);return{MemReclaimParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function PowerParser(importer){Parser.call(this,importer);importer.registerEventHandler('power_start',PowerParser.prototype.powerStartEvent.bind(this));importer.registerEventHandler('power_frequency',PowerParser.prototype.powerFrequencyEvent.bind(this));importer.registerEventHandler('cpu_frequency',PowerParser.prototype.cpuFrequencyEvent.bind(this));importer.registerEventHandler('cpu_frequency_limits',PowerParser.prototype.cpuFrequencyLimitsEvent.bind(this));importer.registerEventHandler('cpu_idle',PowerParser.prototype.cpuIdleEvent.bind(this));}
5954PowerParser.prototype={__proto__:Parser.prototype,cpuStateSlice(ts,targetCpuNumber,eventType,cpuState){const targetCpu=this.importer.getOrCreateCpu(targetCpuNumber);if(eventType!=='1'){this.importer.model.importWarning({type:'parse_error',message:'Don\'t understand power_start events of '+'type '+eventType});return;}
5955const powerCounter=targetCpu.getOrCreateCounter('','C-State');if(powerCounter.numSeries===0){powerCounter.addSeries(new tr.model.CounterSeries('state',ColorScheme.getColorIdForGeneralPurposeString(powerCounter.name+'.'+'state')));}
5956powerCounter.series.forEach(function(series){series.addCounterSample(ts,cpuState);});},cpuIdleSlice(ts,targetCpuNumber,cpuState){const targetCpu=this.importer.getOrCreateCpu(targetCpuNumber);const powerCounter=targetCpu.getOrCreateCounter('','C-State');if(powerCounter.numSeries===0){powerCounter.addSeries(new tr.model.CounterSeries('state',ColorScheme.getColorIdForGeneralPurposeString(powerCounter.name)));}
5957const val=(cpuState!==4294967295?cpuState+1:0);powerCounter.series.forEach(function(series){series.addCounterSample(ts,val);});},cpuFrequencySlice(ts,targetCpuNumber,powerState){const targetCpu=this.importer.getOrCreateCpu(targetCpuNumber);const powerCounter=targetCpu.getOrCreateCounter('','Clock Frequency');if(powerCounter.numSeries===0){powerCounter.addSeries(new tr.model.CounterSeries('state',ColorScheme.getColorIdForGeneralPurposeString(powerCounter.name+'.'+'state')));}
5958powerCounter.series.forEach(function(series){series.addCounterSample(ts,powerState);});},cpuFrequencyLimitsSlice(ts,targetCpuNumber,minFreq,maxFreq){const targetCpu=this.importer.getOrCreateCpu(targetCpuNumber);const powerCounter=targetCpu.getOrCreateCounter('','Clock Frequency Limits');if(powerCounter.numSeries===0){powerCounter.addSeries(new tr.model.CounterSeries('Min Frequency',ColorScheme.getColorIdForGeneralPurposeString(powerCounter.name+'.'+'Min Frequency')));powerCounter.addSeries(new tr.model.CounterSeries('Max Frequency',ColorScheme.getColorIdForGeneralPurposeString(powerCounter.name+'.'+'Max Frequency')));}
5959powerCounter.series.forEach(function(series){if(series.name==='Min Frequency'){series.addCounterSample(ts,minFreq);}
5960if(series.name==='Max Frequency'){series.addCounterSample(ts,maxFreq);}});},powerStartEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/type=(\d+) state=(\d) cpu_id=(\d+)/.exec(eventBase.details);if(!event)return false;const targetCpuNumber=parseInt(event[3]);const cpuState=parseInt(event[2]);this.cpuStateSlice(ts,targetCpuNumber,event[1],cpuState);return true;},powerFrequencyEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/type=(\d+) state=(\d+) cpu_id=(\d+)/.exec(eventBase.details);if(!event)return false;const targetCpuNumber=parseInt(event[3]);const powerState=parseInt(event[2]);this.cpuFrequencySlice(ts,targetCpuNumber,powerState);return true;},cpuFrequencyEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/state=(\d+) cpu_id=(\d+)/.exec(eventBase.details);if(!event)return false;const targetCpuNumber=parseInt(event[2]);const powerState=parseInt(event[1]);this.cpuFrequencySlice(ts,targetCpuNumber,powerState);return true;},cpuFrequencyLimitsEvent(eventName,cpu,pid,ts,eventBase){const event=/min=(\d+) max=(\d+) cpu_id=(\d+)/.exec(eventBase.details);if(!event)return false;const targetCpuNumber=parseInt(event[3]);const minFreq=parseInt(event[1]);const maxFreq=parseInt(event[2]);this.cpuFrequencyLimitsSlice(ts,targetCpuNumber,minFreq,maxFreq);return true;},cpuIdleEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/state=(\d+) cpu_id=(\d+)/.exec(eventBase.details);if(!event)return false;const targetCpuNumber=parseInt(event[2]);const cpuState=parseInt(event[1]);this.cpuIdleSlice(ts,targetCpuNumber,cpuState);return true;}};Parser.register(PowerParser);return{PowerParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function RegulatorParser(importer){Parser.call(this,importer);importer.registerEventHandler('regulator_enable',RegulatorParser.prototype.regulatorEnableEvent.bind(this));importer.registerEventHandler('regulator_enable_delay',RegulatorParser.prototype.regulatorEnableDelayEvent.bind(this));importer.registerEventHandler('regulator_enable_complete',RegulatorParser.prototype.regulatorEnableCompleteEvent.bind(this));importer.registerEventHandler('regulator_disable',RegulatorParser.prototype.regulatorDisableEvent.bind(this));importer.registerEventHandler('regulator_disable_complete',RegulatorParser.prototype.regulatorDisableCompleteEvent.bind(this));importer.registerEventHandler('regulator_set_voltage',RegulatorParser.prototype.regulatorSetVoltageEvent.bind(this));importer.registerEventHandler('regulator_set_voltage_complete',RegulatorParser.prototype.regulatorSetVoltageCompleteEvent.bind(this));this.model_=importer.model_;}
5961const regulatorEnableRE=/name=(.+)/;const regulatorDisableRE=/name=(.+)/;const regulatorSetVoltageCompleteRE=/name=(\S+), val=(\d+)/;RegulatorParser.prototype={__proto__:Parser.prototype,getCtr_(ctrName,valueName){const ctr=this.model_.kernel.getOrCreateCounter(null,'vreg '+ctrName+' '+valueName);if(ctr.series[0]===undefined){ctr.addSeries(new tr.model.CounterSeries(valueName,ColorScheme.getColorIdForGeneralPurposeString(ctrName+'.'+valueName)));}
5962return ctr;},regulatorEnableEvent(eventName,cpuNum,pid,ts,eventBase){const event=regulatorEnableRE.exec(eventBase.details);if(!event)return false;const name=event[1];const ctr=this.getCtr_(name,'enabled');ctr.series[0].addCounterSample(ts,1);return true;},regulatorEnableDelayEvent(eventName,cpuNum,pid,ts,eventBase){return true;},regulatorEnableCompleteEvent(eventName,cpuNum,pid,ts,eventBase){return true;},regulatorDisableEvent(eventName,cpuNum,pid,ts,eventBase){const event=regulatorDisableRE.exec(eventBase.details);if(!event)return false;const name=event[1];const ctr=this.getCtr_(name,'enabled');ctr.series[0].addCounterSample(ts,0);return true;},regulatorDisableCompleteEvent(eventName,cpuNum,pid,ts,eventBase){return true;},regulatorSetVoltageEvent(eventName,cpuNum,pid,ts,eventBase){return true;},regulatorSetVoltageCompleteEvent(eventName,cpuNum,pid,ts,eventBase){const event=regulatorSetVoltageCompleteRE.exec(eventBase.details);if(!event)return false;const name=event[1];const voltage=parseInt(event[2]);const ctr=this.getCtr_(name,'voltage');ctr.series[0].addCounterSample(ts,voltage);return true;}};Parser.register(RegulatorParser);return{RegulatorParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const Parser=tr.e.importer.linux_perf.Parser;function SchedParser(importer){Parser.call(this,importer);importer.registerEventHandler('sched_switch',SchedParser.prototype.schedSwitchEvent.bind(this));importer.registerEventHandler('sched_wakeup',SchedParser.prototype.schedWakeupEvent.bind(this));importer.registerEventHandler('sched_blocked_reason',SchedParser.prototype.schedBlockedEvent.bind(this));importer.registerEventHandler('sched_cpu_hotplug',SchedParser.prototype.schedCpuHotplugEvent.bind(this));}
5963const TestExports={};const schedSwitchRE=new RegExp('prev_comm=(.+) prev_pid=(\\d+) prev_prio=(\\d+) '+'prev_state=(\\S\\+?|\\S\\|\\S) ==> '+'next_comm=(.+) next_pid=(\\d+) next_prio=(\\d+)');const schedBlockedRE=new RegExp('pid=(\\d+) iowait=(\\d) caller=(.+)');TestExports.schedSwitchRE=schedSwitchRE;const schedWakeupRE=/comm=(.+) pid=(\d+) prio=(\d+)(?: success=\d+)? target_cpu=(\d+)/;TestExports.schedWakeupRE=schedWakeupRE;SchedParser.prototype={__proto__:Parser.prototype,schedSwitchEvent(eventName,cpuNumber,pid,ts,eventBase){const event=schedSwitchRE.exec(eventBase.details);if(!event)return false;const prevState=event[4];const nextComm=event[5];const nextPid=parseInt(event[6]);const nextPrio=parseInt(event[7]);if(eventBase.tgid!==undefined){const tgid=parseInt(eventBase.tgid);const process=this.importer.model_.getOrCreateProcess(tgid);if(!process.getThread(pid)){const thread=process.getOrCreateThread(pid);thread.name=eventBase.threadName;}}
5964const nextThread=this.importer.threadsByLinuxPid[nextPid];let nextName;if(nextThread){nextName=nextThread.userFriendlyName;}else{nextName=nextComm;}
5965const cpu=this.importer.getOrCreateCpu(cpuNumber);cpu.switchActiveThread(ts,{stateWhenDescheduled:prevState},nextPid,nextName,{comm:nextComm,tid:nextPid,prio:nextPrio});return true;},schedWakeupEvent(eventName,cpuNumber,pid,ts,eventBase){const event=schedWakeupRE.exec(eventBase.details);if(!event)return false;const fromPid=pid;const comm=event[1];pid=parseInt(event[2]);const prio=parseInt(event[3]);this.importer.markPidRunnable(ts,pid,comm,prio,fromPid);return true;},schedCpuHotplugEvent(eventName,cpuNumber,pid,ts,eventBase){const event=/cpu (\d+) (.+) error=(\d+)/.exec(eventBase.details);if(!event)return false;cpuNumber=event[1];const state=event[2];const targetCpu=this.importer.getOrCreateCpu(cpuNumber);const powerCounter=targetCpu.getOrCreateCounter('','Cpu Hotplug');if(powerCounter.numSeries===0){powerCounter.addSeries(new tr.model.CounterSeries('State',tr.b.ColorScheme.getColorIdForGeneralPurposeString(powerCounter.name+'.'+'State')));}
5966powerCounter.series.forEach(function(series){if(series.name==='State'){series.addCounterSample(ts,state.localeCompare('offline')?0:1);}});return true;},schedBlockedEvent(eventName,cpuNumber,pid,ts,eventBase){const event=schedBlockedRE.exec(eventBase.details);if(!event)return false;pid=parseInt(event[1]);const iowait=parseInt(event[2]);const caller=event[3];this.importer.addPidBlockedReason(ts,pid,iowait,caller);return true;}};Parser.register(SchedParser);return{SchedParser,_SchedParserTestExports:TestExports};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function SyncParser(importer){Parser.call(this,importer);importer.registerEventHandler('sync_timeline',SyncParser.prototype.timelineEvent.bind(this));importer.registerEventHandler('sync_wait',SyncParser.prototype.syncWaitEvent.bind(this));importer.registerEventHandler('sync_pt',SyncParser.prototype.syncPtEvent.bind(this));this.model_=importer.model_;}
5967const syncTimelineRE=/name=(\S+) value=(\S*)/;const syncWaitRE=/(\S+) name=(\S+) state=(\d+)/;const syncPtRE=/name=(\S+) value=(\S*)/;SyncParser.prototype={__proto__:Parser.prototype,timelineEvent(eventName,cpuNumber,pid,ts,eventBase){const event=syncTimelineRE.exec(eventBase.details);if(!event)return false;const thread=this.importer.getOrCreatePseudoThread(event[1]);if(thread.lastActiveTs!==undefined){const duration=ts-thread.lastActiveTs;let value=thread.lastActiveValue;if(value===undefined)value=' ';const slice=new tr.model.ThreadSlice('',value,ColorScheme.getColorIdForGeneralPurposeString(value),thread.lastActiveTs,{},duration);thread.thread.sliceGroup.pushSlice(slice);}
5968thread.lastActiveTs=ts;thread.lastActiveValue=event[2];return true;},syncWaitEvent(eventName,cpuNumber,pid,ts,eventBase){const event=syncWaitRE.exec(eventBase.details);if(!event)return false;if(eventBase.tgid===undefined){return false;}
5969const tgid=parseInt(eventBase.tgid);const thread=this.model_.getOrCreateProcess(tgid).getOrCreateThread(pid);thread.name=eventBase.threadName;const slices=thread.kernelSliceGroup;if(!slices.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'parse_error',message:'Timestamps are moving backward.'});return false;}
5970const name='fence_wait("'+event[2]+'")';if(event[1]==='begin'){const slice=slices.beginSlice(null,name,ts,{'Start state':event[3]});}else if(event[1]==='end'){if(slices.openSliceCount>0){slices.endSlice(ts);}}else{return false;}
5971return true;},syncPtEvent(eventName,cpuNumber,pid,ts,eventBase){return!!syncPtRE.exec(eventBase.details);}};Parser.register(SyncParser);return{SyncParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const ColorScheme=tr.b.ColorScheme;const Parser=tr.e.importer.linux_perf.Parser;function WorkqueueParser(importer){Parser.call(this,importer);importer.registerEventHandler('workqueue_execute_start',WorkqueueParser.prototype.executeStartEvent.bind(this));importer.registerEventHandler('workqueue_execute_end',WorkqueueParser.prototype.executeEndEvent.bind(this));importer.registerEventHandler('workqueue_queue_work',WorkqueueParser.prototype.executeQueueWork.bind(this));importer.registerEventHandler('workqueue_activate_work',WorkqueueParser.prototype.executeActivateWork.bind(this));}
5972const workqueueExecuteStartRE=/work struct (.+): function (\S+)/;const workqueueExecuteEndRE=/work struct (.+)/;WorkqueueParser.prototype={__proto__:Parser.prototype,executeStartEvent(eventName,cpuNumber,pid,ts,eventBase){const event=workqueueExecuteStartRE.exec(eventBase.details);if(!event)return false;const kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,pid,pid);kthread.openSliceTS=ts;kthread.openSlice=event[2];return true;},executeEndEvent(eventName,cpuNumber,pid,ts,eventBase){const event=workqueueExecuteEndRE.exec(eventBase.details);if(!event)return false;const kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,pid,pid);if(kthread.openSlice){const slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),kthread.openSliceTS,{},ts-kthread.openSliceTS);kthread.thread.sliceGroup.pushSlice(slice);}
5973kthread.openSlice=undefined;return true;},executeQueueWork(eventName,cpuNumber,pid,ts,eventBase){return true;},executeActivateWork(eventName,cpuNumber,pid,ts,eventBase){return true;}};Parser.register(WorkqueueParser);return{WorkqueueParser,};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){const MONOTONIC_TO_FTRACE_GLOBAL_SYNC_ID='linux_clock_monotonic_to_ftrace_global';const IMPORT_PRIORITY=2;function FTraceImporter(model,events){this.importPriority=IMPORT_PRIORITY;this.model_=model;this.events_=events;this.wakeups_=[];this.blockedReasons_=[];this.kernelThreadStates_={};this.buildMapFromLinuxPidsToThreads_();this.lines_=[];this.pseudoThreadCounter=1;this.parsers_=[];this.eventHandlers_={};this.haveClockSyncedMonotonicToGlobal_=false;this.clockDomainId_=tr.model.ClockDomainId.LINUX_FTRACE_GLOBAL;}
5974const TestExports={};const lineREWithTGID=new RegExp('^\\s*(.+)-(\\d+)\\s+\\(\\s*(\\d+|-+)\\)\\s\\[(\\d+)\\]'+'\\s+[dX.][Nnp.][Hhs.][0-9a-f.]'+'\\s+(\\d+\\.\\d+):\\s+(\\S+):\\s(.*)$');const lineParserWithTGID=function(line){const groups=lineREWithTGID.exec(line);if(!groups)return groups;let tgid=groups[3];if(tgid[0]==='-')tgid=undefined;return{threadName:groups[1],pid:groups[2],tgid,cpuNumber:groups[4],timestamp:groups[5],eventName:groups[6],details:groups[7]};};TestExports.lineParserWithTGID=lineParserWithTGID;const lineREWithIRQInfo=new RegExp('^\\s*(.+)-(\\d+)\\s+\\[(\\d+)\\]'+'\\s+[dX.][Nnp.][Hhs.][0-9a-f.]'+'\\s+(\\d+\\.\\d+):\\s+(\\S+):\\s(.*)$');const lineParserWithIRQInfo=function(line){const groups=lineREWithIRQInfo.exec(line);if(!groups)return groups;return{threadName:groups[1],pid:groups[2],cpuNumber:groups[3],timestamp:groups[4],eventName:groups[5],details:groups[6]};};TestExports.lineParserWithIRQInfo=lineParserWithIRQInfo;const lineREWithLegacyFmt=/^\s*(.+)-(\d+)\s+\[(\d+)\]\s*(\d+\.\d+):\s+(\S+):\s(.*)$/;const lineParserWithLegacyFmt=function(line){const groups=lineREWithLegacyFmt.exec(line);if(!groups){return groups;}
5975return{threadName:groups[1],pid:groups[2],cpuNumber:groups[3],timestamp:groups[4],eventName:groups[5],details:groups[6]};};TestExports.lineParserWithLegacyFmt=lineParserWithLegacyFmt;const traceEventClockSyncRE=/trace_event_clock_sync: parent_ts=(\d+\.?\d*)/;TestExports.traceEventClockSyncRE=traceEventClockSyncRE;const realTimeClockSyncRE=/trace_event_clock_sync: realtime_ts=(\d+)/;const genericClockSyncRE=/trace_event_clock_sync: name=([\w\-]+)/;const pseudoKernelPID=0;function autoDetectLineParser(line){if(line[0]==='{')return false;if(lineREWithTGID.test(line))return lineParserWithTGID;if(lineREWithIRQInfo.test(line))return lineParserWithIRQInfo;if(lineREWithLegacyFmt.test(line))return lineParserWithLegacyFmt;return undefined;}
5976TestExports.autoDetectLineParser=autoDetectLineParser;FTraceImporter.canImport=function(events){if(events instanceof tr.b.TraceStream)events=events.header;if(!(typeof(events)==='string'||events instanceof String)){return false;}
5977if(FTraceImporter._extractEventsFromSystraceHTML(events,false).ok){return true;}
5978if(FTraceImporter._extractEventsFromSystraceMultiHTML(events,false).ok){return true;}
5979if(/^# tracer:/.test(events))return true;const lineBreakIndex=events.indexOf('\n');if(lineBreakIndex>-1)events=events.substring(0,lineBreakIndex);if(autoDetectLineParser(events))return true;return false;};FTraceImporter._extractEventsFromSystraceHTML=function(incomingEvents,produceResult){const failure={ok:false};if(produceResult===undefined)produceResult=true;const header=incomingEvents instanceof tr.b.TraceStream?incomingEvents.header:incomingEvents;if(!/^<!DOCTYPE html>/.test(header))return failure;const r=new tr.importer.SimpleLineReader(incomingEvents);if(!r.advanceToLineMatching(/^  <script>$/))return failure;if(!r.advanceToLineMatching(/^  var linuxPerfData = "\\$/))return failure;const eventsBeginAtLine=r.curLineNumber+1;r.beginSavingLines();if(!r.advanceToLineMatching(/^  <\/script>$/))return failure;let rawEvents=r.endSavingLinesAndGetResult();rawEvents=rawEvents.slice(1,rawEvents.length-1);if(!r.advanceToLineMatching(/^<\/body>$/))return failure;if(!r.advanceToLineMatching(/^<\/html>$/))return failure;function endsWith(str,suffix){return str.indexOf(suffix,str.length-suffix.length)!==-1;}
5980function stripSuffix(str,suffix){if(!endsWith(str,suffix))return str;return str.substring(str,str.length-suffix.length);}
5981let events=[];if(produceResult){for(let i=0;i<rawEvents.length;i++){let event=rawEvents[i];event=stripSuffix(event,'\\n\\');events.push(event);}}else{events=[rawEvents[rawEvents.length-1]];}
5982const oldLastEvent=events[events.length-1];const newLastEvent=stripSuffix(oldLastEvent,'\\n";');if(newLastEvent===oldLastEvent)return failure;events[events.length-1]=newLastEvent;return{ok:true,lines:produceResult?events:undefined,eventsBeginAtLine};};FTraceImporter._extractEventsFromSystraceMultiHTML=function(incomingEvents,produceResult){const failure={ok:false};if(produceResult===undefined)produceResult=true;const header=incomingEvents instanceof tr.b.TraceStream?incomingEvents.header:incomingEvents;if(!(new RegExp('^<!DOCTYPE HTML>','i').test(header)))return failure;const r=new tr.importer.SimpleLineReader(incomingEvents);let events=[];let eventsBeginAtLine;while(!/^# tracer:/.test(events)){if(!r.advanceToLineMatching(/^  <script class="trace-data" type="application\/text">$/)){return failure;}
5983eventsBeginAtLine=r.curLineNumber+1;r.beginSavingLines();if(!r.advanceToLineMatching(/^  <\/script>$/))return failure;events=r.endSavingLinesAndGetResult();events=events.slice(1,events.length-1);}
5984if(!r.advanceToLineMatching(/^<\/body>$/))return failure;if(!r.advanceToLineMatching(/^<\/html>$/))return failure;return{ok:true,lines:produceResult?events:undefined,eventsBeginAtLine,};};FTraceImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'FTraceImporter';},get model(){return this.model_;},importClockSyncMarkers(){this.lazyInit_();this.forEachLine_(function(text,eventBase,cpuNumber,pid,ts){const eventName=eventBase.eventName;if(eventName!=='tracing_mark_write'&&eventName!=='0')return;if(traceEventClockSyncRE.exec(eventBase.details)||genericClockSyncRE.exec(eventBase.details)){this.traceClockSyncEvent_(eventName,cpuNumber,pid,ts,eventBase);}else if(realTimeClockSyncRE.exec(eventBase.details)){const match=realTimeClockSyncRE.exec(eventBase.details);this.model_.realtime_to_monotonic_offset_ms=ts-match[1];}}.bind(this));},importEvents(){const modelTimeTransformer=this.model_.clockSyncManager.getModelTimeTransformer(this.clockDomainId_);this.importCpuData_(modelTimeTransformer);this.buildMapFromLinuxPidsToThreads_();this.buildPerThreadCpuSlicesFromCpuState_();},registerEventHandler(eventName,handler){this.eventHandlers_[eventName]=handler;},getOrCreateCpu(cpuNumber){return this.model_.kernel.getOrCreateCpu(cpuNumber);},getOrCreateKernelThread(kernelThreadName,pid,tid){if(!this.kernelThreadStates_[kernelThreadName]){const thread=this.model_.getOrCreateProcess(pid).getOrCreateThread(tid);thread.name=kernelThreadName;this.kernelThreadStates_[kernelThreadName]={pid,thread,openSlice:undefined,openSliceTS:undefined};this.threadsByLinuxPid[pid]=thread;}
5985return this.kernelThreadStates_[kernelThreadName];},getOrCreateBinderKernelThread(kernelThreadName,pid,tid){const key=kernelThreadName+pid+tid;if(!this.kernelThreadStates_[key]){const thread=this.model_.getOrCreateProcess(pid).getOrCreateThread(tid);thread.name=kernelThreadName;this.kernelThreadStates_[key]={pid,thread,openSlice:undefined,openSliceTS:undefined};this.threadsByLinuxPid[pid]=thread;}
5986return this.kernelThreadStates_[key];},getOrCreatePseudoThread(threadName){let thread=this.kernelThreadStates_[threadName];if(!thread){thread=this.getOrCreateKernelThread(threadName,pseudoKernelPID,this.pseudoThreadCounter);this.pseudoThreadCounter++;}
5987return thread;},markPidRunnable(ts,pid,comm,prio,fromPid){this.wakeups_.push({ts,tid:pid,fromTid:fromPid});},addPidBlockedReason(ts,pid,iowait,caller){this.blockedReasons_.push({ts,tid:pid,iowait,caller});},buildMapFromLinuxPidsToThreads_(){this.threadsByLinuxPid={};this.model_.getAllThreads().forEach(function(thread){this.threadsByLinuxPid[thread.tid]=thread;}.bind(this));},buildPerThreadCpuSlicesFromCpuState_(){const SCHEDULING_STATE=tr.model.SCHEDULING_STATE;for(const cpuNumber in this.model_.kernel.cpus){const cpu=this.model_.kernel.cpus[cpuNumber];for(let i=0;i<cpu.slices.length;i++){const cpuSlice=cpu.slices[i];const thread=this.threadsByLinuxPid[cpuSlice.args.tid];if(!thread)continue;cpuSlice.threadThatWasRunning=thread;if(!thread.tempCpuSlices){thread.tempCpuSlices=[];}
5988thread.tempCpuSlices.push(cpuSlice);}}
5989for(const i in this.wakeups_){const wakeup=this.wakeups_[i];const thread=this.threadsByLinuxPid[wakeup.tid];if(!thread)continue;thread.tempWakeups=thread.tempWakeups||[];thread.tempWakeups.push(wakeup);}
5990for(const i in this.blockedReasons_){const reason=this.blockedReasons_[i];const thread=this.threadsByLinuxPid[reason.tid];if(!thread)continue;thread.tempBlockedReasons=thread.tempBlockedReasons||[];thread.tempBlockedReasons.push(reason);}
5991this.model_.getAllThreads().forEach(function(thread){if(thread.tempCpuSlices===undefined)return;const origSlices=thread.tempCpuSlices;delete thread.tempCpuSlices;origSlices.sort(function(x,y){return x.start-y.start;});const wakeups=thread.tempWakeups||[];delete thread.tempWakeups;wakeups.sort(function(x,y){return x.ts-y.ts;});const reasons=thread.tempBlockedReasons||[];delete thread.tempBlockedReasons;reasons.sort(function(x,y){return x.ts-y.ts;});const slices=[];if(origSlices.length){const slice=origSlices[0];if(wakeups.length&&wakeups[0].ts<slice.start){const wakeup=wakeups.shift();const wakeupDuration=slice.start-wakeup.ts;const args={'wakeup from tid':wakeup.fromTid};slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.RUNNABLE,'',wakeup.ts,args,wakeupDuration));}
5992const runningSlice=new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.RUNNING,'',slice.start,{},slice.duration);runningSlice.cpuOnWhichThreadWasRunning=slice.cpu;slices.push(runningSlice);}
5993for(let i=1;i<origSlices.length;i++){let wakeup=undefined;const prevSlice=origSlices[i-1];const nextSlice=origSlices[i];let midDuration=nextSlice.start-prevSlice.end;while(wakeups.length&&wakeups[0].ts<nextSlice.start){const w=wakeups.shift();if(wakeup===undefined&&w.ts>prevSlice.end){wakeup=w;}}
5994let blockedReason=undefined;while(reasons.length&&reasons[0].ts<prevSlice.end){const r=reasons.shift();}
5995if(wakeup!==undefined&&reasons.length&&reasons[0].ts<wakeup.ts){blockedReason=reasons.shift();}
5996const pushSleep=function(state){if(wakeup!==undefined){midDuration=wakeup.ts-prevSlice.end;}
5997if(blockedReason!==undefined){const args={'kernel callsite when blocked:':blockedReason.caller};if(blockedReason.iowait){switch(state){case SCHEDULING_STATE.UNINTR_SLEEP:state=SCHEDULING_STATE.UNINTR_SLEEP_IO;break;case SCHEDULING_STATE.UNINTR_SLEEP_WAKE_KILL:state=SCHEDULING_STATE.UNINTR_SLEEP_WAKE_KILL_IO;break;case SCHEDULING_STATE.UNINTR_SLEEP_WAKING:state=SCHEDULING_STATE.UNINTR_SLEEP_WAKE_KILL_IO;break;default:}}
5998slices.push(new tr.model.ThreadTimeSlice(thread,state,'',prevSlice.end,args,midDuration));}else{slices.push(new tr.model.ThreadTimeSlice(thread,state,'',prevSlice.end,{},midDuration));}
5999if(wakeup!==undefined){const wakeupDuration=nextSlice.start-wakeup.ts;const args={'wakeup from tid':wakeup.fromTid};slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.RUNNABLE,'',wakeup.ts,args,wakeupDuration));wakeup=undefined;}};if(prevSlice.args.stateWhenDescheduled==='S'){pushSleep(SCHEDULING_STATE.SLEEPING);}else if(prevSlice.args.stateWhenDescheduled==='R'||prevSlice.args.stateWhenDescheduled==='R+'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.RUNNABLE,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='D'){pushSleep(SCHEDULING_STATE.UNINTR_SLEEP);}else if(prevSlice.args.stateWhenDescheduled==='T'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.STOPPED,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='t'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.DEBUG,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='Z'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.ZOMBIE,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='X'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.EXIT_DEAD,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='x'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.TASK_DEAD,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='K'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.WAKE_KILL,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='W'){slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.WAKING,'',prevSlice.end,{},midDuration));}else if(prevSlice.args.stateWhenDescheduled==='D|K'){pushSleep(SCHEDULING_STATE.UNINTR_SLEEP_WAKE_KILL);}else if(prevSlice.args.stateWhenDescheduled==='D|W'){pushSleep(SCHEDULING_STATE.UNINTR_SLEEP_WAKING);}else{slices.push(new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.UNKNOWN,'',prevSlice.end,{},midDuration));this.model_.importWarning({type:'parse_error',message:'Unrecognized sleep state: '+
6000prevSlice.args.stateWhenDescheduled});}
6001const runningSlice=new tr.model.ThreadTimeSlice(thread,SCHEDULING_STATE.RUNNING,'',nextSlice.start,{},nextSlice.duration);runningSlice.cpuOnWhichThreadWasRunning=prevSlice.cpu;slices.push(runningSlice);}
6002thread.timeSlices=slices;},this);},createParsers_(){const allTypeInfos=tr.e.importer.linux_perf.Parser.getAllRegisteredTypeInfos();const parsers=allTypeInfos.map(function(typeInfo){return new typeInfo.constructor(this);},this);return parsers;},registerDefaultHandlers_(){this.registerEventHandler('tracing_mark_write',FTraceImporter.prototype.traceMarkingWriteEvent_.bind(this));this.registerEventHandler('0',FTraceImporter.prototype.traceMarkingWriteEvent_.bind(this));this.registerEventHandler('tracing_mark_write:trace_event_clock_sync',function(){return true;});this.registerEventHandler('0:trace_event_clock_sync',function(){return true;});},traceClockSyncEvent_(eventName,cpuNumber,pid,ts,eventBase){let event=/name=(\w+?)\s(.+)/.exec(eventBase.details);if(event){const name=event[1];const pieces=event[2].split(' ');const args={perfTs:ts};for(let i=0;i<pieces.length;i++){const parts=pieces[i].split('=');if(parts.length!==2){throw new Error('omgbbq');}
6003args[parts[0]]=parts[1];}
6004this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,name,ts);return true;}
6005event=/name=([\w\-]+)/.exec(eventBase.details);if(event){this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,event[1],ts);return true;}
6006event=/parent_ts=(\d+\.?\d*)/.exec(eventBase.details);if(!event)return false;let monotonicTs=event[1]*1000;if(monotonicTs===0)monotonicTs=ts;if(this.haveClockSyncedMonotonicToGlobal_){return true;}
6007this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,MONOTONIC_TO_FTRACE_GLOBAL_SYNC_ID,ts);this.model_.clockSyncManager.addClockSyncMarker(tr.model.ClockDomainId.LINUX_CLOCK_MONOTONIC,MONOTONIC_TO_FTRACE_GLOBAL_SYNC_ID,monotonicTs);this.haveClockSyncedMonotonicToGlobal_=true;return true;},traceMarkingWriteEvent_(eventName,cpuNumber,pid,ts,eventBase,threadName){eventBase.details=eventBase.details.replace(/\\n.*$/,'');const event=/^\s*(\w+):\s*(.*)$/.exec(eventBase.details);if(!event){const tag=eventBase.details.substring(0,2);if(tag==='B|'||tag==='E'||tag==='E|'||tag==='X|'||tag==='C|'||tag==='S|'||tag==='F|'){eventBase.subEventName='android';}else{return false;}}else{eventBase.subEventName=event[1];eventBase.details=event[2];}
6008const writeEventName=eventName+':'+eventBase.subEventName;const handler=this.eventHandlers_[writeEventName];if(!handler){this.model_.importWarning({type:'parse_error',message:'Unknown trace_marking_write event '+writeEventName});return true;}
6009return handler(writeEventName,cpuNumber,pid,ts,eventBase,threadName);},importCpuData_(modelTimeTransformer){this.forEachLine_(function(text,eventBase,cpuNumber,pid,ts){const eventName=eventBase.eventName;const handler=this.eventHandlers_[eventName];if(!handler){this.model_.importWarning({type:'parse_error',message:'Unknown event '+eventName+' ('+text+')'});return;}
6010ts=modelTimeTransformer(ts);if(!handler(eventName,cpuNumber,pid,ts,eventBase)){this.model_.importWarning({type:'parse_error',message:'Malformed '+eventName+' event ('+text+')'});}}.bind(this));},parseLines_(){let extractResult=FTraceImporter._extractEventsFromSystraceHTML(this.events_,true);if(!extractResult.ok){extractResult=FTraceImporter._extractEventsFromSystraceMultiHTML(this.events_,true);}
6011let lineParser=undefined;if(extractResult.ok){for(const line of extractResult.lines){lineParser=this.parseLine_(line,lineParser);}}else{const r=new tr.importer.SimpleLineReader(this.events_);for(const line of r){lineParser=this.parseLine_(line,lineParser);}}},parseLine_(line,lineParser){line=line.trim();if(line.length===0)return lineParser;if(/^#/.test(line)){const clockType=/^# clock_type=([A-Z_]+)$/.exec(line);if(clockType){this.clockDomainId_=clockType[1];}
6012return lineParser;}
6013if(!lineParser){lineParser=autoDetectLineParser(line);if(!lineParser){this.model_.importWarning({type:'parse_error',message:'Cannot parse line: '+line});return lineParser;}}
6014const eventBase=lineParser(line);if(!eventBase){this.model_.importWarning({type:'parse_error',message:'Unrecognized line: '+line});return lineParser;}
6015this.lines_.push([line,eventBase,parseInt(eventBase.cpuNumber),parseInt(eventBase.pid),parseFloat(eventBase.timestamp)*1000]);return lineParser;},forEachLine_(handler){for(let i=0;i<this.lines_.length;++i){const line=this.lines_[i];handler.apply(this,line);}},lazyInit_(){this.parsers_=this.createParsers_();this.registerDefaultHandlers_();this.parseLines_();}};tr.importer.Importer.register(FTraceImporter);return{FTraceImporter,_FTraceImporterTestExports:TestExports,IMPORT_PRIORITY,};});'use strict';tr.exportTo('tr.e.importer.android.atrace_process_dump',function(){const IMPORT_PRIORITY=tr.e.importer.linux_perf.IMPORT_PRIORITY+1;const HEADER='ATRACE_PROCESS_DUMP';const PROTECTION_FLAG_LETTERS={'-':0,'r':tr.model.VMRegion.PROTECTION_FLAG_READ,'w':tr.model.VMRegion.PROTECTION_FLAG_WRITE,'x':tr.model.VMRegion.PROTECTION_FLAG_EXECUTE,'s':tr.model.VMRegion.PROTECTION_FLAG_MAYSHARE,};class AtraceProcessDumpImporter extends tr.importer.Importer{constructor(model,data){super(model,data);this.importPriority=IMPORT_PRIORITY;this.model_=model;this.raw_data_=data;this.clock_sync_markers_={};this.snapshots_=[];this.processes_={};}
6016static canImport(events){if(!(typeof(events)==='string'||events instanceof String)){return false;}
6017return events.startsWith(HEADER);}
6018get importerName(){return'AtraceProcessDumpImporter';}
6019get model(){return this.model_;}
6020lazyParseData(){if(this.raw_data_===undefined){return;}
6021const dump=JSON.parse(this.raw_data_.slice(HEADER.length+1));this.clock_sync_markers_=dump.clock_sync_markers;this.snapshots_=dump.dump.snapshots;this.processes_=dump.dump.processes;this.raw_data_=undefined;}
6022importClockSyncMarkers(){this.lazyParseData();for(const syncId in this.clock_sync_markers_){const ts=parseInt(this.clock_sync_markers_[syncId]);this.model_.clockSyncManager.addClockSyncMarker(tr.model.ClockDomainId.LINUX_CLOCK_MONOTONIC,syncId,ts);}}
6023setProcessMemoryDumpTotals_(pmd,processInfo){pmd.totals={'residentBytes':processInfo.rss*1024,'platformSpecific':{'vm':processInfo.vm*1024}};const totals=pmd.totals.platformSpecific;function importGpuMetric(name){if(processInfo[name]!==undefined&&processInfo[name]>0){totals[name]=processInfo[name]*1024;totals[name+'_pss']=processInfo[name+'_pss']*1024;}}
6024importGpuMetric('gpu_egl');importGpuMetric('gpu_gl');importGpuMetric('gpu_etc');if(processInfo.pss!==undefined){totals.pss=processInfo.pss*1024;totals.swp=processInfo.swp*1024;totals.pc=processInfo.pc*1024;totals.pd=processInfo.pd*1024;totals.sc=processInfo.sc*1024;totals.sd=processInfo.sd*1024;}}
6025setProcessMemoryDumpVmRegions_(pmd,processInfo){if(processInfo.mmaps===undefined){return;}
6026const vmRegions=[];for(const memoryMap of processInfo.mmaps){const addr=memoryMap.vm.split('-').map(x=>parseInt(x,16));let flags=0;for(const letter of memoryMap.flags){flags|=PROTECTION_FLAG_LETTERS[letter];}
6027const totals={'proportionalResident':memoryMap.pss*1024,'privateCleanResident':memoryMap.pc*1024,'privateDirtyResident':memoryMap.pd*1024,'sharedCleanResident':memoryMap.sc*1024,'sharedDirtyResident':memoryMap.sd*1024,'swapped':memoryMap.swp*1024,};vmRegions.push(new tr.model.VMRegion(addr[0],addr[1]-addr[0],flags,memoryMap.file,totals));}
6028pmd.vmRegions=tr.model.VMRegionClassificationNode.fromRegions(vmRegions);}
6029importEvents(){this.lazyParseData();for(const[pid,process]of Object.entries(this.processes_)){const modelProcess=this.model_.getProcess(pid);if(modelProcess===undefined){continue;}
6030modelProcess.name=process.name;const threads=process.threads;if(threads===undefined){continue;}
6031for(const[tid,thread]of Object.entries(threads)){const modelThread=modelProcess.threads[tid];if(modelThread===undefined){continue;}
6032modelThread.name=thread.name;}}
6033const memCounter=this.model_.kernel.getOrCreateCounter('global','SystemMemory');const memUsedSeries=new tr.model.CounterSeries('Used (KB)',0);const memSwappedSeries=new tr.model.CounterSeries('Swapped (KB)',0);memCounter.addSeries(memUsedSeries);memCounter.addSeries(memSwappedSeries);for(const snapshot of this.snapshots_){const ts=parseInt(snapshot.ts);const memoryDump=snapshot.memdump;if(memoryDump===undefined){const memInfo=snapshot.meminfo;if(memInfo===undefined){continue;}
6034const memCaches=memInfo.Buffers+memInfo.Cached-memInfo.Mapped;const memUsed=memInfo.MemTotal-memInfo.MemFree-memCaches;const memSwapped=memInfo.SwapTotal-memInfo.SwapFree;memUsedSeries.addCounterSample(ts,memUsed);memSwappedSeries.addCounterSample(ts,memSwapped);continue;}
6035const gmd=new tr.model.GlobalMemoryDump(this.model_,ts);this.model_.globalMemoryDumps.push(gmd);for(const[pid,processInfo]of Object.entries(memoryDump)){if(processInfo.rss===undefined){continue;}
6036const modelProcess=this.model_.getProcess(pid);if(modelProcess===undefined){continue;}
6037const pmd=new tr.model.ProcessMemoryDump(gmd,modelProcess,ts);gmd.processMemoryDumps[pid]=pmd;modelProcess.memoryDumps.push(pmd);this.setProcessMemoryDumpTotals_(pmd,processInfo);this.setProcessMemoryDumpVmRegions_(pmd,processInfo);}}}}
6038tr.importer.Importer.register(AtraceProcessDumpImporter);return{AtraceProcessDumpImporter,};});'use strict';tr.exportTo('tr.model',function(){const ColorScheme=tr.b.ColorScheme;function Activity(name,category,range,args){tr.model.TimedEvent.call(this,range.min);this.title=name;this.category=category;this.colorId=ColorScheme.getColorIdForGeneralPurposeString(name);this.duration=range.duration;this.args=args;this.name=name;}
6039Activity.prototype={__proto__:tr.model.TimedEvent.prototype,shiftTimestampsForward(amount){this.start+=amount;},addBoundsToRange(range){range.addValue(this.start);range.addValue(this.end);}};return{Activity,};});'use strict';tr.exportTo('tr.e.importer.android',function(){const Importer=tr.importer.Importer;const ACTIVITY_STATE={NONE:'none',CREATED:'created',STARTED:'started',RESUMED:'resumed',PAUSED:'paused',STOPPED:'stopped',DESTROYED:'destroyed'};const activityMap={};function EventLogImporter(model,events){this.model_=model;this.events_=events;this.importPriority=3;}
6040const eventLogActivityRE=new RegExp('(\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}.\\d+)'+'\\s+(\\d+)\\s+(\\d+)\\s+([A-Z])\\s*'+'(am_\\w+)\\s*:(.*)');const amCreateRE=new RegExp('\s*\\[.*,.*,.*,(.*),.*,.*,.*,.*\\]');const amFocusedRE=new RegExp('\s*\\[\\d+,(.*)\\]');const amProcStartRE=new RegExp('\s*\\[\\d+,\\d+,\\d+,.*,activity,(.*)\\]');const amOnResumeRE=new RegExp('\s*\\[\\d+,(.*)\\]');const amOnPauseRE=new RegExp('\s*\\[\\d+,(.*)\\]');const amLaunchTimeRE=new RegExp('\s*\\[\\d+,\\d+,(.*),(\\d+),(\\d+)');const amDestroyRE=new RegExp('\s*\\[\\d+,\\d+,\\d+,(.*)\\]');EventLogImporter.canImport=function(events){if(!(typeof(events)==='string'||events instanceof String)){return false;}
6041if(/^<!DOCTYPE html>/.test(events))return false;return eventLogActivityRE.test(events);};EventLogImporter.prototype={__proto__:Importer.prototype,get importerName(){return'EventLogImporter';},get model(){return this.model_;},getFullActivityName(component){const componentSplit=component.split('/');if(componentSplit[1].startsWith('.')){return componentSplit[0]+componentSplit[1];}
6042return componentSplit[1];},getProcName(component){const componentSplit=component.split('/');return componentSplit[0];},findOrCreateActivity(activityName){if(activityName in activityMap){return activityMap[activityName];}
6043const activity={state:ACTIVITY_STATE.NONE,name:activityName};activityMap[activityName]=activity;return activity;},deleteActivity(activityName){delete activityMap[activityName];},handleCreateActivity(ts,activityName){const activity=this.findOrCreateActivity(activityName);activity.state=ACTIVITY_STATE.CREATED;activity.createdTs=ts;},handleFocusActivity(ts,procName,activityName){const activity=this.findOrCreateActivity(activityName);activity.lastFocusedTs=ts;},handleProcStartForActivity(ts,activityName){const activity=this.findOrCreateActivity(activityName);activity.procStartTs=ts;},handleOnResumeCalled(ts,pid,activityName){const activity=this.findOrCreateActivity(activityName);activity.state=ACTIVITY_STATE.RESUMED;activity.lastResumeTs=ts;activity.pid=pid;},handleOnPauseCalled(ts,activityName){const activity=this.findOrCreateActivity(activityName);activity.state=ACTIVITY_STATE.PAUSED;activity.lastPauseTs=ts;if(ts>this.model_.bounds.min&&ts<this.model_.bounds.max){this.addActivityToProcess(activity);}},handleLaunchTime(ts,activityName,launchTime){const activity=this.findOrCreateActivity(activityName);activity.launchTime=launchTime;},handleDestroyActivity(ts,activityName){this.deleteActivity(activityName);},addActivityToProcess(activity){if(activity.pid===undefined)return;const process=this.model_.getOrCreateProcess(activity.pid);const range=tr.b.math.Range.fromExplicitRange(Math.max(this.model_.bounds.min,activity.lastResumeTs),activity.lastPauseTs);const newActivity=new tr.model.Activity(activity.name,'Android Activity',range,{created:activity.createdTs,procstart:activity.procStartTs,lastfocus:activity.lastFocusedTs});process.activities.push(newActivity);},parseAmLine_(line){let match=eventLogActivityRE.exec(line);if(!match)return;const firstRealtimeTs=this.model_.bounds.min-
6044this.model_.realtime_to_monotonic_offset_ms;const year=new Date(firstRealtimeTs).getFullYear();const ts=match[1].substring(0,5)+'-'+year+' '+
6045match[1].substring(5,match[1].length);const monotonicTs=Date.parse(ts)+
6046this.model_.realtime_to_monotonic_offset_ms;const pid=match[2];const action=match[5];const data=match[6];if(action==='am_create_activity'){match=amCreateRE.exec(data);if(match&&match.length>=2){this.handleCreateActivity(monotonicTs,this.getFullActivityName(match[1]));}}else if(action==='am_focused_activity'){match=amFocusedRE.exec(data);if(match&&match.length>=2){this.handleFocusActivity(monotonicTs,this.getProcName(match[1]),this.getFullActivityName(match[1]));}}else if(action==='am_proc_start'){match=amProcStartRE.exec(data);if(match&&match.length>=2){this.handleProcStartForActivity(monotonicTs,this.getFullActivityName(match[1]));}}else if(action==='am_on_resume_called'){match=amOnResumeRE.exec(data);if(match&&match.length>=2){this.handleOnResumeCalled(monotonicTs,pid,match[1]);}}else if(action==='am_on_paused_called'){match=amOnPauseRE.exec(data);if(match&&match.length>=2){this.handleOnPauseCalled(monotonicTs,match[1]);}}else if(action==='am_activity_launch_time'){match=amLaunchTimeRE.exec(data);this.handleLaunchTime(monotonicTs,this.getFullActivityName(match[1]),match[2]);}else if(action==='am_destroy_activity'){match=amDestroyRE.exec(data);if(match&&match.length===2){this.handleDestroyActivity(monotonicTs,this.getFullActivityName(match[1]));}}},importEvents(){if(isNaN(this.model_.realtime_to_monotonic_offset_ms)){this.model_.importWarning({type:'eveng_log_clock_sync',message:'Need a trace_event_clock_sync to map realtime to import.'});return;}
6047this.model_.updateBounds();const lines=this.events_.split('\n');lines.forEach(this.parseAmLine_,this);for(const activityName in activityMap){const activity=activityMap[activityName];if(activity.state===ACTIVITY_STATE.RESUMED){activity.lastPauseTs=this.model_.bounds.max;this.addActivityToProcess(activity);}}}};Importer.register(EventLogImporter);return{EventLogImporter,};});'use strict';tr.exportTo('tr.e.importer.android.process_data',function(){const Importer=tr.importer.Importer;const PROCESS_DUMP_HEADER='PROCESS DUMP';function ProcessDataImporter(model,processData){this.model_=model;this.processDataLines=processData.split('\n');this.importPriority=3;}
6048ProcessDataImporter.canImport=function(events){if(!(typeof(events)==='string'||events instanceof String)){return false;}
6049if(events.split('\n')[0]===PROCESS_DUMP_HEADER){return true;}
6050return false;};ProcessDataImporter.prototype={__proto__:Importer.prototype,get importerName(){return'ProcessDataImporter';},get model(){return this.model_;},parseEventData(data){const allDumpedProcesses={};let parseProcesses=false;let parseThreads=false;let legacy=false;for(let i=1;i<data.length;i++){const cols=data[i].split(/\s+/);if(cols[0].startsWith('USER')){if(parseProcesses){parseProcesses=false;parseThreads=true;}else{parseThreads=false;parseProcesses=true;}
6051const colCount=cols.length;if(parseProcesses&&colCount===9){legacy=false;}else if(parseProcesses&&colCount===8){legacy=true;}
6052continue;}
6053if(parseProcesses){const pid=Number(cols[1]);if(allDumpedProcesses[pid]===undefined){allDumpedProcesses[pid]={};}
6054allDumpedProcesses[pid]={'name':cols[8],pid,'comm':cols[9]};continue;}
6055if(parseThreads){let pid;let tid;let name;if(legacy){pid=Number(cols[1]);if(allDumpedProcesses[pid]!==undefined){tid=pid;}else{tid=pid;pid=Number(cols[2]);}
6056name=cols.slice(8).join(' ');}else{pid=Number(cols[1]);tid=Number(cols[2]);name=cols.slice(3).join(' ');}
6057if(allDumpedProcesses[pid]===undefined)continue;if(allDumpedProcesses[pid].threads===undefined){allDumpedProcesses[pid].threads={};}
6058allDumpedProcesses[pid].threads[tid]={tid,name};continue;}}
6059return allDumpedProcesses;},importEvents(){const allDumpedProcesses=this.parseEventData(this.processDataLines);const modelProcesses=this.model_.getAllProcesses();for(let i=0;i<modelProcesses.length;i++){const modelProcess=modelProcesses[i];const pid=modelProcess.pid;const dumpedProcess=allDumpedProcesses[pid];if(dumpedProcess===undefined){continue;}
6060modelProcess.name=dumpedProcess.name;const processDumpThreads=dumpedProcess.threads;if(processDumpThreads!==undefined){for(const tid in modelProcess.threads){const modelThread=modelProcess.threads[tid];if(Number(pid)===Number(tid)){modelThread.name='UI thread';}else if(modelThread.name==='<...>'){if(processDumpThreads[tid]!==undefined){modelThread.name=processDumpThreads[tid].name;}}}}}}};Importer.register(ProcessDataImporter);return{ProcessDataImporter,};});'use strict';tr.exportTo('tr.e.importer.battor',function(){function BattorImporter(model,events){this.importPriority=3;this.model_=model;this.samples_=[];this.syncTimestampsById_=new Map();this.parseTrace_(events);}
6061const battorDataLineRE=new RegExp('^(-?\\d+\\.\\d+)\\s+(-?\\d+\\.\\d+)\\s+(-?\\d+\\.\\d+)'+'(?:\\s+<(\\S+)>)?$');const battorHeaderLineRE=/^# BattOr/;BattorImporter.canImport=function(events){if(!(typeof(events)==='string'||events instanceof String)){return false;}
6062return battorHeaderLineRE.test(events);};BattorImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'BattorImporter';},get model(){return this.model_;},importClockSyncMarkers(){for(const[syncId,ts]of this.syncTimestampsById_){this.model_.clockSyncManager.addClockSyncMarker(tr.model.ClockDomainId.BATTOR,syncId,ts);}},importEvents(){if(this.model_.device.powerSeries){this.model_.importWarning({type:'import_error',message:'Power counter exists, can not import BattOr power trace.'});return;}
6063const modelTimeTransformer=this.model_.clockSyncManager.getModelTimeTransformer(tr.model.ClockDomainId.BATTOR);const powerSeries=this.model_.device.powerSeries=new tr.model.PowerSeries(this.model_.device);for(let i=0;i<this.samples_.length;i++){const sample=this.samples_[i];powerSeries.addPowerSample(modelTimeTransformer(sample.ts),sample.powerInW);}},parseTrace_(trace){const lines=trace.split('\n');for(let line of lines){line=line.trim();if(line.length===0)continue;if(line.startsWith('#'))continue;const groups=battorDataLineRE.exec(line);if(!groups){this.model_.importWarning({type:'parse_error',message:'Unrecognized line in BattOr trace: '+line});continue;}
6064const ts=parseFloat(groups[1]);const voltageInV=tr.b.convertUnit(parseFloat(groups[2]),tr.b.UnitPrefixScale.METRIC.MILLI,tr.b.UnitPrefixScale.METRIC.NONE);const currentInA=tr.b.convertUnit(parseFloat(groups[3]),tr.b.UnitPrefixScale.METRIC.MILLI,tr.b.UnitPrefixScale.METRIC.NONE);const syncId=groups[4];if(syncId){this.syncTimestampsById_.set(syncId,ts);}
6065if(voltageInV<0||currentInA<0){this.model_.importWarning({type:'parse_error',message:'The following line in the BattOr trace has a negative '+'voltage or current, neither of which are allowed: '+line+'. A common cause of this is that the device is charging '+'while the trace is being recorded.'});continue;}
6066this.samples_.push(new Sample(ts,voltageInV,currentInA));}}};function Sample(ts,voltageInV,currentInA){this.ts=ts;this.voltageInV=voltageInV;this.currentInA=currentInA;}
6067Sample.prototype={get powerInW(){return this.voltageInV*this.currentInA;}};tr.importer.Importer.register(BattorImporter);return{BattorImporter,};});'use strict';tr.exportTo('tr.e.importer.ddms',function(){const kPid=0;const kCategory='java';const kMethodLutEndMarker='\n*end\n';const kThreadsStart='\n*threads\n';const kMethodsStart='\n*methods\n';const kTraceMethodEnter=0x00;const kTraceMethodExit=0x01;const kTraceUnroll=0x02;const kTraceMethodActionMask=0x03;const kTraceHeaderLength=32;const kTraceMagicValue=0x574f4c53;const kTraceVersionSingleClock=2;const kTraceVersionDualClock=3;const kTraceRecordSizeSingleClock=10;const kTraceRecordSizeDualClock=14;function Reader(stringPayload){this.position_=0;this.data_=new Uint8Array(stringPayload.length);for(let i=0;i<stringPayload.length;++i){this.data_[i]=stringPayload.charCodeAt(i);}}
6068Reader.prototype={__proto__:Object.prototype,uint8(){const result=this.data_[this.position_];this.position_+=1;return result;},uint16(){let result=0;result+=this.uint8();result+=this.uint8()<<8;return result;},uint32(){let result=0;result+=this.uint8();result+=this.uint8()<<8;result+=this.uint8()<<16;result+=this.uint8()<<24;return result;},uint64(){const low=this.uint32();const high=this.uint32();const lowStr=('0000000'+low.toString(16)).substr(-8);const highStr=('0000000'+high.toString(16)).substr(-8);const result=highStr+lowStr;return result;},seekTo(position){this.position_=position;},hasMore(){return this.position_<this.data_.length;}};function DdmsImporter(model,data){this.importPriority=3;this.model_=model;this.data_=data;}
6069DdmsImporter.canImport=function(data){if(typeof(data)==='string'||data instanceof String){const header=data.slice(0,1000);return header.startsWith('*version\n')&&header.indexOf('\nvm=')>=0&&header.indexOf(kThreadsStart)>=0;}
6070return false;};DdmsImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'DdmsImporter';},get model(){return this.model_;},importEvents(){const divider=this.data_.indexOf(kMethodLutEndMarker)+
6071kMethodLutEndMarker.length;this.metadata_=this.data_.slice(0,divider);this.methods_={};this.parseThreads();this.parseMethods();const traceReader=new Reader(this.data_.slice(divider));const magic=traceReader.uint32();if(magic!==kTraceMagicValue){throw Error('Failed to match magic value');}
6072this.version_=traceReader.uint16();if(this.version_!==kTraceVersionDualClock){throw Error('Unknown version');}
6073const dataOffest=traceReader.uint16();const startDateTime=traceReader.uint64();const recordSize=traceReader.uint16();traceReader.seekTo(dataOffest);while(traceReader.hasMore()){this.parseTraceEntry(traceReader);}},parseTraceEntry(reader){const tid=reader.uint16();const methodPacked=reader.uint32();const cpuSinceStart=reader.uint32();const wallClockSinceStart=reader.uint32();let method=methodPacked&~kTraceMethodActionMask;const action=methodPacked&kTraceMethodActionMask;const thread=this.getTid(tid);method=this.getMethodName(method);if(action===kTraceMethodEnter){thread.sliceGroup.beginSlice(kCategory,method,wallClockSinceStart,undefined,cpuSinceStart);}else if(thread.sliceGroup.openSliceCount){thread.sliceGroup.endSlice(wallClockSinceStart,cpuSinceStart);}},parseThreads(){let threads=this.metadata_.slice(this.metadata_.indexOf(kThreadsStart)+
6074kThreadsStart.length);threads=threads.slice(0,threads.indexOf('\n*'));threads=threads.split('\n');threads.forEach(this.parseThread.bind(this));},parseThread(threadLine){const tid=threadLine.slice(0,threadLine.indexOf('\t'));const thread=this.getTid(parseInt(tid));thread.name=threadLine.slice(threadLine.indexOf('\t')+1);},getTid(tid){return this.model_.getOrCreateProcess(kPid).getOrCreateThread(tid);},parseMethods(){let methods=this.metadata_.slice(this.metadata_.indexOf(kMethodsStart)+
6075kMethodsStart.length);methods=methods.slice(0,methods.indexOf('\n*'));methods=methods.split('\n');methods.forEach(this.parseMethod.bind(this));},parseMethod(methodLine){const data=methodLine.split('\t');const methodId=parseInt(data[0]);const methodName=data[1]+'.'+data[2]+data[3];this.addMethod(methodId,methodName);},addMethod(methodId,methodName){this.methods_[methodId]=methodName;},getMethodName(methodId){return this.methods_[methodId];}};tr.importer.Importer.register(DdmsImporter);return{DdmsImporter,};});'use strict';tr.exportTo('tr.e.audits',function(){class LowMemoryAuditor extends tr.c.Auditor{constructor(model){super();this.model_=model;}
6076runAnnotate(){this.model_.device.lowMemoryEvents=this.getLowMemoryEvents_();}
6077getLowMemoryEvents_(){const model=this.model_;const result=[];for(const process of model.getAllProcesses()){for(const e of process.getDescendantEvents()){if(!(e instanceof tr.model.ThreadSlice)||e.duration!==0){continue;}
6078if(e.category!=='lowmemory'){continue;}
6079result.push(e);}}
6080return result;}}
6081tr.c.Auditor.register(LowMemoryAuditor);return{LowMemoryAuditor};});'use strict';function filterDuplicateTimestamps(timestamps){const dedupedTimestamps=[];let lastTs=0;for(const ts of timestamps){if(ts-lastTs>=1){dedupedTimestamps.push(ts);lastTs=ts;}}
6082return dedupedTimestamps;}
6083tr.exportTo('tr.e.audits',function(){const VSYNC_COUNTER_PRECISIONS={'android.VSYNC-app':15,'android.VSYNC':15};const VSYNC_SLICE_PRECISIONS={'RenderWidgetHostViewAndroid::OnVSync':5,'VSYNC':10,'vblank':10,'DisplayLinkMac::GetVSyncParameters':5};const BEGIN_FRAME_SLICE_PRECISION={'DisplayScheduler::BeginFrame':10};function VSyncAuditor(model){tr.c.Auditor.call(this,model);}
6084VSyncAuditor.prototype={__proto__:tr.c.Auditor.prototype,runAnnotate(){this.model.device.vSyncTimestamps=this.findVSyncTimestamps(this.model);},findVSyncTimestamps(model){let times=[];let maxPrecision=Number.NEGATIVE_INFINITY;let maxTitle=undefined;function useInstead(title,precisions){const precision=precisions[title];if(precision===undefined)return false;if(title===maxTitle)return true;if(precision<=maxPrecision){if(precision===maxPrecision){model.importWarning({type:'VSyncAuditor',message:'Encountered two different VSync events ('+
6085maxTitle+', '+title+') with the same precision, '+'ignoring the newer one ('+title+')',showToUser:false,});}
6086return false;}
6087maxPrecision=precision;maxTitle=title;times=[];return true;}
6088for(const pid in model.processes){const process=model.processes[pid];for(const cid in process.counters){if(useInstead(cid,VSYNC_COUNTER_PRECISIONS)){const counter=process.counters[cid];for(let i=0;i<counter.series.length;i++){const series=counter.series[i];Array.prototype.push.apply(times,series.timestamps);}}}
6089for(const tid in process.threads){const thread=process.threads[tid];for(let i=0;i<thread.sliceGroup.slices.length;i++){const slice=thread.sliceGroup.slices[i];if(useInstead(slice.title,VSYNC_SLICE_PRECISIONS)){times.push(slice.start);}else if(useInstead(slice.title,BEGIN_FRAME_SLICE_PRECISION)&&slice.args.args&&slice.args.args.frame_time_us){times.push(slice.args.args.frame_time_us/1000.0);}}}}
6090times.sort(function(x,y){return x-y;});return filterDuplicateTimestamps(times);}};tr.c.Auditor.register(VSyncAuditor);return{VSyncAuditor,};});'use strict';tr.exportTo('tr.importer',function(){function EmptyImporter(events){this.importPriority=0;}
6091EmptyImporter.canImport=function(eventData){if(eventData instanceof Array&&eventData.length===0){return true;}
6092if(typeof(eventData)==='string'||eventData instanceof String){return eventData.length===0;}
6093return false;};EmptyImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'EmptyImporter';}};tr.importer.Importer.register(EmptyImporter);return{EmptyImporter,};});'use strict';tr.exportTo('tr.model.um',function(){function AnimationExpectation(parentModel,initiatorTitle,start,duration){tr.model.um.UserExpectation.call(this,parentModel,initiatorTitle,start,duration);this.frameEvents_=undefined;}
6094AnimationExpectation.prototype={__proto__:tr.model.um.UserExpectation.prototype,constructor:AnimationExpectation,get frameEvents(){if(this.frameEvents_){return this.frameEvents_;}
6095this.frameEvents_=new tr.model.EventSet();this.associatedEvents.forEach(function(event){if(event.title===tr.model.helpers.IMPL_RENDERING_STATS){this.frameEvents_.push(event);}},this);return this.frameEvents_;}};tr.model.um.UserExpectation.subTypes.register(AnimationExpectation,{stageTitle:'Animation',colorId:tr.b.ColorScheme.getColorIdForReservedName('rail_animation')});return{AnimationExpectation,};});'use strict';tr.exportTo('tr.importer',function(){function ProtoExpectation(type,initiatorType){this.type=type;this.initiatorType=initiatorType;this.start=Infinity;this.end=-Infinity;this.associatedEvents=new tr.model.EventSet();this.isAnimationBegin=false;}
6096ProtoExpectation.RESPONSE_TYPE='r';ProtoExpectation.ANIMATION_TYPE='a';ProtoExpectation.IGNORED_TYPE='ignored';const INITIATOR_HIERARCHY=[tr.model.um.INITIATOR_TYPE.PINCH,tr.model.um.INITIATOR_TYPE.FLING,tr.model.um.INITIATOR_TYPE.MOUSE_WHEEL,tr.model.um.INITIATOR_TYPE.SCROLL,tr.model.um.INITIATOR_TYPE.VR,tr.model.um.INITIATOR_TYPE.VIDEO,tr.model.um.INITIATOR_TYPE.WEBGL,tr.model.um.INITIATOR_TYPE.CSS,tr.model.um.INITIATOR_TYPE.MOUSE,tr.model.um.INITIATOR_TYPE.KEYBOARD,tr.model.um.INITIATOR_TYPE.TAP,tr.model.um.INITIATOR_TYPE.TOUCH];function combineInitiatorTypes(title1,title2){for(const item of INITIATOR_HIERARCHY){if(title1===item||title2===item)return item;}
6097throw new Error('Invalid titles in combineInitiatorTypes');}
6098ProtoExpectation.prototype={get isValid(){return this.end>this.start;},containsTypeNames(typeNames){return this.associatedEvents.some(x=>typeNames.indexOf(x.typeName)>=0);},containsSliceTitle(title){return this.associatedEvents.some(x=>title===x.title);},createInteractionRecord(model){if(this.type!==ProtoExpectation.IGNORED_TYPE&&!this.isValid){model.importWarning({type:'ProtoExpectation',message:'Please file a bug with this trace. '+this.debug(),showToUser:true});return undefined;}
6099const duration=this.end-this.start;let ir=undefined;switch(this.type){case ProtoExpectation.RESPONSE_TYPE:ir=new tr.model.um.ResponseExpectation(model,this.initiatorType,this.start,duration,this.isAnimationBegin);break;case ProtoExpectation.ANIMATION_TYPE:ir=new tr.model.um.AnimationExpectation(model,this.initiatorType,this.start,duration);break;}
6100if(!ir)return undefined;ir.sourceEvents.addEventSet(this.associatedEvents);function pushAssociatedEvents(event){ir.associatedEvents.push(event);if(event.associatedEvents){ir.associatedEvents.addEventSet(event.associatedEvents);}}
6101this.associatedEvents.forEach(function(event){pushAssociatedEvents(event);if(event.subSlices){event.subSlices.forEach(pushAssociatedEvents);}});return ir;},merge(other){this.initiatorType=combineInitiatorTypes(this.initiatorType,other.initiatorType);this.associatedEvents.addEventSet(other.associatedEvents);this.start=Math.min(this.start,other.start);this.end=Math.max(this.end,other.end);if(other.isAnimationBegin){this.isAnimationBegin=true;}},pushEvent(event){this.start=Math.min(this.start,event.start);this.end=Math.max(this.end,event.end);this.associatedEvents.push(event);},pushSample(sample){this.start=Math.min(this.start,sample.timestamp);this.end=Math.max(this.end,sample.timestamp);this.associatedEvents.push(sample);},containsTimestampInclusive(timestamp){return(this.start<=timestamp)&&(timestamp<=this.end);},intersects(other){return(other.start<this.end)&&(other.end>this.start);},isNear(event,threshold){return(this.end+threshold)>event.start;},debug(){let debugString=this.type+'(';debugString+=parseInt(this.start)+' ';debugString+=parseInt(this.end);this.associatedEvents.forEach(function(event){debugString+=' '+event.typeName;});return debugString+')';}};return{ProtoExpectation,};});'use strict';tr.exportTo('tr.importer',function(){const ProtoExpectation=tr.importer.ProtoExpectation;const INITIATOR_TYPE=tr.model.um.INITIATOR_TYPE;const INPUT_TYPE=tr.e.cc.INPUT_EVENT_TYPE_NAMES;const KEYBOARD_TYPE_NAMES=[INPUT_TYPE.CHAR,INPUT_TYPE.KEY_DOWN_RAW,INPUT_TYPE.KEY_DOWN,INPUT_TYPE.KEY_UP];const MOUSE_RESPONSE_TYPE_NAMES=[INPUT_TYPE.CLICK,INPUT_TYPE.CONTEXT_MENU];const MOUSE_WHEEL_TYPE_NAMES=[INPUT_TYPE.MOUSE_WHEEL];const MOUSE_DRAG_TYPE_NAMES=[INPUT_TYPE.MOUSE_DOWN,INPUT_TYPE.MOUSE_MOVE,INPUT_TYPE.MOUSE_UP];const TAP_TYPE_NAMES=[INPUT_TYPE.TAP,INPUT_TYPE.TAP_CANCEL,INPUT_TYPE.TAP_DOWN];const PINCH_TYPE_NAMES=[INPUT_TYPE.PINCH_BEGIN,INPUT_TYPE.PINCH_END,INPUT_TYPE.PINCH_UPDATE];const FLING_TYPE_NAMES=[INPUT_TYPE.FLING_CANCEL,INPUT_TYPE.FLING_START];const TOUCH_TYPE_NAMES=[INPUT_TYPE.TOUCH_END,INPUT_TYPE.TOUCH_MOVE,INPUT_TYPE.TOUCH_START];const SCROLL_TYPE_NAMES=[INPUT_TYPE.SCROLL_BEGIN,INPUT_TYPE.SCROLL_END,INPUT_TYPE.SCROLL_UPDATE];const ALL_HANDLED_TYPE_NAMES=[].concat(KEYBOARD_TYPE_NAMES,MOUSE_RESPONSE_TYPE_NAMES,MOUSE_WHEEL_TYPE_NAMES,MOUSE_DRAG_TYPE_NAMES,PINCH_TYPE_NAMES,TAP_TYPE_NAMES,FLING_TYPE_NAMES,TOUCH_TYPE_NAMES,SCROLL_TYPE_NAMES);const RENDERER_FLING_TITLE='InputHandlerProxy::HandleGestureFling::started';const PLAYBACK_EVENT_TITLE='VideoPlayback';const CSS_ANIMATION_TITLE='Animation';const VR_COUNTER_NAMES=['gpu.WebVR FPS','gpu.WebVR frame time (ms)','gpu.WebVR pose prediction (ms)',];const VR_EVENT_NAMES=['VrShellGl::AcquireFrame','VrShellGl::DrawFrame','VrShellGl::DrawSubmitFrameWhenReady','VrShellGl::DrawUiView','VrShellGl::UpdateController',];const VR_RESPONSE_MS=500;const INPUT_MERGE_THRESHOLD_MS=200;const ANIMATION_MERGE_THRESHOLD_MS=32;const MOUSE_WHEEL_THRESHOLD_MS=40;const MOUSE_MOVE_THRESHOLD_MS=40;function compareEvents(x,y){if(x.start!==y.start){return x.start-y.start;}
6102if(x.end!==y.end){return x.end-y.end;}
6103if(x.guid&&y.guid){return x.guid-y.guid;}
6104return 0;}
6105function forEventTypesIn(events,typeNames,cb,opt_this){events.forEach(function(event){if(typeNames.indexOf(event.typeName)>=0){cb.call(opt_this,event);}});}
6106function causedFrame(event){return event.associatedEvents.some(x=>x.title===tr.model.helpers.IMPL_RENDERING_STATS);}
6107function getSortedFrameEventsByProcess(modelHelper){const frameEventsByPid={};for(const[pid,rendererHelper]of
6108Object.entries(modelHelper.rendererHelpers)){frameEventsByPid[pid]=rendererHelper.getFrameEventsInRange(tr.model.helpers.IMPL_FRAMETIME_TYPE,modelHelper.model.bounds);}
6109return frameEventsByPid;}
6110function getSortedInputEvents(modelHelper){const inputEvents=[];const browserProcess=modelHelper.browserHelper.process;const mainThread=browserProcess.findAtMostOneThreadNamed('CrBrowserMain');for(const slice of mainThread.asyncSliceGroup.getDescendantEvents()){if(!slice.isTopLevel)continue;if(!(slice instanceof tr.e.cc.InputLatencyAsyncSlice))continue;if(isNaN(slice.start)||isNaN(slice.duration)||isNaN(slice.end)){continue;}
6111inputEvents.push(slice);}
6112return inputEvents.sort(compareEvents);}
6113function findProtoExpectations(modelHelper,sortedInputEvents,warn){const protoExpectations=[];const handlers=[handleKeyboardEvents,handleMouseResponseEvents,handleMouseWheelEvents,handleMouseDragEvents,handleTapResponseEvents,handlePinchEvents,handleFlingEvents,handleTouchEvents,handleScrollEvents,handleCSSAnimations,handleWebGLAnimations,handleVideoAnimations,handleVrAnimations,];handlers.forEach(function(handler){protoExpectations.push.apply(protoExpectations,handler(modelHelper,sortedInputEvents,warn));});protoExpectations.sort(compareEvents);return protoExpectations;}
6114function handleKeyboardEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];forEventTypesIn(sortedInputEvents,KEYBOARD_TYPE_NAMES,function(event){const pe=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.KEYBOARD);pe.pushEvent(event);protoExpectations.push(pe);});return protoExpectations;}
6115function handleMouseResponseEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];forEventTypesIn(sortedInputEvents,MOUSE_RESPONSE_TYPE_NAMES,function(event){const pe=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.MOUSE);pe.pushEvent(event);protoExpectations.push(pe);});return protoExpectations;}
6116function handleMouseWheelEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];let currentPE=undefined;let prevEvent_=undefined;forEventTypesIn(sortedInputEvents,MOUSE_WHEEL_TYPE_NAMES,function(event){const prevEvent=prevEvent_;prevEvent_=event;if(currentPE&&(prevEvent.start+MOUSE_WHEEL_THRESHOLD_MS)>=event.start){if(currentPE.type===ProtoExpectation.ANIMATION_TYPE){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.MOUSE_WHEEL);currentPE.pushEvent(event);protoExpectations.push(currentPE);}
6117return;}
6118currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.MOUSE_WHEEL);currentPE.pushEvent(event);protoExpectations.push(currentPE);});return protoExpectations;}
6119function handleMouseDragEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];let currentPE=undefined;let mouseDownEvent=undefined;forEventTypesIn(sortedInputEvents,MOUSE_DRAG_TYPE_NAMES,function(event){switch(event.typeName){case INPUT_TYPE.MOUSE_DOWN:if(causedFrame(event)){const pe=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.MOUSE);pe.pushEvent(event);protoExpectations.push(pe);}else{mouseDownEvent=event;}
6120break;case INPUT_TYPE.MOUSE_MOVE:if(!causedFrame(event)){const pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);}else if(!currentPE||!currentPE.isNear(event,MOUSE_MOVE_THRESHOLD_MS)){currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.MOUSE);currentPE.pushEvent(event);if(mouseDownEvent){currentPE.associatedEvents.push(mouseDownEvent);mouseDownEvent=undefined;}
6121protoExpectations.push(currentPE);}else{if(currentPE.type===ProtoExpectation.ANIMATION_TYPE){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.MOUSE);currentPE.pushEvent(event);protoExpectations.push(currentPE);}}
6122break;case INPUT_TYPE.MOUSE_UP:if(!mouseDownEvent){const pe=new ProtoExpectation(causedFrame(event)?ProtoExpectation.RESPONSE_TYPE:ProtoExpectation.IGNORED_TYPE,INITIATOR_TYPE.MOUSE);pe.pushEvent(event);protoExpectations.push(pe);break;}
6123if(currentPE){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.MOUSE);if(mouseDownEvent){currentPE.associatedEvents.push(mouseDownEvent);}
6124currentPE.pushEvent(event);protoExpectations.push(currentPE);}
6125mouseDownEvent=undefined;currentPE=undefined;break;}});if(mouseDownEvent){currentPE=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);currentPE.pushEvent(mouseDownEvent);protoExpectations.push(currentPE);}
6126return protoExpectations;}
6127function handleTapResponseEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];let currentPE=undefined;forEventTypesIn(sortedInputEvents,TAP_TYPE_NAMES,function(event){switch(event.typeName){case INPUT_TYPE.TAP_DOWN:currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.TAP);currentPE.pushEvent(event);protoExpectations.push(currentPE);break;case INPUT_TYPE.TAP:if(currentPE){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.TAP);currentPE.pushEvent(event);protoExpectations.push(currentPE);}
6128currentPE=undefined;break;case INPUT_TYPE.TAP_CANCEL:if(!currentPE){const pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);break;}
6129if(currentPE.isNear(event,INPUT_MERGE_THRESHOLD_MS)){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.TAP);currentPE.pushEvent(event);protoExpectations.push(currentPE);}
6130currentPE=undefined;break;}});return protoExpectations;}
6131function handlePinchEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];let currentPE=undefined;let sawFirstUpdate=false;const modelBounds=modelHelper.model.bounds;forEventTypesIn(sortedInputEvents,PINCH_TYPE_NAMES,function(event){switch(event.typeName){case INPUT_TYPE.PINCH_BEGIN:if(currentPE&&currentPE.isNear(event,INPUT_MERGE_THRESHOLD_MS)){currentPE.pushEvent(event);break;}
6132currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.PINCH);currentPE.pushEvent(event);currentPE.isAnimationBegin=true;protoExpectations.push(currentPE);sawFirstUpdate=false;break;case INPUT_TYPE.PINCH_UPDATE:if(!currentPE||((currentPE.type===ProtoExpectation.RESPONSE_TYPE)&&sawFirstUpdate)||!currentPE.isNear(event,INPUT_MERGE_THRESHOLD_MS)){currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.PINCH);currentPE.pushEvent(event);protoExpectations.push(currentPE);}else{currentPE.pushEvent(event);sawFirstUpdate=true;}
6133break;case INPUT_TYPE.PINCH_END:if(currentPE){currentPE.pushEvent(event);}else{const pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);}
6134currentPE=undefined;break;}});return protoExpectations;}
6135function handleFlingEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];let currentPE=undefined;function isRendererFling(event){return event.title===RENDERER_FLING_TITLE;}
6136const browserHelper=modelHelper.browserHelper;const flingEvents=browserHelper.getAllAsyncSlicesMatching(isRendererFling);forEventTypesIn(sortedInputEvents,FLING_TYPE_NAMES,function(event){flingEvents.push(event);});flingEvents.sort(compareEvents);flingEvents.forEach(function(event){if(event.title===RENDERER_FLING_TITLE){if(currentPE){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.FLING);currentPE.pushEvent(event);protoExpectations.push(currentPE);}
6137return;}
6138switch(event.typeName){case INPUT_TYPE.FLING_START:if(currentPE){warn({type:'UserModelBuilder',message:'Unexpected FlingStart',showToUser:false,});currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.FLING);currentPE.pushEvent(event);currentPE.end=0;protoExpectations.push(currentPE);}
6139break;case INPUT_TYPE.FLING_CANCEL:if(currentPE){currentPE.pushEvent(event);currentPE.end=event.start;currentPE=undefined;}else{const pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);}
6140break;}});if(currentPE&&!currentPE.end){currentPE.end=modelHelper.model.bounds.max;}
6141return protoExpectations;}
6142function handleTouchEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];let currentPE=undefined;let sawFirstMove=false;forEventTypesIn(sortedInputEvents,TOUCH_TYPE_NAMES,function(event){switch(event.typeName){case INPUT_TYPE.TOUCH_START:if(currentPE){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.TOUCH);currentPE.pushEvent(event);currentPE.isAnimationBegin=true;protoExpectations.push(currentPE);sawFirstMove=false;}
6143break;case INPUT_TYPE.TOUCH_MOVE:if(!currentPE){currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.TOUCH);currentPE.pushEvent(event);protoExpectations.push(currentPE);break;}
6144if((sawFirstMove&&(currentPE.type===ProtoExpectation.RESPONSE_TYPE))||!currentPE.isNear(event,INPUT_MERGE_THRESHOLD_MS)){const prevEnd=currentPE.end;currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.TOUCH);currentPE.pushEvent(event);currentPE.start=prevEnd;protoExpectations.push(currentPE);}else{currentPE.pushEvent(event);sawFirstMove=true;}
6145break;case INPUT_TYPE.TOUCH_END:if(!currentPE){const pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);break;}
6146if(currentPE.isNear(event,INPUT_MERGE_THRESHOLD_MS)){currentPE.pushEvent(event);}else{const pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);}
6147currentPE=undefined;break;}});return protoExpectations;}
6148function handleScrollEvents(modelHelper,sortedInputEvents,warn){const protoExpectations=[];let currentPE=undefined;let sawFirstUpdate=false;forEventTypesIn(sortedInputEvents,SCROLL_TYPE_NAMES,function(event){switch(event.typeName){case INPUT_TYPE.SCROLL_BEGIN:currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.SCROLL);currentPE.pushEvent(event);currentPE.isAnimationBegin=true;protoExpectations.push(currentPE);sawFirstUpdate=false;break;case INPUT_TYPE.SCROLL_UPDATE:if(currentPE){if(currentPE.isNear(event,INPUT_MERGE_THRESHOLD_MS)&&((currentPE.type===ProtoExpectation.ANIMATION_TYPE)||!sawFirstUpdate)){currentPE.pushEvent(event);sawFirstUpdate=true;}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.SCROLL);currentPE.pushEvent(event);protoExpectations.push(currentPE);}}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.SCROLL);currentPE.pushEvent(event);protoExpectations.push(currentPE);}
6149break;case INPUT_TYPE.SCROLL_END:if(!currentPE){warn({type:'UserModelBuilder',message:'Unexpected ScrollEnd',showToUser:false,});const pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);break;}
6150currentPE.pushEvent(event);break;}});return protoExpectations;}
6151function handleVideoAnimations(modelHelper,sortedInputEvents,warn){const events=[];for(const pid in modelHelper.rendererHelpers){for(const tid in modelHelper.rendererHelpers[pid].process.threads){for(const asyncSlice of
6152modelHelper.rendererHelpers[pid].process.threads[tid].asyncSliceGroup.slices){if(asyncSlice.title===PLAYBACK_EVENT_TITLE){events.push(asyncSlice);}}}}
6153events.sort(tr.importer.compareEvents);const protoExpectations=[];for(const event of events){const currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.VIDEO);currentPE.start=event.start;currentPE.end=event.end;currentPE.pushEvent(event);protoExpectations.push(currentPE);}
6154return protoExpectations;}
6155function handleVrAnimations(modelHelper,sortedInputEvents,warn){const events=[];const processes=[];if(typeof modelHelper.gpuHelper!=='undefined'){processes.push(modelHelper.gpuHelper.process);}
6156for(const helper of Object.values(modelHelper.rendererHelpers)){processes.push(helper.process);}
6157for(const helper of Object.values(modelHelper.browserHelpers)){processes.push(helper.process);}
6158let vrCounterStart=Number.MAX_SAFE_INTEGER;let vrEventStart=Number.MAX_SAFE_INTEGER;for(const proc of processes){for(const[counterName,counterSeries]of
6159Object.entries(proc.counters)){if(VR_COUNTER_NAMES.includes(counterName)){for(const series of counterSeries.series){for(const sample of series.samples){events.push(sample);vrCounterStart=Math.min(vrCounterStart,sample.timestamp);}}}}
6160for(const thread of Object.values(proc.threads)){for(const container of thread.childEventContainers()){for(const slice of container.slices){if(VR_EVENT_NAMES.includes(slice.title)){events.push(slice);vrEventStart=Math.min(vrEventStart,slice.start);}}}}}
6161if(events.length===0){return[];}
6162events.sort(function(x,y){if(x.range.min!==y.range.min){return x.range.min-y.range.min;}
6163return x.guid-y.guid;});vrCounterStart=(vrCounterStart===Number.MAX_SAFE_INTEGER)?0:vrCounterStart;vrEventStart=(vrEventStart===Number.MAX_SAFE_INTEGER)?0:vrEventStart;const vrAnimationStart=Math.max(vrCounterStart,vrEventStart)+
6164VR_RESPONSE_MS;const responsePE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,INITIATOR_TYPE.VR);const animationPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.VR);let lastResponseEvent;for(const event of events){if(event.range.min<vrAnimationStart){if(event instanceof tr.model.CounterSample){responsePE.pushSample(event);}else{responsePE.pushEvent(event);}
6165lastResponseEvent=event;}else{if(event instanceof tr.model.CounterSample){animationPE.pushSample(event);}else{animationPE.pushEvent(event);}}}
6166if(lastResponseEvent instanceof tr.model.CounterSample){animationPE.pushSample(lastResponseEvent);}else{animationPE.pushEvent(lastResponseEvent);}
6167return[responsePE,animationPE];}
6168function handleCSSAnimations(modelHelper,sortedInputEvents,warn){const animationEvents=modelHelper.browserHelper.getAllAsyncSlicesMatching(function(event){return((event.title===CSS_ANIMATION_TITLE)&&event.isTopLevel&&(event.duration>0));});const animationRanges=[];function pushAnimationRange(start,end,animation){const range=tr.b.math.Range.fromExplicitRange(start,end);range.animation=animation;animationRanges.push(range);}
6169animationEvents.forEach(function(animation){if(animation.subSlices.length===0){pushAnimationRange(animation.start,animation.end,animation);}else{let start=undefined;animation.subSlices.forEach(function(sub){if((sub.args.data.state==='running')&&(start===undefined)){start=sub.start;}else if((sub.args.data.state==='paused')||(sub.args.data.state==='idle')||(sub.args.data.state==='finished')){if(start===undefined){start=modelHelper.model.bounds.min;}
6170pushAnimationRange(start,sub.start,animation);start=undefined;}});if(start!==undefined){pushAnimationRange(start,animation.end,animation);}}});return animationRanges.map(function(range){const protoExpectation=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.CSS);protoExpectation.start=range.min;protoExpectation.end=range.max;protoExpectation.associatedEvents.push(range.animation);return protoExpectation;});}
6171function findWebGLEvents(modelHelper,mailboxEvents,animationEvents){for(const event of modelHelper.model.getDescendantEvents()){if(event.title==='DrawingBuffer::prepareMailbox'){mailboxEvents.push(event);}else if(event.title==='PageAnimator::serviceScriptedAnimations'){animationEvents.push(event);}}}
6172function findMailboxEventsNearAnimationEvents(mailboxEvents,animationEvents){if(animationEvents.length===0)return[];mailboxEvents.sort(compareEvents);animationEvents.sort(compareEvents);const animationIterator=animationEvents[Symbol.iterator]();let animationEvent=animationIterator.next().value;const filteredEvents=[];for(const event of mailboxEvents){while(animationEvent&&(animationEvent.start<(event.start-ANIMATION_MERGE_THRESHOLD_MS))){animationEvent=animationIterator.next().value;}
6173if(!animationEvent)break;if(animationEvent.start<(event.start+ANIMATION_MERGE_THRESHOLD_MS)){filteredEvents.push(event);}}
6174return filteredEvents;}
6175function createProtoExpectationsFromMailboxEvents(mailboxEvents){const protoExpectations=[];let currentPE=undefined;for(const event of mailboxEvents){if(currentPE===undefined||!currentPE.isNear(event,ANIMATION_MERGE_THRESHOLD_MS)){currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,INITIATOR_TYPE.WEBGL);currentPE.pushEvent(event);protoExpectations.push(currentPE);}else{currentPE.pushEvent(event);}}
6176return protoExpectations;}
6177function handleWebGLAnimations(modelHelper,sortedInputEvents,warn){const prepareMailboxEvents=[];const scriptedAnimationEvents=[];findWebGLEvents(modelHelper,prepareMailboxEvents,scriptedAnimationEvents);const webGLMailboxEvents=findMailboxEventsNearAnimationEvents(prepareMailboxEvents,scriptedAnimationEvents);return createProtoExpectationsFromMailboxEvents(webGLMailboxEvents);}
6178function postProcessProtoExpectations(modelHelper,protoExpectations){protoExpectations=findFrameEventsForAnimations(modelHelper,protoExpectations);protoExpectations=mergeIntersectingResponses(protoExpectations);protoExpectations=mergeIntersectingAnimations(protoExpectations);protoExpectations=fixResponseAnimationStarts(protoExpectations);protoExpectations=fixTapResponseTouchAnimations(protoExpectations);return protoExpectations;}
6179function mergeIntersectingResponses(protoExpectations){const newPEs=[];while(protoExpectations.length){const pe=protoExpectations.shift();newPEs.push(pe);if(pe.type!==ProtoExpectation.RESPONSE_TYPE)continue;for(let i=0;i<protoExpectations.length;++i){const otherPE=protoExpectations[i];if(otherPE.type!==pe.type)continue;if(!otherPE.intersects(pe))continue;const typeNames=pe.associatedEvents.map(function(event){return event.typeName;});if(otherPE.containsTypeNames(typeNames))continue;pe.merge(otherPE);protoExpectations.splice(i,1);--i;}}
6180return newPEs;}
6181function mergeIntersectingAnimations(protoExpectations){const newPEs=[];while(protoExpectations.length){const pe=protoExpectations.shift();newPEs.push(pe);if(pe.type!==ProtoExpectation.ANIMATION_TYPE)continue;const isCSS=pe.initiatorType===INITIATOR_TYPE.CSS;const isFling=pe.containsTypeNames([INPUT_TYPE.FLING_START]);const isVideo=pe.initiatorType===INITIATOR_TYPE.VIDEO;for(let i=0;i<protoExpectations.length;++i){const otherPE=protoExpectations[i];if(otherPE.type!==pe.type)continue;if((isCSS&&otherPE.initiatorType!==INITIATOR_TYPE.CSS)||isFling!==otherPE.containsTypeNames([INPUT_TYPE.FLING_START])||isVideo&&otherPE.initiatorType!==INITIATOR_TYPE.VIDEO||otherPE.initiatorType===INITIATOR_TYPE.VR){continue;}
6182if(isCSS){if(!pe.isNear(otherPE,ANIMATION_MERGE_THRESHOLD_MS)){continue;}}else if(!otherPE.intersects(pe)){continue;}
6183pe.merge(otherPE);protoExpectations.splice(i,1);--i;}}
6184return newPEs;}
6185function fixResponseAnimationStarts(protoExpectations){protoExpectations.forEach(function(ape){if(ape.type!==ProtoExpectation.ANIMATION_TYPE){return;}
6186protoExpectations.forEach(function(rpe){if(rpe.type!==ProtoExpectation.RESPONSE_TYPE){return;}
6187if(!ape.containsTimestampInclusive(rpe.end)){return;}
6188if(ape.containsTimestampInclusive(rpe.start)){return;}
6189ape.start=rpe.end;});});return protoExpectations;}
6190function fixTapResponseTouchAnimations(protoExpectations){function isTapResponse(pe){return(pe.type===ProtoExpectation.RESPONSE_TYPE)&&pe.containsTypeNames([INPUT_TYPE.TAP]);}
6191function isTouchAnimation(pe){return(pe.type===ProtoExpectation.ANIMATION_TYPE)&&pe.containsTypeNames([INPUT_TYPE.TOUCH_MOVE])&&!pe.containsTypeNames([INPUT_TYPE.SCROLL_UPDATE,INPUT_TYPE.PINCH_UPDATE]);}
6192const newPEs=[];while(protoExpectations.length){const pe=protoExpectations.shift();newPEs.push(pe);const peIsTapResponse=isTapResponse(pe);const peIsTouchAnimation=isTouchAnimation(pe);if(!peIsTapResponse&&!peIsTouchAnimation){continue;}
6193for(let i=0;i<protoExpectations.length;++i){const otherPE=protoExpectations[i];if(!otherPE.intersects(pe))continue;if(peIsTapResponse&&!isTouchAnimation(otherPE))continue;if(peIsTouchAnimation&&!isTapResponse(otherPE))continue;pe.type=ProtoExpectation.RESPONSE_TYPE;pe.merge(otherPE);protoExpectations.splice(i,1);--i;}}
6194return newPEs;}
6195function findFrameEventsForAnimations(modelHelper,protoExpectations){const newPEs=[];const frameEventsByPid=getSortedFrameEventsByProcess(modelHelper);for(const pe of protoExpectations){if(pe.type!==ProtoExpectation.ANIMATION_TYPE){newPEs.push(pe);continue;}
6196const frameEvents=[];for(const pid of Object.keys(modelHelper.rendererHelpers)){const range=tr.b.math.Range.fromExplicitRange(pe.start,pe.end);frameEvents.push.apply(frameEvents,range.filterArray(frameEventsByPid[pid],e=>e.start));}
6197if(frameEvents.length===0&&!(pe.initiatorType===INITIATOR_TYPE.WEBGL||pe.initiatorType===INITIATOR_TYPE.VR)){pe.type=ProtoExpectation.IGNORED_TYPE;newPEs.push(pe);continue;}
6198pe.associatedEvents.addEventSet(frameEvents);newPEs.push(pe);}
6199return newPEs;}
6200function checkAllInputEventsHandled(modelHelper,sortedInputEvents,protoExpectations,warn){const handledEvents=[];protoExpectations.forEach(function(protoExpectation){protoExpectation.associatedEvents.forEach(function(event){if((event.title===CSS_ANIMATION_TITLE)&&(event.subSlices.length>0)){return;}
6201if((handledEvents.indexOf(event)>=0)&&(event.title!==tr.model.helpers.IMPL_RENDERING_STATS)){warn({type:'UserModelBuilder',message:`double-handled event: ${event.typeName} @ ${event.start}`,showToUser:false,});return;}
6202handledEvents.push(event);});});sortedInputEvents.forEach(function(event){if(handledEvents.indexOf(event)<0){warn({type:'UserModelBuilder',message:`double-handled event: ${event.typeName} @ ${event.start}`,showToUser:false,});}});}
6203function findInputExpectations(modelHelper){let warning;function warn(w){if(warning)return;warning=w;}
6204const sortedInputEvents=getSortedInputEvents(modelHelper);let protoExpectations=findProtoExpectations(modelHelper,sortedInputEvents,warn);protoExpectations=postProcessProtoExpectations(modelHelper,protoExpectations);checkAllInputEventsHandled(modelHelper,sortedInputEvents,protoExpectations,warn);if(warning)modelHelper.model.importWarning(warning);const expectations=[];protoExpectations.forEach(function(protoExpectation){const ir=protoExpectation.createInteractionRecord(modelHelper.model);if(ir){expectations.push(ir);}});return expectations;}
6205return{findInputExpectations,compareEvents,CSS_ANIMATION_TITLE,};});'use strict';tr.exportTo('tr.b',function(){class FixedColorScheme{constructor(namesToColors){this.namesToColors_=namesToColors;}
6206static fromNames(names){const namesToColors=new Map();const generator=new tr.b.SinebowColorGenerator();for(const name of names){namesToColors.set(name,generator.colorForKey(name));}
6207return new FixedColorScheme(namesToColors);}
6208getColor(name){const color=this.namesToColors_.get(name);if(color===undefined)throw new Error('Unknown color: '+name);return color;}}
6209const MemoryColumnColorScheme=new FixedColorScheme(new Map([['used_memory_column',new tr.b.Color(0,0,255)],['older_used_memory_column',new tr.b.Color(153,204,255)],['tracing_memory_column',new tr.b.Color(153,153,153)]]));function FixedColorSchemeRegistry(){}
6210FixedColorSchemeRegistry.lookUp=function(name){const info=this.findTypeInfoMatching(info=>info.metadata.name===name);if(!info)return undefined;return info.constructor();};const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(FixedColorSchemeRegistry,options);return{MemoryColumnColorScheme,FixedColorScheme,FixedColorSchemeRegistry,};});'use strict';tr.exportTo('tr.e.chrome.chrome_processes',function(){const CHROME_PROCESS_NAMES={BROWSER:'browser_process',RENDERER:'renderer_processes',ALL:'all_processes',GPU:'gpu_process',PPAPI:'ppapi_process',UNKNOWN:'unknown_processes',};const PROCESS_COLOR_SCHEME_NAME='ChromeProcessNames';const PROCESS_COLOR_SCHEME=tr.b.FixedColorScheme.fromNames(Object.values(CHROME_PROCESS_NAMES));tr.b.FixedColorSchemeRegistry.register(()=>PROCESS_COLOR_SCHEME,{name:PROCESS_COLOR_SCHEME_NAME,});function canonicalizeName(name){return name.toLowerCase().replace(' ','_');}
6211function canonicalizeProcessName(rawProcessName){if(!rawProcessName)return CHROME_PROCESS_NAMES.UNKNOWN;const baseCanonicalName=canonicalizeName(rawProcessName);switch(baseCanonicalName){case'renderer':return CHROME_PROCESS_NAMES.RENDERER;case'browser':return CHROME_PROCESS_NAMES.BROWSER;}
6212if(Object.values(CHROME_PROCESS_NAMES).includes(baseCanonicalName)){return baseCanonicalName;}
6213return CHROME_PROCESS_NAMES.UNKNOWN;}
6214return{CHROME_PROCESS_NAMES,PROCESS_COLOR_SCHEME,PROCESS_COLOR_SCHEME_NAME,canonicalizeName,canonicalizeProcessName,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function perceptualBlend(ir,index,score){return Math.exp(1-score);}
6215function filterExpectationsByRange(irs,opt_range){const filteredExpectations=[];irs.forEach(function(ir){if(!(ir instanceof tr.model.um.UserExpectation))return;if(!opt_range||opt_range.intersectsExplicitRangeInclusive(ir.start,ir.end)){filteredExpectations.push(ir);}});return filteredExpectations;}
6216function splitGlobalDumpsByBrowserName(model,opt_rangeOfInterest){const chromeModelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);const browserNameToGlobalDumps=new Map();const globalDumpToBrowserHelper=new WeakMap();if(chromeModelHelper){chromeModelHelper.browserHelpers.forEach(function(helper){const globalDumps=skipDumpsThatDoNotIntersectRange(helper.process.memoryDumps.map(d=>d.globalMemoryDump),opt_rangeOfInterest);globalDumps.forEach(function(globalDump){const existingHelper=globalDumpToBrowserHelper.get(globalDump);if(existingHelper!==undefined){throw new Error('Memory dump ID clash across multiple browsers '+'with PIDs: '+existingHelper.pid+' and '+helper.pid);}
6217globalDumpToBrowserHelper.set(globalDump,helper);});makeKeyUniqueAndSet(browserNameToGlobalDumps,tr.e.chrome.chrome_processes.canonicalizeName(helper.browserName),globalDumps);});}
6218const unclassifiedGlobalDumps=skipDumpsThatDoNotIntersectRange(model.globalMemoryDumps.filter(g=>!globalDumpToBrowserHelper.has(g)),opt_rangeOfInterest);if(unclassifiedGlobalDumps.length>0){makeKeyUniqueAndSet(browserNameToGlobalDumps,'unknown_browser',unclassifiedGlobalDumps);}
6219return browserNameToGlobalDumps;}
6220function makeKeyUniqueAndSet(map,key,value){let uniqueKey=key;let nextIndex=2;while(map.has(uniqueKey)){uniqueKey=key+nextIndex;nextIndex++;}
6221map.set(uniqueKey,value);}
6222function skipDumpsThatDoNotIntersectRange(dumps,opt_range){if(!opt_range)return dumps;return dumps.filter(d=>opt_range.intersectsExplicitRangeInclusive(d.start,d.end));}
6223function hasCategoryAndName(event,category,title){return event.title===title&&event.category&&tr.b.getCategoryParts(event.category).includes(category);}
6224return{hasCategoryAndName,filterExpectationsByRange,perceptualBlend,splitGlobalDumpsByBrowserName};});'use strict';tr.exportTo('tr.e.chrome',function(){class EventFinderUtils{static hasCategoryAndName(event,category,title){return event.title===title&&event.category&&tr.b.getCategoryParts(event.category).includes(category);}
6225static getSortedMainThreadEventsByFrame(rendererHelper,eventTitle,eventCategory){const eventsByFrame=new Map();for(const ev of rendererHelper.mainThread.sliceGroup.childEvents()){if(rendererHelper.isTelemetryInternalEvent(ev))continue;if(!this.hasCategoryAndName(ev,eventCategory,eventTitle)){continue;}
6226const frameIdRef=ev.args.frame;if(frameIdRef===undefined)continue;if(!eventsByFrame.has(frameIdRef)){eventsByFrame.set(frameIdRef,[]);}
6227eventsByFrame.get(frameIdRef).push(ev);}
6228return eventsByFrame;}
6229static findLastEventStartingOnOrBeforeTimestamp(sortedEvents,timestamp){const firstIndexAfterTimestamp=tr.b.findFirstTrueIndexInSortedArray(sortedEvents,e=>e.start>timestamp);if(firstIndexAfterTimestamp===0)return undefined;return sortedEvents[firstIndexAfterTimestamp-1];}
6230static findLastEventStartingBeforeTimestamp(sortedEvents,timestamp){const firstIndexAfterTimestamp=tr.b.findFirstTrueIndexInSortedArray(sortedEvents,e=>e.start>=timestamp);if(firstIndexAfterTimestamp===0)return undefined;return sortedEvents[firstIndexAfterTimestamp-1];}
6231static findNextEventStartingOnOrAfterTimestamp(sortedEvents,timestamp){const firstIndexOnOrAfterTimestamp=tr.b.findFirstTrueIndexInSortedArray(sortedEvents,e=>e.start>=timestamp);if(firstIndexOnOrAfterTimestamp===sortedEvents.length){return undefined;}
6232return sortedEvents[firstIndexOnOrAfterTimestamp];}
6233static findNextEventStartingAfterTimestamp(sortedEvents,timestamp){const firstIndexOnOrAfterTimestamp=tr.b.findFirstTrueIndexInSortedArray(sortedEvents,e=>e.start>timestamp);if(firstIndexOnOrAfterTimestamp===sortedEvents.length){return undefined;}
6234return sortedEvents[firstIndexOnOrAfterTimestamp];}}
6235return{EventFinderUtils,};});'use strict';tr.exportTo('tr.e.chrome',function(){const TIME_TO_INTERACTIVE_WINDOW_SIZE_MS=5000;const ACTIVE_REQUEST_TOLERANCE=2;const FCI_MIN_CLUSTER_SEPARATION_MS=1000;const TASK_CLUSTER_HEAVINESS_THRESHOLD_MS=250;const ENDPOINT_TYPES={LONG_TASK_START:'LONG_TASK_START',LONG_TASK_END:'LONG_TASK_END',REQUEST_START:'REQUEST_START',REQUEST_END:'REQUEST_END'};function getEndpoints_(events,startType,endType){const endpoints=[];for(const event of events){endpoints.push({time:event.start,type:startType});endpoints.push({time:event.end,type:endType});}
6236return endpoints;}
6237function reachedTTIQuiscence_(timestamp,networkQuietWindowStart,mainThreadQuietWindowStart){if(networkQuietWindowStart===undefined||mainThreadQuietWindowStart===undefined){return false;}
6238const mainThreadQuietForLongEnough=timestamp-mainThreadQuietWindowStart>=TIME_TO_INTERACTIVE_WINDOW_SIZE_MS;const networkQuietForLongEnough=timestamp-networkQuietWindowStart>=TIME_TO_INTERACTIVE_WINDOW_SIZE_MS;return mainThreadQuietForLongEnough&&networkQuietForLongEnough;}
6239function findInteractiveTime(searchBegin,searchEnd,domContentLoadedEnd,longTasksInWindow,networkRequests){const longTaskEndpoints=getEndpoints_(longTasksInWindow,ENDPOINT_TYPES.LONG_TASK_START,ENDPOINT_TYPES.LONG_TASK_END);const networkRequestEndpoints=getEndpoints_(networkRequests,ENDPOINT_TYPES.REQUEST_START,ENDPOINT_TYPES.REQUEST_END);const endpoints=longTaskEndpoints.concat(networkRequestEndpoints);endpoints.sort((a,b)=>a.time-b.time);let networkQuietWindowStart=searchBegin;let mainThreadQuietWindowStart=searchBegin;let interactiveCandidate=undefined;let activeRequests=0;for(const endpoint of endpoints){if(reachedTTIQuiscence_(endpoint.time,networkQuietWindowStart,mainThreadQuietWindowStart)){interactiveCandidate=mainThreadQuietWindowStart;break;}
6240switch(endpoint.type){case ENDPOINT_TYPES.LONG_TASK_START:mainThreadQuietWindowStart=undefined;break;case ENDPOINT_TYPES.LONG_TASK_END:mainThreadQuietWindowStart=endpoint.time;break;case ENDPOINT_TYPES.REQUEST_START:activeRequests++;if(activeRequests>ACTIVE_REQUEST_TOLERANCE){networkQuietWindowStart=undefined;}
6241break;case ENDPOINT_TYPES.REQUEST_END:activeRequests--;if(activeRequests===ACTIVE_REQUEST_TOLERANCE){networkQuietWindowStart=endpoint.time;}
6242break;default:throw new Error('Internal Error: Unhandled endpoint type.');}}
6243if(interactiveCandidate===undefined&&reachedTTIQuiscence_(searchEnd,networkQuietWindowStart,mainThreadQuietWindowStart)){interactiveCandidate=mainThreadQuietWindowStart;}
6244if(interactiveCandidate===undefined)return undefined;return Math.max(interactiveCandidate,domContentLoadedEnd);}
6245function requiredFCIWindowSizeMs(timeSinceSearchBeginMs){const timeCoefficient=1/15*Math.log(2);const timeSinceSearchBeginSeconds=tr.b.convertUnit(timeSinceSearchBeginMs,tr.b.UnitPrefixScale.METRIC.MILLI,tr.b.UnitPrefixScale.METRIC.NONE);const windowSizeSeconds=4*Math.exp(-timeCoefficient*timeSinceSearchBeginSeconds)+1;return tr.b.convertUnit(windowSizeSeconds,tr.b.UnitPrefixScale.METRIC.NONE,tr.b.UnitPrefixScale.METRIC.MILLI);}
6246class TaskCluster{constructor(tasksInClusterSorted){if(tasksInClusterSorted.length===0){throw new Error('Internal Error: TaskCluster must have non zero tasks');}
6247for(let i=0;i<tasksInClusterSorted.length-1;i++){const durationBetweenTasks=tasksInClusterSorted[i+1].start-
6248tasksInClusterSorted[i].end;if(durationBetweenTasks>=FCI_MIN_CLUSTER_SEPARATION_MS){throw new Error('Internal Error: Tasks in a TaskCluster cannot be '+'more than '+FCI_MIN_CLUSTER_SEPARATION_MS+' miliseconds apart');}
6249if(durationBetweenTasks<-1e7){throw new Error('Internal Error: List of tasks used to construct '+'TaskCluster must be sorted.');}}
6250this._clusterTasks=tasksInClusterSorted;}
6251get start(){return this._clusterTasks[0].start;}
6252get end(){return this._clusterTasks[this._clusterTasks.length-1].end;}
6253isHeavy(){return this.end-this.start>TASK_CLUSTER_HEAVINESS_THRESHOLD_MS;}}
6254function findFCITaskClusters(sortedLongTasks){const clusters=[];if(sortedLongTasks.length===0)return clusters;const firstTask=sortedLongTasks[0];const restOfTasks=sortedLongTasks.slice(1);let currentClusterTasks=[firstTask];for(const currTask of restOfTasks){const prevTask=currentClusterTasks[currentClusterTasks.length-1];if(currTask.start-prevTask.end<FCI_MIN_CLUSTER_SEPARATION_MS){currentClusterTasks.push(currTask);}else{clusters.push(new TaskCluster(currentClusterTasks));currentClusterTasks=[currTask];}}
6255clusters.push(new TaskCluster(currentClusterTasks));return clusters;}
6256function reachedFCIQuiescence_(timestamp,mainThreadQuietWindowStart,searchBegin){const quietWindowSize=timestamp-mainThreadQuietWindowStart;const timeSinceSearchBegin=mainThreadQuietWindowStart-searchBegin;const requiredWindowSize=requiredFCIWindowSizeMs(timeSinceSearchBegin);return quietWindowSize>requiredWindowSize;}
6257function findFirstCpuIdleTime(searchBegin,searchEnd,domContentLoadedEnd,longTasksInWindow){const sortedLongTasks=longTasksInWindow.sort((a,b)=>a.start-b.start);const taskClusters=findFCITaskClusters(sortedLongTasks);const heavyTaskClusters=taskClusters.filter(cluster=>cluster.isHeavy());let quietWindowBegin=searchBegin;let fiCandidate=undefined;for(const cluster of heavyTaskClusters){if(reachedFCIQuiescence_(cluster.start,quietWindowBegin,searchBegin)){fiCandidate=quietWindowBegin;break;}
6258quietWindowBegin=cluster.end;}
6259if(fiCandidate===undefined){if(reachedFCIQuiescence_(searchEnd,quietWindowBegin,searchBegin)){fiCandidate=quietWindowBegin;}else{return undefined;}}
6260return Math.max(fiCandidate,domContentLoadedEnd);}
6261return{findInteractiveTime,findFirstCpuIdleTime,requiredFCIWindowSizeMs,findFCITaskClusters,};});'use strict';tr.exportTo('tr.model.um',function(){const LOAD_SUBTYPE_NAMES={SUCCESSFUL:'Successful',FAILED:'Failed',};const DOES_LOAD_SUBTYPE_NAME_EXIST={};for(const key in LOAD_SUBTYPE_NAMES){DOES_LOAD_SUBTYPE_NAME_EXIST[LOAD_SUBTYPE_NAMES[key]]=true;}
6262function LoadExpectation(parentModel,initiatorTitle,start,duration,renderer,navigationStart,fmpEvent,dclEndEvent,cpuIdleTime,timeToInteractive,url,frameId){if(!DOES_LOAD_SUBTYPE_NAME_EXIST[initiatorTitle]){throw new Error(initiatorTitle+' is not in LOAD_SUBTYPE_NAMES');}
6263tr.model.um.UserExpectation.call(this,parentModel,initiatorTitle,start,duration);this.renderProcess=renderer;this.renderMainThread=undefined;this.routingId=undefined;this.parentRoutingId=undefined;this.loadFinishedEvent=undefined;this.navigationStart=navigationStart;this.fmpEvent=fmpEvent;this.domContentLoadedEndEvent=dclEndEvent;this.firstCpuIdleTime=cpuIdleTime;this.timeToInteractive=timeToInteractive;this.url=url;this.frameId=frameId;}
6264LoadExpectation.prototype={__proto__:tr.model.um.UserExpectation.prototype,constructor:LoadExpectation};tr.model.um.UserExpectation.subTypes.register(LoadExpectation,{stageTitle:'Load',colorId:tr.b.ColorScheme.getColorIdForReservedName('rail_load')});return{LOAD_SUBTYPE_NAMES,LoadExpectation,};});'use strict';tr.exportTo('tr.importer',function(){const LONG_TASK_THRESHOLD_MS=50;const TOP_LEVEL_TASK_TITLES=['TaskQueueManager::ProcessTaskFromWorkQueue','ThreadControllerImpl::DoWork',];function getNetworkEventsInRange(process,range){const networkEvents=[];for(const thread of Object.values(process.threads)){const threadHelper=new tr.model.helpers.ChromeThreadHelper(thread);const events=threadHelper.getNetworkEvents();for(const event of events){if(range.intersectsExplicitRangeInclusive(event.start,event.end)){networkEvents.push(event);}}}
6265return networkEvents;}
6266function findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,ts){const objects=rendererHelper.process.objects;const frameLoaderInstances=objects.instancesByTypeName_.FrameLoader;if(frameLoaderInstances===undefined)return undefined;let snapshot;for(const instance of frameLoaderInstances){if(!instance.isAliveAt(ts))continue;const maybeSnapshot=instance.getSnapshotAt(ts);if(frameIdRef!==maybeSnapshot.args.frame.id_ref)continue;snapshot=maybeSnapshot;}
6267return snapshot;}
6268function findFirstMeaningfulPaintCandidates(rendererHelper){const candidatesForFrameId={};for(const ev of rendererHelper.process.getDescendantEvents()){if(!tr.e.chrome.EventFinderUtils.hasCategoryAndName(ev,'loading','firstMeaningfulPaintCandidate')){continue;}
6269if(rendererHelper.isTelemetryInternalEvent(ev))continue;const frameIdRef=ev.args.frame;if(frameIdRef===undefined)continue;let list=candidatesForFrameId[frameIdRef];if(list===undefined){candidatesForFrameId[frameIdRef]=list=[];}
6270list.push(ev);}
6271return candidatesForFrameId;}
6272function computeInteractivityMetricSample_(rendererHelper,navigationStart,fmpEvent,domContentLoadedEndEvent,searchWindowEnd){if(domContentLoadedEndEvent===undefined||fmpEvent===undefined){return{interactiveTime:undefined,firstCpuIdleTime:undefined};}
6273const firstMeaningfulPaintTime=fmpEvent.start;const mainThreadTasks=[];for(const title of TOP_LEVEL_TASK_TITLES){mainThreadTasks.push(...rendererHelper.mainThread.findTopmostSlicesNamed(title));}
6274const longTasks=mainThreadTasks.filter(task=>task.duration>=LONG_TASK_THRESHOLD_MS);const longTasksInWindow=longTasks.filter(task=>task.range.intersectsExplicitRangeInclusive(firstMeaningfulPaintTime,searchWindowEnd));const resourceLoadEvents=getNetworkEventsInRange(rendererHelper.process,tr.b.math.Range.fromExplicitRange(navigationStart.start,searchWindowEnd));const firstCpuIdleTime=tr.e.chrome.findFirstCpuIdleTime(firstMeaningfulPaintTime,searchWindowEnd,domContentLoadedEndEvent.start,longTasksInWindow);const interactiveTime=tr.e.chrome.findInteractiveTime(firstMeaningfulPaintTime,searchWindowEnd,domContentLoadedEndEvent.start,longTasksInWindow,resourceLoadEvents);return{interactiveTime,firstCpuIdleTime};}
6275function constructLoadingExpectation_(rendererHelper,frameToDomContentLoadedEndEvents,navigationStart,fmpEvent,nextNavigationStart,url,frameId){const searchWindowEnd=nextNavigationStart!==undefined?nextNavigationStart.start:rendererHelper.modelHelper.chromeBounds.max;const dclTimesForFrame=frameToDomContentLoadedEndEvents.get(frameId)||[];const dclSearchRange=tr.b.math.Range.fromExplicitRange(navigationStart.start,searchWindowEnd);const dclTimesInWindow=dclSearchRange.filterArray(dclTimesForFrame,event=>event.start);let domContentLoadedEndEvent=undefined;if(dclTimesInWindow.length!==0){domContentLoadedEndEvent=dclTimesInWindow[dclTimesInWindow.length-1];}
6276const{interactiveTime,firstCpuIdleTime}=computeInteractivityMetricSample_(rendererHelper,navigationStart,fmpEvent,domContentLoadedEndEvent,searchWindowEnd);const duration=(interactiveTime===undefined)?searchWindowEnd-navigationStart.start:interactiveTime-navigationStart.start;return new tr.model.um.LoadExpectation(rendererHelper.modelHelper.model,tr.model.um.LOAD_SUBTYPE_NAMES.SUCCESSFUL,navigationStart.start,duration,rendererHelper.process,navigationStart,fmpEvent,domContentLoadedEndEvent,firstCpuIdleTime,interactiveTime,url,frameId);}
6277function collectLoadExpectationsForRenderer(rendererHelper){const samples=[];const frameToNavStartEvents=tr.e.chrome.EventFinderUtils.getSortedMainThreadEventsByFrame(rendererHelper,'navigationStart','blink.user_timing');const frameToDomContentLoadedEndEvents=tr.e.chrome.EventFinderUtils.getSortedMainThreadEventsByFrame(rendererHelper,'domContentLoadedEventEnd','blink.user_timing');function addSamples(frameIdRef,navigationStart,fmpMarkerEvent,nextNavigationStart){const timestamp=fmpMarkerEvent===undefined?navigationStart.start:fmpMarkerEvent.start;const snapshot=findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,timestamp);if(!snapshot||!snapshot.args.isLoadingMainFrame)return;const url=snapshot.args.documentLoaderURL;samples.push(constructLoadingExpectation_(rendererHelper,frameToDomContentLoadedEndEvents,navigationStart,fmpMarkerEvent,nextNavigationStart,url,frameIdRef));}
6278const candidatesForFrameId=findFirstMeaningfulPaintCandidates(rendererHelper);for(const[frameIdRef,navStartEvents]of frameToNavStartEvents){const fmpCandidateList=candidatesForFrameId[frameIdRef]||[];for(let index=0;index<navStartEvents.length-1;index++){const currNavigation=navStartEvents[index];const nextNavigation=navStartEvents[index+1];const fmpCandidate=tr.e.chrome.EventFinderUtils.findLastEventStartingBeforeTimestamp(fmpCandidateList,nextNavigation.start);if(fmpCandidate!==undefined&&currNavigation.start<=fmpCandidate.start){addSamples(frameIdRef,currNavigation,fmpCandidate,nextNavigation);}else{addSamples(frameIdRef,currNavigation,undefined,nextNavigation);}}
6279addSamples(frameIdRef,navStartEvents[navStartEvents.length-1],fmpCandidateList[fmpCandidateList.length-1],undefined);}
6280return samples;}
6281function findLoadExpectations(modelHelper){const loads=[];const chromeHelper=modelHelper.model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);for(const pid in chromeHelper.rendererHelpers){const rendererHelper=chromeHelper.rendererHelpers[pid];if(rendererHelper.isChromeTracingUI)continue;loads.push.apply(loads,collectLoadExpectationsForRenderer(rendererHelper));}
6282return loads;}
6283return{findLoadExpectations,};});'use strict';tr.exportTo('tr.model.um',function(){function StartupExpectation(parentModel,start,duration){tr.model.um.UserExpectation.call(this,parentModel,'',start,duration);}
6284StartupExpectation.prototype={__proto__:tr.model.um.UserExpectation.prototype,constructor:StartupExpectation};tr.model.um.UserExpectation.subTypes.register(StartupExpectation,{stageTitle:'Startup',colorId:tr.b.ColorScheme.getColorIdForReservedName('startup')});return{StartupExpectation,};});'use strict';tr.exportTo('tr.importer',function(){function getAllFrameEvents(modelHelper){const frameEvents=[];frameEvents.push.apply(frameEvents,modelHelper.browserHelper.getFrameEventsInRange(tr.model.helpers.IMPL_FRAMETIME_TYPE,modelHelper.model.bounds));for(const renderer of Object.values(modelHelper.rendererHelpers)){frameEvents.push.apply(frameEvents,renderer.getFrameEventsInRange(tr.model.helpers.IMPL_FRAMETIME_TYPE,modelHelper.model.bounds));}
6285return frameEvents.sort(tr.importer.compareEvents);}
6286function getStartupEvents(modelHelper){function isStartupSlice(slice){return slice.title==='BrowserMainLoop::CreateThreads';}
6287const events=modelHelper.browserHelper.getAllAsyncSlicesMatching(isStartupSlice);const deduper=new tr.model.EventSet();events.forEach(function(event){const sliceGroup=event.parentContainer.sliceGroup;const slice=sliceGroup&&sliceGroup.findFirstSlice();if(slice){deduper.push(slice);}});return deduper.toArray();}
6288function findStartupExpectations(modelHelper){const openingEvents=getStartupEvents(modelHelper);const closingEvents=getAllFrameEvents(modelHelper);const startups=[];openingEvents.forEach(function(openingEvent){closingEvents.forEach(function(closingEvent){if(openingEvent.closingEvent)return;if(closingEvent.openingEvent)return;if(closingEvent.start<=openingEvent.start)return;if(openingEvent.parentContainer.parent.pid!==closingEvent.parentContainer.parent.pid){return;}
6289openingEvent.closingEvent=closingEvent;closingEvent.openingEvent=openingEvent;const se=new tr.model.um.StartupExpectation(modelHelper.model,openingEvent.start,closingEvent.end-openingEvent.start);se.associatedEvents.push(openingEvent);se.associatedEvents.push(closingEvent);startups.push(se);});});return startups;}
6290return{findStartupExpectations,};});'use strict';tr.exportTo('tr.model',function(){function getAssociatedEvents(irs){const allAssociatedEvents=new tr.model.EventSet();irs.forEach(function(ir){ir.associatedEvents.forEach(function(event){if(event instanceof tr.model.FlowEvent)return;allAssociatedEvents.push(event);});});return allAssociatedEvents;}
6291function getUnassociatedEvents(model,associatedEvents){const unassociatedEvents=new tr.model.EventSet();for(const proc of model.getAllProcesses()){for(const thread of Object.values(proc.threads)){for(const event of thread.sliceGroup.getDescendantEvents()){if(!associatedEvents.contains(event)){unassociatedEvents.push(event);}}}}
6292return unassociatedEvents;}
6293function getTotalCpuDuration(events){let cpuMs=0;events.forEach(function(event){if(event.cpuSelfTime){cpuMs+=event.cpuSelfTime;}});return cpuMs;}
6294function getIRCoverageFromModel(model){const associatedEvents=getAssociatedEvents(model.userModel.expectations);if(!associatedEvents.length)return undefined;const unassociatedEvents=getUnassociatedEvents(model,associatedEvents);const associatedCpuMs=getTotalCpuDuration(associatedEvents);const unassociatedCpuMs=getTotalCpuDuration(unassociatedEvents);const totalEventCount=associatedEvents.length+unassociatedEvents.length;const totalCpuMs=associatedCpuMs+unassociatedCpuMs;let coveredEventsCpuTimeRatio=undefined;if(totalCpuMs!==0){coveredEventsCpuTimeRatio=associatedCpuMs/totalCpuMs;}
6295return{associatedEventsCount:associatedEvents.length,unassociatedEventsCount:unassociatedEvents.length,associatedEventsCpuTimeMs:associatedCpuMs,unassociatedEventsCpuTimeMs:unassociatedCpuMs,coveredEventsCountRatio:associatedEvents.length/totalEventCount,coveredEventsCpuTimeRatio};}
6296return{getIRCoverageFromModel,getAssociatedEvents,getUnassociatedEvents,};});'use strict';tr.exportTo('tr.model.um',function(){function IdleExpectation(parentModel,start,duration){const initiatorTitle='';tr.model.um.UserExpectation.call(this,parentModel,initiatorTitle,start,duration);}
6297IdleExpectation.prototype={__proto__:tr.model.um.UserExpectation.prototype,constructor:IdleExpectation};tr.model.um.UserExpectation.subTypes.register(IdleExpectation,{stageTitle:'Idle',colorId:tr.b.ColorScheme.getColorIdForReservedName('rail_idle')});return{IdleExpectation,};});'use strict';tr.exportTo('tr.importer',function(){const INSIGNIFICANT_MS=1;class UserModelBuilder{constructor(model){this.model=model;this.modelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);}
6298static supportsModelHelper(modelHelper){return modelHelper.browserHelper!==undefined;}
6299buildUserModel(){if(!this.modelHelper||!this.modelHelper.browserHelper)return;try{for(const ue of this.findUserExpectations()){this.model.userModel.expectations.push(ue);}
6300this.model.userModel.segments.push(...this.findSegments());}catch(error){this.model.importWarning({type:'UserModelBuilder',message:error,showToUser:true});}}
6301findSegments(){let timestamps=new Set();for(const expectation of this.model.userModel.expectations){timestamps.add(expectation.start);timestamps.add(expectation.end);}
6302timestamps=[...timestamps];timestamps.sort((x,y)=>x-y);const segments=[];for(let i=0;i<timestamps.length-1;++i){const segment=new tr.model.um.Segment(timestamps[i],timestamps[i+1]-timestamps[i]);segments.push(segment);const segmentRange=tr.b.math.Range.fromExplicitRange(segment.start,segment.end);for(const expectation of this.model.userModel.expectations){const expectationRange=tr.b.math.Range.fromExplicitRange(expectation.start,expectation.end);if(segmentRange.intersectsRangeExclusive(expectationRange)){segment.expectations.push(expectation);}}}
6303return segments;}
6304findUserExpectations(){const expectations=[];expectations.push.apply(expectations,tr.importer.findStartupExpectations(this.modelHelper));expectations.push.apply(expectations,tr.importer.findLoadExpectations(this.modelHelper));expectations.push.apply(expectations,tr.importer.findInputExpectations(this.modelHelper));expectations.push.apply(expectations,this.findIdleExpectations(expectations));this.collectUnassociatedEvents_(expectations);return expectations;}
6305collectUnassociatedEvents_(expectations){const vacuumUEs=[];for(const expectation of expectations){if(expectation instanceof tr.model.um.IdleExpectation||expectation instanceof tr.model.um.LoadExpectation||expectation instanceof tr.model.um.StartupExpectation){vacuumUEs.push(expectation);}}
6306if(vacuumUEs.length===0)return;const allAssociatedEvents=tr.model.getAssociatedEvents(expectations);const unassociatedEvents=tr.model.getUnassociatedEvents(this.model,allAssociatedEvents);for(const event of unassociatedEvents){if(!(event instanceof tr.model.ThreadSlice))continue;if(!event.isTopLevel)continue;for(let index=0;index<vacuumUEs.length;++index){const expectation=vacuumUEs[index];if((event.start>=expectation.start)&&(event.start<expectation.end)){expectation.associatedEvents.addEventSet(event.entireHierarchy);break;}}}}
6307findIdleExpectations(otherUEs){if(this.model.bounds.isEmpty)return;const emptyRanges=tr.b.math.findEmptyRangesBetweenRanges(tr.b.math.convertEventsToRanges(otherUEs),this.model.bounds);const expectations=[];const model=this.model;for(const range of emptyRanges){if(range.max<(range.min+INSIGNIFICANT_MS))continue;expectations.push(new tr.model.um.IdleExpectation(model,range.min,range.max-range.min));}
6308return expectations;}}
6309function createCustomizeModelLinesFromModel(model){const modelLines=[];modelLines.push('      audits.addEvent(model.browserMain,');modelLines.push('          {title: \'model start\', start: 0, end: 1});');const typeNames={};for(const typeName in tr.e.cc.INPUT_EVENT_TYPE_NAMES){typeNames[tr.e.cc.INPUT_EVENT_TYPE_NAMES[typeName]]=typeName;}
6310let modelEvents=new tr.model.EventSet();for(const ue of model.userModel.expectations){modelEvents.addEventSet(ue.sourceEvents);}
6311modelEvents=modelEvents.toArray();modelEvents.sort(tr.importer.compareEvents);for(const event of modelEvents){const startAndEnd='start: '+parseInt(event.start)+', '+'end: '+parseInt(event.end)+'});';if(event instanceof tr.e.cc.InputLatencyAsyncSlice){modelLines.push('      audits.addInputEvent(model, INPUT_TYPE.'+
6312typeNames[event.typeName]+',');}else if(event.title==='RenderFrameImpl::didCommitProvisionalLoad'){modelLines.push('      audits.addCommitLoadEvent(model,');}else if(event.title==='InputHandlerProxy::HandleGestureFling::started'){modelLines.push('      audits.addFlingAnimationEvent(model,');}else if(event.title===tr.model.helpers.IMPL_RENDERING_STATS){modelLines.push('      audits.addFrameEvent(model,');}else if(event.title===tr.importer.CSS_ANIMATION_TITLE){modelLines.push('      audits.addEvent(model.rendererMain, {');modelLines.push('        title: \'Animation\', '+startAndEnd);return;}else{throw new Error('You must extend createCustomizeModelLinesFromModel()'+'to support this event:\n'+event.title+'\n');}
6313modelLines.push('          {'+startAndEnd);}
6314modelLines.push('      audits.addEvent(model.browserMain,');modelLines.push('          {'+'title: \'model end\', '+'start: '+(parseInt(model.bounds.max)-1)+', '+'end: '+parseInt(model.bounds.max)+'});');return modelLines;}
6315function createExpectedUELinesFromModel(model){const expectedLines=[];const ueCount=model.userModel.expectations.length;for(let index=0;index<ueCount;++index){const expectation=model.userModel.expectations[index];let ueString='      {';ueString+='title: \''+expectation.title+'\', ';ueString+='start: '+parseInt(expectation.start)+', ';ueString+='end: '+parseInt(expectation.end)+', ';ueString+='eventCount: '+expectation.sourceEvents.length;ueString+='}';if(index<(ueCount-1))ueString+=',';expectedLines.push(ueString);}
6316return expectedLines;}
6317function createUEFinderTestCaseStringFromModel(model){const filename=window.location.hash.substr(1);let testName=filename.substr(filename.lastIndexOf('/')+1);testName=testName.substr(0,testName.indexOf('.'));try{const testLines=[];testLines.push('  /*');testLines.push('    This test was generated from');testLines.push('    '+filename+'');testLines.push('   */');testLines.push('  test(\''+testName+'\', function() {');testLines.push('    const verifier = new UserExpectationVerifier();');testLines.push('    verifier.customizeModelCallback = function(model) {');testLines.push.apply(testLines,createCustomizeModelLinesFromModel(model));testLines.push('    };');testLines.push('    verifier.expectedUEs = [');testLines.push.apply(testLines,createExpectedUELinesFromModel(model));testLines.push('    ];');testLines.push('    verifier.verify();');testLines.push('  });');return testLines.join('\n');}catch(error){return error;}}
6318return{UserModelBuilder,createUEFinderTestCaseStringFromModel,};});'use strict';tr.exportTo('tr.ui.b',function(){function decorate(source,constr){let elements;if(typeof source==='string'){elements=Polymer.dom(tr.doc).querySelectorAll(source);}else{elements=[source];}
6319for(let i=0,el;el=elements[i];i++){if(!(el instanceof constr)){constr.decorate(el);}}}
6320function define(className,opt_parentConstructor,opt_tagNS){if(typeof className==='function'){throw new Error('Passing functions as className is deprecated. Please '+'use (className, opt_parentConstructor) to subclass');}
6321className=className.toLowerCase();if(opt_parentConstructor&&!opt_parentConstructor.tagName){throw new Error('opt_parentConstructor was not '+'created by tr.ui.b.define');}
6322let tagName=className;let tagNS=undefined;if(opt_parentConstructor){if(opt_tagNS){throw new Error('Must not specify tagNS if parentConstructor is given');}
6323let parent=opt_parentConstructor;while(parent&&parent.tagName){tagName=parent.tagName;tagNS=parent.tagNS;parent=parent.parentConstructor;}}else{tagNS=opt_tagNS;}
6324function f(){if(opt_parentConstructor&&f.prototype.__proto__!==opt_parentConstructor.prototype){throw new Error(className+' prototye\'s __proto__ field is messed up. '+'It MUST be the prototype of '+opt_parentConstructor.tagName);}
6325let el;if(tagNS===undefined){el=tr.doc.createElement(tagName);}else{el=tr.doc.createElementNS(tagNS,tagName);}
6326f.decorate.call(this,el,arguments);return el;}
6327f.decorate=function(el){el.__proto__=f.prototype;el.decorate.apply(el,arguments[1]);el.constructor=f;};f.className=className;f.tagName=tagName;f.tagNS=tagNS;f.parentConstructor=(opt_parentConstructor?opt_parentConstructor:undefined);f.toString=function(){if(!f.parentConstructor){return f.tagName;}
6328return f.parentConstructor.toString()+'::'+f.className;};return f;}
6329function elementIsChildOf(el,potentialParent){if(el===potentialParent)return false;let cur=el;while(Polymer.dom(cur).parentNode){if(cur===potentialParent)return true;cur=Polymer.dom(cur).parentNode;}
6330return false;}
6331return{decorate,define,elementIsChildOf,};});'use strict';tr.exportTo('tr.b.math',function(){function Rect(){this.x=0;this.y=0;this.width=0;this.height=0;}
6332Rect.fromXYWH=function(x,y,w,h){const rect=new Rect();rect.x=x;rect.y=y;rect.width=w;rect.height=h;return rect;};Rect.fromArray=function(ary){if(ary.length!==4){throw new Error('ary.length must be 4');}
6333const rect=new Rect();rect.x=ary[0];rect.y=ary[1];rect.width=ary[2];rect.height=ary[3];return rect;};Rect.prototype={__proto__:Object.prototype,get left(){return this.x;},get top(){return this.y;},get right(){return this.x+this.width;},get bottom(){return this.y+this.height;},toString(){return'Rect('+this.x+', '+this.y+', '+
6334this.width+', '+this.height+')';},toArray(){return[this.x,this.y,this.width,this.height];},clone(){const rect=new Rect();rect.x=this.x;rect.y=this.y;rect.width=this.width;rect.height=this.height;return rect;},enlarge(pad){const rect=new Rect();this.enlargeFast(rect,pad);return rect;},enlargeFast(out,pad){out.x=this.x-pad;out.y=this.y-pad;out.width=this.width+2*pad;out.height=this.height+2*pad;return out;},size(){return{width:this.width,height:this.height};},scale(s){const rect=new Rect();this.scaleFast(rect,s);return rect;},scaleSize(s){return Rect.fromXYWH(this.x,this.y,this.width*s,this.height*s);},scaleFast(out,s){out.x=this.x*s;out.y=this.y*s;out.width=this.width*s;out.height=this.height*s;return out;},translate(v){const rect=new Rect();this.translateFast(rect,v);return rect;},translateFast(out,v){out.x=this.x+v[0];out.y=this.x+v[1];out.width=this.width;out.height=this.height;return out;},asUVRectInside(containingRect){const rect=new Rect();rect.x=(this.x-containingRect.x)/containingRect.width;rect.y=(this.y-containingRect.y)/containingRect.height;rect.width=this.width/containingRect.width;rect.height=this.height/containingRect.height;return rect;},intersects(that){let ok=true;ok&=this.x<that.right;ok&=this.right>that.x;ok&=this.y<that.bottom;ok&=this.bottom>that.y;return ok;},equalTo(rect){return rect&&(this.x===rect.x)&&(this.y===rect.y)&&(this.width===rect.width)&&(this.height===rect.height);}};return{Rect,};});'use strict';tr.exportTo('tr.ui.b',function(){function instantiateTemplate(selector,doc){doc=doc||document;const el=Polymer.dom(doc).querySelector(selector);if(!el){throw new Error('Element not found');}
6335return doc.importNode(el.content,true);}
6336function windowRectForElement(element){const position=[element.offsetLeft,element.offsetTop];const size=[element.offsetWidth,element.offsetHeight];let node=element.offsetParent;while(node){position[0]+=node.offsetLeft;position[1]+=node.offsetTop;node=node.offsetParent;}
6337return tr.b.math.Rect.fromXYWH(position[0],position[1],size[0],size[1]);}
6338function scrollIntoViewIfNeeded(el){const pr=el.parentElement.getBoundingClientRect();const cr=el.getBoundingClientRect();if(cr.top<pr.top){el.scrollIntoView(true);}else if(cr.bottom>pr.bottom){el.scrollIntoView(false);}}
6339function extractUrlString(url){let extracted=url.replace(/url\((.*)\)/,'$1');extracted=extracted.replace(/\"(.*)\"/,'$1');return extracted;}
6340function toThreeDigitLocaleString(value){return value.toLocaleString(undefined,{minimumFractionDigits:3,maximumFractionDigits:3});}
6341function isUnknownElementName(name){return document.createElement(name)instanceof HTMLUnknownElement;}
6342return{isUnknownElementName,toThreeDigitLocaleString,instantiateTemplate,windowRectForElement,scrollIntoViewIfNeeded,extractUrlString,};});'use strict';tr.exportTo('tr.ui.b',function(){if(tr.isHeadless)return{};const THIS_DOC=document.currentScript.ownerDocument;const Overlay=tr.ui.b.define('overlay');Overlay.prototype={__proto__:HTMLDivElement.prototype,decorate(){Polymer.dom(this).classList.add('overlay');this.parentEl_=this.ownerDocument.body;this.visible_=false;this.userCanClose_=true;this.onKeyDown_=this.onKeyDown_.bind(this);this.onClick_=this.onClick_.bind(this);this.onFocusIn_=this.onFocusIn_.bind(this);this.onDocumentClick_=this.onDocumentClick_.bind(this);this.onClose_=this.onClose_.bind(this);this.addEventListener('visible-change',tr.ui.b.Overlay.prototype.onVisibleChange_.bind(this),true);const createShadowRoot=this.createShadowRoot||this.webkitCreateShadowRoot;this.shadow_=createShadowRoot.call(this);Polymer.dom(this.shadow_).appendChild(tr.ui.b.instantiateTemplate('#overlay-template',THIS_DOC));this.closeBtn_=Polymer.dom(this.shadow_).querySelector('close-button');this.closeBtn_.addEventListener('click',this.onClose_);Polymer.dom(this.shadow_).querySelector('overlay-frame').addEventListener('click',this.onClick_);this.observer_=new WebKitMutationObserver(this.didButtonBarMutate_.bind(this));this.observer_.observe(Polymer.dom(this.shadow_).querySelector('button-bar'),{childList:true});Object.defineProperty(this,'title',{get(){return Polymer.dom(Polymer.dom(this.shadow_).querySelector('title')).textContent;},set(title){Polymer.dom(Polymer.dom(this.shadow_).querySelector('title')).textContent=title;}});},set userCanClose(userCanClose){this.userCanClose_=userCanClose;this.closeBtn_.style.display=userCanClose?'block':'none';},get buttons(){return Polymer.dom(this.shadow_).querySelector('button-bar');},get visible(){return this.visible_;},set visible(newValue){if(this.visible_===newValue)return;this.visible_=newValue;const e=new tr.b.Event('visible-change');this.dispatchEvent(e);},onVisibleChange_(){this.visible_?this.show_():this.hide_();},show_(){Polymer.dom(this.parentEl_).appendChild(this);if(this.userCanClose_){this.addEventListener('keydown',this.onKeyDown_.bind(this));this.addEventListener('click',this.onDocumentClick_.bind(this));this.closeBtn_.addEventListener('click',this.onClose_);}
6343this.parentEl_.addEventListener('focusin',this.onFocusIn_);this.tabIndex=0;const elList=Polymer.dom(this).querySelectorAll('button, input, list, select, a');if(elList.length>0){if(elList[0]===this.closeBtn_){if(elList.length>1)return elList[1].focus();}else{return elList[0].focus();}}
6344this.focus();},hide_(){Polymer.dom(this.parentEl_).removeChild(this);this.parentEl_.removeEventListener('focusin',this.onFocusIn_);if(this.closeBtn_){this.closeBtn_.removeEventListener('click',this.onClose_);}
6345document.removeEventListener('keydown',this.onKeyDown_);document.removeEventListener('click',this.onDocumentClick_);},onClose_(e){this.visible=false;if((e.type!=='keydown')||(e.type==='keydown'&&e.keyCode===27)){e.stopPropagation();}
6346e.preventDefault();tr.b.dispatchSimpleEvent(this,'closeclick');},onFocusIn_(e){let node=e.target;while(node){if(node===this){return;}
6347node=node.parentNode;}
6348tr.b.timeout(0).then(()=>this.focus());e.preventDefault();e.stopPropagation();},didButtonBarMutate_(e){const hasButtons=this.buttons.children.length>0;if(hasButtons){Polymer.dom(this.shadow_).querySelector('button-bar').style.display=undefined;}else{Polymer.dom(this.shadow_).querySelector('button-bar').style.display='none';}},onKeyDown_(e){if(e.keyCode===9&&e.shiftKey&&e.target===this){e.preventDefault();return;}
6349if(e.keyCode!==27)return;this.onClose_(e);},onClick_(e){e.stopPropagation();},onDocumentClick_(e){if(!this.userCanClose_)return;this.onClose_(e);}};Overlay.showError=function(msg,opt_err){const o=new Overlay();o.title='Error';Polymer.dom(o).textContent=msg;if(opt_err){const e=tr.b.normalizeException(opt_err);const stackDiv=document.createElement('pre');Polymer.dom(stackDiv).textContent=e.stack;stackDiv.style.paddingLeft='8px';stackDiv.style.margin=0;Polymer.dom(o).appendChild(stackDiv);}
6350const b=document.createElement('button');Polymer.dom(b).textContent='OK';b.addEventListener('click',function(){o.visible=false;});Polymer.dom(o.buttons).appendChild(b);o.visible=true;return o;};return{Overlay,};});'use strict';tr.exportTo('tr.importer',function(){const Timing=tr.b.Timing;function ImportOptions(){this.shiftWorldToZero=true;this.pruneEmptyContainers=true;this.showImportWarnings=true;this.trackDetailedModelStats=false;this.customizeModelCallback=undefined;const auditorTypes=tr.c.Auditor.getAllRegisteredTypeInfos();this.auditorConstructors=auditorTypes.map(function(typeInfo){return typeInfo.constructor;});}
6351function Import(model,opt_options){if(model===undefined){throw new Error('Must provide model to import into.');}
6352this.importing_=false;this.importOptions_=opt_options||new ImportOptions();this.model_=model;this.model_.importOptions=this.importOptions_;}
6353Import.prototype={__proto__:Object.prototype,importTraces(traces){const progressMeter={update(msg){}};tr.b.Task.RunSynchronously(this.createImportTracesTask(progressMeter,traces));},importTracesWithProgressDialog(traces){if(tr.isHeadless){throw new Error('Cannot use this method in headless mode.');}
6354const overlay=tr.ui.b.Overlay();overlay.title='Importing...';overlay.userCanClose=false;overlay.msgEl=document.createElement('div');Polymer.dom(overlay).appendChild(overlay.msgEl);overlay.msgEl.style.margin='20px';overlay.update=function(msg){Polymer.dom(this.msgEl).textContent=msg;};overlay.visible=true;const promise=tr.b.Task.RunWhenIdle(this.createImportTracesTask(overlay,traces));promise.then(function(){overlay.visible=false;},function(err){overlay.visible=false;});return promise;},createImportTracesTask(progressMeter,traces){const importStartTimeMs=tr.b.Timing.getCurrentTimeMs();if(this.importing_){throw new Error('Already importing.');}
6355this.importing_=true;const importTask=new tr.b.Task(function prepareImport(){progressMeter.update('I will now import your traces for you...');},this);let lastTask=importTask;const importers=[];function addImportStage(title,callback){lastTask=lastTask.after(()=>progressMeter.update(title));lastTask.updatesUi=true;lastTask=lastTask.after(callback);}
6356function addStageForEachImporter(title,callback){lastTask=lastTask.after((task)=>{importers.forEach((importer,index)=>{const uiSubTask=task.subTask(()=>{progressMeter.update(`${title} ${index + 1} of ${importers.length}`);});uiSubTask.updatesUi=true;task.subTask(()=>callback(importer));});});}
6357addImportStage('Creating importers...',()=>{traces=traces.slice(0);progressMeter.update('Creating importers...');for(let i=0;i<traces.length;++i){importers.push(this.createImporter_(traces[i]));}
6358for(let i=0;i<importers.length;i++){const subtraces=importers[i].extractSubtraces();for(let j=0;j<subtraces.length;j++){try{traces.push(subtraces[j]);importers.push(this.createImporter_(subtraces[j]));}catch(error){this.model_.importWarning({type:error.name,message:error.message,showToUser:true,});continue;}}}
6359if(traces.length&&!this.hasEventDataDecoder_(importers)){throw new Error('Could not find an importer for the provided eventData.');}
6360importers.sort(function(x,y){return x.importPriority-y.importPriority;});});addStageForEachImporter('Importing clock sync markers',importer=>importer.importClockSyncMarkers());addStageForEachImporter('Importing',importer=>importer.importEvents());if(this.importOptions_.customizeModelCallback){addImportStage('Customizing',()=>{this.importOptions_.customizeModelCallback(this.model_);});}
6361addStageForEachImporter('Importing sample data',importer=>importer.importSampleData());addImportStage('Autoclosing open slices...',()=>{this.model_.autoCloseOpenSlices();this.model_.createSubSlices();});addStageForEachImporter('Finalizing import',importer=>importer.finalizeImport());addImportStage('Initializing objects (step 1/2)...',()=>this.model_.preInitializeObjects());if(this.importOptions_.pruneEmptyContainers){addImportStage('Pruning empty containers...',()=>this.model_.pruneEmptyContainers());}
6362addImportStage('Merging kernel with userland...',()=>this.model_.mergeKernelWithUserland());let auditors=[];addImportStage('Adding arbitrary data to model...',()=>{auditors=this.importOptions_.auditorConstructors.map(auditorConstructor=>new auditorConstructor(this.model_));auditors.forEach((auditor)=>{auditor.runAnnotate();auditor.installUserFriendlyCategoryDriverIfNeeded();});});addImportStage('Computing final world bounds...',()=>{this.model_.computeWorldBounds(this.importOptions_.shiftWorldToZero);});addImportStage('Building flow event map...',()=>this.model_.buildFlowEventIntervalTree());addImportStage('Joining object refs...',()=>this.model_.joinRefs());addImportStage('Cleaning up undeleted objects...',()=>this.model_.cleanupUndeletedObjects());addImportStage('Sorting memory dumps...',()=>this.model_.sortMemoryDumps());addImportStage('Finalizing memory dump graphs...',()=>this.model_.finalizeMemoryGraphs());addImportStage('Initializing objects (step 2/2)...',()=>this.model_.initializeObjects());addImportStage('Building event indices...',()=>this.model_.buildEventIndices());addImportStage('Building UserModel...',()=>{const userModelBuilder=new tr.importer.UserModelBuilder(this.model_);userModelBuilder.buildUserModel();});addImportStage('Sorting user expectations...',()=>this.model_.userModel.sortExpectations());addImportStage('Running auditors...',()=>{auditors.forEach(auditor=>auditor.runAudit());});addImportStage('Updating alerts...',()=>this.model_.sortAlerts());addImportStage('Update bounds...',()=>this.model_.updateBounds());addImportStage('Looking for warnings...',()=>{if(!this.model_.isTimeHighResolution){this.model_.importWarning({type:'low_resolution_timer',message:'Trace time is low resolution, trace may be unusable.',showToUser:true});}});lastTask.after(()=>{this.importing_=false;this.model_.stats.traceImportDurationMs=tr.b.Timing.getCurrentTimeMs()-importStartTimeMs;});return importTask;},createImporter_(eventData){const importerConstructor=tr.importer.Importer.findImporterFor(eventData);if(!importerConstructor){throw new Error('Couldn\'t create an importer for the provided '+'eventData.');}
6363return new importerConstructor(this.model_,eventData);},hasEventDataDecoder_(importers){for(let i=0;i<importers.length;++i){if(!importers[i].isTraceDataContainer())return true;}
6364return false;}};return{ImportOptions,Import,};});'use strict';tr.exportTo('tr.e.v8',function(){const ThreadSlice=tr.model.ThreadSlice;function V8GCStatsThreadSlice(){ThreadSlice.apply(this,arguments);this.liveObjects_=JSON.parse(this.args.live);delete this.args.live;this.deadObjects_=JSON.parse(this.args.dead);delete this.args.dead;}
6365V8GCStatsThreadSlice.prototype={__proto__:ThreadSlice.prototype,get liveObjects(){return this.liveObjects_;},get deadObjects(){return this.deadObjects_;}};ThreadSlice.subTypes.register(V8GCStatsThreadSlice,{categoryParts:['disabled-by-default-v8.gc_stats'],name:'v8 gc stats slice',pluralName:'v8 gc stats slices'});return{V8GCStatsThreadSlice,};});'use strict';tr.exportTo('tr.e.v8',function(){const ThreadSlice=tr.model.ThreadSlice;function V8ICStatsThreadSlice(){ThreadSlice.apply(this,arguments);this.icStats_=undefined;if(this.args['ic-stats']){this.icStats_=this.args['ic-stats'].data;delete this.args['ic-stats'];}}
6366V8ICStatsThreadSlice.prototype={__proto__:ThreadSlice.prototype,get icStats(){return this.icStats_;}};ThreadSlice.subTypes.register(V8ICStatsThreadSlice,{categoryParts:['disabled-by-default-v8.ic_stats'],name:'v8 ic stats slice',pluralName:'v8 ic stats slices'});return{V8ICStatsThreadSlice,};});'use strict';tr.exportTo('tr.e.v8',function(){const ThreadSlice=tr.model.ThreadSlice;function V8ThreadSlice(){ThreadSlice.apply(this,arguments);this.runtimeCallStats_=undefined;}
6367V8ThreadSlice.prototype={__proto__:ThreadSlice.prototype,get runtimeCallStats(){if('runtime-call-stats'in this.args){this.runtimeCallStats_=this.args['runtime-call-stats'];delete this.args['runtime-call-stats'];}
6368return this.runtimeCallStats_;}};ThreadSlice.subTypes.register(V8ThreadSlice,{categoryParts:['v8','disabled-by-default-v8.runtime_stats'],name:'v8 slice',pluralName:'v8 slices'});return{V8ThreadSlice,};});'use strict';tr.exportTo('tr.e.cc',function(){function PictureAsImageData(picture,errorOrImageData){this.picture_=picture;if(errorOrImageData instanceof ImageData){this.error_=undefined;this.imageData_=errorOrImageData;}else{this.error_=errorOrImageData;this.imageData_=undefined;}}
6369PictureAsImageData.Pending=function(picture){return new PictureAsImageData(picture,undefined);};PictureAsImageData.prototype={get picture(){return this.picture_;},get error(){return this.error_;},get imageData(){return this.imageData_;},isPending(){return this.error_===undefined&&this.imageData_===undefined;},asCanvas(){if(!this.imageData_)return;const canvas=document.createElement('canvas');const ctx=canvas.getContext('2d');canvas.width=this.imageData_.width;canvas.height=this.imageData_.height;ctx.putImageData(this.imageData_,0,0);return canvas;}};return{PictureAsImageData,};});'use strict';tr.exportTo('tr.e.cc',function(){const convertedNameCache={};function convertNameToJSConvention(name){if(name in convertedNameCache){return convertedNameCache[name];}
6370if(name[0]==='_'||name[name.length-1]==='_'){convertedNameCache[name]=name;return name;}
6371const words=name.split('_');if(words.length===1){convertedNameCache[name]=words[0];return words[0];}
6372for(let i=1;i<words.length;i++){words[i]=words[i][0].toUpperCase()+words[i].substring(1);}
6373convertedNameCache[name]=words.join('');return convertedNameCache[name];}
6374function moveRequiredFieldsFromArgsToToplevel(object,fields){for(let i=0;i<fields.length;i++){const key=fields[i];if(object.args[key]===undefined){throw Error('Expected field '+key+' not found in args');}
6375if(object[key]!==undefined){throw Error('Field '+key+' already in object');}
6376object[key]=object.args[key];delete object.args[key];}}
6377function moveOptionalFieldsFromArgsToToplevel(object,fields){for(let i=0;i<fields.length;i++){const key=fields[i];if(object.args[key]===undefined)continue;if(object[key]!==undefined){throw Error('Field '+key+' already in object');}
6378object[key]=object.args[key];delete object.args[key];}}
6379function preInitializeObject(object){preInitializeObjectInner(object.args,false);}
6380function preInitializeObjectInner(object,hasRecursed){if(!(object instanceof Object))return;if(object instanceof Array){for(let i=0;i<object.length;i++){preInitializeObjectInner(object[i],true);}
6381return;}
6382if(hasRecursed&&(object instanceof tr.model.ObjectSnapshot||object instanceof tr.model.ObjectInstance)){return;}
6383for(let key in object){const newKey=convertNameToJSConvention(key);if(newKey!==key){const value=object[key];delete object[key];object[newKey]=value;key=newKey;}
6384if(/Quad$/.test(key)&&!(object[key]instanceof tr.b.math.Quad)){let q;try{q=tr.b.math.Quad.from8Array(object[key]);}catch(e){}
6385object[key]=q;continue;}
6386if(/Rect$/.test(key)&&!(object[key]instanceof tr.b.math.Rect)){let r;try{r=tr.b.math.Rect.fromArray(object[key]);}catch(e){}
6387object[key]=r;}
6388preInitializeObjectInner(object[key],true);}}
6389return{preInitializeObject,convertNameToJSConvention,moveRequiredFieldsFromArgsToToplevel,moveOptionalFieldsFromArgsToToplevel,};});'use strict';tr.exportTo('tr.e.cc',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;const PictureCount=0;const OPS_TIMING_ITERATIONS=3;function Picture(skp64,layerRect){this.skp64_=skp64;this.layerRect_=layerRect;this.guid_=tr.b.GUID.allocateSimple();}
6390Picture.prototype={get canSave(){return true;},get layerRect(){return this.layerRect_;},get guid(){return this.guid_;},getBase64SkpData(){return this.skp64_;},getOps(){if(!PictureSnapshot.CanGetOps()){console.error(PictureSnapshot.HowToEnablePictureDebugging());return undefined;}
6391const ops=window.chrome.skiaBenchmarking.getOps({skp64:this.skp64_,params:{layer_rect:this.layerRect_.toArray()}});if(!ops){console.error('Failed to get picture ops.');}
6392return ops;},getOpTimings(){if(!PictureSnapshot.CanGetOpTimings()){console.error(PictureSnapshot.HowToEnablePictureDebugging());return undefined;}
6393const opTimings=window.chrome.skiaBenchmarking.getOpTimings({skp64:this.skp64_,params:{layer_rect:this.layerRect_.toArray()}});if(!opTimings){console.error('Failed to get picture op timings.');}
6394return opTimings;},tagOpsWithTimings(ops){const opTimings=[];for(let iteration=0;iteration<OPS_TIMING_ITERATIONS;iteration++){opTimings[iteration]=this.getOpTimings();if(!opTimings[iteration]||!opTimings[iteration].cmd_times){return ops;}
6395if(opTimings[iteration].cmd_times.length!==ops.length){return ops;}}
6396for(let opIndex=0;opIndex<ops.length;opIndex++){let min=Number.MAX_VALUE;for(let i=0;i<OPS_TIMING_ITERATIONS;i++){min=Math.min(min,opTimings[i].cmd_times[opIndex]);}
6397ops[opIndex].cmd_time=min;}
6398return ops;},rasterize(params,rasterCompleteCallback){if(!PictureSnapshot.CanRasterize()||!PictureSnapshot.CanGetOps()){rasterCompleteCallback(new tr.e.cc.PictureAsImageData(this,tr.e.cc.PictureSnapshot.HowToEnablePictureDebugging()));return;}
6399const raster=window.chrome.skiaBenchmarking.rasterize({skp64:this.skp64_,params:{layer_rect:this.layerRect_.toArray()}},{stop:params.stopIndex===undefined?-1:params.stopIndex,overdraw:!!params.showOverdraw,params:{}});if(raster){const canvas=document.createElement('canvas');const ctx=canvas.getContext('2d');canvas.width=raster.width;canvas.height=raster.height;const imageData=ctx.createImageData(raster.width,raster.height);imageData.data.set(new Uint8ClampedArray(raster.data));rasterCompleteCallback(new tr.e.cc.PictureAsImageData(this,imageData));}else{const error='Failed to rasterize picture. '+'Your recording may be from an old Chrome version. '+'The SkPicture format is not backward compatible.';rasterCompleteCallback(new tr.e.cc.PictureAsImageData(this,error));}}};function LayeredPicture(pictures){this.guid_=tr.b.GUID.allocateSimple();this.pictures_=pictures;this.layerRect_=undefined;}
6400LayeredPicture.prototype={__proto__:Picture.prototype,get canSave(){return false;},get typeName(){return'cc::LayeredPicture';},get layerRect(){if(this.layerRect_!==undefined){return this.layerRect_;}
6401this.layerRect_={x:0,y:0,width:0,height:0};for(let i=0;i<this.pictures_.length;++i){const rect=this.pictures_[i].layerRect;this.layerRect_.x=Math.min(this.layerRect_.x,rect.x);this.layerRect_.y=Math.min(this.layerRect_.y,rect.y);this.layerRect_.width=Math.max(this.layerRect_.width,rect.x+rect.width);this.layerRect_.height=Math.max(this.layerRect_.height,rect.y+rect.height);}
6402return this.layerRect_;},get guid(){return this.guid_;},getBase64SkpData(){throw new Error('Not available with a LayeredPicture.');},getOps(){let ops=[];for(let i=0;i<this.pictures_.length;++i){ops=ops.concat(this.pictures_[i].getOps());}
6403return ops;},getOpTimings(){const opTimings=this.pictures_[0].getOpTimings();for(let i=1;i<this.pictures_.length;++i){const timings=this.pictures_[i].getOpTimings();opTimings.cmd_times=opTimings.cmd_times.concat(timings.cmd_times);opTimings.total_time+=timings.total_time;}
6404return opTimings;},tagOpsWithTimings(ops){const opTimings=[];for(let iteration=0;iteration<OPS_TIMING_ITERATIONS;iteration++){opTimings[iteration]=this.getOpTimings();if(!opTimings[iteration]||!opTimings[iteration].cmd_times){return ops;}}
6405for(let opIndex=0;opIndex<ops.length;opIndex++){let min=Number.MAX_VALUE;for(let i=0;i<OPS_TIMING_ITERATIONS;i++){min=Math.min(min,opTimings[i].cmd_times[opIndex]);}
6406ops[opIndex].cmd_time=min;}
6407return ops;},rasterize(params,rasterCompleteCallback){this.picturesAsImageData_=[];const rasterCallback=function(pictureAsImageData){this.picturesAsImageData_.push(pictureAsImageData);if(this.picturesAsImageData_.length!==this.pictures_.length){return;}
6408const canvas=document.createElement('canvas');const ctx=canvas.getContext('2d');canvas.width=this.layerRect.width;canvas.height=this.layerRect.height;for(let i=0;i<this.picturesAsImageData_.length;++i){ctx.putImageData(this.picturesAsImageData_[i].imageData,this.pictures_[i].layerRect.x,this.pictures_[i].layerRect.y);}
6409this.picturesAsImageData_=[];rasterCompleteCallback(new tr.e.cc.PictureAsImageData(this,ctx.getImageData(this.layerRect.x,this.layerRect.y,this.layerRect.width,this.layerRect.height)));}.bind(this);for(let i=0;i<this.pictures_.length;++i){this.pictures_[i].rasterize(params,rasterCallback);}}};function PictureSnapshot(){ObjectSnapshot.apply(this,arguments);}
6410PictureSnapshot.HasSkiaBenchmarking=function(){return tr.isExported('chrome.skiaBenchmarking');};PictureSnapshot.CanRasterize=function(){if(!PictureSnapshot.HasSkiaBenchmarking()){return false;}
6411if(!window.chrome.skiaBenchmarking.rasterize){return false;}
6412return true;};PictureSnapshot.CanGetOps=function(){if(!PictureSnapshot.HasSkiaBenchmarking()){return false;}
6413if(!window.chrome.skiaBenchmarking.getOps){return false;}
6414return true;};PictureSnapshot.CanGetOpTimings=function(){if(!PictureSnapshot.HasSkiaBenchmarking()){return false;}
6415if(!window.chrome.skiaBenchmarking.getOpTimings){return false;}
6416return true;};PictureSnapshot.CanGetInfo=function(){if(!PictureSnapshot.HasSkiaBenchmarking()){return false;}
6417if(!window.chrome.skiaBenchmarking.getInfo){return false;}
6418return true;};PictureSnapshot.HowToEnablePictureDebugging=function(){if(tr.isHeadless){return'Pictures only work in chrome';}
6419const usualReason=['For pictures to show up, you need to have Chrome running with ','--enable-skia-benchmarking. Please restart chrome with this flag ','and try again.'].join('');if(!tr.isExported('global.chrome.skiaBenchmarking')){return usualReason;}
6420if(!global.chrome.skiaBenchmarking.rasterize){return'Your chrome is old';}
6421if(!global.chrome.skiaBenchmarking.getOps){return'Your chrome is old: skiaBenchmarking.getOps not found';}
6422if(!global.chrome.skiaBenchmarking.getOpTimings){return'Your chrome is old: skiaBenchmarking.getOpTimings not found';}
6423if(!global.chrome.skiaBenchmarking.getInfo){return'Your chrome is old: skiaBenchmarking.getInfo not found';}
6424return'Rasterizing is on';};PictureSnapshot.prototype={__proto__:ObjectSnapshot.prototype,preInitialize(){tr.e.cc.preInitializeObject(this);this.rasterResult_=undefined;},initialize(){if(this.args.alias){this.args=this.args.alias.args;}
6425if(!this.args.params.layerRect){throw new Error('Missing layer rect');}
6426this.layerRect_=this.args.params.layerRect;this.picture_=new Picture(this.args.skp64,this.args.params.layerRect);},set picture(picture){this.picture_=picture;},get canSave(){return this.picture_.canSave;},get layerRect(){return this.layerRect_?this.layerRect_:this.picture_.layerRect;},get guid(){return this.picture_.guid;},getBase64SkpData(){return this.picture_.getBase64SkpData();},getOps(){return this.picture_.getOps();},getOpTimings(){return this.picture_.getOpTimings();},tagOpsWithTimings(ops){return this.picture_.tagOpsWithTimings(ops);},rasterize(params,rasterCompleteCallback){this.picture_.rasterize(params,rasterCompleteCallback);}};ObjectSnapshot.subTypes.register(PictureSnapshot,{typeNames:['cc::Picture']});return{PictureSnapshot,Picture,LayeredPicture,};});'use strict';tr.exportTo('tr.e.cc',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;function DisplayItemList(skp64,layerRect){tr.e.cc.Picture.apply(this,arguments);}
6427DisplayItemList.prototype={__proto__:tr.e.cc.Picture.prototype};function DisplayItemListSnapshot(){tr.e.cc.PictureSnapshot.apply(this,arguments);}
6428DisplayItemListSnapshot.prototype={__proto__:tr.e.cc.PictureSnapshot.prototype,initialize(){tr.e.cc.PictureSnapshot.prototype.initialize.call(this);this.displayItems_=this.args.params.items;},get items(){return this.displayItems_;}};ObjectSnapshot.subTypes.register(DisplayItemListSnapshot,{typeNames:['cc::DisplayItemList']});return{DisplayItemListSnapshot,DisplayItemList,};});'use strict';tr.exportTo('tr.b.math',function(){function BBox2(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;}
6429BBox2.prototype={__proto__:Object.prototype,reset(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;},get isEmpty(){return this.isEmpty_;},addBBox2(bbox2){if(bbox2.isEmpty)return;this.addVec2(bbox2.min_);this.addVec2(bbox2.max_);},clone(){const bbox=new BBox2();bbox.addBBox2(this);return bbox;},addXY(x,y){if(this.isEmpty_){this.max_=vec2.create();this.min_=vec2.create();vec2.set(this.max_,x,y);vec2.set(this.min_,x,y);this.isEmpty_=false;return;}
6430this.max_[0]=Math.max(this.max_[0],x);this.max_[1]=Math.max(this.max_[1],y);this.min_[0]=Math.min(this.min_[0],x);this.min_[1]=Math.min(this.min_[1],y);},addVec2(value){if(this.isEmpty_){this.max_=vec2.create();this.min_=vec2.create();vec2.set(this.max_,value[0],value[1]);vec2.set(this.min_,value[0],value[1]);this.isEmpty_=false;return;}
6431this.max_[0]=Math.max(this.max_[0],value[0]);this.max_[1]=Math.max(this.max_[1],value[1]);this.min_[0]=Math.min(this.min_[0],value[0]);this.min_[1]=Math.min(this.min_[1],value[1]);},addQuad(quad){this.addVec2(quad.p1);this.addVec2(quad.p2);this.addVec2(quad.p3);this.addVec2(quad.p4);},get minVec2(){if(this.isEmpty_)return undefined;return this.min_;},get maxVec2(){if(this.isEmpty_)return undefined;return this.max_;},get sizeAsVec2(){if(this.isEmpty_){throw new Error('Empty BBox2 has no size');}
6432const size=vec2.create();vec2.subtract(size,this.max_,this.min_);return size;},get size(){if(this.isEmpty_){throw new Error('Empty BBox2 has no size');}
6433return{width:this.max_[0]-this.min_[0],height:this.max_[1]-this.min_[1]};},get width(){if(this.isEmpty_){throw new Error('Empty BBox2 has no width');}
6434return this.max_[0]-this.min_[0];},get height(){if(this.isEmpty_){throw new Error('Empty BBox2 has no width');}
6435return this.max_[1]-this.min_[1];},toString(){if(this.isEmpty_)return'empty';return'min=('+this.min_[0]+','+this.min_[1]+') '+'max=('+this.max_[0]+','+this.max_[1]+')';},asRect(){return tr.b.math.Rect.fromXYWH(this.min_[0],this.min_[1],this.max_[0]-this.min_[0],this.max_[1]-this.min_[1]);}};return{BBox2,};});'use strict';tr.exportTo('tr.e.cc',function(){const constants={};constants.ACTIVE_TREE=0;constants.PENDING_TREE=1;constants.HIGH_PRIORITY_BIN=0;constants.LOW_PRIORITY_BIN=1;constants.SEND_BEGIN_FRAME_EVENT='ThreadProxy::ScheduledActionSendBeginMainFrame';constants.BEGIN_MAIN_FRAME_EVENT='ThreadProxy::BeginMainFrame';return{constants};});'use strict';tr.exportTo('tr.e.cc',function(){function Region(){this.rects=[];}
6436Region.fromArray=function(array){if(array.length%4!==0){throw new Error('Array must consist be a multiple of 4 in length');}
6437const r=new Region();for(let i=0;i<array.length;i+=4){r.rects.push(tr.b.math.Rect.fromXYWH(array[i],array[i+1],array[i+2],array[i+3]));}
6438return r;};Region.fromArrayOrUndefined=function(array){if(array===undefined)return new Region();return Region.fromArray(array);};Region.prototype={__proto__:Region.prototype,rectIntersects(r){for(let i=0;i<this.rects.length;i++){if(this.rects[i].intersects(r))return true;}
6439return false;},addRect(r){this.rects.push(r);}};return{Region,};});'use strict';tr.exportTo('tr.e.cc',function(){function TileCoverageRect(rect,tile){this.geometryRect=rect;this.tile=tile;}
6440return{TileCoverageRect,};});'use strict';tr.exportTo('tr.e.cc',function(){const constants=tr.e.cc.constants;const ObjectSnapshot=tr.model.ObjectSnapshot;function LayerImplSnapshot(){ObjectSnapshot.apply(this,arguments);}
6441LayerImplSnapshot.prototype={__proto__:ObjectSnapshot.prototype,preInitialize(){tr.e.cc.preInitializeObject(this);this.layerTreeImpl_=undefined;this.parentLayer=undefined;},initialize(){this.invalidation=new tr.e.cc.Region();this.annotatedInvalidation=new tr.e.cc.Region();this.unrecordedRegion=new tr.e.cc.Region();this.pictures=[];tr.e.cc.moveRequiredFieldsFromArgsToToplevel(this,['layerId','layerQuad']);tr.e.cc.moveOptionalFieldsFromArgsToToplevel(this,['children','maskLayer','replicaLayer','idealContentsScale','geometryContentsScale','layoutRects','usingGpuRasterization']);this.gpuMemoryUsageInBytes=this.args.gpuMemoryUsage;this.bounds=tr.b.math.Rect.fromXYWH(0,0,this.args.bounds.width,this.args.bounds.height);if(this.args.animationBounds){this.animationBoundsRect=tr.b.math.Rect.fromXYWH(this.args.animationBounds[0],this.args.animationBounds[1],this.args.animationBounds[3],this.args.animationBounds[4]);}
6442if(this.children){for(let i=0;i<this.children.length;i++){this.children[i].parentLayer=this;}}
6443if(this.maskLayer){this.maskLayer.parentLayer=this;}
6444if(this.replicaLayer){this.replicaLayer.parentLayer=this;}
6445if(!this.geometryContentsScale){this.geometryContentsScale=1.0;}
6446if(!this.idealContentsScale){this.idealContentsScale=1.0;}
6447this.touchEventHandlerRegion=tr.e.cc.Region.fromArrayOrUndefined(this.args.touchEventHandlerRegion);this.wheelEventHandlerRegion=tr.e.cc.Region.fromArrayOrUndefined(this.args.wheelEventHandlerRegion);this.nonFastScrollableRegion=tr.e.cc.Region.fromArrayOrUndefined(this.args.nonFastScrollableRegion);},get layerTreeImpl(){if(this.layerTreeImpl_){return this.layerTreeImpl_;}
6448if(this.parentLayer){return this.parentLayer.layerTreeImpl;}
6449return undefined;},set layerTreeImpl(layerTreeImpl){this.layerTreeImpl_=layerTreeImpl;},get activeLayer(){if(this.layerTreeImpl.whichTree===constants.ACTIVE_TREE){return this;}
6450const activeTree=this.layerTreeImpl.layerTreeHostImpl.activeTree;return activeTree.findLayerWithId(this.layerId);},get pendingLayer(){if(this.layerTreeImpl.whichTree===constants.PENDING_TREE){return this;}
6451const pendingTree=this.layerTreeImpl.layerTreeHostImpl.pendingTree;return pendingTree.findLayerWithId(this.layerId);}};function PictureLayerImplSnapshot(){LayerImplSnapshot.apply(this,arguments);}
6452PictureLayerImplSnapshot.prototype={__proto__:LayerImplSnapshot.prototype,initialize(){LayerImplSnapshot.prototype.initialize.call(this);if(this.args.invalidation){this.invalidation=tr.e.cc.Region.fromArray(this.args.invalidation);delete this.args.invalidation;}
6453if(this.args.annotatedInvalidationRects){this.annotatedInvalidation=new tr.e.cc.Region();for(let i=0;i<this.args.annotatedInvalidationRects.length;++i){const annotatedRect=this.args.annotatedInvalidationRects[i];const rect=annotatedRect.geometryRect;rect.reason=annotatedRect.reason;this.annotatedInvalidation.addRect(rect);}
6454delete this.args.annotatedInvalidationRects;}
6455if(this.args.unrecordedRegion){this.unrecordedRegion=tr.e.cc.Region.fromArray(this.args.unrecordedRegion);delete this.args.unrecordedRegion;}
6456if(this.args.pictures){this.pictures=this.args.pictures;this.pictures.sort(function(a,b){return a.ts-b.ts;});}
6457this.tileCoverageRects=[];if(this.args.coverageTiles){for(let i=0;i<this.args.coverageTiles.length;++i){const rect=this.args.coverageTiles[i].geometryRect.scale(this.idealContentsScale);const tile=this.args.coverageTiles[i].tile;this.tileCoverageRects.push(new tr.e.cc.TileCoverageRect(rect,tile));}
6458delete this.args.coverageTiles;}}};ObjectSnapshot.subTypes.register(PictureLayerImplSnapshot,{typeName:'cc::PictureLayerImpl'});ObjectSnapshot.subTypes.register(LayerImplSnapshot,{typeNames:['cc::LayerImpl','cc::DelegatedRendererLayerImpl','cc::HeadsUpDisplayLayerImpl','cc::IOSurfaceLayerImpl','cc::NinePatchLayerImpl','cc::PictureImageLayerImpl','cc::ScrollbarLayerImpl','cc::SolidColorLayerImpl','cc::SolidColorScrollbarLayerImpl','cc::SurfaceLayerImpl','cc::TextureLayerImpl','cc::TiledLayerImpl','cc::VideoLayerImpl','cc::PaintedScrollbarLayerImpl','ClankPatchLayer','TabBorderLayer','CounterLayer']});return{LayerImplSnapshot,PictureLayerImplSnapshot,};});'use strict';tr.exportTo('tr.e.cc',function(){const constants=tr.e.cc.constants;const ObjectSnapshot=tr.model.ObjectSnapshot;function LayerTreeImplSnapshot(){ObjectSnapshot.apply(this,arguments);}
6459LayerTreeImplSnapshot.prototype={__proto__:ObjectSnapshot.prototype,preInitialize(){tr.e.cc.preInitializeObject(this);this.layerTreeHostImpl=undefined;this.whichTree=undefined;this.sourceFrameNumber=undefined;},initialize(){tr.e.cc.moveRequiredFieldsFromArgsToToplevel(this,['renderSurfaceLayerList']);tr.e.cc.moveOptionalFieldsFromArgsToToplevel(this,['rootLayer','layers']);if(this.args.sourceFrameNumber){this.sourceFrameNumber=this.args.sourceFrameNumber;}
6460if(this.rootLayer){this.rootLayer.layerTreeImpl=this;}else{for(let i=0;i<this.layers.length;i++){this.layers[i].layerTreeImpl=this;}}
6461if(this.args.swapPromiseTraceIds&&this.args.swapPromiseTraceIds.length){this.tracedInputLatencies=[];const ownProcess=this.objectInstance.parent;const modelHelper=ownProcess.model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(modelHelper){this._initializeTracedInputLatencies(modelHelper);}}},_initializeTracedInputLatencies(modelHelper){const latencyEvents=modelHelper.browserHelper.getLatencyEventsInRange(modelHelper.model.bounds);latencyEvents.forEach(function(event){for(let i=0;i<this.args.swapPromiseTraceIds.length;i++){if(!event.args.data||!event.args.data.trace_id){continue;}
6462if(parseInt(event.args.data.trace_id)===this.args.swapPromiseTraceIds[i]){this.tracedInputLatencies.push(event);}}},this);},get hasSourceFrameBeenDrawnBefore(){if(this.whichTree===tr.e.cc.constants.PENDING_TREE){return false;}
6463if(this.sourceFrameNumber===undefined)return;const thisLTHI=this.layerTreeHostImpl;const thisLTHIIndex=thisLTHI.objectInstance.snapshots.indexOf(thisLTHI);const prevLTHIIndex=thisLTHIIndex-1;if(prevLTHIIndex<0||prevLTHIIndex>=thisLTHI.objectInstance.snapshots.length){return false;}
6464const prevLTHI=thisLTHI.objectInstance.snapshots[prevLTHIIndex];if(!prevLTHI.activeTree)return false;if(prevLTHI.activeTree.sourceFrameNumber===undefined)return;return prevLTHI.activeTree.sourceFrameNumber===this.sourceFrameNumber;},get otherTree(){const other=this.whichTree===constants.ACTIVE_TREE?constants.PENDING_TREE:constants.ACTIVE_TREE;return this.layerTreeHostImpl.getTree(other);},get gpuMemoryUsageInBytes(){let totalBytes=0;this.iterLayers(function(layer){if(layer.gpuMemoryUsageInBytes!==undefined){totalBytes+=layer.gpuMemoryUsageInBytes;}});return totalBytes;},iterLayers(func,thisArg){const visitedLayers={};function visitLayer(layer,depth,isMask,isReplica){if(visitedLayers[layer.layerId])return;visitedLayers[layer.layerId]=true;func.call(thisArg,layer,depth,isMask,isReplica);if(layer.children){for(let i=0;i<layer.children.length;i++){visitLayer(layer.children[i],depth+1);}}
6465if(layer.maskLayer){visitLayer(layer.maskLayer,depth+1,true,false);}
6466if(layer.replicaLayer){visitLayer(layer.replicaLayer,depth+1,false,true);}}
6467if(this.rootLayer){visitLayer(this.rootLayer,0,false,false);}else{for(let i=0;i<this.layers.length;i++){visitLayer(this.layers[i],0,false,false);}}},findLayerWithId(id){let foundLayer=undefined;function visitLayer(layer){if(layer.layerId===id){foundLayer=layer;}}
6468this.iterLayers(visitLayer);return foundLayer;}};ObjectSnapshot.subTypes.register(LayerTreeImplSnapshot,{typeName:'cc::LayerTreeImpl'});return{LayerTreeImplSnapshot,};});'use strict';tr.exportTo('tr.e.cc',function(){const constants=tr.e.cc.constants;const ObjectSnapshot=tr.model.ObjectSnapshot;const ObjectInstance=tr.model.ObjectInstance;function LayerTreeHostImplSnapshot(){ObjectSnapshot.apply(this,arguments);}
6469LayerTreeHostImplSnapshot.prototype={__proto__:ObjectSnapshot.prototype,preInitialize(){tr.e.cc.preInitializeObject(this);},initialize(){tr.e.cc.moveRequiredFieldsFromArgsToToplevel(this,['deviceViewportSize','activeTree']);tr.e.cc.moveOptionalFieldsFromArgsToToplevel(this,['pendingTree']);if(this.args.activeTiles!==undefined){this.activeTiles=this.args.activeTiles;delete this.args.activeTiles;}else if(this.args.tiles!==undefined){this.activeTiles=this.args.tiles;delete this.args.tiles;}
6470if(!this.activeTiles){this.activeTiles=[];}
6471this.activeTree.layerTreeHostImpl=this;this.activeTree.whichTree=constants.ACTIVE_TREE;if(this.pendingTree){this.pendingTree.layerTreeHostImpl=this;this.pendingTree.whichTree=constants.PENDING_TREE;}},getContentsScaleNames(){const scales={};for(let i=0;i<this.activeTiles.length;++i){const tile=this.activeTiles[i];scales[tile.contentsScale]=tile.resolution;}
6472return scales;},getTree(whichTree){if(whichTree===constants.ACTIVE_TREE){return this.activeTree;}
6473if(whichTree===constants.PENDING_TREE){return this.pendingTree;}
6474throw new Exception('Unknown tree type + '+whichTree);},get tilesHaveGpuMemoryUsageInfo(){if(this.tilesHaveGpuMemoryUsageInfo_!==undefined){return this.tilesHaveGpuMemoryUsageInfo_;}
6475for(let i=0;i<this.activeTiles.length;i++){if(this.activeTiles[i].gpuMemoryUsageInBytes===undefined){continue;}
6476this.tilesHaveGpuMemoryUsageInfo_=true;return true;}
6477this.tilesHaveGpuMemoryUsageInfo_=false;return false;},get gpuMemoryUsageInBytes(){if(!this.tilesHaveGpuMemoryUsageInfo)return;let usage=0;for(let i=0;i<this.activeTiles.length;i++){const u=this.activeTiles[i].gpuMemoryUsageInBytes;if(u!==undefined)usage+=u;}
6478return usage;},get userFriendlyName(){let frameNumber;if(!this.activeTree){frameNumber=this.objectInstance.snapshots.indexOf(this);}else{if(this.activeTree.sourceFrameNumber===undefined){frameNumber=this.objectInstance.snapshots.indexOf(this);}else{frameNumber=this.activeTree.sourceFrameNumber;}}
6479return'cc::LayerTreeHostImpl frame '+frameNumber;}};ObjectSnapshot.subTypes.register(LayerTreeHostImplSnapshot,{typeName:'cc::LayerTreeHostImpl'});function LayerTreeHostImplInstance(){ObjectInstance.apply(this,arguments);this.allLayersBBox_=undefined;}
6480LayerTreeHostImplInstance.prototype={__proto__:ObjectInstance.prototype,get allContentsScales(){if(this.allContentsScales_){return this.allContentsScales_;}
6481const scales={};for(const tileID in this.allTileHistories_){const tileHistory=this.allTileHistories_[tileID];scales[tileHistory.contentsScale]=true;}
6482this.allContentsScales_=Object.keys(scales);return this.allContentsScales_;},get allLayersBBox(){if(this.allLayersBBox_){return this.allLayersBBox_;}
6483const bbox=new tr.b.math.BBox2();function handleTree(tree){tree.renderSurfaceLayerList.forEach(function(layer){bbox.addQuad(layer.layerQuad);});}
6484this.snapshots.forEach(function(lthi){handleTree(lthi.activeTree);if(lthi.pendingTree){handleTree(lthi.pendingTree);}});this.allLayersBBox_=bbox;return this.allLayersBBox_;}};ObjectInstance.subTypes.register(LayerTreeHostImplInstance,{typeName:'cc::LayerTreeHostImpl'});return{LayerTreeHostImplSnapshot,LayerTreeHostImplInstance,};});'use strict';tr.exportTo('tr.e.cc',function(){const tileTypes={highRes:'highRes',lowRes:'lowRes',extraHighRes:'extraHighRes',extraLowRes:'extraLowRes',missing:'missing',culled:'culled',solidColor:'solidColor',picture:'picture',directPicture:'directPicture',unknown:'unknown'};const tileBorder={highRes:{color:'rgba(80, 200, 200, 0.7)',width:1},lowRes:{color:'rgba(212, 83, 192, 0.7)',width:2},extraHighRes:{color:'rgba(239, 231, 20, 0.7)',width:2},extraLowRes:{color:'rgba(93, 186, 18, 0.7)',width:2},missing:{color:'rgba(255, 0, 0, 0.7)',width:1},culled:{color:'rgba(160, 100, 0, 0.8)',width:1},solidColor:{color:'rgba(128, 128, 128, 0.7)',width:1},picture:{color:'rgba(64, 64, 64, 0.7)',width:1},directPicture:{color:'rgba(127, 255, 0, 1.0)',width:1},unknown:{color:'rgba(0, 0, 0, 1.0)',width:2}};return{tileTypes,tileBorder};});'use strict';tr.exportTo('tr.e.cc',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;function TileSnapshot(){ObjectSnapshot.apply(this,arguments);}
6485TileSnapshot.prototype={__proto__:ObjectSnapshot.prototype,preInitialize(){tr.e.cc.preInitializeObject(this);},initialize(){tr.e.cc.moveOptionalFieldsFromArgsToToplevel(this,['layerId','contentsScale','contentRect']);if(this.args.managedState){this.resolution=this.args.managedState.resolution;this.isSolidColor=this.args.managedState.isSolidColor;this.isUsingGpuMemory=this.args.managedState.isUsingGpuMemory;this.hasResource=this.args.managedState.hasResource;this.scheduledPriority=this.args.scheduledPriority;this.gpuMemoryUsageInBytes=this.args.gpuMemoryUsage;}else{this.resolution=this.args.resolution;this.isSolidColor=this.args.drawInfo.isSolidColor;this.isUsingGpuMemory=this.args.isUsingGpuMemory;this.hasResource=this.args.hasResource;this.scheduledPriority=this.args.scheduledPriority;this.gpuMemoryUsageInBytes=this.args.gpuMemoryUsage;}
6486if(this.contentRect){this.layerRect=this.contentRect.scale(1.0/this.contentsScale);}
6487if(this.isSolidColor){this.type_=tr.e.cc.tileTypes.solidColor;}else if(!this.hasResource){this.type_=tr.e.cc.tileTypes.missing;}else if(this.resolution==='HIGH_RESOLUTION'){this.type_=tr.e.cc.tileTypes.highRes;}else if(this.resolution==='LOW_RESOLUTION'){this.type_=tr.e.cc.tileTypes.lowRes;}else{this.type_=tr.e.cc.tileTypes.unknown;}},getTypeForLayer(layer){let type=this.type_;if(type===tr.e.cc.tileTypes.unknown){if(this.contentsScale<layer.idealContentsScale){type=tr.e.cc.tileTypes.extraLowRes;}else if(this.contentsScale>layer.idealContentsScale){type=tr.e.cc.tileTypes.extraHighRes;}}
6488return type;}};ObjectSnapshot.subTypes.register(TileSnapshot,{typeName:'cc::Tile'});return{TileSnapshot,};});'use strict';tr.exportTo('tr.ui.b',function(){const Location=tr.model.Location;function UIState(location,scaleX){this.location_=location;this.scaleX_=scaleX;}
6489UIState.fromUserFriendlyString=function(model,viewport,stateString){const navByFinderPattern=/^(-?\d+(\.\d+)?)@(.+)x(\d+(\.\d+)?)$/g;const match=navByFinderPattern.exec(stateString);if(!match)return;const timestamp=parseFloat(match[1]);const stableId=match[3];const scaleX=parseFloat(match[4]);if(scaleX<=0){throw new Error('Invalid ScaleX value in UI State string.');}
6490if(!viewport.containerToTrackMap.getTrackByStableId(stableId)){throw new Error('Invalid StableID given in UI State String.');}
6491const loc=tr.model.Location.fromStableIdAndTimestamp(viewport,stableId,timestamp);return new UIState(loc,scaleX);};UIState.prototype={get location(){return this.location_;},get scaleX(){return this.scaleX_;},toUserFriendlyString(viewport){const timestamp=this.location_.xWorld;const stableId=this.location_.getContainingTrack(viewport).eventContainer.stableId;const scaleX=this.scaleX_;return timestamp.toFixed(5)+'@'+stableId+'x'+scaleX.toFixed(5);},toDict(){return{location:this.location_.toDict(),scaleX:this.scaleX_};}};return{UIState,};});'use strict';tr.exportTo('tr.ui.b',function(){const EventSet=tr.model.EventSet;const SelectionState=tr.model.SelectionState;function BrushingState(){this.guid_=tr.b.GUID.allocateSimple();this.selection_=new EventSet();this.findMatches_=new EventSet();this.analysisViewRelatedEvents_=new EventSet();this.analysisLinkHoveredEvents_=new EventSet();this.appliedToModel_=undefined;this.viewSpecificBrushingStates_={};}
6492BrushingState.prototype={get guid(){return this.guid_;},clone(){const that=new BrushingState();that.selection_=this.selection_;that.findMatches_=this.findMatches_;that.analysisViewRelatedEvents_=this.analysisViewRelatedEvents_;that.analysisLinkHoveredEvents_=this.analysisLinkHoveredEvents_;that.viewSpecificBrushingStates_=this.viewSpecificBrushingStates_;return that;},equals(that){if(!this.selection_.equals(that.selection_)){return false;}
6493if(!this.findMatches_.equals(that.findMatches_)){return false;}
6494if(!this.analysisViewRelatedEvents_.equals(that.analysisViewRelatedEvents_)){return false;}
6495if(!this.analysisLinkHoveredEvents_.equals(that.analysisLinkHoveredEvents_)){return false;}
6496return true;},get selectionOfInterest(){if(this.selection_.length){return this.selection_;}
6497if(this.highlight_.length){return this.highlight_;}
6498if(this.analysisViewRelatedEvents_.length){return this.analysisViewRelatedEvents_;}
6499if(this.analysisLinkHoveredEvents_.length){return this.analysisLinkHoveredEvents_;}
6500return this.selection_;},get selection(){return this.selection_;},set selection(selection){if(this.appliedToModel_){throw new Error('Cannot mutate this state right now');}
6501if(selection===undefined){selection=new EventSet();}
6502this.selection_=selection;},get findMatches(){return this.findMatches_;},set findMatches(findMatches){if(this.appliedToModel_){throw new Error('Cannot mutate this state right now');}
6503if(findMatches===undefined){findMatches=new EventSet();}
6504this.findMatches_=findMatches;},get analysisViewRelatedEvents(){return this.analysisViewRelatedEvents_;},set analysisViewRelatedEvents(analysisViewRelatedEvents){if(this.appliedToModel_){throw new Error('Cannot mutate this state right now');}
6505if(analysisViewRelatedEvents===undefined){analysisViewRelatedEvents=new EventSet();}
6506this.analysisViewRelatedEvents_=analysisViewRelatedEvents;},get analysisLinkHoveredEvents(){return this.analysisLinkHoveredEvents_;},set analysisLinkHoveredEvents(analysisLinkHoveredEvents){if(this.appliedToModel_){throw new Error('Cannot mutate this state right now');}
6507if(analysisLinkHoveredEvents===undefined){analysisLinkHoveredEvents=new EventSet();}
6508this.analysisLinkHoveredEvents_=analysisLinkHoveredEvents;},get isAppliedToModel(){return this.appliedToModel_!==undefined;},get viewSpecificBrushingStates(){return this.viewSpecificBrushingStates_;},set viewSpecificBrushingStates(viewSpecificBrushingStates){this.viewSpecificBrushingStates_=viewSpecificBrushingStates;},get dimmedEvents_(){const dimmedEvents=new EventSet();dimmedEvents.addEventSet(this.findMatches);dimmedEvents.addEventSet(this.analysisViewRelatedEvents_);return dimmedEvents;},get brightenedEvents_(){const brightenedEvents=new EventSet();brightenedEvents.addEventSet(this.selection_);brightenedEvents.addEventSet(this.analysisLinkHoveredEvents_);return brightenedEvents;},applyToEventSelectionStates(model){this.appliedToModel_=model;const dimmedEvents=this.dimmedEvents_;if(model){const newDefaultState=(dimmedEvents.length?SelectionState.DIMMED0:SelectionState.NONE);const currentDefaultState=tr.b.getFirstElement(model.getDescendantEvents()).selectionState;if(currentDefaultState!==newDefaultState){for(const e of model.getDescendantEvents()){e.selectionState=newDefaultState;}}}
6509let score;for(const e of dimmedEvents){score=0;if(this.findMatches_.contains(e)){score++;}
6510if(this.analysisViewRelatedEvents_.contains(e)){score++;}
6511e.selectionState=SelectionState.getFromDimmingLevel(score);}
6512for(const e of this.brightenedEvents_){score=0;if(this.selection_.contains(e)){score++;}
6513if(this.analysisLinkHoveredEvents_.contains(e)){score++;}
6514e.selectionState=SelectionState.getFromBrighteningLevel(score);}},transferModelOwnershipToClone(that){if(!this.appliedToModel_){throw new Error('Not applied');}
6515that.appliedToModel_=this.appliedToModel_;this.appliedToModel_=undefined;},unapplyFromEventSelectionStates(){if(!this.appliedToModel_){throw new Error('Not applied');}
6516const model=this.appliedToModel_;this.appliedToModel_=undefined;const dimmedEvents=this.dimmedEvents_;const defaultState=(dimmedEvents.length?SelectionState.DIMMED0:SelectionState.NONE);for(const e of this.brightenedEvents_){e.selectionState=defaultState;}
6517for(const e of dimmedEvents){e.selectionState=defaultState;}
6518return defaultState;}};return{BrushingState,};});'use strict';tr.exportTo('tr.ui.b',function(){function Animation(){}
6519Animation.prototype={canTakeOverFor(existingAnimation){throw new Error('Not implemented');},takeOverFor(existingAnimation,newStartTimestamp,target){throw new Error('Not implemented');},start(timestamp,target){throw new Error('Not implemented');},didStopEarly(timestamp,target,willBeTakenOverByAnotherAnimation){},tick(timestamp,target){throw new Error('Not implemented');}};return{Animation,};});'use strict';tr.exportTo('tr.ui.b',function(){function AnimationController(){tr.b.EventTarget.call(this);this.target_=undefined;this.activeAnimation_=undefined;this.tickScheduled_=false;}
6520AnimationController.prototype={__proto__:tr.b.EventTarget.prototype,get target(){return this.target_;},set target(target){if(this.activeAnimation_){throw new Error('Cannot change target while animation is running.');}
6521if(target.cloneAnimationState===undefined||typeof target.cloneAnimationState!=='function'){throw new Error('target must have a cloneAnimationState function');}
6522this.target_=target;},get activeAnimation(){return this.activeAnimation_;},get hasActiveAnimation(){return!!this.activeAnimation_;},queueAnimation(animation,opt_now){if(this.target_===undefined){throw new Error('Cannot queue animations without a target');}
6523let now;if(opt_now!==undefined){now=opt_now;}else{now=window.performance.now();}
6524if(this.activeAnimation_){const done=this.activeAnimation_.tick(now,this.target_);if(done){this.activeAnimation_=undefined;}}
6525if(this.activeAnimation_){if(animation.canTakeOverFor(this.activeAnimation_)){this.activeAnimation_.didStopEarly(now,this.target_,true);animation.takeOverFor(this.activeAnimation_,now,this.target_);}else{this.activeAnimation_.didStopEarly(now,this.target_,false);}}
6526this.activeAnimation_=animation;this.activeAnimation_.start(now,this.target_);if(this.tickScheduled_)return;this.tickScheduled_=true;tr.b.requestAnimationFrame(this.tickActiveAnimation_,this);},cancelActiveAnimation(opt_now){if(!this.activeAnimation_)return;let now;if(opt_now!==undefined){now=opt_now;}else{now=window.performance.now();}
6527this.activeAnimation_.didStopEarly(now,this.target_,false);this.activeAnimation_=undefined;},tickActiveAnimation_(frameBeginTime){this.tickScheduled_=false;if(!this.activeAnimation_)return;if(this.target_===undefined){this.activeAnimation_.didStopEarly(frameBeginTime,this.target_,false);return;}
6528const oldTargetState=this.target_.cloneAnimationState();const done=this.activeAnimation_.tick(frameBeginTime,this.target_);if(done){this.activeAnimation_=undefined;}
6529if(this.activeAnimation_){this.tickScheduled_=true;tr.b.requestAnimationFrame(this.tickActiveAnimation_,this);}
6530if(oldTargetState){const e=new tr.b.Event('didtick');e.oldTargetState=oldTargetState;this.dispatchEvent(e,false,false);}}};return{AnimationController,};});'use strict';tr.exportTo('tr.b',function(){function Settings(){return Settings;}
6531if(tr.b.unittest&&tr.b.unittest.TestRunner){tr.b.unittest.TestRunner.addEventListener('tr-unittest-will-run',function(){if(tr.isHeadless){Settings.setAlternativeStorageInstance(new HeadlessStorage());}else{Settings.setAlternativeStorageInstance(global.sessionStorage);global.sessionStorage.clear();}});}
6532function SessionSettings(){return SessionSettings;}
6533function AddStaticStorageFunctionsToClass_(inputClass,storage){inputClass.storage_=storage;inputClass.get=function(key,opt_default,opt_namespace){key=inputClass.namespace_(key,opt_namespace);const rawVal=inputClass.storage_.getItem(key);if(rawVal===null||rawVal===undefined){return opt_default;}
6534try{return JSON.parse(rawVal).value;}catch(e){inputClass.storage_.removeItem(key);return opt_default;}};inputClass.set=function(key,value,opt_namespace){if(value===undefined){throw new Error('Settings.set: value must not be undefined');}
6535const v=JSON.stringify({value});inputClass.storage_.setItem(inputClass.namespace_(key,opt_namespace),v);};inputClass.keys=function(opt_namespace){const result=[];opt_namespace=opt_namespace||'';for(let i=0;i<inputClass.storage_.length;i++){const key=inputClass.storage_.key(i);if(inputClass.isnamespaced_(key,opt_namespace)){result.push(inputClass.unnamespace_(key,opt_namespace));}}
6536return result;};inputClass.isnamespaced_=function(key,opt_namespace){return key.indexOf(inputClass.normalize_(opt_namespace))===0;};inputClass.namespace_=function(key,opt_namespace){return inputClass.normalize_(opt_namespace)+key;};inputClass.unnamespace_=function(key,opt_namespace){return key.replace(inputClass.normalize_(opt_namespace),'');};inputClass.normalize_=function(opt_namespace){return inputClass.NAMESPACE+(opt_namespace?opt_namespace+'.':'');};inputClass.setAlternativeStorageInstance=function(instance){inputClass.storage_=instance;};inputClass.getAlternativeStorageInstance=function(){if(!tr.isHeadless&&inputClass.storage_===localStorage){return undefined;}
6537return inputClass.storage_;};inputClass.NAMESPACE='trace-viewer';}
6538function HeadlessStorage(){this.length=0;this.hasItem_={};this.items_={};this.itemsAsArray_=undefined;}
6539HeadlessStorage.prototype={key(index){return this.itemsAsArray[index];},get itemsAsArray(){if(this.itemsAsArray_!==undefined){return this.itemsAsArray_;}
6540const itemsAsArray=[];for(const k in this.items_){itemsAsArray.push(k);}
6541this.itemsAsArray_=itemsAsArray;return this.itemsAsArray_;},getItem(key){if(!this.hasItem_[key]){return null;}
6542return this.items_[key];},removeItem(key){if(!this.hasItem_[key]){return;}
6543const value=this.items_[key];delete this.hasItem_[key];delete this.items_[key];this.length--;this.itemsAsArray_=undefined;return value;},setItem(key,value){if(this.hasItem_[key]){this.items_[key]=value;return;}
6544this.items_[key]=value;this.hasItem_[key]=true;this.length++;this.itemsAsArray_=undefined;return value;}};if(tr.isHeadless){AddStaticStorageFunctionsToClass_(Settings,new HeadlessStorage());AddStaticStorageFunctionsToClass_(SessionSettings,new HeadlessStorage());}else{AddStaticStorageFunctionsToClass_(Settings,localStorage);AddStaticStorageFunctionsToClass_(SessionSettings,sessionStorage);}
6545return{Settings,SessionSettings,};});'use strict';tr.exportTo('tr.ui.b',function(){function createSpan(opt_dictionary){let ownerDocument=document;if(opt_dictionary&&opt_dictionary.ownerDocument){ownerDocument=opt_dictionary.ownerDocument;}
6546const spanEl=ownerDocument.createElement('span');if(opt_dictionary){if(opt_dictionary.className){spanEl.className=opt_dictionary.className;}
6547if(opt_dictionary.textContent){Polymer.dom(spanEl).textContent=opt_dictionary.textContent;}
6548if(opt_dictionary.tooltip){spanEl.title=opt_dictionary.tooltip;}
6549if(opt_dictionary.parent){Polymer.dom(opt_dictionary.parent).appendChild(spanEl);}
6550if(opt_dictionary.bold){spanEl.style.fontWeight='bold';}
6551if(opt_dictionary.italic){spanEl.style.fontStyle='italic';}
6552if(opt_dictionary.marginLeft){spanEl.style.marginLeft=opt_dictionary.marginLeft;}
6553if(opt_dictionary.marginRight){spanEl.style.marginRight=opt_dictionary.marginRight;}
6554if(opt_dictionary.backgroundColor){spanEl.style.backgroundColor=opt_dictionary.backgroundColor;}
6555if(opt_dictionary.color){spanEl.style.color=opt_dictionary.color;}}
6556return spanEl;}
6557function createLink(opt_args){let ownerDocument=document;if(opt_args&&opt_args.ownerDocument){ownerDocument=opt_args.ownerDocument;}
6558const linkEl=ownerDocument.createElement('a');if(opt_args){if(opt_args.href)linkEl.href=opt_args.href;if(opt_args.tooltip)linkEl.title=opt_args.tooltip;if(opt_args.color)linkEl.style.color=opt_args.color;if(opt_args.bold)linkEl.style.fontWeight='bold';if(opt_args.italic)linkEl.style.fontStyle='italic';if(opt_args.className)linkEl.className=opt_args.className;if(opt_args.parent)Polymer.dom(opt_args.parent).appendChild(linkEl);if(opt_args.marginLeft)linkEl.style.marginLeft=opt_args.marginLeft;if(opt_args.marginRight)linkEl.style.marginRight=opt_args.marginRight;if(opt_args.backgroundColor){linkEl.style.backgroundColor=opt_args.backgroundColor;}
6559if(opt_args.textContent){Polymer.dom(linkEl).textContent=opt_args.textContent;}}
6560return linkEl;}
6561function createDiv(opt_dictionary){const divEl=document.createElement('div');if(opt_dictionary){if(opt_dictionary.className){divEl.className=opt_dictionary.className;}
6562if(opt_dictionary.parent){Polymer.dom(opt_dictionary.parent).appendChild(divEl);}
6563if(opt_dictionary.textContent){Polymer.dom(divEl).textContent=opt_dictionary.textContent;}
6564if(opt_dictionary.maxWidth){divEl.style.maxWidth=opt_dictionary.maxWidth;}}
6565return divEl;}
6566function createScopedStyle(styleContent){const styleEl=document.createElement('style');styleEl.scoped=true;Polymer.dom(styleEl).innerHTML=styleContent;return styleEl;}
6567function valuesEqual(a,b){if(a instanceof Array&&b instanceof Array){return a.length===b.length&&JSON.stringify(a)===JSON.stringify(b);}
6568return a===b;}
6569function createSelector(targetEl,targetElProperty,settingsKey,defaultValue,items,opt_namespace){let defaultValueIndex;for(let i=0;i<items.length;i++){const item=items[i];if(valuesEqual(item.value,defaultValue)){defaultValueIndex=i;break;}}
6570if(defaultValueIndex===undefined){throw new Error('defaultValue must be in the items list');}
6571const selectorEl=document.createElement('select');selectorEl.addEventListener('change',onChange);for(let i=0;i<items.length;i++){const item=items[i];const optionEl=document.createElement('option');Polymer.dom(optionEl).textContent=item.label;optionEl.targetPropertyValue=item.value;optionEl.item=item;Polymer.dom(selectorEl).appendChild(optionEl);}
6572function onChange(e){const value=selectorEl.selectedOptions[0].targetPropertyValue;tr.b.Settings.set(settingsKey,value,opt_namespace);targetEl[targetElProperty]=value;}
6573const oldSetter=targetEl.__lookupSetter__('selectedIndex');selectorEl.__defineGetter__('selectedValue',function(v){return selectorEl.children[selectorEl.selectedIndex].targetPropertyValue;});selectorEl.__defineGetter__('selectedItem',function(v){return selectorEl.children[selectorEl.selectedIndex].item;});selectorEl.__defineSetter__('selectedValue',function(v){for(let i=0;i<selectorEl.children.length;i++){const value=selectorEl.children[i].targetPropertyValue;if(valuesEqual(value,v)){const changed=selectorEl.selectedIndex!==i;if(changed){selectorEl.selectedIndex=i;onChange();}
6574return;}}
6575throw new Error('Not a valid value');});const initialValue=tr.b.Settings.get(settingsKey,defaultValue,opt_namespace);let didSet=false;for(let i=0;i<selectorEl.children.length;i++){if(valuesEqual(selectorEl.children[i].targetPropertyValue,initialValue)){didSet=true;targetEl[targetElProperty]=initialValue;selectorEl.selectedIndex=i;break;}}
6576if(!didSet){selectorEl.selectedIndex=defaultValueIndex;targetEl[targetElProperty]=defaultValue;}
6577return selectorEl;}
6578function createEditCategorySpan(optionGroupEl,targetEl){const spanEl=createSpan({className:'edit-categories'});Polymer.dom(spanEl).textContent='Edit categories';Polymer.dom(spanEl).classList.add('labeled-option');spanEl.addEventListener('click',function(){targetEl.onClickEditCategories();});return spanEl;}
6579function createOptionGroup(targetEl,targetElProperty,settingsKey,defaultValue,items){function onChange(){let value=[];if(this.value.length){value=this.value.split(',');}
6580tr.b.Settings.set(settingsKey,value);targetEl[targetElProperty]=value;}
6581const optionGroupEl=createSpan({className:'labeled-option-group'});const initialValue=tr.b.Settings.get(settingsKey,defaultValue);for(let i=0;i<items.length;++i){const item=items[i];const id='category-preset-'+item.label.replace(/ /g,'-');const radioEl=document.createElement('input');radioEl.type='radio';Polymer.dom(radioEl).setAttribute('id',id);Polymer.dom(radioEl).setAttribute('name','category-presets-group');Polymer.dom(radioEl).setAttribute('value',item.value);radioEl.addEventListener('change',onChange.bind(radioEl,targetEl,targetElProperty,settingsKey));if(valuesEqual(initialValue,item.value)){radioEl.checked=true;}
6582const labelEl=document.createElement('label');Polymer.dom(labelEl).textContent=item.label;Polymer.dom(labelEl).setAttribute('for',id);const spanEl=createSpan({className:'labeled-option'});Polymer.dom(spanEl).appendChild(radioEl);Polymer.dom(spanEl).appendChild(labelEl);spanEl.__defineSetter__('checked',function(opt_bool){const changed=radioEl.checked!==(!!opt_bool);if(!changed)return;radioEl.checked=!!opt_bool;onChange();});spanEl.__defineGetter__('checked',function(){return radioEl.checked;});Polymer.dom(optionGroupEl).appendChild(spanEl);}
6583Polymer.dom(optionGroupEl).appendChild(createEditCategorySpan(optionGroupEl,targetEl));if(!initialValue.length){Polymer.dom(optionGroupEl).classList.add('categories-expanded');}
6584targetEl[targetElProperty]=initialValue;return optionGroupEl;}
6585let nextCheckboxId=1;function createCheckBox(targetEl,targetElProperty,settingsKey,defaultValue,label,opt_changeCb){const buttonEl=document.createElement('input');buttonEl.type='checkbox';let initialValue=defaultValue;if(settingsKey!==undefined){initialValue=tr.b.Settings.get(settingsKey,defaultValue);buttonEl.checked=!!initialValue;}
6586if(targetEl){targetEl[targetElProperty]=initialValue;}
6587function onChange(){if(settingsKey!==undefined){tr.b.Settings.set(settingsKey,buttonEl.checked);}
6588if(targetEl){targetEl[targetElProperty]=buttonEl.checked;}
6589if(opt_changeCb){opt_changeCb.call();}}
6590buttonEl.addEventListener('change',onChange);const id='#checkbox-'+nextCheckboxId++;const spanEl=createSpan();spanEl.style.display='flex';spanEl.style.whiteSpace='nowrap';Polymer.dom(buttonEl).setAttribute('id',id);const labelEl=document.createElement('label');Polymer.dom(labelEl).textContent=label;Polymer.dom(labelEl).setAttribute('for',id);Polymer.dom(spanEl).appendChild(buttonEl);Polymer.dom(spanEl).appendChild(labelEl);spanEl.__defineSetter__('checked',function(opt_bool){const changed=buttonEl.checked!==(!!opt_bool);if(!changed)return;buttonEl.checked=!!opt_bool;onChange();});spanEl.__defineGetter__('checked',function(){return buttonEl.checked;});return spanEl;}
6591function createButton(label,opt_callback,opt_this){const buttonEl=document.createElement('input');buttonEl.type='button';buttonEl.value=label;function onClick(){opt_callback.call(opt_this||buttonEl);}
6592if(opt_callback){buttonEl.addEventListener('click',onClick);}
6593return buttonEl;}
6594function createTextInput(targetEl,targetElProperty,settingsKey,defaultValue){const initialValue=tr.b.Settings.get(settingsKey,defaultValue);const el=document.createElement('input');el.type='text';function onChange(e){tr.b.Settings.set(settingsKey,el.value);targetEl[targetElProperty]=el.value;}
6595el.addEventListener('input',onChange);el.value=initialValue;targetEl[targetElProperty]=initialValue;return el;}
6596function isElementAttachedToDocument(el){let cur=el;while(Polymer.dom(cur).parentNode){cur=Polymer.dom(cur).parentNode;}
6597return(cur===el.ownerDocument||cur.nodeName==='#document-fragment');}
6598function asHTMLOrTextNode(value,opt_ownerDocument){if(value instanceof Node){return value;}
6599const ownerDocument=opt_ownerDocument||document;return ownerDocument.createTextNode(value);}
6600return{createSpan,createLink,createDiv,createScopedStyle,createSelector,createOptionGroup,createCheckBox,createButton,createTextInput,isElementAttachedToDocument,asHTMLOrTextNode,};});'use strict';tr.exportTo('tr.ui.b',function(){const elidedTitleCacheDict=new Map();const elidedTitleCache=new ElidedTitleCache();function ElidedTitleCache(){this.textWidthMap=new Map();}
6601ElidedTitleCache.prototype={get(ctx,pixWidth,title,width,sliceDuration){let elidedDict=elidedTitleCacheDict.get(title);if(!elidedDict){elidedDict=new Map();elidedTitleCacheDict.set(title,elidedDict);}
6602let elidedDictForPixWidth=elidedDict.get(pixWidth);if(!elidedDictForPixWidth){elidedDict.set(pixWidth,new Map());elidedDictForPixWidth=elidedDict.get(pixWidth);}
6603let stringWidthPair=elidedDictForPixWidth.get(sliceDuration);if(stringWidthPair===undefined){let newtitle=title;let elided=false;while(this.labelWidthWorld(ctx,newtitle,pixWidth)>sliceDuration){if(newtitle.length*0.75<1)break;newtitle=newtitle.substring(0,newtitle.length*0.75);elided=true;}
6604if(elided&&newtitle.length>3){newtitle=newtitle.substring(0,newtitle.length-3)+'...';}
6605stringWidthPair=new ElidedStringWidthPair(newtitle,this.labelWidth(ctx,newtitle));elidedDictForPixWidth.set(sliceDuration,stringWidthPair);}
6606return stringWidthPair;},quickMeasureText_(ctx,text){let w=this.textWidthMap.get(text);if(!w){w=ctx.measureText(text).width;this.textWidthMap.set(text,w);}
6607return w;},labelWidth(ctx,title){return this.quickMeasureText_(ctx,title)+2;},labelWidthWorld(ctx,title,pixWidth){return this.labelWidth(ctx,title)*pixWidth;}};function ElidedStringWidthPair(string,width){this.string=string;this.width=width;}
6608return{ElidedTitleCache,};});'use strict';tr.exportTo('tr.ui.b',function(){const ColorScheme=tr.b.ColorScheme;const colors=ColorScheme.colors;const colorsAsStrings=ColorScheme.colorsAsStrings;const SelectionState=tr.model.SelectionState;const EventPresenter={getSelectableItemColorAsString(item){const offset=this.getColorIdOffset_(item);const colorId=ColorScheme.getVariantColorId(item.colorId,offset);return colorsAsStrings[colorId];},getColorIdOffset_(event){return event.selectionState;},getTextColor(event){if(event.selectionState===SelectionState.DIMMED){return'rgb(60,60,60)';}
6609return'rgb(0,0,0)';},getSliceColorId(slice){const offset=this.getColorIdOffset_(slice);return ColorScheme.getVariantColorId(slice.colorId,offset);},getSliceAlpha(slice,async){let alpha=1;if(async){alpha*=0.3;}
6610return alpha;},getInstantSliceColor(instant){const offset=this.getColorIdOffset_(instant);const colorId=ColorScheme.getVariantColorId(instant.colorId,offset);return colors[colorId].toStringWithAlphaOverride(1.0);},getObjectInstanceColor(instance){const offset=this.getColorIdOffset_(instance);const colorId=ColorScheme.getVariantColorId(instance.colorId,offset);return colors[colorId].toStringWithAlphaOverride(0.25);},getObjectSnapshotColor(snapshot){const offset=this.getColorIdOffset_(snapshot);let colorId=snapshot.objectInstance.colorId;colorId=ColorScheme.getVariantColorId(colorId,offset);return colors[colorId];},getCounterSeriesColor(colorId,selectionState,opt_alphaMultiplier){const event={selectionState};const offset=this.getColorIdOffset_(event);const c=colors[ColorScheme.getVariantColorId(colorId,offset)];return c.toStringWithAlphaOverride(opt_alphaMultiplier!==undefined?opt_alphaMultiplier:1.0);},getBarSnapshotColor(snapshot,offset){const snapshotOffset=this.getColorIdOffset_(snapshot);let colorId=snapshot.objectInstance.colorId;colorId=ColorScheme.getAnotherColorId(colorId,offset);colorId=ColorScheme.getVariantColorId(colorId,snapshotOffset);return colors[colorId].toStringWithAlphaOverride(1.0);}};return{EventPresenter,};});'use strict';tr.exportTo('tr.ui.b',function(){const elidedTitleCache=new tr.ui.b.ElidedTitleCache();const ColorScheme=tr.b.ColorScheme;const colorsAsStrings=ColorScheme.colorsAsStrings;const EventPresenter=tr.ui.b.EventPresenter;const blackColorId=ColorScheme.getColorIdForReservedName('black');const THIN_SLICE_HEIGHT=4;const SLICE_WAITING_WIDTH_DRAW_THRESHOLD=3;const SLICE_ACTIVE_WIDTH_DRAW_THRESHOLD=1;const SHOULD_ELIDE_TEXT=true;function drawLine(ctx,x1,y1,x2,y2){ctx.moveTo(x1,y1);ctx.lineTo(x2,y2);}
6611function drawTriangle(ctx,x1,y1,x2,y2,x3,y3){ctx.beginPath();ctx.moveTo(x1,y1);ctx.lineTo(x2,y2);ctx.lineTo(x3,y3);ctx.closePath();}
6612function drawArrow(ctx,x1,y1,x2,y2,arrowLength,arrowWidth){const dx=x2-x1;const dy=y2-y1;const len=Math.sqrt(dx*dx+dy*dy);const perc=(len-arrowLength)/len;const bx=x1+perc*dx;const by=y1+perc*dy;const ux=dx/len;const uy=dy/len;const ax=uy*arrowWidth;const ay=-ux*arrowWidth;ctx.beginPath();drawLine(ctx,x1,y1,x2,y2);ctx.stroke();drawTriangle(ctx,bx+ax,by+ay,x2,y2,bx-ax,by-ay);ctx.fill();}
6613function drawSlices(ctx,dt,viewLWorld,viewRWorld,viewHeight,slices,async){const pixelRatio=window.devicePixelRatio||1;const height=viewHeight*pixelRatio;const viewL=dt.xWorldToView(viewLWorld);const viewR=dt.xWorldToView(viewRWorld);let darkRectHeight=THIN_SLICE_HEIGHT*pixelRatio;if(height<darkRectHeight){darkRectHeight=0;}
6614const lightRectHeight=height-darkRectHeight;ctx.save();const rect=new tr.ui.b.FastRectRenderer(ctx,viewL,viewR,2,2,colorsAsStrings);rect.setYandH(0,height);const lowSlice=tr.b.findLowIndexInSortedArray(slices,function(slice){return slice.start+slice.duration;},viewLWorld);let hadTopLevel=false;for(let i=lowSlice;i<slices.length;++i){const slice=slices[i];const x=slice.start;if(x>viewRWorld)break;const xView=dt.xWorldToView(x);let wView=1;if(slice.duration>0){const w=Math.max(slice.duration,0.000001);wView=Math.max(dt.xWorldVectorToView(w),1);}
6615const colorId=EventPresenter.getSliceColorId(slice);const alpha=EventPresenter.getSliceAlpha(slice,async);const lightAlpha=alpha*0.70;if(async&&slice.isTopLevel){rect.setYandH(3,height-3);hadTopLevel=true;}else{rect.setYandH(0,height);}
6616if(!slice.cpuDuration){rect.fillRect(xView,wView,colorId,alpha);continue;}
6617let activeWidth=wView*(slice.cpuDuration/slice.duration);let waitingWidth=wView-activeWidth;if(activeWidth<SLICE_ACTIVE_WIDTH_DRAW_THRESHOLD){activeWidth=0;waitingWidth=wView;}
6618if(waitingWidth<SLICE_WAITING_WIDTH_DRAW_THRESHOLD){activeWidth=wView;waitingWidth=0;}
6619if(activeWidth>0){rect.fillRect(xView,activeWidth,colorId,alpha);}
6620if(waitingWidth>0){rect.setYandH(0,lightRectHeight);rect.fillRect(xView+activeWidth-1,waitingWidth+1,colorId,lightAlpha);rect.setYandH(lightRectHeight,darkRectHeight);rect.fillRect(xView+activeWidth-1,waitingWidth+1,colorId,alpha);rect.setYandH(0,height);}}
6621rect.flush();if(async&&hadTopLevel){rect.setYandH(2,1);for(let i=lowSlice;i<slices.length;++i){const slice=slices[i];const x=slice.start;if(x>viewRWorld)break;if(!slice.isTopLevel)continue;const xView=dt.xWorldToView(x);let wView=1;if(slice.duration>0){const w=Math.max(slice.duration,0.000001);wView=Math.max(dt.xWorldVectorToView(w),1);}
6622rect.fillRect(xView,wView,blackColorId,0.7);}
6623rect.flush();}
6624ctx.restore();}
6625function drawInstantSlicesAsLines(ctx,dt,viewLWorld,viewRWorld,viewHeight,slices,lineWidthInPixels){const pixelRatio=window.devicePixelRatio||1;const height=viewHeight*pixelRatio;ctx.save();ctx.lineWidth=lineWidthInPixels*pixelRatio;const lowSlice=tr.b.findLowIndexInSortedArray(slices,function(slice){return slice.start;},viewLWorld);for(let i=lowSlice;i<slices.length;++i){const slice=slices[i];const x=slice.start;if(x>viewRWorld)break;ctx.strokeStyle=EventPresenter.getInstantSliceColor(slice);const xView=dt.xWorldToView(x);ctx.beginPath();ctx.moveTo(xView,0);ctx.lineTo(xView,height);ctx.stroke();}
6626ctx.restore();}
6627function drawLabels(ctx,dt,viewLWorld,viewRWorld,slices,async,fontSize,yOffset){const pixelRatio=window.devicePixelRatio||1;const pixWidth=dt.xViewVectorToWorld(1);ctx.save();ctx.textAlign='center';ctx.textBaseline='top';ctx.font=(fontSize*pixelRatio)+'px sans-serif';if(async){ctx.font='italic '+ctx.font;}
6628const cY=yOffset*pixelRatio;const lowSlice=tr.b.findLowIndexInSortedArray(slices,function(slice){return slice.start+slice.duration;},viewLWorld);const quickDiscardThreshold=pixWidth*20;for(let i=lowSlice;i<slices.length;++i){const slice=slices[i];if(slice.start>viewRWorld)break;if(slice.duration<=quickDiscardThreshold)continue;const xLeftClipped=Math.max(slice.start,viewLWorld);const xRightClipped=Math.min(slice.start+slice.duration,viewRWorld);const visibleWidth=xRightClipped-xLeftClipped;const title=slice.title+
6629(slice.didNotFinish?' (Did Not Finish)':'');let drawnTitle=title;let drawnWidth=elidedTitleCache.labelWidth(ctx,drawnTitle);const fullLabelWidth=elidedTitleCache.labelWidthWorld(ctx,drawnTitle,pixWidth);if(SHOULD_ELIDE_TEXT&&fullLabelWidth>visibleWidth){const elidedValues=elidedTitleCache.get(ctx,pixWidth,drawnTitle,drawnWidth,visibleWidth);drawnTitle=elidedValues.string;drawnWidth=elidedValues.width;}
6630if(drawnWidth*pixWidth<visibleWidth){ctx.fillStyle=EventPresenter.getTextColor(slice);const cX=dt.xWorldToView((xLeftClipped+xRightClipped)/2);ctx.fillText(drawnTitle,cX,cY,drawnWidth);}}
6631ctx.restore();}
6632return{drawSlices,drawInstantSlicesAsLines,drawLabels,drawLine,drawTriangle,drawArrow,elidedTitleCache_:elidedTitleCache,THIN_SLICE_HEIGHT,};});'use strict';tr.exportTo('tr.ui',function(){function TimelineDisplayTransform(opt_that){if(opt_that){this.set(opt_that);return;}
6633this.scaleX=1;this.panX=0;this.panY=0;}
6634TimelineDisplayTransform.prototype={set(that){this.scaleX=that.scaleX;this.panX=that.panX;this.panY=that.panY;},clone(){return new TimelineDisplayTransform(this);},equals(that){let eq=true;if(that===undefined||that===null){return false;}
6635eq&=this.panX===that.panX;eq&=this.panY===that.panY;eq&=this.scaleX===that.scaleX;return!!eq;},almostEquals(that){let eq=true;if(that===undefined||that===null){return false;}
6636eq&=Math.abs(this.panX-that.panX)<0.001;eq&=Math.abs(this.panY-that.panY)<0.001;eq&=Math.abs(this.scaleX-that.scaleX)<0.001;return!!eq;},incrementPanXInViewUnits(xDeltaView){this.panX+=this.xViewVectorToWorld(xDeltaView);},xPanWorldPosToViewPos(worldX,viewX,viewWidth){if(typeof viewX==='string'){if(viewX==='left'){viewX=0;}else if(viewX==='center'){viewX=viewWidth/2;}else if(viewX==='right'){viewX=viewWidth-1;}else{throw new Error('viewX must be left|center|right or number.');}}
6637this.panX=(viewX/this.scaleX)-worldX;},xPanWorldBoundsIntoView(worldMin,worldMax,viewWidth){if(this.xWorldToView(worldMin)<0){this.xPanWorldPosToViewPos(worldMin,'left',viewWidth);}else if(this.xWorldToView(worldMax)>viewWidth){this.xPanWorldPosToViewPos(worldMax,'right',viewWidth);}},xSetWorldBounds(worldMin,worldMax,viewWidth){const worldWidth=worldMax-worldMin;const scaleX=viewWidth/worldWidth;const panX=-worldMin;this.setPanAndScale(panX,scaleX);},setPanAndScale(p,s){this.scaleX=s;this.panX=p;},xWorldToView(x){return(x+this.panX)*this.scaleX;},xWorldVectorToView(x){return x*this.scaleX;},xViewToWorld(x){return(x/this.scaleX)-this.panX;},xViewVectorToWorld(x){return x/this.scaleX;}};return{TimelineDisplayTransform,};});'use strict';tr.exportTo('tr.ui',function(){function SnapIndicator(y,height){this.y=y;this.height=height;}
6638function TimelineInterestRange(vp){this.viewport_=vp;this.range_=new tr.b.math.Range();this.leftSelected_=false;this.rightSelected_=false;this.leftSnapIndicator_=undefined;this.rightSnapIndicator_=undefined;}
6639TimelineInterestRange.prototype={get isEmpty(){return this.range_.isEmpty;},reset(){this.range_.reset();this.leftSelected_=false;this.rightSelected_=false;this.leftSnapIndicator_=undefined;this.rightSnapIndicator_=undefined;this.viewport_.dispatchChangeEvent();},get min(){return this.range_.min;},set min(min){this.range_.min=min;this.viewport_.dispatchChangeEvent();},get max(){return this.range_.max;},set max(max){this.range_.max=max;this.viewport_.dispatchChangeEvent();},set(range){this.range_.reset();this.range_.addRange(range);this.viewport_.dispatchChangeEvent();},setMinAndMax(min,max){this.range_.min=min;this.range_.max=max;this.viewport_.dispatchChangeEvent();},get range(){return this.range_.range;},asRangeObject(){const range=new tr.b.math.Range();range.addRange(this.range_);return range;},get leftSelected(){return this.leftSelected_;},set leftSelected(leftSelected){if(this.leftSelected_===leftSelected)return;this.leftSelected_=leftSelected;this.viewport_.dispatchChangeEvent();},get rightSelected(){return this.rightSelected_;},set rightSelected(rightSelected){if(this.rightSelected_===rightSelected)return;this.rightSelected_=rightSelected;this.viewport_.dispatchChangeEvent();},get leftSnapIndicator(){return this.leftSnapIndicator_;},set leftSnapIndicator(leftSnapIndicator){this.leftSnapIndicator_=leftSnapIndicator;this.viewport_.dispatchChangeEvent();},get rightSnapIndicator(){return this.rightSnapIndicator_;},set rightSnapIndicator(rightSnapIndicator){this.rightSnapIndicator_=rightSnapIndicator;this.viewport_.dispatchChangeEvent();},draw(ctx,viewLWorld,viewRWorld,viewHeight){if(this.range_.isEmpty)return;const dt=this.viewport_.currentDisplayTransform;const markerLWorld=this.min;const markerRWorld=this.max;const markerLView=Math.round(dt.xWorldToView(markerLWorld));const markerRView=Math.round(dt.xWorldToView(markerRWorld));ctx.fillStyle='rgba(0, 0, 0, 0.2)';if(markerLWorld>viewLWorld){ctx.fillRect(dt.xWorldToView(viewLWorld),0,markerLView,viewHeight);}
6640if(markerRWorld<viewRWorld){ctx.fillRect(markerRView,0,dt.xWorldToView(viewRWorld),viewHeight);}
6641const pixelRatio=window.devicePixelRatio||1;ctx.lineWidth=Math.round(pixelRatio);if(this.range_.range>0){this.drawLine_(ctx,viewLWorld,viewRWorld,viewHeight,this.min,this.leftSelected_);this.drawLine_(ctx,viewLWorld,viewRWorld,viewHeight,this.max,this.rightSelected_);}else{this.drawLine_(ctx,viewLWorld,viewRWorld,viewHeight,this.min,this.leftSelected_||this.rightSelected_);}
6642ctx.lineWidth=1;},drawLine_(ctx,viewLWorld,viewRWorld,height,ts,selected){if(ts<viewLWorld||ts>=viewRWorld)return;const dt=this.viewport_.currentDisplayTransform;const viewX=Math.round(dt.xWorldToView(ts));ctx.save();ctx.translate((Math.round(ctx.lineWidth)%2)/2,0);ctx.beginPath();tr.ui.b.drawLine(ctx,viewX,0,viewX,height);if(selected){ctx.strokeStyle='rgb(255, 0, 0)';}else{ctx.strokeStyle='rgb(0, 0, 0)';}
6643ctx.stroke();ctx.restore();},drawIndicators(ctx,viewLWorld,viewRWorld){if(this.leftSnapIndicator_){this.drawIndicator_(ctx,viewLWorld,viewRWorld,this.range_.min,this.leftSnapIndicator_,this.leftSelected_);}
6644if(this.rightSnapIndicator_){this.drawIndicator_(ctx,viewLWorld,viewRWorld,this.range_.max,this.rightSnapIndicator_,this.rightSelected_);}},drawIndicator_(ctx,viewLWorld,viewRWorld,xWorld,si,selected){const dt=this.viewport_.currentDisplayTransform;const viewX=Math.round(dt.xWorldToView(xWorld));ctx.save();ctx.translate((Math.round(ctx.lineWidth)%2)/2,0);const pixelRatio=window.devicePixelRatio||1;const viewY=si.y*devicePixelRatio;const viewHeight=si.height*devicePixelRatio;const arrowSize=4*pixelRatio;if(selected){ctx.fillStyle='rgb(255, 0, 0)';}else{ctx.fillStyle='rgb(0, 0, 0)';}
6645tr.ui.b.drawTriangle(ctx,viewX-arrowSize*0.75,viewY,viewX+arrowSize*0.75,viewY,viewX,viewY+arrowSize);ctx.fill();tr.ui.b.drawTriangle(ctx,viewX-arrowSize*0.75,viewY+viewHeight,viewX+arrowSize*0.75,viewY+viewHeight,viewX,viewY+viewHeight-arrowSize);ctx.fill();ctx.restore();}};return{SnapIndicator,TimelineInterestRange,};});'use strict';tr.exportTo('tr.ui.tracks',function(){function ContainerToTrackMap(){this.stableIdToTrackMap_={};}
6646ContainerToTrackMap.prototype={addContainer(container,track){if(!track){throw new Error('Must provide a track.');}
6647this.stableIdToTrackMap_[container.stableId]=track;},clear(){this.stableIdToTrackMap_={};},getTrackByStableId(stableId){return this.stableIdToTrackMap_[stableId];}};return{ContainerToTrackMap,};});'use strict';tr.exportTo('tr.ui.tracks',function(){function EventToTrackMap(){}
6648EventToTrackMap.prototype={addEvent(event,track){if(!track){throw new Error('Must provide a track.');}
6649this[event.guid]=track;}};return{EventToTrackMap,};});'use strict';tr.exportTo('tr.ui',function(){const TimelineDisplayTransform=tr.ui.TimelineDisplayTransform;const TimelineInterestRange=tr.ui.TimelineInterestRange;const IDEAL_MAJOR_MARK_DISTANCE_PX=150;const MAJOR_MARK_ROUNDING_FACTOR=100000;class AnimationControllerProxy{constructor(target){this.target_=target;}
6650get panX(){return this.target_.currentDisplayTransform_.panX;}
6651set panX(panX){this.target_.currentDisplayTransform_.panX=panX;}
6652get panY(){return this.target_.currentDisplayTransform_.panY;}
6653set panY(panY){this.target_.currentDisplayTransform_.panY=panY;}
6654get scaleX(){return this.target_.currentDisplayTransform_.scaleX;}
6655set scaleX(scaleX){this.target_.currentDisplayTransform_.scaleX=scaleX;}
6656cloneAnimationState(){return this.target_.currentDisplayTransform_.clone();}
6657xPanWorldPosToViewPos(xWorld,xView){this.target_.currentDisplayTransform_.xPanWorldPosToViewPos(xWorld,xView,this.target_.modelTrackContainer_.canvas.clientWidth);}}
6658function TimelineViewport(parentEl){this.parentEl_=parentEl;this.modelTrackContainer_=undefined;this.currentDisplayTransform_=new TimelineDisplayTransform();this.initAnimationController_();this.showFlowEvents_=false;this.highlightVSync_=false;this.highDetails_=false;this.gridTimebase_=0;this.gridStep_=1000/60;this.gridEnabled_=false;this.hasCalledSetupFunction_=false;this.onResize_=this.onResize_.bind(this);this.onModelTrackControllerScroll_=this.onModelTrackControllerScroll_.bind(this);this.timeMode_=TimelineViewport.TimeMode.TIME_IN_MS;this.majorMarkWorldPositions_=[];this.majorMarkUnit_=undefined;this.interestRange_=new TimelineInterestRange(this);this.eventToTrackMap_=new tr.ui.tracks.EventToTrackMap();this.containerToTrackMap=new tr.ui.tracks.ContainerToTrackMap();this.dispatchChangeEvent=this.dispatchChangeEvent.bind(this);}
6659TimelineViewport.TimeMode={TIME_IN_MS:0,REVISIONS:1};TimelineViewport.prototype={__proto__:tr.b.EventTarget.prototype,get isAttachedToDocumentOrInTestMode(){if(this.parentEl_===undefined)return;return tr.ui.b.isElementAttachedToDocument(this.parentEl_);},onResize_(){this.dispatchChangeEvent();},dispatchChangeEvent(){tr.b.dispatchSimpleEvent(this,'change');},detach(){window.removeEventListener('resize',this.dispatchChangeEvent);},initAnimationController_(){this.dtAnimationController_=new tr.ui.b.AnimationController();this.dtAnimationController_.addEventListener('didtick',function(e){this.onCurentDisplayTransformChange_(e.oldTargetState);}.bind(this));this.dtAnimationController_.target=new AnimationControllerProxy(this);},get currentDisplayTransform(){return this.currentDisplayTransform_;},setDisplayTransformImmediately(displayTransform){this.dtAnimationController_.cancelActiveAnimation();const oldDisplayTransform=this.dtAnimationController_.target.cloneAnimationState();this.currentDisplayTransform_.set(displayTransform);this.onCurentDisplayTransformChange_(oldDisplayTransform);},queueDisplayTransformAnimation(animation){if(!(animation instanceof tr.ui.b.Animation)){throw new Error('animation must be instanceof tr.ui.b.Animation');}
6660this.dtAnimationController_.queueAnimation(animation);},onCurentDisplayTransformChange_(oldDisplayTransform){if(this.modelTrackContainer_){this.currentDisplayTransform.panY=tr.b.math.clamp(this.currentDisplayTransform.panY,0,this.modelTrackContainer_.scrollHeight-
6661this.modelTrackContainer_.clientHeight);}
6662const changed=!this.currentDisplayTransform.equals(oldDisplayTransform);const yChanged=this.currentDisplayTransform.panY!==oldDisplayTransform.panY;if(yChanged){this.modelTrackContainer_.scrollTop=this.currentDisplayTransform.panY;}
6663if(changed){this.dispatchChangeEvent();}},onModelTrackControllerScroll_(e){if(this.dtAnimationController_.activeAnimation&&this.dtAnimationController_.activeAnimation.affectsPanY){this.dtAnimationController_.cancelActiveAnimation();}
6664const panY=this.modelTrackContainer_.scrollTop;this.currentDisplayTransform_.panY=panY;},get modelTrackContainer(){return this.modelTrackContainer_;},set modelTrackContainer(m){if(this.modelTrackContainer_){this.modelTrackContainer_.removeEventListener('scroll',this.onModelTrackControllerScroll_);}
6665this.modelTrackContainer_=m;this.modelTrackContainer_.addEventListener('scroll',this.onModelTrackControllerScroll_);},get showFlowEvents(){return this.showFlowEvents_;},set showFlowEvents(showFlowEvents){this.showFlowEvents_=showFlowEvents;this.dispatchChangeEvent();},get highlightVSync(){return this.highlightVSync_;},set highlightVSync(highlightVSync){this.highlightVSync_=highlightVSync;this.dispatchChangeEvent();},get highDetails(){return this.highDetails_;},set highDetails(highDetails){this.highDetails_=highDetails;this.dispatchChangeEvent();},get gridEnabled(){return this.gridEnabled_;},set gridEnabled(enabled){if(this.gridEnabled_===enabled)return;this.gridEnabled_=enabled&&true;this.dispatchChangeEvent();},get gridTimebase(){return this.gridTimebase_;},set gridTimebase(timebase){if(this.gridTimebase_===timebase)return;this.gridTimebase_=timebase;this.dispatchChangeEvent();},get gridStep(){return this.gridStep_;},get interestRange(){return this.interestRange_;},get majorMarkWorldPositions(){return this.majorMarkWorldPositions_;},get majorMarkUnit(){switch(this.timeMode_){case TimelineViewport.TimeMode.TIME_IN_MS:return tr.b.Unit.byName.timeInMsAutoFormat;case TimelineViewport.TimeMode.REVISIONS:return tr.b.Unit.byName.count;default:throw new Error('Cannot get Unit for unsupported time mode '+this.timeMode_);}},get timeMode(){return this.timeMode_;},set timeMode(mode){this.timeMode_=mode;this.dispatchChangeEvent();},updateMajorMarkData(viewLWorld,viewRWorld){const pixelRatio=window.devicePixelRatio||1;const dt=this.currentDisplayTransform;const idealMajorMarkDistancePix=IDEAL_MAJOR_MARK_DISTANCE_PX*pixelRatio;const idealMajorMarkDistanceWorld=dt.xViewVectorToWorld(idealMajorMarkDistancePix);const majorMarkDistanceWorld=tr.b.math.preferredNumberLargerThanMin(idealMajorMarkDistanceWorld);const firstMajorMark=Math.floor(viewLWorld/majorMarkDistanceWorld)*majorMarkDistanceWorld;this.majorMarkWorldPositions_=[];for(let curX=firstMajorMark;curX<viewRWorld;curX+=majorMarkDistanceWorld){this.majorMarkWorldPositions_.push(Math.floor(MAJOR_MARK_ROUNDING_FACTOR*curX)/MAJOR_MARK_ROUNDING_FACTOR);}},drawMajorMarkLines(ctx,viewHeight){ctx.save();ctx.translate((Math.round(ctx.lineWidth)%2)/2,0);ctx.beginPath();for(const majorMark of this.majorMarkWorldPositions_){const x=this.currentDisplayTransform.xWorldToView(majorMark);tr.ui.b.drawLine(ctx,x,0,x,viewHeight);}
6666ctx.strokeStyle='#ddd';ctx.stroke();ctx.restore();},drawGridLines(ctx,viewLWorld,viewRWorld,viewHeight){if(!this.gridEnabled)return;const dt=this.currentDisplayTransform;let x=this.gridTimebase;ctx.save();ctx.translate((Math.round(ctx.lineWidth)%2)/2,0);ctx.beginPath();while(x<viewRWorld){if(x>=viewLWorld){const vx=Math.floor(dt.xWorldToView(x));tr.ui.b.drawLine(ctx,vx,0,vx,viewHeight);}
6667x+=this.gridStep;}
6668ctx.strokeStyle='rgba(255, 0, 0, 0.25)';ctx.stroke();ctx.restore();},getShiftedSelection(selection,offset){const newSelection=new tr.model.EventSet();for(const event of selection){if(event instanceof tr.model.FlowEvent){if(offset>0){newSelection.push(event.endSlice);}else if(offset<0){newSelection.push(event.startSlice);}else{}
6669continue;}
6670const track=this.trackForEvent(event);track.addEventNearToProvidedEventToSelection(event,offset,newSelection);}
6671if(newSelection.length===0)return undefined;return newSelection;},rebuildEventToTrackMap(){this.eventToTrackMap_=new tr.ui.tracks.EventToTrackMap();this.modelTrackContainer_.addEventsToTrackMap(this.eventToTrackMap_);},rebuildContainerToTrackMap(){this.containerToTrackMap.clear();this.modelTrackContainer_.addContainersToTrackMap(this.containerToTrackMap);},trackForEvent(event){return this.eventToTrackMap_[event.guid];}};return{TimelineViewport,};});'use strict';tr.exportTo('tr.c',function(){const BrushingState=tr.ui.b.BrushingState;const EventSet=tr.model.EventSet;const SelectionState=tr.model.SelectionState;const Viewport=tr.ui.TimelineViewport;function BrushingStateController(timelineView){tr.b.EventTarget.call(this);this.timelineView_=timelineView;this.currentBrushingState_=new BrushingState();this.onPopState_=this.onPopState_.bind(this);this.historyEnabled_=false;this.selections_={};}
6672BrushingStateController.prototype={__proto__:tr.b.EventTarget.prototype,dispatchChangeEvent_(){const e=new tr.b.Event('change',false,false);this.dispatchEvent(e);},get model(){if(!this.timelineView_){return undefined;}
6673return this.timelineView_.model;},get trackView(){if(!this.timelineView_){return undefined;}
6674return this.timelineView_.trackView;},get viewport(){if(!this.timelineView_){return undefined;}
6675if(!this.timelineView_.trackView){return undefined;}
6676return this.timelineView_.trackView.viewport;},get historyEnabled(){return this.historyEnabled_;},set historyEnabled(historyEnabled){this.historyEnabled_=!!historyEnabled;if(historyEnabled){window.addEventListener('popstate',this.onPopState_);}else{window.removeEventListener('popstate',this.onPopState_);}},modelWillChange(){if(this.currentBrushingState_.isAppliedToModel){this.currentBrushingState_.unapplyFromEventSelectionStates();}},modelDidChange(){this.selections_={};this.currentBrushingState_=new BrushingState();this.currentBrushingState_.applyToEventSelectionStates(this.model);const e=new tr.b.Event('model-changed',false,false);this.dispatchEvent(e);this.dispatchChangeEvent_();},onUserInitiatedSelectionChange_(){const selection=this.selection;if(this.historyEnabled){this.selections_[selection.guid]=selection;const state={selection_guid:selection.guid};window.history.pushState(state,document.title);}},onPopState_(e){if(e.state===null)return;const selection=this.selections_[e.state.selection_guid];if(selection){const newState=this.currentBrushingState_.clone();newState.selection=selection;this.currentBrushingState=newState;}
6677e.stopPropagation();},get selection(){return this.currentBrushingState_.selection;},get findMatches(){return this.currentBrushingState_.findMatches;},get selectionOfInterest(){return this.currentBrushingState_.selectionOfInterest;},get currentBrushingState(){return this.currentBrushingState_;},set currentBrushingState(newBrushingState){if(newBrushingState.isAppliedToModel){throw new Error('Cannot apply this state, it is applied');}
6678const hasValueChanged=!this.currentBrushingState_.equals(newBrushingState);if(newBrushingState!==this.currentBrushingState_&&!hasValueChanged){if(this.currentBrushingState_.isAppliedToModel){this.currentBrushingState_.transferModelOwnershipToClone(newBrushingState);}
6679this.currentBrushingState_=newBrushingState;return;}
6680if(this.currentBrushingState_.isAppliedToModel){this.currentBrushingState_.unapplyFromEventSelectionStates();}
6681this.currentBrushingState_=newBrushingState;this.currentBrushingState_.applyToEventSelectionStates(this.model);this.dispatchChangeEvent_();},addAllEventsMatchingFilterToSelectionAsTask(filter,selection){const timelineView=this.timelineView_.trackView;if(!timelineView){return new tr.b.Task();}
6682return timelineView.addAllEventsMatchingFilterToSelectionAsTask(filter,selection);},findTextChangedTo(allPossibleMatches){const newBrushingState=this.currentBrushingState_.clone();newBrushingState.findMatches=allPossibleMatches;this.currentBrushingState=newBrushingState;},findFocusChangedTo(currentFocus){const newBrushingState=this.currentBrushingState_.clone();newBrushingState.selection=currentFocus;this.currentBrushingState=newBrushingState;this.onUserInitiatedSelectionChange_();},findTextCleared(){if(this.xNavStringMarker_!==undefined){this.model.removeAnnotation(this.xNavStringMarker_);this.xNavStringMarker_=undefined;}
6683if(this.guideLineAnnotation_!==undefined){this.model.removeAnnotation(this.guideLineAnnotation_);this.guideLineAnnotation_=undefined;}
6684const newBrushingState=this.currentBrushingState_.clone();newBrushingState.selection=new EventSet();newBrushingState.findMatches=new EventSet();this.currentBrushingState=newBrushingState;this.onUserInitiatedSelectionChange_();},uiStateFromString(string){return tr.ui.b.UIState.fromUserFriendlyString(this.model,this.viewport,string);},navToPosition(uiState,showNavLine){this.trackView.navToPosition(uiState,showNavLine);},changeSelectionFromTimeline(selection){const newBrushingState=this.currentBrushingState_.clone();newBrushingState.selection=selection;newBrushingState.findMatches=new EventSet();this.currentBrushingState=newBrushingState;this.onUserInitiatedSelectionChange_();},showScriptControlSelection(selection){const newBrushingState=this.currentBrushingState_.clone();newBrushingState.selection=selection;newBrushingState.findMatches=new EventSet();this.currentBrushingState=newBrushingState;},changeSelectionFromRequestSelectionChangeEvent(selection){const newBrushingState=this.currentBrushingState_.clone();newBrushingState.selection=selection;newBrushingState.findMatches=new EventSet();this.currentBrushingState=newBrushingState;this.onUserInitiatedSelectionChange_();},changeAnalysisViewRelatedEvents(eventSet){const newBrushingState=this.currentBrushingState_.clone();newBrushingState.analysisViewRelatedEvents=eventSet;this.currentBrushingState=newBrushingState;},changeAnalysisLinkHoveredEvents(eventSet){const newBrushingState=this.currentBrushingState_.clone();newBrushingState.analysisLinkHoveredEvents=eventSet;this.currentBrushingState=newBrushingState;},getViewSpecificBrushingState(viewId){return this.currentBrushingState.viewSpecificBrushingStates[viewId];},changeViewSpecificBrushingState(viewId,newState){const oldStates=this.currentBrushingState_.viewSpecificBrushingStates;const newStates={};for(const id in oldStates){newStates[id]=oldStates[id];}
6685if(newState===undefined){delete newStates[viewId];}else{newStates[viewId]=newState;}
6686const newBrushingState=this.currentBrushingState_.clone();newBrushingState.viewSpecificBrushingStates=newStates;this.currentBrushingState=newBrushingState;}};BrushingStateController.getControllerForElement=function(element){if(tr.isHeadless){throw new Error('Unsupported');}
6687let currentElement=element;while(currentElement){if(currentElement.brushingStateController){return currentElement.brushingStateController;}
6688if(currentElement.parentElement){currentElement=currentElement.parentElement;continue;}
6689let currentNode=currentElement;while(Polymer.dom(currentNode).parentNode){currentNode=Polymer.dom(currentNode).parentNode;}
6690currentElement=currentNode.host;}
6691return undefined;};return{BrushingStateController,};});'use strict';Polymer({is:'tr-ui-a-analysis-link',properties:{href:{type:String}},listeners:{'click':'onClicked_','mouseenter':'onMouseEnter_','mouseleave':'onMouseLeave_'},ready(){this.selection_=undefined;},attached(){this.controller_=tr.c.BrushingStateController.getControllerForElement(this);},detached(){this.clearHighlight_();this.controller_=undefined;},set color(c){this.style.color=c;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;Polymer.dom(this).textContent=selection.userFriendlyName;},setSelectionAndContent(selection,opt_textContent){this.selection_=selection;if(opt_textContent){Polymer.dom(this).textContent=opt_textContent;}},getCurrentSelection_(){if(typeof this.selection_==='function'){return this.selection_();}
6692return this.selection_;},setHighlight_(opt_eventSet){if(this.controller_){this.controller_.changeAnalysisLinkHoveredEvents(opt_eventSet);}},clearHighlight_(opt_eventSet){this.setHighlight_();},onClicked_(clickEvent){if(!this.selection_)return;clickEvent.stopPropagation();const event=new tr.model.RequestSelectionChangeEvent();event.selection=this.getCurrentSelection_();this.dispatchEvent(event);},onMouseEnter_(){this.setHighlight_(this.getCurrentSelection_());},onMouseLeave_(){this.clearHighlight_();}});'use strict';tr.exportTo('tr.ui.b',function(){const TableFormat={};TableFormat.SelectionMode={NONE:0,ROW:1,CELL:2};TableFormat.HighlightStyle={DEFAULT:0,NONE:1,LIGHT:2,DARK:3};TableFormat.ColumnAlignment={LEFT:0,RIGHT:1};return{TableFormat,};});'use strict';(function(){const RIGHT_ARROW=String.fromCharCode(0x25b6);const UNSORTED_ARROW=String.fromCharCode(0x25BF);const ASCENDING_ARROW=String.fromCharCode(0x25B4);const DESCENDING_ARROW=String.fromCharCode(0x25BE);const SelectionMode=tr.ui.b.TableFormat.SelectionMode;const SelectionModeValues=new Set(Object.values(SelectionMode));const HighlightStyle=tr.ui.b.TableFormat.HighlightStyle;const HighlightStyleValues=new Set(Object.values(HighlightStyle));const ColumnAlignment=tr.ui.b.TableFormat.ColumnAlignment;const ColumnAlignmentValues=new Set(Object.values(ColumnAlignment));Polymer({is:'tr-ui-b-table',created(){this.selectionMode_=SelectionMode.NONE;this.rowHighlightStyle_=HighlightStyle.DEFAULT;this.cellHighlightStyle_=HighlightStyle.DEFAULT;this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;this.tableColumns_=[];this.tableRows_=[];this.tableRowsInfo_=new WeakMap();this.tableFooterRows_=[];this.tableFooterRowsInfo_=new WeakMap();this.sortColumnIndex_=undefined;this.sortDescending_=false;this.columnsWithExpandButtons_=[];this.headerCells_=[];this.showHeader_=true;this.emptyValue_=undefined;this.subRowsPropertyName_='subRows';this.customizeTableRowCallback_=undefined;this.defaultExpansionStateCallback_=undefined;this.userCanModifySortOrder_=true;this.computedFontSizePx_=undefined;},ready(){this.$.body.addEventListener('keydown',this.onKeyDown_.bind(this),true);this.$.body.addEventListener('focus',this.onFocus_.bind(this),true);},clear(){this.selectionMode_=SelectionMode.NONE;this.rowHighlightStyle_=HighlightStyle.DEFAULT;this.cellHighlightStyle_=HighlightStyle.DEFAULT;this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;Polymer.dom(this).textContent='';this.tableColumns_=[];this.tableRows_=[];this.tableRowsInfo_=new WeakMap();this.tableFooterRows_=[];this.tableFooterRowsInfo_=new WeakMap();this.sortColumnIndex_=undefined;this.sortDescending_=false;this.columnsWithExpandButtons_=[];this.headerCells_=[];this.showHeader_=true;this.emptyValue_=undefined;this.subRowsPropertyName_='subRows';this.defaultExpansionStateCallback_=undefined;this.userCanModifySortOrder_=true;},set zebra(zebra){if(zebra){this.setAttribute('zebra',true);}else{this.removeAttribute('zebra');}},get zebra(){return this.getAttribute('zebra');},get showHeader(){return this.showHeader_;},set showHeader(showHeader){this.showHeader_=showHeader;this.scheduleRebuildHeaders_();},set subRowsPropertyName(name){this.subRowsPropertyName_=name;},set defaultExpansionStateCallback(cb){this.defaultExpansionStateCallback_=cb;this.scheduleRebuildBody_();},set customizeTableRowCallback(cb){this.customizeTableRowCallback_=cb;this.scheduleRebuildBody_();},get emptyValue(){return this.emptyValue_;},set emptyValue(emptyValue){const previousEmptyValue=this.emptyValue_;this.emptyValue_=emptyValue;if(this.tableRows_.length===0&&emptyValue!==previousEmptyValue){this.scheduleRebuildBody_();}},set tableColumns(columns){let columnsWithExpandButtons=[];for(let i=0;i<columns.length;i++){if(columns[i].showExpandButtons){columnsWithExpandButtons.push(i);}}
6693if(columnsWithExpandButtons.length===0){columnsWithExpandButtons=[0];}
6694for(let i=0;i<columns.length;i++){const colInfo=columns[i];if(colInfo.width===undefined)continue;const hasExpandButton=columnsWithExpandButtons.includes(i);const w=colInfo.width;if(w){if(/\d+px/.test(w)){continue;}else if(/\d+%/.test(w)){if(hasExpandButton){throw new Error('Columns cannot be %-sized and host '+' an expand button');}}else{throw new Error('Unrecognized width string');}}}
6695let sortIndex=undefined;const currentSortColumn=this.tableColumns[this.sortColumnIndex_];if(currentSortColumn){for(const[i,column]of columns.entries()){if(currentSortColumn.title===column.title){sortIndex=i;break;}}}
6696this.tableColumns_=columns;this.headerCells_=[];this.columnsWithExpandButtons_=columnsWithExpandButtons;this.scheduleRebuildHeaders_();this.sortColumnIndex=sortIndex;this.tableRows=this.tableRows_;},get tableColumns(){return this.tableColumns_;},set tableRows(rows){this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;this.tableRows_=rows;this.tableRowsInfo_=new WeakMap();this.scheduleRebuildBody_();},get tableRows(){return this.tableRows_;},set footerRows(rows){this.tableFooterRows_=rows;this.tableFooterRowsInfo_=new WeakMap();this.scheduleRebuildFooter_();},get footerRows(){return this.tableFooterRows_;},get userCanModifySortOrder(){return this.userCanModifySortOrder_;},set userCanModifySortOrder(userCanModifySortOrder){const newUserCanModifySortOrder=!!userCanModifySortOrder;if(newUserCanModifySortOrder===this.userCanModifySortOrder_){return;}
6697this.userCanModifySortOrder_=newUserCanModifySortOrder;this.scheduleRebuildHeaders_();},set sortColumnIndex(number){if(number===this.sortColumnIndex_)return;if(number!==undefined){if(this.tableColumns_.length<=number){throw new Error('Column number '+number+' is out of bounds.');}
6698if(!this.tableColumns_[number].cmp){throw new Error('Column '+number+' does not have a comparator.');}}
6699this.sortColumnIndex_=number;this.updateHeaderArrows_();this.scheduleRebuildBody_();this.dispatchSortingChangedEvent_();},get sortColumnIndex(){return this.sortColumnIndex_;},set sortDescending(value){const newValue=!!value;if(newValue!==this.sortDescending_){this.sortDescending_=newValue;this.updateHeaderArrows_();this.scheduleRebuildBody_();this.dispatchSortingChangedEvent_();}},get sortDescending(){return this.sortDescending_;},updateHeaderArrows_(){for(let i=0;i<this.headerCells_.length;i++){const headerCell=this.headerCells_[i];const isColumnCurrentlySorted=i===this.sortColumnIndex_;if(!this.tableColumns_[i].cmp||(!this.userCanModifySortOrder_&&!isColumnCurrentlySorted)){headerCell.sideContent='';continue;}
6700if(!isColumnCurrentlySorted){headerCell.sideContent=UNSORTED_ARROW;headerCell.sideContentDisabled=false;continue;}
6701headerCell.sideContent=this.sortDescending_?DESCENDING_ARROW:ASCENDING_ARROW;headerCell.sideContentDisabled=!this.userCanModifySortOrder_;}},generateHeaderColumns_(){const selectedTableColumnIndex=this.selectedTableColumnIndex;Polymer.dom(this.$.cols).textContent='';for(let i=0;i<this.tableColumns_.length;++i){const colElement=document.createElement('col');if(i===selectedTableColumnIndex){colElement.setAttribute('selected',true);}
6702Polymer.dom(this.$.cols).appendChild(colElement);}
6703this.headerCells_=[];Polymer.dom(this.$.head).textContent='';if(!this.showHeader_)return;const tr=this.appendNewElement_(this.$.head,'tr');for(let i=0;i<this.tableColumns_.length;i++){const td=this.appendNewElement_(tr,'td');const headerCell=document.createElement('tr-ui-b-table-header-cell');headerCell.column=this.tableColumns_[i];if(this.tableColumns_[i].cmp){const isColumnCurrentlySorted=i===this.sortColumnIndex_;if(isColumnCurrentlySorted){headerCell.sideContent=this.sortDescending_?DESCENDING_ARROW:ASCENDING_ARROW;if(!this.userCanModifySortOrder_){headerCell.sideContentDisabled=true;}}
6704if(this.userCanModifySortOrder_){Polymer.dom(td).classList.add('sensitive');if(!isColumnCurrentlySorted){headerCell.sideContent=UNSORTED_ARROW;}
6705headerCell.tapCallback=this.createSortCallback_(i);}}
6706Polymer.dom(td).appendChild(headerCell);this.headerCells_.push(headerCell);}},applySizes_(){if(this.tableRows_.length===0&&!this.showHeader)return;let rowToRemoveSizing;let rowToSize;if(this.showHeader){rowToSize=Polymer.dom(this.$.head).children[0];rowToRemoveSizing=Polymer.dom(this.$.body).children[0];}else{rowToSize=Polymer.dom(this.$.body).children[0];rowToRemoveSizing=Polymer.dom(this.$.head).children[0];}
6707for(let i=0;i<this.tableColumns_.length;i++){if(rowToRemoveSizing&&Polymer.dom(rowToRemoveSizing).children[i]){const tdToRemoveSizing=Polymer.dom(rowToRemoveSizing).children[i];tdToRemoveSizing.style.minWidth='';tdToRemoveSizing.style.width='';}
6708const td=Polymer.dom(rowToSize).children[i];let delta;if(this.columnsWithExpandButtons_.includes(i)){td.style.paddingLeft=this.basicIndentation_+'px';delta=this.basicIndentation_+'px';}else{delta=undefined;}
6709function calc(base,delta){if(delta){return'calc('+base+' - '+delta+')';}
6710return base;}
6711const w=this.tableColumns_[i].width;if(w){if(/\d+px/.test(w)){td.style.minWidth=calc(w,delta);}else if(/\d+%/.test(w)){td.style.width=w;}else{throw new Error('Unrecognized width string: '+w);}}}},createSortCallback_(columnNumber){return function(){if(!this.userCanModifySortOrder_)return;const previousIndex=this.sortColumnIndex;this.sortColumnIndex=columnNumber;if(previousIndex!==columnNumber){this.sortDescending=false;}else{this.sortDescending=!this.sortDescending;}}.bind(this);},generateTableRowNodes_(tableSection,userRows,rowInfoMap,indentation,lastAddedRow,parentRowInfo){if(this.sortColumnIndex_!==undefined&&tableSection===this.$.body){userRows=userRows.slice();userRows.sort(function(rowA,rowB){let c=this.tableColumns_[this.sortColumnIndex_].cmp(rowA,rowB);if(this.sortDescending_){c=-c;}
6712return c;}.bind(this));}
6713for(let i=0;i<userRows.length;i++){const userRow=userRows[i];const rowInfo=this.getOrCreateRowInfoFor_(rowInfoMap,userRow,parentRowInfo);const htmlNode=this.getHTMLNodeForRowInfo_(tableSection,rowInfo,rowInfoMap,indentation);if(lastAddedRow===undefined){Polymer.dom(tableSection).insertBefore(htmlNode,Polymer.dom(tableSection).firstChild);}else{const nextSiblingOfLastAdded=Polymer.dom(lastAddedRow).nextSibling;Polymer.dom(tableSection).insertBefore(htmlNode,nextSiblingOfLastAdded);}
6714lastAddedRow=htmlNode;if(!rowInfo.isExpanded)continue;lastAddedRow=this.generateTableRowNodes_(tableSection,userRow[this.subRowsPropertyName_],rowInfoMap,indentation+1,lastAddedRow,rowInfo);}
6715return lastAddedRow;},getOrCreateRowInfoFor_(rowInfoMap,userRow,parentRowInfo){let rowInfo=undefined;if(rowInfoMap.has(userRow)){rowInfo=rowInfoMap.get(userRow);}else{rowInfo={userRow,htmlNode:undefined,parentRowInfo};rowInfoMap.set(userRow,rowInfo);}
6716rowInfo.isExpanded=this.getExpandedForUserRow_(userRow);return rowInfo;},customizeTableRow_(userRow,trElement){if(!this.customizeTableRowCallback_)return;this.customizeTableRowCallback_(userRow,trElement);},get basicIndentation_(){if(this.computedFontSizePx_===undefined){this.computedFontSizePx_=parseInt(getComputedStyle(this).fontSize)||16;}
6717return this.computedFontSizePx_-2;},getHTMLNodeForRowInfo_(tableSection,rowInfo,rowInfoMap,indentation){if(rowInfo.htmlNode){this.customizeTableRow_(rowInfo.userRow,rowInfo.htmlNode);return rowInfo.htmlNode;}
6718const INDENT_SPACE=indentation*16;const INDENT_SPACE_NO_BUTTON=indentation*16+this.basicIndentation_;const trElement=this.ownerDocument.createElement('tr');rowInfo.htmlNode=trElement;rowInfo.indentation=indentation;trElement.rowInfo=rowInfo;this.customizeTableRow_(rowInfo.userRow,trElement);const isBodyRow=tableSection===this.$.body;const isExpandableRow=rowInfo.userRow[this.subRowsPropertyName_]&&rowInfo.userRow[this.subRowsPropertyName_].length;for(let i=0;i<this.tableColumns_.length;){const td=this.appendNewElement_(trElement,'td');td.columnIndex=i;const column=this.tableColumns_[i];const value=column.value(rowInfo.userRow);const colSpan=column.colSpan?column.colSpan:1;td.style.colSpan=colSpan;switch(column.align){case undefined:case ColumnAlignment.LEFT:break;case ColumnAlignment.RIGHT:td.style.textAlign='right';break;default:throw new Error('Invalid alignment of column at index='+i+': '+column.align);}
6719if(this.doesColumnIndexSupportSelection(i)){Polymer.dom(td).classList.add('supports-selection');}
6720if(this.columnsWithExpandButtons_.includes(i)){if(rowInfo.userRow[this.subRowsPropertyName_]&&rowInfo.userRow[this.subRowsPropertyName_].length>0){td.style.paddingLeft=INDENT_SPACE+'px';td.style.display='flex';const expandButton=this.appendNewElement_(td,'expand-button');Polymer.dom(expandButton).textContent=RIGHT_ARROW;if(rowInfo.isExpanded){Polymer.dom(expandButton).classList.add('button-expanded');}}else{td.style.paddingLeft=INDENT_SPACE_NO_BUTTON+'px';}}
6721if(value!==undefined){Polymer.dom(td).appendChild(tr.ui.b.asHTMLOrTextNode(value,this.ownerDocument));}
6722td.addEventListener('click',function(i,clickEvent){clickEvent.preventDefault();if(!isBodyRow&&!isExpandableRow)return;clickEvent.stopPropagation();if(clickEvent.target.tagName==='EXPAND-BUTTON'){this.setExpandedForUserRow_(tableSection,rowInfoMap,rowInfo.userRow,!rowInfo.isExpanded);return;}
6723if(isBodyRow&&this.selectionMode_!==SelectionMode.NONE){let shouldSelect=false;let shouldFocus=false;switch(this.selectionMode_){case SelectionMode.ROW:shouldSelect=this.selectedTableRowInfo_!==rowInfo;shouldFocus=true;break;case SelectionMode.CELL:if(this.doesColumnIndexSupportSelection(i)){shouldSelect=this.selectedTableRowInfo_!==rowInfo||this.selectedColumnIndex_!==i;shouldFocus=true;}
6724break;default:throw new Error('Invalid selection mode '+
6725this.selectionMode_);}
6726if(shouldFocus){this.focus();}
6727if(shouldSelect){this.didTableRowInfoGetClicked_(rowInfo,i);return;}}
6728if(isExpandableRow){this.setExpandedForUserRow_(tableSection,rowInfoMap,rowInfo.userRow,!rowInfo.isExpanded);}}.bind(this,i));if(isBodyRow){td.addEventListener('dblclick',function(i,e){e.stopPropagation();this.dispatchStepIntoEvent_(rowInfo,i);}.bind(this,i));}
6729i+=colSpan;}
6730return rowInfo.htmlNode;},removeSubNodes_(tableSection,rowInfo,rowInfoMap){if(rowInfo.userRow[this.subRowsPropertyName_]===undefined)return;for(let i=0;i<rowInfo.userRow[this.subRowsPropertyName_].length;i++){const subRow=rowInfo.userRow[this.subRowsPropertyName_][i];const subRowInfo=rowInfoMap.get(subRow);if(!subRowInfo)continue;const subNode=subRowInfo.htmlNode;if(subNode&&Polymer.dom(subNode).parentNode===tableSection){Polymer.dom(tableSection).removeChild(subNode);this.removeSubNodes_(tableSection,subRowInfo,rowInfoMap);}}},scheduleRebuildHeaders_(){this.headerDirty_=true;this.scheduleRebuild_();},scheduleRebuildBody_(){this.bodyDirty_=true;this.scheduleRebuild_();},scheduleRebuildFooter_(){this.footerDirty_=true;this.scheduleRebuild_();},scheduleRebuild_(){if(this.rebuildPending_)return;this.rebuildPending_=true;setTimeout(function(){this.rebuildPending_=false;this.rebuild();}.bind(this),0);},rebuildIfNeeded_(){this.rebuild();},rebuild(){const wasBodyOrHeaderDirty=this.headerDirty_||this.bodyDirty_;if(this.headerDirty_){this.generateHeaderColumns_();this.headerDirty_=false;}
6731if(this.bodyDirty_){Polymer.dom(this.$.body).textContent='';this.generateTableRowNodes_(this.$.body,this.tableRows_,this.tableRowsInfo_,0,undefined,undefined);if(this.tableRows_.length===0&&this.emptyValue_!==undefined){const trElement=this.ownerDocument.createElement('tr');Polymer.dom(this.$.body).appendChild(trElement);Polymer.dom(trElement).classList.add('empty-row');const td=this.ownerDocument.createElement('td');Polymer.dom(trElement).appendChild(td);td.colSpan=this.tableColumns_.length;const emptyValue=this.emptyValue_;Polymer.dom(td).appendChild(tr.ui.b.asHTMLOrTextNode(emptyValue,this.ownerDocument));}
6732this.bodyDirty_=false;}
6733if(wasBodyOrHeaderDirty)this.applySizes_();if(this.footerDirty_){Polymer.dom(this.$.foot).textContent='';this.generateTableRowNodes_(this.$.foot,this.tableFooterRows_,this.tableFooterRowsInfo_,0,undefined,undefined);if(this.tableFooterRowsInfo_.length){Polymer.dom(this.$.body).classList.add('has-footer');}else{Polymer.dom(this.$.body).classList.remove('has-footer');}
6734this.footerDirty_=false;}},appendNewElement_(parent,tagName){const element=parent.ownerDocument.createElement(tagName);Polymer.dom(parent).appendChild(element);return element;},getExpandedForTableRow(userRow){this.rebuildIfNeeded_();const rowInfo=this.tableRowsInfo_.get(userRow);if(rowInfo===undefined){throw new Error('Row has not been seen, must expand its parents');}
6735return rowInfo.isExpanded;},getExpandedForUserRow_(userRow){if(userRow[this.subRowsPropertyName_]===undefined){return false;}
6736if(userRow[this.subRowsPropertyName_].length===0){return false;}
6737if(userRow.isExpanded){return true;}
6738if((userRow.isExpanded!==undefined)&&(userRow.isExpanded===false)){return false;}
6739const rowInfo=this.tableRowsInfo_.get(userRow);if(rowInfo&&rowInfo.isExpanded){return true;}
6740if(this.defaultExpansionStateCallback_===undefined){return false;}
6741let parentUserRow=undefined;if(rowInfo&&rowInfo.parentRowInfo){parentUserRow=rowInfo.parentRowInfo.userRow;}
6742return this.defaultExpansionStateCallback_(userRow,parentUserRow);},setExpandedForTableRow(userRow,expanded){this.rebuildIfNeeded_();const rowInfo=this.tableRowsInfo_.get(userRow);if(rowInfo===undefined){throw new Error('Row has not been seen, must expand its parents');}
6743return this.setExpandedForUserRow_(this.$.body,this.tableRowsInfo_,userRow,expanded);},setExpandedForUserRow_(tableSection,rowInfoMap,userRow,expanded){this.rebuildIfNeeded_();const rowInfo=rowInfoMap.get(userRow);if(rowInfo===undefined){throw new Error('Row has not been seen, must expand its parents');}
6744const wasExpanded=rowInfo.isExpanded;rowInfo.isExpanded=!!expanded;if(rowInfo.htmlNode===undefined)return;if(rowInfo.htmlNode.parentElement!==tableSection){return;}
6745const expandButton=Polymer.dom(rowInfo.htmlNode).querySelector('expand-button');if(rowInfo.isExpanded){Polymer.dom(expandButton).classList.add('button-expanded');const lastAddedRow=rowInfo.htmlNode;if(rowInfo.userRow[this.subRowsPropertyName_]){this.generateTableRowNodes_(tableSection,rowInfo.userRow[this.subRowsPropertyName_],rowInfoMap,rowInfo.indentation+1,lastAddedRow,rowInfo);}}else{Polymer.dom(expandButton).classList.remove('button-expanded');this.removeSubNodes_(tableSection,rowInfo,rowInfoMap);}
6746if(wasExpanded!==rowInfo.isExpanded){const e=new tr.b.Event('row-expanded-changed');e.row=rowInfo.userRow;this.dispatchEvent(e);}
6747this.maybeUpdateSelectedRow_();},get selectionMode(){return this.selectionMode_;},set selectionMode(selectionMode){if(!SelectionModeValues.has(selectionMode)){throw new Error('Invalid selection mode '+selectionMode);}
6748this.rebuildIfNeeded_();this.selectionMode_=selectionMode;this.didSelectionStateChange_();},get rowHighlightStyle(){return this.rowHighlightStyle_;},set rowHighlightStyle(rowHighlightStyle){if(!HighlightStyleValues.has(rowHighlightStyle)){throw new Error('Invalid row highlight style '+rowHighlightStyle);}
6749this.rebuildIfNeeded_();this.rowHighlightStyle_=rowHighlightStyle;this.didSelectionStateChange_();},get resolvedRowHighlightStyle(){if(this.rowHighlightStyle_!==HighlightStyle.DEFAULT){return this.rowHighlightStyle_;}
6750switch(this.selectionMode_){case SelectionMode.NONE:return HighlightStyle.NONE;case SelectionMode.ROW:return HighlightStyle.DARK;case SelectionMode.CELL:return HighlightStyle.LIGHT;default:throw new Error('Invalid selection mode '+selectionMode);}},get cellHighlightStyle(){return this.cellHighlightStyle_;},set cellHighlightStyle(cellHighlightStyle){if(!HighlightStyleValues.has(cellHighlightStyle)){throw new Error('Invalid cell highlight style '+cellHighlightStyle);}
6751this.rebuildIfNeeded_();this.cellHighlightStyle_=cellHighlightStyle;this.didSelectionStateChange_();},get resolvedCellHighlightStyle(){if(this.cellHighlightStyle_!==HighlightStyle.DEFAULT){return this.cellHighlightStyle_;}
6752switch(this.selectionMode_){case SelectionMode.NONE:case SelectionMode.ROW:return HighlightStyle.NONE;case SelectionMode.CELL:return HighlightStyle.DARK;default:throw new Error('Invalid selection mode '+selectionMode);}},setHighlightStyle_(highlightAttribute,resolvedHighlightStyle){switch(resolvedHighlightStyle){case HighlightStyle.NONE:Polymer.dom(this.$.body).removeAttribute(highlightAttribute);break;case HighlightStyle.LIGHT:Polymer.dom(this.$.body).setAttribute(highlightAttribute,'light');break;case HighlightStyle.DARK:Polymer.dom(this.$.body).setAttribute(highlightAttribute,'dark');break;default:throw new Error('Invalid resolved highlight style '+
6753resolvedHighlightStyle);}},didSelectionStateChange_(){this.setHighlightStyle_('row-highlight-style',this.resolvedRowHighlightStyle);this.setHighlightStyle_('cell-highlight-style',this.resolvedCellHighlightStyle);this.removeSelectedState_();switch(this.selectionMode_){case SelectionMode.ROW:Polymer.dom(this.$.body).setAttribute('selection-mode','row');Polymer.dom(this.$.body).setAttribute('tabindex',0);this.selectedColumnIndex_=undefined;break;case SelectionMode.CELL:Polymer.dom(this.$.body).setAttribute('selection-mode','cell');Polymer.dom(this.$.body).setAttribute('tabindex',0);if(this.selectedTableRowInfo_&&this.selectedColumnIndex_===undefined){const i=this.getFirstSelectableColumnIndex_();if(i===-1){this.selectedTableRowInfo_=undefined;}else{this.selectedColumnIndex_=i;}}
6754break;case SelectionMode.NONE:Polymer.dom(this.$.body).removeAttribute('selection-mode');Polymer.dom(this.$.body).removeAttribute('tabindex');this.$.body.blur();this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;break;default:throw new Error('Invalid selection mode '+this.selectionMode_);}
6755this.maybeUpdateSelectedRow_();},maybeUpdateSelectedRow_(){if(this.selectedTableRowInfo_===undefined)return;function isVisible(rowInfo){if(!rowInfo.htmlNode)return false;return!!rowInfo.htmlNode.parentElement;}
6756if(isVisible(this.selectedTableRowInfo_)){this.updateSelectedState_();return;}
6757this.removeSelectedState_();let curRowInfo=this.selectedTableRowInfo_;while(curRowInfo&&!isVisible(curRowInfo)){curRowInfo=curRowInfo.parentRowInfo;}
6758this.selectedTableRowInfo_=curRowInfo;if(this.selectedTableRowInfo_){this.updateSelectedState_();}else{this.selectedColumnIndex_=undefined;}},didTableRowInfoGetClicked_(rowInfo,columnIndex){switch(this.selectionMode_){case SelectionMode.NONE:return;case SelectionMode.CELL:if(!this.doesColumnIndexSupportSelection(columnIndex)){return;}
6759if(this.selectedColumnIndex!==columnIndex){this.selectedColumnIndex=columnIndex;}
6760case SelectionMode.ROW:if(this.selectedTableRowInfo_!==rowInfo){this.selectedTableRow=rowInfo.userRow;}}},dispatchStepIntoEvent_(rowInfo,columnIndex){const e=new tr.b.Event('step-into');e.tableRow=rowInfo.userRow;e.tableColumn=this.tableColumns_[columnIndex];e.columnIndex=columnIndex;this.dispatchEvent(e);},get selectedCell(){const row=this.selectedTableRow;const columnIndex=this.selectedColumnIndex;if(row===undefined||columnIndex===undefined||this.tableColumns_.length<=columnIndex){return undefined;}
6761const column=this.tableColumns_[columnIndex];return{row,column,value:column.value(row)};},get selectedTableColumnIndex(){const cols=Polymer.dom(this.$.cols).children;for(let i=0;i<cols.length;++i){if(cols[i].getAttribute('selected')){return i;}}
6762return undefined;},set selectedTableColumnIndex(selectedIndex){const cols=Polymer.dom(this.$.cols).children;for(let i=0;i<cols.length;++i){if(i===selectedIndex){cols[i].setAttribute('selected',true);}else{cols[i].removeAttribute('selected');}}},get selectedTableRow(){if(!this.selectedTableRowInfo_)return undefined;return this.selectedTableRowInfo_.userRow;},set selectedTableRow(userRow){this.rebuildIfNeeded_();if(this.selectionMode_===SelectionMode.NONE){throw new Error('Selection is off.');}
6763let rowInfo;if(userRow===undefined){rowInfo=undefined;}else{rowInfo=this.tableRowsInfo_.get(userRow);if(!rowInfo){throw new Error('Row has not been seen, must expand its parents.');}}
6764const e=this.prepareToChangeSelection_();if(!rowInfo){this.selectedColumnIndex_=undefined;}else{switch(this.selectionMode_){case SelectionMode.ROW:this.selectedColumnIndex_=undefined;break;case SelectionMode.CELL:if(this.selectedColumnIndex_===undefined){const i=this.getFirstSelectableColumnIndex_();if(i===-1){throw new Error('Cannot find a selectable column.');}
6765this.selectedColumnIndex_=i;}
6766break;default:throw new Error('Invalid selection mode '+this.selectionMode_);}}
6767this.selectedTableRowInfo_=rowInfo;this.updateSelectedState_();this.dispatchEvent(e);},prepareToChangeSelection_(){const e=new tr.b.Event('selection-changed');const previousSelectedRowInfo=this.selectedTableRowInfo_;if(previousSelectedRowInfo){e.previousSelectedTableRow=previousSelectedRowInfo.userRow;}else{e.previousSelectedTableRow=undefined;}
6768this.removeSelectedState_();return e;},removeSelectedState_(){this.setSelectedState_(false);},updateSelectedState_(){this.setSelectedState_(true);},setSelectedState_(select){if(this.selectedTableRowInfo_===undefined)return;const rowNode=this.selectedTableRowInfo_.htmlNode;if(select){Polymer.dom(rowNode).setAttribute('selected',true);}else{Polymer.dom(rowNode).removeAttribute('selected');}
6769const cellNode=Polymer.dom(rowNode).children[this.selectedColumnIndex_];if(!cellNode)return;if(select){Polymer.dom(cellNode).setAttribute('selected',true);}else{Polymer.dom(cellNode).removeAttribute('selected');}},doesColumnIndexSupportSelection(columnIndex){const columnInfo=this.tableColumns_[columnIndex];const scs=columnInfo.supportsCellSelection;if(scs===false)return false;return true;},getFirstSelectableColumnIndex_(){for(let i=0;i<this.tableColumns_.length;i++){if(this.doesColumnIndexSupportSelection(i)){return i;}}
6770return-1;},getSelectableNodeGivenTableRowNode_(htmlNode){switch(this.selectionMode_){case SelectionMode.ROW:return htmlNode;case SelectionMode.CELL:return Polymer.dom(htmlNode).children[this.selectedColumnIndex_];default:throw new Error('Invalid selection mode '+this.selectionMode_);}},get selectedColumnIndex(){if(this.selectionMode_!==SelectionMode.CELL){return undefined;}
6771return this.selectedColumnIndex_;},set selectedColumnIndex(selectedColumnIndex){this.rebuildIfNeeded_();if(this.selectionMode_===SelectionMode.NONE){throw new Error('Selection is off.');}
6772if(selectedColumnIndex<0||selectedColumnIndex>=this.tableColumns_.length){throw new Error('Invalid index');}
6773if(!this.doesColumnIndexSupportSelection(selectedColumnIndex)){throw new Error('Selection is not supported on this column');}
6774const e=this.prepareToChangeSelection_();if(this.selectedColumnIndex_===undefined){this.selectedTableRowInfo_=undefined;}else if(!this.selectedTableRowInfo_){if(this.tableRows_.length===0){throw new Error('No available row to be selected');}
6775this.selectedTableRowInfo_=this.tableRowsInfo_.get(this.tableRows_[0]);}
6776this.selectedColumnIndex_=selectedColumnIndex;this.updateSelectedState_();this.dispatchEvent(e);},onKeyDown_(e){if(this.selectionMode_===SelectionMode.NONE)return;const CODE_TO_COMMAND_NAMES={13:'ENTER',32:'SPACE',37:'ARROW_LEFT',38:'ARROW_UP',39:'ARROW_RIGHT',40:'ARROW_DOWN'};const cmdName=CODE_TO_COMMAND_NAMES[e.keyCode];if(cmdName===undefined)return;e.stopPropagation();e.preventDefault();this.performKeyCommand_(cmdName);},onFocus_(e){if(this.selectionMode_===SelectionMode.NONE||this.selectedTableRow||this.tableRows_.length===0){return;}
6777if(this.selectionMode_===SelectionMode.CELL&&this.getFirstSelectableColumnIndex_()===-1){return;}
6778this.selectedTableRow=this.tableRows_[0];},focus(){this.$.body.focus();this.onFocus_();},blur(){this.$.body.blur();},get isFocused(){return this.root.activeElement===this.$.body;},performKeyCommand_(cmdName){this.rebuildIfNeeded_();switch(cmdName){case'ARROW_UP':this.selectPreviousOrFirstRowIfPossible_();return;case'ARROW_DOWN':this.selectNextOrFirstRowIfPossible_();return;case'ARROW_RIGHT':switch(this.selectionMode_){case SelectionMode.NONE:return;case SelectionMode.ROW:this.expandRowAndSelectChildRowIfPossible_();return;case SelectionMode.CELL:this.selectNextSelectableCellToTheRightIfPossible_();return;default:throw new Error('Invalid selection mode '+this.selectionMode_);}
6779case'ARROW_LEFT':switch(this.selectionMode_){case SelectionMode.NONE:return;case SelectionMode.ROW:this.collapseRowOrSelectParentRowIfPossible_();return;case SelectionMode.CELL:this.selectNextSelectableCellToTheLeftIfPossible_();return;default:throw new Error('Invalid selection mode '+this.selectionMode_);}
6780case'SPACE':this.toggleRowExpansionStateIfPossible_();return;case'ENTER':this.stepIntoSelectionIfPossible_();return;default:throw new Error('Unrecognized command '+cmdName);}},selectPreviousOrFirstRowIfPossible_(){const prev=this.selectedTableRowInfo_?this.selectedTableRowInfo_.htmlNode.previousElementSibling:this.$.body.firstChild;if(!prev)return;if(this.selectionMode_===SelectionMode.CELL&&this.getFirstSelectableColumnIndex_()===-1){return;}
6781tr.ui.b.scrollIntoViewIfNeeded(prev);this.selectedTableRow=prev.rowInfo.userRow;},selectNextOrFirstRowIfPossible_(){this.getFirstSelectableColumnIndex_;const next=this.selectedTableRowInfo_?this.selectedTableRowInfo_.htmlNode.nextElementSibling:this.$.body.firstChild;if(!next)return;if(this.selectionMode_===SelectionMode.CELL&&this.getFirstSelectableColumnIndex_()===-1){return;}
6782tr.ui.b.scrollIntoViewIfNeeded(next);this.selectedTableRow=next.rowInfo.userRow;},expandRowAndSelectChildRowIfPossible_(){const selectedRowInfo=this.selectedTableRowInfo_;if(!selectedRowInfo||selectedRowInfo.userRow[this.subRowsPropertyName_]===undefined||selectedRowInfo.userRow[this.subRowsPropertyName_].length===0){return;}
6783if(!selectedRowInfo.isExpanded){this.setExpandedForTableRow(selectedRowInfo.userRow,true);}
6784this.selectedTableRow=selectedRowInfo.htmlNode.nextElementSibling.rowInfo.userRow;},collapseRowOrSelectParentRowIfPossible_(){const selectedRowInfo=this.selectedTableRowInfo_;if(!selectedRowInfo)return;if(selectedRowInfo.isExpanded){this.setExpandedForTableRow(selectedRowInfo.userRow,false);}else{const parentRowInfo=selectedRowInfo.parentRowInfo;if(parentRowInfo){this.selectedTableRow=parentRowInfo.userRow;}}},selectNextSelectableCellToTheRightIfPossible_(){if(!this.selectedTableRowInfo_||this.selectedColumnIndex_===undefined){return;}
6785for(let i=this.selectedColumnIndex_+1;i<this.tableColumns_.length;i++){if(this.doesColumnIndexSupportSelection(i)){this.selectedColumnIndex=i;return;}}},selectNextSelectableCellToTheLeftIfPossible_(){if(!this.selectedTableRowInfo_||this.selectedColumnIndex_===undefined){return;}
6786for(let i=this.selectedColumnIndex_-1;i>=0;i--){if(this.doesColumnIndexSupportSelection(i)){this.selectedColumnIndex=i;return;}}},toggleRowExpansionStateIfPossible_(){const selectedRowInfo=this.selectedTableRowInfo_;if(!selectedRowInfo||selectedRowInfo.userRow[this.subRowsPropertyName_]===undefined||selectedRowInfo.userRow[this.subRowsPropertyName_].length===0){return;}
6787this.setExpandedForTableRow(selectedRowInfo.userRow,!selectedRowInfo.isExpanded);},stepIntoSelectionIfPossible_(){if(!this.selectedTableRowInfo_)return;this.dispatchStepIntoEvent_(this.selectedTableRowInfo_,this.selectedColumnIndex_);},dispatchSortingChangedEvent_(){const e=new tr.b.Event('sort-column-changed');e.sortColumnIndex=this.sortColumnIndex_;e.sortDescending=this.sortDescending_;this.dispatchEvent(e);}});})();'use strict';const ColumnAlignment=tr.ui.b.TableFormat.ColumnAlignment;Polymer({is:'tr-ui-b-table-header-cell',created(){this.tapCallback_=undefined;this.cellTitle_='';this.align_=undefined;this.selectable_=false;this.column_=undefined;},ready(){this.addEventListener('click',this.onTap_.bind(this));},set column(column){this.column_=column;this.align=column.align;this.cellTitle=column.title;},get column(){return this.column_;},set cellTitle(value){this.cellTitle_=value;const titleNode=tr.ui.b.asHTMLOrTextNode(this.cellTitle_,this.ownerDocument);this.$.title.innerText='';Polymer.dom(this.$.title).appendChild(titleNode);},get cellTitle(){return this.cellTitle_;},set align(align){switch(align){case undefined:case ColumnAlignment.LEFT:this.style.justifyContent='';break;case ColumnAlignment.RIGHT:this.style.justifyContent='flex-end';break;default:throw new Error('Invalid alignment of column (title=\''+
6788this.cellTitle_+'\'): '+align);}
6789this.align_=align;},get align(){return this.align_;},clearSideContent(){Polymer.dom(this.$.side).textContent='';},set sideContent(content){Polymer.dom(this.$.side).textContent=content;this.$.side.style.display=content?'inline':'none';},get sideContent(){return Polymer.dom(this.$.side).textContent;},set sideContentDisabled(sideContentDisabled){this.$.side.classList.toggle('disabled',sideContentDisabled);},get sideContentDisabled(){return this.$.side.classList.contains('disabled');},set tapCallback(callback){this.style.cursor='pointer';this.tapCallback_=callback;},get tapCallback(){return this.tapCallback_;},onTap_(){if(this.tapCallback_){this.tapCallback_();}}});'use strict';tr.exportTo('tr.b.math',function(){class RunningStatistics{constructor(){this.mean_=0;this.count_=0;this.max_=-Infinity;this.min_=Infinity;this.sum_=0;this.variance_=0;this.meanlogs_=0;}
6790get count(){return this.count_;}
6791get geometricMean(){if(this.meanlogs_===undefined)return 0;return Math.exp(this.meanlogs_);}
6792get mean(){if(this.count_===0)return undefined;return this.mean_;}
6793get max(){return this.max_;}
6794get min(){return this.min_;}
6795get sum(){return this.sum_;}
6796get variance(){if(this.count_===0)return undefined;if(this.count_===1)return 0;return this.variance_/(this.count_-1);}
6797get stddev(){if(this.count_===0)return undefined;return Math.sqrt(this.variance);}
6798add(x){this.count_++;this.max_=Math.max(this.max_,x);this.min_=Math.min(this.min_,x);this.sum_+=x;if(x<=0){this.meanlogs_=undefined;}else if(this.meanlogs_!==undefined){this.meanlogs_+=(Math.log(Math.abs(x))-this.meanlogs_)/this.count;}
6799if(this.count_===1){this.mean_=x;this.variance_=0;}else{const oldMean=this.mean_;const oldVariance=this.variance_;if(oldMean===Infinity||oldMean===-Infinity){this.mean_=this.sum_/this.count_;}else{this.mean_=oldMean+(x-oldMean)/this.count_;}
6800this.variance_=oldVariance+(x-oldMean)*(x-this.mean_);}}
6801merge(other){const result=new RunningStatistics();result.count_=this.count_+other.count_;result.sum_=this.sum_+other.sum_;result.min_=Math.min(this.min_,other.min_);result.max_=Math.max(this.max_,other.max_);if(result.count===0){result.mean_=0;result.variance_=0;result.meanlogs_=0;}else{result.mean_=result.sum/result.count;const deltaMean=(this.mean||0)-(other.mean||0);result.variance_=this.variance_+other.variance_+
6802(this.count*other.count*deltaMean*deltaMean/result.count);if(this.meanlogs_===undefined||other.meanlogs_===undefined){result.meanlogs_=undefined;}else{result.meanlogs_=(this.count*this.meanlogs_+
6803other.count*other.meanlogs_)/result.count;}}
6804return result;}
6805asDict(){if(!this.count){return[];}
6806return[this.count_,this.max_,this.meanlogs_,this.mean_,this.min_,this.sum_,this.variance_,];}
6807static fromDict(dict){const result=new RunningStatistics();if(dict.length!==7){return result;}
6808[result.count_,result.max_,result.meanlogs_,result.mean_,result.min_,result.sum_,result.variance_,]=dict;return result;}}
6809return{RunningStatistics,};});'use strict';tr.exportTo('tr.v.d',function(){class Diagnostic{constructor(){this.guid_=undefined;}
6810clone(){return new this.constructor();}
6811canAddDiagnostic(otherDiagnostic){return false;}
6812addDiagnostic(otherDiagnostic){throw new Error('Abstract virtual method: subclasses must override '+'this method if they override canAddDiagnostic');}
6813get guid(){if(this.guid_===undefined){this.guid_=tr.b.GUID.allocateUUID4();}
6814return this.guid_;}
6815set guid(guid){if(this.guid_!==undefined){throw new Error('Cannot reset guid');}
6816this.guid_=guid;}
6817get hasGuid(){return this.guid_!==undefined;}
6818asDictOrReference(){if(this.guid_!==undefined){return this.guid_;}
6819return this.asDict();}
6820asDict(){const result={type:this.constructor.name};if(this.guid_!==undefined){result.guid=this.guid_;}
6821this.asDictInto_(result);return result;}
6822asDictInto_(d){throw new Error('Abstract virtual method: subclasses must override '+'this method if they override canAddDiagnostic');}
6823static fromDict(d){const typeInfo=Diagnostic.findTypeInfoWithName(d.type);if(!typeInfo){throw new Error('Unrecognized diagnostic type: '+d.type);}
6824const diagnostic=typeInfo.constructor.fromDict(d);if(d.guid!==undefined)diagnostic.guid=d.guid;return diagnostic;}}
6825const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};options.mandatoryBaseClass=Diagnostic;tr.b.decorateExtensionRegistry(Diagnostic,options);Diagnostic.addEventListener('will-register',function(e){const constructor=e.typeInfo.constructor;if(!(constructor.fromDict instanceof Function)||(constructor.fromDict===Diagnostic.fromDict)||(constructor.fromDict.length!==1)){throw new Error('Diagnostics must define fromDict(d)');}});return{Diagnostic,};});'use strict';tr.exportTo('tr.v.d',function(){class Breakdown extends tr.v.d.Diagnostic{constructor(){super();this.values_=new Map();this.colorScheme=undefined;}
6826clone(){const clone=new Breakdown();clone.colorScheme=this.colorScheme;clone.addDiagnostic(this);return clone;}
6827canAddDiagnostic(otherDiagnostic){return((otherDiagnostic instanceof Breakdown)&&(otherDiagnostic.colorScheme===this.colorScheme));}
6828addDiagnostic(otherDiagnostic){for(const[name,value]of otherDiagnostic){this.set(name,this.get(name)+value);}
6829return this;}
6830set(name,value){if(typeof name!=='string'||typeof value!=='number'){throw new Error('Breakdown maps from strings to numbers');}
6831this.values_.set(name,value);}
6832get(name){return this.values_.get(name)||0;}*[Symbol.iterator](){for(const pair of this.values_){yield pair;}}
6833get size(){return this.values_.size;}
6834asDictInto_(d){d.values={};for(const[name,value]of this){d.values[name]=tr.b.numberToJson(value);}
6835if(this.colorScheme){d.colorScheme=this.colorScheme;}}
6836static fromEntries(entries){const breakdown=new Breakdown();for(const[name,value]of entries){breakdown.set(name,value);}
6837return breakdown;}
6838static fromDict(d){const breakdown=new Breakdown();for(const[name,value]of Object.entries(d.values)){breakdown.set(name,tr.b.numberFromJson(value));}
6839if(d.colorScheme){breakdown.colorScheme=d.colorScheme;}
6840return breakdown;}}
6841tr.v.d.Diagnostic.register(Breakdown,{elementName:'tr-v-ui-breakdown-span'});return{Breakdown,};});'use strict';tr.exportTo('tr.v.d',function(){class CollectedRelatedEventSet extends tr.v.d.Diagnostic{constructor(){super();this.eventSetsByCanonicalUrl_=new Map();}
6842asDictInto_(d){d.events={};for(const[canonicalUrl,eventSet]of this){d.events[canonicalUrl]=[];for(const event of eventSet){d.events[canonicalUrl].push({stableId:event.stableId,title:event.title,start:event.start,duration:event.duration});}}}
6843static fromDict(d){const result=new CollectedRelatedEventSet();for(const[canonicalUrl,events]of Object.entries(d.events)){result.eventSetsByCanonicalUrl_.set(canonicalUrl,events.map(e=>new tr.v.d.EventRef(e)));}
6844return result;}
6845get size(){return this.eventSetsByCanonicalUrl_.size;}
6846get(canonicalUrl){return this.eventSetsByCanonicalUrl_.get(canonicalUrl);}*[Symbol.iterator](){for(const[canonicalUrl,eventSet]of this.eventSetsByCanonicalUrl_){yield[canonicalUrl,eventSet];}}
6847canAddDiagnostic(otherDiagnostic){return otherDiagnostic instanceof tr.v.d.RelatedEventSet||otherDiagnostic instanceof tr.v.d.CollectedRelatedEventSet;}
6848addEventSetForCanonicalUrl(canonicalUrl,events){let myEventSet=this.eventSetsByCanonicalUrl_.get(canonicalUrl);if(myEventSet===undefined){myEventSet=new Set();this.eventSetsByCanonicalUrl_.set(canonicalUrl,myEventSet);}
6849for(const event of events){myEventSet.add(event);}}
6850addDiagnostic(otherDiagnostic){if(otherDiagnostic instanceof tr.v.d.CollectedRelatedEventSet){for(const[canonicalUrl,otherEventSet]of otherDiagnostic){this.addEventSetForCanonicalUrl(canonicalUrl,otherEventSet);}
6851return;}
6852if(!otherDiagnostic.canonicalUrl)return;this.addEventSetForCanonicalUrl(otherDiagnostic.canonicalUrl,otherDiagnostic);}}
6853tr.v.d.Diagnostic.register(CollectedRelatedEventSet,{elementName:'tr-v-ui-collected-related-event-set-span'});return{CollectedRelatedEventSet,};});'use strict';tr.exportTo('tr.v.d',function(){class DateRange extends tr.v.d.Diagnostic{constructor(ms){super();this.range_=new tr.b.math.Range();this.range_.addValue(ms);}
6854get minDate(){return new Date(this.range_.min);}
6855get maxDate(){return new Date(this.range_.max);}
6856get durationMs(){return this.range_.duration;}
6857clone(){const clone=new tr.v.d.DateRange(this.range_.min);clone.addDiagnostic(this);return clone;}
6858equals(other){if(!(other instanceof DateRange))return false;return this.range_.equals(other.range_);}
6859canAddDiagnostic(otherDiagnostic){return otherDiagnostic instanceof DateRange;}
6860addDiagnostic(other){this.range_.addRange(other.range_);}
6861toString(){const minDate=tr.b.formatDate(this.minDate);if(this.durationMs===0)return minDate;const maxDate=tr.b.formatDate(this.maxDate);return`${minDate} - ${maxDate}`;}
6862asDictInto_(d){d.min=this.range_.min;if(this.durationMs===0)return;d.max=this.range_.max;}
6863static fromDict(d){const dateRange=new DateRange(d.min);if(d.max!==undefined)dateRange.range_.addValue(d.max);return dateRange;}}
6864tr.v.d.Diagnostic.register(DateRange,{elementName:'tr-v-ui-date-range-span'});return{DateRange,};});'use strict';tr.exportTo('tr.v.d',function(){class DiagnosticRef{constructor(guid){this.guid=guid;}
6865asDict(){return this.guid;}
6866asDictOrReference(){return this.asDict();}}
6867return{DiagnosticRef,};});'use strict';tr.exportTo('tr.v.d',function(){function stableStringify(obj){let replacer;if(!(obj instanceof Array))replacer=Object.keys(obj).sort();return JSON.stringify(obj,replacer);}
6868class GenericSet extends tr.v.d.Diagnostic{constructor(values){super();this.values_=new Set(values);}
6869get size(){return this.values_.size;}
6870get length(){return this.values_.size;}*[Symbol.iterator](){for(const value of this.values_){yield value;}}
6871has(value){if(typeof value!=='object')return this.values_.has(value);const json=JSON.stringify(value);for(const x of this){if(typeof x!=='object')continue;if(json===JSON.stringify(x))return true;}
6872return false;}
6873equals(other){if(!(other instanceof GenericSet))return false;if(this.size!==other.size)return false;for(const value of this){if(!other.has(value))return false;}
6874return true;}
6875asDictInto_(d){d.values=Array.from(this);}
6876static fromDict(d){return new GenericSet(d.values);}
6877clone(){return new GenericSet(this.values_);}
6878canAddDiagnostic(otherDiagnostic){return otherDiagnostic instanceof GenericSet;}
6879addDiagnostic(otherDiagnostic){const jsons=new Set();for(const value of this){if(typeof value!=='object')continue;jsons.add(stableStringify(value));}
6880for(const value of otherDiagnostic){if(typeof value==='object'&&jsons.has(stableStringify(value))){continue;}
6881this.values_.add(value);}}}
6882tr.v.d.Diagnostic.register(GenericSet,{elementName:'tr-v-ui-generic-set-span'});return{GenericSet,};});'use strict';tr.exportTo('tr.v.d',function(){class GroupingPath extends tr.v.d.Diagnostic{constructor(groupingPath){super();this.groupingPath_=groupingPath;}
6883clone(){return new GroupingPath(Array.from(this.groupingPath_));}
6884addToHistogram(hist){hist.diagnostics.set(tr.v.d.RESERVED_NAMES.GROUPING_PATH,this);}
6885static getFromHistogram(hist){return hist.diagnostics.get(tr.v.d.RESERVED_NAMES.GROUPING_PATH);}
6886equals(other){return 0===tr.b.compareArrays(this.groupingPath_,other.groupingPath_,(x,y)=>x.localeCompare(y));}
6887asDictInto_(d){d.groupingPath=this.groupingPath_;}
6888static fromDict(d){return new GroupingPath(d.groupingPath);}}
6889tr.v.d.Diagnostic.register(GroupingPath);return{GroupingPath,};});'use strict';tr.exportTo('tr.v.d',function(){class EventRef{constructor(event){this.stableId=event.stableId;this.title=event.title;this.start=event.start;this.duration=event.duration;this.end=this.start+this.duration;this.guid=tr.b.GUID.allocateSimple();}}
6890return{EventRef,};});'use strict';tr.exportTo('tr.v.d',function(){class RelatedEventSet extends tr.v.d.Diagnostic{constructor(opt_events){super();this.eventsByStableId_=new Map();this.canonicalUrl_=undefined;if(opt_events){if(opt_events instanceof tr.model.EventSet||opt_events instanceof Array){for(const event of opt_events){this.add(event);}}else{this.add(opt_events);}}}
6891clone(){const clone=new tr.v.d.CollectedRelatedEventSet();clone.addDiagnostic(this);return clone;}
6892add(event){this.eventsByStableId_.set(event.stableId,event);}
6893has(event){return this.eventsByStableId_.has(event.stableId);}
6894get length(){return this.eventsByStableId_.size;}*[Symbol.iterator](){for(const event of this.eventsByStableId_.values()){yield event;}}
6895get canonicalUrl(){return this.canonicalUrl_;}
6896resolve(model,opt_required){for(const[stableId,value]of this.eventsByStableId_){if(!(value instanceof tr.v.d.EventRef))continue;const event=model.getEventByStableId(stableId);if(event instanceof tr.model.Event){this.eventsByStableId_.set(stableId,event);}else if(opt_required){throw new Error('Unable to find Event '+stableId);}}}
6897asDictInto_(d){d.events=[];for(const event of this){d.events.push({stableId:event.stableId,title:event.title,start:event.start,duration:event.duration});}}
6898static fromDict(d){return new RelatedEventSet(d.events.map(event=>new tr.v.d.EventRef(event)));}}
6899tr.v.d.Diagnostic.register(RelatedEventSet,{elementName:'tr-v-ui-related-event-set-span'});return{RelatedEventSet,};});'use strict';tr.exportTo('tr.v.d',function(){function HistogramRef(guid){this.guid=guid;}
6900return{HistogramRef};});'use strict';tr.exportTo('tr.v.d',function(){class RelatedHistogramMap extends tr.v.d.Diagnostic{constructor(){super();this.histogramsByName_=new Map();}
6901canAddDiagnostic(otherDiagnostic){return otherDiagnostic instanceof RelatedHistogramMap;}
6902addDiagnostic(otherDiagnostic){}
6903mergeRelationships(otherDiagnostic,parentHist,otherParentHist){const parentGroupingPath=tr.v.d.GroupingPath.getFromHistogram(parentHist);for(const[name,otherRelatedHist]of otherDiagnostic){const mergedTo=otherRelatedHist.diagnostics.get(tr.v.d.RESERVED_NAMES.MERGED_TO);if(mergedTo===undefined)continue;for(const relatedHist of mergedTo.histogramsByName_.values()){const relatedGroupingPath=tr.v.d.GroupingPath.getFromHistogram(relatedHist);if(relatedGroupingPath===undefined)continue;if(!parentGroupingPath.equals(relatedGroupingPath))continue;this.set(name,relatedHist);}}}
6904get(name){return this.histogramsByName_.get(name);}
6905set(name,hist){if(!(hist instanceof tr.v.Histogram)&&!(hist instanceof tr.v.d.HistogramRef)){throw new Error('Must be instanceof Histogram or HistogramRef: '+
6906hist);}
6907this.histogramsByName_.set(name,hist);}
6908add(hist){this.set(hist.name,hist);}
6909get length(){return this.histogramsByName_.size;}*[Symbol.iterator](){for(const pair of this.histogramsByName_){yield pair;}}
6910resolve(histograms,opt_required){for(const[name,value]of this){if(!(value instanceof tr.v.d.HistogramRef))continue;const guid=value.guid;const hist=histograms.lookupHistogram(guid);if(hist instanceof tr.v.Histogram){this.histogramsByName_.set(name,hist);}else if(opt_required){throw new Error('Unable to find Histogram '+guid);}}}
6911asDictInto_(d){d.values={};for(const[name,hist]of this){d.values[name]=hist.guid;}}
6912static fromDict(d){const map=new RelatedHistogramMap();for(const[name,guid]of Object.entries(d.values)){map.set(name,new tr.v.d.HistogramRef(guid));}
6913return map;}}
6914tr.v.d.Diagnostic.register(RelatedHistogramMap,{elementName:'tr-v-ui-related-histogram-map-span'});return{RelatedHistogramMap,};});'use strict';tr.exportTo('tr.v.d',function(){const COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER='ChromeUserFriendlyCategory';class RelatedHistogramBreakdown extends tr.v.d.RelatedHistogramMap{constructor(){super();this.colorScheme=undefined;}
6915clone(){const clone=new RelatedHistogramBreakdown();clone.colorScheme=this.colorScheme;return clone;}
6916canAddDiagnostic(otherDiagnostic){return otherDiagnostic instanceof RelatedHistogramBreakdown&&otherDiagnostic.colorScheme===this.colorScheme;}
6917set(name,hist){if(!(hist instanceof tr.v.d.HistogramRef)){if(!(hist instanceof tr.v.Histogram)){throw new Error('RelatedHistogramBreakdown can only contain Histograms');}
6918if((this.length>0)&&(hist.unit!==tr.b.getFirstElement(this)[1].unit)){throw new Error('Units mismatch',tr.b.getFirstElement(this)[1].unit,hist.unit);}}
6919tr.v.d.RelatedHistogramMap.prototype.set.call(this,name,hist);}
6920asDictInto_(d){tr.v.d.RelatedHistogramMap.prototype.asDictInto_.call(this,d);if(this.colorScheme)d.colorScheme=this.colorScheme;}
6921static fromDict(d){const diagnostic=new RelatedHistogramBreakdown();for(const[name,guid]of Object.entries(d.values)){diagnostic.set(name,new tr.v.d.HistogramRef(guid));}
6922if(d.colorScheme)diagnostic.colorScheme=d.colorScheme;return diagnostic;}
6923static buildFromEvents(histograms,namePrefix,events,categoryForEvent,unit,opt_sampleForEvent,opt_binBoundaries,opt_this){const sampleForEvent=opt_sampleForEvent||((event)=>event.cpuSelfTime);const diagnostic=new RelatedHistogramBreakdown();for(const event of events){const sample=sampleForEvent.call(opt_this,event);if(sample===undefined)continue;const eventCategory=categoryForEvent.call(opt_this,event);let hist=diagnostic.get(eventCategory);if(hist===undefined){hist=new tr.v.Histogram(namePrefix+eventCategory,unit,opt_binBoundaries);histograms.addHistogram(hist);diagnostic.set(eventCategory,hist);}
6924hist.addSample(sample,{relatedEvents:new tr.v.d.RelatedEventSet([event])});}
6925return diagnostic;}}
6926tr.v.d.Diagnostic.register(RelatedHistogramBreakdown,{elementName:'tr-v-ui-breakdown-span'});return{COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER,RelatedHistogramBreakdown,};});'use strict';tr.exportTo('tr.v.d',function(){class RelatedNameMap extends tr.v.d.Diagnostic{constructor(opt_info){super();this.map_=new Map();}
6927clone(){const clone=new RelatedNameMap();clone.addDiagnostic(this);return clone;}
6928equals(other){if(!(other instanceof RelatedNameMap))return false;const keys1=new Set(this.map_.keys());const keys2=new Set(other.map_.keys());if(!tr.b.setsEqual(keys1,keys2))return false;for(const[key,name]of this){if(name!==other.get(key))return false;}
6929return true;}
6930canAddDiagnostic(otherDiagnostic){return otherDiagnostic instanceof RelatedNameMap;}
6931addDiagnostic(otherDiagnostic){for(const[key,name]of otherDiagnostic){const existing=this.get(key);if(existing===undefined){this.set(key,name);}else if(existing!==name){throw new Error('Histogram names differ: '+`"${existing}" != "${name}"`);}}}
6932asDictInto_(d){d.names={};for(const[key,name]of this)d.names[key]=name;}
6933set(key,name){this.map_.set(key,name);}
6934get(key){return this.map_.get(key);}*[Symbol.iterator](){for(const pair of this.map_)yield pair;}*values(){for(const value of this.map_.values())yield value;}
6935static fromEntries(entries){const names=new RelatedNameMap();for(const[key,name]of entries){names.set(key,name);}
6936return names;}
6937static fromDict(d){return RelatedNameMap.fromEntries(Object.entries(d.names||{}));}}
6938tr.v.d.Diagnostic.register(RelatedNameMap,{elementName:'tr-v-ui-related-name-map-span',});return{RelatedNameMap,};});'use strict';tr.exportTo('tr.v.d',function(){class Scalar extends tr.v.d.Diagnostic{constructor(value){super();if(!(value instanceof tr.b.Scalar)){throw new Error('expected Scalar');}
6939this.value=value;}
6940clone(){return new Scalar(this.value);}
6941asDictInto_(d){d.value=this.value.asDict();}
6942static fromDict(d){return new Scalar(tr.b.Scalar.fromDict(d.value));}}
6943tr.v.d.Diagnostic.register(Scalar,{elementName:'tr-v-ui-scalar-diagnostic-span'});return{Scalar,};});'use strict';tr.exportTo('tr.v.d',function(){class TagMap extends tr.v.d.Diagnostic{constructor(opt_info){super();this.tagsToStoryNames_=new Map();if(opt_info){for(const[tag,storyDisplayNames]of Object.entries(opt_info.tagsToStoryNames||{})){this.tagsToStoryNames.set(tag,new Set(storyDisplayNames));}}}
6944clone(){const clone=new TagMap();clone.addDiagnostic(this);return clone;}
6945addToHistogram(hist){hist.diagnostics.set(tr.v.d.RESERVED_NAMES.TAG_MAP,this);}
6946equals(other){if(!(other instanceof TagMap))return false;const keys1=new Set(this.tagsToStoryNames.keys());const keys2=new Set(other.tagsToStoryNames.keys());if(!tr.b.setsEqual(keys1,keys2)){return false;}
6947for(const key of keys1){if(!tr.b.setsEqual(this.tagsToStoryNames.get(key),other.tagsToStoryNames.get(key))){return false;}}
6948return true;}
6949canAddDiagnostic(otherDiagnostic){return otherDiagnostic instanceof TagMap;}
6950addDiagnostic(otherDiagnostic){for(const[name,storyDisplayNames]of
6951otherDiagnostic.tagsToStoryNames){if(!this.tagsToStoryNames.has(name)){this.tagsToStoryNames.set(name,new Set());}
6952for(const t of storyDisplayNames){this.tagsToStoryNames.get(name).add(t);}}
6953return this;}
6954asDictInto_(d){d.tagsToStoryNames={};for(const[name,value]of this.tagsToStoryNames){d.tagsToStoryNames[name]=Array.from(value);}}
6955get tagsToStoryNames(){return this.tagsToStoryNames_;}
6956static fromDict(d){const info=new TagMap();for(const[name,values]of
6957Object.entries(d.tagsToStoryNames||{})){info.tagsToStoryNames.set(name,new Set(values));}
6958return info;}}
6959tr.v.d.Diagnostic.register(TagMap,{elementName:'tr-v-ui-tag-map-span'});return{TagMap,};});'use strict';tr.exportTo('tr.v.d',function(){class UnmergeableDiagnosticSet extends tr.v.d.Diagnostic{constructor(diagnostics){super();this._diagnostics=diagnostics;}
6960clone(){const clone=new tr.v.d.UnmergeableDiagnosticSet();clone.addDiagnostic(this);return clone;}
6961canAddDiagnostic(otherDiagnostic){return true;}
6962addDiagnostic(otherDiagnostic){if(otherDiagnostic instanceof UnmergeableDiagnosticSet){for(const subOtherDiagnostic of otherDiagnostic){const clone=subOtherDiagnostic.clone();this.addDiagnostic(clone);}
6963return;}
6964for(let i=0;i<this._diagnostics.length;++i){if(this._diagnostics[i].canAddDiagnostic(otherDiagnostic)){this._diagnostics[i].addDiagnostic(otherDiagnostic);return;}}
6965const clone=otherDiagnostic.clone();this._diagnostics.push(clone);}
6966mergeRelationships(otherDiagnostic,parentHist,otherParentHist){if(otherDiagnostic instanceof UnmergeableDiagnosticSet){for(const subDiagnostic of otherDiagnostic){this.mergeRelationships(subDiagnostic,parentHist,otherParentHist);}
6967return;}
6968for(const subDiagnostic of this){if(!(subDiagnostic instanceof tr.v.d.RelatedHistogramMap)&&!(subDiagnostic instanceof tr.v.d.RelatedHistogramBreakdown)){continue;}
6969subDiagnostic.mergeRelationships(otherDiagnostic,parentHist,otherParentHist);}}
6970get length(){return this._diagnostics.length;}*[Symbol.iterator](){for(const diagnostic of this._diagnostics)yield diagnostic;}
6971asDictInto_(d){d.diagnostics=this._diagnostics.map(d=>d.asDictOrReference());}
6972static fromDict(d){return new UnmergeableDiagnosticSet(d.diagnostics.map(d=>((typeof d==='string')?new tr.v.d.DiagnosticRef(d):tr.v.d.Diagnostic.fromDict(d))));}}
6973tr.v.d.Diagnostic.register(UnmergeableDiagnosticSet,{elementName:'tr-v-ui-unmergeable-diagnostic-set-span'});return{UnmergeableDiagnosticSet,};});'use strict';tr.exportTo('tr.v.d',function(){const RESERVED_INFOS={ANGLE_REVISIONS:{name:'angleRevisions',type:tr.v.d.GenericSet},ARCHITECTURES:{name:'architectures',type:tr.v.d.GenericSet},BENCHMARKS:{name:'benchmarks',type:tr.v.d.GenericSet},BENCHMARK_START:{name:'benchmarkStart',type:tr.v.d.DateRange},BENCHMARK_DESCRIPTIONS:{name:'benchmarkDescriptions',type:tr.v.d.GenericSet},BOTS:{name:'bots',type:tr.v.d.GenericSet},BUG_COMPONENTS:{name:'bugComponents',type:tr.v.d.GenericSet},BUILDS:{name:'builds',type:tr.v.d.GenericSet},CATAPULT_REVISIONS:{name:'catapultRevisions',type:tr.v.d.GenericSet},CHROMIUM_COMMIT_POSITIONS:{name:'chromiumCommitPositions',type:tr.v.d.GenericSet},CHROMIUM_REVISIONS:{name:'chromiumRevisions',type:tr.v.d.GenericSet},DEVICE_IDS:{name:'deviceIds',type:tr.v.d.GenericSet},GPUS:{name:'gpus',type:tr.v.d.GenericSet},GROUPING_PATH:{name:'groupingPath',type:tr.v.d.GroupingPath},IS_REFERENCE_BUILD:{name:'isReferenceBuild',type:tr.v.d.GenericSet},LABELS:{name:'labels',type:tr.v.d.GenericSet},LOG_URLS:{name:'logUrls',type:tr.v.d.GenericSet},PRIMARYS:{name:'primarys',type:tr.v.d.GenericSet},MEMORY_AMOUNTS:{name:'memoryAmounts',type:tr.v.d.GenericSet},MERGED_FROM:{name:'mergedFrom',type:tr.v.d.RelatedHistogramMap},MERGED_TO:{name:'mergedTo',type:tr.v.d.RelatedHistogramMap},OS_NAMES:{name:'osNames',type:tr.v.d.GenericSet},OS_VERSIONS:{name:'osVersions',type:tr.v.d.GenericSet},OWNERS:{name:'owners',type:tr.v.d.GenericSet},PRODUCT_VERSIONS:{name:'productVersions',type:tr.v.d.GenericSet},RELATED_NAMES:{name:'relatedNames',type:tr.v.d.GenericSet},SKIA_REVISIONS:{name:'skiaRevisions',type:tr.v.d.GenericSet},STORIES:{name:'stories',type:tr.v.d.GenericSet},STORYSET_REPEATS:{name:'storysetRepeats',type:tr.v.d.GenericSet},STORY_TAGS:{name:'storyTags',type:tr.v.d.GenericSet},TAG_MAP:{name:'tagmap',type:tr.v.d.TagMap},TRACE_START:{name:'traceStart',type:tr.v.d.DateRange},TRACE_URLS:{name:'traceUrls',type:tr.v.d.GenericSet},V8_COMMIT_POSITIONS:{name:'v8CommitPositions',type:tr.v.d.DateRange},V8_REVISIONS:{name:'v8Revisions',type:tr.v.d.GenericSet},WEBRTC_REVISIONS:{name:'webrtcRevisions',type:tr.v.d.GenericSet},};const RESERVED_NAMES={};const RESERVED_NAMES_TO_TYPES=new Map();for(const[codename,info]of Object.entries(RESERVED_INFOS)){RESERVED_NAMES[codename]=info.name;if(RESERVED_NAMES_TO_TYPES.has(info.name)){throw new Error(`Duplicate reserved name "${info.name}"`);}
6974RESERVED_NAMES_TO_TYPES.set(info.name,info.type);}
6975const RESERVED_NAMES_SET=new Set(Object.values(RESERVED_NAMES));return{RESERVED_INFOS,RESERVED_NAMES,RESERVED_NAMES_SET,RESERVED_NAMES_TO_TYPES,};});'use strict';tr.exportTo('tr.v.d',function(){class DiagnosticMap extends Map{constructor(opt_allowReservedNames){super();if(opt_allowReservedNames===undefined){opt_allowReservedNames=true;}
6976this.allowReservedNames_=opt_allowReservedNames;}
6977set(name,diagnostic){if(typeof(name)!=='string'){throw new Error(`name must be string, not ${name}`);}
6978if(!(diagnostic instanceof tr.v.d.Diagnostic)&&!(diagnostic instanceof tr.v.d.DiagnosticRef)){throw new Error(`Must be instanceof Diagnostic: ${diagnostic}`);}
6979if(!this.allowReservedNames_&&tr.v.d.RESERVED_NAMES_SET.has(name)&&!(diagnostic instanceof tr.v.d.UnmergeableDiagnosticSet)&&!(diagnostic instanceof tr.v.d.DiagnosticRef)){const type=tr.v.d.RESERVED_NAMES_TO_TYPES.get(name);if(type&&!(diagnostic instanceof type)){throw new Error(`Diagnostics named "${name}" must be ${type.name}, `+`not ${diagnostic.constructor.name}`);}}
6980Map.prototype.set.call(this,name,diagnostic);}
6981delete(name){if(name===undefined)throw new Error('missing name');Map.prototype.delete.call(this,name);}
6982addDicts(dict){for(const[name,diagnosticDict]of Object.entries(dict)){if(typeof diagnosticDict==='string'){this.set(name,new tr.v.d.DiagnosticRef(diagnosticDict));}else{this.set(name,tr.v.d.Diagnostic.fromDict(diagnosticDict));}}}
6983resolveSharedDiagnostics(histograms,opt_required){for(const[name,value]of this){if(!(value instanceof tr.v.d.DiagnosticRef)){continue;}
6984const guid=value.guid;const diagnostic=histograms.lookupDiagnostic(guid);if(diagnostic instanceof tr.v.d.Diagnostic){this.set(name,diagnostic);}else if(opt_required){throw new Error('Unable to find shared Diagnostic '+guid);}}}
6985asDict(){const dict={};for(const[name,diagnostic]of this){dict[name]=diagnostic.asDictOrReference();}
6986return dict;}
6987static fromDict(d){const diagnostics=new DiagnosticMap();diagnostics.addDicts(d);return diagnostics;}
6988static fromObject(obj){const diagnostics=new DiagnosticMap();if(!(obj instanceof Map))obj=Object.entries(obj);for(const[name,diagnostic]of obj){diagnostics.set(name,diagnostic);}
6989return diagnostics;}
6990addDiagnostics(other){for(const[name,otherDiagnostic]of other){if(name===tr.v.d.RESERVED_NAMES.MERGED_FROM||name===tr.v.d.RESERVED_NAMES.MERGED_TO||name===tr.v.d.RESERVED_NAMES.GROUPING_PATH){continue;}
6991const myDiagnostic=this.get(name);if(myDiagnostic!==undefined&&myDiagnostic.canAddDiagnostic(otherDiagnostic)){myDiagnostic.addDiagnostic(otherDiagnostic);continue;}
6992const clone=otherDiagnostic.clone();if(myDiagnostic===undefined){this.set(name,clone);continue;}
6993this.set(name,new tr.v.d.UnmergeableDiagnosticSet([myDiagnostic,clone]));}}
6994mergeRelationships(parentHist){for(const[name,diagnostic]of this){if(!(diagnostic instanceof tr.v.d.RelatedHistogramMap)&&!(diagnostic instanceof tr.v.d.RelatedHistogramBreakdown)&&!(diagnostic instanceof tr.v.d.UnmergeableDiagnosticSet)){continue;}
6995for(const[unusedName,otherHist]of
6996this.get(tr.v.d.RESERVED_NAMES.MERGED_FROM)){const otherDiagnostic=otherHist.diagnostics.get(name);if(!(otherDiagnostic instanceof tr.v.d.RelatedHistogramMap)&&!(otherDiagnostic instanceof tr.v.d.RelatedHistogramBreakdown)&&!(otherDiagnostic instanceof tr.v.d.UnmergeableDiagnosticSet)){continue;}
6997diagnostic.mergeRelationships(otherDiagnostic,parentHist,otherHist);}}}}
6998return{DiagnosticMap,};});'use strict';tr.exportTo('tr.v',function(){const MAX_DIAGNOSTIC_MAPS=16;const DEFAULT_SAMPLE_VALUES_PER_BIN=10;const DEFAULT_REBINNED_COUNT=40;const DEFAULT_BOUNDARIES_FOR_UNIT=new Map();const DELTA=String.fromCharCode(916);const Z_SCORE_NAME='z-score';const P_VALUE_NAME='p-value';const U_STATISTIC_NAME='U';function percentToString(percent,opt_force3){if(percent<0||percent>1){throw new Error('percent must be in [0,1]');}
6999if(percent===0)return'000';if(percent===1)return'100';let str=percent.toString();if(str[1]!=='.'){throw new Error('Unexpected percent');}
7000str=str+'0'.repeat(Math.max(4-str.length,0));if(str.length>4){if(opt_force3){str=str.slice(0,4);}else{str=str.slice(0,4)+'_'+str.slice(4);}}
7001return'0'+str.slice(2);}
7002function percentFromString(s){return parseFloat(s[0]+'.'+s.substr(1).replace(/_/g,''));}
7003class HistogramBin{constructor(range){this.range=range;this.count=0;this.diagnosticMaps=[];}
7004addSample(value){this.count+=1;}
7005addDiagnosticMap(diagnostics){tr.b.math.Statistics.uniformlySampleStream(this.diagnosticMaps,this.count,diagnostics,MAX_DIAGNOSTIC_MAPS);}
7006addBin(other){if(!this.range.equals(other.range)){throw new Error('Merging incompatible Histogram bins.');}
7007tr.b.math.Statistics.mergeSampledStreams(this.diagnosticMaps,this.count,other.diagnosticMaps,other.count,MAX_DIAGNOSTIC_MAPS);this.count+=other.count;}
7008fromDict(dict){this.count=dict[0];if(dict.length>1){for(const map of dict[1]){this.diagnosticMaps.push(tr.v.d.DiagnosticMap.fromDict(map));}}}
7009asDict(){if(!this.diagnosticMaps.length){return[this.count];}
7010return[this.count,this.diagnosticMaps.map(d=>d.asDict())];}}
7011const DEFAULT_SUMMARY_OPTIONS=new Map([['avg',true],['count',true],['geometricMean',false],['max',true],['min',true],['nans',false],['std',true],['sum',true],]);class Histogram{constructor(name,unit,opt_binBoundaries){let binBoundaries=opt_binBoundaries;if(!binBoundaries){const baseUnit=unit.baseUnit?unit.baseUnit:unit;binBoundaries=DEFAULT_BOUNDARIES_FOR_UNIT.get(baseUnit.unitName);}
7012this.guid_=undefined;this.binBoundariesDict_=binBoundaries.asDict();this.allBins=binBoundaries.bins.slice();this.description='';const allowReservedNames=false;this.diagnostics_=new tr.v.d.DiagnosticMap(allowReservedNames);this.maxNumSampleValues_=this.defaultMaxNumSampleValues_;this.name_=name;this.nanDiagnosticMaps=[];this.numNans=0;this.running_=undefined;this.sampleValues_=[];this.shortName=undefined;this.summaryOptions=new Map(DEFAULT_SUMMARY_OPTIONS);this.summaryOptions.set('percentile',[]);this.summaryOptions.set('iprs',[]);this.unit=unit;}
7013static create(name,unit,samples,opt_options){const options=opt_options||{};const hist=new Histogram(name,unit,options.binBoundaries);if(options.description)hist.description=options.description;if(options.shortName)hist.shortName=options.shortName;if(options.summaryOptions){let summaryOptions=options.summaryOptions;if(!(summaryOptions instanceof Map)){summaryOptions=Object.entries(summaryOptions);}
7014for(const[name,value]of summaryOptions){hist.summaryOptions.set(name,value);}}
7015if(options.diagnostics!==undefined){let diagnostics=options.diagnostics;if(!(diagnostics instanceof Map)){diagnostics=Object.entries(diagnostics);}
7016for(const[name,diagnostic]of diagnostics){hist.diagnostics.set(name,diagnostic);}}
7017if(!(samples instanceof Array))samples=[samples];for(const sample of samples){if(typeof sample==='object'){hist.addSample(sample.value,sample.diagnostics);}else{hist.addSample(sample);}}
7018return hist;}
7019get diagnostics(){return this.diagnostics_;}
7020get running(){return this.running_;}
7021get maxNumSampleValues(){return this.maxNumSampleValues_;}
7022set maxNumSampleValues(n){this.maxNumSampleValues_=n;tr.b.math.Statistics.uniformlySampleArray(this.sampleValues_,this.maxNumSampleValues_);}
7023get name(){return this.name_;}
7024get guid(){if(this.guid_===undefined){this.guid_=tr.b.GUID.allocateUUID4();}
7025return this.guid_;}
7026set guid(guid){if(this.guid_!==undefined){throw new Error('Cannot reset guid');}
7027this.guid_=guid;}
7028static fromDict(dict){const hist=new Histogram(dict.name,tr.b.Unit.fromJSON(dict.unit),HistogramBinBoundaries.fromDict(dict.binBoundaries));hist.guid=dict.guid;if(dict.shortName){hist.shortName=dict.shortName;}
7029if(dict.description){hist.description=dict.description;}
7030if(dict.diagnostics){hist.diagnostics.addDicts(dict.diagnostics);}
7031if(dict.allBins){if(dict.allBins.length!==undefined){for(let i=0;i<dict.allBins.length;++i){hist.allBins[i]=new HistogramBin(hist.allBins[i].range);hist.allBins[i].fromDict(dict.allBins[i]);}}else{for(const[i,binDict]of Object.entries(dict.allBins)){hist.allBins[i]=new HistogramBin(hist.allBins[i].range);hist.allBins[i].fromDict(binDict);}}}
7032if(dict.running){hist.running_=tr.b.math.RunningStatistics.fromDict(dict.running);}
7033if(dict.summaryOptions){if(dict.summaryOptions.iprs){dict.summaryOptions.iprs=dict.summaryOptions.iprs.map(r=>tr.b.math.Range.fromExplicitRange(r[0],r[1]));}
7034hist.customizeSummaryOptions(dict.summaryOptions);}
7035if(dict.maxNumSampleValues!==undefined){hist.maxNumSampleValues=dict.maxNumSampleValues;}
7036if(dict.sampleValues){hist.sampleValues_=dict.sampleValues;}
7037if(dict.numNans){hist.numNans=dict.numNans;}
7038if(dict.nanDiagnostics){for(const map of dict.nanDiagnostics){hist.nanDiagnosticMaps.push(tr.v.d.DiagnosticMap.fromDict(map));}}
7039return hist;}
7040get numValues(){return this.running_?this.running_.count:0;}
7041get average(){return this.running_?this.running_.mean:undefined;}
7042get standardDeviation(){return this.running_?this.running_.stddev:undefined;}
7043get geometricMean(){return this.running_?this.running_.geometricMean:0;}
7044get sum(){return this.running_?this.running_.sum:0;}
7045get min(){return this.running_?this.running_.min:Infinity;}
7046get max(){return this.running_?this.running_.max:-Infinity;}
7047getDifferenceSignificance(other,opt_alpha){if(this.unit!==other.unit){throw new Error('Cannot compare Histograms with different units');}
7048if(this.unit.improvementDirection===tr.b.ImprovementDirection.DONT_CARE){return tr.b.math.Statistics.Significance.DONT_CARE;}
7049if(!(other instanceof Histogram)){throw new Error('Unable to compute a p-value');}
7050const testResult=tr.b.math.Statistics.mwu(this.sampleValues,other.sampleValues,opt_alpha);return testResult.significance;}
7051getApproximatePercentile(percent){if(percent<0||percent>1){throw new Error('percent must be in [0,1]');}
7052if(this.numValues===0)return undefined;if(this.allBins.length===1){const sortedSampleValues=this.sampleValues.slice().sort((x,y)=>x-y);return sortedSampleValues[Math.floor((sortedSampleValues.length-1)*percent)];}
7053let valuesToSkip=Math.floor((this.numValues-1)*percent);for(const bin of this.allBins){valuesToSkip-=bin.count;if(valuesToSkip>=0)continue;if(bin.range.min===-Number.MAX_VALUE){return bin.range.max;}
7054if(bin.range.max===Number.MAX_VALUE){return bin.range.min;}
7055return bin.range.center;}
7056return this.allBins[this.allBins.length-1].range.min;}
7057getBinIndexForValue(value){const i=tr.b.findFirstTrueIndexInSortedArray(this.allBins,b=>value<b.range.max);if(0<=i&&i<this.allBins.length)return i;return this.allBins.length-1;}
7058getBinForValue(value){return this.allBins[this.getBinIndexForValue(value)];}
7059addSample(value,opt_diagnostics){if(opt_diagnostics&&!(opt_diagnostics instanceof tr.v.d.DiagnosticMap)){opt_diagnostics=tr.v.d.DiagnosticMap.fromObject(opt_diagnostics);}
7060if(typeof(value)!=='number'||isNaN(value)){this.numNans++;if(opt_diagnostics){tr.b.math.Statistics.uniformlySampleStream(this.nanDiagnosticMaps,this.numNans,opt_diagnostics,MAX_DIAGNOSTIC_MAPS);}}else{if(this.running_===undefined){this.running_=new tr.b.math.RunningStatistics();}
7061this.running_.add(value);const binIndex=this.getBinIndexForValue(value);let bin=this.allBins[binIndex];if(bin.count===0){bin=new HistogramBin(bin.range);this.allBins[binIndex]=bin;}
7062bin.addSample(value);if(opt_diagnostics){bin.addDiagnosticMap(opt_diagnostics);}}
7063tr.b.math.Statistics.uniformlySampleStream(this.sampleValues_,this.numValues+this.numNans,value,this.maxNumSampleValues);}
7064sampleValuesInto(samples){for(const sampleValue of this.sampleValues){samples.push(sampleValue);}}
7065canAddHistogram(other){if(this.unit!==other.unit){return false;}
7066if(this.binBoundariesDict_===other.binBoundariesDict_){return true;}
7067if(this.binBoundariesDict_.length!==other.binBoundariesDict_.length){return false;}
7068for(let i=0;i<this.binBoundariesDict_.length;++i){const slice=this.binBoundariesDict_[i];const otherSlice=other.binBoundariesDict_[i];if(slice instanceof Array){if(!(otherSlice instanceof Array)){return false;}
7069if(slice[0]!==otherSlice[0]||!tr.b.math.approximately(slice[1],otherSlice[1])||slice[2]!==otherSlice[2]){return false;}}else{if(otherSlice instanceof Array){return false;}
7070if(!tr.b.math.approximately(slice,otherSlice)){return false;}}}
7071return true;}
7072addHistogram(other){if(!this.canAddHistogram(other)){throw new Error('Merging incompatible Histograms');}
7073tr.b.math.Statistics.mergeSampledStreams(this.nanDiagnosticMaps,this.numNans,other.nanDiagnosticMaps,other.numNans,MAX_DIAGNOSTIC_MAPS);tr.b.math.Statistics.mergeSampledStreams(this.sampleValues,this.numValues+this.numNans,other.sampleValues,other.numValues+other.numNans,(this.maxNumSampleValues+other.maxNumSampleValues)/2);this.numNans+=other.numNans;if(other.running_!==undefined){if(this.running_===undefined){this.running_=new tr.b.math.RunningStatistics();}
7074this.running_=this.running_.merge(other.running_);}
7075for(let i=0;i<this.allBins.length;++i){let bin=this.allBins[i];if(bin.count===0){bin=new HistogramBin(bin.range);this.allBins[i]=bin;}
7076bin.addBin(other.allBins[i]);}
7077let mergedFrom=this.diagnostics.get(tr.v.d.RESERVED_NAMES.MERGED_FROM);if(!mergedFrom){mergedFrom=new tr.v.d.RelatedHistogramMap();this.diagnostics.set(tr.v.d.RESERVED_NAMES.MERGED_FROM,mergedFrom);}
7078mergedFrom.set(mergedFrom.length,other);let mergedTo=other.diagnostics.get(tr.v.d.RESERVED_NAMES.MERGED_TO);if(!mergedTo){mergedTo=new tr.v.d.RelatedHistogramMap();other.diagnostics.set(tr.v.d.RESERVED_NAMES.MERGED_TO,mergedTo);}
7079mergedTo.set(mergedTo.length,this);this.diagnostics.addDiagnostics(other.diagnostics);for(const[stat,option]of other.summaryOptions){if(stat==='percentile'){const percentiles=this.summaryOptions.get(stat);for(const percent of option){if(!percentiles.includes(percent))percentiles.push(percent);}}else if(stat==='iprs'){const thisIprs=this.summaryOptions.get(stat);for(const ipr of option){let found=false;for(const thisIpr of thisIprs){found=ipr.equals(thisIpr);if(found)break;}
7080if(!found)thisIprs.push(ipr);}}else if(option&&!this.summaryOptions.get(stat)){this.summaryOptions.set(stat,true);}}}
7081customizeSummaryOptions(summaryOptions){for(const[key,value]of Object.entries(summaryOptions)){this.summaryOptions.set(key,value);}}
7082getStatisticScalar(statName,opt_referenceHistogram,opt_mwu){if(statName==='avg'){if(typeof(this.average)!=='number')return undefined;return new tr.b.Scalar(this.unit,this.average);}
7083if(statName==='std'){if(typeof(this.standardDeviation)!=='number')return undefined;return new tr.b.Scalar(this.unit,this.standardDeviation);}
7084if(statName==='geometricMean'){if(typeof(this.geometricMean)!=='number')return undefined;return new tr.b.Scalar(this.unit,this.geometricMean);}
7085if(statName==='min'||statName==='max'||statName==='sum'){if(this.running_===undefined){this.running_=new tr.b.math.RunningStatistics();}
7086if(typeof(this.running_[statName])!=='number')return undefined;return new tr.b.Scalar(this.unit,this.running_[statName]);}
7087if(statName==='nans'){return new tr.b.Scalar(tr.b.Unit.byName.count_smallerIsBetter,this.numNans);}
7088if(statName==='count'){return new tr.b.Scalar(tr.b.Unit.byName.count_smallerIsBetter,this.numValues);}
7089if(statName.substr(0,4)==='pct_'){const percent=percentFromString(statName.substr(4));if(this.numValues===0)return undefined;const percentile=this.getApproximatePercentile(percent);if(typeof(percentile)!=='number')return undefined;return new tr.b.Scalar(this.unit,percentile);}
7090if(statName.substr(0,4)==='ipr_'){let lower=percentFromString(statName.substr(4,3));let upper=percentFromString(statName.substr(8));if(lower>=upper){throw new Error('Invalid inter-percentile range: '+statName);}
7091lower=this.getApproximatePercentile(lower);upper=this.getApproximatePercentile(upper);const ipr=upper-lower;if(typeof(ipr)!=='number')return undefined;return new tr.b.Scalar(this.unit,ipr);}
7092if(!this.canCompare(opt_referenceHistogram)){throw new Error('Cannot compute '+statName+' when histograms are not comparable');}
7093const suffix=tr.b.Unit.nameSuffixForImprovementDirection(this.unit.improvementDirection);const deltaIndex=statName.indexOf(DELTA);if(deltaIndex>=0){const baseStatName=statName.substr(deltaIndex+1);const thisStat=this.getStatisticScalar(baseStatName);const otherStat=opt_referenceHistogram.getStatisticScalar(baseStatName);const deltaValue=thisStat.value-otherStat.value;if(statName[0]==='%'){return new tr.b.Scalar(tr.b.Unit.byName['normalizedPercentageDelta'+suffix],deltaValue/otherStat.value);}
7094return new tr.b.Scalar(thisStat.unit.correspondingDeltaUnit,deltaValue);}
7095if(statName===Z_SCORE_NAME){return new tr.b.Scalar(tr.b.Unit.byName['sigmaDelta'+suffix],(this.average-opt_referenceHistogram.average)/opt_referenceHistogram.standardDeviation);}
7096const mwu=opt_mwu||tr.b.math.Statistics.mwu(this.sampleValues,opt_referenceHistogram.sampleValues);if(statName===P_VALUE_NAME){return new tr.b.Scalar(tr.b.Unit.byName.unitlessNumber,mwu.p);}
7097if(statName===U_STATISTIC_NAME){return new tr.b.Scalar(tr.b.Unit.byName.unitlessNumber,mwu.U);}
7098throw new Error('Unrecognized statistic name: '+statName);}
7099get statisticsNames(){const statisticsNames=new Set();for(const[statName,option]of this.summaryOptions){if(statName==='percentile'){for(const pctile of option){statisticsNames.add('pct_'+tr.v.percentToString(pctile));}}else if(statName==='iprs'){for(const range of option){statisticsNames.add('ipr_'+tr.v.percentToString(range.min,true)+'_'+tr.v.percentToString(range.max,true));}}else if(option){statisticsNames.add(statName);}}
7100return statisticsNames;}
7101canCompare(other){return other instanceof Histogram&&this.unit===other.unit&&this.numValues>0&&other.numValues>0;}
7102getAvailableStatisticName(statName,opt_referenceHist){if(this.canCompare(opt_referenceHist))return statName;if(statName===Z_SCORE_NAME||statName===P_VALUE_NAME||statName===U_STATISTIC_NAME){return'avg';}
7103const deltaIndex=statName.indexOf(DELTA);if(deltaIndex<0)return statName;return statName.substr(deltaIndex+1);}
7104static getDeltaStatisticsNames(statNames){const deltaNames=[];for(const statName of statNames){deltaNames.push(`${DELTA}${statName}`);deltaNames.push(`%${DELTA}${statName}`);}
7105return deltaNames.concat([Z_SCORE_NAME,P_VALUE_NAME,U_STATISTIC_NAME]);}
7106get statisticsScalars(){const results=new Map();for(const statName of this.statisticsNames){const scalar=this.getStatisticScalar(statName);if(scalar===undefined)continue;results.set(statName,scalar);}
7107return results;}
7108get sampleValues(){return this.sampleValues_;}
7109clone(){const binBoundaries=HistogramBinBoundaries.fromDict(this.binBoundariesDict_);const hist=new Histogram(this.name,this.unit,binBoundaries);for(const[stat,option]of this.summaryOptions){if(stat==='percentile'||stat==='iprs'){hist.summaryOptions.set(stat,Array.from(option));}else{hist.summaryOptions.set(stat,option);}}
7110hist.addHistogram(this);return hist;}
7111rebin(newBoundaries){const rebinned=new tr.v.Histogram(this.name,this.unit,newBoundaries);rebinned.description=this.description;for(const sample of this.sampleValues){rebinned.addSample(sample);}
7112rebinned.running_=this.running_;for(const[name,diagnostic]of this.diagnostics){rebinned.diagnostics.set(name,diagnostic);}
7113for(const[stat,option]of this.summaryOptions){if(stat==='percentile'){rebinned.summaryOptions.set(stat,Array.from(option));}else{rebinned.summaryOptions.set(stat,option);}}
7114return rebinned;}
7115asDict(){const dict={};dict.name=this.name;dict.unit=this.unit.asJSON();dict.guid=this.guid;if(this.binBoundariesDict_!==undefined){dict.binBoundaries=this.binBoundariesDict_;}
7116if(this.shortName){dict.shortName=this.shortName;}
7117if(this.description){dict.description=this.description;}
7118if(this.diagnostics.size){dict.diagnostics=this.diagnostics.asDict();}
7119if(this.maxNumSampleValues!==this.defaultMaxNumSampleValues_){dict.maxNumSampleValues=this.maxNumSampleValues;}
7120if(this.numNans){dict.numNans=this.numNans;}
7121if(this.nanDiagnosticMaps.length){dict.nanDiagnostics=this.nanDiagnosticMaps.map(dm=>dm.asDict());}
7122if(this.numValues){dict.sampleValues=this.sampleValues.slice();dict.running=this.running_.asDict();dict.allBins=this.allBinsAsDict_();}
7123const summaryOptions={};let anyOverriddenSummaryOptions=false;for(const[name,value]of this.summaryOptions){let option;if(name==='percentile'){if(value.length===0)continue;option=Array.from(value);}else if(name==='iprs'){if(value.length===0)continue;option=value.map(r=>[r.min,r.max]);}else if(value===DEFAULT_SUMMARY_OPTIONS.get(name)){continue;}else{option=value;}
7124summaryOptions[name]=option;anyOverriddenSummaryOptions=true;}
7125if(anyOverriddenSummaryOptions){dict.summaryOptions=summaryOptions;}
7126return dict;}
7127allBinsAsDict_(){const numBins=this.allBins.length;let emptyBins=0;for(let i=0;i<numBins;++i){if(this.allBins[i].count===0){++emptyBins;}}
7128if(emptyBins===numBins){return undefined;}
7129if(emptyBins>(numBins/2)){const allBinsDict={};for(let i=0;i<numBins;++i){const bin=this.allBins[i];if(bin.count>0){allBinsDict[i]=bin.asDict();}}
7130return allBinsDict;}
7131const allBinsArray=[];for(let i=0;i<numBins;++i){allBinsArray.push(this.allBins[i].asDict());}
7132return allBinsArray;}
7133get defaultMaxNumSampleValues_(){return DEFAULT_SAMPLE_VALUES_PER_BIN*Math.max(this.allBins.length,DEFAULT_REBINNED_COUNT);}}
7134Histogram.AVERAGE_ONLY_SUMMARY_OPTIONS={count:false,max:false,min:false,std:false,sum:false,};const HISTOGRAM_BIN_BOUNDARIES_CACHE=new Map();class HistogramBinBoundaries{static createLinear(min,max,numBins){return new HistogramBinBoundaries(min).addLinearBins(max,numBins);}
7135static createExponential(min,max,numBins){return new HistogramBinBoundaries(min).addExponentialBins(max,numBins);}
7136static createWithBoundaries(binBoundaries){const builder=new HistogramBinBoundaries(binBoundaries[0]);for(const boundary of binBoundaries.slice(1)){builder.addBinBoundary(boundary);}
7137return builder;}
7138constructor(minBinBoundary){this.builder_=[minBinBoundary];this.range_=new tr.b.math.Range();this.range_.addValue(minBinBoundary);this.binRanges_=undefined;this.bins_=undefined;}
7139get range(){return this.range_;}
7140asDict(){if(this.builder_.length===1&&this.builder_[0]===Number.MAX_VALUE){return undefined;}
7141return this.builder_;}
7142pushBuilderSlice_(slice){this.builder_.push(slice);this.builder_=this.builder_.slice();}
7143static fromDict(dict){if(dict===undefined){return HistogramBinBoundaries.SINGULAR;}
7144const cacheKey=JSON.stringify(dict);if(HISTOGRAM_BIN_BOUNDARIES_CACHE.has(cacheKey)){return HISTOGRAM_BIN_BOUNDARIES_CACHE.get(cacheKey);}
7145const binBoundaries=new HistogramBinBoundaries(dict[0]);for(const slice of dict.slice(1)){if(!(slice instanceof Array)){binBoundaries.addBinBoundary(slice);continue;}
7146switch(slice[0]){case HistogramBinBoundaries.SLICE_TYPE.LINEAR:binBoundaries.addLinearBins(slice[1],slice[2]);break;case HistogramBinBoundaries.SLICE_TYPE.EXPONENTIAL:binBoundaries.addExponentialBins(slice[1],slice[2]);break;default:throw new Error('Unrecognized HistogramBinBoundaries slice type');}}
7147HISTOGRAM_BIN_BOUNDARIES_CACHE.set(cacheKey,binBoundaries);return binBoundaries;}
7148get bins(){if(this.bins_===undefined){this.buildBins_();}
7149return this.bins_;}
7150buildBins_(){this.bins_=this.binRanges.map(r=>new HistogramBin(r));}
7151get binRanges(){if(this.binRanges_===undefined){this.buildBinRanges_();}
7152return this.binRanges_;}
7153buildBinRanges_(){if(typeof this.builder_[0]!=='number'){throw new Error('Invalid start of builder_');}
7154this.binRanges_=[];let prevBoundary=this.builder_[0];if(prevBoundary>-Number.MAX_VALUE){this.binRanges_.push(tr.b.math.Range.fromExplicitRange(-Number.MAX_VALUE,prevBoundary));}
7155for(const slice of this.builder_.slice(1)){if(!(slice instanceof Array)){this.binRanges_.push(tr.b.math.Range.fromExplicitRange(prevBoundary,slice));prevBoundary=slice;continue;}
7156const nextMaxBinBoundary=slice[1];const binCount=slice[2];const sliceMinBinBoundary=prevBoundary;switch(slice[0]){case HistogramBinBoundaries.SLICE_TYPE.LINEAR:{const binWidth=(nextMaxBinBoundary-prevBoundary)/binCount;for(let i=1;i<binCount;i++){const boundary=sliceMinBinBoundary+i*binWidth;this.binRanges_.push(tr.b.math.Range.fromExplicitRange(prevBoundary,boundary));prevBoundary=boundary;}
7157break;}
7158case HistogramBinBoundaries.SLICE_TYPE.EXPONENTIAL:{const binExponentWidth=Math.log(nextMaxBinBoundary/prevBoundary)/binCount;for(let i=1;i<binCount;i++){const boundary=sliceMinBinBoundary*Math.exp(i*binExponentWidth);this.binRanges_.push(tr.b.math.Range.fromExplicitRange(prevBoundary,boundary));prevBoundary=boundary;}
7159break;}
7160default:throw new Error('Unrecognized HistogramBinBoundaries slice type');}
7161this.binRanges_.push(tr.b.math.Range.fromExplicitRange(prevBoundary,nextMaxBinBoundary));prevBoundary=nextMaxBinBoundary;}
7162if(prevBoundary<Number.MAX_VALUE){this.binRanges_.push(tr.b.math.Range.fromExplicitRange(prevBoundary,Number.MAX_VALUE));}}
7163addBinBoundary(nextMaxBinBoundary){if(nextMaxBinBoundary<=this.range.max){throw new Error('The added max bin boundary must be larger than '+'the current max boundary');}
7164this.binRanges_=undefined;this.bins_=undefined;this.pushBuilderSlice_(nextMaxBinBoundary);this.range.addValue(nextMaxBinBoundary);return this;}
7165addLinearBins(nextMaxBinBoundary,binCount){if(binCount<=0){throw new Error('Bin count must be positive');}
7166if(nextMaxBinBoundary<=this.range.max){throw new Error('The new max bin boundary must be greater than '+'the previous max bin boundary');}
7167this.binRanges_=undefined;this.bins_=undefined;this.pushBuilderSlice_([HistogramBinBoundaries.SLICE_TYPE.LINEAR,nextMaxBinBoundary,binCount]);this.range.addValue(nextMaxBinBoundary);return this;}
7168addExponentialBins(nextMaxBinBoundary,binCount){if(binCount<=0){throw new Error('Bin count must be positive');}
7169if(this.range.max<=0){throw new Error('Current max bin boundary must be positive');}
7170if(this.range.max>=nextMaxBinBoundary){throw new Error('The last added max boundary must be greater than '+'the current max boundary boundary');}
7171this.binRanges_=undefined;this.bins_=undefined;this.pushBuilderSlice_([HistogramBinBoundaries.SLICE_TYPE.EXPONENTIAL,nextMaxBinBoundary,binCount]);this.range.addValue(nextMaxBinBoundary);return this;}}
7172HistogramBinBoundaries.SLICE_TYPE={LINEAR:0,EXPONENTIAL:1,};HistogramBinBoundaries.SINGULAR=new HistogramBinBoundaries(Number.MAX_VALUE);DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.timeDurationInMs.unitName,HistogramBinBoundaries.createExponential(1e-3,1e6,1e2));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.timeStampInMs.unitName,HistogramBinBoundaries.createLinear(0,1e10,1e3));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.normalizedPercentage.unitName,HistogramBinBoundaries.createLinear(0,1.0,20));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.sizeInBytes.unitName,HistogramBinBoundaries.createExponential(1,1e12,1e2));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.energyInJoules.unitName,HistogramBinBoundaries.createExponential(1e-3,1e3,50));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.powerInWatts.unitName,HistogramBinBoundaries.createExponential(1e-3,1,50));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.unitlessNumber.unitName,HistogramBinBoundaries.createExponential(1e-3,1e3,50));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.count.unitName,HistogramBinBoundaries.createExponential(1,1e3,20));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.sigma.unitName,HistogramBinBoundaries.createLinear(-5,5,50));return{DEFAULT_REBINNED_COUNT,DELTA,Histogram,HistogramBinBoundaries,P_VALUE_NAME,U_STATISTIC_NAME,Z_SCORE_NAME,percentFromString,percentToString,};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-scalar-context-controller',created(){this.host_=undefined;this.groupToContext_=new Map();this.dirtyGroups_=new Set();},attached(){if(this.host_){throw new Error('Scalar context controller is already attached to a host');}
7173const host=findParentOrHost(this);if(host.__scalarContextController){throw new Error('Multiple scalar context controllers attached to this host');}
7174host.__scalarContextController=this;this.host_=host;},detached(){if(!this.host_){throw new Error('Scalar context controller is not attached to a host');}
7175if(this.host_.__scalarContextController!==this){throw new Error('Scalar context controller is not attached to its host');}
7176delete this.host_.__scalarContextController;this.host_=undefined;},getContext(group){return this.groupToContext_.get(group);},onScalarSpanAdded(group,span){let context=this.groupToContext_.get(group);if(context===undefined){context={spans:new Set(),range:new tr.b.math.Range()};this.groupToContext_.set(group,context);}
7177if(context.spans.has(span)){throw new Error('Scalar span already registered with group: '+group);}
7178context.spans.add(span);this.markGroupDirtyAndScheduleUpdate_(group);},onScalarSpanRemoved(group,span){const context=this.groupToContext_.get(group);if(!context.spans.has(span)){throw new Error('Scalar span not registered with group: '+group);}
7179context.spans.delete(span);this.markGroupDirtyAndScheduleUpdate_(group);},onScalarSpanUpdated(group,span){const context=this.groupToContext_.get(group);if(!context.spans.has(span)){throw new Error('Scalar span not registered with group: '+group);}
7180this.markGroupDirtyAndScheduleUpdate_(group);},markGroupDirtyAndScheduleUpdate_(group){const alreadyDirty=this.dirtyGroups_.size>0;this.dirtyGroups_.add(group);if(!alreadyDirty){tr.b.requestAnimationFrameInThisFrameIfPossible(this.updateContext,this);}},updateContext(){const groups=this.dirtyGroups_;if(groups.size===0)return;this.dirtyGroups_=new Set();for(const group of groups){this.updateGroup_(group);}
7181const event=new tr.b.Event('context-updated');event.groups=groups;this.dispatchEvent(event);},updateGroup_(group){const context=this.groupToContext_.get(group);if(context.spans.size===0){this.groupToContext_.delete(group);return;}
7182context.range.reset();for(const span of context.spans){context.range.addValue(span.value);}}});function getScalarContextControllerForElement(element){while(element){if(element.__scalarContextController){return element.__scalarContextController;}
7183element=findParentOrHost(element);}
7184return undefined;}
7185function findParentOrHost(node){if(node.parentElement){return node.parentElement;}
7186while(Polymer.dom(node).parentNode){node=Polymer.dom(node).parentNode;}
7187return node.host;}
7188return{getScalarContextControllerForElement,};});'use strict';tr.exportTo('tr.v.ui',function(){function createScalarSpan(value,opt_config){if(value===undefined)return'';const config=opt_config||{};const ownerDocument=config.ownerDocument||document;const span=ownerDocument.createElement('tr-v-ui-scalar-span');let numericValue;if(value instanceof tr.b.Scalar){span.value=value;numericValue=value.value;}else if(value instanceof tr.v.Histogram){numericValue=value.average;if(numericValue===undefined)return'';span.setValueAndUnit(numericValue,value.unit);}else{const unit=config.unit;if(unit===undefined){throw new Error('Unit must be provided in config when value is a number');}
7189span.setValueAndUnit(value,unit);numericValue=value;}
7190if(config.context){span.context=config.context;}
7191if(config.customContextRange){span.customContextRange=config.customContextRange;}
7192if(config.leftAlign){span.leftAlign=true;}
7193if(config.inline){span.inline=true;}
7194if(config.significance!==undefined){span.significance=config.significance;}
7195if(config.contextGroup!==undefined){span.contextGroup=config.contextGroup;}
7196return span;}
7197return{createScalarSpan,};});'use strict';Polymer({is:'tr-v-ui-scalar-span',properties:{contextGroup:{type:String,reflectToAttribute:true,observer:'contextGroupChanged_'}},created(){this.value_=undefined;this.unit_=undefined;this.context_=undefined;this.warning_=undefined;this.significance_=tr.b.math.Statistics.Significance.DONT_CARE;this.shouldSearchForContextController_=false;this.lazyContextController_=undefined;this.onContextUpdated_=this.onContextUpdated_.bind(this);this.updateContents_=this.updateContents_.bind(this);this.customContextRange_=undefined;},get significance(){return this.significance_;},set significance(s){this.significance_=s;this.updateContents_();},set contentTextDecoration(deco){this.$.content.style.textDecoration=deco;},get value(){return this.value_;},set value(value){if(value instanceof tr.b.Scalar){this.value_=value.value;this.unit_=value.unit;}else{this.value_=value;}
7198this.updateContents_();if(this.hasContext_(this.contextGroup)){this.contextController_.onScalarSpanUpdated(this.contextGroup,this);}else{this.updateSparkline_();}},get contextController_(){if(this.shouldSearchForContextController_){this.lazyContextController_=tr.v.ui.getScalarContextControllerForElement(this);this.shouldSearchForContextController_=false;}
7199return this.lazyContextController_;},hasContext_(contextGroup){return!!(contextGroup&&this.contextController_);},contextGroupChanged_(newContextGroup,oldContextGroup){this.detachFromContextControllerIfPossible_(oldContextGroup);if(!this.attachToContextControllerIfPossible_(newContextGroup)){this.onContextUpdated_();}},attachToContextControllerIfPossible_(contextGroup){if(!this.hasContext_(contextGroup))return false;this.contextController_.addEventListener('context-updated',this.onContextUpdated_);this.contextController_.onScalarSpanAdded(contextGroup,this);return true;},detachFromContextControllerIfPossible_(contextGroup){if(!this.hasContext_(contextGroup))return;this.contextController_.removeEventListener('context-updated',this.onContextUpdated_);this.contextController_.onScalarSpanRemoved(contextGroup,this);},attached(){tr.b.Unit.addEventListener('display-mode-changed',this.updateContents_);this.shouldSearchForContextController_=true;this.attachToContextControllerIfPossible_(this.contextGroup);},detached(){tr.b.Unit.removeEventListener('display-mode-changed',this.updateContents_);this.detachFromContextControllerIfPossible_(this.contextGroup);this.shouldSearchForContextController_=false;this.lazyContextController_=undefined;},onContextUpdated_(){this.updateSparkline_();},get context(){return this.context_;},set context(context){this.context_=context;this.updateContents_();},get unit(){return this.unit_;},set unit(unit){this.unit_=unit;this.updateContents_();this.updateSparkline_();},setValueAndUnit(value,unit){this.value_=value;this.unit_=unit;this.updateContents_();},get customContextRange(){return this.customContextRange_;},set customContextRange(customContextRange){this.customContextRange_=customContextRange;this.updateSparkline_();},get inline(){return Polymer.dom(this).classList.contains('inline');},set inline(inline){if(inline){Polymer.dom(this).classList.add('inline');}else{Polymer.dom(this).classList.remove('inline');}},get leftAlign(){return Polymer.dom(this).classList.contains('left-align');},set leftAlign(leftAlign){if(leftAlign){Polymer.dom(this).classList.add('left-align');}else{Polymer.dom(this).classList.remove('left-align');}},updateSparkline_(){Polymer.dom(this.$.sparkline).classList.remove('positive');Polymer.dom(this.$.sparkline).classList.remove('better');Polymer.dom(this.$.sparkline).classList.remove('worse');Polymer.dom(this.$.sparkline).classList.remove('same');this.$.sparkline.style.display='none';this.$.sparkline.style.left='0';this.$.sparkline.style.width='0';let range=this.customContextRange_;if(!range&&this.hasContext_(this.contextGroup)){const context=this.contextController_.getContext(this.contextGroup);if(context){range=context.range;}}
7200if(!range||range.isEmpty)return;const leftPoint=Math.min(range.min,0);const rightPoint=Math.max(range.max,0);const pointDistance=rightPoint-leftPoint;if(pointDistance===0){return;}
7201this.$.sparkline.style.display='block';let left;let width;if(this.value>0){width=Math.min(this.value,rightPoint);left=-leftPoint;Polymer.dom(this.$.sparkline).classList.add('positive');}else if(this.value<=0){width=-Math.max(this.value,leftPoint);left=(-leftPoint)-width;}
7202this.$.sparkline.style.left=this.buildSparklineStyle_(left/pointDistance,false);this.$.sparkline.style.width=this.buildSparklineStyle_(width/pointDistance,true);const changeClass=this.changeClassName_;if(changeClass){Polymer.dom(this.$.sparkline).classList.add(changeClass);}},buildSparklineStyle_(ratio,isWidth){let position='calc('+ratio+' * (100% - 1px)';if(isWidth){position+=' + 1px';}
7203position+=')';return position;},updateContents_(){Polymer.dom(this.$.content).textContent='';Polymer.dom(this.$.content).classList.remove('better');Polymer.dom(this.$.content).classList.remove('worse');Polymer.dom(this.$.content).classList.remove('same');this.$.insignificant.style.display='';this.$.significantly_better.style.display='';this.$.significantly_worse.style.display='';if(this.unit_===undefined)return;this.$.content.title='';Polymer.dom(this.$.content).textContent=this.unit_.format(this.value,this.context);this.updateDelta_();},updateDelta_(){let changeClass=this.changeClassName_;if(!changeClass){this.$.significance.style.display='none';return;}
7204this.$.significance.style.display='inline';let title;switch(changeClass){case'better':title='improvement';break;case'worse':title='regression';break;case'same':title='no change';break;default:throw new Error('Unknown change class: '+changeClass);}
7205Polymer.dom(this.$.content).classList.add(changeClass);switch(this.significance){case tr.b.math.Statistics.Significance.DONT_CARE:break;case tr.b.math.Statistics.Significance.INSIGNIFICANT:if(changeClass!=='same')title='insignificant '+title;this.$.insignificant.style.display='inline';changeClass='same';break;case tr.b.math.Statistics.Significance.SIGNIFICANT:if(changeClass==='same'){throw new Error('How can no change be significant?');}
7206this.$['significantly_'+changeClass].style.display='inline';title='significant '+title;break;default:throw new Error('Unknown significance '+this.significance);}
7207this.$.significance.title=title;this.$.content.title=title;},get changeClassName_(){if(!this.unit_||!this.unit_.isDelta)return undefined;switch(this.unit_.improvementDirection){case tr.b.ImprovementDirection.DONT_CARE:return undefined;case tr.b.ImprovementDirection.BIGGER_IS_BETTER:if(this.value===0)return'same';return this.value>0?'better':'worse';case tr.b.ImprovementDirection.SMALLER_IS_BETTER:if(this.value===0)return'same';return this.value<0?'better':'worse';default:throw new Error('Unknown improvement direction: '+
7208this.unit_.improvementDirection);}},get warning(){return this.warning_;},set warning(warning){this.warning_=warning;const warningEl=this.$.warning;if(this.warning_){warningEl.title=warning;warningEl.style.display='inline';}else{warningEl.title='';warningEl.style.display='';}},get timestamp(){return this.value;},set timestamp(timestamp){if(timestamp instanceof tr.b.u.TimeStamp){this.value=timestamp;return;}
7209this.setValueAndUnit(timestamp,tr.b.u.Units.timeStampInMs);},get duration(){return this.value;},set duration(duration){if(duration instanceof tr.b.u.TimeDuration){this.value=duration;return;}
7210this.setValueAndUnit(duration,tr.b.u.Units.timeDurationInMs);}});'use strict';function isTable(object){if(!(object instanceof Array)||(object.length<2))return false;for(const colName in object[0]){if(typeof colName!=='string')return false;}
7211for(let i=0;i<object.length;++i){if(!(object[i]instanceof Object))return false;for(const colName in object[i]){if(i&&(object[0][colName]===undefined))return false;const cellType=typeof object[i][colName];if(cellType!=='string'&&cellType!=='number')return false;}
7212if(i){for(const colName in object[0]){if(object[i][colName]===undefined)return false;}}}
7213return true;}
7214Polymer({is:'tr-ui-a-generic-object-view',ready(){this.object_=undefined;},get object(){return this.object_;},set object(object){this.object_=object;this.updateContents_();},updateContents_(){Polymer.dom(this.$.content).textContent='';this.appendElementsForType_('',this.object_,0,0,5,'');},appendElementsForType_(label,object,indent,depth,maxDepth,suffix){if(depth>maxDepth){this.appendSimpleText_(label,indent,'<recursion limit reached>',suffix);return;}
7215if(object===undefined){this.appendSimpleText_(label,indent,'undefined',suffix);return;}
7216if(object===null){this.appendSimpleText_(label,indent,'null',suffix);return;}
7217if(!(object instanceof Object)){const type=typeof object;if(type!=='string'){return this.appendSimpleText_(label,indent,object,suffix);}
7218let objectReplaced=false;if((object[0]==='{'&&object[object.length-1]==='}')||(object[0]==='['&&object[object.length-1]===']')){try{object=JSON.parse(object);objectReplaced=true;}catch(e){}}
7219if(!objectReplaced){if(object.includes('\n')){const lines=object.split('\n');lines.forEach(function(line,i){let text;let ioff;let ll;let ss;if(i===0){text='"'+line;ioff=0;ll=label;ss='';}else if(i<lines.length-1){text=line;ioff=1;ll='';ss='';}else{text=line+'"';ioff=1;ll='';ss=suffix;}
7220const el=this.appendSimpleText_(ll,indent+ioff*label.length+ioff,text,ss);el.style.whiteSpace='pre';return el;},this);return;}
7221if(tr.b.isUrl(object)){const link=document.createElement('a');link.href=object;link.textContent=object;this.appendElementWithLabel_(label,indent,link,suffix);return;}
7222this.appendSimpleText_(label,indent,'"'+object+'"',suffix);return;}}
7223if(object instanceof tr.model.ObjectSnapshot){const link=document.createElement('tr-ui-a-analysis-link');link.selection=new tr.model.EventSet(object);this.appendElementWithLabel_(label,indent,link,suffix);return;}
7224if(object instanceof tr.model.ObjectInstance){const link=document.createElement('tr-ui-a-analysis-link');link.selection=new tr.model.EventSet(object);this.appendElementWithLabel_(label,indent,link,suffix);return;}
7225if(object instanceof tr.b.math.Rect){this.appendSimpleText_(label,indent,object.toString(),suffix);return;}
7226if(object instanceof tr.b.Scalar){const el=this.ownerDocument.createElement('tr-v-ui-scalar-span');el.value=object;el.inline=true;this.appendElementWithLabel_(label,indent,el,suffix);return;}
7227if(object instanceof Array){this.appendElementsForArray_(label,object,indent,depth,maxDepth,suffix);return;}
7228this.appendElementsForObject_(label,object,indent,depth,maxDepth,suffix);},appendElementsForArray_(label,object,indent,depth,maxDepth,suffix){if(object.length===0){this.appendSimpleText_(label,indent,'[]',suffix);return;}
7229if(isTable(object)){const table=document.createElement('tr-ui-b-table');const columns=[];for(const colName of Object.keys(object[0])){let allStrings=true;let allNumbers=true;for(let i=0;i<object.length;++i){if(typeof(object[i][colName])!=='string'){allStrings=false;}
7230if(typeof(object[i][colName])!=='number'){allNumbers=false;}
7231if(!allStrings&&!allNumbers)break;}
7232const column={title:colName};column.value=function(row){return row[colName];};if(allStrings){column.cmp=function(x,y){return x[colName].localeCompare(y[colName]);};}else if(allNumbers){column.cmp=function(x,y){return x[colName]-y[colName];};}
7233columns.push(column);}
7234table.tableColumns=columns;table.tableRows=object;this.appendElementWithLabel_(label,indent,table,suffix);table.rebuild();return;}
7235this.appendElementsForType_(label+'[',object[0],indent,depth+1,maxDepth,object.length>1?',':']'+suffix);for(let i=1;i<object.length;i++){this.appendElementsForType_('',object[i],indent+label.length+1,depth+1,maxDepth,i<object.length-1?',':']'+suffix);}
7236return;},appendElementsForObject_(label,object,indent,depth,maxDepth,suffix){const keys=Object.keys(object);if(keys.length===0){this.appendSimpleText_(label,indent,'{}',suffix);return;}
7237this.appendElementsForType_(label+'{'+keys[0]+': ',object[keys[0]],indent,depth,maxDepth,keys.length>1?',':'}'+suffix);for(let i=1;i<keys.length;i++){this.appendElementsForType_(keys[i]+': ',object[keys[i]],indent+label.length+1,depth+1,maxDepth,i<keys.length-1?',':'}'+suffix);}},appendElementWithLabel_(label,indent,dataElement,suffix){const row=document.createElement('div');const indentSpan=document.createElement('span');indentSpan.style.whiteSpace='pre';for(let i=0;i<indent;i++){Polymer.dom(indentSpan).textContent+=' ';}
7238Polymer.dom(row).appendChild(indentSpan);const labelSpan=document.createElement('span');Polymer.dom(labelSpan).textContent=label;Polymer.dom(row).appendChild(labelSpan);Polymer.dom(row).appendChild(dataElement);const suffixSpan=document.createElement('span');Polymer.dom(suffixSpan).textContent=suffix;Polymer.dom(row).appendChild(suffixSpan);row.dataElement=dataElement;Polymer.dom(this.$.content).appendChild(row);},appendSimpleText_(label,indent,text,suffix){const el=this.ownerDocument.createElement('span');Polymer.dom(el).textContent=text;this.appendElementWithLabel_(label,indent,el,suffix);return el;}});'use strict';Polymer({is:'tr-ui-a-generic-object-view-with-label',ready(){this.labelEl_=document.createElement('div');this.genericObjectView_=document.createElement('tr-ui-a-generic-object-view');Polymer.dom(this.root).appendChild(this.labelEl_);Polymer.dom(this.root).appendChild(this.genericObjectView_);},get label(){return Polymer.dom(this.labelEl_).textContent;},set label(label){Polymer.dom(this.labelEl_).textContent=label;},get object(){return this.genericObjectView_.object;},set object(object){this.genericObjectView_.object=object;}});'use strict';tr.exportTo('tr.ui.analysis',function(){const ObjectSnapshotView=tr.ui.b.define('object-snapshot-view');ObjectSnapshotView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.objectSnapshot_=undefined;},get requiresTallView(){return true;},set modelEvent(obj){this.objectSnapshot=obj;},get modelEvent(){return this.objectSnapshot;},get objectSnapshot(){return this.objectSnapshot_;},set objectSnapshot(i){this.objectSnapshot_=i;this.updateContents();},updateContents(){throw new Error('Not implemented');}};const options=new tr.b.ExtensionRegistryOptions(tr.b.TYPE_BASED_REGISTRY_MODE);options.mandatoryBaseClass=ObjectSnapshotView;options.defaultMetadata={showInstances:true,showInTrackView:true};tr.b.decorateExtensionRegistry(ObjectSnapshotView,options);return{ObjectSnapshotView,};});'use strict';Polymer({is:'tr-ui-b-drag-handle',created(){this.lastMousePos_=0;this.onMouseMove_=this.onMouseMove_.bind(this);this.onMouseUp_=this.onMouseUp_.bind(this);this.addEventListener('mousedown',this.onMouseDown_);this.target_=undefined;this.horizontal=true;this.observer_=new WebKitMutationObserver(this.didTargetMutate_.bind(this));this.targetSizesByModeKey_={};},get modeKey_(){return this.target_.className===''?'.':this.target_.className;},get target(){return this.target_;},set target(target){this.observer_.disconnect();this.target_=target;if(!this.target_)return;this.observer_.observe(this.target_,{attributes:true,attributeFilter:['class']});},get horizontal(){return this.horizontal_;},set horizontal(h){this.horizontal_=h;if(this.horizontal_){this.className='horizontal-drag-handle';}else{this.className='vertical-drag-handle';}},get vertical(){return!this.horizontal_;},set vertical(v){this.horizontal=!v;},forceMutationObserverFlush_(){const records=this.observer_.takeRecords();if(records.length){this.didTargetMutate_(records);}},didTargetMutate_(e){const modeSize=this.targetSizesByModeKey_[this.modeKey_];if(modeSize!==undefined){this.setTargetSize_(modeSize);return;}
7239this.target_.style[this.targetStyleKey_]='';},get targetStyleKey_(){return this.horizontal_?'height':'width';},getTargetSize_(){const targetStyleKey=this.targetStyleKey_;if(!this.target_.style[targetStyleKey]){this.target_.style[targetStyleKey]=window.getComputedStyle(this.target_)[targetStyleKey];}
7240const size=parseInt(this.target_.style[targetStyleKey]);this.targetSizesByModeKey_[this.modeKey_]=size;return size;},setTargetSize_(s){this.target_.style[this.targetStyleKey_]=s+'px';this.targetSizesByModeKey_[this.modeKey_]=s;tr.b.dispatchSimpleEvent(this,'drag-handle-resize',true,false);},applyDelta_(delta){const curSize=this.getTargetSize_();let newSize;if(this.target_===this.nextElementSibling){newSize=curSize+delta;}else{newSize=curSize-delta;}
7241this.setTargetSize_(newSize);},onMouseMove_(e){const curMousePos=this.horizontal_?e.clientY:e.clientX;const delta=this.lastMousePos_-curMousePos;this.applyDelta_(delta);this.lastMousePos_=curMousePos;e.preventDefault();return true;},onMouseDown_(e){if(!this.target_)return;this.forceMutationObserverFlush_();this.lastMousePos_=this.horizontal_?e.clientY:e.clientX;document.addEventListener('mousemove',this.onMouseMove_);document.addEventListener('mouseup',this.onMouseUp_);e.preventDefault();return true;},onMouseUp_(e){document.removeEventListener('mousemove',this.onMouseMove_);document.removeEventListener('mouseup',this.onMouseUp_);e.preventDefault();}});'use strict';tr.exportTo('tr.ui.b',function(){function HotKey(dict){if(dict.eventType===undefined){throw new Error('eventType must be given');}
7242if(dict.keyCode===undefined&&dict.keyCodes===undefined){throw new Error('keyCode or keyCodes must be given');}
7243if(dict.keyCode!==undefined&&dict.keyCodes!==undefined){throw new Error('Only keyCode or keyCodes can be given');}
7244if(dict.callback===undefined){throw new Error('callback must be given');}
7245this.eventType_=dict.eventType;this.keyCodes_=[];if(dict.keyCode){this.pushKeyCode_(dict.keyCode);}else if(dict.keyCodes){dict.keyCodes.forEach(this.pushKeyCode_,this);}
7246this.useCapture_=!!dict.useCapture;this.callback_=dict.callback;this.thisArg_=dict.thisArg!==undefined?dict.thisArg:undefined;this.helpText_=dict.helpText!==undefined?dict.helpText:undefined;}
7247HotKey.prototype={get eventType(){return this.eventType_;},get keyCodes(){return this.keyCodes_;},get helpText(){return this.helpText_;},call(e){this.callback_.call(this.thisArg_,e);},pushKeyCode_(keyCode){this.keyCodes_.push(keyCode);}};return{HotKey,};});'use strict';Polymer({is:'tv-ui-b-hotkey-controller',created(){this.isAttached_=false;this.globalMode_=false;this.coupledToParentController_=undefined;this.curHost_=undefined;this.childControllers_=[];this.bubblingKeyDownHotKeys_={};this.capturingKeyDownHotKeys_={};this.bubblingKeyPressHotKeys_={};this.capturingKeyPressHotKeys_={};this.onBubblingKeyDown_=this.onKey_.bind(this,false);this.onCapturingKeyDown_=this.onKey_.bind(this,true);this.onBubblingKeyPress_=this.onKey_.bind(this,false);this.onCapturingKeyPress_=this.onKey_.bind(this,true);},attached(){this.isAttached_=true;const host=this.findHost_();if(host.__hotkeyController){throw new Error('Multiple hotkey controllers attached to this host');}
7248host.__hotkeyController=this;this.curHost_=host;let parentElement;if(host.parentElement){parentElement=host.parentElement;}else{parentElement=Polymer.dom(host).parentNode.host;}
7249const parentController=tr.b.getHotkeyControllerForElement(parentElement);if(parentController){this.coupledToParentController_=parentController;parentController.addChildController_(this);return;}
7250host.addEventListener('keydown',this.onBubblingKeyDown_,false);host.addEventListener('keydown',this.onCapturingKeyDown_,true);host.addEventListener('keypress',this.onBubblingKeyPress_,false);host.addEventListener('keypress',this.onCapturingKeyPress_,true);},detached(){this.isAttached_=false;const host=this.curHost_;if(!host)return;delete host.__hotkeyController;this.curHost_=undefined;if(this.coupledToParentController_){this.coupledToParentController_.removeChildController_(this);this.coupledToParentController_=undefined;return;}
7251host.removeEventListener('keydown',this.onBubblingKeyDown_,false);host.removeEventListener('keydown',this.onCapturingKeyDown_,true);host.removeEventListener('keypress',this.onBubblingKeyPress_,false);host.removeEventListener('keypress',this.onCapturingKeyPress_,true);},addChildController_(controller){const i=this.childControllers_.indexOf(controller);if(i!==-1){throw new Error('Controller already registered');}
7252this.childControllers_.push(controller);},removeChildController_(controller){const i=this.childControllers_.indexOf(controller);if(i===-1){throw new Error('Controller not registered');}
7253this.childControllers_.splice(i,1);return controller;},getKeyMapForEventType_(eventType,useCapture){if(eventType==='keydown'){if(!useCapture){return this.bubblingKeyDownHotKeys_;}
7254return this.capturingKeyDownHotKeys_;}
7255if(eventType==='keypress'){if(!useCapture){return this.bubblingKeyPressHotKeys_;}
7256return this.capturingKeyPressHotKeys_;}
7257throw new Error('Unsupported key event');},addHotKey(hotKey){if(!(hotKey instanceof tr.ui.b.HotKey)){throw new Error('hotKey must be a tr.ui.b.HotKey');}
7258const keyMap=this.getKeyMapForEventType_(hotKey.eventType,hotKey.useCapture);for(let i=0;i<hotKey.keyCodes.length;i++){const keyCode=hotKey.keyCodes[i];if(keyMap[keyCode]){throw new Error('Key is already bound for keyCode='+keyCode);}}
7259for(let i=0;i<hotKey.keyCodes.length;i++){const keyCode=hotKey.keyCodes[i];keyMap[keyCode]=hotKey;}
7260return hotKey;},removeHotKey(hotKey){if(!(hotKey instanceof tr.ui.b.HotKey)){throw new Error('hotKey must be a tr.ui.b.HotKey');}
7261const keyMap=this.getKeyMapForEventType_(hotKey.eventType,hotKey.useCapture);for(let i=0;i<hotKey.keyCodes.length;i++){const keyCode=hotKey.keyCodes[i];if(!keyMap[keyCode]){throw new Error('Key is not bound for keyCode='+keyCode);}
7262keyMap[keyCode]=hotKey;}
7263for(let i=0;i<hotKey.keyCodes.length;i++){const keyCode=hotKey.keyCodes[i];delete keyMap[keyCode];}
7264return hotKey;},get globalMode(){return this.globalMode_;},set globalMode(globalMode){const wasAttached=this.isAttached_;if(wasAttached){this.detached();}
7265this.globalMode_=!!globalMode;if(wasAttached){this.attached();}},get topmostConroller_(){if(this.coupledToParentController_){return this.coupledToParentController_.topmostConroller_;}
7266return this;},childRequestsGeneralFocus(child){const topmost=this.topmostConroller_;if(topmost.curHost_){if(topmost.curHost_.hasAttribute('tabIndex')){topmost.curHost_.focus();}else{if(document.activeElement){document.activeElement.blur();}}}else{if(document.activeElement){document.activeElement.blur();}}},childRequestsBlur(child){child.blur();const topmost=this.topmostConroller_;if(topmost.curHost_){topmost.curHost_.focus();}},findHost_(){if(this.globalMode_)return document.body;if(this.parentElement)return this.parentElement;if(!Polymer.dom(this).parentNode)return this.host;let node=this.parentNode;while(Polymer.dom(node).parentNode)node=Polymer.dom(node).parentNode;return node.host;},appendMatchingHotKeysTo_(matchedHotKeys,useCapture,e){const localKeyMap=this.getKeyMapForEventType_(e.type,useCapture);const localHotKey=localKeyMap[e.keyCode];if(localHotKey){matchedHotKeys.push(localHotKey);}
7267for(let i=0;i<this.childControllers_.length;i++){const controller=this.childControllers_[i];controller.appendMatchingHotKeysTo_(matchedHotKeys,useCapture,e);}},onKey_(useCapture,e){if(!useCapture&&e.path[0].tagName==='INPUT')return;let sortedControllers;const matchedHotKeys=[];this.appendMatchingHotKeysTo_(matchedHotKeys,useCapture,e);if(matchedHotKeys.length===0)return false;if(matchedHotKeys.length>1){throw new Error('More than one hotKey is currently unsupported');}
7268const hotKey=matchedHotKeys[0];let prevented=0;prevented|=hotKey.call(e);return!prevented&&e.defaultPrevented;}});'use strict';tr.exportTo('tr.b',function(){function getHotkeyControllerForElement(refElement){let curElement=refElement;while(curElement){if(curElement.tagName==='tv-ui-b-hotkey-controller'){return curElement;}
7269if(curElement.__hotkeyController){return curElement.__hotkeyController;}
7270if(curElement.parentElement){curElement=curElement.parentElement;continue;}
7271curElement=findHost(curElement);}
7272return undefined;}
7273function findHost(initialNode){let node=initialNode;while(Polymer.dom(node).parentNode){node=Polymer.dom(node).parentNode;}
7274return node.host;}
7275return{getHotkeyControllerForElement,};});'use strict';Polymer({is:'tr-ui-b-info-bar',ready(){this.messageEl_=this.$.message;this.buttonsEl_=this.$.buttons;this.message='';},get message(){return Polymer.dom(this.messageEl_).textContent;},set message(message){Polymer.dom(this.messageEl_).textContent=message;},get visible(){return!this.hidden;},set visible(visible){this.hidden=!visible;},removeAllButtons(){Polymer.dom(this.buttonsEl_).textContent='';},addButton(text,clickCallback){const button=document.createElement('button');Polymer.dom(button).textContent=text;button.addEventListener('click',event=>clickCallback(event,this));Polymer.dom(this.buttonsEl_).appendChild(button);return button;}});'use strict';tr.exportTo('tr.ui.b',function(){const ContainerThatDecoratesItsChildren=tr.ui.b.define('div');ContainerThatDecoratesItsChildren.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.observer_=new WebKitMutationObserver(this.didMutate_.bind(this));this.observer_.observe(this,{childList:true});Object.defineProperty(this,'textContent',{get:undefined,set:this.onSetTextContent_});},appendChild(x){HTMLDivElement.prototype.appendChild.call(this,x);this.didMutate_(this.observer_.takeRecords());},insertBefore(x,y){HTMLDivElement.prototype.insertBefore.call(this,x,y);this.didMutate_(this.observer_.takeRecords());},removeChild(x){HTMLDivElement.prototype.removeChild.call(this,x);this.didMutate_(this.observer_.takeRecords());},replaceChild(x,y){HTMLDivElement.prototype.replaceChild.call(this,x,y);this.didMutate_(this.observer_.takeRecords());},onSetTextContent_(textContent){if(textContent!==''){throw new Error('textContent can only be set to \'\'.');}
7276this.clear();},clear(){while(Polymer.dom(this).lastChild){HTMLDivElement.prototype.removeChild.call(this,Polymer.dom(this).lastChild);}
7277this.didMutate_(this.observer_.takeRecords());},didMutate_(records){this.beginDecorating_();for(let i=0;i<records.length;i++){const addedNodes=records[i].addedNodes;if(addedNodes){for(let j=0;j<addedNodes.length;j++){this.decorateChild_(addedNodes[j]);}}
7278const removedNodes=records[i].removedNodes;if(removedNodes){for(let j=0;j<removedNodes.length;j++){this.undecorateChild_(removedNodes[j]);}}}
7279this.doneDecoratingForNow_();},decorateChild_(child){throw new Error('Not implemented');},undecorateChild_(child){throw new Error('Not implemented');},beginDecorating_(){},doneDecoratingForNow_(){}};return{ContainerThatDecoratesItsChildren,};});'use strict';tr.exportTo('tr.ui.b',function(){const ListView=tr.ui.b.define('x-list-view',tr.ui.b.ContainerThatDecoratesItsChildren);ListView.prototype={__proto__:tr.ui.b.ContainerThatDecoratesItsChildren.prototype,decorate(){tr.ui.b.ContainerThatDecoratesItsChildren.prototype.decorate.call(this);Polymer.dom(this).classList.add('x-list-view');this.style.display='block';this.style.userSelect='none';this.style.outline='none';this.onItemClicked_=this.onItemClicked_.bind(this);this.onKeyDown_=this.onKeyDown_.bind(this);this.tabIndex=0;this.addEventListener('keydown',this.onKeyDown_);this.selectionChanged_=false;},decorateChild_(item){Polymer.dom(item).classList.add('list-item');item.style.paddingTop='2px';item.style.paddingRight='4px';item.style.paddingBottom='2px';item.style.paddingLeft='4px';item.addEventListener('click',this.onItemClicked_,true);Object.defineProperty(item,'selected',{configurable:true,get:()=>item.hasAttribute('selected'),set:value=>{const oldSelection=this.selectedElement;if(oldSelection&&oldSelection!==item&&value){Polymer.dom(this.selectedElement).removeAttribute('selected');}
7280if(value){Polymer.dom(item).setAttribute('selected','selected');item.style.backgroundColor='rgb(171, 217, 202)';item.style.outline='1px dotted rgba(0,0,0,0.1)';item.style.outlineOffset=0;}else{Polymer.dom(item).removeAttribute('selected');item.style.backgroundColor='';}
7281const newSelection=this.selectedElement;if(newSelection!==oldSelection){tr.b.dispatchSimpleEvent(this,'selection-changed',false);}},});},undecorateChild_(item){this.selectionChanged_|=item.selected;Polymer.dom(item).classList.remove('list-item');item.removeEventListener('click',this.onItemClicked_);delete item.selected;},beginDecorating_(){this.selectionChanged_=false;},doneDecoratingForNow_(){if(this.selectionChanged_){tr.b.dispatchSimpleEvent(this,'selection-changed',false);}},get selectedElement(){const el=Polymer.dom(this).querySelector('.list-item[selected]');if(!el)return undefined;return el;},set selectedElement(el){if(!el){if(this.selectedElement){this.selectedElement.selected=false;}
7282return;}
7283if(el.parentElement!==this){throw new Error('Can only select elements that are children of this list view');}
7284el.selected=true;},getElementByIndex(index){return Polymer.dom(this).querySelector('.list-item:nth-child('+index+')');},clear(){const changed=this.selectedElement!==undefined;tr.ui.b.ContainerThatDecoratesItsChildren.prototype.clear.call(this);if(changed){tr.b.dispatchSimpleEvent(this,'selection-changed',false);}},onItemClicked_(e){const currentSelectedElement=this.selectedElement;if(currentSelectedElement){Polymer.dom(currentSelectedElement).removeAttribute('selected');}
7285let element=e.target;while(element.parentElement!==this){element=element.parentElement;}
7286if(element!==currentSelectedElement){Polymer.dom(element).setAttribute('selected','selected');}
7287tr.b.dispatchSimpleEvent(this,'selection-changed',false);},onKeyDown_(e){if(this.selectedElement===undefined)return;if(e.keyCode===38){const prev=Polymer.dom(this.selectedElement).previousSibling;if(prev){prev.selected=true;tr.ui.b.scrollIntoViewIfNeeded(prev);e.preventDefault();return true;}}else if(e.keyCode===40){const next=Polymer.dom(this.selectedElement).nextSibling;if(next){next.selected=true;tr.ui.b.scrollIntoViewIfNeeded(next);e.preventDefault();return true;}}},addItem(textContent){const item=document.createElement('div');Polymer.dom(item).textContent=textContent;Polymer.dom(this).appendChild(item);item.style.userSelect='none';return item;}};return{ListView,};});'use strict';tr.exportTo('tr.ui.b',function(){const MOUSE_SELECTOR_MODE={};MOUSE_SELECTOR_MODE.SELECTION=0x1;MOUSE_SELECTOR_MODE.PANSCAN=0x2;MOUSE_SELECTOR_MODE.ZOOM=0x4;MOUSE_SELECTOR_MODE.TIMING=0x8;MOUSE_SELECTOR_MODE.ROTATE=0x10;MOUSE_SELECTOR_MODE.ALL_MODES=0x1F;const MOUSE_SELECTOR_MODE_INFOS={};MOUSE_SELECTOR_MODE_INFOS[MOUSE_SELECTOR_MODE.PANSCAN]={name:'PANSCAN',mode:MOUSE_SELECTOR_MODE.PANSCAN,title:'pan',eventNames:{enter:'enterpan',begin:'beginpan',update:'updatepan',end:'endpan',exit:'exitpan'},activeBackgroundPosition:'-30px -10px',defaultBackgroundPosition:'0 -10px'};MOUSE_SELECTOR_MODE_INFOS[MOUSE_SELECTOR_MODE.SELECTION]={name:'SELECTION',mode:MOUSE_SELECTOR_MODE.SELECTION,title:'selection',eventNames:{enter:'enterselection',begin:'beginselection',update:'updateselection',end:'endselection',exit:'exitselection'},activeBackgroundPosition:'-30px -40px',defaultBackgroundPosition:'0 -40px'};MOUSE_SELECTOR_MODE_INFOS[MOUSE_SELECTOR_MODE.ZOOM]={name:'ZOOM',mode:MOUSE_SELECTOR_MODE.ZOOM,title:'zoom',eventNames:{enter:'enterzoom',begin:'beginzoom',update:'updatezoom',end:'endzoom',exit:'exitzoom'},activeBackgroundPosition:'-30px -70px',defaultBackgroundPosition:'0 -70px'};MOUSE_SELECTOR_MODE_INFOS[MOUSE_SELECTOR_MODE.TIMING]={name:'TIMING',mode:MOUSE_SELECTOR_MODE.TIMING,title:'timing',eventNames:{enter:'entertiming',begin:'begintiming',update:'updatetiming',end:'endtiming',exit:'exittiming'},activeBackgroundPosition:'-30px -100px',defaultBackgroundPosition:'0 -100px'};MOUSE_SELECTOR_MODE_INFOS[MOUSE_SELECTOR_MODE.ROTATE]={name:'ROTATE',mode:MOUSE_SELECTOR_MODE.ROTATE,title:'rotate',eventNames:{enter:'enterrotate',begin:'beginrotate',update:'updaterotate',end:'endrotate',exit:'exitrotate'},activeBackgroundPosition:'-30px -130px',defaultBackgroundPosition:'0 -130px'};return{MOUSE_SELECTOR_MODE_INFOS,MOUSE_SELECTOR_MODE,};});'use strict';Polymer({is:'tr-ui-b-mouse-mode-icon',properties:{modeName:{type:String,reflectToAttribute:true,observer:'modeNameChanged'},},created(){this.active_=false;this.acceleratorKey_=undefined;},ready(){this.updateContents_();},get mode(){return tr.ui.b.MOUSE_SELECTOR_MODE[this.modeName];},set mode(mode){const modeInfo=tr.ui.b.MOUSE_SELECTOR_MODE_INFOS[mode];if(modeInfo===undefined){throw new Error('Unknown mode');}
7288this.modeName=modeInfo.name;},modeNameChanged(){this.updateContents_();},get active(){return this.active_;},set active(active){this.active_=!!active;if(this.active_){Polymer.dom(this).classList.add('active');}else{Polymer.dom(this).classList.remove('active');}
7289this.updateContents_();},get acceleratorKey(){return this.acceleratorKey_;},set acceleratorKey(acceleratorKey){this.acceleratorKey_=acceleratorKey;this.updateContents_();},updateContents_(){if(this.modeName===undefined)return;const mode=this.mode;if(mode===undefined){throw new Error('Invalid mode');}
7290const modeInfo=tr.ui.b.MOUSE_SELECTOR_MODE_INFOS[mode];if(!modeInfo){throw new Error('Invalid mode');}
7291let title=modeInfo.title;if(this.acceleratorKey_){title=title+' ('+this.acceleratorKey_+')';}
7292this.title=title;let bp;if(this.active_){bp=modeInfo.activeBackgroundPosition;}else{bp=modeInfo.defaultBackgroundPosition;}
7293this.style.backgroundPosition=bp;}});'use strict';tr.exportTo('tr.ui.b',function(){function MouseTracker(opt_targetElement){this.onMouseDown_=this.onMouseDown_.bind(this);this.onMouseMove_=this.onMouseMove_.bind(this);this.onMouseUp_=this.onMouseUp_.bind(this);this.targetElement=opt_targetElement;}
7294MouseTracker.prototype={get targetElement(){return this.targetElement_;},set targetElement(targetElement){if(this.targetElement_){this.targetElement_.removeEventListener('mousedown',this.onMouseDown_);}
7295this.targetElement_=targetElement;if(this.targetElement_){this.targetElement_.addEventListener('mousedown',this.onMouseDown_);}},onMouseDown_(e){if(e.button!==0)return true;e=this.remakeEvent_(e,'mouse-tracker-start');this.targetElement_.dispatchEvent(e);document.addEventListener('mousemove',this.onMouseMove_);document.addEventListener('mouseup',this.onMouseUp_);this.targetElement_.addEventListener('blur',this.onMouseUp_);this.savePreviousUserSelect_=document.body.style['-webkit-user-select'];document.body.style['-webkit-user-select']='none';e.preventDefault();return true;},onMouseMove_(e){e=this.remakeEvent_(e,'mouse-tracker-move');this.targetElement_.dispatchEvent(e);},onMouseUp_(e){document.removeEventListener('mousemove',this.onMouseMove_);document.removeEventListener('mouseup',this.onMouseUp_);this.targetElement_.removeEventListener('blur',this.onMouseUp_);document.body.style['-webkit-user-select']=this.savePreviousUserSelect_;e=this.remakeEvent_(e,'mouse-tracker-end');this.targetElement_.dispatchEvent(e);},remakeEvent_(e,newType){const remade=new tr.b.Event(newType,true,true);remade.x=e.x;remade.y=e.y;remade.offsetX=e.offsetX;remade.offsetY=e.offsetY;remade.clientX=e.clientX;remade.clientY=e.clientY;return remade;}};function trackMouseMovesUntilMouseUp(mouseMoveHandler,opt_mouseUpHandler,opt_keyUpHandler){function cleanupAndDispatchToMouseUp(e){document.removeEventListener('mousemove',mouseMoveHandler);if(opt_keyUpHandler){document.removeEventListener('keyup',opt_keyUpHandler);}
7296document.removeEventListener('mouseup',cleanupAndDispatchToMouseUp);if(opt_mouseUpHandler){opt_mouseUpHandler(e);}}
7297document.addEventListener('mousemove',mouseMoveHandler);if(opt_keyUpHandler){document.addEventListener('keyup',opt_keyUpHandler);}
7298document.addEventListener('mouseup',cleanupAndDispatchToMouseUp);}
7299return{MouseTracker,trackMouseMovesUntilMouseUp,};});'use strict';tr.exportTo('tr.ui.b',function(){const MOUSE_SELECTOR_MODE=tr.ui.b.MOUSE_SELECTOR_MODE;const MOUSE_SELECTOR_MODE_INFOS=tr.ui.b.MOUSE_SELECTOR_MODE_INFOS;const MIN_MOUSE_SELECTION_DISTANCE=4;const MODIFIER={SHIFT:0x1,SPACE:0x2,CMD_OR_CTRL:0x4};function isCmdOrCtrlPressed(event){if(tr.isMac)return event.metaKey;return event.ctrlKey;}
7300Polymer({is:'tr-ui-b-mouse-mode-selector',created(){this.supportedModeMask_=MOUSE_SELECTOR_MODE.ALL_MODES;this.initialRelativeMouseDownPos_={x:0,y:0};this.defaultMode_=MOUSE_SELECTOR_MODE.PANSCAN;this.settingsKey_=undefined;this.mousePos_={x:0,y:0};this.mouseDownPos_={x:0,y:0};this.onMouseDown_=this.onMouseDown_.bind(this);this.onMouseMove_=this.onMouseMove_.bind(this);this.onMouseUp_=this.onMouseUp_.bind(this);this.onKeyDown_=this.onKeyDown_.bind(this);this.onKeyUp_=this.onKeyUp_.bind(this);this.mode_=undefined;this.modeToKeyCodeMap_={};this.modifierToModeMap_={};this.targetElement_=undefined;this.modeBeforeAlternativeModeActivated_=null;this.isInteracting_=false;this.isClick_=false;},ready(){this.buttonsEl_=Polymer.dom(this.root).querySelector('.buttons');this.dragHandleEl_=Polymer.dom(this.root).querySelector('.drag-handle');this.supportedModeMask=MOUSE_SELECTOR_MODE.ALL_MODES;this.dragHandleEl_.addEventListener('mousedown',this.onDragHandleMouseDown_.bind(this));this.buttonsEl_.addEventListener('mouseup',this.onButtonMouseUp_);this.buttonsEl_.addEventListener('mousedown',this.onButtonMouseDown_);this.buttonsEl_.addEventListener('click',this.onButtonPress_.bind(this));},attached(){document.addEventListener('keydown',this.onKeyDown_);document.addEventListener('keyup',this.onKeyUp_);},detached(){document.removeEventListener('keydown',this.onKeyDown_);document.removeEventListener('keyup',this.onKeyUp_);},get targetElement(){return this.targetElement_;},set targetElement(target){if(this.targetElement_){this.targetElement_.removeEventListener('mousedown',this.onMouseDown_);}
7301this.targetElement_=target;if(this.targetElement_){this.targetElement_.addEventListener('mousedown',this.onMouseDown_);}},get defaultMode(){return this.defaultMode_;},set defaultMode(defaultMode){this.defaultMode_=defaultMode;},get settingsKey(){return this.settingsKey_;},set settingsKey(settingsKey){this.settingsKey_=settingsKey;if(!this.settingsKey_)return;let mode=tr.b.Settings.get(this.settingsKey_+'.mode',undefined);if(MOUSE_SELECTOR_MODE_INFOS[mode]===undefined){mode=undefined;}
7302if((mode&this.supportedModeMask_)===0){mode=undefined;}
7303if(!mode)mode=this.defaultMode_;this.mode=mode;const pos=tr.b.Settings.get(this.settingsKey_+'.pos',undefined);if(pos)this.pos=pos;},get supportedModeMask(){return this.supportedModeMask_;},set supportedModeMask(supportedModeMask){if(this.mode&&(supportedModeMask&this.mode)===0){throw new Error('supportedModeMask must include current mode.');}
7304function createButtonForMode(mode){return button;}
7305this.supportedModeMask_=supportedModeMask;Polymer.dom(this.buttonsEl_).textContent='';for(const modeName in MOUSE_SELECTOR_MODE){if(modeName==='ALL_MODES')continue;const mode=MOUSE_SELECTOR_MODE[modeName];if((this.supportedModeMask_&mode)===0)continue;const button=document.createElement('tr-ui-b-mouse-mode-icon');button.mode=mode;Polymer.dom(button).classList.add('tool-button');Polymer.dom(this.buttonsEl_).appendChild(button);}},getButtonForMode_(mode){for(let i=0;i<this.buttonsEl_.children.length;i++){const buttonEl=this.buttonsEl_.children[i];if(buttonEl.mode===mode){return buttonEl;}}
7306return undefined;},get mode(){return this.currentMode_;},set mode(newMode){if(newMode!==undefined){if(typeof newMode!=='number'){throw new Error('Mode must be a number');}
7307if((newMode&this.supportedModeMask_)===0){throw new Error('Cannot switch to this mode, it is not supported');}
7308if(MOUSE_SELECTOR_MODE_INFOS[newMode]===undefined){throw new Error('Unrecognized mode');}}
7309let modeInfo;if(this.currentMode_===newMode)return;if(this.currentMode_){const buttonEl=this.getButtonForMode_(this.currentMode_);if(buttonEl)buttonEl.active=false;if(this.isInteracting_){const mouseEvent=this.createEvent_(MOUSE_SELECTOR_MODE_INFOS[this.mode].eventNames.end);this.dispatchEvent(mouseEvent);}
7310modeInfo=MOUSE_SELECTOR_MODE_INFOS[this.currentMode_];tr.b.dispatchSimpleEvent(this,modeInfo.eventNames.exit,true);}
7311this.currentMode_=newMode;if(this.currentMode_){const buttonEl=this.getButtonForMode_(this.currentMode_);if(buttonEl)buttonEl.active=true;this.mouseDownPos_.x=this.mousePos_.x;this.mouseDownPos_.y=this.mousePos_.y;modeInfo=MOUSE_SELECTOR_MODE_INFOS[this.currentMode_];if(!this.isInAlternativeMode_){tr.b.dispatchSimpleEvent(this,modeInfo.eventNames.enter,true);}
7312if(this.isInteracting_){const mouseEvent=this.createEvent_(MOUSE_SELECTOR_MODE_INFOS[this.mode].eventNames.begin);this.dispatchEvent(mouseEvent);}}
7313if(this.settingsKey_&&!this.isInAlternativeMode_){tr.b.Settings.set(this.settingsKey_+'.mode',this.mode);}},setKeyCodeForMode(mode,keyCode){if((mode&this.supportedModeMask_)===0){throw new Error('Mode not supported');}
7314this.modeToKeyCodeMap_[mode]=keyCode;if(!this.buttonsEl_)return;const buttonEl=this.getButtonForMode_(mode);if(buttonEl){buttonEl.acceleratorKey=String.fromCharCode(keyCode);}},setCurrentMousePosFromEvent_(e){this.mousePos_.x=e.clientX;this.mousePos_.y=e.clientY;},createEvent_(eventName,sourceEvent){const event=new tr.b.Event(eventName,true);event.clientX=this.mousePos_.x;event.clientY=this.mousePos_.y;event.deltaX=this.mousePos_.x-this.mouseDownPos_.x;event.deltaY=this.mousePos_.y-this.mouseDownPos_.y;event.mouseDownX=this.mouseDownPos_.x;event.mouseDownY=this.mouseDownPos_.y;event.didPreventDefault=false;event.preventDefault=function(){event.didPreventDefault=true;if(sourceEvent){sourceEvent.preventDefault();}};event.stopPropagation=function(){sourceEvent.stopPropagation();};event.stopImmediatePropagation=function(){throw new Error('Not implemented');};return event;},onMouseDown_(e){if(e.button!==0)return;this.setCurrentMousePosFromEvent_(e);const mouseEvent=this.createEvent_(MOUSE_SELECTOR_MODE_INFOS[this.mode].eventNames.begin,e);if(this.mode===MOUSE_SELECTOR_MODE.SELECTION){mouseEvent.appendSelection=isCmdOrCtrlPressed(e);}
7315this.dispatchEvent(mouseEvent);this.isInteracting_=true;this.isClick_=true;tr.ui.b.trackMouseMovesUntilMouseUp(this.onMouseMove_,this.onMouseUp_);},onMouseMove_(e){this.setCurrentMousePosFromEvent_(e);const mouseEvent=this.createEvent_(MOUSE_SELECTOR_MODE_INFOS[this.mode].eventNames.update,e);this.dispatchEvent(mouseEvent);if(this.isInteracting_){this.checkIsClick_(e);}},onMouseUp_(e){if(e.button!==0)return;const mouseEvent=this.createEvent_(MOUSE_SELECTOR_MODE_INFOS[this.mode].eventNames.end,e);mouseEvent.isClick=this.isClick_;this.dispatchEvent(mouseEvent);if(this.isClick_&&!mouseEvent.didPreventDefault){this.dispatchClickEvents_(e);}
7316this.isInteracting_=false;this.updateAlternativeModeState_(e);},onButtonMouseDown_(e){e.preventDefault();e.stopImmediatePropagation();},onButtonMouseUp_(e){e.preventDefault();e.stopImmediatePropagation();},onButtonPress_(e){this.modeBeforeAlternativeModeActivated_=undefined;this.mode=e.target.mode;e.preventDefault();},onKeyDown_(e){if(e.path[0].tagName==='INPUT')return;if(e.keyCode===' '.charCodeAt(0)){this.spacePressed_=true;}
7317this.updateAlternativeModeState_(e);},onKeyUp_(e){if(e.path[0].tagName==='INPUT')return;if(e.keyCode===' '.charCodeAt(0)){this.spacePressed_=false;}
7318let didHandleKey=false;for(const[modeStr,keyCode]of Object.entries(this.modeToKeyCodeMap_)){if(e.keyCode===keyCode){this.modeBeforeAlternativeModeActivated_=undefined;const mode=parseInt(modeStr);this.mode=mode;didHandleKey=true;}}
7319if(didHandleKey){e.preventDefault();e.stopPropagation();return;}
7320this.updateAlternativeModeState_(e);},updateAlternativeModeState_(e){const shiftPressed=e.shiftKey;const spacePressed=this.spacePressed_;const cmdOrCtrlPressed=isCmdOrCtrlPressed(e);const smm=this.supportedModeMask_;let newMode;let isNewModeAnAlternativeMode=false;if(shiftPressed&&(this.modifierToModeMap_[MODIFIER.SHIFT]&smm)!==0){newMode=this.modifierToModeMap_[MODIFIER.SHIFT];isNewModeAnAlternativeMode=true;}else if(spacePressed&&(this.modifierToModeMap_[MODIFIER.SPACE]&smm)!==0){newMode=this.modifierToModeMap_[MODIFIER.SPACE];isNewModeAnAlternativeMode=true;}else if(cmdOrCtrlPressed&&(this.modifierToModeMap_[MODIFIER.CMD_OR_CTRL]&smm)!==0){newMode=this.modifierToModeMap_[MODIFIER.CMD_OR_CTRL];isNewModeAnAlternativeMode=true;}else{if(this.isInAlternativeMode_){newMode=this.modeBeforeAlternativeModeActivated_;isNewModeAnAlternativeMode=false;}else{newMode=undefined;}}
7321if(this.mode===newMode||newMode===undefined)return;if(isNewModeAnAlternativeMode){this.modeBeforeAlternativeModeActivated_=this.mode;}
7322this.mode=newMode;},get isInAlternativeMode_(){return!!this.modeBeforeAlternativeModeActivated_;},setModifierForAlternateMode(mode,modifier){this.modifierToModeMap_[modifier]=mode;},get pos(){return{x:parseInt(this.style.left),y:parseInt(this.style.top)};},set pos(pos){pos=this.constrainPositionToBounds_(pos);this.style.left=pos.x+'px';this.style.top=pos.y+'px';if(this.settingsKey_){tr.b.Settings.set(this.settingsKey_+'.pos',this.pos);}},constrainPositionToBounds_(pos){const parent=this.offsetParent||document.body;const parentRect=tr.ui.b.windowRectForElement(parent);const top=0;const bottom=parentRect.height-this.offsetHeight;const left=0;const right=parentRect.width-this.offsetWidth;const res={};res.x=Math.max(pos.x,left);res.x=Math.min(res.x,right);res.y=Math.max(pos.y,top);res.y=Math.min(res.y,bottom);return res;},onDragHandleMouseDown_(e){e.preventDefault();e.stopImmediatePropagation();const mouseDownPos={x:e.clientX-this.offsetLeft,y:e.clientY-this.offsetTop};tr.ui.b.trackMouseMovesUntilMouseUp(function(e){const pos={};pos.x=e.clientX-mouseDownPos.x;pos.y=e.clientY-mouseDownPos.y;this.pos=pos;}.bind(this));},checkIsClick_(e){if(!this.isInteracting_||!this.isClick_)return;const deltaX=this.mousePos_.x-this.mouseDownPos_.x;const deltaY=this.mousePos_.y-this.mouseDownPos_.y;const minDist=MIN_MOUSE_SELECTION_DISTANCE;if(deltaX*deltaX+deltaY*deltaY>minDist*minDist){this.isClick_=false;}},dispatchClickEvents_(e){if(!this.isClick_)return;const modeInfo=MOUSE_SELECTOR_MODE_INFOS[MOUSE_SELECTOR_MODE.SELECTION];const eventNames=modeInfo.eventNames;let mouseEvent=this.createEvent_(eventNames.begin);mouseEvent.appendSelection=isCmdOrCtrlPressed(e);this.dispatchEvent(mouseEvent);mouseEvent=this.createEvent_(eventNames.end);this.dispatchEvent(mouseEvent);}});return{MIN_MOUSE_SELECTION_DISTANCE,MODIFIER,};});'use strict';(function(){const DETAILS_SPLIT_REGEX=/^(\S*)\s*([\S\s]*)$/;Polymer({is:'tr-ui-e-chrome-cc-display-item-list-item',created(){Polymer.dom(this).setAttribute('name','');Polymer.dom(this).setAttribute('rawDetails','');Polymer.dom(this).setAttribute('richDetails',undefined);Polymer.dom(this).setAttribute('data_',undefined);},get data(){return this.data_;},set data(data){this.data_=data;if(!data){this.name='DATA MISSING';this.rawDetails='';this.richDetails=undefined;}else if(typeof data==='string'){const match=data.match(DETAILS_SPLIT_REGEX);this.name=match[1];this.rawDetails=match[2];this.richDetails=undefined;}else{this.name=data.name;this.rawDetails='';this.richDetails=data;}},stopPropagation(e){e.stopPropagation();},_computeIf(richDetails){return richDetails&&richDetails.skp64;},_computeHref(richDetails){return'data:application/octet-stream;base64,'+richDetails.skp64;}});})();'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){function Selection(){this.selectionToSetIfClicked=undefined;}
7323Selection.prototype={get specicifity(){throw new Error('Not implemented');},get associatedLayerId(){throw new Error('Not implemented');},get associatedRenderPassId(){throw new Error('Not implemented');},get highlightsByLayerId(){return{};},createAnalysis(){throw new Error('Not implemented');},findEquivalent(lthi){throw new Error('Not implemented');}};function RenderPassSelection(renderPass,renderPassId){if(!renderPass||(renderPassId===undefined)){throw new Error('Render pass (with id) is required');}
7324this.renderPass_=renderPass;this.renderPassId_=renderPassId;}
7325RenderPassSelection.prototype={__proto__:Selection.prototype,get specicifity(){return 1;},get associatedLayerId(){return undefined;},get associatedRenderPassId(){return this.renderPassId_;},get renderPass(){return this.renderPass_;},createAnalysis(){const dataView=document.createElement('tr-ui-a-generic-object-view-with-label');dataView.label='RenderPass '+this.renderPassId_;dataView.object=this.renderPass_.args;return dataView;},get title(){return this.renderPass_.objectInstance.typeName;}};function LayerSelection(layer){if(!layer){throw new Error('Layer is required');}
7326this.layer_=layer;}
7327LayerSelection.prototype={__proto__:Selection.prototype,get specicifity(){return 1;},get associatedLayerId(){return this.layer_.layerId;},get associatedRenderPassId(){return undefined;},get layer(){return this.layer_;},createAnalysis(){const dataView=document.createElement('tr-ui-a-generic-object-view-with-label');dataView.label='Layer '+this.layer_.layerId;if(this.layer_.usingGpuRasterization){dataView.label+=' (GPU-rasterized)';}
7328dataView.object=this.layer_.args;return dataView;},get title(){return this.layer_.objectInstance.typeName;},findEquivalent(lthi){const layer=lthi.activeTree.findLayerWithId(this.layer_.layerId)||lthi.pendingTree.findLayerWithId(this.layer_.layerId);if(!layer)return undefined;return new LayerSelection(layer);}};function TileSelection(tile,opt_data){this.tile_=tile;this.data_=opt_data||{};}
7329TileSelection.prototype={__proto__:Selection.prototype,get specicifity(){return 2;},get associatedLayerId(){return this.tile_.layerId;},get highlightsByLayerId(){const highlights={};highlights[this.tile_.layerId]=[{colorKey:this.tile_.objectInstance.typeName,rect:this.tile_.layerRect}];return highlights;},createAnalysis(){const analysis=document.createElement('tr-ui-a-generic-object-view-with-label');analysis.label='Tile '+this.tile_.objectInstance.id+' on layer '+
7330this.tile_.layerId;if(this.data_){analysis.object={moreInfo:this.data_,tileArgs:this.tile_.args};}else{analysis.object=this.tile_.args;}
7331return analysis;},findEquivalent(lthi){const tileInstance=this.tile_.tileInstance;if(lthi.ts<tileInstance.creationTs||lthi.ts>=tileInstance.deletionTs){return undefined;}
7332const tileSnapshot=tileInstance.getSnapshotAt(lthi.ts);if(!tileSnapshot)return undefined;return new TileSelection(tileSnapshot);}};function LayerRectSelection(layer,rectType,rect,opt_data){this.layer_=layer;this.rectType_=rectType;this.rect_=rect;this.data_=opt_data!==undefined?opt_data:rect;}
7333LayerRectSelection.prototype={__proto__:Selection.prototype,get specicifity(){return 2;},get associatedLayerId(){return this.layer_.layerId;},get highlightsByLayerId(){const highlights={};highlights[this.layer_.layerId]=[{colorKey:this.rectType_,rect:this.rect_}];return highlights;},createAnalysis(){const analysis=document.createElement('tr-ui-a-generic-object-view-with-label');analysis.label=this.rectType_+' on layer '+this.layer_.layerId;analysis.object=this.data_;return analysis;},findEquivalent(lthi){return undefined;}};function AnimationRectSelection(layer,rect){this.layer_=layer;this.rect_=rect;}
7334AnimationRectSelection.prototype={__proto__:Selection.prototype,get specicifity(){return 0;},get associatedLayerId(){return this.layer_.layerId;},createAnalysis(){const analysis=document.createElement('tr-ui-a-generic-object-view-with-label');analysis.label='Animation Bounds of layer '+this.layer_.layerId;analysis.object=this.rect_;return analysis;}};return{Selection,RenderPassSelection,LayerSelection,TileSelection,LayerRectSelection,AnimationRectSelection,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const OPS_TIMING_ITERATIONS=3;const ANNOTATION='Comment';const BEGIN_ANNOTATION='BeginCommentGroup';const END_ANNOTATION='EndCommentGroup';const ANNOTATION_ID='ID: ';const ANNOTATION_CLASS='CLASS: ';const ANNOTATION_TAG='TAG: ';const constants=tr.e.cc.constants;const PictureOpsListView=tr.ui.b.define('tr-ui-e-chrome-cc-picture-ops-list-view');PictureOpsListView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.style.flexDirection='column';this.style.borderTop='1px solid grey';this.style.display='flex';this.opsList_=new tr.ui.b.ListView();this.opsList_.style.flexGrow=1;this.opsList_.style.flexShrink=1;this.opsList_.style.flexBasis='auto';this.opsList_.style.overflow='auto';Polymer.dom(this).appendChild(this.opsList_);this.selectedOp_=undefined;this.selectedOpIndex_=undefined;this.opsList_.addEventListener('selection-changed',this.onSelectionChanged_.bind(this));this.picture_=undefined;},get picture(){return this.picture_;},set picture(picture){this.picture_=picture;this.updateContents_();},updateContents_(){this.opsList_.clear();if(!this.picture_)return;let ops=this.picture_.getOps();if(!ops)return;ops=this.picture_.tagOpsWithTimings(ops);ops=this.opsTaggedWithAnnotations_(ops);for(let i=0;i<ops.length;i++){const op=ops[i];const item=document.createElement('div');item.opIndex=op.opIndex;Polymer.dom(item).textContent=i+') '+op.cmd_string;if(op.elementInfo.tag||op.elementInfo.id||op.elementInfo.class){const elementInfo=document.createElement('span');Polymer.dom(elementInfo).classList.add('elementInfo');elementInfo.style.color='purple';elementInfo.style.fontSize='small';elementInfo.style.fontWeight='bold';elementInfo.style.color='#777';const tag=op.elementInfo.tag?op.elementInfo.tag:'unknown';const id=op.elementInfo.id?'id='+op.elementInfo.id:undefined;const className=op.elementInfo.class?'class='+
7335op.elementInfo.class:undefined;Polymer.dom(elementInfo).textContent='<'+tag+(id?' ':'')+
7336(id?id:'')+(className?' ':'')+
7337(className?className:'')+'>';Polymer.dom(item).appendChild(elementInfo);}
7338if(op.info.length>0){const infoItem=document.createElement('div');Polymer.dom(infoItem).textContent=JSON.stringify(op.info);infoItem.style.fontSize='x-small';infoItem.style.color='#777';Polymer.dom(item).appendChild(infoItem);}
7339if(op.cmd_time&&op.cmd_time>=0.0001){const time=document.createElement('span');Polymer.dom(time).classList.add('time');const rounded=op.cmd_time.toFixed(4);Polymer.dom(time).textContent='('+rounded+'ms)';time.style.fontSize='x-small';time.style.color='rgb(136, 0, 0)';Polymer.dom(item).appendChild(time);}
7340item.style.borderBottom='1px solid #555';item.style.fontSize='small';item.style.fontWeight='bold';item.style.paddingBottom='5px';item.style.paddingLeft='5px';item.style.cursor='pointer';for(const child of item.children){child.style.fontWeight='normal';child.style.marginLeft='1em';child.style.maxWidth='300px';}
7341Polymer.dom(this.opsList_).appendChild(item);}},onSelectionChanged_(e){let beforeSelectedOp=true;if(this.opsList_.selectedElement===this.selectedOp_){this.opsList_.selectedElement=undefined;beforeSelectedOp=false;this.selectedOpIndex_=undefined;}
7342this.selectedOp_=this.opsList_.selectedElement;const ops=this.opsList_.children;for(let i=0;i<ops.length;i++){const op=ops[i];if(op===this.selectedOp_){beforeSelectedOp=false;this.selectedOpIndex_=op.opIndex;}else if(beforeSelectedOp){Polymer.dom(op).setAttribute('beforeSelection','beforeSelection');op.style.backgroundColor='rgb(103, 199, 165)';}else{Polymer.dom(op).removeAttribute('beforeSelection');op.style.backgroundColor='';}}
7343tr.b.dispatchSimpleEvent(this,'selection-changed',false);},get numOps(){return this.opsList_.children.length;},get selectedOpIndex(){return this.selectedOpIndex_;},set selectedOpIndex(s){this.selectedOpIndex_=s;if(s===undefined){this.opsList_.selectedElement=this.selectedOp_;this.onSelectionChanged_();}else{if(s<0)throw new Error('Invalid index');if(s>=this.numOps)throw new Error('Invalid index');this.opsList_.selectedElement=this.opsList_.getElementByIndex(s+1);tr.ui.b.scrollIntoViewIfNeeded(this.opsList_.selectedElement);}},opsTaggedWithAnnotations_(ops){const annotationGroups=[];const opsWithoutAnnotations=[];for(let opIndex=0;opIndex<ops.length;opIndex++){const op=ops[opIndex];op.opIndex=opIndex;switch(op.cmd_string){case BEGIN_ANNOTATION:annotationGroups.push([]);break;case END_ANNOTATION:annotationGroups.pop();break;case ANNOTATION:annotationGroups[annotationGroups.length-1].push(op);break;default:{const annotations=[];let elementInfo={};annotationGroups.forEach(function(annotationGroup){elementInfo={};annotationGroup.forEach(function(annotation){annotation.info.forEach(function(info){if(info.includes(ANNOTATION_TAG)){elementInfo.tag=info.substring(info.indexOf(ANNOTATION_TAG)+
7344ANNOTATION_TAG.length).toLowerCase();}else if(info.includes(ANNOTATION_ID)){elementInfo.id=info.substring(info.indexOf(ANNOTATION_ID)+
7345ANNOTATION_ID.length);}else if(info.includes(ANNOTATION_CLASS)){elementInfo.class=info.substring(info.indexOf(ANNOTATION_CLASS)+
7346ANNOTATION_CLASS.length);}
7347annotations.push(info);});});});op.annotations=annotations;op.elementInfo=elementInfo;opsWithoutAnnotations.push(op);}}}
7348return opsWithoutAnnotations;}};return{PictureOpsListView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const THIS_DOC=document.currentScript.ownerDocument;const DisplayItemDebugger=tr.ui.b.define('tr-ui-e-chrome-cc-display-item-debugger');DisplayItemDebugger.prototype={__proto__:HTMLDivElement.prototype,decorate(){const node=tr.ui.b.instantiateTemplate('#tr-ui-e-chrome-cc-display-item-debugger-template',THIS_DOC);Polymer.dom(this).appendChild(node);this.style.flexGrow=1;this.style.flexShrink=1;this.style.flexBasis='auto';this.style.display='flex';this.pictureAsImageData_=undefined;this.zoomScaleValue_=1;this.sizeInfo_=Polymer.dom(this).querySelector('.size');this.rasterArea_=Polymer.dom(this).querySelector('raster-area');this.rasterArea_.style.flexGrow=1;this.rasterArea_.style.flexShrink=1;this.rasterArea_.style.flexBasis='auto';this.rasterArea_.style.backgroundColor='#ddd';this.rasterArea_.style.minHeight='200px';this.rasterArea_.style.minWidth='200px';this.rasterArea_.style.overflowY='auto';this.rasterArea_.style.paddingLeft='5px';this.rasterCanvas_=Polymer.dom(this.rasterArea_).querySelector('canvas');this.rasterCtx_=this.rasterCanvas_.getContext('2d');this.trackMouse_();this.displayItemInfo_=Polymer.dom(this).querySelector('display-item-info');this.displayItemInfo_.addEventListener('click',this.onDisplayItemInfoClick_.bind(this),false);this.displayItemListView_=new tr.ui.b.ListView();this.displayItemListView_.addEventListener('selection-changed',this.onDisplayItemListSelection_.bind(this));Polymer.dom(this.displayItemInfo_).appendChild(this.displayItemListView_);this.displayListFilename_=Polymer.dom(this).querySelector('.dlfilename');this.displayListExportButton_=Polymer.dom(this).querySelector('.dlexport');this.displayListExportButton_.addEventListener('click',this.onExportDisplayListClicked_.bind(this));this.skpFilename_=Polymer.dom(this).querySelector('.skpfilename');this.skpExportButton_=Polymer.dom(this).querySelector('.skpexport');this.skpExportButton_.addEventListener('click',this.onExportSkPictureClicked_.bind(this));const leftPanel=Polymer.dom(this).querySelector('left-panel');leftPanel.style.display='flex';leftPanel.style.flexDirection='column';leftPanel.style.minWidth='300px';leftPanel.style.overflowY='auto';leftPanel.children[0].paddingTop='2px';leftPanel.children[0].flexGrow=1;leftPanel.children[0].flexShrink=1;leftPanel.children[0].flexBasis='auto';leftPanel.children[0].children[0].style.borderBottom='1px solid #555';const leftPanelTitle=leftPanel.querySelector('.title');leftPanelTitle.style.fontWeight='bold';leftPanelTitle.style.marginLeft='5px';leftPanelTitle.style.marginright='5px';for(const div of leftPanel.querySelectorAll('.export')){div.style.margin='5px';}
7349const middleDragHandle=document.createElement('tr-ui-b-drag-handle');middleDragHandle.style.flexGrow=0;middleDragHandle.style.flexShrink=0;middleDragHandle.style.flexBasis='auto';middleDragHandle.horizontal=false;middleDragHandle.target=leftPanel;const rightPanel=Polymer.dom(this).querySelector('right-panel');rightPanel.style.display='flex';rightPanel.style.flexGrow=1;rightPanel.style.flexShrink=1;rightPanel.style.flexBasis='auto';this.infoBar_=document.createElement('tr-ui-b-info-bar');Polymer.dom(this.rasterArea_).insertBefore(this.infoBar_,this.rasterCanvas_);Polymer.dom(this).insertBefore(middleDragHandle,rightPanel);this.picture_=undefined;this.pictureOpsListView_=new tr.ui.e.chrome.cc.PictureOpsListView();this.pictureOpsListView_.style.overflowY='auto';Polymer.dom(rightPanel).insertBefore(this.pictureOpsListView_,this.rasterArea_);this.pictureOpsListDragHandle_=document.createElement('tr-ui-b-drag-handle');this.pictureOpsListDragHandle_.horizontal=false;this.pictureOpsListDragHandle_.target=this.pictureOpsListView_;Polymer.dom(rightPanel).insertBefore(this.pictureOpsListDragHandle_,this.rasterArea_);},get picture(){return this.picture_;},set displayItemList(displayItemList){this.displayItemList_=displayItemList;this.picture=this.displayItemList_;this.displayItemListView_.clear();this.displayItemList_.items.forEach(function(item){const listItem=document.createElement('tr-ui-e-chrome-cc-display-item-list-item');listItem.data=item;Polymer.dom(this.displayItemListView_).appendChild(listItem);}.bind(this));},set picture(picture){this.picture_=picture;const showOpsList=picture&&picture!==this.displayItemList_;this.updateDrawOpsList_(showOpsList);if(picture){const size=this.getRasterCanvasSize_();this.rasterCanvas_.width=size.width;this.rasterCanvas_.height=size.height;}
7350const bounds=this.rasterArea_.getBoundingClientRect();const selectorBounds=this.mouseModeSelector_.getBoundingClientRect();this.mouseModeSelector_.pos={x:(bounds.right-selectorBounds.width-10),y:bounds.top};this.rasterize_();this.scheduleUpdateContents_();},getRasterCanvasSize_(){const style=window.getComputedStyle(this.rasterArea_);let width=parseInt(style.width);let height=parseInt(style.height);if(this.picture_){width=Math.max(width,this.picture_.layerRect.width);height=Math.max(height,this.picture_.layerRect.height);}
7351return{width,height};},scheduleUpdateContents_(){if(this.updateContentsPending_)return;this.updateContentsPending_=true;tr.b.requestAnimationFrameInThisFrameIfPossible(this.updateContents_.bind(this));},updateContents_(){this.updateContentsPending_=false;if(this.picture_){Polymer.dom(this.sizeInfo_).textContent='('+
7352this.picture_.layerRect.width+' x '+
7353this.picture_.layerRect.height+')';}
7354if(!this.pictureAsImageData_)return;this.infoBar_.visible=false;this.infoBar_.removeAllButtons();if(this.pictureAsImageData_.error){this.infoBar_.message='Cannot rasterize...';this.infoBar_.addButton('More info...',function(e){const overlay=new tr.ui.b.Overlay();Polymer.dom(overlay).textContent=this.pictureAsImageData_.error;overlay.visible=true;e.stopPropagation();return false;}.bind(this));this.infoBar_.visible=true;}
7355this.drawPicture_();},drawPicture_(){const size=this.getRasterCanvasSize_();if(size.width!==this.rasterCanvas_.width){this.rasterCanvas_.width=size.width;}
7356if(size.height!==this.rasterCanvas_.height){this.rasterCanvas_.height=size.height;}
7357this.rasterCtx_.clearRect(0,0,size.width,size.height);if(!this.picture_||!this.pictureAsImageData_.imageData)return;const imgCanvas=this.pictureAsImageData_.asCanvas();const w=imgCanvas.width;const h=imgCanvas.height;this.rasterCtx_.drawImage(imgCanvas,0,0,w,h,0,0,w*this.zoomScaleValue_,h*this.zoomScaleValue_);},rasterize_(){if(this.picture_){this.picture_.rasterize({showOverdraw:false},this.onRasterComplete_.bind(this));}},onRasterComplete_(pictureAsImageData){this.pictureAsImageData_=pictureAsImageData;this.scheduleUpdateContents_();},onDisplayItemListSelection_(e){const selected=this.displayItemListView_.selectedElement;if(!selected){this.picture=this.displayItemList_;return;}
7358const index=Array.prototype.indexOf.call(this.displayItemListView_.children,selected);const displayItem=this.displayItemList_.items[index];if(displayItem&&displayItem.skp64){this.picture=new tr.e.cc.Picture(displayItem.skp64,this.displayItemList_.layerRect);}else{this.picture=undefined;}},onDisplayItemInfoClick_(e){if(e&&e.target===this.displayItemInfo_){this.displayItemListView_.selectedElement=undefined;}},updateDrawOpsList_(showOpsList){if(showOpsList){this.pictureOpsListView_.picture=this.picture_;if(this.pictureOpsListView_.numOps>0){this.pictureOpsListView_.style.display='block';this.pictureOpsListDragHandle_.style.display='block';}}else{this.pictureOpsListView_.style.display='none';this.pictureOpsListDragHandle_.style.display='none';}},trackMouse_(){this.mouseModeSelector_=document.createElement('tr-ui-b-mouse-mode-selector');this.mouseModeSelector_.targetElement=this.rasterArea_;Polymer.dom(this.rasterArea_).appendChild(this.mouseModeSelector_);this.mouseModeSelector_.supportedModeMask=tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM;this.mouseModeSelector_.mode=tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM;this.mouseModeSelector_.defaultMode=tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM;this.mouseModeSelector_.settingsKey='pictureDebugger.mouseModeSelector';this.mouseModeSelector_.addEventListener('beginzoom',this.onBeginZoom_.bind(this));this.mouseModeSelector_.addEventListener('updatezoom',this.onUpdateZoom_.bind(this));this.mouseModeSelector_.addEventListener('endzoom',this.onEndZoom_.bind(this));},onBeginZoom_(e){this.isZooming_=true;this.lastMouseViewPos_=this.extractRelativeMousePosition_(e);e.preventDefault();},onUpdateZoom_(e){if(!this.isZooming_)return;const currentMouseViewPos=this.extractRelativeMousePosition_(e);this.zoomScaleValue_+=((this.lastMouseViewPos_.y-currentMouseViewPos.y)*0.001);this.zoomScaleValue_=Math.max(this.zoomScaleValue_,0.1);this.drawPicture_();this.lastMouseViewPos_=currentMouseViewPos;},onEndZoom_(e){this.lastMouseViewPos_=undefined;this.isZooming_=false;e.preventDefault();},extractRelativeMousePosition_(e){return{x:e.clientX-this.rasterArea_.offsetLeft,y:e.clientY-this.rasterArea_.offsetTop};},saveFile_(filename,rawData){if(!rawData)return;const length=rawData.length;const arrayBuffer=new ArrayBuffer(length);const uint8Array=new Uint8Array(arrayBuffer);for(let c=0;c<length;c++){uint8Array[c]=rawData.charCodeAt(c);}
7359const blob=new Blob([uint8Array],{type:'application/octet-binary'});const blobUrl=window.URL.createObjectURL(blob);const link=document.createElementNS('http://www.w3.org/1999/xhtml','a');link.href=blobUrl;link.download=filename;const event=document.createEvent('MouseEvents');event.initMouseEvent('click',true,false,window,0,0,0,0,0,false,false,false,false,0,null);link.dispatchEvent(event);},onExportDisplayListClicked_(){const rawData=JSON.stringify(this.displayItemList_.items);this.saveFile_(this.displayListFilename_.value,rawData);},onExportSkPictureClicked_(){const rawData=tr.b.Base64.atob(this.picture_.getBase64SkpData());this.saveFile_(this.skpFilename_.value,rawData);}};return{DisplayItemDebugger,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const DisplayItemSnapshotView=tr.ui.b.define('tr-ui-e-chrome-cc-display-item-list-view',tr.ui.analysis.ObjectSnapshotView);DisplayItemSnapshotView.prototype={__proto__:tr.ui.analysis.ObjectSnapshotView.prototype,decorate(){this.style.display='flex';this.style.flexGrow=1;this.style.flexShrink=1;this.style.flexBasis='auto';this.displayItemDebugger_=new tr.ui.e.chrome.cc.DisplayItemDebugger();Polymer.dom(this).appendChild(this.displayItemDebugger_);},updateContents(){if(this.objectSnapshot_&&this.displayItemDebugger_){this.displayItemDebugger_.displayItemList=this.objectSnapshot_;}}};tr.ui.analysis.ObjectSnapshotView.register(DisplayItemSnapshotView,{typeNames:['cc::DisplayItemList'],showInstances:false});return{DisplayItemSnapshotView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const constants=tr.e.cc.constants;const RENDER_PASS_QUADS=Math.max(constants.ACTIVE_TREE,constants.PENDING_TREE)+1;const LayerPicker=tr.ui.b.define('tr-ui-e-chrome-cc-layer-picker');LayerPicker.prototype={__proto__:HTMLUnknownElement.prototype,decorate(){this.lthi_=undefined;this.controls_=document.createElement('top-controls');this.renderPassQuads_=false;this.style.display='flex';this.style.flexDirection='column';this.controls_.style.flexGrow=0;this.controls_.style.flexShrink=0;this.controls_.style.flexBasis='auto';this.controls_.style.backgroundImage='-webkit-gradient(linear, 0 0, 100% 0, from(#E5E5E5), to(#D1D1D1))';this.controls_.style.borderBottom='1px solid #8e8e8e';this.controls_.style.borderTop='1px solid white';this.controls_.style.display='inline';this.controls_.style.fontSize='14px';this.controls_.style.paddingLeft='2px';this.itemList_=new tr.ui.b.ListView();this.itemList_.style.flexGrow=1;this.itemList_.style.flexShrink=1;this.itemList_.style.flexBasis='auto';this.itemList_.style.fontFamily='monospace';this.itemList_.style.overflow='auto';Polymer.dom(this).appendChild(this.controls_);Polymer.dom(this).appendChild(this.itemList_);this.itemList_.addEventListener('selection-changed',this.onItemSelectionChanged_.bind(this));Polymer.dom(this.controls_).appendChild(tr.ui.b.createSelector(this,'whichTree','layerPicker.whichTree',constants.ACTIVE_TREE,[{label:'Active tree',value:constants.ACTIVE_TREE},{label:'Pending tree',value:constants.PENDING_TREE},{label:'Render pass quads',value:RENDER_PASS_QUADS}]));this.showPureTransformLayers_=false;const showPureTransformLayers=tr.ui.b.createCheckBox(this,'showPureTransformLayers','layerPicker.showPureTransformLayers',false,'Transform layers');Polymer.dom(showPureTransformLayers).classList.add('show-transform-layers');showPureTransformLayers.title='When checked, pure transform layers are shown';Polymer.dom(this.controls_).appendChild(showPureTransformLayers);},get lthiSnapshot(){return this.lthiSnapshot_;},set lthiSnapshot(lthiSnapshot){this.lthiSnapshot_=lthiSnapshot;this.updateContents_();},get whichTree(){return this.renderPassQuads_?constants.ACTIVE_TREE:this.whichTree_;},set whichTree(whichTree){this.whichTree_=whichTree;this.renderPassQuads_=(whichTree===RENDER_PASS_QUADS);this.updateContents_();tr.b.dispatchSimpleEvent(this,'selection-change',false);},get layerTreeImpl(){if(this.lthiSnapshot===undefined)return undefined;return this.lthiSnapshot.getTree(this.whichTree);},get isRenderPassQuads(){return this.renderPassQuads_;},get showPureTransformLayers(){return this.showPureTransformLayers_;},set showPureTransformLayers(show){if(this.showPureTransformLayers_===show)return;this.showPureTransformLayers_=show;this.updateContents_();},getRenderPassInfos_(){if(!this.lthiSnapshot_)return[];const renderPassInfo=[];if(!this.lthiSnapshot_.args.frame||!this.lthiSnapshot_.args.frame.renderPasses){return renderPassInfo;}
7360const renderPasses=this.lthiSnapshot_.args.frame.renderPasses;for(let i=0;i<renderPasses.length;++i){const info={renderPass:renderPasses[i],depth:0,id:i,name:'cc::RenderPass'};renderPassInfo.push(info);}
7361return renderPassInfo;},getLayerInfos_(){if(!this.lthiSnapshot_)return[];const tree=this.lthiSnapshot_.getTree(this.whichTree_);if(!tree)return[];const layerInfos=[];const showPureTransformLayers=this.showPureTransformLayers_;function isPureTransformLayer(layer){if(layer.args.compositingReasons&&layer.args.compositingReasons.length!==1&&layer.args.compositingReasons[0]!=='No reasons given'){return false;}
7362if(layer.args.drawsContent)return false;return true;}
7363const visitedLayers={};function visitLayer(layer,depth,isMask,isReplica){if(visitedLayers[layer.layerId])return;visitedLayers[layer.layerId]=true;const info={layer,depth};if(layer.args.drawsContent){info.name=layer.objectInstance.name;}else{info.name='cc::LayerImpl';}
7364if(layer.usingGpuRasterization){info.name+=' (G)';}
7365info.isMaskLayer=isMask;info.replicaLayer=isReplica;if(showPureTransformLayers||!isPureTransformLayer(layer)){layerInfos.push(info);}}
7366tree.iterLayers(visitLayer);return layerInfos;},updateContents_(){if(this.renderPassQuads_){this.updateRenderPassContents_();}else{this.updateLayerContents_();}},updateRenderPassContents_(){this.itemList_.clear();let selectedRenderPassId;if(this.selection_&&this.selection_.associatedRenderPassId){selectedRenderPassId=this.selection_.associatedRenderPassId;}
7367const renderPassInfos=this.getRenderPassInfos_();renderPassInfos.forEach(function(renderPassInfo){const renderPass=renderPassInfo.renderPass;const id=renderPassInfo.id;const item=this.createElementWithDepth_(renderPassInfo.depth);const labelEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());Polymer.dom(labelEl).textContent=renderPassInfo.name+' '+id;item.renderPass=renderPass;item.renderPassId=id;Polymer.dom(this.itemList_).appendChild(item);if(id===selectedRenderPassId){renderPass.selectionState=tr.model.SelectionState.SELECTED;}},this);},updateLayerContents_(){this.changingItemSelection_=true;try{this.itemList_.clear();let selectedLayerId;if(this.selection_&&this.selection_.associatedLayerId){selectedLayerId=this.selection_.associatedLayerId;}
7368const layerInfos=this.getLayerInfos_();layerInfos.forEach(function(layerInfo){const layer=layerInfo.layer;const id=layer.layerId;const item=this.createElementWithDepth_(layerInfo.depth);const labelEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());Polymer.dom(labelEl).textContent=layerInfo.name+' '+id;const notesEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());if(layerInfo.isMaskLayer){Polymer.dom(notesEl).textContent+='(mask)';}
7369if(layerInfo.isReplicaLayer){Polymer.dom(notesEl).textContent+='(replica)';}
7370if((layer.gpuMemoryUsageInBytes!==undefined)&&(layer.gpuMemoryUsageInBytes>0)){const gpuUsageStr=tr.b.Unit.byName.sizeInBytes.format(layer.gpuMemoryUsageInBytes);Polymer.dom(notesEl).textContent+=' ('+gpuUsageStr+' MiB)';}
7371item.layer=layer;Polymer.dom(this.itemList_).appendChild(item);if(layer.layerId===selectedLayerId){layer.selectionState=tr.model.SelectionState.SELECTED;item.selected=true;}},this);}finally{this.changingItemSelection_=false;}},createElementWithDepth_(depth){const item=document.createElement('div');const indentEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());indentEl.style.whiteSpace='pre';for(let i=0;i<depth;i++){Polymer.dom(indentEl).textContent=Polymer.dom(indentEl).textContent+' ';}
7372return item;},onItemSelectionChanged_(e){if(this.changingItemSelection_)return;if(this.renderPassQuads_){this.onRenderPassSelected_(e);}else{this.onLayerSelected_(e);}
7373tr.b.dispatchSimpleEvent(this,'selection-change',false);},onRenderPassSelected_(e){let selectedRenderPass;let selectedRenderPassId;if(this.itemList_.selectedElement){selectedRenderPass=this.itemList_.selectedElement.renderPass;selectedRenderPassId=this.itemList_.selectedElement.renderPassId;}
7374if(selectedRenderPass){this.selection_=new tr.ui.e.chrome.cc.RenderPassSelection(selectedRenderPass,selectedRenderPassId);}else{this.selection_=undefined;}},onLayerSelected_(e){let selectedLayer;if(this.itemList_.selectedElement){selectedLayer=this.itemList_.selectedElement.layer;}
7375if(selectedLayer){this.selection_=new tr.ui.e.chrome.cc.LayerSelection(selectedLayer);}else{this.selection_=undefined;}},get selection(){return this.selection_;},set selection(selection){if(this.selection_===selection)return;this.selection_=selection;this.updateContents_();}};return{LayerPicker,};});'use strict';tr.exportTo('tr.e.cc',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;function RenderPassSnapshot(){ObjectSnapshot.apply(this,arguments);}
7376RenderPassSnapshot.prototype={__proto__:ObjectSnapshot.prototype,preInitialize(){tr.e.cc.preInitializeObject(this);},initialize(){tr.e.cc.moveRequiredFieldsFromArgsToToplevel(this,['quadList']);}};ObjectSnapshot.subTypes.register(RenderPassSnapshot,{typeName:'cc::RenderPass'});return{RenderPassSnapshot,};});'use strict';tr.exportTo('tr.ui.b',function(){const deg2rad=tr.b.math.deg2rad;const constants={DEFAULT_SCALE:0.5,DEFAULT_EYE_DISTANCE:10000,MINIMUM_DISTANCE:1000,MAXIMUM_DISTANCE:100000,FOV:15,RESCALE_TIMEOUT_MS:200,MAXIMUM_TILT:80,SETTINGS_NAMESPACE:'tr.ui_camera'};const Camera=tr.ui.b.define('camera');Camera.prototype={__proto__:HTMLUnknownElement.prototype,decorate(eventSource){this.eventSource_=eventSource;this.eventSource_.addEventListener('beginpan',this.onPanBegin_.bind(this));this.eventSource_.addEventListener('updatepan',this.onPanUpdate_.bind(this));this.eventSource_.addEventListener('endpan',this.onPanEnd_.bind(this));this.eventSource_.addEventListener('beginzoom',this.onZoomBegin_.bind(this));this.eventSource_.addEventListener('updatezoom',this.onZoomUpdate_.bind(this));this.eventSource_.addEventListener('endzoom',this.onZoomEnd_.bind(this));this.eventSource_.addEventListener('beginrotate',this.onRotateBegin_.bind(this));this.eventSource_.addEventListener('updaterotate',this.onRotateUpdate_.bind(this));this.eventSource_.addEventListener('endrotate',this.onRotateEnd_.bind(this));this.eye_=[0,0,constants.DEFAULT_EYE_DISTANCE];this.gazeTarget_=[0,0,0];this.rotation_=[0,0];this.pixelRatio_=window.devicePixelRatio||1;},get modelViewMatrix(){const mvMatrix=mat4.create();mat4.lookAt(mvMatrix,this.eye_,this.gazeTarget_,[0,1,0]);return mvMatrix;},get projectionMatrix(){const rect=tr.ui.b.windowRectForElement(this.canvas_).scaleSize(this.pixelRatio_);const aspectRatio=rect.width/rect.height;const matrix=mat4.create();mat4.perspective(matrix,deg2rad(constants.FOV),aspectRatio,1,100000);return matrix;},set canvas(c){this.canvas_=c;},set deviceRect(rect){this.deviceRect_=rect;},get stackingDistanceDampening(){const gazeVector=[this.gazeTarget_[0]-this.eye_[0],this.gazeTarget_[1]-this.eye_[1],this.gazeTarget_[2]-this.eye_[2]];vec3.normalize(gazeVector,gazeVector);return 1+gazeVector[2];},loadCameraFromSettings(settings){this.eye_=settings.get('eye',this.eye_,constants.SETTINGS_NAMESPACE);this.gazeTarget_=settings.get('gaze_target',this.gazeTarget_,constants.SETTINGS_NAMESPACE);this.rotation_=settings.get('rotation',this.rotation_,constants.SETTINGS_NAMESPACE);this.dispatchRenderEvent_();},saveCameraToSettings(settings){settings.set('eye',this.eye_,constants.SETTINGS_NAMESPACE);settings.set('gaze_target',this.gazeTarget_,constants.SETTINGS_NAMESPACE);settings.set('rotation',this.rotation_,constants.SETTINGS_NAMESPACE);},resetCamera(){this.eye_=[0,0,constants.DEFAULT_EYE_DISTANCE];this.gazeTarget_=[0,0,0];this.rotation_=[0,0];const settings=tr.b.SessionSettings();const keys=settings.keys(constants.SETTINGS_NAMESPACE);if(keys.length!==0){this.loadCameraFromSettings(settings);return;}
7377if(this.deviceRect_){const rect=tr.ui.b.windowRectForElement(this.canvas_).scaleSize(this.pixelRatio_);this.eye_[0]=this.deviceRect_.width/2;this.eye_[1]=this.deviceRect_.height/2;this.gazeTarget_[0]=this.deviceRect_.width/2;this.gazeTarget_[1]=this.deviceRect_.height/2;}
7378this.saveCameraToSettings(settings);this.dispatchRenderEvent_();},updatePanByDelta(delta){const rect=tr.ui.b.windowRectForElement(this.canvas_).scaleSize(this.pixelRatio_);const eyeVector=[this.eye_[0]-this.gazeTarget_[0],this.eye_[1]-this.gazeTarget_[1],this.eye_[2]-this.gazeTarget_[2]];const length=vec3.length(eyeVector);vec3.normalize(eyeVector,eyeVector);const halfFov=constants.FOV/2;const multiplier=2.0*length*Math.tan(deg2rad(halfFov))/rect.height;const up=[0,1,0];const rotMatrix=mat4.create();mat4.rotate(rotMatrix,rotMatrix,deg2rad(this.rotation_[1]),[0,1,0]);mat4.rotate(rotMatrix,rotMatrix,deg2rad(this.rotation_[0]),[1,0,0]);vec3.transformMat4(up,up,rotMatrix);const right=[0,0,0];vec3.cross(right,eyeVector,up);vec3.normalize(right,right);for(let i=0;i<3;++i){this.gazeTarget_[i]+=delta[0]*multiplier*right[i]-delta[1]*multiplier*up[i];this.eye_[i]=this.gazeTarget_[i]+length*eyeVector[i];}
7379if(Math.abs(this.gazeTarget_[2])>1e-6){const gazeVector=[-eyeVector[0],-eyeVector[1],-eyeVector[2]];const newLength=tr.b.math.clamp(-this.eye_[2]/gazeVector[2],constants.MINIMUM_DISTANCE,constants.MAXIMUM_DISTANCE);for(let i=0;i<3;++i){this.gazeTarget_[i]=this.eye_[i]+newLength*gazeVector[i];}}
7380this.saveCameraToSettings(tr.b.SessionSettings());this.dispatchRenderEvent_();},updateZoomByDelta(delta){let deltaY=delta[1];deltaY=tr.b.math.clamp(deltaY,-50,50);let scale=1.0-deltaY/100.0;const eyeVector=[0,0,0];vec3.subtract(eyeVector,this.eye_,this.gazeTarget_);const length=vec3.length(eyeVector);if(length*scale<constants.MINIMUM_DISTANCE){scale=constants.MINIMUM_DISTANCE/length;}else if(length*scale>constants.MAXIMUM_DISTANCE){scale=constants.MAXIMUM_DISTANCE/length;}
7381vec3.scale(eyeVector,eyeVector,scale);vec3.add(this.eye_,this.gazeTarget_,eyeVector);this.saveCameraToSettings(tr.b.SessionSettings());this.dispatchRenderEvent_();},updateRotateByDelta(delta){delta[0]*=0.5;delta[1]*=0.5;if(Math.abs(this.rotation_[0]+delta[1])>constants.MAXIMUM_TILT){return;}
7382if(Math.abs(this.rotation_[1]-delta[0])>constants.MAXIMUM_TILT){return;}
7383const eyeVector=[0,0,0,0];vec3.subtract(eyeVector,this.eye_,this.gazeTarget_);const rotMatrix=mat4.create();mat4.rotate(rotMatrix,rotMatrix,-deg2rad(this.rotation_[0]),[1,0,0]);mat4.rotate(rotMatrix,rotMatrix,-deg2rad(this.rotation_[1]),[0,1,0]);vec4.transformMat4(eyeVector,eyeVector,rotMatrix);this.rotation_[0]+=delta[1];this.rotation_[1]-=delta[0];mat4.identity(rotMatrix);mat4.rotate(rotMatrix,rotMatrix,deg2rad(this.rotation_[1]),[0,1,0]);mat4.rotate(rotMatrix,rotMatrix,deg2rad(this.rotation_[0]),[1,0,0]);vec4.transformMat4(eyeVector,eyeVector,rotMatrix);vec3.add(this.eye_,this.gazeTarget_,eyeVector);this.saveCameraToSettings(tr.b.SessionSettings());this.dispatchRenderEvent_();},onPanBegin_(e){this.panning_=true;this.lastMousePosition_=this.getMousePosition_(e);},onPanUpdate_(e){if(!this.panning_)return;const delta=this.getMouseDelta_(e,this.lastMousePosition_);this.lastMousePosition_=this.getMousePosition_(e);this.updatePanByDelta(delta);},onPanEnd_(e){this.panning_=false;},onZoomBegin_(e){this.zooming_=true;const p=this.getMousePosition_(e);this.lastMousePosition_=p;this.zoomPoint_=p;},onZoomUpdate_(e){if(!this.zooming_)return;const delta=this.getMouseDelta_(e,this.lastMousePosition_);this.lastMousePosition_=this.getMousePosition_(e);this.updateZoomByDelta(delta);},onZoomEnd_(e){this.zooming_=false;this.zoomPoint_=undefined;},onRotateBegin_(e){this.rotating_=true;this.lastMousePosition_=this.getMousePosition_(e);},onRotateUpdate_(e){if(!this.rotating_)return;const delta=this.getMouseDelta_(e,this.lastMousePosition_);this.lastMousePosition_=this.getMousePosition_(e);this.updateRotateByDelta(delta);},onRotateEnd_(e){this.rotating_=false;},getMousePosition_(e){const rect=tr.ui.b.windowRectForElement(this.canvas_);return[(e.clientX-rect.x)*this.pixelRatio_,(e.clientY-rect.y)*this.pixelRatio_];},getMouseDelta_(e,p){const newP=this.getMousePosition_(e);return[newP[0]-p[0],newP[1]-p[1]];},dispatchRenderEvent_(){tr.b.dispatchSimpleEvent(this,'renderrequired',false,false);}};return{Camera,};});'use strict';tr.exportTo('tr.ui.b',function(){const THIS_DOC=document.currentScript.ownerDocument;const constants={};constants.IMAGE_LOAD_RETRY_TIME_MS=500;constants.SUBDIVISION_MINIMUM=1;constants.SUBDIVISION_RECURSION_DEPTH=3;constants.SUBDIVISION_DEPTH_THRESHOLD=100;constants.FAR_PLANE_DISTANCE=10000;function drawTexturedTriangle(ctx,img,p0,p1,p2,t0,t1,t2){const tmpP0=[p0[0],p0[1]];const tmpP1=[p1[0],p1[1]];const tmpP2=[p2[0],p2[1]];const tmpT0=[t0[0],t0[1]];const tmpT1=[t1[0],t1[1]];const tmpT2=[t2[0],t2[1]];ctx.beginPath();ctx.moveTo(tmpP0[0],tmpP0[1]);ctx.lineTo(tmpP1[0],tmpP1[1]);ctx.lineTo(tmpP2[0],tmpP2[1]);ctx.closePath();tmpP1[0]-=tmpP0[0];tmpP1[1]-=tmpP0[1];tmpP2[0]-=tmpP0[0];tmpP2[1]-=tmpP0[1];tmpT1[0]-=tmpT0[0];tmpT1[1]-=tmpT0[1];tmpT2[0]-=tmpT0[0];tmpT2[1]-=tmpT0[1];const det=1/(tmpT1[0]*tmpT2[1]-tmpT2[0]*tmpT1[1]);const a=(tmpT2[1]*tmpP1[0]-tmpT1[1]*tmpP2[0])*det;const b=(tmpT2[1]*tmpP1[1]-tmpT1[1]*tmpP2[1])*det;const c=(tmpT1[0]*tmpP2[0]-tmpT2[0]*tmpP1[0])*det;const d=(tmpT1[0]*tmpP2[1]-tmpT2[0]*tmpP1[1])*det;const e=tmpP0[0]-a*tmpT0[0]-c*tmpT0[1];const f=tmpP0[1]-b*tmpT0[0]-d*tmpT0[1];ctx.save();ctx.transform(a,b,c,d,e,f);ctx.clip();ctx.drawImage(img,0,0);ctx.restore();}
7384function drawTriangleSub(ctx,img,p0,p1,p2,t0,t1,t2,opt_recursionDepth){const depth=opt_recursionDepth||0;let subdivisionIndex=0;if(depth<constants.SUBDIVISION_MINIMUM){subdivisionIndex=7;}else if(depth<constants.SUBDIVISION_RECURSION_DEPTH){if(Math.abs(p0[2]-p1[2])>constants.SUBDIVISION_DEPTH_THRESHOLD){subdivisionIndex+=1;}
7385if(Math.abs(p0[2]-p2[2])>constants.SUBDIVISION_DEPTH_THRESHOLD){subdivisionIndex+=2;}
7386if(Math.abs(p1[2]-p2[2])>constants.SUBDIVISION_DEPTH_THRESHOLD){subdivisionIndex+=4;}}
7387const p01=vec4.create();const p02=vec4.create();const p12=vec4.create();const t01=vec2.create();const t02=vec2.create();const t12=vec2.create();for(let i=0;i<2;++i){p0[i]*=p0[2];p1[i]*=p1[2];p2[i]*=p2[2];}
7388for(let i=0;i<4;++i){p01[i]=(p0[i]+p1[i])/2;p02[i]=(p0[i]+p2[i])/2;p12[i]=(p1[i]+p2[i])/2;}
7389for(let i=0;i<2;++i){p0[i]/=p0[2];p1[i]/=p1[2];p2[i]/=p2[2];p01[i]/=p01[2];p02[i]/=p02[2];p12[i]/=p12[2];}
7390for(let i=0;i<2;++i){t01[i]=(t0[i]+t1[i])/2;t02[i]=(t0[i]+t2[i])/2;t12[i]=(t1[i]+t2[i])/2;}
7391switch(subdivisionIndex){case 1:drawTriangleSub(ctx,img,p0,p01,p2,t0,t01,t2,depth+1);drawTriangleSub(ctx,img,p01,p1,p2,t01,t1,t2,depth+1);break;case 2:drawTriangleSub(ctx,img,p0,p1,p02,t0,t1,t02,depth+1);drawTriangleSub(ctx,img,p1,p02,p2,t1,t02,t2,depth+1);break;case 3:drawTriangleSub(ctx,img,p0,p01,p02,t0,t01,t02,depth+1);drawTriangleSub(ctx,img,p02,p01,p2,t02,t01,t2,depth+1);drawTriangleSub(ctx,img,p01,p1,p2,t01,t1,t2,depth+1);break;case 4:drawTriangleSub(ctx,img,p0,p12,p2,t0,t12,t2,depth+1);drawTriangleSub(ctx,img,p0,p1,p12,t0,t1,t12,depth+1);break;case 5:drawTriangleSub(ctx,img,p0,p01,p2,t0,t01,t2,depth+1);drawTriangleSub(ctx,img,p2,p01,p12,t2,t01,t12,depth+1);drawTriangleSub(ctx,img,p01,p1,p12,t01,t1,t12,depth+1);break;case 6:drawTriangleSub(ctx,img,p0,p12,p02,t0,t12,t02,depth+1);drawTriangleSub(ctx,img,p0,p1,p12,t0,t1,t12,depth+1);drawTriangleSub(ctx,img,p02,p12,p2,t02,t12,t2,depth+1);break;case 7:drawTriangleSub(ctx,img,p0,p01,p02,t0,t01,t02,depth+1);drawTriangleSub(ctx,img,p01,p12,p02,t01,t12,t02,depth+1);drawTriangleSub(ctx,img,p01,p1,p12,t01,t1,t12,depth+1);drawTriangleSub(ctx,img,p02,p12,p2,t02,t12,t2,depth+1);break;default:drawTexturedTriangle(ctx,img,p0,p1,p2,t0,t1,t2);break;}}
7392const tmpVec4=vec4.create();function transform(transformed,point,matrix,viewport){vec4.set(tmpVec4,point[0],point[1],0,1);vec4.transformMat4(tmpVec4,tmpVec4,matrix);let w=tmpVec4[3];if(w<1e-6)w=1e-6;transformed[0]=((tmpVec4[0]/w)+1)*viewport.width/2;transformed[1]=((tmpVec4[1]/w)+1)*viewport.height/2;transformed[2]=w;}
7393function drawProjectedQuadBackgroundToContext(quad,p1,p2,p3,p4,ctx,quadCanvas){if(quad.imageData){quadCanvas.width=quad.imageData.width;quadCanvas.height=quad.imageData.height;quadCanvas.getContext('2d').putImageData(quad.imageData,0,0);const quadBBox=new tr.b.math.BBox2();quadBBox.addQuad(quad);const iw=quadCanvas.width;const ih=quadCanvas.height;drawTriangleSub(ctx,quadCanvas,p1,p2,p4,[0,0],[iw,0],[0,ih]);drawTriangleSub(ctx,quadCanvas,p2,p3,p4,[iw,0],[iw,ih],[0,ih]);}
7394if(quad.backgroundColor){ctx.fillStyle=quad.backgroundColor;ctx.beginPath();ctx.moveTo(p1[0],p1[1]);ctx.lineTo(p2[0],p2[1]);ctx.lineTo(p3[0],p3[1]);ctx.lineTo(p4[0],p4[1]);ctx.closePath();ctx.fill();}}
7395function drawProjectedQuadOutlineToContext(quad,p1,p2,p3,p4,ctx,quadCanvas){ctx.beginPath();ctx.moveTo(p1[0],p1[1]);ctx.lineTo(p2[0],p2[1]);ctx.lineTo(p3[0],p3[1]);ctx.lineTo(p4[0],p4[1]);ctx.closePath();ctx.save();if(quad.borderColor){ctx.strokeStyle=quad.borderColor;}else{ctx.strokeStyle='rgb(128,128,128)';}
7396if(quad.shadowOffset){ctx.shadowColor='rgb(0, 0, 0)';ctx.shadowOffsetX=quad.shadowOffset[0];ctx.shadowOffsetY=quad.shadowOffset[1];if(quad.shadowBlur){ctx.shadowBlur=quad.shadowBlur;}}
7397if(quad.borderWidth){ctx.lineWidth=quad.borderWidth;}else{ctx.lineWidth=1;}
7398ctx.stroke();ctx.restore();}
7399function drawProjectedQuadSelectionOutlineToContext(quad,p1,p2,p3,p4,ctx,quadCanvas){if(!quad.upperBorderColor)return;ctx.lineWidth=8;ctx.strokeStyle=quad.upperBorderColor;ctx.beginPath();ctx.moveTo(p1[0],p1[1]);ctx.lineTo(p2[0],p2[1]);ctx.lineTo(p3[0],p3[1]);ctx.lineTo(p4[0],p4[1]);ctx.closePath();ctx.stroke();}
7400function drawProjectedQuadToContext(passNumber,quad,p1,p2,p3,p4,ctx,quadCanvas){if(passNumber===0){drawProjectedQuadBackgroundToContext(quad,p1,p2,p3,p4,ctx,quadCanvas);}else if(passNumber===1){drawProjectedQuadOutlineToContext(quad,p1,p2,p3,p4,ctx,quadCanvas);}else if(passNumber===2){drawProjectedQuadSelectionOutlineToContext(quad,p1,p2,p3,p4,ctx,quadCanvas);}else{throw new Error('Invalid pass number');}}
7401const tmpP1=vec3.create();const tmpP2=vec3.create();const tmpP3=vec3.create();const tmpP4=vec3.create();function transformAndProcessQuads(matrix,viewport,quads,numPasses,handleQuadFunc,opt_arg1,opt_arg2){for(let passNumber=0;passNumber<numPasses;passNumber++){for(let i=0;i<quads.length;i++){const quad=quads[i];transform(tmpP1,quad.p1,matrix,viewport);transform(tmpP2,quad.p2,matrix,viewport);transform(tmpP3,quad.p3,matrix,viewport);transform(tmpP4,quad.p4,matrix,viewport);handleQuadFunc(passNumber,quad,tmpP1,tmpP2,tmpP3,tmpP4,opt_arg1,opt_arg2);}}}
7402const QuadStackView=tr.ui.b.define('quad-stack-view');QuadStackView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.className='quad-stack-view';this.style.display='block';this.style.float='left';this.style.height='100%';this.style.overflow='hidden';this.style.position='relative';this.style.width='100%';const node=tr.ui.b.instantiateTemplate('#quad-stack-view-template',THIS_DOC);Polymer.dom(this).appendChild(node);this.updateHeaderVisibility_();const header=Polymer.dom(this).querySelector('#header');header.style.position='absolute';header.style.fontSize='70%';header.style.top='10px';header.style.left='10px';header.style.width='800px';this.canvas_=Polymer.dom(this).querySelector('#canvas');this.chromeImages_={left:Polymer.dom(this).querySelector('#chrome-left'),mid:Polymer.dom(this).querySelector('#chrome-mid'),right:Polymer.dom(this).querySelector('#chrome-right')};const stackingDistanceSlider=Polymer.dom(this).querySelector('#stacking-distance-slider');stackingDistanceSlider.style.position='absolute';stackingDistanceSlider.style.fontSize='70%';stackingDistanceSlider.style.top='10px';stackingDistanceSlider.style.right='10px';stackingDistanceSlider.value=tr.b.Settings.get('quadStackView.stackingDistance',45);stackingDistanceSlider.addEventListener('change',this.onStackingDistanceChange_.bind(this));stackingDistanceSlider.addEventListener('input',this.onStackingDistanceChange_.bind(this));this.trackMouse_();this.camera_=new tr.ui.b.Camera(this.mouseModeSelector_);this.camera_.addEventListener('renderrequired',this.onRenderRequired_.bind(this));this.cameraWasReset_=false;this.camera_.canvas=this.canvas_;this.viewportRect_=tr.b.math.Rect.fromXYWH(0,0,0,0);this.pixelRatio_=window.devicePixelRatio||1;},updateHeaderVisibility_(){if(this.headerText){Polymer.dom(this).querySelector('#header').style.display='';}else{Polymer.dom(this).querySelector('#header').style.display='none';}},get headerText(){return Polymer.dom(this).querySelector('#header').textContent;},set headerText(headerText){Polymer.dom(this).querySelector('#header').textContent=headerText;this.updateHeaderVisibility_();},onStackingDistanceChange_(e){tr.b.Settings.set('quadStackView.stackingDistance',this.stackingDistance);this.scheduleRender();e.stopPropagation();},get stackingDistance(){return Polymer.dom(this).querySelector('#stacking-distance-slider').value;},get mouseModeSelector(){return this.mouseModeSelector_;},get camera(){return this.camera_;},set quads(q){this.quads_=q;this.scheduleRender();},set deviceRect(rect){if(!rect||rect.equalTo(this.deviceRect_))return;this.deviceRect_=rect;this.camera_.deviceRect=rect;this.chromeQuad_=undefined;},resize(){if(!this.offsetParent)return true;const width=parseInt(window.getComputedStyle(this.offsetParent).width);const height=parseInt(window.getComputedStyle(this.offsetParent).height);const rect=tr.b.math.Rect.fromXYWH(0,0,width,height);if(rect.equalTo(this.viewportRect_))return false;this.viewportRect_=rect;this.style.width=width+'px';this.style.height=height+'px';this.canvas_.style.width=width+'px';this.canvas_.style.height=height+'px';this.canvas_.width=this.pixelRatio_*width;this.canvas_.height=this.pixelRatio_*height;if(!this.cameraWasReset_){this.camera_.resetCamera();this.cameraWasReset_=true;}
7403return true;},readyToDraw(){if(!this.chromeImages_.left.src){let leftContent=window.getComputedStyle(this.chromeImages_.left).backgroundImage;leftContent=tr.ui.b.extractUrlString(leftContent);let midContent=window.getComputedStyle(this.chromeImages_.mid).backgroundImage;midContent=tr.ui.b.extractUrlString(midContent);let rightContent=window.getComputedStyle(this.chromeImages_.right).backgroundImage;rightContent=tr.ui.b.extractUrlString(rightContent);this.chromeImages_.left.src=leftContent;this.chromeImages_.mid.src=midContent;this.chromeImages_.right.src=rightContent;}
7404return(this.chromeImages_.left.height>0)&&(this.chromeImages_.mid.height>0)&&(this.chromeImages_.right.height>0);},get chromeQuad(){if(this.chromeQuad_)return this.chromeQuad_;const chromeCanvas=document.createElement('canvas');const offsetY=this.chromeImages_.left.height;chromeCanvas.width=this.deviceRect_.width;chromeCanvas.height=this.deviceRect_.height+offsetY;const leftWidth=this.chromeImages_.left.width;const midWidth=this.chromeImages_.mid.width;const rightWidth=this.chromeImages_.right.width;const chromeCtx=chromeCanvas.getContext('2d');chromeCtx.drawImage(this.chromeImages_.left,0,0);chromeCtx.save();chromeCtx.translate(leftWidth,0);const s=(this.deviceRect_.width-leftWidth-rightWidth)/midWidth;chromeCtx.scale(s,1);chromeCtx.drawImage(this.chromeImages_.mid,0,0);chromeCtx.restore();chromeCtx.drawImage(this.chromeImages_.right,leftWidth+s*midWidth,0);const chromeRect=tr.b.math.Rect.fromXYWH(this.deviceRect_.x,this.deviceRect_.y-offsetY,this.deviceRect_.width,this.deviceRect_.height+offsetY);const chromeQuad=tr.b.math.Quad.fromRect(chromeRect);chromeQuad.stackingGroupId=this.maxStackingGroupId_+1;chromeQuad.imageData=chromeCtx.getImageData(0,0,chromeCanvas.width,chromeCanvas.height);chromeQuad.shadowOffset=[0,0];chromeQuad.shadowBlur=5;chromeQuad.borderWidth=3;this.chromeQuad_=chromeQuad;return this.chromeQuad_;},scheduleRender(){if(this.redrawScheduled_)return false;this.redrawScheduled_=true;tr.b.requestAnimationFrame(this.render,this);},onRenderRequired_(e){this.scheduleRender();},stackTransformAndProcessQuads_(numPasses,handleQuadFunc,includeChromeQuad,opt_arg1,opt_arg2){const mv=this.camera_.modelViewMatrix;const p=this.camera_.projectionMatrix;const viewport=tr.b.math.Rect.fromXYWH(0,0,this.canvas_.width,this.canvas_.height);const quadStacks=[];for(let i=0;i<this.quads_.length;++i){const quad=this.quads_[i];const stackingId=quad.stackingGroupId||0;while(stackingId>=quadStacks.length){quadStacks.push([]);}
7405quadStacks[stackingId].push(quad);}
7406const mvp=mat4.create();this.maxStackingGroupId_=quadStacks.length;const effectiveStackingDistance=this.stackingDistance*this.camera_.stackingDistanceDampening;mat4.multiply(mvp,p,mv);for(let i=0;i<quadStacks.length;++i){transformAndProcessQuads(mvp,viewport,quadStacks[i],numPasses,handleQuadFunc,opt_arg1,opt_arg2);mat4.translate(mv,mv,[0,0,effectiveStackingDistance]);mat4.multiply(mvp,p,mv);}
7407if(includeChromeQuad&&this.deviceRect_){transformAndProcessQuads(mvp,viewport,[this.chromeQuad],numPasses,drawProjectedQuadToContext,opt_arg1,opt_arg2);}},render(){this.redrawScheduled_=false;if(!this.readyToDraw()){setTimeout(this.scheduleRender.bind(this),constants.IMAGE_LOAD_RETRY_TIME_MS);return;}
7408if(!this.quads_)return;const canvasCtx=this.canvas_.getContext('2d');if(!this.resize()){canvasCtx.clearRect(0,0,this.canvas_.width,this.canvas_.height);}
7409const quadCanvas=document.createElement('canvas');this.stackTransformAndProcessQuads_(3,drawProjectedQuadToContext,true,canvasCtx,quadCanvas);quadCanvas.width=0;},trackMouse_(){this.mouseModeSelector_=document.createElement('tr-ui-b-mouse-mode-selector');this.mouseModeSelector_.targetElement=this.canvas_;this.mouseModeSelector_.supportedModeMask=tr.ui.b.MOUSE_SELECTOR_MODE.SELECTION|tr.ui.b.MOUSE_SELECTOR_MODE.PANSCAN|tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM|tr.ui.b.MOUSE_SELECTOR_MODE.ROTATE;this.mouseModeSelector_.mode=tr.ui.b.MOUSE_SELECTOR_MODE.PANSCAN;this.mouseModeSelector_.pos={x:0,y:100};Polymer.dom(this).appendChild(this.mouseModeSelector_);this.mouseModeSelector_.settingsKey='quadStackView.mouseModeSelector';this.mouseModeSelector_.setModifierForAlternateMode(tr.ui.b.MOUSE_SELECTOR_MODE.ROTATE,tr.ui.b.MODIFIER.SHIFT);this.mouseModeSelector_.setModifierForAlternateMode(tr.ui.b.MOUSE_SELECTOR_MODE.PANSCAN,tr.ui.b.MODIFIER.SPACE);this.mouseModeSelector_.setModifierForAlternateMode(tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM,tr.ui.b.MODIFIER.CMD_OR_CTRL);this.mouseModeSelector_.addEventListener('updateselection',this.onSelectionUpdate_.bind(this));this.mouseModeSelector_.addEventListener('endselection',this.onSelectionUpdate_.bind(this));},extractRelativeMousePosition_(e){const br=this.canvas_.getBoundingClientRect();return[this.pixelRatio_*(e.clientX-this.canvas_.offsetLeft-br.left),this.pixelRatio_*(e.clientY-this.canvas_.offsetTop-br.top)];},onSelectionUpdate_(e){const mousePos=this.extractRelativeMousePosition_(e);const res=[];function handleQuad(passNumber,quad,p1,p2,p3,p4){if(tr.b.math.pointInImplicitQuad(mousePos,p1,p2,p3,p4)){res.push(quad);}}
7410this.stackTransformAndProcessQuads_(1,handleQuad,false);e=new tr.b.Event('selectionchange');e.quads=res;this.dispatchEvent(e);}};return{QuadStackView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const ColorScheme=tr.b.ColorScheme;const THIS_DOC=document.currentScript.ownerDocument;const TILE_HEATMAP_TYPE={};TILE_HEATMAP_TYPE.NONE='none';TILE_HEATMAP_TYPE.SCHEDULED_PRIORITY='scheduledPriority';TILE_HEATMAP_TYPE.USING_GPU_MEMORY='usingGpuMemory';const cc=tr.ui.e.chrome.cc;function createTileRectsSelectorBaseOptions(){return[{label:'None',value:'none'},{label:'Coverage Rects',value:'coverage'}];}
7411const LayerTreeQuadStackView=tr.ui.b.define('tr-ui-e-chrome-cc-layer-tree-quad-stack-view');LayerTreeQuadStackView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.style.flexGrow=1;this.style.flexShrink=1;this.style.flexBasis='100%';this.style.flexDirection='column';this.style.minHeight=0;this.style.display='flex';this.style.width='100%';this.isRenderPassQuads_=false;this.pictureAsImageData_={};this.messages_=[];this.controls_=document.createElement('top-controls');this.controls_.style.flexGrow=0;this.controls_.style.flexShrink=0;this.controls_.style.flexBasis='auto';this.controls_.style.backgroundImage='-webkit-gradient(linear, 0 0, 100% 0, from(#E5E5E5), to(#D1D1D1))';this.controls_.style.borderBottom='1px solid #8e8e8e';this.controls_.style.borderTop='1px solid white';this.controls_.style.display='flex';this.controls_.style.flexDirection='row';this.controls_.style.flexWrap='wrap';this.controls_.style.fontSize='14px';this.controls_.style.paddingLeft='2px';this.controls_.style.overflow='hidden';this.infoBar_=document.createElement('tr-ui-b-info-bar');this.quadStackView_=new tr.ui.b.QuadStackView();this.quadStackView_.addEventListener('selectionchange',this.onQuadStackViewSelectionChange_.bind(this));this.extraHighlightsByLayerId_=undefined;this.inputEventImageData_=undefined;const m=tr.ui.b.MOUSE_SELECTOR_MODE;const mms=this.quadStackView_.mouseModeSelector;mms.settingsKey='tr.e.cc.layerTreeQuadStackView.mouseModeSelector';mms.setKeyCodeForMode(m.SELECTION,'Z'.charCodeAt(0));mms.setKeyCodeForMode(m.PANSCAN,'X'.charCodeAt(0));mms.setKeyCodeForMode(m.ZOOM,'C'.charCodeAt(0));mms.setKeyCodeForMode(m.ROTATE,'V'.charCodeAt(0));const node=tr.ui.b.instantiateTemplate('#tr-ui-e-chrome-cc-layer-tree-quad-stack-view-template',THIS_DOC);Polymer.dom(this).appendChild(node);Polymer.dom(this).appendChild(this.controls_);Polymer.dom(this).appendChild(this.infoBar_);Polymer.dom(this).appendChild(this.quadStackView_);this.tileRectsSelector_=tr.ui.b.createSelector(this,'howToShowTiles','layerView.howToShowTiles','none',createTileRectsSelectorBaseOptions());Polymer.dom(this.controls_).appendChild(this.tileRectsSelector_);const tileHeatmapText=tr.ui.b.createSpan({textContent:'Tile heatmap:'});Polymer.dom(this.controls_).appendChild(tileHeatmapText);const tileHeatmapSelector=tr.ui.b.createSelector(this,'tileHeatmapType','layerView.tileHeatmapType',TILE_HEATMAP_TYPE.NONE,[{label:'None',value:TILE_HEATMAP_TYPE.NONE},{label:'Scheduled Priority',value:TILE_HEATMAP_TYPE.SCHEDULED_PRIORITY},{label:'Is using GPU memory',value:TILE_HEATMAP_TYPE.USING_GPU_MEMORY}]);Polymer.dom(this.controls_).appendChild(tileHeatmapSelector);const showOtherLayersCheckbox=tr.ui.b.createCheckBox(this,'showOtherLayers','layerView.showOtherLayers',true,'Other layers/passes');showOtherLayersCheckbox.title='When checked, show all layers, selected or not.';Polymer.dom(this.controls_).appendChild(showOtherLayersCheckbox);const showInvalidationsCheckbox=tr.ui.b.createCheckBox(this,'showInvalidations','layerView.showInvalidations',true,'Invalidations');showInvalidationsCheckbox.title='When checked, compositing invalidations are highlighted in red';Polymer.dom(this.controls_).appendChild(showInvalidationsCheckbox);const showUnrecordedRegionCheckbox=tr.ui.b.createCheckBox(this,'showUnrecordedRegion','layerView.showUnrecordedRegion',true,'Unrecorded area');showUnrecordedRegionCheckbox.title='When checked, unrecorded areas are highlighted in yellow';Polymer.dom(this.controls_).appendChild(showUnrecordedRegionCheckbox);const showBottlenecksCheckbox=tr.ui.b.createCheckBox(this,'showBottlenecks','layerView.showBottlenecks',true,'Bottlenecks');showBottlenecksCheckbox.title='When checked, scroll bottlenecks are highlighted';Polymer.dom(this.controls_).appendChild(showBottlenecksCheckbox);const showLayoutRectsCheckbox=tr.ui.b.createCheckBox(this,'showLayoutRects','layerView.showLayoutRects',false,'Layout rects');showLayoutRectsCheckbox.title='When checked, shows rects for regions where layout happened';Polymer.dom(this.controls_).appendChild(showLayoutRectsCheckbox);const showContentsCheckbox=tr.ui.b.createCheckBox(this,'showContents','layerView.showContents',true,'Contents');showContentsCheckbox.title='When checked, show the rendered contents inside the layer outlines';Polymer.dom(this.controls_).appendChild(showContentsCheckbox);const showAnimationBoundsCheckbox=tr.ui.b.createCheckBox(this,'showAnimationBounds','layerView.showAnimationBounds',false,'Animation Bounds');showAnimationBoundsCheckbox.title='When checked, show a border around'+' a layer showing the extent of its animation.';Polymer.dom(this.controls_).appendChild(showAnimationBoundsCheckbox);const showInputEventsCheckbox=tr.ui.b.createCheckBox(this,'showInputEvents','layerView.showInputEvents',true,'Input events');showInputEventsCheckbox.title='When checked, input events are '+'displayed as circles.';Polymer.dom(this.controls_).appendChild(showInputEventsCheckbox);this.whatRasterizedLink_=document.createElement('a');Polymer.dom(this.whatRasterizedLink_).classList.add('what-rasterized');Polymer.dom(this.whatRasterizedLink_).textContent='What rasterized?';this.whatRasterizedLink_.addEventListener('click',this.onWhatRasterizedLinkClicked_.bind(this));Polymer.dom(this).appendChild(this.whatRasterizedLink_);},get layerTreeImpl(){return this.layerTreeImpl_;},set isRenderPassQuads(newValue){this.isRenderPassQuads_=newValue;},set layerTreeImpl(layerTreeImpl){if(this.layerTreeImpl_===layerTreeImpl)return;this.layerTreeImpl_=layerTreeImpl;this.selection=undefined;},get extraHighlightsByLayerId(){return this.extraHighlightsByLayerId_;},set extraHighlightsByLayerId(extraHighlightsByLayerId){this.extraHighlightsByLayerId_=extraHighlightsByLayerId;this.scheduleUpdateContents_();},get showOtherLayers(){return this.showOtherLayers_;},set showOtherLayers(show){this.showOtherLayers_=show;this.updateContents_();},get showAnimationBounds(){return this.showAnimationBounds_;},set showAnimationBounds(show){this.showAnimationBounds_=show;this.updateContents_();},get showInputEvents(){return this.showInputEvents_;},set showInputEvents(show){this.showInputEvents_=show;this.updateContents_();},get showContents(){return this.showContents_;},set showContents(show){this.showContents_=show;this.updateContents_();},get showInvalidations(){return this.showInvalidations_;},set showInvalidations(show){this.showInvalidations_=show;this.updateContents_();},get showUnrecordedRegion(){return this.showUnrecordedRegion_;},set showUnrecordedRegion(show){this.showUnrecordedRegion_=show;this.updateContents_();},get showBottlenecks(){return this.showBottlenecks_;},set showBottlenecks(show){this.showBottlenecks_=show;this.updateContents_();},get showLayoutRects(){return this.showLayoutRects_;},set showLayoutRects(show){this.showLayoutRects_=show;this.updateContents_();},get howToShowTiles(){return this.howToShowTiles_;},set howToShowTiles(val){if(val!=='none'&&val!=='coverage'&&isNaN(parseFloat(val))){throw new Error('howToShowTiles requires "none" or "coverage" or a number');}
7412this.howToShowTiles_=val;this.updateContents_();},get tileHeatmapType(){return this.tileHeatmapType_;},set tileHeatmapType(val){this.tileHeatmapType_=val;this.updateContents_();},get selection(){return this.selection_;},set selection(selection){if(this.selection===selection)return;this.selection_=selection;tr.b.dispatchSimpleEvent(this,'selection-change');this.updateContents_();},regenerateContent(){this.updateTilesSelector_();this.updateContents_();},loadDataForImageElement_(image,callback){const imageContent=window.getComputedStyle(image).backgroundImage;image.src=tr.ui.b.extractUrlString(imageContent);image.onload=function(){const canvas=document.createElement('canvas');const ctx=canvas.getContext('2d');canvas.width=image.width;canvas.height=image.height;ctx.drawImage(image,0,0);const imageData=ctx.getImageData(0,0,canvas.width,canvas.height);callback(imageData);};},onQuadStackViewSelectionChange_(e){const selectableQuads=e.quads.filter(function(q){return q.selectionToSetIfClicked!==undefined;});if(selectableQuads.length===0){this.selection=undefined;return;}
7413selectableQuads.sort(function(x,y){const z=x.stackingGroupId-y.stackingGroupId;if(z!==0)return z;return x.selectionToSetIfClicked.specicifity-
7414y.selectionToSetIfClicked.specicifity;});const quadToSelect=selectableQuads[selectableQuads.length-1];this.selection=quadToSelect.selectionToSetIfClicked;},scheduleUpdateContents_(){if(this.updateContentsPending_)return;this.updateContentsPending_=true;tr.b.requestAnimationFrameInThisFrameIfPossible(this.updateContents_,this);},updateContents_(){if(!this.layerTreeImpl_){this.quadStackView_.headerText='No tree';this.quadStackView_.quads=[];return;}
7415const status=this.computePictureLoadingStatus_();if(!status.picturesComplete)return;const lthi=this.layerTreeImpl_.layerTreeHostImpl;const lthiInstance=lthi.objectInstance;const worldViewportRect=tr.b.math.Rect.fromXYWH(0,0,lthi.deviceViewportSize.width,lthi.deviceViewportSize.height);this.quadStackView_.deviceRect=worldViewportRect;if(this.isRenderPassQuads_){this.quadStackView_.quads=this.generateRenderPassQuads();}else{this.quadStackView_.quads=this.generateLayerQuads();}
7416this.updateWhatRasterizedLinkState_();let message='';if(lthi.tilesHaveGpuMemoryUsageInfo){const thisTreeUsageInBytes=this.layerTreeImpl_.gpuMemoryUsageInBytes;const otherTreeUsageInBytes=lthi.gpuMemoryUsageInBytes-
7417thisTreeUsageInBytes;message+=tr.b.convertUnit(thisTreeUsageInBytes,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI).toFixed(1)+' MiB on this tree';if(otherTreeUsageInBytes){message+=', '+
7418tr.b.convertUnit(otherTreeUsageInBytes,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI).toFixed(1)+' MiB on the other tree';}}else{if(this.layerTreeImpl_){const thisTreeUsageInBytes=this.layerTreeImpl_.gpuMemoryUsageInBytes;message+=tr.b.convertUnit(thisTreeUsageInBytes,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI).toFixed(1)+' MiB on this tree';if(this.layerTreeImpl_.otherTree){message+=', ??? MiB on other tree. ';}}}
7419if(lthi.args.tileManagerBasicState){const tmgs=lthi.args.tileManagerBasicState.globalState;message+=' (softMax='+
7420tr.b.convertUnit(tmgs.softMemoryLimitInBytes,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI).toFixed(1)+' MiB, hardMax='+
7421tr.b.convertUnit(tmgs.hardMemoryLimitInBytes,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI).toFixed(1)+' MiB, '+
7422tmgs.memoryLimitPolicy+')';}else{const thread=lthi.snapshottedOnThread;const didManageTilesSlices=thread.sliceGroup.slices.filter(s=>{if(s.category!=='tr.e.cc')return false;if(s.title!=='DidManage')return false;if(s.end>lthi.ts)return false;return true;});didManageTilesSlices.sort(function(x,y){return x.end-y.end;});if(didManageTilesSlices.length>0){const newest=didManageTilesSlices[didManageTilesSlices.length-1];const tmgs=newest.args.state.global_state;message+=' (softMax='+
7423tr.b.convertUnit(tmgs.softMemoryLimitInBytes,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI).toFixed(1)+' MiB, hardMax='+
7424tr.b.convertUnit(tmgs.hardMemoryLimitInBytes,tr.b.UnitPrefixScale.BINARY.NONE,tr.b.UnitPrefixScale.BINARY.MEBI).toFixed(1)+' MiB, '+
7425tmgs.memoryLimitPolicy+')';}}
7426if(this.layerTreeImpl_.otherTree){message+=' (Another tree exists)';}
7427if(message.length){this.quadStackView_.headerText=message;}else{this.quadStackView_.headerText=undefined;}
7428this.updateInfoBar_(status.messages);},updateTilesSelector_(){const data=createTileRectsSelectorBaseOptions();if(this.layerTreeImpl_){const lthi=this.layerTreeImpl_.layerTreeHostImpl;const scaleNames=lthi.getContentsScaleNames();for(const scale in scaleNames){data.push({label:'Scale '+scale+' ('+scaleNames[scale]+')',value:scale});}}
7429const newSelector=tr.ui.b.createSelector(this,'howToShowTiles','layerView.howToShowTiles','none',data);this.controls_.replaceChild(newSelector,this.tileRectsSelector_);this.tileRectsSelector_=newSelector;},computePictureLoadingStatus_(){const layers=this.layers;const status={messages:[],picturesComplete:true};if(this.showContents){let hasPendingRasterizeImage=false;let firstPictureError=undefined;let hasMissingLayerRect=false;let hasUnresolvedPictureRef=false;for(let i=0;i<layers.length;i++){const layer=layers[i];for(let ir=0;ir<layer.pictures.length;++ir){const picture=layer.pictures[ir];if(picture.idRef){hasUnresolvedPictureRef=true;continue;}
7430if(!picture.layerRect){hasMissingLayerRect=true;continue;}
7431const pictureAsImageData=this.pictureAsImageData_[picture.guid];if(!pictureAsImageData){hasPendingRasterizeImage=true;this.pictureAsImageData_[picture.guid]=tr.e.cc.PictureAsImageData.Pending(this);picture.rasterize({stopIndex:undefined},function(pictureImageData){const picture_=pictureImageData.picture;this.pictureAsImageData_[picture_.guid]=pictureImageData;this.scheduleUpdateContents_();}.bind(this));continue;}
7432if(pictureAsImageData.isPending()){hasPendingRasterizeImage=true;continue;}
7433if(pictureAsImageData.error){if(!firstPictureError){firstPictureError=pictureAsImageData.error;}
7434break;}}}
7435if(hasPendingRasterizeImage){status.picturesComplete=false;}else{if(hasUnresolvedPictureRef){status.messages.push({header:'Missing picture',details:'Your trace didn\'t have pictures for every layer. '+'Old chrome versions had this problem'});}
7436if(hasMissingLayerRect){status.messages.push({header:'Missing layer rect',details:'Your trace may be corrupt or from a very old '+'Chrome revision.'});}
7437if(firstPictureError){status.messages.push({header:'Cannot rasterize',details:firstPictureError});}}}
7438if(this.showInputEvents&&this.layerTreeImpl.tracedInputLatencies&&this.inputEventImageData_===undefined){const image=Polymer.dom(this).querySelector('#input-event');if(!image.src){this.loadDataForImageElement_(image,function(imageData){this.inputEventImageData_=imageData;this.updateContentsPending_=false;this.scheduleUpdateContents_();}.bind(this));}
7439status.picturesComplete=false;}
7440return status;},get selectedRenderPass(){if(this.selection){return this.selection.renderPass_;}},get selectedLayer(){if(this.selection){const selectedLayerId=this.selection.associatedLayerId;return this.layerTreeImpl_.findLayerWithId(selectedLayerId);}},get renderPasses(){let renderPasses=this.layerTreeImpl.layerTreeHostImpl.args.frame.renderPasses;if(!this.showOtherLayers){const selectedRenderPass=this.selectedRenderPass;if(selectedRenderPass){renderPasses=[selectedRenderPass];}}
7441return renderPasses;},get layers(){let layers=this.layerTreeImpl.renderSurfaceLayerList;if(!this.showOtherLayers){const selectedLayer=this.selectedLayer;if(selectedLayer){layers=[selectedLayer];}}
7442return layers;},appendImageQuads_(quads,layer,layerQuad){for(let ir=0;ir<layer.pictures.length;++ir){const picture=layer.pictures[ir];if(!picture.layerRect)continue;const unitRect=picture.layerRect.asUVRectInside(layer.bounds);const iq=layerQuad.projectUnitRect(unitRect);const pictureData=this.pictureAsImageData_[picture.guid];if(this.showContents&&pictureData&&pictureData.imageData){iq.imageData=pictureData.imageData;iq.borderColor='rgba(0,0,0,0)';}else{iq.imageData=undefined;}
7443iq.stackingGroupId=layerQuad.stackingGroupId;quads.push(iq);}},appendAnimationQuads_(quads,layer,layerQuad){if(!layer.animationBoundsRect)return;const rect=layer.animationBoundsRect;const abq=tr.b.math.Quad.fromRect(rect);abq.backgroundColor='rgba(164,191,48,0.5)';abq.borderColor='rgba(205,255,0,0.75)';abq.borderWidth=3.0;abq.stackingGroupId=layerQuad.stackingGroupId;abq.selectionToSetIfClicked=new cc.AnimationRectSelection(layer,rect);quads.push(abq);},appendInvalidationQuads_(quads,layer,layerQuad){if(layer.layerTreeImpl.hasSourceFrameBeenDrawnBefore)return;for(let ir=0;ir<layer.annotatedInvalidation.rects.length;ir++){const rect=layer.annotatedInvalidation.rects[ir];const unitRect=rect.asUVRectInside(layer.bounds);const iq=layerQuad.projectUnitRect(unitRect);iq.backgroundColor='rgba(0, 255, 0, 0.1)';if(rect.reason==='renderer insertion'){iq.backgroundColor='rgba(0, 255, 128, 0.1)';}
7444iq.borderColor='rgba(0, 255, 0, 1)';iq.stackingGroupId=layerQuad.stackingGroupId;iq.selectionToSetIfClicked=new cc.LayerRectSelection(layer,'Invalidation rect ('+rect.reason+')',rect,rect);quads.push(iq);}
7445if(layer.annotatedInvalidation.rects.length===0){for(let ir=0;ir<layer.invalidation.rects.length;ir++){const rect=layer.invalidation.rects[ir];const unitRect=rect.asUVRectInside(layer.bounds);const iq=layerQuad.projectUnitRect(unitRect);iq.backgroundColor='rgba(0, 255, 0, 0.1)';iq.borderColor='rgba(0, 255, 0, 1)';iq.stackingGroupId=layerQuad.stackingGroupId;iq.selectionToSetIfClicked=new cc.LayerRectSelection(layer,'Invalidation rect',rect,rect);quads.push(iq);}}},appendUnrecordedRegionQuads_(quads,layer,layerQuad){for(let ir=0;ir<layer.unrecordedRegion.rects.length;ir++){const rect=layer.unrecordedRegion.rects[ir];const unitRect=rect.asUVRectInside(layer.bounds);const iq=layerQuad.projectUnitRect(unitRect);iq.backgroundColor='rgba(240, 230, 140, 0.3)';iq.borderColor='rgba(240, 230, 140, 1)';iq.stackingGroupId=layerQuad.stackingGroupId;iq.selectionToSetIfClicked=new cc.LayerRectSelection(layer,'Unrecorded area',rect,rect);quads.push(iq);}},appendBottleneckQuads_(quads,layer,layerQuad,stackingGroupId){function processRegion(region,label,borderColor){const backgroundColor=borderColor.clone();backgroundColor.a=0.4*(borderColor.a||1.0);if(!region||!region.rects)return;for(let ir=0;ir<region.rects.length;ir++){const rect=region.rects[ir];const unitRect=rect.asUVRectInside(layer.bounds);const iq=layerQuad.projectUnitRect(unitRect);iq.backgroundColor=backgroundColor.toString();iq.borderColor=borderColor.toString();iq.borderWidth=4.0;iq.stackingGroupId=stackingGroupId;iq.selectionToSetIfClicked=new cc.LayerRectSelection(layer,label,rect,rect);quads.push(iq);}}
7446processRegion(layer.touchEventHandlerRegion,'Touch listener',tr.b.Color.fromString('rgb(228, 226, 27)'));processRegion(layer.wheelEventHandlerRegion,'Wheel listener',tr.b.Color.fromString('rgb(176, 205, 29)'));processRegion(layer.nonFastScrollableRegion,'Repaints on scroll',tr.b.Color.fromString('rgb(213, 134, 32)'));},appendTileCoverageRectQuads_(quads,layer,layerQuad,heatmapType){if(!layer.tileCoverageRects)return;const tiles=[];for(let ct=0;ct<layer.tileCoverageRects.length;++ct){const tile=layer.tileCoverageRects[ct].tile;if(tile!==undefined)tiles.push(tile);}
7447const lthi=this.layerTreeImpl_.layerTreeHostImpl;const minMax=this.getMinMaxForHeatmap_(lthi.activeTiles,heatmapType);const heatmapResult=this.computeHeatmapColors_(tiles,minMax,heatmapType);let heatIndex=0;for(let ct=0;ct<layer.tileCoverageRects.length;++ct){let rect=layer.tileCoverageRects[ct].geometryRect;rect=rect.scale(1.0/layer.geometryContentsScale);const tile=layer.tileCoverageRects[ct].tile;const unitRect=rect.asUVRectInside(layer.bounds);const quad=layerQuad.projectUnitRect(unitRect);quad.backgroundColor='rgba(0, 0, 0, 0)';quad.stackingGroupId=layerQuad.stackingGroupId;let type=tr.e.cc.tileTypes.missing;if(tile){type=tile.getTypeForLayer(layer);quad.backgroundColor=heatmapResult[heatIndex].color;++heatIndex;}
7448quad.borderColor=tr.e.cc.tileBorder[type].color;quad.borderWidth=tr.e.cc.tileBorder[type].width;let label;if(tile){label='coverageRect';}else{label='checkerboard coverageRect';}
7449quad.selectionToSetIfClicked=new cc.LayerRectSelection(layer,label,rect,layer.tileCoverageRects[ct]);quads.push(quad);}},appendLayoutRectQuads_(quads,layer,layerQuad){if(!layer.layoutRects){return;}
7450for(let ct=0;ct<layer.layoutRects.length;++ct){let rect=layer.layoutRects[ct].geometryRect;rect=rect.scale(1.0/layer.geometryContentsScale);const unitRect=rect.asUVRectInside(layer.bounds);const quad=layerQuad.projectUnitRect(unitRect);quad.backgroundColor='rgba(0, 0, 0, 0)';quad.stackingGroupId=layerQuad.stackingGroupId;quad.borderColor='rgba(0, 0, 200, 0.7)';quad.borderWidth=2;const label='Layout rect';quad.selectionToSetIfClicked=new cc.LayerRectSelection(layer,label,rect);quads.push(quad);}},getValueForHeatmap_(tile,heatmapType){if(heatmapType===TILE_HEATMAP_TYPE.SCHEDULED_PRIORITY){return tile.scheduledPriority===0?undefined:tile.scheduledPriority;}else if(heatmapType===TILE_HEATMAP_TYPE.USING_GPU_MEMORY){if(tile.isSolidColor)return 0.5;return tile.isUsingGpuMemory?0:1;}},getMinMaxForHeatmap_(tiles,heatmapType){const range=new tr.b.math.Range();if(heatmapType===TILE_HEATMAP_TYPE.USING_GPU_MEMORY){range.addValue(0);range.addValue(1);return range;}
7451for(let i=0;i<tiles.length;++i){const value=this.getValueForHeatmap_(tiles[i],heatmapType);if(value===undefined)continue;range.addValue(value);}
7452if(range.range===0){range.addValue(1);}
7453return range;},computeHeatmapColors_(tiles,minMax,heatmapType){const min=minMax.min;const max=minMax.max;const color=function(value){let hue=120*(1-(value-min)/(max-min));if(hue<0)hue=0;return'hsla('+hue+', 100%, 50%, 0.5)';};const values=[];for(let i=0;i<tiles.length;++i){const tile=tiles[i];const value=this.getValueForHeatmap_(tile,heatmapType);const res={value,color:value!==undefined?color(value):undefined};values.push(res);}
7454return values;},appendTilesWithScaleQuads_(quads,layer,layerQuad,scale,heatmapType){const lthi=this.layerTreeImpl_.layerTreeHostImpl;const tiles=[];for(let i=0;i<lthi.activeTiles.length;++i){const tile=lthi.activeTiles[i];if(Math.abs(tile.contentsScale-scale)>1e-6){continue;}
7455if(layer.layerId!==tile.layerId)continue;tiles.push(tile);}
7456const minMax=this.getMinMaxForHeatmap_(lthi.activeTiles,heatmapType);const heatmapResult=this.computeHeatmapColors_(tiles,minMax,heatmapType);for(let i=0;i<tiles.length;++i){const tile=tiles[i];const rect=tile.layerRect;if(!tile.layerRect)continue;const unitRect=rect.asUVRectInside(layer.bounds);const quad=layerQuad.projectUnitRect(unitRect);quad.backgroundColor='rgba(0, 0, 0, 0)';quad.stackingGroupId=layerQuad.stackingGroupId;const type=tile.getTypeForLayer(layer);quad.borderColor=tr.e.cc.tileBorder[type].color;quad.borderWidth=tr.e.cc.tileBorder[type].width;quad.backgroundColor=heatmapResult[i].color;const data={tileType:type};if(heatmapType!==TILE_HEATMAP_TYPE.NONE){data[heatmapType]=heatmapResult[i].value;}
7457quad.selectionToSetIfClicked=new cc.TileSelection(tile,data);quads.push(quad);}},appendHighlightQuadsForLayer_(quads,layer,layerQuad,highlights){highlights.forEach(function(highlight){const rect=highlight.rect;const unitRect=rect.asUVRectInside(layer.bounds);const quad=layerQuad.projectUnitRect(unitRect);let colorId=ColorScheme.getColorIdForGeneralPurposeString(highlight.colorKey);const offset=ColorScheme.properties.brightenedOffsets[0];colorId=ColorScheme.getVariantColorId(colorId,offset);const color=ColorScheme.colors[colorId];const quadForDrawing=quad.clone();quadForDrawing.backgroundColor=color.withAlpha(0.5).toString();quadForDrawing.borderColor=color.withAlpha(1.0).darken().toString();quadForDrawing.stackingGroupId=layerQuad.stackingGroupId;quads.push(quadForDrawing);},this);},generateRenderPassQuads(){if(!this.layerTreeImpl.layerTreeHostImpl.args.frame)return[];const renderPasses=this.renderPasses;if(!renderPasses)return[];const quads=[];for(let i=0;i<renderPasses.length;++i){const quadList=renderPasses[i].quadList;for(let j=0;j<quadList.length;++j){const drawQuad=quadList[j];const quad=drawQuad.rectAsTargetSpaceQuad.clone();quad.borderColor='rgb(170, 204, 238)';quad.borderWidth=2;quad.stackingGroupId=i;quads.push(quad);}}
7458return quads;},generateLayerQuads(){this.updateContentsPending_=false;const layers=this.layers;const quads=[];let nextStackingGroupId=0;const alreadyVisitedLayerIds={};let selectionHighlightsByLayerId;if(this.selection){selectionHighlightsByLayerId=this.selection.highlightsByLayerId;}else{selectionHighlightsByLayerId={};}
7459const extraHighlightsByLayerId=this.extraHighlightsByLayerId||{};for(let i=1;i<=layers.length;i++){const layer=layers[layers.length-i];alreadyVisitedLayerIds[layer.layerId]=true;if(layer.objectInstance.name==='cc::NinePatchLayerImpl'){continue;}
7460const layerQuad=layer.layerQuad.clone();if(layer.usingGpuRasterization){const pixelRatio=window.devicePixelRatio||1;layerQuad.borderWidth=2.0*pixelRatio;layerQuad.borderColor='rgba(154,205,50,0.75)';}else{layerQuad.borderColor='rgba(0,0,0,0.75)';}
7461layerQuad.stackingGroupId=nextStackingGroupId++;layerQuad.selectionToSetIfClicked=new cc.LayerSelection(layer);layerQuad.layer=layer;if(this.showOtherLayers&&this.selectedLayer===layer){layerQuad.upperBorderColor='rgb(156,189,45)';}
7462if(this.showAnimationBounds){this.appendAnimationQuads_(quads,layer,layerQuad);}
7463this.appendImageQuads_(quads,layer,layerQuad);quads.push(layerQuad);if(this.showInvalidations){this.appendInvalidationQuads_(quads,layer,layerQuad);}
7464if(this.showUnrecordedRegion){this.appendUnrecordedRegionQuads_(quads,layer,layerQuad);}
7465if(this.showBottlenecks){this.appendBottleneckQuads_(quads,layer,layerQuad,layerQuad.stackingGroupId);}
7466if(this.showLayoutRects){this.appendLayoutRectQuads_(quads,layer,layerQuad);}
7467if(this.howToShowTiles==='coverage'){this.appendTileCoverageRectQuads_(quads,layer,layerQuad,this.tileHeatmapType);}else if(this.howToShowTiles!=='none'){this.appendTilesWithScaleQuads_(quads,layer,layerQuad,this.howToShowTiles,this.tileHeatmapType);}
7468let highlights;highlights=extraHighlightsByLayerId[layer.layerId];if(highlights){this.appendHighlightQuadsForLayer_(quads,layer,layerQuad,highlights);}
7469highlights=selectionHighlightsByLayerId[layer.layerId];if(highlights){this.appendHighlightQuadsForLayer_(quads,layer,layerQuad,highlights);}}
7470this.layerTreeImpl.iterLayers(function(layer,depth,isMask,isReplica){if(!this.showOtherLayers&&this.selectedLayer!==layer)return;if(alreadyVisitedLayerIds[layer.layerId])return;const layerQuad=layer.layerQuad;const stackingGroupId=nextStackingGroupId++;if(this.showBottlenecks){this.appendBottleneckQuads_(quads,layer,layerQuad,stackingGroupId);}},this);const tracedInputLatencies=this.layerTreeImpl.tracedInputLatencies;if(this.showInputEvents&&tracedInputLatencies){for(let i=0;i<tracedInputLatencies.length;i++){const coordinatesArray=tracedInputLatencies[i].args.data.coordinates;for(let j=0;j<coordinatesArray.length;j++){const inputQuad=tr.b.math.Quad.fromXYWH(coordinatesArray[j].x-25,coordinatesArray[j].y-25,50,50);inputQuad.borderColor='rgba(0, 0, 0, 0)';inputQuad.imageData=this.inputEventImageData_;quads.push(inputQuad);}}}
7471return quads;},updateInfoBar_(infoBarMessages){if(infoBarMessages.length){this.infoBar_.removeAllButtons();this.infoBar_.message='Some problems were encountered...';this.infoBar_.addButton('More info...',function(e){const overlay=new tr.ui.b.Overlay();Polymer.dom(overlay).textContent='';infoBarMessages.forEach(function(message){const title=document.createElement('h3');Polymer.dom(title).textContent=message.header;const details=document.createElement('div');Polymer.dom(details).textContent=message.details;Polymer.dom(overlay).appendChild(title);Polymer.dom(overlay).appendChild(details);});overlay.visible=true;e.stopPropagation();return false;});this.infoBar_.visible=true;}else{this.infoBar_.removeAllButtons();this.infoBar_.message='';this.infoBar_.visible=false;}},getWhatRasterized_(){const lthi=this.layerTreeImpl_.layerTreeHostImpl;const renderProcess=lthi.objectInstance.parent;const tasks=[];for(const event of renderProcess.getDescendantEvents()){if(!(event instanceof tr.model.Slice))continue;const tile=tr.e.cc.getTileFromRasterTaskSlice(event);if(tile===undefined)continue;if(tile.containingSnapshot===lthi){tasks.push(event);}}
7472return tasks;},updateWhatRasterizedLinkState_(){const tasks=this.getWhatRasterized_();if(tasks.length){Polymer.dom(this.whatRasterizedLink_).textContent=tasks.length+' raster tasks';this.whatRasterizedLink_.style.display='';}else{Polymer.dom(this.whatRasterizedLink_).textContent='';this.whatRasterizedLink_.style.display='none';}},onWhatRasterizedLinkClicked_(){const tasks=this.getWhatRasterized_();const event=new tr.model.RequestSelectionChangeEvent();event.selection=new tr.model.EventSet(tasks);this.dispatchEvent(event);}};return{LayerTreeQuadStackView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const constants=tr.e.cc.constants;const LayerView=tr.ui.b.define('tr-ui-e-chrome-cc-layer-view');LayerView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.style.flexDirection='column';this.style.display='flex';this.style.left=0;this.style.position='relative';this.style.top=0;this.layerTreeQuadStackView_=new tr.ui.e.chrome.cc.LayerTreeQuadStackView();this.dragBar_=document.createElement('tr-ui-b-drag-handle');this.analysisEl_=document.createElement('tr-ui-e-chrome-cc-layer-view-analysis');this.analysisEl_.style.height='150px';this.analysisEl_.style.overflowY='auto';this.analysisEl_.addEventListener('requestSelectionChange',this.onRequestSelectionChangeFromAnalysisEl_.bind(this));this.dragBar_.target=this.analysisEl_;Polymer.dom(this).appendChild(this.layerTreeQuadStackView_);Polymer.dom(this).appendChild(this.dragBar_);Polymer.dom(this).appendChild(this.analysisEl_);this.layerTreeQuadStackView_.addEventListener('selection-change',function(){this.layerTreeQuadStackViewSelectionChanged_();}.bind(this));this.layerTreeQuadStackViewSelectionChanged_();},get layerTreeImpl(){return this.layerTreeQuadStackView_.layerTreeImpl;},set layerTreeImpl(newValue){return this.layerTreeQuadStackView_.layerTreeImpl=newValue;},set isRenderPassQuads(newValue){return this.layerTreeQuadStackView_.isRenderPassQuads=newValue;},get selection(){return this.layerTreeQuadStackView_.selection;},set selection(newValue){this.layerTreeQuadStackView_.selection=newValue;},regenerateContent(){this.layerTreeQuadStackView_.regenerateContent();},layerTreeQuadStackViewSelectionChanged_(){const selection=this.layerTreeQuadStackView_.selection;if(selection){this.dragBar_.style.display='';this.analysisEl_.style.display='';Polymer.dom(this.analysisEl_).textContent='';const layer=selection.layer;if(layer&&layer.args&&layer.args.pictures){Polymer.dom(this.analysisEl_).appendChild(this.createPictureBtn_(layer.args.pictures));}
7473const analysis=selection.createAnalysis();Polymer.dom(this.analysisEl_).appendChild(analysis);for(const child of this.analysisEl_.children){child.style.userSelect='text';}}else{this.dragBar_.style.display='none';this.analysisEl_.style.display='none';const analysis=Polymer.dom(this.analysisEl_).firstChild;if(analysis){Polymer.dom(this.analysisEl_).removeChild(analysis);}
7474this.layerTreeQuadStackView_.style.height=window.getComputedStyle(this).height;}
7475tr.b.dispatchSimpleEvent(this,'selection-change');},createPictureBtn_(pictures){if(!(pictures instanceof Array)){pictures=[pictures];}
7476const link=document.createElement('tr-ui-a-analysis-link');link.selection=function(){const layeredPicture=new tr.e.cc.LayeredPicture(pictures);const snapshot=new tr.e.cc.PictureSnapshot(layeredPicture);snapshot.picture=layeredPicture;const selection=new tr.model.EventSet();selection.push(snapshot);return selection;};Polymer.dom(link).textContent='View in Picture Debugger';return link;},onRequestSelectionChangeFromAnalysisEl_(e){if(!(e.selection instanceof tr.ui.e.chrome.cc.Selection)){return;}
7477e.stopPropagation();this.selection=e.selection;},get extraHighlightsByLayerId(){return this.layerTreeQuadStackView_.extraHighlightsByLayerId;},set extraHighlightsByLayerId(extraHighlightsByLayerId){this.layerTreeQuadStackView_.extraHighlightsByLayerId=extraHighlightsByLayerId;}};return{LayerView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const LayerTreeHostImplSnapshotView=tr.ui.b.define('tr-ui-e-chrome-cc-layer-tree-host-impl-snapshot-view',tr.ui.analysis.ObjectSnapshotView);LayerTreeHostImplSnapshotView.prototype={__proto__:tr.ui.analysis.ObjectSnapshotView.prototype,decorate(){Polymer.dom(this).classList.add('tr-ui-e-chrome-cc-lthi-s-view');this.style.display='flex';this.style.flexDirection='row';this.style.flexGrow=1;this.style.flexShrink=1;this.style.flexBasis='auto';this.selection_=undefined;this.layerPicker_=new tr.ui.e.chrome.cc.LayerPicker();this.layerPicker_.style.flexGrow=1;this.layerPicker_.style.flexShrink=1;this.layerPicker_.style.flexBasis='auto';this.layerPicker_.addEventListener('selection-change',this.onLayerPickerSelectionChanged_.bind(this));this.layerView_=new tr.ui.e.chrome.cc.LayerView();this.layerView_.addEventListener('selection-change',this.onLayerViewSelectionChanged_.bind(this));this.dragHandle_=document.createElement('tr-ui-b-drag-handle');this.dragHandle_.style.flexGrow=0;this.dragHandle_.style.flexShrink=0;this.dragHandle_.style.flexBasis='auto';this.dragHandle_.horizontal=false;this.dragHandle_.target=this.layerView_;Polymer.dom(this).appendChild(this.layerPicker_);Polymer.dom(this).appendChild(this.dragHandle_);Polymer.dom(this).appendChild(this.layerView_);this.onLayerViewSelectionChanged_();this.onLayerPickerSelectionChanged_();},get objectSnapshot(){return this.objectSnapshot_;},set objectSnapshot(objectSnapshot){this.objectSnapshot_=objectSnapshot;const lthi=this.objectSnapshot;let layerTreeImpl;if(lthi){layerTreeImpl=lthi.getTree(this.layerPicker_.whichTree);}
7478this.layerPicker_.lthiSnapshot=lthi;this.layerView_.layerTreeImpl=layerTreeImpl;this.layerView_.regenerateContent();if(!this.selection_)return;this.selection=this.selection_.findEquivalent(lthi);},get selection(){return this.selection_;},set selection(selection){if(this.selection_===selection)return;this.selection_=selection;this.layerPicker_.selection=selection;this.layerView_.selection=selection;tr.b.dispatchSimpleEvent(this,'cc-selection-change');},onLayerPickerSelectionChanged_(){this.selection_=this.layerPicker_.selection;this.layerView_.selection=this.selection;this.layerView_.layerTreeImpl=this.layerPicker_.layerTreeImpl;this.layerView_.isRenderPassQuads=this.layerPicker_.isRenderPassQuads;this.layerView_.regenerateContent();tr.b.dispatchSimpleEvent(this,'cc-selection-change');},onLayerViewSelectionChanged_(){this.selection_=this.layerView_.selection;this.layerPicker_.selection=this.selection;tr.b.dispatchSimpleEvent(this,'cc-selection-change');},get extraHighlightsByLayerId(){return this.layerView_.extraHighlightsByLayerId;},set extraHighlightsByLayerId(extraHighlightsByLayerId){this.layerView_.extraHighlightsByLayerId=extraHighlightsByLayerId;}};tr.ui.analysis.ObjectSnapshotView.register(LayerTreeHostImplSnapshotView,{typeName:'cc::LayerTreeHostImpl'});return{LayerTreeHostImplSnapshotView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const OPS_TIMING_ITERATIONS=3;const CHART_PADDING_LEFT=65;const CHART_PADDING_RIGHT=40;const AXIS_PADDING_LEFT=60;const AXIS_PADDING_RIGHT=35;const AXIS_PADDING_TOP=25;const AXIS_PADDING_BOTTOM=45;const AXIS_LABEL_PADDING=5;const AXIS_TICK_SIZE=10;const LABEL_PADDING=5;const LABEL_INTERLEAVE_OFFSET=15;const BAR_PADDING=5;const VERTICAL_TICKS=5;const HUE_CHAR_CODE_ADJUSTMENT=5.7;const PictureOpsChartSummaryView=tr.ui.b.define('tr-ui-e-chrome-cc-picture-ops-chart-summary-view');PictureOpsChartSummaryView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.style.flexGrow=0;this.style.flexShrink=0;this.style.flexBasis='auto';this.style.fontSize=0;this.style.margin=0;this.style.minHeight='200px';this.style.minWidth='200px';this.style.overflow='hidden';this.style.padding=0;this.picture_=undefined;this.pictureDataProcessed_=false;this.chartScale_=window.devicePixelRatio;this.chart_=document.createElement('canvas');this.chartCtx_=this.chart_.getContext('2d');Polymer.dom(this).appendChild(this.chart_);this.opsTimingData_=[];this.chartWidth_=0;this.chartHeight_=0;this.requiresRedraw_=true;this.currentBarMouseOverTarget_=null;this.chart_.addEventListener('mousemove',this.onMouseMove_.bind(this));},get requiresRedraw(){return this.requiresRedraw_;},set requiresRedraw(requiresRedraw){this.requiresRedraw_=requiresRedraw;},get picture(){return this.picture_;},set picture(picture){this.picture_=picture;this.pictureDataProcessed_=false;if(Polymer.dom(this).classList.contains('hidden'))return;this.processPictureData_();this.requiresRedraw=true;this.updateChartContents();},hide(){Polymer.dom(this).classList.add('hidden');this.style.display='none';},show(){Polymer.dom(this).classList.remove('hidden');this.style.display='';if(this.pictureDataProcessed_)return;this.processPictureData_();this.requiresRedraw=true;this.updateChartContents();},onMouseMove_(e){const lastBarMouseOverTarget=this.currentBarMouseOverTarget_;this.currentBarMouseOverTarget_=null;const x=e.offsetX;const y=e.offsetY;const chartLeft=CHART_PADDING_LEFT;const chartRight=this.chartWidth_-CHART_PADDING_RIGHT;const chartTop=AXIS_PADDING_TOP;const chartBottom=this.chartHeight_-AXIS_PADDING_BOTTOM;const chartInnerWidth=chartRight-chartLeft;if(x>chartLeft&&x<chartRight&&y>chartTop&&y<chartBottom){this.currentBarMouseOverTarget_=Math.floor((x-chartLeft)/chartInnerWidth*this.opsTimingData_.length);this.currentBarMouseOverTarget_=tr.b.math.clamp(this.currentBarMouseOverTarget_,0,this.opsTimingData_.length-1);}
7479if(this.currentBarMouseOverTarget_===lastBarMouseOverTarget)return;this.drawChartContents_();},updateChartContents(){if(this.requiresRedraw){this.updateChartDimensions_();}
7480this.drawChartContents_();},updateChartDimensions_(){this.chartWidth_=this.offsetWidth;this.chartHeight_=this.offsetHeight;this.chart_.width=this.chartWidth_*this.chartScale_;this.chart_.height=this.chartHeight_*this.chartScale_;this.chart_.style.width=this.chartWidth_+'px';this.chart_.style.height=this.chartHeight_+'px';this.chartCtx_.scale(this.chartScale_,this.chartScale_);},processPictureData_(){this.resetOpsTimingData_();this.pictureDataProcessed_=true;if(!this.picture_)return;let ops=this.picture_.getOps();if(!ops)return;ops=this.picture_.tagOpsWithTimings(ops);if(ops[0].cmd_time===undefined)return;this.collapseOpsToTimingBuckets_(ops);},drawChartContents_(){this.clearChartContents_();if(this.opsTimingData_.length===0){this.showNoTimingDataMessage_();return;}
7481this.drawChartAxes_();this.drawBars_();this.drawLineAtBottomOfChart_();if(this.currentBarMouseOverTarget_===null)return;this.drawTooltip_();},drawLineAtBottomOfChart_(){this.chartCtx_.strokeStyle='#AAA';this.chartCtx_.moveTo(0,this.chartHeight_-0.5);this.chartCtx_.lineTo(this.chartWidth_,this.chartHeight_-0.5);this.chartCtx_.stroke();},drawTooltip_(){const tooltipData=this.opsTimingData_[this.currentBarMouseOverTarget_];const tooltipTitle=tooltipData.cmd_string;const tooltipTime=tooltipData.cmd_time.toFixed(4);const tooltipWidth=110;const tooltipHeight=40;const chartInnerWidth=this.chartWidth_-CHART_PADDING_RIGHT-
7482CHART_PADDING_LEFT;const barWidth=chartInnerWidth/this.opsTimingData_.length;const tooltipOffset=Math.round((tooltipWidth-barWidth)*0.5);const left=CHART_PADDING_LEFT+this.currentBarMouseOverTarget_*barWidth-tooltipOffset;const top=Math.round((this.chartHeight_-tooltipHeight)*0.5);this.chartCtx_.save();this.chartCtx_.shadowOffsetX=0;this.chartCtx_.shadowOffsetY=5;this.chartCtx_.shadowBlur=4;this.chartCtx_.shadowColor='rgba(0,0,0,0.4)';this.chartCtx_.strokeStyle='#888';this.chartCtx_.fillStyle='#EEE';this.chartCtx_.fillRect(left,top,tooltipWidth,tooltipHeight);this.chartCtx_.shadowColor='transparent';this.chartCtx_.translate(0.5,0.5);this.chartCtx_.strokeRect(left,top,tooltipWidth,tooltipHeight);this.chartCtx_.restore();this.chartCtx_.fillStyle='#222';this.chartCtx_.textBaseline='top';this.chartCtx_.font='800 12px Arial';this.chartCtx_.fillText(tooltipTitle,left+8,top+8);this.chartCtx_.fillStyle='#555';this.chartCtx_.textBaseline='top';this.chartCtx_.font='400 italic 10px Arial';this.chartCtx_.fillText('Total: '+tooltipTime+'ms',left+8,top+22);},drawBars_(){const len=this.opsTimingData_.length;const max=this.opsTimingData_[0].cmd_time;const min=this.opsTimingData_[len-1].cmd_time;const width=this.chartWidth_-CHART_PADDING_LEFT-CHART_PADDING_RIGHT;const height=this.chartHeight_-AXIS_PADDING_TOP-AXIS_PADDING_BOTTOM;const barWidth=Math.floor(width/len);let opData;let opTiming;let opHeight;let opLabel;let barLeft;for(let b=0;b<len;b++){opData=this.opsTimingData_[b];opTiming=opData.cmd_time/max;opHeight=Math.round(Math.max(1,opTiming*height));opLabel=opData.cmd_string;barLeft=CHART_PADDING_LEFT+b*barWidth;this.chartCtx_.fillStyle=this.getOpColor_(opLabel);this.chartCtx_.fillRect(barLeft+BAR_PADDING,AXIS_PADDING_TOP+
7483height-opHeight,barWidth-2*BAR_PADDING,opHeight);}},getOpColor_(opName){const characters=opName.split('');const hue=characters.reduce(this.reduceNameToHue,0)%360;return'hsl('+hue+', 30%, 50%)';},reduceNameToHue(previousValue,currentValue,index,array){return Math.round(previousValue+currentValue.charCodeAt(0)*HUE_CHAR_CODE_ADJUSTMENT);},drawChartAxes_(){const len=this.opsTimingData_.length;const max=this.opsTimingData_[0].cmd_time;const min=this.opsTimingData_[len-1].cmd_time;const width=this.chartWidth_-AXIS_PADDING_LEFT-AXIS_PADDING_RIGHT;const height=this.chartHeight_-AXIS_PADDING_TOP-AXIS_PADDING_BOTTOM;const totalBarWidth=this.chartWidth_-CHART_PADDING_LEFT-
7484CHART_PADDING_RIGHT;const barWidth=Math.floor(totalBarWidth/len);const tickYInterval=height/(VERTICAL_TICKS-1);let tickYPosition=0;const tickValInterval=(max-min)/(VERTICAL_TICKS-1);let tickVal=0;this.chartCtx_.fillStyle='#333';this.chartCtx_.strokeStyle='#777';this.chartCtx_.save();this.chartCtx_.translate(0.5,0.5);this.chartCtx_.save();this.chartCtx_.translate(AXIS_PADDING_LEFT,AXIS_PADDING_TOP);this.chartCtx_.moveTo(0,0);this.chartCtx_.lineTo(0,height);this.chartCtx_.lineTo(width,height);this.chartCtx_.font='10px Arial';this.chartCtx_.textAlign='right';this.chartCtx_.textBaseline='middle';for(let t=0;t<VERTICAL_TICKS;t++){tickYPosition=Math.round(t*tickYInterval);tickVal=(max-t*tickValInterval).toFixed(4);this.chartCtx_.moveTo(0,tickYPosition);this.chartCtx_.lineTo(-AXIS_TICK_SIZE,tickYPosition);this.chartCtx_.fillText(tickVal,-AXIS_TICK_SIZE-AXIS_LABEL_PADDING,tickYPosition);}
7485this.chartCtx_.stroke();this.chartCtx_.restore();this.chartCtx_.save();this.chartCtx_.translate(CHART_PADDING_LEFT+Math.round(barWidth*0.5),AXIS_PADDING_TOP+height+LABEL_PADDING);this.chartCtx_.font='10px Arial';this.chartCtx_.textAlign='center';this.chartCtx_.textBaseline='top';let labelTickLeft;let labelTickBottom;for(let l=0;l<len;l++){labelTickLeft=Math.round(l*barWidth);labelTickBottom=l%2*LABEL_INTERLEAVE_OFFSET;this.chartCtx_.save();this.chartCtx_.moveTo(labelTickLeft,-LABEL_PADDING);this.chartCtx_.lineTo(labelTickLeft,labelTickBottom);this.chartCtx_.stroke();this.chartCtx_.restore();this.chartCtx_.fillText(this.opsTimingData_[l].cmd_string,labelTickLeft,labelTickBottom);}
7486this.chartCtx_.restore();this.chartCtx_.restore();},clearChartContents_(){this.chartCtx_.clearRect(0,0,this.chartWidth_,this.chartHeight_);},showNoTimingDataMessage_(){this.chartCtx_.font='800 italic 14px Arial';this.chartCtx_.fillStyle='#333';this.chartCtx_.textAlign='center';this.chartCtx_.textBaseline='middle';this.chartCtx_.fillText('No timing data available.',this.chartWidth_*0.5,this.chartHeight_*0.5);},collapseOpsToTimingBuckets_(ops){const opsTimingDataIndexHash_={};const timingData=this.opsTimingData_;let op;let opIndex;for(let i=0;i<ops.length;i++){op=ops[i];if(op.cmd_time===undefined)continue;opIndex=opsTimingDataIndexHash_[op.cmd_string]||null;if(opIndex===null){timingData.push({cmd_time:0,cmd_string:op.cmd_string});opIndex=timingData.length-1;opsTimingDataIndexHash_[op.cmd_string]=opIndex;}
7487timingData[opIndex].cmd_time+=op.cmd_time;}
7488timingData.sort(this.sortTimingBucketsByOpTimeDescending_);this.collapseTimingBucketsToOther_(4);},collapseTimingBucketsToOther_(count){const timingData=this.opsTimingData_;const otherSource=timingData.splice(count,timingData.length-count);let otherDestination=null;if(!otherSource.length)return;timingData.push({cmd_time:0,cmd_string:'Other'});otherDestination=timingData[timingData.length-1];for(let i=0;i<otherSource.length;i++){otherDestination.cmd_time+=otherSource[i].cmd_time;}},sortTimingBucketsByOpTimeDescending_(a,b){return b.cmd_time-a.cmd_time;},resetOpsTimingData_(){this.opsTimingData_.length=0;}};return{PictureOpsChartSummaryView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const BAR_PADDING=1;const BAR_WIDTH=5;const CHART_PADDING_LEFT=65;const CHART_PADDING_RIGHT=30;const CHART_PADDING_BOTTOM=35;const CHART_PADDING_TOP=20;const AXIS_PADDING_LEFT=55;const AXIS_PADDING_RIGHT=30;const AXIS_PADDING_BOTTOM=35;const AXIS_PADDING_TOP=20;const AXIS_TICK_SIZE=5;const AXIS_LABEL_PADDING=5;const VERTICAL_TICKS=5;const HUE_CHAR_CODE_ADJUSTMENT=5.7;const PictureOpsChartView=tr.ui.b.define('tr-ui-e-chrome-cc-picture-ops-chart-view');PictureOpsChartView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.style.display='block';this.style.height='180px';this.style.margin=0;this.style.padding=0;this.style.position='relative';this.picture_=undefined;this.pictureOps_=undefined;this.opCosts_=undefined;this.chartScale_=window.devicePixelRatio;this.chart_=document.createElement('canvas');this.chartCtx_=this.chart_.getContext('2d');Polymer.dom(this).appendChild(this.chart_);this.selectedOpIndex_=undefined;this.chartWidth_=0;this.chartHeight_=0;this.dimensionsHaveChanged_=true;this.currentBarMouseOverTarget_=undefined;this.ninetyFifthPercentileCost_=0;this.totalOpCost_=0;this.chart_.addEventListener('click',this.onClick_.bind(this));this.chart_.addEventListener('mousemove',this.onMouseMove_.bind(this));this.usePercentileScale_=false;this.usePercentileScaleCheckbox_=tr.ui.b.createCheckBox(this,'usePercentileScale','PictureOpsChartView.usePercentileScale',false,'Limit to 95%-ile');Polymer.dom(this.usePercentileScaleCheckbox_).classList.add('use-percentile-scale');this.usePercentileScaleCheckbox_.style.position='absolute';this.usePercentileScaleCheckbox_.style.left=0;this.usePercentileScaleCheckbox_.style.top=0;Polymer.dom(this).appendChild(this.usePercentileScaleCheckbox_);},get dimensionsHaveChanged(){return this.dimensionsHaveChanged_;},set dimensionsHaveChanged(dimensionsHaveChanged){this.dimensionsHaveChanged_=dimensionsHaveChanged;},get usePercentileScale(){return this.usePercentileScale_;},set usePercentileScale(usePercentileScale){this.usePercentileScale_=usePercentileScale;this.drawChartContents_();},get numOps(){return this.opCosts_.length;},get selectedOpIndex(){return this.selectedOpIndex_;},set selectedOpIndex(selectedOpIndex){if(selectedOpIndex<0)throw new Error('Invalid index');if(selectedOpIndex>=this.numOps)throw new Error('Invalid index');this.selectedOpIndex_=selectedOpIndex;},get picture(){return this.picture_;},set picture(picture){this.picture_=picture;this.pictureOps_=picture.tagOpsWithTimings(picture.getOps());this.currentBarMouseOverTarget_=undefined;this.processPictureData_();this.dimensionsHaveChanged=true;},processPictureData_(){if(this.pictureOps_===undefined)return;let totalOpCost=0;this.opCosts_=this.pictureOps_.map(function(op){totalOpCost+=op.cmd_time;return op.cmd_time;});this.opCosts_.sort();const ninetyFifthPercentileCostIndex=Math.floor(this.opCosts_.length*0.95);this.ninetyFifthPercentileCost_=this.opCosts_[ninetyFifthPercentileCostIndex];this.maxCost_=this.opCosts_[this.opCosts_.length-1];this.totalOpCost_=totalOpCost;},extractBarIndex_(e){let index=undefined;if(this.pictureOps_===undefined||this.pictureOps_.length===0){return index;}
7489const x=e.offsetX;const y=e.offsetY;const totalBarWidth=(BAR_WIDTH+BAR_PADDING)*this.pictureOps_.length;const chartLeft=CHART_PADDING_LEFT;const chartTop=0;const chartBottom=this.chartHeight_-CHART_PADDING_BOTTOM;const chartRight=chartLeft+totalBarWidth;if(x<chartLeft||x>chartRight||y<chartTop||y>chartBottom){return index;}
7490index=Math.floor((x-chartLeft)/totalBarWidth*this.pictureOps_.length);index=tr.b.math.clamp(index,0,this.pictureOps_.length-1);return index;},onClick_(e){const barClicked=this.extractBarIndex_(e);if(barClicked===undefined)return;if(barClicked===this.selectedOpIndex){this.selectedOpIndex=undefined;}else{this.selectedOpIndex=barClicked;}
7491e.preventDefault();tr.b.dispatchSimpleEvent(this,'selection-changed',false);},onMouseMove_(e){const lastBarMouseOverTarget=this.currentBarMouseOverTarget_;this.currentBarMouseOverTarget_=this.extractBarIndex_(e);if(this.currentBarMouseOverTarget_===lastBarMouseOverTarget){return;}
7492this.drawChartContents_();},scrollSelectedItemIntoViewIfNecessary(){if(this.selectedOpIndex===undefined){return;}
7493const width=this.offsetWidth;const left=this.scrollLeft;const right=left+width;const targetLeft=CHART_PADDING_LEFT+
7494(BAR_WIDTH+BAR_PADDING)*this.selectedOpIndex;if(targetLeft>left&&targetLeft<right){return;}
7495this.scrollLeft=(targetLeft-width*0.5);},updateChartContents(){if(this.dimensionsHaveChanged){this.updateChartDimensions_();}
7496this.drawChartContents_();},updateChartDimensions_(){if(!this.pictureOps_)return;let width=CHART_PADDING_LEFT+CHART_PADDING_RIGHT+
7497((BAR_WIDTH+BAR_PADDING)*this.pictureOps_.length);if(width<this.offsetWidth){width=this.offsetWidth;}
7498this.chartWidth_=width;this.chartHeight_=this.getBoundingClientRect().height;this.chart_.width=this.chartWidth_*this.chartScale_;this.chart_.height=this.chartHeight_*this.chartScale_;this.chart_.style.width=this.chartWidth_+'px';this.chart_.style.height=this.chartHeight_+'px';this.chartCtx_.scale(this.chartScale_,this.chartScale_);this.dimensionsHaveChanged=false;},drawChartContents_(){this.clearChartContents_();if(this.pictureOps_===undefined||this.pictureOps_.length===0||this.pictureOps_[0].cmd_time===undefined){this.showNoTimingDataMessage_();return;}
7499this.drawSelection_();this.drawBars_();this.drawChartAxes_();this.drawLinesAtTickMarks_();this.drawLineAtBottomOfChart_();if(this.currentBarMouseOverTarget_===undefined){return;}
7500this.drawTooltip_();},drawSelection_(){if(this.selectedOpIndex===undefined){return;}
7501const width=(BAR_WIDTH+BAR_PADDING)*this.selectedOpIndex;this.chartCtx_.fillStyle='rgb(223, 235, 230)';this.chartCtx_.fillRect(CHART_PADDING_LEFT,CHART_PADDING_TOP,width,this.chartHeight_-CHART_PADDING_TOP-CHART_PADDING_BOTTOM);},drawChartAxes_(){const min=this.opCosts_[0];const max=this.opCosts_[this.opCosts_.length-1];const height=this.chartHeight_-AXIS_PADDING_TOP-AXIS_PADDING_BOTTOM;const tickYInterval=height/(VERTICAL_TICKS-1);let tickYPosition=0;const tickValInterval=(max-min)/(VERTICAL_TICKS-1);let tickVal=0;this.chartCtx_.fillStyle='#333';this.chartCtx_.strokeStyle='#777';this.chartCtx_.save();this.chartCtx_.translate(0.5,0.5);this.chartCtx_.beginPath();this.chartCtx_.moveTo(AXIS_PADDING_LEFT,AXIS_PADDING_TOP);this.chartCtx_.lineTo(AXIS_PADDING_LEFT,this.chartHeight_-
7502AXIS_PADDING_BOTTOM);this.chartCtx_.lineTo(this.chartWidth_-AXIS_PADDING_RIGHT,this.chartHeight_-AXIS_PADDING_BOTTOM);this.chartCtx_.stroke();this.chartCtx_.closePath();this.chartCtx_.translate(AXIS_PADDING_LEFT,AXIS_PADDING_TOP);this.chartCtx_.font='10px Arial';this.chartCtx_.textAlign='right';this.chartCtx_.textBaseline='middle';this.chartCtx_.beginPath();for(let t=0;t<VERTICAL_TICKS;t++){tickYPosition=Math.round(t*tickYInterval);tickVal=(max-t*tickValInterval).toFixed(4);this.chartCtx_.moveTo(0,tickYPosition);this.chartCtx_.lineTo(-AXIS_TICK_SIZE,tickYPosition);this.chartCtx_.fillText(tickVal,-AXIS_TICK_SIZE-AXIS_LABEL_PADDING,tickYPosition);}
7503this.chartCtx_.stroke();this.chartCtx_.closePath();this.chartCtx_.restore();},drawLinesAtTickMarks_(){const height=this.chartHeight_-AXIS_PADDING_TOP-AXIS_PADDING_BOTTOM;const width=this.chartWidth_-AXIS_PADDING_LEFT-AXIS_PADDING_RIGHT;const tickYInterval=height/(VERTICAL_TICKS-1);let tickYPosition=0;this.chartCtx_.save();this.chartCtx_.translate(AXIS_PADDING_LEFT+0.5,AXIS_PADDING_TOP+0.5);this.chartCtx_.beginPath();this.chartCtx_.strokeStyle='rgba(0,0,0,0.05)';for(let t=0;t<VERTICAL_TICKS;t++){tickYPosition=Math.round(t*tickYInterval);this.chartCtx_.moveTo(0,tickYPosition);this.chartCtx_.lineTo(width,tickYPosition);this.chartCtx_.stroke();}
7504this.chartCtx_.restore();this.chartCtx_.closePath();},drawLineAtBottomOfChart_(){this.chartCtx_.strokeStyle='#AAA';this.chartCtx_.beginPath();this.chartCtx_.moveTo(0,this.chartHeight_-0.5);this.chartCtx_.lineTo(this.chartWidth_,this.chartHeight_-0.5);this.chartCtx_.stroke();this.chartCtx_.closePath();},drawTooltip_(){const tooltipData=this.pictureOps_[this.currentBarMouseOverTarget_];const tooltipTitle=tooltipData.cmd_string;const tooltipTime=tooltipData.cmd_time.toFixed(4);const toolTipTimePercentage=((tooltipData.cmd_time/this.totalOpCost_)*100).toFixed(2);const tooltipWidth=120;const tooltipHeight=40;const chartInnerWidth=this.chartWidth_-CHART_PADDING_RIGHT-
7505CHART_PADDING_LEFT;const barWidth=BAR_WIDTH+BAR_PADDING;const tooltipOffset=Math.round((tooltipWidth-barWidth)*0.5);const left=CHART_PADDING_LEFT+this.currentBarMouseOverTarget_*barWidth-tooltipOffset;const top=Math.round((this.chartHeight_-tooltipHeight)*0.5);this.chartCtx_.save();this.chartCtx_.shadowOffsetX=0;this.chartCtx_.shadowOffsetY=5;this.chartCtx_.shadowBlur=4;this.chartCtx_.shadowColor='rgba(0,0,0,0.4)';this.chartCtx_.strokeStyle='#888';this.chartCtx_.fillStyle='#EEE';this.chartCtx_.fillRect(left,top,tooltipWidth,tooltipHeight);this.chartCtx_.shadowColor='transparent';this.chartCtx_.translate(0.5,0.5);this.chartCtx_.strokeRect(left,top,tooltipWidth,tooltipHeight);this.chartCtx_.restore();this.chartCtx_.fillStyle='#222';this.chartCtx_.textAlign='left';this.chartCtx_.textBaseline='top';this.chartCtx_.font='800 12px Arial';this.chartCtx_.fillText(tooltipTitle,left+8,top+8);this.chartCtx_.fillStyle='#555';this.chartCtx_.font='400 italic 10px Arial';this.chartCtx_.fillText(tooltipTime+'ms ('+
7506toolTipTimePercentage+'%)',left+8,top+22);},drawBars_(){let op;let opColor=0;let opHeight=0;const opWidth=BAR_WIDTH+BAR_PADDING;let opHover=false;const bottom=this.chartHeight_-CHART_PADDING_BOTTOM;const maxHeight=this.chartHeight_-CHART_PADDING_BOTTOM-
7507CHART_PADDING_TOP;let maxValue;if(this.usePercentileScale){maxValue=this.ninetyFifthPercentileCost_;}else{maxValue=this.maxCost_;}
7508for(let b=0;b<this.pictureOps_.length;b++){op=this.pictureOps_[b];opHeight=Math.round((op.cmd_time/maxValue)*maxHeight);opHeight=Math.max(opHeight,1);opHover=(b===this.currentBarMouseOverTarget_);opColor=this.getOpColor_(op.cmd_string,opHover);if(b===this.selectedOpIndex){this.chartCtx_.fillStyle='#FFFF00';}else{this.chartCtx_.fillStyle=opColor;}
7509this.chartCtx_.fillRect(CHART_PADDING_LEFT+b*opWidth,bottom-opHeight,BAR_WIDTH,opHeight);}},getOpColor_(opName,hover){const characters=opName.split('');const hue=characters.reduce(this.reduceNameToHue,0)%360;const saturation=30;const lightness=hover?'75%':'50%';return'hsl('+hue+', '+saturation+'%, '+lightness+'%)';},reduceNameToHue(previousValue,currentValue,index,array){return Math.round(previousValue+currentValue.charCodeAt(0)*HUE_CHAR_CODE_ADJUSTMENT);},clearChartContents_(){this.chartCtx_.clearRect(0,0,this.chartWidth_,this.chartHeight_);},showNoTimingDataMessage_(){this.chartCtx_.font='800 italic 14px Arial';this.chartCtx_.fillStyle='#333';this.chartCtx_.textAlign='center';this.chartCtx_.textBaseline='middle';this.chartCtx_.fillText('No timing data available.',this.chartWidth_*0.5,this.chartHeight_*0.5);}};return{PictureOpsChartView,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const THIS_DOC=document.currentScript.ownerDocument;const PictureDebugger=tr.ui.b.define('tr-ui-e-chrome-cc-picture-debugger');PictureDebugger.prototype={__proto__:HTMLDivElement.prototype,decorate(){const node=tr.ui.b.instantiateTemplate('#tr-ui-e-chrome-cc-picture-debugger-template',THIS_DOC);Polymer.dom(this).appendChild(node);this.style.display='flex';this.style.flexGrow=1;this.style.flexShrink=1;this.style.flexBasis='auto';this.style.flexDirection='row';const title=this.querySelector('.title');title.style.fontWeight='bold';title.style.marginLeft='5px';title.style.marginRight='5px';this.pictureAsImageData_=undefined;this.showOverdraw_=false;this.zoomScaleValue_=1;this.sizeInfo_=Polymer.dom(this).querySelector('.size');this.rasterArea_=Polymer.dom(this).querySelector('raster-area');this.rasterArea_.style.backgroundColor='#ddd';this.rasterArea_.style.minHeight='200px';this.rasterArea_.style.minWidth='200px';this.rasterArea_.style.overflowY='auto';this.rasterArea_.style.paddingLeft='5px';this.rasterCanvas_=Polymer.dom(this.rasterArea_).querySelector('canvas');this.rasterCtx_=this.rasterCanvas_.getContext('2d');this.filename_=Polymer.dom(this).querySelector('.filename');this.filename_.style.userSelect='text';this.filename_.style.marginLeft='5px';this.drawOpsChartSummaryView_=new tr.ui.e.chrome.cc.PictureOpsChartSummaryView();this.drawOpsChartView_=new tr.ui.e.chrome.cc.PictureOpsChartView();this.drawOpsChartView_.addEventListener('selection-changed',this.onChartBarClicked_.bind(this));this.exportButton_=Polymer.dom(this).querySelector('.export');this.exportButton_.addEventListener('click',this.onSaveAsSkPictureClicked_.bind(this));this.trackMouse_();const overdrawCheckbox=tr.ui.b.createCheckBox(this,'showOverdraw','pictureView.showOverdraw',false,'Show overdraw');const chartCheckbox=tr.ui.b.createCheckBox(this,'showSummaryChart','pictureView.showSummaryChart',false,'Show timing summary');const pictureInfo=Polymer.dom(this).querySelector('picture-info');pictureInfo.style.flexGrow=0;pictureInfo.style.flexShrink=0;pictureInfo.style.flexBasis='auto';pictureInfo.style.paddingTop='2px';Polymer.dom(pictureInfo).appendChild(overdrawCheckbox);Polymer.dom(pictureInfo).appendChild(chartCheckbox);this.drawOpsView_=new tr.ui.e.chrome.cc.PictureOpsListView();this.drawOpsView_.addEventListener('selection-changed',this.onChangeDrawOps_.bind(this));const leftPanel=Polymer.dom(this).querySelector('left-panel');leftPanel.style.flexDirection='column';leftPanel.style.display='flex';leftPanel.style.minWidth='300px';Polymer.dom(leftPanel).appendChild(this.drawOpsChartSummaryView_);Polymer.dom(leftPanel).appendChild(this.drawOpsView_);const middleDragHandle=document.createElement('tr-ui-b-drag-handle');middleDragHandle.style.flexGrow=0;middleDragHandle.style.flexShrink=0;middleDragHandle.style.flexBasis='auto';middleDragHandle.horizontal=false;middleDragHandle.target=leftPanel;const rightPanel=Polymer.dom(this).querySelector('right-panel');rightPanel.style.flexGrow=1;rightPanel.style.flexShrink=1;rightPanel.style.flexBasis='auto';rightPanel.style.flexDirection='column';rightPanel.style.display='flex';const chartView=Polymer.dom(rightPanel).querySelector('tr-ui-e-chrome-cc-picture-ops-chart-view');chartView.style.minHeight='150px';chartView.style.minWidth=0;chartView.style.overflowX='auto';chartView.style.overflowY='hidden';rightPanel.replaceChild(this.drawOpsChartView_,chartView);this.infoBar_=document.createElement('tr-ui-b-info-bar');Polymer.dom(this.rasterArea_).appendChild(this.infoBar_);Polymer.dom(this).insertBefore(middleDragHandle,rightPanel);this.picture_=undefined;const hkc=document.createElement('tv-ui-b-hotkey-controller');hkc.addHotKey(new tr.ui.b.HotKey({eventType:'keypress',thisArg:this,keyCode:'h'.charCodeAt(0),callback(e){this.moveSelectedOpBy(-1);e.stopPropagation();}}));hkc.addHotKey(new tr.ui.b.HotKey({eventType:'keypress',thisArg:this,keyCode:'l'.charCodeAt(0),callback(e){this.moveSelectedOpBy(1);e.stopPropagation();}}));Polymer.dom(this).appendChild(hkc);this.mutationObserver_=new MutationObserver(this.onMutation_.bind(this));this.mutationObserver_.observe(leftPanel,{attributes:true});},onMutation_(mutations){for(let m=0;m<mutations.length;m++){if(mutations[m].attributeName==='style'){this.drawOpsChartSummaryView_.requiresRedraw=true;this.drawOpsChartSummaryView_.updateChartContents();this.drawOpsChartView_.dimensionsHaveChanged=true;this.drawOpsChartView_.updateChartContents();break;}}},onSaveAsSkPictureClicked_(){const rawData=tr.b.Base64.atob(this.picture_.getBase64SkpData());const length=rawData.length;const arrayBuffer=new ArrayBuffer(length);const uint8Array=new Uint8Array(arrayBuffer);for(let c=0;c<length;c++){uint8Array[c]=rawData.charCodeAt(c);}
7510const blob=new Blob([uint8Array],{type:'application/octet-binary'});const blobUrl=window.webkitURL.createObjectURL(blob);const link=document.createElementNS('http://www.w3.org/1999/xhtml','a');link.href=blobUrl;link.download=this.filename_.value;const event=document.createEvent('MouseEvents');event.initMouseEvent('click',true,false,window,0,0,0,0,0,false,false,false,false,0,null);link.dispatchEvent(event);},get picture(){return this.picture_;},set picture(picture){this.drawOpsView_.picture=picture;this.drawOpsChartView_.picture=picture;this.drawOpsChartSummaryView_.picture=picture;this.picture_=picture;this.exportButton_.disabled=!this.picture_.canSave;if(picture){const size=this.getRasterCanvasSize_();this.rasterCanvas_.width=size.width;this.rasterCanvas_.height=size.height;}
7511const bounds=this.rasterArea_.getBoundingClientRect();const selectorBounds=this.mouseModeSelector_.getBoundingClientRect();this.mouseModeSelector_.pos={x:(bounds.right-selectorBounds.width-10),y:bounds.top};this.rasterize_();this.scheduleUpdateContents_();},getRasterCanvasSize_(){const style=window.getComputedStyle(this.rasterArea_);const width=Math.max(parseInt(style.width),this.picture_.layerRect.width);const height=Math.max(parseInt(style.height),this.picture_.layerRect.height);return{width,height};},scheduleUpdateContents_(){if(this.updateContentsPending_)return;this.updateContentsPending_=true;tr.b.requestAnimationFrameInThisFrameIfPossible(this.updateContents_.bind(this));},updateContents_(){this.updateContentsPending_=false;if(this.picture_){Polymer.dom(this.sizeInfo_).textContent='('+
7512this.picture_.layerRect.width+' x '+
7513this.picture_.layerRect.height+')';}
7514this.drawOpsChartView_.updateChartContents();this.drawOpsChartView_.scrollSelectedItemIntoViewIfNecessary();if(!this.pictureAsImageData_)return;this.infoBar_.visible=false;this.infoBar_.removeAllButtons();if(this.pictureAsImageData_.error){this.infoBar_.message='Cannot rasterize...';this.infoBar_.addButton('More info...',function(e){const overlay=new tr.ui.b.Overlay();Polymer.dom(overlay).textContent=this.pictureAsImageData_.error;overlay.visible=true;e.stopPropagation();return false;}.bind(this));this.infoBar_.visible=true;}
7515this.drawPicture_();},drawPicture_(){const size=this.getRasterCanvasSize_();if(size.width!==this.rasterCanvas_.width){this.rasterCanvas_.width=size.width;}
7516if(size.height!==this.rasterCanvas_.height){this.rasterCanvas_.height=size.height;}
7517this.rasterCtx_.clearRect(0,0,size.width,size.height);if(!this.pictureAsImageData_.imageData)return;const imgCanvas=this.pictureAsImageData_.asCanvas();const w=imgCanvas.width;const h=imgCanvas.height;this.rasterCtx_.drawImage(imgCanvas,0,0,w,h,0,0,w*this.zoomScaleValue_,h*this.zoomScaleValue_);},rasterize_(){if(this.picture_){this.picture_.rasterize({stopIndex:this.drawOpsView_.selectedOpIndex,showOverdraw:this.showOverdraw_},this.onRasterComplete_.bind(this));}},onRasterComplete_(pictureAsImageData){this.pictureAsImageData_=pictureAsImageData;this.scheduleUpdateContents_();},moveSelectedOpBy(increment){if(this.selectedOpIndex===undefined){this.selectedOpIndex=0;return;}
7518this.selectedOpIndex=tr.b.math.clamp(this.selectedOpIndex+increment,0,this.numOps);},get numOps(){return this.drawOpsView_.numOps;},get selectedOpIndex(){return this.drawOpsView_.selectedOpIndex;},set selectedOpIndex(index){this.drawOpsView_.selectedOpIndex=index;this.drawOpsChartView_.selectedOpIndex=index;},onChartBarClicked_(e){this.drawOpsView_.selectedOpIndex=this.drawOpsChartView_.selectedOpIndex;},onChangeDrawOps_(e){this.rasterize_();this.scheduleUpdateContents_();this.drawOpsChartView_.selectedOpIndex=this.drawOpsView_.selectedOpIndex;},set showOverdraw(v){this.showOverdraw_=v;this.rasterize_();},set showSummaryChart(chartShouldBeVisible){if(chartShouldBeVisible){this.drawOpsChartSummaryView_.show();}else{this.drawOpsChartSummaryView_.hide();}},trackMouse_(){this.mouseModeSelector_=document.createElement('tr-ui-b-mouse-mode-selector');this.mouseModeSelector_.targetElement=this.rasterArea_;Polymer.dom(this.rasterArea_).appendChild(this.mouseModeSelector_);this.mouseModeSelector_.supportedModeMask=tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM;this.mouseModeSelector_.mode=tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM;this.mouseModeSelector_.defaultMode=tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM;this.mouseModeSelector_.settingsKey='pictureDebugger.mouseModeSelector';this.mouseModeSelector_.addEventListener('beginzoom',this.onBeginZoom_.bind(this));this.mouseModeSelector_.addEventListener('updatezoom',this.onUpdateZoom_.bind(this));this.mouseModeSelector_.addEventListener('endzoom',this.onEndZoom_.bind(this));},onBeginZoom_(e){this.isZooming_=true;this.lastMouseViewPos_=this.extractRelativeMousePosition_(e);e.preventDefault();},onUpdateZoom_(e){if(!this.isZooming_)return;const currentMouseViewPos=this.extractRelativeMousePosition_(e);this.zoomScaleValue_+=((this.lastMouseViewPos_.y-currentMouseViewPos.y)*0.001);this.zoomScaleValue_=Math.max(this.zoomScaleValue_,0.1);this.drawPicture_();this.lastMouseViewPos_=currentMouseViewPos;},onEndZoom_(e){this.lastMouseViewPos_=undefined;this.isZooming_=false;e.preventDefault();},extractRelativeMousePosition_(e){return{x:e.clientX-this.rasterArea_.offsetLeft,y:e.clientY-this.rasterArea_.offsetTop};}};return{PictureDebugger,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const PictureSnapshotView=tr.ui.b.define('tr-ui-e-chrome-cc-picture-snapshot-view',tr.ui.analysis.ObjectSnapshotView);PictureSnapshotView.prototype={__proto__:tr.ui.analysis.ObjectSnapshotView.prototype,decorate(){Polymer.dom(this).classList.add('tr-ui-e-chrome-cc-picture-snapshot-view');this.style.display='flex';this.style.flexGrow=0;this.style.flexShrink=1;this.style.flexBasis='auto';this.pictureDebugger_=new tr.ui.e.chrome.cc.PictureDebugger();Polymer.dom(this).appendChild(this.pictureDebugger_);},updateContents(){if(this.objectSnapshot_&&this.pictureDebugger_){this.pictureDebugger_.picture=this.objectSnapshot_;}}};tr.ui.analysis.ObjectSnapshotView.register(PictureSnapshotView,{typeNames:['cc::Picture','cc::LayeredPicture'],showInstances:false});return{PictureSnapshotView,};});'use strict';tr.exportTo('tr.e.cc',function(){const knownRasterTaskNames=['TileManager::RunRasterTask','RasterWorkerPoolTaskImpl::RunRasterOnThread','RasterWorkerPoolTaskImpl::Raster','RasterTaskImpl::Raster','cc::RasterTask','RasterTask'];const knownAnalysisTaskNames=['TileManager::RunAnalyzeTask','RasterWorkerPoolTaskImpl::RunAnalysisOnThread','RasterWorkerPoolTaskImpl::Analyze','RasterTaskImpl::Analyze','cc::AnalyzeTask','AnalyzeTask'];function getTileFromRasterTaskSlice(slice){if(!(isSliceDoingRasterization(slice)||isSliceDoingAnalysis(slice))){return undefined;}
7519let tileData;if(slice.args.data){tileData=slice.args.data;}else{tileData=slice.args.tileData;}
7520if(tileData===undefined)return undefined;if(tileData.tile_id)return tileData.tile_id;const tile=tileData.tileId;if(!(tile instanceof tr.e.cc.TileSnapshot)){return undefined;}
7521return tileData.tileId;}
7522function isSliceDoingRasterization(slice){return knownRasterTaskNames.includes(slice.title);}
7523function isSliceDoingAnalysis(slice){return knownAnalysisTaskNames.includes(slice.title);}
7524return{getTileFromRasterTaskSlice,isSliceDoingRasterization,isSliceDoingAnalysis};});'use strict';tr.exportTo('tr.ui.analysis',function(){const AnalysisSubView={set tabLabel(label){Polymer.dom(this).setAttribute('tab-label',label);},get tabLabel(){return this.getAttribute('tab-label');},get requiresTallView(){return false;},get relatedEventsToHighlight(){return undefined;},set selection(selection){throw new Error('Not implemented!');},get selection(){throw new Error('Not implemented!');}};const allTypeInfosByEventProto=new Map();let onlyRootTypeInfosByEventProto=undefined;let eventProtoToRootTypeInfoMap=undefined;function AnalysisSubViewTypeInfo(eventConstructor,options){if(options.multi===undefined){throw new Error('missing field: multi');}
7525if(options.title===undefined){throw new Error('missing field: title');}
7526this.eventConstructor=eventConstructor;this.singleTagName=undefined;this.singleTitle=undefined;this.multiTagName=undefined;this.multiTitle=undefined;this.childrenTypeInfos_=undefined;}
7527AnalysisSubViewTypeInfo.prototype={get childrenTypeInfos(){return this.childrenTypeInfos_;},resetchildrenTypeInfos(){this.childrenTypeInfos_=[];}};AnalysisSubView.register=function(tagName,eventConstructor,options){let typeInfo=allTypeInfosByEventProto.get(eventConstructor.prototype);if(typeInfo===undefined){typeInfo=new AnalysisSubViewTypeInfo(eventConstructor,options);allTypeInfosByEventProto.set(typeInfo.eventConstructor.prototype,typeInfo);onlyRootTypeInfosByEventProto=undefined;}
7528if(!options.multi){if(typeInfo.singleTagName!==undefined){throw new Error('SingleTagName already set');}
7529typeInfo.singleTagName=tagName;typeInfo.singleTitle=options.title;}else{if(typeInfo.multiTagName!==undefined){throw new Error('MultiTagName already set');}
7530typeInfo.multiTagName=tagName;typeInfo.multiTitle=options.title;}
7531return typeInfo;};function rebuildRootSubViewTypeInfos(){onlyRootTypeInfosByEventProto=new Map();allTypeInfosByEventProto.forEach(function(typeInfo){typeInfo.resetchildrenTypeInfos();});allTypeInfosByEventProto.forEach(function(typeInfo,eventProto){const eventPrototype=typeInfo.eventConstructor.prototype;let lastEventProto=eventPrototype;let curEventProto=eventPrototype.__proto__;while(true){if(!allTypeInfosByEventProto.has(curEventProto)){const rootTypeInfo=allTypeInfosByEventProto.get(lastEventProto);const rootEventProto=lastEventProto;const isNew=onlyRootTypeInfosByEventProto.has(rootEventProto);onlyRootTypeInfosByEventProto.set(rootEventProto,rootTypeInfo);break;}
7532lastEventProto=curEventProto;curEventProto=curEventProto.__proto__;}});allTypeInfosByEventProto.forEach(function(typeInfo,eventProto){const eventPrototype=typeInfo.eventConstructor.prototype;const parentEventProto=eventPrototype.__proto__;const parentTypeInfo=allTypeInfosByEventProto.get(parentEventProto);if(!parentTypeInfo)return;parentTypeInfo.childrenTypeInfos.push(typeInfo);});eventProtoToRootTypeInfoMap=new Map();allTypeInfosByEventProto.forEach(function(typeInfo,eventProto){const eventPrototype=typeInfo.eventConstructor.prototype;let curEventProto=eventPrototype;while(true){if(onlyRootTypeInfosByEventProto.has(curEventProto)){const rootTypeInfo=onlyRootTypeInfosByEventProto.get(curEventProto);eventProtoToRootTypeInfoMap.set(eventPrototype,rootTypeInfo);break;}
7533curEventProto=curEventProto.__proto__;}});}
7534function findLowestTypeInfoForEvents(thisTypeInfo,events){if(events.length===0)return thisTypeInfo;const event0=tr.b.getFirstElement(events);let candidateSubTypeInfo;for(let i=0;i<thisTypeInfo.childrenTypeInfos.length;i++){const childTypeInfo=thisTypeInfo.childrenTypeInfos[i];if(event0 instanceof childTypeInfo.eventConstructor){candidateSubTypeInfo=childTypeInfo;break;}}
7535if(!candidateSubTypeInfo)return thisTypeInfo;let allMatch=true;for(const event of events){if(event instanceof candidateSubTypeInfo.eventConstructor)continue;allMatch=false;break;}
7536if(!allMatch){return thisTypeInfo;}
7537return findLowestTypeInfoForEvents(candidateSubTypeInfo,events);}
7538const primaryEventProtoToTypeInfoMap=new Map();function getRootTypeInfoForEvent(event){const curProto=event.__proto__;const typeInfo=primaryEventProtoToTypeInfoMap.get(curProto);if(typeInfo)return typeInfo;return getRootTypeInfoForEventSlow(event);}
7539function getRootTypeInfoForEventSlow(event){let typeInfo;let curProto=event.__proto__;while(true){if(curProto===Object.prototype){throw new Error('No view registered for '+event.toString());}
7540typeInfo=onlyRootTypeInfosByEventProto.get(curProto);if(typeInfo){primaryEventProtoToTypeInfoMap.set(event.__proto__,typeInfo);return typeInfo;}
7541curProto=curProto.__proto__;}}
7542AnalysisSubView.getEventsOrganizedByTypeInfo=function(selection){if(onlyRootTypeInfosByEventProto===undefined){rebuildRootSubViewTypeInfos();}
7543const eventsByRootTypeInfo=tr.b.groupIntoMap(selection,function(event){return getRootTypeInfoForEvent(event);},this,tr.model.EventSet);const eventsByLowestTypeInfo=new Map();eventsByRootTypeInfo.forEach(function(events,typeInfo){const lowestTypeInfo=findLowestTypeInfoForEvents(typeInfo,events);eventsByLowestTypeInfo.set(lowestTypeInfo,events);});return eventsByLowestTypeInfo;};return{AnalysisSubView,AnalysisSubViewTypeInfo,};});Polymer({is:'tr-ui-a-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView]});'use strict';Polymer({is:'tr-ui-a-stack-frame',ready(){this.stackFrame_=undefined;this.$.table.tableColumns=[];this.$.table.showHeader=true;},get stackFrame(){return this.stackFrame_;},set stackFrame(stackFrame){const table=this.$.table;this.stackFrame_=stackFrame;if(stackFrame===undefined){table.tableColumns=[];table.tableRows=[];table.rebuild();return;}
7544let hasName=false;let hasTitle=false;table.tableRows=stackFrame.stackTrace;table.tableRows.forEach(function(row){hasName|=row.name!==undefined;hasTitle|=row.title!==undefined;});const cols=[];if(hasName){cols.push({title:'Name',value(row){return row.name;}});}
7545if(hasTitle){cols.push({title:'Title',value(row){return row.title;}});}
7546table.tableColumns=cols;table.rebuild();},tableForTesting(){return this.$.table;}});'use strict';Polymer({is:'tr-ui-a-single-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],properties:{isFlow:{type:Boolean,value:false}},ready(){this.currentSelection_=undefined;this.$.table.tableColumns=[{title:'Label',value(row){return row.name;},width:'150px'},{title:'Value',width:'100%',value(row){return row.value;}}];this.$.table.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){if(selection.length!==1){throw new Error('Only supports single slices');}
7547this.setSelectionWithoutErrorChecks(selection);},setSelectionWithoutErrorChecks(selection){this.currentSelection_=selection;this.updateContents_();},getFlowEventRows_(event){const rows=this.getEventRowsHelper_(event);rows.splice(0,0,{name:'ID',value:event.id});function createLinkTo(slice){const linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(slice);});Polymer.dom(linkEl).textContent=slice.userFriendlyName;return linkEl;}
7548rows.push({name:'From',value:createLinkTo(event.startSlice)});rows.push({name:'To',value:createLinkTo(event.endSlice)});return rows;},getEventRowsHelper_(event){const rows=[];if(event.error){rows.push({name:'Error',value:event.error});}
7549if(event.title){rows.push({name:'Title',value:event.title});}
7550if(event.category){rows.push({name:'Category',value:event.category});}
7551if(event.model!==undefined){const ufc=event.model.getUserFriendlyCategoryFromEvent(event);if(ufc!==undefined){rows.push({name:'User Friendly Category',value:ufc});}}
7552if(event.name){rows.push({name:'Name',value:event.name});}
7553rows.push({name:'Start',value:tr.v.ui.createScalarSpan(event.start,{unit:tr.b.Unit.byName.timeStampInMs})});if(event.duration){rows.push({name:'Wall Duration',value:tr.v.ui.createScalarSpan(event.duration,{unit:tr.b.Unit.byName.timeDurationInMs})});}
7554if(event.cpuDuration){rows.push({name:'CPU Duration',value:tr.v.ui.createScalarSpan(event.cpuDuration,{unit:tr.b.Unit.byName.timeDurationInMs})});}
7555if(event.subSlices!==undefined&&event.subSlices.length!==0){if(event.selfTime){rows.push({name:'Self Time',value:tr.v.ui.createScalarSpan(event.selfTime,{unit:tr.b.Unit.byName.timeDurationInMs})});}
7556if(event.cpuSelfTime){const cpuSelfTimeEl=tr.v.ui.createScalarSpan(event.cpuSelfTime,{unit:tr.b.Unit.byName.timeDurationInMs});if(event.cpuSelfTime>event.selfTime){cpuSelfTimeEl.warning=' Note that CPU Self Time is larger than Self Time. '+'This is a known limitation of this system, which occurs '+'due to several subslices, rounding issues, and imprecise '+'time at which we get cpu- and real-time.';}
7557rows.push({name:'CPU Self Time',value:cpuSelfTimeEl});}}
7558if(event.durationInUserTime){rows.push({name:'Duration (U)',value:tr.v.ui.createScalarSpan(event.durationInUserTime,{unit:tr.b.Unit.byName.timeDurationInMs})});}
7559function createStackFrameEl(sf){const sfEl=document.createElement('tr-ui-a-stack-frame');sfEl.stackFrame=sf;return sfEl;}
7560if(event.startStackFrame&&event.endStackFrame){if(event.startStackFrame===event.endStackFrame){rows.push({name:'Start+End Stack Trace',value:createStackFrameEl(event.startStackFrame)});}else{rows.push({name:'Start Stack Trace',value:createStackFrameEl(event.startStackFrame)});rows.push({name:'End Stack Trace',value:createStackFrameEl(event.endStackFrame)});}}else if(event.startStackFrame){rows.push({name:'Start Stack Trace',value:createStackFrameEl(event.startStackFrame)});}else if(event.endStackFrame){rows.push({name:'End Stack Trace',value:createStackFrameEl(event.endStackFrame)});}
7561if(event.info){const descriptionEl=tr.ui.b.createDiv({textContent:event.info.description,maxWidth:'300px'});rows.push({name:'Description',value:descriptionEl});if(event.info.docLinks){event.info.docLinks.forEach(function(linkObject){const linkEl=document.createElement('a');linkEl.target='_blank';linkEl.href=linkObject.href;Polymer.dom(linkEl).textContent=Polymer.dom(linkObject).textContent;rows.push({name:linkObject.label,value:linkEl});});}}
7562if(event.associatedAlerts.length){const alertSubRows=[];event.associatedAlerts.forEach(function(alert){const linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(alert);},alert.info.description);alertSubRows.push({name:alert.title,value:linkEl});});rows.push({name:'Alerts',value:'',isExpanded:true,subRows:alertSubRows});}
7563return rows;},getEventRows_(event){if(this.isFlow){return this.getFlowEventRows_(event);}
7564return this.getEventRowsHelper_(event);},addArgsToRows_(rows,args){let n=0;for(const argName in args){n+=1;}
7565if(n>0){const subRows=[];for(const argName in args){n+=1;}
7566if(n>0){const subRows=[];for(const argName in args){const argView=document.createElement('tr-ui-a-generic-object-view');argView.object=args[argName];subRows.push({name:argName,value:argView});}
7567rows.push({name:'Args',value:'',isExpanded:true,subRows});}}},addContextsToRows_(rows,contexts){if(contexts.length){const subRows=contexts.map(function(context){const contextView=document.createElement('tr-ui-a-generic-object-view');contextView.object=context;return{name:'Context',value:contextView};});rows.push({name:'Contexts',value:'',isExpanded:true,subRows});}},updateContents_(){if(this.currentSelection_===undefined){this.$.table.rows=[];this.$.table.rebuild();return;}
7568const event=tr.b.getOnlyElement(this.currentSelection_);const rows=this.getEventRows_(event);if(event.argsStripped){rows.push({name:'Args',value:'Stripped'});}else{this.addArgsToRows_(rows,event.args);}
7569this.addContextsToRows_(rows,event.contexts);const customizeRowsEvent=new tr.b.Event('customize-rows');customizeRowsEvent.rows=rows;this.dispatchEvent(customizeRowsEvent);this.$.table.tableRows=rows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-e-chrome-cc-raster-task-view',created(){this.selection_=undefined;},set selection(selection){this.selection_=selection;this.updateContents_();},updateColumns_(hadCpuDurations){const timeSpanConfig={unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument};const columns=[{title:'Layer',value(row){if(row.isTotals)return'Totals';if(row.layer){const linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.ui.e.chrome.cc.LayerSelection(costs.layer);},'Layer '+row.layerId);return linkEl;}
7570return'Layer '+row.layerId;},width:'250px'},{title:'Num Tiles',value(row){return row.numTiles;},cmp(a,b){return a.numTiles-b.numTiles;}},{title:'Num Analysis Tasks',value(row){return row.numAnalysisTasks;},cmp(a,b){return a.numAnalysisTasks-b.numAnalysisTasks;}},{title:'Num Raster Tasks',value(row){return row.numRasterTasks;},cmp(a,b){return a.numRasterTasks-b.numRasterTasks;}},{title:'Wall Duration (ms)',value(row){return tr.v.ui.createScalarSpan(row.duration,timeSpanConfig);},cmp(a,b){return a.duration-b.duration;}}];if(hadCpuDurations){columns.push({title:'CPU Duration (ms)',value(row){return tr.v.ui.createScalarSpan(row.cpuDuration,timeSpanConfig);},cmp(a,b){return a.cpuDuration-b.cpuDuration;}});}
7571let colWidthPercentage;if(columns.length===1){colWidthPercentage='100%';}else{colWidthPercentage=(100/(columns.length-1)).toFixed(3)+'%';}
7572for(let i=1;i<columns.length;i++){columns[i].width=colWidthPercentage;}
7573this.$.content.tableColumns=columns;this.$.content.sortColumnIndex=columns.length-1;},updateContents_(){const table=this.$.content;if(this.selection_.length===0){this.$.link.setSelectionAndContent(undefined,'');table.tableRows=[];table.footerRows=[];table.rebuild();return;}
7574const lthi=tr.e.cc.getTileFromRasterTaskSlice(tr.b.getFirstElement(this.selection_)).containingSnapshot;this.$.link.setSelectionAndContent(function(){return new tr.model.EventSet(lthi);},lthi.userFriendlyName);const costsByLayerId={};function getCurrentCostsForLayerId(tile){const layerId=tile.layerId;const lthi=tile.containingSnapshot;let layer;if(lthi.activeTree){layer=lthi.activeTree.findLayerWithId(layerId);}
7575if(layer===undefined&&lthi.pendingTree){layer=lthi.pendingTree.findLayerWithId(layerId);}
7576if(costsByLayerId[layerId]===undefined){costsByLayerId[layerId]={layerId,layer,numTiles:0,numAnalysisTasks:0,numRasterTasks:0,duration:0,cpuDuration:0};}
7577return costsByLayerId[layerId];}
7578let totalDuration=0;let totalCpuDuration=0;let totalNumAnalyzeTasks=0;let totalNumRasterizeTasks=0;let hadCpuDurations=false;const tilesThatWeHaveSeen={};this.selection_.forEach(function(slice){const tile=tr.e.cc.getTileFromRasterTaskSlice(slice);const curCosts=getCurrentCostsForLayerId(tile);if(!tilesThatWeHaveSeen[tile.objectInstance.id]){tilesThatWeHaveSeen[tile.objectInstance.id]=true;curCosts.numTiles+=1;}
7579if(tr.e.cc.isSliceDoingAnalysis(slice)){curCosts.numAnalysisTasks+=1;totalNumAnalyzeTasks+=1;}else{curCosts.numRasterTasks+=1;totalNumRasterizeTasks+=1;}
7580curCosts.duration+=slice.duration;totalDuration+=slice.duration;if(slice.cpuDuration!==undefined){curCosts.cpuDuration+=slice.cpuDuration;totalCpuDuration+=slice.cpuDuration;hadCpuDurations=true;}});this.updateColumns_(hadCpuDurations);table.tableRows=Object.values(costsByLayerId);table.rebuild();table.footerRows=[{isTotals:true,numTiles:Object.keys(tilesThatWeHaveSeen).length,numAnalysisTasks:totalNumAnalyzeTasks,numRasterTasks:totalNumRasterizeTasks,duration:totalDuration,cpuDuration:totalCpuDuration}];}});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){function RasterTaskSelection(selection){tr.ui.e.chrome.cc.Selection.call(this);const whySupported=RasterTaskSelection.whySuported(selection);if(!whySupported.ok){throw new Error('Fail: '+whySupported.why);}
7581this.slices_=Array.from(selection);this.tiles_=this.slices_.map(function(slice){const tile=tr.e.cc.getTileFromRasterTaskSlice(slice);if(tile===undefined){throw new Error('This should never happen due to .supports check.');}
7582return tile;});}
7583RasterTaskSelection.whySuported=function(selection){if(!(selection instanceof tr.model.EventSet)){return{ok:false,why:'Must be selection'};}
7584if(selection.length===0){return{ok:false,why:'Selection must be non empty'};}
7585let referenceSnapshot=undefined;for(const event of selection){if(!(event instanceof tr.model.Slice)){return{ok:false,why:'Not a slice'};}
7586const tile=tr.e.cc.getTileFromRasterTaskSlice(event);if(tile===undefined){return{ok:false,why:'No tile found'};}
7587if(!referenceSnapshot){referenceSnapshot=tile.containingSnapshot;}else{if(tile.containingSnapshot!==referenceSnapshot){return{ok:false,why:'Raster tasks are from different compositor instances'};}}}
7588return{ok:true};};RasterTaskSelection.supports=function(selection){return RasterTaskSelection.whySuported(selection).ok;};RasterTaskSelection.prototype={__proto__:tr.ui.e.chrome.cc.Selection.prototype,get specicifity(){return 3;},get associatedLayerId(){const tile0=this.tiles_[0];const allSameLayer=this.tiles_.every(function(tile){tile.layerId===tile0.layerId;});if(allSameLayer){return tile0.layerId;}
7589return undefined;},get extraHighlightsByLayerId(){const highlights={};this.tiles_.forEach(function(tile,i){if(highlights[tile.layerId]===undefined){highlights[tile.layerId]=[];}
7590const slice=this.slices_[i];highlights[tile.layerId].push({colorKey:slice.title,rect:tile.layerRect});},this);return highlights;},createAnalysis(){const sel=new tr.model.EventSet();this.slices_.forEach(function(slice){sel.push(slice);});let analysis;if(sel.length===1){analysis=document.createElement('tr-ui-a-single-event-sub-view');}else{analysis=document.createElement('tr-ui-e-chrome-cc-raster-task-view');}
7591analysis.selection=sel;return analysis;},findEquivalent(lthi){return undefined;},get containingSnapshot(){return this.tiles_[0].containingSnapshot;}};return{RasterTaskSelection,};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){const TileSnapshotView=tr.ui.b.define('tr-ui-e-chrome-cc-tile-snapshot-view',tr.ui.analysis.ObjectSnapshotView);TileSnapshotView.prototype={__proto__:tr.ui.analysis.ObjectSnapshotView.prototype,decorate(){Polymer.dom(this).classList.add('tr-ui-e-chrome-cc-tile-snapshot-view');this.layerTreeView_=new tr.ui.e.chrome.cc.LayerTreeHostImplSnapshotView();Polymer.dom(this).appendChild(this.layerTreeView_);},updateContents(){const tile=this.objectSnapshot_;const layerTreeHostImpl=tile.containingSnapshot;if(!layerTreeHostImpl)return;this.layerTreeView_.objectSnapshot=layerTreeHostImpl;this.layerTreeView_.selection=new tr.ui.e.chrome.cc.TileSelection(tile);}};tr.ui.analysis.ObjectSnapshotView.register(TileSnapshotView,{typeName:'cc::Tile',showInTrackView:false});return{TileSnapshotView,};});'use strict';tr.exportTo('tr.e.gpu',function(){const AsyncSlice=tr.model.AsyncSlice;function GpuAsyncSlice(){AsyncSlice.apply(this,arguments);}
7592GpuAsyncSlice.prototype={__proto__:AsyncSlice.prototype,get viewSubGroupTitle(){if(this.args.channel){if(this.category==='disabled-by-default-gpu.device'){return'Device.'+this.args.channel;}
7593return'Service.'+this.args.channel;}
7594return this.title;}};AsyncSlice.subTypes.register(GpuAsyncSlice,{categoryParts:['disabled-by-default-gpu.device','disabled-by-default-gpu.service']});return{GpuAsyncSlice,};});'use strict';tr.exportTo('tr.e.gpu',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;function StateSnapshot(){ObjectSnapshot.apply(this,arguments);}
7595StateSnapshot.prototype={__proto__:ObjectSnapshot.prototype,preInitialize(){this.screenshot_=undefined;},initialize(){if(this.args.screenshot){this.screenshot_=this.args.screenshot;}},get screenshot(){return this.screenshot_;}};ObjectSnapshot.subTypes.register(StateSnapshot,{typeName:'gpu::State'});return{StateSnapshot,};});'use strict';tr.exportTo('tr.ui.e.chrome.gpu',function(){const StateSnapshotView=tr.ui.b.define('tr-ui-e-chrome-gpu-state-snapshot-view',tr.ui.analysis.ObjectSnapshotView);StateSnapshotView.prototype={__proto__:tr.ui.analysis.ObjectSnapshotView.prototype,decorate(){Polymer.dom(this).classList.add('tr-ui-e-chrome-gpu-state-snapshot-view');this.screenshotImage_=document.createElement('img');Polymer.dom(this).appendChild(this.screenshotImage_);},updateContents(){if(this.objectSnapshot_&&this.objectSnapshot_.screenshot){this.screenshotImage_.src='data:image/png;base64,'+
7596this.objectSnapshot_.screenshot;}}};tr.ui.analysis.ObjectSnapshotView.register(StateSnapshotView,{typeName:'gpu::State'});return{StateSnapshotView,};});'use strict';tr.exportTo('tr.ui.analysis',function(){Polymer({is:'tr-ui-a-layout-tree-sub-view',behaviors:['tr-ui-a-sub-view'],set selection(selection){this.currentSelection_=selection;this.updateContents_();},get selection(){return this.currentSelection_;},updateContents_(){this.set('$.content.textContent','');if(!this.currentSelection_)return;const columns=[{title:'Tag/Name',value(layoutObject){return layoutObject.tag||':'+layoutObject.name;}},{title:'htmlId',value(layoutObject){return layoutObject.htmlId||'';}},{title:'classNames',value(layoutObject){return layoutObject.classNames||'';}},{title:'reasons',value(layoutObject){return layoutObject.needsLayoutReasons.join(', ');}},{title:'width',value(layoutObject){return layoutObject.absoluteRect.width;}},{title:'height',value(layoutObject){return layoutObject.absoluteRect.height;}},{title:'absX',value(layoutObject){return layoutObject.absoluteRect.left;}},{title:'absY',value(layoutObject){return layoutObject.absoluteRect.top;}},{title:'relX',value(layoutObject){return layoutObject.relativeRect.left;}},{title:'relY',value(layoutObject){return layoutObject.relativeRect.top;}},{title:'float',value(layoutObject){return layoutObject.isFloat?'float':'';}},{title:'positioned',value(layoutObject){return layoutObject.isPositioned?'positioned':'';}},{title:'relative',value(layoutObject){return layoutObject.isRelativePositioned?'relative':'';}},{title:'sticky',value(layoutObject){return layoutObject.isStickyPositioned?'sticky':'';}},{title:'anonymous',value(layoutObject){return layoutObject.isAnonymous?'anonymous':'';}},{title:'row',value(layoutObject){if(layoutObject.tableRow===undefined){return'';}
7597return layoutObject.tableRow;}},{title:'col',value(layoutObject){if(layoutObject.tableCol===undefined){return'';}
7598return layoutObject.tableCol;}},{title:'rowSpan',value(layoutObject){if(layoutObject.tableRowSpan===undefined){return'';}
7599return layoutObject.tableRowSpan;}},{title:'colSpan',value(layoutObject){if(layoutObject.tableColSpan===undefined){return'';}
7600return layoutObject.tableColSpan;}},{title:'address',value(layoutObject){return layoutObject.id.toString(16);}}];const table=this.ownerDocument.createElement('tr-ui-b-table');table.defaultExpansionStateCallback=function(layoutObject,parentLayoutObject){return true;};table.subRowsPropertyName='childLayoutObjects';table.tableColumns=columns;table.tableRows=this.currentSelection_.map(function(snapshot){return snapshot.rootLayoutObject;});table.rebuild();Polymer.dom(this.$.content).appendChild(table);},});return{};});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-layout-tree-sub-view',tr.e.chrome.LayoutTreeSnapshot,{multi:false,title:'Layout Tree',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-layout-tree-sub-view',tr.e.chrome.LayoutTreeSnapshot,{multi:true,title:'Layout Trees',});'use strict';tr.exportTo('tr.ui.behaviors',function(){const SidePanel={get rangeOfInterest(){throw new Error('Not implemented');},set rangeOfInterest(rangeOfInterest){throw new Error('Not implemented');},get selection(){throw new Error('Not implemented');},set selection(selection){throw new Error('Not implemented');},get model(){throw new Error('Not implemented');},set model(model){throw new Error('Not implemented');},supportsModel(m){throw new Error('Not implemented');}};return{SidePanel,};});'use strict';tr.exportTo('tr.ui.side_panel',function(){function SidePanelRegistry(){}
7601const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(SidePanelRegistry,options);return{SidePanelRegistry,};});'use strict';tr.exportTo('tr.ui.e.s',function(){const BlameContextSnapshot=tr.e.chrome.BlameContextSnapshot;const FrameTreeNodeSnapshot=tr.e.chrome.FrameTreeNodeSnapshot;const RenderFrameSnapshot=tr.e.chrome.RenderFrameSnapshot;const TopLevelSnapshot=tr.e.chrome.TopLevelSnapshot;const BlameContextInstance=tr.e.chrome.BlameContextInstance;const FrameTreeNodeInstance=tr.e.chrome.FrameTreeNodeInstance;const RenderFrameInstance=tr.e.chrome.RenderFrameInstance;const TopLevelInstance=tr.e.chrome.TopLevelInstance;function Row(context){this.subRows=undefined;this.contexts=[];this.type=undefined;this.renderer='N/A';this.url=undefined;this.time=0;this.eventsOfInterest=new tr.model.EventSet();if(context===undefined)return;this.type=context.objectInstance.blameContextType;this.contexts.push(context);if(context instanceof FrameTreeNodeSnapshot){if(context.renderFrame){this.contexts.push(context.renderFrame);this.renderer=context.renderFrame.objectInstance.parent.pid;}}else if(context instanceof RenderFrameSnapshot){if(context.frameTreeNode){this.contexts.push(context.frameTreeNode);}
7602this.renderer=context.objectInstance.parent.pid;}else if(context instanceof TopLevelSnapshot){this.renderer=context.objectInstance.parent.pid;}else{throw new Error('Unknown context type');}
7603this.eventsOfInterest.addEventSet(this.contexts);this.url=context.url;}
7604const groupFunctions={none:rows=>rows,tree(rows,rowMap){const getParentRow=function(row){let pivot;row.contexts.forEach(function(context){if(context instanceof tr.e.chrome.FrameTreeNodeSnapshot){pivot=context;}});if(pivot&&pivot.parentContext){return rowMap[pivot.parentContext.guid];}
7605return undefined;};const rootRows=[];rows.forEach(function(row){const parentRow=getParentRow(row);if(parentRow===undefined){rootRows.push(row);return;}
7606if(parentRow.subRows===undefined){parentRow.subRows=[];}
7607parentRow.subRows.push(row);});const aggregateAllDescendants=function(row){if(!row.subRows){if(getParentRow(row)){row.type='Subframe';}
7608return row;}
7609const result=new Row();result.type='Frame Tree';result.renderer=row.renderer;result.url=row.url;result.subRows=[row];row.subRows.forEach(subRow=>result.subRows.push(aggregateAllDescendants(subRow)));result.subRows.forEach(function(subRow){result.time+=subRow.time;result.eventsOfInterest.addEventSet(subRow.eventsOfInterest);});row.subRows=undefined;return result;};return rootRows.map(rootRow=>aggregateAllDescendants(rootRow));}};Polymer({is:'tr-ui-e-s-frame-data-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready(){this.model_=undefined;this.rangeOfInterest_=new tr.b.math.Range();this.$.table.showHeader=true;this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.table.tableColumns=this.createFrameDataTableColumns_();this.$.table.addEventListener('selection-changed',function(e){this.selectEventSet_(this.$.table.selectedTableRow.eventsOfInterest);}.bind(this));this.$.select.addEventListener('change',function(e){this.updateContents_();}.bind(this));},selectEventSet_(eventSet){const event=new tr.model.RequestSelectionChangeEvent();event.selection=eventSet;this.dispatchEvent(event);},createFrameDataTableColumns_(){return[{title:'Renderer',value:row=>row.renderer,cmp:(a,b)=>a.renderer-b.renderer},{title:'Type',value:row=>row.type},{title:'Time',value:row=>tr.v.ui.createScalarSpan(row.time,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}),cmp:(a,b)=>a.time-b.time},{title:'URL',value:row=>row.url,cmp:(a,b)=>(a.url||'').localeCompare(b.url||'')}];},createFrameDataTableRows_(){if(!this.model_)return[];const rows=[];const rowMap={};for(const proc of Object.values(this.model_.processes)){proc.objects.iterObjectInstances(function(objectInstance){if(!(objectInstance instanceof BlameContextInstance)){return;}
7610objectInstance.snapshots.forEach(function(snapshot){if(rowMap[snapshot.guid])return;const row=new Row(snapshot);row.contexts.forEach(context=>rowMap[context.guid]=row);rows.push(row);},this);},this);}
7611for(const proc of Object.values(this.model_.processes)){for(const thread of Object.values(proc.threads)){thread.sliceGroup.iterSlicesInTimeRange(function(topLevelSlice){topLevelSlice.contexts.forEach(function(context){if(!context.snapshot.guid||!rowMap[context.snapshot.guid]){return;}
7612const row=rowMap[context.snapshot.guid];row.eventsOfInterest.push(topLevelSlice);row.time+=topLevelSlice.selfTime||0;});},this.currentRangeOfInterest.min,this.currentRangeOfInterest.max);}}
7613const select=this.$.select;const groupOption=select.options[select.selectedIndex].value;const groupFunction=groupFunctions[groupOption];return groupFunction(rows,rowMap);},updateContents_(){this.$.table.tableRows=this.createFrameDataTableRows_();this.$.table.rebuild();},supportsModel(m){if(!m){return{supported:false,reason:'No model available.'};}
7614const ans={supported:false};for(const proc of Object.values(m.processes)){proc.objects.iterObjectInstances(function(instance){if(instance instanceof BlameContextInstance){ans.supported=true;}});}
7615if(!ans.supported){ans.reason='No frame data available';}
7616return ans;},get currentRangeOfInterest(){if(this.rangeOfInterest_.isEmpty){return this.model_.bounds;}
7617return this.rangeOfInterest_;},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;this.updateContents_();},get selection(){},set selection(_){},get textLabel(){return'Frame Data';},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-frame-data-side-panel');});});'use strict';Polymer({is:'tr-ui-b-chart-legend-key',ready(){this.$.checkbox.addEventListener('change',this.onCheckboxChange_.bind(this));},onCheckboxChange_(){tr.b.dispatchSimpleEvent(this,tr.ui.b.DataSeriesEnableChangeEventType,true,false,{key:Polymer.dom(this).textContent,enabled:this.enabled});},set textContent(t){Polymer.dom(this.$.label).textContent=t;Polymer.dom(this.$.link).textContent=t;this.updateContents_();},set width(w){w-=20;this.$.link.style.width=w+'px';this.$.label.style.width=w+'px';},get textContent(){return Polymer.dom(this.$.label).textContent;},set optional(optional){this.$.checkbox.style.visibility=optional?'visible':'hidden';},get optional(){return this.$.checkbox.style.visibility==='visible';},set enabled(enabled){this.$.checkbox.checked=enabled?'checked':'';},get enabled(){return this.$.checkbox.checked;},set color(c){this.$.label.style.color=c;this.$.link.color=c;},set target(target){this.$.link.setSelectionAndContent(target,Polymer.dom(this.$.label).textContent);this.updateContents_();},get target(){return this.$.link.selection;},set title(title){this.$.link.title=title;},updateContents_(){this.$.link.style.display=this.target?'':'none';this.$.label.style.display=this.target?'none':'';this.$.label.htmlFor=this.optional?'checkbox':'';}});'use strict';(function(window){window.define=function(x){window.d3=x;};window.define.amd=true;})(this);!function(){function n(n){return null!=n&&!isNaN(n)}function t(n){return n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function u(){}function i(n){return aa+n in this}function o(n){return n=aa+n,n in this&&delete this[n]}function a(){var n=[];return this.forEach(function(t){n.push(t)}),n}function c(){var n=0;for(var t in this)t.charCodeAt(0)===ca&&++n;return n}function s(){for(var n in this)if(n.charCodeAt(0)===ca)return!1;return!0}function l(){}function f(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function h(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=sa.length;r>e;++e){var u=sa[e]+t;if(u in n)return u}}function g(){}function p(){}function v(n){function t(){for(var t,r=e,u=-1,i=r.length;++u<i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new u;return t.on=function(t,u){var i,o=r.get(t);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function d(){Xo.event.preventDefault()}function m(){for(var n,t=Xo.event;n=t.sourceEvent;)t=n;return t}function y(n){for(var t=new p,e=0,r=arguments.length;++e<r;)t[arguments[e]]=v(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEvent=Xo.event;u.target=n,Xo.event=u,t[u.type].apply(e,r)}finally{Xo.event=i}}},t}function x(n){return fa(n,da),n}function M(n){return"function"==typeof n?n:function(){return ha(n,this)}}function _(n){return"function"==typeof n?n:function(){return ga(n,this)}}function b(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function u(){this.setAttribute(n,t)}function i(){this.setAttributeNS(n.space,n.local,t)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=Xo.ns.qualify(n),null==t?n.local?r:e:"function"==typeof t?n.local?a:o:n.local?i:u}function w(n){return n.trim().replace(/\s+/g," ")}function S(n){return new RegExp("(?:^|\\s+)"+Xo.requote(n)+"(?:\\s+|$)","g")}function k(n){return n.trim().split(/^|\s+/)}function E(n,t){function e(){for(var e=-1;++e<u;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);++e<u;)n[e](this,r)}n=k(n).map(A);var u=n.length;return"function"==typeof t?r:e}function A(n){var t=S(n);return function(e,r){if(u=e.classList)return r?u.add(n):u.remove(n);var u=e.getAttribute("class")||"";r?(t.lastIndex=0,t.test(u)||e.setAttribute("class",w(u+" "+n))):e.setAttribute("class",w(u.replace(t," ")))}}function C(n,t,e){function r(){this.style.removeProperty(n)}function u(){this.style.setProperty(n,t,e)}function i(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:"function"==typeof t?i:u}function N(n,t){function e(){delete this[n]}function r(){this[n]=t}function u(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:"function"==typeof t?u:r}function L(n){return"function"==typeof n?n:(n=Xo.ns.qualify(n)).local?function(){return this.ownerDocument.createElementNS(n.space,n.local)}:function(){return this.ownerDocument.createElementNS(this.namespaceURI,n)}}function T(n){return{__data__:n}}function q(n){return function(){return va(this,n)}}function z(n){return arguments.length||(n=Xo.ascending),function(t,e){return t&&e?n(t.__data__,e.__data__):!t-!e}}function R(n,t){for(var e=0,r=n.length;r>e;e++)for(var u,i=n[e],o=0,a=i.length;a>o;o++)(u=i[o])&&t(u,o,e);return n}function D(n){return fa(n,ya),n}function P(n){var t,e;return function(r,u,i){var o,a=n[i].update,c=a.length;for(i!=e&&(e=i,t=0),u>=t&&(t=u+1);!(o=a[t])&&++t<c;);return o}}function U(){var n=this.__transition__;n&&++n.active}function j(n,t,e){function r(){var t=this[o];t&&(this.removeEventListener(n,t,t.$),delete this[o])}function u(){var u=c(t,Bo(arguments));r.call(this),this.addEventListener(n,this[o]=u,u.$=e),u._=t}function i(){var t,e=new RegExp("^__on([^.]+)"+Xo.requote(n)+"$");for(var r in this)if(t=r.match(e)){var u=this[r];this.removeEventListener(t[1],u,u.$),delete this[r]}}var o="__on"+n,a=n.indexOf("."),c=H;a>0&&(n=n.substring(0,a));var s=Ma.get(n);return s&&(n=s,c=F),a?t?u:r:t?g:i}function H(n,t){return function(e){var r=Xo.event;Xo.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{Xo.event=r}}}function F(n,t){var e=H(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function O(){var n=".dragsuppress-"+ ++ba,t="click"+n,e=Xo.select(Go).on("touchmove"+n,d).on("dragstart"+n,d).on("selectstart"+n,d);if(_a){var r=Jo.style,u=r[_a];r[_a]="none"}return function(i){function o(){e.on(t,null)}e.on(n,null),_a&&(r[_a]=u),i&&(e.on(t,function(){d(),o()},!0),setTimeout(o,0))}}function Y(n,t){t.changedTouches&&(t=t.changedTouches[0]);var e=n.ownerSVGElement||n;if(e.createSVGPoint){var r=e.createSVGPoint();if(0>wa&&(Go.scrollX||Go.scrollY)){e=Xo.select("body").append("svg").style({position:"absolute",top:0,left:0,margin:0,padding:0,border:"none"},"important");var u=e[0][0].getScreenCTM();wa=!(u.f||u.e),e.remove()}return wa?(r.x=t.pageX,r.y=t.pageY):(r.x=t.clientX,r.y=t.clientY),r=r.matrixTransform(n.getScreenCTM().inverse()),[r.x,r.y]}var i=n.getBoundingClientRect();return[t.clientX-i.left-n.clientLeft,t.clientY-i.top-n.clientTop]}function I(n){return n>0?1:0>n?-1:0}function Z(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(t[1]-n[1])*(e[0]-n[0])}function V(n){return n>1?0:-1>n?Sa:Math.acos(n)}function X(n){return n>1?Ea:-1>n?-Ea:Math.asin(n)}function $(n){return((n=Math.exp(n))-1/n)/2}function B(n){return((n=Math.exp(n))+1/n)/2}function W(n){return((n=Math.exp(2*n))-1)/(n+1)}function J(n){return(n=Math.sin(n/2))*n}function G(){}function K(n,t,e){return new Q(n,t,e)}function Q(n,t,e){this.h=n,this.s=t,this.l=e}function nt(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?i+(o-i)*n/60:180>n?o:240>n?i+(o-i)*(240-n)/60:i}function u(n){return Math.round(255*r(n))}var i,o;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,i=2*e-o,gt(u(n+120),u(n),u(n-120))}function tt(n,t,e){return new et(n,t,e)}function et(n,t,e){this.h=n,this.c=t,this.l=e}function rt(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),ut(e,Math.cos(n*=Na)*t,Math.sin(n)*t)}function ut(n,t,e){return new it(n,t,e)}function it(n,t,e){this.l=n,this.a=t,this.b=e}function ot(n,t,e){var r=(n+16)/116,u=r+t/500,i=r-e/200;return u=ct(u)*Fa,r=ct(r)*Oa,i=ct(i)*Ya,gt(lt(3.2404542*u-1.5371385*r-.4985314*i),lt(-.969266*u+1.8760108*r+.041556*i),lt(.0556434*u-.2040259*r+1.0572252*i))}function at(n,t,e){return n>0?tt(Math.atan2(e,t)*La,Math.sqrt(t*t+e*e),n):tt(0/0,0/0,n)}function ct(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function st(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function lt(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function ft(n){return gt(n>>16,255&n>>8,255&n)}function ht(n){return ft(n)+""}function gt(n,t,e){return new pt(n,t,e)}function pt(n,t,e){this.r=n,this.g=t,this.b=e}function vt(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function dt(n,t,e){var r,u,i,o,a=0,c=0,s=0;if(u=/([a-z]+)\((.*)\)/i.exec(n))switch(i=u[2].split(","),u[1]){case"hsl":return e(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case"rgb":return t(Mt(i[0]),Mt(i[1]),Mt(i[2]))}return(o=Va.get(n))?t(o.r,o.g,o.b):(null!=n&&"#"===n.charAt(0)&&(r=parseInt(n.substring(1),16),isNaN(r)||(4===n.length?(a=(3840&r)>>4,a=a>>4|a,c=240&r,c=c>>4|c,s=15&r,s=s<<4|s):7===n.length&&(a=(16711680&r)>>16,c=(65280&r)>>8,s=255&r))),t(a,c,s))}function mt(n,t,e){var r,u,i=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-i,c=(o+i)/2;return a?(u=.5>c?a/(o+i):a/(2-o-i),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=0/0,u=c>0&&1>c?0:r),K(r,u,c)}function yt(n,t,e){n=xt(n),t=xt(t),e=xt(e);var r=st((.4124564*n+.3575761*t+.1804375*e)/Fa),u=st((.2126729*n+.7151522*t+.072175*e)/Oa),i=st((.0193339*n+.119192*t+.9503041*e)/Ya);return ut(116*u-16,500*(r-u),200*(u-i))}function xt(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function Mt(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function _t(n){return"function"==typeof n?n:function(){return n}}function bt(n){return n}function wt(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),St(t,e,n,r)}}function St(n,t,e,r){function u(){var n,t=c.status;if(!t&&c.responseText||t>=200&&300>t||304===t){try{n=e.call(i,c)}catch(r){return o.error.call(i,r),void 0}o.load.call(i,n)}else o.error.call(i,c)}var i={},o=Xo.dispatch("beforesend","progress","load","error"),a={},c=new XMLHttpRequest,s=null;return!Go.XDomainRequest||"withCredentials"in c||!/^(http(s)?:)?\/\//.test(n)||(c=new XDomainRequest),"onload"in c?c.onload=c.onerror=u:c.onreadystatechange=function(){c.readyState>3&&u()},c.onprogress=function(n){var t=Xo.event;Xo.event=n;try{o.progress.call(i,c)}finally{Xo.event=t}},i.header=function(n,t){return n=(n+"").toLowerCase(),arguments.length<2?a[n]:(null==t?delete a[n]:a[n]=t+"",i)},i.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",i):t},i.responseType=function(n){return arguments.length?(s=n,i):s},i.response=function(n){return e=n,i},["get","post"].forEach(function(n){i[n]=function(){return i.send.apply(i,[n].concat(Bo(arguments)))}}),i.send=function(e,r,u){if(2===arguments.length&&"function"==typeof r&&(u=r,r=null),c.open(e,n,!0),null==t||"accept"in a||(a.accept=t+",*/*"),c.setRequestHeader)for(var l in a)c.setRequestHeader(l,a[l]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=s&&(c.responseType=s),null!=u&&i.on("error",u).on("load",function(n){u(null,n)}),o.beforesend.call(i,c),c.send(null==r?null:r),i},i.abort=function(){return c.abort(),i},Xo.rebind(i,o,"on"),null==r?i:i.get(kt(r))}function kt(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Et(){var n=At(),t=Ct()-n;t>24?(isFinite(t)&&(clearTimeout(Wa),Wa=setTimeout(Et,t)),Ba=0):(Ba=1,Ga(Et))}function At(){var n=Date.now();for(Ja=Xa;Ja;)n>=Ja.t&&(Ja.f=Ja.c(n-Ja.t)),Ja=Ja.n;return n}function Ct(){for(var n,t=Xa,e=1/0;t;)t.f?t=n?n.n=t.n:Xa=t.n:(t.t<e&&(e=t.t),t=(n=t).n);return $a=n,e}function Nt(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function Lt(n,t){var e=Math.pow(10,3*oa(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function Tt(n){var t=n.decimal,e=n.thousands,r=n.grouping,u=n.currency,i=r?function(n){for(var t=n.length,u=[],i=0,o=r[0];t>0&&o>0;)u.push(n.substring(t-=o,t+o)),o=r[i=(i+1)%r.length];return u.reverse().join(e)}:bt;return function(n){var e=Qa.exec(n),r=e[1]||" ",o=e[2]||">",a=e[3]||"",c=e[4]||"",s=e[5],l=+e[6],f=e[7],h=e[8],g=e[9],p=1,v="",d="",m=!1;switch(h&&(h=+h.substring(1)),(s||"0"===r&&"="===o)&&(s=r="0",o="=",f&&(l-=Math.floor((l-1)/4))),g){case"n":f=!0,g="g";break;case"%":p=100,d="%",g="f";break;case"p":p=100,d="%",g="r";break;case"b":case"o":case"x":case"X":"#"===c&&(v="0"+g.toLowerCase());case"c":case"d":m=!0,h=0;break;case"s":p=-1,g="r"}"$"===c&&(v=u[0],d=u[1]),"r"!=g||h||(g="g"),null!=h&&("g"==g?h=Math.max(1,Math.min(21,h)):("e"==g||"f"==g)&&(h=Math.max(0,Math.min(20,h)))),g=nc.get(g)||qt;var y=s&&f;return function(n){var e=d;if(m&&n%1)return"";var u=0>n||0===n&&0>1/n?(n=-n,"-"):a;if(0>p){var c=Xo.formatPrefix(n,h);n=c.scale(n),e=c.symbol+d}else n*=p;n=g(n,h);var x=n.lastIndexOf("."),M=0>x?n:n.substring(0,x),_=0>x?"":t+n.substring(x+1);!s&&f&&(M=i(M));var b=v.length+M.length+_.length+(y?0:u.length),w=l>b?new Array(b=l-b+1).join(r):"";return y&&(M=i(w+M)),u+=v,n=M+_,("<"===o?u+n+w:">"===o?w+u+n:"^"===o?w.substring(0,b>>=1)+u+n+w.substring(b):u+(y?n:w+n))+e}}}function qt(n){return n+""}function zt(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Rt(n,t,e){function r(t){var e=n(t),r=i(e,1);return r-t>t-e?e:r}function u(e){return t(e=n(new ec(e-1)),1),e}function i(n,e){return t(n=new ec(+n),e),n}function o(n,r,i){var o=u(n),a=[];if(i>1)for(;r>o;)e(o)%i||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{ec=zt;var r=new zt;return r._=n,o(r,t,e)}finally{ec=Date}}n.floor=n,n.round=r,n.ceil=u,n.offset=i,n.range=o;var c=n.utc=Dt(n);return c.floor=c,c.round=Dt(r),c.ceil=Dt(u),c.offset=Dt(i),c.range=a,n}function Dt(n){return function(t,e){try{ec=zt;var r=new zt;return r._=t,n(r,e)._}finally{ec=Date}}}function Pt(n){function t(n){function t(t){for(var e,u,i,o=[],a=-1,c=0;++a<r;)37===n.charCodeAt(a)&&(o.push(n.substring(c,a)),null!=(u=uc[e=n.charAt(++a)])&&(e=n.charAt(++a)),(i=C[e])&&(e=i(t,null==u?"e"===e?" ":"0":u)),o.push(e),c=a+1);return o.push(n.substring(c,a)),o.join("")}var r=n.length;return t.parse=function(t){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null},u=e(r,n,t,0);if(u!=t.length)return null;"p"in r&&(r.H=r.H%12+12*r.p);var i=null!=r.Z&&ec!==zt,o=new(i?zt:ec);return"j"in r?o.setFullYear(r.y,0,r.j):"w"in r&&("W"in r||"U"in r)?(o.setFullYear(r.y,0,1),o.setFullYear(r.y,0,"W"in r?(r.w+6)%7+7*r.W-(o.getDay()+5)%7:r.w+7*r.U-(o.getDay()+6)%7)):o.setFullYear(r.y,r.m,r.d),o.setHours(r.H+Math.floor(r.Z/100),r.M+r.Z%100,r.S,r.L),i?o._:o},t.toString=function(){return n},t}function e(n,t,e,r){for(var u,i,o,a=0,c=t.length,s=e.length;c>a;){if(r>=s)return-1;if(u=t.charCodeAt(a++),37===u){if(o=t.charAt(a++),i=N[o in uc?t.charAt(a++):o],!i||(r=i(n,e,r))<0)return-1}else if(u!=e.charCodeAt(r++))return-1}return r}function r(n,t,e){b.lastIndex=0;var r=b.exec(t.substring(e));return r?(n.w=w.get(r[0].toLowerCase()),e+r[0].length):-1}function u(n,t,e){M.lastIndex=0;var r=M.exec(t.substring(e));return r?(n.w=_.get(r[0].toLowerCase()),e+r[0].length):-1}function i(n,t,e){E.lastIndex=0;var r=E.exec(t.substring(e));return r?(n.m=A.get(r[0].toLowerCase()),e+r[0].length):-1}function o(n,t,e){S.lastIndex=0;var r=S.exec(t.substring(e));return r?(n.m=k.get(r[0].toLowerCase()),e+r[0].length):-1}function a(n,t,r){return e(n,C.c.toString(),t,r)}function c(n,t,r){return e(n,C.x.toString(),t,r)}function s(n,t,r){return e(n,C.X.toString(),t,r)}function l(n,t,e){var r=x.get(t.substring(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}var f=n.dateTime,h=n.date,g=n.time,p=n.periods,v=n.days,d=n.shortDays,m=n.months,y=n.shortMonths;t.utc=function(n){function e(n){try{ec=zt;var t=new ec;return t._=n,r(t)}finally{ec=Date}}var r=t(n);return e.parse=function(n){try{ec=zt;var t=r.parse(n);return t&&t._}finally{ec=Date}},e.toString=r.toString,e},t.multi=t.utc.multi=ee;var x=Xo.map(),M=jt(v),_=Ht(v),b=jt(d),w=Ht(d),S=jt(m),k=Ht(m),E=jt(y),A=Ht(y);p.forEach(function(n,t){x.set(n.toLowerCase(),t)});var C={a:function(n){return d[n.getDay()]},A:function(n){return v[n.getDay()]},b:function(n){return y[n.getMonth()]},B:function(n){return m[n.getMonth()]},c:t(f),d:function(n,t){return Ut(n.getDate(),t,2)},e:function(n,t){return Ut(n.getDate(),t,2)},H:function(n,t){return Ut(n.getHours(),t,2)},I:function(n,t){return Ut(n.getHours()%12||12,t,2)},j:function(n,t){return Ut(1+tc.dayOfYear(n),t,3)},L:function(n,t){return Ut(n.getMilliseconds(),t,3)},m:function(n,t){return Ut(n.getMonth()+1,t,2)},M:function(n,t){return Ut(n.getMinutes(),t,2)},p:function(n){return p[+(n.getHours()>=12)]},S:function(n,t){return Ut(n.getSeconds(),t,2)},U:function(n,t){return Ut(tc.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Ut(tc.mondayOfYear(n),t,2)},x:t(h),X:t(g),y:function(n,t){return Ut(n.getFullYear()%100,t,2)},Y:function(n,t){return Ut(n.getFullYear()%1e4,t,4)},Z:ne,"%":function(){return"%"}},N={a:r,A:u,b:i,B:o,c:a,d:Bt,e:Bt,H:Jt,I:Jt,j:Wt,L:Qt,m:$t,M:Gt,p:l,S:Kt,U:Ot,w:Ft,W:Yt,x:c,X:s,y:Zt,Y:It,Z:Vt,"%":te};return t}function Ut(n,t,e){var r=0>n?"-":"",u=(r?-n:n)+"",i=u.length;return r+(e>i?new Array(e-i+1).join(t)+u:u)}function jt(n){return new RegExp("^(?:"+n.map(Xo.requote).join("|")+")","i")}function Ht(n){for(var t=new u,e=-1,r=n.length;++e<r;)t.set(n[e].toLowerCase(),e);return t}function Ft(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Ot(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e));return r?(n.U=+r[0],e+r[0].length):-1}function Yt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e));return r?(n.W=+r[0],e+r[0].length):-1}function It(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Zt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.y=Xt(+r[0]),e+r[0].length):-1}function Vt(n,t,e){return/^[+-]\d{4}$/.test(t=t.substring(e,e+5))?(n.Z=+t,e+5):-1}function Xt(n){return n+(n>68?1900:2e3)}function $t(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function Bt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function Wt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function Jt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function Gt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function Kt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function Qt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function ne(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=~~(oa(t)/60),u=oa(t)%60;return e+Ut(r,"0",2)+Ut(u,"0",2)}function te(n,t,e){oc.lastIndex=0;var r=oc.exec(t.substring(e,e+1));return r?e+r[0].length:-1}function ee(n){for(var t=n.length,e=-1;++e<t;)n[e][0]=this(n[e][0]);return function(t){for(var e=0,r=n[e];!r[1](t);)r=n[++e];return r[0](t)}}function re(){}function ue(n,t,e){var r=e.s=n+t,u=r-n,i=r-u;e.t=n-i+(t-u)}function ie(n,t){n&&lc.hasOwnProperty(n.type)&&lc[n.type](n,t)}function oe(n,t,e){var r,u=-1,i=n.length-e;for(t.lineStart();++u<i;)r=n[u],t.point(r[0],r[1],r[2]);t.lineEnd()}function ae(n,t){var e=-1,r=n.length;for(t.polygonStart();++e<r;)oe(n[e],t,1);t.polygonEnd()}function ce(){function n(n,t){n*=Na,t=t*Na/2+Sa/4;var e=n-r,o=e>=0?1:-1,a=o*e,c=Math.cos(t),s=Math.sin(t),l=i*s,f=u*c+l*Math.cos(a),h=l*o*Math.sin(a);hc.add(Math.atan2(h,f)),r=n,u=c,i=s}var t,e,r,u,i;gc.point=function(o,a){gc.point=n,r=(t=o)*Na,u=Math.cos(a=(e=a)*Na/2+Sa/4),i=Math.sin(a)},gc.lineEnd=function(){n(t,e)}}function se(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function le(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function fe(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function they(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function ge(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function pe(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function ve(n){return[Math.atan2(n[1],n[0]),X(n[2])]}function de(n,t){return oa(n[0]-t[0])<Aa&&oa(n[1]-t[1])<Aa}function me(n,t){n*=Na;var e=Math.cos(t*=Na);ye(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function ye(n,t,e){++pc,dc+=(n-dc)/pc,mc+=(t-mc)/pc,yc+=(e-yc)/pc}function xe(){function n(n,u){n*=Na;var i=Math.cos(u*=Na),o=i*Math.cos(n),a=i*Math.sin(n),c=Math.sin(u),s=Math.atan2(Math.sqrt((s=e*c-r*a)*s+(s=r*o-t*c)*s+(s=t*a-e*o)*s),t*o+e*a+r*c);vc+=s,xc+=s*(t+(t=o)),Mc+=s*(e+(e=a)),_c+=s*(r+(r=c)),ye(t,e,r)}var t,e,r;kc.point=function(u,i){u*=Na;var o=Math.cos(i*=Na);t=o*Math.cos(u),e=o*Math.sin(u),r=Math.sin(i),kc.point=n,ye(t,e,r)}}function Me(){kc.point=me}function _e(){function n(n,t){n*=Na;var e=Math.cos(t*=Na),o=e*Math.cos(n),a=e*Math.sin(n),c=Math.sin(t),s=u*c-i*a,l=i*o-r*c,f=r*a-u*o,h=Math.sqrt(s*s+l*l+f*f),g=r*o+u*a+i*c,p=h&&-V(g)/h,v=Math.atan2(h,g);bc+=p*s,wc+=p*l,Sc+=p*f,vc+=v,xc+=v*(r+(r=o)),Mc+=v*(u+(u=a)),_c+=v*(i+(i=c)),ye(r,u,i)}var t,e,r,u,i;kc.point=function(o,a){t=o,e=a,kc.point=n,o*=Na;var c=Math.cos(a*=Na);r=c*Math.cos(o),u=c*Math.sin(o),i=Math.sin(a),ye(r,u,i)},kc.lineEnd=function(){n(t,e),kc.lineEnd=Me,kc.point=me}}function be(){return!0}function we(n,t,e,r,u){var i=[],o=[];if(n.forEach(function(n){if(!((t=n.length-1)<=0)){var t,e=n[0],r=n[t];if(de(e,r)){u.lineStart();for(var a=0;t>a;++a)u.point((e=n[a])[0],e[1]);return u.lineEnd(),void 0}var c=new ke(e,n,null,!0),s=new ke(e,null,c,!1);c.o=s,i.push(c),o.push(s),c=new ke(r,n,null,!1),s=new ke(r,null,c,!0),c.o=s,i.push(c),o.push(s)}}),o.sort(t),Se(i),Se(o),i.length){for(var a=0,c=e,s=o.length;s>a;++a)o[a].e=c=!c;for(var l,f,h=i[0];;){for(var g=h,p=!0;g.v;)if((g=g.n)===h)return;l=g.z,u.lineStart();do{if(g.v=g.o.v=!0,g.e){if(p)for(var a=0,s=l.length;s>a;++a)u.point((f=l[a])[0],f[1]);else r(g.x,g.n.x,1,u);g=g.n}else{if(p){l=g.p.z;for(var a=l.length-1;a>=0;--a)u.point((f=l[a])[0],f[1])}else r(g.x,g.p.x,-1,u);g=g.p}g=g.o,l=g.z,p=!p}while(!g.v);u.lineEnd()}}}function Se(n){if(t=n.length){for(var t,e,r=0,u=n[0];++r<t;)u.n=e=n[r],e.p=u,u=e;u.n=e=n[0],e.p=u}}function ke(n,t,e,r){this.x=n,this.z=t,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function Ee(n,t,e,r){return function(u,i){function o(t,e){var r=u(t,e);n(t=r[0],e=r[1])&&i.point(t,e)}function a(n,t){var e=u(n,t);d.point(e[0],e[1])}function c(){y.point=a,d.lineStart()}function s(){y.point=o,d.lineEnd()}function l(n,t){v.push([n,t]);var e=u(n,t);M.point(e[0],e[1])}function f(){M.lineStart(),v=[]}function h(){l(v[0][0],v[0][1]),M.lineEnd();var n,t=M.clean(),e=x.buffer(),r=e.length;if(v.pop(),p.push(v),v=null,r){if(1&t){n=e[0];var u,r=n.length-1,o=-1;for(i.lineStart();++o<r;)i.point((u=n[o])[0],u[1]);return i.lineEnd(),void 0}r>1&&2&t&&e.push(e.pop().concat(e.shift())),g.push(e.filter(Ae))}}var g,p,v,d=t(i),m=u.invert(r[0],r[1]),y={point:o,lineStart:c,lineEnd:s,polygonStart:function(){y.point=l,y.lineStart=f,y.lineEnd=h,g=[],p=[],i.polygonStart()},polygonEnd:function(){y.point=o,y.lineStart=c,y.lineEnd=s,g=Xo.merge(g);var n=Le(m,p);g.length?we(g,Ne,n,e,i):n&&(i.lineStart(),e(null,null,1,i),i.lineEnd()),i.polygonEnd(),g=p=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}},x=Ce(),M=t(x);return y}}function Ae(n){return n.length>1}function Ce(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:g,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Ne(n,t){return((n=n.x)[0]<0?n[1]-Ea-Aa:Ea-n[1])-((t=t.x)[0]<0?t[1]-Ea-Aa:Ea-t[1])}function Le(n,t){var e=n[0],r=n[1],u=[Math.sin(e),-Math.cos(e),0],i=0,o=0;hc.reset();for(var a=0,c=t.length;c>a;++a){var s=t[a],l=s.length;if(l)for(var f=s[0],h=f[0],g=f[1]/2+Sa/4,p=Math.sin(g),v=Math.cos(g),d=1;;){d===l&&(d=0),n=s[d];var m=n[0],y=n[1]/2+Sa/4,x=Math.sin(y),M=Math.cos(y),_=m-h,b=_>=0?1:-1,w=b*_,S=w>Sa,k=p*x;if(hc.add(Math.atan2(k*b*Math.sin(w),v*M+k*Math.cos(w))),i+=S?_+b*ka:_,S^h>=e^m>=e){var E=fe(se(f),se(n));pe(E);var A=fe(u,E);pe(A);var C=(S^_>=0?-1:1)*X(A[2]);(r>C||r===C&&(E[0]||E[1]))&&(o+=S^_>=0?1:-1)}if(!d++)break;h=m,p=x,v=M,f=n}}return(-Aa>i||Aa>i&&0>hc)^1&o}function Te(n){var t,e=0/0,r=0/0,u=0/0;return{lineStart:function(){n.lineStart(),t=1},point:function(i,o){var a=i>0?Sa:-Sa,c=oa(i-e);oa(c-Sa)<Aa?(n.point(e,r=(r+o)/2>0?Ea:-Ea),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(i,r),t=0):u!==a&&c>=Sa&&(oa(e-u)<Aa&&(e-=u*Aa),oa(i-a)<Aa&&(i-=a*Aa),r=qe(e,r,i,o),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),t=0),n.point(e=i,r=o),u=a},lineEnd:function(){n.lineEnd(),e=r=0/0},clean:function(){return 2-t}}}function qe(n,t,e,r){var u,i,o=Math.sin(n-e);return oa(o)>Aa?Math.atan((Math.sin(t)*(i=Math.cos(r))*Math.sin(e)-Math.sin(r)*(u=Math.cos(t))*Math.sin(n))/(u*i*o)):(t+r)/2}function ze(n,t,e,r){var u;if(null==n)u=e*Ea,r.point(-Sa,u),r.point(0,u),r.point(Sa,u),r.point(Sa,0),r.point(Sa,-u),r.point(0,-u),r.point(-Sa,-u),r.point(-Sa,0),r.point(-Sa,u);else if(oa(n[0]-t[0])>Aa){var i=n[0]<t[0]?Sa:-Sa;u=e*i/2,r.point(-i,u),r.point(0,u),r.point(i,u)}else r.point(t[0],t[1])}function Re(n){function t(n,t){return Math.cos(n)*Math.cos(t)>i}function e(n){var e,i,c,s,l;return{lineStart:function(){s=c=!1,l=1},point:function(f,h){var g,p=[f,h],v=t(f,h),d=o?v?0:u(f,h):v?u(f+(0>f?Sa:-Sa),h):0;if(!e&&(s=c=v)&&n.lineStart(),v!==c&&(g=r(e,p),(de(e,g)||de(p,g))&&(p[0]+=Aa,p[1]+=Aa,v=t(p[0],p[1]))),v!==c)l=0,v?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(a&&e&&o^v){var m;d&i||!(m=r(p,e,!0))||(l=0,o?(n.lineStart(),n.point(m[0][0],m[0][1]),n.point(m[1][0],m[1][1]),n.lineEnd()):(n.point(m[1][0],m[1][1]),n.lineEnd(),n.lineStart(),n.point(m[0][0],m[0][1])))}!v||e&&de(e,p)||n.point(p[0],p[1]),e=p,c=v,i=d},lineEnd:function(){c&&n.lineEnd(),e=null},clean:function(){return l|(s&&c)<<1}}}function r(n,t,e){var r=se(n),u=se(t),o=[1,0,0],a=fe(r,u),c=le(a,a),s=a[0],l=c-s*s;if(!l)return!e&&n;var f=i*c/l,h=-i*s/l,g=fe(o,a),p=ge(o,f),v=ge(a,h);they(p,v);var d=g,m=le(p,d),y=le(d,d),x=m*m-y*(le(p,p)-1);if(!(0>x)){var M=Math.sqrt(x),_=ge(d,(-m-M)/y);if(they(_,p),_=ve(_),!e)return _;var b,w=n[0],S=t[0],k=n[1],E=t[1];w>S&&(b=w,w=S,S=b);var A=S-w,C=oa(A-Sa)<Aa,N=C||Aa>A;if(!C&&k>E&&(b=k,k=E,E=b),N?C?k+E>0^_[1]<(oa(_[0]-w)<Aa?k:E):k<=_[1]&&_[1]<=E:A>Sa^(w<=_[0]&&_[0]<=S)){var L=ge(d,(-m+M)/y);return they(L,p),[_,ve(L)]}}}function u(t,e){var r=o?n:Sa-n,u=0;return-r>t?u|=1:t>r&&(u|=2),-r>e?u|=4:e>r&&(u|=8),u}var i=Math.cos(n),o=i>0,a=oa(i)>Aa,c=cr(n,6*Na);return Ee(t,e,c,o?[0,-n]:[-Sa,n-Sa])}function De(n,t,e,r){return function(u){var i,o=u.a,a=u.b,c=o.x,s=o.y,l=a.x,f=a.y,h=0,g=1,p=l-c,v=f-s;if(i=n-c,p||!(i>0)){if(i/=p,0>p){if(h>i)return;g>i&&(g=i)}else if(p>0){if(i>g)return;i>h&&(h=i)}if(i=e-c,p||!(0>i)){if(i/=p,0>p){if(i>g)return;i>h&&(h=i)}else if(p>0){if(h>i)return;g>i&&(g=i)}if(i=t-s,v||!(i>0)){if(i/=v,0>v){if(h>i)return;g>i&&(g=i)}else if(v>0){if(i>g)return;i>h&&(h=i)}if(i=r-s,v||!(0>i)){if(i/=v,0>v){if(i>g)return;i>h&&(h=i)}else if(v>0){if(h>i)return;g>i&&(g=i)}return h>0&&(u.a={x:c+h*p,y:s+h*v}),1>g&&(u.b={x:c+g*p,y:s+g*v}),u}}}}}}function Pe(n,t,e,r){function u(r,u){return oa(r[0]-n)<Aa?u>0?0:3:oa(r[0]-e)<Aa?u>0?2:1:oa(r[1]-t)<Aa?u>0?1:0:u>0?3:2}function i(n,t){return o(n.x,t.x)}function o(n,t){var e=u(n,1),r=u(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}return function(a){function c(n){for(var t=0,e=d.length,r=n[1],u=0;e>u;++u)for(var i,o=1,a=d[u],c=a.length,s=a[0];c>o;++o)i=a[o],s[1]<=r?i[1]>r&&Z(s,i,n)>0&&++t:i[1]<=r&&Z(s,i,n)<0&&--t,s=i;return 0!==t}function s(i,a,c,s){var l=0,f=0;if(null==i||(l=u(i,c))!==(f=u(a,c))||o(i,a)<0^c>0){do s.point(0===l||3===l?n:e,l>1?r:t);while((l=(l+c+4)%4)!==f)}else s.point(a[0],a[1])}function l(u,i){return u>=n&&e>=u&&i>=t&&r>=i}function f(n,t){l(n,t)&&a.point(n,t)}function h(){N.point=p,d&&d.push(m=[]),S=!0,w=!1,_=b=0/0}function g(){v&&(p(y,x),M&&w&&A.rejoin(),v.push(A.buffer())),N.point=f,w&&a.lineEnd()}function p(n,t){n=Math.max(-Ac,Math.min(Ac,n)),t=Math.max(-Ac,Math.min(Ac,t));var e=l(n,t);if(d&&m.push([n,t]),S)y=n,x=t,M=e,S=!1,e&&(a.lineStart(),a.point(n,t));else if(e&&w)a.point(n,t);else{var r={a:{x:_,y:b},b:{x:n,y:t}};C(r)?(w||(a.lineStart(),a.point(r.a.x,r.a.y)),a.point(r.b.x,r.b.y),e||a.lineEnd(),k=!1):e&&(a.lineStart(),a.point(n,t),k=!1)}_=n,b=t,w=e}var v,d,m,y,x,M,_,b,w,S,k,E=a,A=Ce(),C=De(n,t,e,r),N={point:f,lineStart:h,lineEnd:g,polygonStart:function(){a=A,v=[],d=[],k=!0},polygonEnd:function(){a=E,v=Xo.merge(v);var t=c([n,r]),e=k&&t,u=v.length;(e||u)&&(a.polygonStart(),e&&(a.lineStart(),s(null,null,1,a),a.lineEnd()),u&&we(v,i,t,s,a),a.polygonEnd()),v=d=m=null}};return N}}function Ue(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function je(n){var t=0,e=Sa/3,r=nr(n),u=r(t,e);return u.parallels=function(n){return arguments.length?r(t=n[0]*Sa/180,e=n[1]*Sa/180):[180*(t/Sa),180*(e/Sa)]},u}function They(n,t){function e(n,t){var e=Math.sqrt(i-2*u*Math.sin(t))/u;return[e*Math.sin(n*=u),o-e*Math.cos(n)]}var r=Math.sin(n),u=(r+Math.sin(t))/2,i=1+r*(2*u-r),o=Math.sqrt(i)/u;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/u,X((i-(n*n+e*e)*u*u)/(2*u))]},e}function Fe(){function n(n,t){Nc+=u*n-r*t,r=n,u=t}var t,e,r,u;Rc.point=function(i,o){Rc.point=n,t=r=i,e=u=o},Rc.lineEnd=function(){n(t,e)}}function Oe(n,t){Lc>n&&(Lc=n),n>qc&&(qc=n),Tc>t&&(Tc=t),t>zc&&(zc=t)}function Ye(){function n(n,t){o.push("M",n,",",t,i)}function t(n,t){o.push("M",n,",",t),a.point=e}function e(n,t){o.push("L",n,",",t)}function r(){a.point=n}function u(){o.push("Z")}var i=Ie(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return i=Ie(n),a},result:function(){if(o.length){var n=o.join("");return o=[],n}}};return a}function Ie(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function Ze(n,t){dc+=n,mc+=t,++yc}function Ve(){function n(n,r){var u=n-t,i=r-e,o=Math.sqrt(u*u+i*i);xc+=o*(t+n)/2,Mc+=o*(e+r)/2,_c+=o,Ze(t=n,e=r)}var t,e;Pc.point=function(r,u){Pc.point=n,Ze(t=r,e=u)}}function Xe(){Pc.point=Ze}function $e(){function n(n,t){var e=n-r,i=t-u,o=Math.sqrt(e*e+i*i);xc+=o*(r+n)/2,Mc+=o*(u+t)/2,_c+=o,o=u*n-r*t,bc+=o*(r+n),wc+=o*(u+t),Sc+=3*o,Ze(r=n,u=t)}var t,e,r,u;Pc.point=function(i,o){Pc.point=n,Ze(t=r=i,e=u=o)},Pc.lineEnd=function(){n(t,e)}}function Be(n){function t(t,e){n.moveTo(t,e),n.arc(t,e,o,0,ka)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function u(){a.point=t}function i(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:u,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=u,a.point=t},pointRadius:function(n){return o=n,a},result:g};return a}function We(n){function t(n){return(a?r:e)(n)}function e(t){return Ke(t,function(e,r){e=n(e,r),t.point(e[0],e[1])})}function r(t){function e(e,r){e=n(e,r),t.point(e[0],e[1])}function r(){x=0/0,S.point=i,t.lineStart()}function i(e,r){var i=se([e,r]),o=n(e,r);u(x,M,y,_,b,w,x=o[0],M=o[1],y=e,_=i[0],b=i[1],w=i[2],a,t),t.point(x,M)}function o(){S.point=e,t.lineEnd()}function c(){r(),S.point=s,S.lineEnd=l}function s(n,t){i(f=n,h=t),g=x,p=M,v=_,d=b,m=w,S.point=i}function l(){u(x,M,y,_,b,w,g,p,f,v,d,m,a,t),S.lineEnd=o,o()}var f,h,g,p,v,d,m,y,x,M,_,b,w,S={point:e,lineStart:r,lineEnd:o,polygonStart:function(){t.polygonStart(),S.lineStart=c},polygonEnd:function(){t.polygonEnd(),S.lineStart=r}};return S}function u(t,e,r,a,c,s,l,f,h,g,p,v,d,m){var y=l-t,x=f-e,M=y*y+x*x;if(M>4*i&&d--){var _=a+g,b=c+p,w=s+v,S=Math.sqrt(_*_+b*b+w*w),k=Math.asin(w/=S),E=oa(oa(w)-1)<Aa||oa(r-h)<Aa?(r+h)/2:Math.atan2(b,_),A=n(E,k),C=A[0],N=A[1],L=C-t,T=N-e,q=x*L-y*T;(q*q/M>i||oa((y*L+x*T)/M-.5)>.3||o>a*g+c*p+s*v)&&(u(t,e,r,a,c,s,C,N,E,_/=S,b/=S,w,d,m),m.point(C,N),u(C,N,E,_,b,w,l,f,h,g,p,v,d,m))}}var i=.5,o=Math.cos(30*Na),a=16;return t.precision=function(n){return arguments.length?(a=(i=n*n)>0&&16,t):Math.sqrt(i)},t}function Je(n){var t=We(function(t,e){return n([t*La,e*La])});return function(n){return tr(t(n))}}function Ge(n){this.stream=n}function Ke(n,t){return{point:t,sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}function Qe(n){return nr(function(){return n})()}function nr(n){function t(n){return n=a(n[0]*Na,n[1]*Na),[n[0]*h+c,s-n[1]*h]}function e(n){return n=a.invert((n[0]-c)/h,(s-n[1])/h),n&&[n[0]*La,n[1]*La]}function r(){a=Ue(o=ur(m,y,x),i);var n=i(v,d);return c=g-n[0]*h,s=p+n[1]*h,u()}function u(){return l&&(l.valid=!1,l=null),t}var i,o,a,c,s,l,f=We(function(n,t){return n=i(n,t),[n[0]*h+c,s-n[1]*h]}),h=150,g=480,p=250,v=0,d=0,m=0,y=0,x=0,M=Ec,_=bt,b=null,w=null;return t.stream=function(n){return l&&(l.valid=!1),l=tr(M(o,f(_(n)))),l.valid=!0,l},t.clipAngle=function(n){return arguments.length?(M=null==n?(b=n,Ec):Re((b=+n)*Na),u()):b},t.clipExtent=function(n){return arguments.length?(w=n,_=n?Pe(n[0][0],n[0][1],n[1][0],n[1][1]):bt,u()):w},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(v=n[0]%360*Na,d=n[1]%360*Na,r()):[v*La,d*La]},t.rotate=function(n){return arguments.length?(m=n[0]%360*Na,y=n[1]%360*Na,x=n.length>2?n[2]%360*Na:0,r()):[m*La,y*La,x*La]},Xo.rebind(t,f,"precision"),function(){return i=n.apply(this,arguments),t.invert=i.invert&&e,r()}}function tr(n){return Ke(n,function(t,e){n.point(t*Na,e*Na)})}function er(n,t){return[n,t]}function rr(n,t){return[n>Sa?n-ka:-Sa>n?n+ka:n,t]}function ur(n,t,e){return n?t||e?Ue(or(n),ar(t,e)):or(n):t||e?ar(t,e):rr}function ir(n){return function(t,e){return t+=n,[t>Sa?t-ka:-Sa>t?t+ka:t,e]}}function or(n){var t=ir(n);return t.invert=ir(-n),t}function ar(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*r+a*u;return[Math.atan2(c*i-l*o,a*r-s*u),X(l*i+c*o)]}var r=Math.cos(n),u=Math.sin(n),i=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*i-c*o;return[Math.atan2(c*i+s*o,a*r+l*u),X(l*r-a*u)]},e}function cr(n,t){var e=Math.cos(n),r=Math.sin(n);return function(u,i,o,a){var c=o*t;null!=u?(u=sr(e,u),i=sr(e,i),(o>0?i>u:u>i)&&(u+=o*ka)):(u=n+o*ka,i=n-.5*c);for(var s,l=u;o>0?l>i:i>l;l-=c)a.point((s=ve([e,-r*Math.cos(l),-r*Math.sin(l)]))[0],s[1])}}function sr(n,t){var e=se(t);e[0]-=n,pe(e);var r=V(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Aa)%(2*Math.PI)}function lr(n,t,e){var r=Xo.range(n,t-Aa,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function fr(n,t,e){var r=Xo.range(n,t-Aa,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function hr(n){return n.source}function gr(n){return n.target}function pr(n,t,e,r){var u=Math.cos(t),i=Math.sin(t),o=Math.cos(r),a=Math.sin(r),c=u*Math.cos(n),s=u*Math.sin(n),l=o*Math.cos(e),f=o*Math.sin(e),h=2*Math.asin(Math.sqrt(J(r-t)+u*o*J(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*c+t*l,u=e*s+t*f,o=e*i+t*a;return[Math.atan2(u,r)*La,Math.atan2(o,Math.sqrt(r*r+u*u))*La]}:function(){return[n*La,t*La]};return p.distance=h,p}function vr(){function n(n,u){var i=Math.sin(u*=Na),o=Math.cos(u),a=oa((n*=Na)-t),c=Math.cos(a);Uc+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*i-e*o*c)*a),e*i+r*o*c),t=n,e=i,r=o}var t,e,r;jc.point=function(u,i){t=u*Na,e=Math.sin(i*=Na),r=Math.cos(i),jc.point=n},jc.lineEnd=function(){jc.point=jc.lineEnd=g}}function dr(n,t){function e(t,e){var r=Math.cos(t),u=Math.cos(e),i=n(r*u);return[i*u*Math.sin(t),i*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),u=t(r),i=Math.sin(u),o=Math.cos(u);return[Math.atan2(n*i,r*o),Math.asin(r&&e*i/r)]},e}function mr(n,t){function e(n,t){var e=oa(oa(t)-Ea)<Aa?0:o/Math.pow(u(t),i);return[e*Math.sin(i*n),o-e*Math.cos(i*n)]}var r=Math.cos(n),u=function(n){return Math.tan(Sa/4+n/2)},i=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(u(t)/u(n)),o=r*Math.pow(u(n),i)/i;return i?(e.invert=function(n,t){var e=o-t,r=I(i)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/i,2*Math.atan(Math.pow(o/r,1/i))-Ea]},e):xr}function yr(n,t){function e(n,t){var e=i-t;return[e*Math.sin(u*n),i-e*Math.cos(u*n)]}var r=Math.cos(n),u=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),i=r/u+n;return oa(u)<Aa?er:(e.invert=function(n,t){var e=i-t;return[Math.atan2(n,e)/u,i-I(u)*Math.sqrt(n*n+e*e)]},e)}function xr(n,t){return[n,Math.log(Math.tan(Sa/4+t/2))]}function Mr(n){var t,e=Qe(n),r=e.scale,u=e.translate,i=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=u.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var o=i.apply(e,arguments);if(o===e){if(t=null==n){var a=Sa*r(),c=u();i([[c[0]-a,c[1]-a],[c[0]+a,c[1]+a]])}}else t&&(o=null);return o},e.clipExtent(null)}function _r(n,t){return[Math.log(Math.tan(Sa/4+t/2)),-n]}function br(n){return n[0]}function wr(n){return n[1]}function Sr(n){for(var t=n.length,e=[0,1],r=2,u=2;t>u;u++){for(;r>1&&Z(n[e[r-2]],n[e[r-1]],n[u])<=0;)--r;e[r++]=u}return e.slice(0,r)}function kr(n,t){return n[0]-t[0]||n[1]-t[1]}function Er(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function Ar(n,t,e,r){var u=n[0],i=e[0],o=t[0]-u,a=r[0]-i,c=n[1],s=e[1],l=t[1]-c,f=r[1]-s,h=(a*(c-s)-f*(u-i))/(f*o-a*l);return[u+h*o,c+h*l]}function Cr(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function Nr(){Jr(this),this.edge=this.site=this.circle=null}function Lr(n){var t=Jc.pop()||new Nr;return t.site=n,t}function Tr(n){Or(n),$c.remove(n),Jc.push(n),Jr(n)}function qr(n){var t=n.circle,e=t.x,r=t.cy,u={x:e,y:r},i=n.P,o=n.N,a=[n];Tr(n);for(var c=i;c.circle&&oa(e-c.circle.x)<Aa&&oa(r-c.circle.cy)<Aa;)i=c.P,a.unshift(c),Tr(c),c=i;a.unshift(c),Or(c);for(var s=o;s.circle&&oa(e-s.circle.x)<Aa&&oa(r-s.circle.cy)<Aa;)o=s.N,a.push(s),Tr(s),s=o;a.push(s),Or(s);var l,f=a.length;for(l=1;f>l;++l)s=a[l],c=a[l-1],$r(s.edge,c.site,s.site,u);c=a[0],s=a[f-1],s.edge=Vr(c.site,s.site,null,u),Fr(c),Fr(s)}function zr(n){for(var t,e,r,u,i=n.x,o=n.y,a=$c._;a;)if(r=Rr(a,o)-i,r>Aa)a=a.L;else{if(u=i-Dr(a,o),!(u>Aa)){r>-Aa?(t=a.P,e=a):u>-Aa?(t=a,e=a.N):t=e=a;break}if(!a.R){t=a;break}a=a.R}var c=Lr(n);if($c.insert(t,c),t||e){if(t===e)return Or(t),e=Lr(t.site),$c.insert(c,e),c.edge=e.edge=Vr(t.site,c.site),Fr(t),Fr(e),void 0;if(!e)return c.edge=Vr(t.site,c.site),void 0;Or(t),Or(e);var s=t.site,l=s.x,f=s.y,h=n.x-l,g=n.y-f,p=e.site,v=p.x-l,d=p.y-f,m=2*(h*d-g*v),y=h*h+g*g,x=v*v+d*d,M={x:(d*y-g*x)/m+l,y:(h*x-v*y)/m+f};$r(e.edge,s,p,M),c.edge=Vr(s,n,null,M),e.edge=Vr(n,p,null,M),Fr(t),Fr(e)}}function Rr(n,t){var e=n.site,r=e.x,u=e.y,i=u-t;if(!i)return r;var o=n.P;if(!o)return-1/0;e=o.site;var a=e.x,c=e.y,s=c-t;if(!s)return a;var l=a-r,f=1/i-1/s,h=l/s;return f?(-h+Math.sqrt(h*h-2*f*(l*l/(-2*s)-c+s/2+u-i/2)))/f+r:(r+a)/2}function Dr(n,t){var e=n.N;if(e)return Rr(e,t);var r=n.site;return r.y===t?r.x:1/0}function Pr(n){this.site=n,this.edges=[]}function Ur(n){for(var t,e,r,u,i,o,a,c,s,l,f=n[0][0],h=n[1][0],g=n[0][1],p=n[1][1],v=Xc,d=v.length;d--;)if(i=v[d],i&&i.prepare())for(a=i.edges,c=a.length,o=0;c>o;)l=a[o].end(),r=l.x,u=l.y,s=a[++o%c].start(),t=s.x,e=s.y,(oa(r-t)>Aa||oa(u-e)>Aa)&&(a.splice(o,0,new Br(Xr(i.site,l,oa(r-f)<Aa&&p-u>Aa?{x:f,y:oa(t-f)<Aa?e:p}:oa(u-p)<Aa&&h-r>Aa?{x:oa(e-p)<Aa?t:h,y:p}:oa(r-h)<Aa&&u-g>Aa?{x:h,y:oa(t-h)<Aa?e:g}:oa(u-g)<Aa&&r-f>Aa?{x:oa(e-g)<Aa?t:f,y:g}:null),i.site,null)),++c)}function jr(n,t){return t.angle-n.angle}function Hr(){Jr(this),this.x=this.y=this.arc=this.site=this.cy=null}function Fr(n){var t=n.P,e=n.N;if(t&&e){var r=t.site,u=n.site,i=e.site;if(r!==i){var o=u.x,a=u.y,c=r.x-o,s=r.y-a,l=i.x-o,f=i.y-a,h=2*(c*f-s*l);if(!(h>=-Ca)){var g=c*c+s*s,p=l*l+f*f,v=(f*g-s*p)/h,d=(c*p-l*g)/h,f=d+a,m=Gc.pop()||new Hr;m.arc=n,m.site=u,m.x=v+o,m.y=f+Math.sqrt(v*v+d*d),m.cy=f,n.circle=m;for(var y=null,x=Wc._;x;)if(m.y<x.y||m.y===x.y&&m.x<=x.x){if(!x.L){y=x.P;break}x=x.L}else{if(!x.R){y=x;break}x=x.R}Wc.insert(y,m),y||(Bc=m)}}}}function Or(n){var t=n.circle;t&&(t.P||(Bc=t.N),Wc.remove(t),Gc.push(t),Jr(t),n.circle=null)}function Yr(n){for(var t,e=Vc,r=De(n[0][0],n[0][1],n[1][0],n[1][1]),u=e.length;u--;)t=e[u],(!Ir(t,n)||!r(t)||oa(t.a.x-t.b.x)<Aa&&oa(t.a.y-t.b.y)<Aa)&&(t.a=t.b=null,e.splice(u,1))}function Ir(n,t){var e=n.b;if(e)return!0;var r,u,i=n.a,o=t[0][0],a=t[1][0],c=t[0][1],s=t[1][1],l=n.l,f=n.r,h=l.x,g=l.y,p=f.x,v=f.y,d=(h+p)/2,m=(g+v)/2;if(v===g){if(o>d||d>=a)return;if(h>p){if(i){if(i.y>=s)return}else i={x:d,y:c};e={x:d,y:s}}else{if(i){if(i.y<c)return}else i={x:d,y:s};e={x:d,y:c}}}else if(r=(h-p)/(v-g),u=m-r*d,-1>r||r>1)if(h>p){if(i){if(i.y>=s)return}else i={x:(c-u)/r,y:c};e={x:(s-u)/r,y:s}}else{if(i){if(i.y<c)return}else i={x:(s-u)/r,y:s};e={x:(c-u)/r,y:c}}else if(v>g){if(i){if(i.x>=a)return}else i={x:o,y:r*o+u};e={x:a,y:r*a+u}}else{if(i){if(i.x<o)return}else i={x:a,y:r*a+u};e={x:o,y:r*o+u}}return n.a=i,n.b=e,!0}function Zr(n,t){this.l=n,this.r=t,this.a=this.b=null}function Vr(n,t,e,r){var u=new Zr(n,t);return Vc.push(u),e&&$r(u,n,t,e),r&&$r(u,t,n,r),Xc[n.i].edges.push(new Br(u,n,t)),Xc[t.i].edges.push(new Br(u,t,n)),u}function Xr(n,t,e){var r=new Zr(n,null);return r.a=t,r.b=e,Vc.push(r),r}function $r(n,t,e,r){n.a||n.b?n.l===e?n.b=r:n.a=r:(n.a=r,n.l=t,n.r=e)}function Br(n,t,e){var r=n.a,u=n.b;this.edge=n,this.site=t,this.angle=e?Math.atan2(e.y-t.y,e.x-t.x):n.l===t?Math.atan2(u.x-r.x,r.y-u.y):Math.atan2(r.x-u.x,u.y-r.y)}function Wr(){this._=null}function Jr(n){n.U=n.C=n.L=n.R=n.P=n.N=null}function Gr(n,t){var e=t,r=t.R,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function Kr(n,t){var e=t,r=t.L,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function Qr(n){for(;n.L;)n=n.L;return n}function nu(n,t){var e,r,u,i=n.sort(tu).pop();for(Vc=[],Xc=new Array(n.length),$c=new Wr,Wc=new Wr;;)if(u=Bc,i&&(!u||i.y<u.y||i.y===u.y&&i.x<u.x))(i.x!==e||i.y!==r)&&(Xc[i.i]=new Pr(i),zr(i),e=i.x,r=i.y),i=n.pop();else{if(!u)break;qr(u.arc)}t&&(Yr(t),Ur(t));var o={cells:Xc,edges:Vc};return $c=Wc=Vc=Xc=null,o}function tu(n,t){return t.y-n.y||t.x-n.x}function eu(n,t,e){return(n.x-e.x)*(t.y-n.y)-(n.x-t.x)*(e.y-n.y)}function ru(n){return n.x}function uu(n){return n.y}function iu(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function ou(n,t,e,r,u,i){if(!n(t,e,r,u,i)){var o=.5*(e+u),a=.5*(r+i),c=t.nodes;c[0]&&ou(n,c[0],e,r,o,a),c[1]&&ou(n,c[1],o,r,u,a),c[2]&&ou(n,c[2],e,a,o,i),c[3]&&ou(n,c[3],o,a,u,i)}}function au(n,t){n=Xo.rgb(n),t=Xo.rgb(t);var e=n.r,r=n.g,u=n.b,i=t.r-e,o=t.g-r,a=t.b-u;return function(n){return"#"+vt(Math.round(e+i*n))+vt(Math.round(r+o*n))+vt(Math.round(u+a*n))}}function cu(n,t){var e,r={},u={};for(e in n)e in t?r[e]=fu(n[e],t[e]):u[e]=n[e];for(e in t)e in n||(u[e]=t[e]);return function(n){for(e in r)u[e]=r[e](n);return u}}function su(n,t){return t-=n=+n,function(e){return n+t*e}}function lu(n,t){var e,r,u,i,o,a=0,c=0,s=[],l=[];for(n+="",t+="",Qc.lastIndex=0,r=0;e=Qc.exec(t);++r)e.index&&s.push(t.substring(a,c=e.index)),l.push({i:s.length,x:e[0]}),s.push(null),a=Qc.lastIndex;for(a<t.length&&s.push(t.substring(a)),r=0,i=l.length;(e=Qc.exec(n))&&i>r;++r)if(o=l[r],o.x==e[0]){if(o.i)if(null==s[o.i+1])for(s[o.i-1]+=o.x,s.splice(o.i,1),u=r+1;i>u;++u)l[u].i--;else for(s[o.i-1]+=o.x+s[o.i+1],s.splice(o.i,2),u=r+1;i>u;++u)l[u].i-=2;else if(null==s[o.i+1])s[o.i]=o.x;else for(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1),u=r+1;i>u;++u)l[u].i--;l.splice(r,1),i--,r--}else o.x=su(parseFloat(e[0]),parseFloat(o.x));for(;i>r;)o=l.pop(),null==s[o.i+1]?s[o.i]=o.x:(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1)),i--;return 1===s.length?null==s[0]?(o=l[0].x,function(n){return o(n)+""}):function(){return t}:function(n){for(r=0;i>r;++r)s[(o=l[r]).i]=o.x(n);return s.join("")}}function fu(n,t){for(var e,r=Xo.interpolators.length;--r>=0&&!(e=Xo.interpolators[r](n,t)););return e}function hu(n,t){var e,r=[],u=[],i=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(fu(n[e],t[e]));for(;i>e;++e)u[e]=n[e];for(;o>e;++e)u[e]=t[e];return function(n){for(e=0;a>e;++e)u[e]=r[e](n);return u}}function gu(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function pu(n){return function(t){return 1-n(1-t)}}function vu(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function du(n){return n*n}function mu(n){return n*n*n}function yu(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function xu(n){return function(t){return Math.pow(t,n)}}function Mu(n){return 1-Math.cos(n*Ea)}function _u(n){return Math.pow(2,10*(n-1))}function bu(n){return 1-Math.sqrt(1-n*n)}function wu(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/ka*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*ka/t)}}function Su(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function ku(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Eu(n,t){n=Xo.hcl(n),t=Xo.hcl(t);var e=n.h,r=n.c,u=n.l,i=t.h-e,o=t.c-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return rt(e+i*n,r+o*n,u+a*n)+""}}function Au(n,t){n=Xo.hsl(n),t=Xo.hsl(t);var e=n.h,r=n.s,u=n.l,i=t.h-e,o=t.s-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return nt(e+i*n,r+o*n,u+a*n)+""}}function Cu(n,t){n=Xo.lab(n),t=Xo.lab(t);var e=n.l,r=n.a,u=n.b,i=t.l-e,o=t.a-r,a=t.b-u;return function(n){return ot(e+i*n,r+o*n,u+a*n)+""}}function Nu(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function Lu(n){var t=[n.a,n.b],e=[n.c,n.d],r=qu(t),u=Tu(t,e),i=qu(zu(e,t,-u))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,u*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*La,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*La:0}function Tu(n,t){return n[0]*t[0]+n[1]*t[1]}function qu(n){var t=Math.sqrt(Tu(n,n));return t&&(n[0]/=t,n[1]/=t),t}function zu(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Ru(n,t){var e,r=[],u=[],i=Xo.transform(n),o=Xo.transform(t),a=i.translate,c=o.translate,s=i.rotate,l=o.rotate,f=i.skew,h=o.skew,g=i.scale,p=o.scale;return a[0]!=c[0]||a[1]!=c[1]?(r.push("translate(",null,",",null,")"),u.push({i:1,x:su(a[0],c[0])},{i:3,x:su(a[1],c[1])})):c[0]||c[1]?r.push("translate("+c+")"):r.push(""),s!=l?(s-l>180?l+=360:l-s>180&&(s+=360),u.push({i:r.push(r.pop()+"rotate(",null,")")-2,x:su(s,l)})):l&&r.push(r.pop()+"rotate("+l+")"),f!=h?u.push({i:r.push(r.pop()+"skewX(",null,")")-2,x:su(f,h)}):h&&r.push(r.pop()+"skewX("+h+")"),g[0]!=p[0]||g[1]!=p[1]?(e=r.push(r.pop()+"scale(",null,",",null,")"),u.push({i:e-4,x:su(g[0],p[0])},{i:e-2,x:su(g[1],p[1])})):(1!=p[0]||1!=p[1])&&r.push(r.pop()+"scale("+p+")"),e=u.length,function(n){for(var t,i=-1;++i<e;)r[(t=u[i]).i]=t.x(n);return r.join("")}}function Du(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return(e-n)*t}}function Pu(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return Math.max(0,Math.min(1,(e-n)*t))}}function Uu(n){for(var t=n.source,e=n.target,r=Hu(t,e),u=[t];t!==r;)t=t.parent,u.push(t);for(var i=u.length;e!==r;)u.splice(i,0,e),e=e.parent;return u}function ju(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Hu(n,t){if(n===t)return n;for(var e=ju(n),r=ju(t),u=e.pop(),i=r.pop(),o=null;u===i;)o=u,u=e.pop(),i=r.pop();return o}function Fu(n){n.fixed|=2}function Ou(n){n.fixed&=-7}function Yu(n){n.fixed|=4,n.px=n.x,n.py=n.y}function Iu(n){n.fixed&=-5}function Zu(n,t,e){var r=0,u=0;if(n.charge=0,!n.leaf)for(var i,o=n.nodes,a=o.length,c=-1;++c<a;)i=o[c],null!=i&&(Zu(i,t,e),n.charge+=i.charge,r+=i.charge*i.cx,u+=i.charge*i.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var s=t*e[n.point.index];n.charge+=n.pointCharge=s,r+=s*n.point.x,u+=s*n.point.y}n.cx=r/n.charge,n.cy=u/n.charge}function Vu(n,t){return Xo.rebind(n,t,"sort","children","value"),n.nodes=n,n.links=Wu,n}function Xu(n){return n.children}function $u(n){return n.value}function Bu(n,t){return t.value-n.value}function Wu(n){return Xo.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function Ju(n){return n.x}function Gu(n){return n.y}function Ku(n,t,e){n.y0=t,n.y=e}function Qu(n){return Xo.range(n.length)}function ni(n){for(var t=-1,e=n[0].length,r=[];++t<e;)r[t]=0;return r}function ti(n){for(var t,e=1,r=0,u=n[0][1],i=n.length;i>e;++e)(t=n[e][1])>u&&(r=e,u=t);return r}function ei(n){return n.reduce(ri,0)}function ri(n,t){return n+t[1]}function ui(n,t){return ii(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function ii(n,t){for(var e=-1,r=+n[0],u=(n[1]-r)/t,i=[];++e<=t;)i[e]=u*e+r;return i}function oi(n){return[Xo.min(n),Xo.max(n)]}function ai(n,t){return n.parent==t.parent?1:2}function ci(n){var t=n.children;return t&&t.length?t[0]:n._tree.thread}function si(n){var t,e=n.children;return e&&(t=e.length)?e[t-1]:n._tree.thread}function li(n,t){var e=n.children;if(e&&(u=e.length))for(var r,u,i=-1;++i<u;)t(r=li(e[i],t),n)>0&&(n=r);return n}function fi(n,t){return n.x-t.x}function hi(n,t){return t.x-n.x}function gi(n,t){return n.depth-t.depth}function pi(n,t){function e(n,r){var u=n.children;if(u&&(o=u.length))for(var i,o,a=null,c=-1;++c<o;)i=u[c],e(i,a),a=i;t(n,r)}e(n,null)}function vi(n){for(var t,e=0,r=0,u=n.children,i=u.length;--i>=0;)t=u[i]._tree,t.prelim+=e,t.mod+=e,e+=t.shift+(r+=t.change)}function di(n,t,e){n=n._tree,t=t._tree;var r=e/(t.number-n.number);n.change+=r,t.change-=r,t.shift+=e,t.prelim+=e,t.mod+=e}function mi(n,t,e){return n._tree.ancestor.parent==t.parent?n._tree.ancestor:e}function yi(n,t){return n.value-t.value}function xi(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Mi(n,t){n._pack_next=t,t._pack_prev=n}function _i(n,t){var e=t.x-n.x,r=t.y-n.y,u=n.r+t.r;return.999*u*u>e*e+r*r}function bi(n){function t(n){l=Math.min(n.x-n.r,l),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(s=e.length)){var e,r,u,i,o,a,c,s,l=1/0,f=-1/0,h=1/0,g=-1/0;if(e.forEach(wi),r=e[0],r.x=-r.r,r.y=0,t(r),s>1&&(u=e[1],u.x=u.r,u.y=0,t(u),s>2))for(i=e[2],Ei(r,u,i),t(i),xi(r,i),r._pack_prev=i,xi(i,u),u=r._pack_next,o=3;s>o;o++){Ei(r,u,i=e[o]);var p=0,v=1,d=1;for(a=u._pack_next;a!==u;a=a._pack_next,v++)if(_i(a,i)){p=1;break}if(1==p)for(c=r._pack_prev;c!==a._pack_prev&&!_i(c,i);c=c._pack_prev,d++);p?(d>v||v==d&&u.r<r.r?Mi(r,u=a):Mi(r=c,u),o--):(xi(r,i),u=i,t(i))}var m=(l+f)/2,y=(h+g)/2,x=0;for(o=0;s>o;o++)i=e[o],i.x-=m,i.y-=y,x=Math.max(x,i.r+Math.sqrt(i.x*i.x+i.y*i.y));n.r=x,e.forEach(Si)}}function wi(n){n._pack_next=n._pack_prev=n}function Si(n){delete n._pack_next,delete n._pack_prev}function ki(n,t,e,r){var u=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,u)for(var i=-1,o=u.length;++i<o;)ki(u[i],t,e,r)}function Ei(n,t,e){var r=n.r+e.r,u=t.x-n.x,i=t.y-n.y;if(r&&(u||i)){var o=t.r+e.r,a=u*u+i*i;o*=o,r*=r;var c=.5+(r-o)/(2*a),s=Math.sqrt(Math.max(0,2*o*(r+a)-(r-=a)*r-o*o))/(2*a);e.x=n.x+c*u+s*i,e.y=n.y+c*i-s*u}else e.x=n.x+r,e.y=n.y}function Ai(n){return 1+Xo.max(n,function(n){return n.y})}function Ci(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Ni(n){var t=n.children;return t&&t.length?Ni(t[0]):n}function Li(n){var t,e=n.children;return e&&(t=e.length)?Li(e[t-1]):n}function Ti(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function qi(n,t){var e=n.x+t[3],r=n.y+t[0],u=n.dx-t[1]-t[3],i=n.dy-t[0]-t[2];return 0>u&&(e+=u/2,u=0),0>i&&(r+=i/2,i=0),{x:e,y:r,dx:u,dy:i}}function zi(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Ri(n){return n.rangeExtent?n.rangeExtent():zi(n.range())}function Di(n,t,e,r){var u=e(n[0],n[1]),i=r(t[0],t[1]);return function(n){return i(u(n))}}function Pi(n,t){var e,r=0,u=n.length-1,i=n[r],o=n[u];return i>o&&(e=r,r=u,u=e,e=i,i=o,o=e),n[r]=t.floor(i),n[u]=t.ceil(o),n}function Ui(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:ls}function ji(n,t,e,r){var u=[],i=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());++o<=a;)u.push(e(n[o-1],n[o])),i.push(r(t[o-1],t[o]));return function(t){var e=Xo.bisect(n,t,1,a)-1;return i[e](u[e](t))}}function Hi(n,t,e,r){function u(){var u=Math.min(n.length,t.length)>2?ji:Di,c=r?Pu:Du;return o=u(n,t,c,e),a=u(t,n,c,fu),i}function i(n){return o(n)}var o,a;return i.invert=function(n){return a(n)},i.domain=function(t){return arguments.length?(n=t.map(Number),u()):n},i.range=function(n){return arguments.length?(t=n,u()):t},i.rangeRound=function(n){return i.range(n).interpolate(Nu)},i.clamp=function(n){return arguments.length?(r=n,u()):r},i.interpolate=function(n){return arguments.length?(e=n,u()):e},i.ticks=function(t){return Ii(n,t)},i.tickFormat=function(t,e){return Zi(n,t,e)},i.nice=function(t){return Oi(n,t),u()},i.copy=function(){return Hi(n,t,e,r)},u()}function Fi(n,t){return Xo.rebind(n,t,"range","rangeRound","interpolate","clamp")}function Oi(n,t){return Pi(n,Ui(Yi(n,t)[2]))}function Yi(n,t){null==t&&(t=10);var e=zi(n),r=e[1]-e[0],u=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),i=t/r*u;return.15>=i?u*=10:.35>=i?u*=5:.75>=i&&(u*=2),e[0]=Math.ceil(e[0]/u)*u,e[1]=Math.floor(e[1]/u)*u+.5*u,e[2]=u,e}function Ii(n,t){return Xo.range.apply(Xo,Yi(n,t))}function Zi(n,t,e){var r=Yi(n,t);return Xo.format(e?e.replace(Qa,function(n,t,e,u,i,o,a,c,s,l){return[t,e,u,i,o,a,c,s||"."+Xi(l,r),l].join("")}):",."+Vi(r[2])+"f")}function Vi(n){return-Math.floor(Math.log(n)/Math.LN10+.01)}function Xi(n,t){var e=Vi(t[2]);return n in fs?Math.abs(e-Vi(Math.max(Math.abs(t[0]),Math.abs(t[1]))))+ +("e"!==n):e-2*("%"===n)}function $i(n,t,e,r){function u(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function i(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(u(t))}return o.invert=function(t){return i(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(u)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(u)),o):t},o.nice=function(){var t=Pi(r.map(u),e?Math:gs);return n.domain(t),r=t.map(i),o},o.ticks=function(){var n=zi(r),o=[],a=n[0],c=n[1],s=Math.floor(u(a)),l=Math.ceil(u(c)),f=t%1?2:t;if(isFinite(l-s)){if(e){for(;l>s;s++)for(var h=1;f>h;h++)o.push(i(s)*h);o.push(i(s))}else for(o.push(i(s));s++<l;)for(var h=f-1;h>0;h--)o.push(i(s)*h);for(s=0;o[s]<a;s++);for(l=o.length;o[l-1]>c;l--);o=o.slice(s,l)}return o},o.tickFormat=function(n,t){if(!arguments.length)return hs;arguments.length<2?t=hs:"function"!=typeof t&&(t=Xo.format(t));var r,a=Math.max(.1,n/o.ticks().length),c=e?(r=1e-12,Math.ceil):(r=-1e-12,Math.floor);return function(n){return n/i(c(u(n)+r))<=a?t(n):""}},o.copy=function(){return $i(n.copy(),t,e,r)},Fi(o,n)}function Bi(n,t,e){function r(t){return n(u(t))}var u=Wi(t),i=Wi(1/t);return r.invert=function(t){return i(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(u)),r):e},r.ticks=function(n){return Ii(e,n)},r.tickFormat=function(n,t){return Zi(e,n,t)},r.nice=function(n){return r.domain(Oi(e,n))},r.exponent=function(o){return arguments.length?(u=Wi(t=o),i=Wi(1/t),n.domain(e.map(u)),r):t},r.copy=function(){return Bi(n.copy(),t,e)},Fi(r,n)}function Wi(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function Ji(n,t){function e(e){return o[((i.get(e)||"range"===t.t&&i.set(e,n.push(e)))-1)%o.length]}function r(t,e){return Xo.range(n.length).map(function(n){return t+e*n})}var i,o,a;return e.domain=function(r){if(!arguments.length)return n;n=[],i=new u;for(var o,a=-1,c=r.length;++a<c;)i.has(o=r[a])||i.set(o,n.push(o));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(o=n,a=0,t={t:"range",a:arguments},e):o},e.rangePoints=function(u,i){arguments.length<2&&(i=0);var c=u[0],s=u[1],l=(s-c)/(Math.max(1,n.length-1)+i);return o=r(n.length<2?(c+s)/2:c+l*i/2,l),a=0,t={t:"rangePoints",a:arguments},e},e.rangeBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=(f-l)/(n.length-i+2*c);return o=r(l+h*c,h),s&&o.reverse(),a=h*(1-i),t={t:"rangeBands",a:arguments},e},e.rangeRoundBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=Math.floor((f-l)/(n.length-i+2*c)),g=f-l-(n.length-i)*h;return o=r(l+Math.round(g/2),h),s&&o.reverse(),a=Math.round(h*(1-i)),t={t:"rangeRoundBands",a:arguments},e},e.rangeBand=function(){return a},e.rangeExtent=function(){return zi(t.a[0])},e.copy=function(){return Ji(n,t)},e.domain(n)}function Gi(n,t){function e(){var e=0,i=t.length;for(u=[];++e<i;)u[e-1]=Xo.quantile(n,e/i);return r}function r(n){return isNaN(n=+n)?void 0:t[Xo.bisect(u,n)]}var u;return r.domain=function(t){return arguments.length?(n=t.filter(function(n){return!isNaN(n)}).sort(Xo.ascending),e()):n},r.range=function(n){return arguments.length?(t=n,e()):t},r.quantiles=function(){return u},r.invertExtent=function(e){return e=t.indexOf(e),0>e?[0/0,0/0]:[e>0?u[e-1]:n[0],e<u.length?u[e]:n[n.length-1]]},r.copy=function(){return Gi(n,t)},e()}function Ki(n,t,e){function r(t){return e[Math.max(0,Math.min(o,Math.floor(i*(t-n))))]}function u(){return i=e.length/(t-n),o=e.length-1,r}var i,o;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],u()):[n,t]},r.range=function(n){return arguments.length?(e=n,u()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?0/0:t/i+n,[t,t+1/i]},r.copy=function(){return Ki(n,t,e)},u()}function Qi(n,t){function e(e){return e>=e?t[Xo.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return Qi(n,t)},e}function no(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return Ii(n,t)},t.tickFormat=function(t,e){return Zi(n,t,e)},t.copy=function(){return no(n)},t}function to(n){return n.innerRadius}function eo(n){return n.outerRadius}function ro(n){return n.startAngle}function uo(n){return n.endAngle}function io(n){function t(t){function o(){s.push("M",i(n(l),a))}for(var c,s=[],l=[],f=-1,h=t.length,g=_t(e),p=_t(r);++f<h;)u.call(this,c=t[f],f)?l.push([+g.call(this,c,f),+p.call(this,c,f)]):l.length&&(o(),l=[]);return l.length&&o(),s.length?s.join(""):null}var e=br,r=wr,u=be,i=oo,o=i.key,a=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(u=n,t):u},t.interpolate=function(n){return arguments.length?(o="function"==typeof n?i=n:(i=Ms.get(n)||oo).key,t):o},t.tension=function(n){return arguments.length?(a=n,t):a},t}function oo(n){return n.join("L")}function ao(n){return oo(n)+"Z"}function co(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r[0]+(r=n[t])[0])/2,"V",r[1]);return e>1&&u.push("H",r[0]),u.join("")}function so(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("V",(r=n[t])[1],"H",r[0]);return u.join("")}function lo(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r=n[t])[0],"V",r[1]);return u.join("")}function fo(n,t){return n.length<4?oo(n):n[1]+po(n.slice(1,n.length-1),vo(n,t))}function ho(n,t){return n.length<3?oo(n):n[0]+po((n.push(n[0]),n),vo([n[n.length-2]].concat(n,[n[1]]),t))}function go(n,t){return n.length<3?oo(n):n[0]+po(n,vo(n,t))}function po(n,t){if(t.length<1||n.length!=t.length&&n.length!=t.length+2)return oo(n);var e=n.length!=t.length,r="",u=n[0],i=n[1],o=t[0],a=o,c=1;if(e&&(r+="Q"+(i[0]-2*o[0]/3)+","+(i[1]-2*o[1]/3)+","+i[0]+","+i[1],u=n[1],c=2),t.length>1){a=t[1],i=n[c],c++,r+="C"+(u[0]+o[0])+","+(u[1]+o[1])+","+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1];for(var s=2;s<t.length;s++,c++)i=n[c],a=t[s],r+="S"+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1]}if(e){var l=n[c];r+="Q"+(i[0]+2*a[0]/3)+","+(i[1]+2*a[1]/3)+","+l[0]+","+l[1]}return r}function vo(n,t){for(var e,r=[],u=(1-t)/2,i=n[0],o=n[1],a=1,c=n.length;++a<c;)e=i,i=o,o=n[a],r.push([u*(o[0]-e[0]),u*(o[1]-e[1])]);return r}function mo(n){if(n.length<3)return oo(n);var t=1,e=n.length,r=n[0],u=r[0],i=r[1],o=[u,u,u,(r=n[1])[0]],a=[i,i,i,r[1]],c=[u,",",i,"L",_o(ws,o),",",_o(ws,a)];for(n.push(n[e-1]);++t<=e;)r=n[t],o.shift(),o.push(r[0]),a.shift(),a.push(r[1]),bo(c,o,a);return n.pop(),c.push("L",r),c.join("")}function yo(n){if(n.length<4)return oo(n);for(var t,e=[],r=-1,u=n.length,i=[0],o=[0];++r<3;)t=n[r],i.push(t[0]),o.push(t[1]);for(e.push(_o(ws,i)+","+_o(ws,o)),--r;++r<u;)t=n[r],i.shift(),i.push(t[0]),o.shift(),o.push(t[1]),bo(e,i,o);return e.join("")}function xo(n){for(var t,e,r=-1,u=n.length,i=u+4,o=[],a=[];++r<4;)e=n[r%u],o.push(e[0]),a.push(e[1]);for(t=[_o(ws,o),",",_o(ws,a)],--r;++r<i;)e=n[r%u],o.shift(),o.push(e[0]),a.shift(),a.push(e[1]),bo(t,o,a);return t.join("")}function Mo(n,t){var e=n.length-1;if(e)for(var r,u,i=n[0][0],o=n[0][1],a=n[e][0]-i,c=n[e][1]-o,s=-1;++s<=e;)r=n[s],u=s/e,r[0]=t*r[0]+(1-t)*(i+u*a),r[1]=t*r[1]+(1-t)*(o+u*c);return mo(n)}function _o(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function bo(n,t,e){n.push("C",_o(_s,t),",",_o(_s,e),",",_o(bs,t),",",_o(bs,e),",",_o(ws,t),",",_o(ws,e))}function wo(n,t){return(t[1]-n[1])/(t[0]-n[0])}function So(n){for(var t=0,e=n.length-1,r=[],u=n[0],i=n[1],o=r[0]=wo(u,i);++t<e;)r[t]=(o+(o=wo(u=i,i=n[t+1])))/2;return r[t]=o,r}function ko(n){for(var t,e,r,u,i=[],o=So(n),a=-1,c=n.length-1;++a<c;)t=wo(n[a],n[a+1]),oa(t)<Aa?o[a]=o[a+1]=0:(e=o[a]/t,r=o[a+1]/t,u=e*e+r*r,u>9&&(u=3*t/Math.sqrt(u),o[a]=u*e,o[a+1]=u*r));for(a=-1;++a<=c;)u=(n[Math.min(c,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),i.push([u||0,o[a]*u||0]);return i}function Eo(n){return n.length<3?oo(n):n[0]+po(n,ko(n))}function Ao(n){for(var t,e,r,u=-1,i=n.length;++u<i;)t=n[u],e=t[0],r=t[1]+ys,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function Co(n){function t(t){function c(){v.push("M",a(n(m),f),l,s(n(d.reverse()),f),"Z")}for(var h,g,p,v=[],d=[],m=[],y=-1,x=t.length,M=_t(e),_=_t(u),b=e===r?function(){return g}:_t(r),w=u===i?function(){return p}:_t(i);++y<x;)o.call(this,h=t[y],y)?(d.push([g=+M.call(this,h,y),p=+_.call(this,h,y)]),m.push([+b.call(this,h,y),+w.call(this,h,y)])):d.length&&(c(),d=[],m=[]);return d.length&&c(),v.length?v.join(""):null}var e=br,r=br,u=0,i=wr,o=be,a=oo,c=a.key,s=a,l="L",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(u=i=n,t):i},t.y0=function(n){return arguments.length?(u=n,t):u},t.y1=function(n){return arguments.length?(i=n,t):i},t.defined=function(n){return arguments.length?(o=n,t):o},t.interpolate=function(n){return arguments.length?(c="function"==typeof n?a=n:(a=Ms.get(n)||oo).key,s=a.reverse||a,l=a.closed?"M":"L",t):c},t.tension=function(n){return arguments.length?(f=n,t):f},t}function No(n){return n.radius}function Lo(n){return[n.x,n.y]}function To(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]+ys;return[e*Math.cos(r),e*Math.sin(r)]}}function qo(){return 64}function zo(){return"circle"}function Ro(n){var t=Math.sqrt(n/Sa);return"M0,"+t+"A"+t+","+t+" 0 1,1 0,"+-t+"A"+t+","+t+" 0 1,1 0,"+t+"Z"}function Do(n,t){return fa(n,Ns),n.id=t,n}function Po(n,t,e,r){var u=n.id;return R(n,"function"==typeof e?function(n,i,o){n.__transition__[u].tween.set(t,r(e.call(n,n.__data__,i,o)))}:(e=r(e),function(n){n.__transition__[u].tween.set(t,e)}))}function Uo(n){return null==n&&(n=""),function(){this.textContent=n}}function jo(n,t,e,r){var i=n.__transition__||(n.__transition__={active:0,count:0}),o=i[e];if(!o){var a=r.time;o=i[e]={tween:new u,time:a,ease:r.ease,delay:r.delay,duration:r.duration},++i.count,Xo.timer(function(r){function u(r){return i.active>e?s():(i.active=e,o.event&&o.event.start.call(n,l,t),o.tween.forEach(function(e,r){(r=r.call(n,l,t))&&v.push(r)}),Xo.timer(function(){return p.c=c(r||1)?be:c,1},0,a),void 0)}function c(r){if(i.active!==e)return s();for(var u=r/g,a=f(u),c=v.length;c>0;)v[--c].call(n,a);return u>=1?(o.event&&o.event.end.call(n,l,t),s()):void 0}function s(){return--i.count?delete i[e]:delete n.__transition__,1}var l=n.__data__,f=o.ease,h=o.delay,g=o.duration,p=Ja,v=[];return p.t=h+a,r>=h?u(r-h):(p.c=u,void 0)},0,a)}}function Ho(n,t){n.attr("transform",function(n){return"translate("+t(n)+",0)"})}function Fo(n,t){n.attr("transform",function(n){return"translate(0,"+t(n)+")"})}function Oo(n){return n.toISOString()}function Yo(n,t,e){function r(t){return n(t)}function u(n,e){var r=n[1]-n[0],u=r/e,i=Xo.bisect(js,u);return i==js.length?[t.year,Yi(n.map(function(n){return n/31536e6}),e)[2]]:i?t[u/js[i-1]<js[i]/u?i-1:i]:[Os,Yi(n,e)[2]]}return r.invert=function(t){return Io(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(Io)},r.nice=function(n,t){function e(e){return!isNaN(e)&&!n.range(e,Io(+e+1),t).length}var i=r.domain(),o=zi(i),a=null==n?u(o,10):"number"==typeof n&&u(o,n);return a&&(n=a[0],t=a[1]),r.domain(Pi(i,t>1?{floor:function(t){for(;e(t=n.floor(t));)t=Io(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=Io(+t+1);return t}}:n))},r.ticks=function(n,t){var e=zi(r.domain()),i=null==n?u(e,10):"number"==typeof n?u(e,n):!n.range&&[{range:n},t];return i&&(n=i[0],t=i[1]),n.range(e[0],Io(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return Yo(n.copy(),t,e)},Fi(r,n)}function Io(n){return new Date(n)}function Zo(n){return JSON.parse(n.responseText)}function Vo(n){var t=Wo.createRange();return t.selectNode(Wo.body),t.createContextualFragment(n.responseText)}var Xo={version:"3.4.3"};Date.now||(Date.now=function(){return+new Date});var $o=[].slice,Bo=function(n){return $o.call(n)},Wo=document,Jo=Wo.documentElement,Go=window;try{Bo(Jo.childNodes)[0].nodeType}catch(Ko){Bo=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}try{Wo.createElement("div").style.setProperty("opacity",0,"")}catch(Qo){var na=Go.Element.prototype,ta=na.setAttribute,ea=na.setAttributeNS,ra=Go.CSSStyleDeclaration.prototype,ua=ra.setProperty;na.setAttribute=function(n,t){ta.call(this,n,t+"")},na.setAttributeNS=function(n,t,e){ea.call(this,n,t,e+"")},ra.setProperty=function(n,t,e){ua.call(this,n,t+"",e)}}Xo.ascending=function(n,t){return t>n?-1:n>t?1:n>=t?0:0/0},Xo.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:0/0},Xo.min=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&e>r&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&e>r&&(e=r)}return e},Xo.max=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&r>e&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&r>e&&(e=r)}return e},Xo.extent=function(n,t){var e,r,u,i=-1,o=n.length;if(1===arguments.length){for(;++i<o&&!(null!=(e=u=n[i])&&e>=e);)e=u=void 0;for(;++i<o;)null!=(r=n[i])&&(e>r&&(e=r),r>u&&(u=r))}else{for(;++i<o&&!(null!=(e=u=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;++i<o;)null!=(r=t.call(n,n[i],i))&&(e>r&&(e=r),r>u&&(u=r))}return[e,u]},Xo.sum=function(n,t){var e,r=0,u=n.length,i=-1;if(1===arguments.length)for(;++i<u;)isNaN(e=+n[i])||(r+=e);else for(;++i<u;)isNaN(e=+t.call(n,n[i],i))||(r+=e);return r},Xo.mean=function(t,e){var r,u=t.length,i=0,o=-1,a=0;if(1===arguments.length)for(;++o<u;)n(r=t[o])&&(i+=(r-i)/++a);else for(;++o<u;)n(r=e.call(t,t[o],o))&&(i+=(r-i)/++a);return a?i:void 0},Xo.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),u=+n[r-1],i=e-r;return i?u+i*(n[r]-u):u},Xo.median=function(t,e){return arguments.length>1&&(t=t.map(e)),t=t.filter(n),t.length?Xo.quantile(t.sort(Xo.ascending),.5):void 0},Xo.bisector=function(n){return{left:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n.call(t,t[i],i)<e?r=i+1:u=i}return r},right:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;e<n.call(t,t[i],i)?u=i:r=i+1}return r}}};var ia=Xo.bisector(function(n){return n});Xo.bisectLeft=ia.left,Xo.bisect=Xo.bisectRight=ia.right,Xo.shuffle=function(n){for(var t,e,r=n.length;r;)e=0|Math.random()*r--,t=n[r],n[r]=n[e],n[e]=t;return n},Xo.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},Xo.pairs=function(n){for(var t,e=0,r=n.length-1,u=n[0],i=new Array(0>r?0:r);r>e;)i[e]=[t=u,u=n[++e]];return i},Xo.zip=function(){if(!(u=arguments.length))return[];for(var n=-1,e=Xo.min(arguments,t),r=new Array(e);++n<e;)for(var u,i=-1,o=r[n]=new Array(u);++i<u;)o[i]=arguments[i][n];return r},Xo.transpose=function(n){return Xo.zip.apply(Xo,n)},Xo.keys=function(n){var t=[];for(var e in n)t.push(e);return t},Xo.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},Xo.entries=function(n){var t=[];for(var e in n)t.push({key:e,value:n[e]});return t},Xo.merge=function(n){for(var t,e,r,u=n.length,i=-1,o=0;++i<u;)o+=n[i].length;for(e=new Array(o);--u>=0;)for(r=n[u],t=r.length;--t>=0;)e[--o]=r[t];return e};var oa=Math.abs;Xo.range=function(n,t,r){if(arguments.length<3&&(r=1,arguments.length<2&&(t=n,n=0)),1/0===(t-n)/r)throw new Error("infinite range");var u,i=[],o=e(oa(r)),a=-1;if(n*=o,t*=o,r*=o,0>r)for(;(u=n+r*++a)>t;)i.push(u/o);else for(;(u=n+r*++a)<t;)i.push(u/o);return i},Xo.map=function(n){var t=new u;if(n instanceof u)n.forEach(function(n,e){t.set(n,e)});else for(var e in n)t.set(e,n[e]);return t},r(u,{has:i,get:function(n){return this[aa+n]},set:function(n,t){return this[aa+n]=t},remove:o,keys:a,values:function(){var n=[];return this.forEach(function(t,e){n.push(e)}),n},entries:function(){var n=[];return this.forEach(function(t,e){n.push({key:t,value:e})}),n},size:c,empty:s,forEach:function(n){for(var t in this)t.charCodeAt(0)===ca&&n.call(this,t.substring(1),this[t])}});var aa="\x00",ca=aa.charCodeAt(0);Xo.nest=function(){function n(t,a,c){if(c>=o.length)return r?r.call(i,a):e?a.sort(e):a;for(var s,l,f,h,g=-1,p=a.length,v=o[c++],d=new u;++g<p;)(h=d.get(s=v(l=a[g])))?h.push(l):d.set(s,[l]);return t?(l=t(),f=function(e,r){l.set(e,n(t,r,c))}):(l={},f=function(e,r){l[e]=n(t,r,c)}),d.forEach(f),l}function t(n,e){if(e>=o.length)return n;var r=[],u=a[e++];return n.forEach(function(n,u){r.push({key:n,values:t(u,e)})}),u?r.sort(function(n,t){return u(n.key,t.key)}):r}var e,r,i={},o=[],a=[];return i.map=function(t,e){return n(e,t,0)},i.entries=function(e){return t(n(Xo.map,e,0),0)},i.key=function(n){return o.push(n),i},i.sortKeys=function(n){return a[o.length-1]=n,i},i.sortValues=function(n){return e=n,i},i.rollup=function(n){return r=n,i},i},Xo.set=function(n){var t=new l;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},r(l,{has:i,add:function(n){return this[aa+n]=!0,n},remove:function(n){return n=aa+n,n in this&&delete this[n]},values:a,size:c,empty:s,forEach:function(n){for(var t in this)t.charCodeAt(0)===ca&&n.call(this,t.substring(1))}}),Xo.behavior={},Xo.rebind=function(n,t){for(var e,r=1,u=arguments.length;++r<u;)n[e=arguments[r]]=f(n,t,t[e]);return n};var sa=["webkit","ms","moz","Moz","o","O"];Xo.dispatch=function(){for(var n=new p,t=-1,e=arguments.length;++t<e;)n[arguments[t]]=v(n);return n},p.prototype.on=function(n,t){var e=n.indexOf("."),r="";if(e>=0&&(r=n.substring(e+1),n=n.substring(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},Xo.event=null,Xo.requote=function(n){return n.replace(la,"\\$&")};var la=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,fa={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},ha=function(n,t){return t.querySelector(n)},ga=function(n,t){return t.querySelectorAll(n)},pa=Jo[h(Jo,"matchesSelector")],va=function(n,t){return pa.call(n,t)};"function"==typeof Sizzle&&(ha=function(n,t){return Sizzle(n,t)[0]||null},ga=Sizzle,va=Sizzle.matchesSelector),Xo.selection=function(){return xa};var da=Xo.selection.prototype=[];da.select=function(n){var t,e,r,u,i=[];n=M(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]),t.parentNode=(r=this[o]).parentNode;for(var c=-1,s=r.length;++c<s;)(u=r[c])?(t.push(e=n.call(u,u.__data__,c,o)),e&&"__data__"in u&&(e.__data__=u.__data__)):t.push(null)}return x(i)},da.selectAll=function(n){var t,e,r=[];n=_(n);for(var u=-1,i=this.length;++u<i;)for(var o=this[u],a=-1,c=o.length;++a<c;)(e=o[a])&&(r.push(t=Bo(n.call(e,e.__data__,a,u))),t.parentNode=e);return x(r)};var ma={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};Xo.ns={prefix:ma,qualify:function(n){var t=n.indexOf(":"),e=n;return t>=0&&(e=n.substring(0,t),n=n.substring(t+1)),ma.hasOwnProperty(e)?{space:ma[e],local:n}:n}},da.attr=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node();return n=Xo.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(b(t,n[t]));return this}return this.each(b(n,t))},da.classed=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node(),r=(n=k(n)).length,u=-1;if(t=e.classList){for(;++u<r;)if(!t.contains(n[u]))return!1}else for(t=e.getAttribute("class");++u<r;)if(!S(n[u]).test(t))return!1;return!0}for(t in n)this.each(E(t,n[t]));return this}return this.each(E(n,t))},da.style=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t="");for(e in n)this.each(C(e,n[e],t));return this}if(2>r)return Go.getComputedStyle(this.node(),null).getPropertyValue(n);e=""}return this.each(C(n,t,e))},da.property=function(n,t){if(arguments.length<2){if("string"==typeof n)return this.node()[n];for(t in n)this.each(N(t,n[t]));return this}return this.each(N(n,t))},da.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},da.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},da.append=function(n){return n=L(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},da.insert=function(n,t){return n=L(n),t=M(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments)||null)})},da.remove=function(){return this.each(function(){var n=this.parentNode;n&&n.removeChild(this)})},da.data=function(n,t){function e(n,e){var r,i,o,a=n.length,f=e.length,h=Math.min(a,f),g=new Array(f),p=new Array(f),v=new Array(a);if(t){var d,m=new u,y=new u,x=[];for(r=-1;++r<a;)d=t.call(i=n[r],i.__data__,r),m.has(d)?v[r]=i:m.set(d,i),x.push(d);for(r=-1;++r<f;)d=t.call(e,o=e[r],r),(i=m.get(d))?(g[r]=i,i.__data__=o):y.has(d)||(p[r]=T(o)),y.set(d,o),m.remove(d);for(r=-1;++r<a;)m.has(x[r])&&(v[r]=n[r])}else{for(r=-1;++r<h;)i=n[r],o=e[r],i?(i.__data__=o,g[r]=i):p[r]=T(o);for(;f>r;++r)p[r]=T(e[r]);for(;a>r;++r)v[r]=n[r]}p.update=g,p.parentNode=g.parentNode=v.parentNode=n.parentNode,c.push(p),s.push(g),l.push(v)}var r,i,o=-1,a=this.length;if(!arguments.length){for(n=new Array(a=(r=this[0]).length);++o<a;)(i=r[o])&&(n[o]=i.__data__);return n}var c=D([]),s=x([]),l=x([]);if("function"==typeof n)for(;++o<a;)e(r=this[o],n.call(r,r.parentNode.__data__,o));else for(;++o<a;)e(r=this[o],n);return s.enter=function(){return c},s.exit=function(){return l},s},da.datum=function(n){return arguments.length?this.property("__data__",n):this.property("__data__")},da.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=q(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]),t.parentNode=(e=this[i]).parentNode;for(var a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return x(u)},da.order=function(){for(var n=-1,t=this.length;++n<t;)for(var e,r=this[n],u=r.length-1,i=r[u];--u>=0;)(e=r[u])&&(i&&i!==e.nextSibling&&i.parentNode.insertBefore(e,i),i=e);return this},da.sort=function(n){n=z.apply(this,arguments);for(var t=-1,e=this.length;++t<e;)this[t].sort(n);return this.order()},da.each=function(n){return R(this,function(t,e,r){n.call(t,t.__data__,e,r)})},da.call=function(n){var t=Bo(arguments);return n.apply(t[0]=this,t),this},da.empty=function(){return!this.node()},da.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,u=e.length;u>r;r++){var i=e[r];if(i)return i}return null},da.size=function(){var n=0;return this.each(function(){++n}),n};var ya=[];Xo.selection.enter=D,Xo.selection.enter.prototype=ya,ya.append=da.append,ya.empty=da.empty,ya.node=da.node,ya.call=da.call,ya.size=da.size,ya.select=function(n){for(var t,e,r,u,i,o=[],a=-1,c=this.length;++a<c;){r=(u=this[a]).update,o.push(t=[]),t.parentNode=u.parentNode;for(var s=-1,l=u.length;++s<l;)(i=u[s])?(t.push(r[s]=e=n.call(u.parentNode,i.__data__,s,a)),e.__data__=i.__data__):t.push(null)}return x(o)},ya.insert=function(n,t){return arguments.length<2&&(t=P(this)),da.insert.call(this,n,t)},da.transition=function(){for(var n,t,e=ks||++Ls,r=[],u=Es||{time:Date.now(),ease:yu,delay:0,duration:250},i=-1,o=this.length;++i<o;){r.push(n=[]);for(var a=this[i],c=-1,s=a.length;++c<s;)(t=a[c])&&jo(t,c,e,u),n.push(t)}return Do(r,e)},da.interrupt=function(){return this.each(U)},Xo.select=function(n){var t=["string"==typeof n?ha(n,Wo):n];return t.parentNode=Jo,x([t])},Xo.selectAll=function(n){var t=Bo("string"==typeof n?ga(n,Wo):n);return t.parentNode=Jo,x([t])};var xa=Xo.select(Jo);da.on=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(j(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(j(n,t,e))};var Ma=Xo.map({mouseenter:"mouseover",mouseleave:"mouseout"});Ma.forEach(function(n){"on"+n in Wo&&Ma.remove(n)});var _a="onselectstart"in Wo?null:h(Jo.style,"userSelect"),ba=0;Xo.mouse=function(n){return Y(n,m())};var wa=/WebKit/.test(Go.navigator.userAgent)?-1:0;Xo.touches=function(n,t){return arguments.length<2&&(t=m().touches),t?Bo(t).map(function(t){var e=Y(n,t);return e.identifier=t.identifier,e}):[]},Xo.behavior.drag=function(){function n(){this.on("mousedown.drag",o).on("touchstart.drag",a)}function t(){return Xo.event.changedTouches[0].identifier}function e(n,t){return Xo.touches(n).filter(function(n){return n.identifier===t})[0]}function r(n,t,e,r){return function(){function o(){var n=t(l,g),e=n[0]-v[0],r=n[1]-v[1];d|=e|r,v=n,f({type:"drag",x:n[0]+c[0],y:n[1]+c[1],dx:e,dy:r})}function a(){m.on(e+"."+p,null).on(r+"."+p,null),y(d&&Xo.event.target===h),f({type:"dragend"})}var c,s=this,l=s.parentNode,f=u.of(s,arguments),h=Xo.event.target,g=n(),p=null==g?"drag":"drag-"+g,v=t(l,g),d=0,m=Xo.select(Go).on(e+"."+p,o).on(r+"."+p,a),y=O();i?(c=i.apply(s,arguments),c=[c.x-v[0],c.y-v[1]]):c=[0,0],f({type:"dragstart"})}}var u=y(n,"drag","dragstart","dragend"),i=null,o=r(g,Xo.mouse,"mousemove","mouseup"),a=r(t,e,"touchmove","touchend");return n.origin=function(t){return arguments.length?(i=t,n):i},Xo.rebind(n,u,"on")};var Sa=Math.PI,ka=2*Sa,Ea=Sa/2,Aa=1e-6,Ca=Aa*Aa,Na=Sa/180,La=180/Sa,Ta=Math.SQRT2,qa=2,za=4;Xo.interpolateZoom=function(n,t){function e(n){var t=n*y;if(m){var e=B(v),o=i/(qa*h)*(e*W(Ta*t+v)-$(v));return[r+o*s,u+o*l,i*e/B(Ta*t+v)]}return[r+n*s,u+n*l,i*Math.exp(Ta*t)]}var r=n[0],u=n[1],i=n[2],o=t[0],a=t[1],c=t[2],s=o-r,l=a-u,f=s*s+l*l,h=Math.sqrt(f),g=(c*c-i*i+za*f)/(2*i*qa*h),p=(c*c-i*i-za*f)/(2*c*qa*h),v=Math.log(Math.sqrt(g*g+1)-g),d=Math.log(Math.sqrt(p*p+1)-p),m=d-v,y=(m||Math.log(c/i))/Ta;return e.duration=1e3*y,e},Xo.behavior.zoom=function(){function n(n){n.on(A,s).on(Pa+".zoom",f).on(C,h).on("dblclick.zoom",g).on(L,l)}function t(n){return[(n[0]-S.x)/S.k,(n[1]-S.y)/S.k]}function e(n){return[n[0]*S.k+S.x,n[1]*S.k+S.y]}function r(n){S.k=Math.max(E[0],Math.min(E[1],n))}function u(n,t){t=e(t),S.x+=n[0]-t[0],S.y+=n[1]-t[1]}function i(){_&&_.domain(M.range().map(function(n){return(n-S.x)/S.k}).map(M.invert)),w&&w.domain(b.range().map(function(n){return(n-S.y)/S.k}).map(b.invert))}function o(n){n({type:"zoomstart"})}function a(n){i(),n({type:"zoom",scale:S.k,translate:[S.x,S.y]})}function c(n){n({type:"zoomend"})}function s(){function n(){l=1,u(Xo.mouse(r),g),a(i)}function e(){f.on(C,Go===r?h:null).on(N,null),p(l&&Xo.event.target===s),c(i)}var r=this,i=T.of(r,arguments),s=Xo.event.target,l=0,f=Xo.select(Go).on(C,n).on(N,e),g=t(Xo.mouse(r)),p=O();U.call(r),o(i)}function l(){function n(){var n=Xo.touches(g);return h=S.k,n.forEach(function(n){n.identifier in v&&(v[n.identifier]=t(n))}),n}function e(){for(var t=Xo.event.changedTouches,e=0,i=t.length;i>e;++e)v[t[e].identifier]=null;var o=n(),c=Date.now();if(1===o.length){if(500>c-x){var s=o[0],l=v[s.identifier];r(2*S.k),u(s,l),d(),a(p)}x=c}else if(o.length>1){var s=o[0],f=o[1],h=s[0]-f[0],g=s[1]-f[1];m=h*h+g*g}}function i(){for(var n,t,e,i,o=Xo.touches(g),c=0,s=o.length;s>c;++c,i=null)if(e=o[c],i=v[e.identifier]){if(t)break;n=e,t=i}if(i){var l=(l=e[0]-n[0])*l+(l=e[1]-n[1])*l,f=m&&Math.sqrt(l/m);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+i[0])/2,(t[1]+i[1])/2],r(f*h)}x=null,u(n,t),a(p)}function f(){if(Xo.event.touches.length){for(var t=Xo.event.changedTouches,e=0,r=t.length;r>e;++e)delete v[t[e].identifier];for(var u in v)return void n()}b.on(M,null).on(_,null),w.on(A,s).on(L,l),k(),c(p)}var h,g=this,p=T.of(g,arguments),v={},m=0,y=Xo.event.changedTouches[0].identifier,M="touchmove.zoom-"+y,_="touchend.zoom-"+y,b=Xo.select(Go).on(M,i).on(_,f),w=Xo.select(g).on(A,null).on(L,e),k=O();U.call(g),e(),o(p)}function f(){var n=T.of(this,arguments);m?clearTimeout(m):(U.call(this),o(n)),m=setTimeout(function(){m=null,c(n)},50),d();var e=v||Xo.mouse(this);p||(p=t(e)),r(Math.pow(2,.002*Ra())*S.k),u(e,p),a(n)}function h(){p=null}function g(){var n=T.of(this,arguments),e=Xo.mouse(this),i=t(e),s=Math.log(S.k)/Math.LN2;o(n),r(Math.pow(2,Xo.event.shiftKey?Math.ceil(s)-1:Math.floor(s)+1)),u(e,i),a(n),c(n)}var p,v,m,x,M,_,b,w,S={x:0,y:0,k:1},k=[960,500],E=Da,A="mousedown.zoom",C="mousemove.zoom",N="mouseup.zoom",L="touchstart.zoom",T=y(n,"zoomstart","zoom","zoomend");return n.event=function(n){n.each(function(){var n=T.of(this,arguments),t=S;ks?Xo.select(this).transition().each("start.zoom",function(){S=this.__chart__||{x:0,y:0,k:1},o(n)}).tween("zoom:zoom",function(){var e=k[0],r=k[1],u=e/2,i=r/2,o=Xo.interpolateZoom([(u-S.x)/S.k,(i-S.y)/S.k,e/S.k],[(u-t.x)/t.k,(i-t.y)/t.k,e/t.k]);return function(t){var r=o(t),c=e/r[2];this.__chart__=S={x:u-r[0]*c,y:i-r[1]*c,k:c},a(n)}}).each("end.zoom",function(){c(n)}):(this.__chart__=S,o(n),a(n),c(n))})},n.translate=function(t){return arguments.length?(S={x:+t[0],y:+t[1],k:S.k},i(),n):[S.x,S.y]},n.scale=function(t){return arguments.length?(S={x:S.x,y:S.y,k:+t},i(),n):S.k},n.scaleExtent=function(t){return arguments.length?(E=null==t?Da:[+t[0],+t[1]],n):E},n.center=function(t){return arguments.length?(v=t&&[+t[0],+t[1]],n):v},n.size=function(t){return arguments.length?(k=t&&[+t[0],+t[1]],n):k},n.x=function(t){return arguments.length?(_=t,M=t.copy(),S={x:0,y:0,k:1},n):_},n.y=function(t){return arguments.length?(w=t,b=t.copy(),S={x:0,y:0,k:1},n):w},Xo.rebind(n,T,"on")};var Ra,Da=[0,1/0],Pa="onwheel"in Wo?(Ra=function(){return-Xo.event.deltaY*(Xo.event.deltaMode?120:1)},"wheel"):"onmousewheel"in Wo?(Ra=function(){return Xo.event.wheelDelta},"mousewheel"):(Ra=function(){return-Xo.event.detail},"MozMousePixelScroll");G.prototype.toString=function(){return this.rgb()+""},Xo.hsl=function(n,t,e){return 1===arguments.length?n instanceof Q?K(n.h,n.s,n.l):dt(""+n,mt,K):K(+n,+t,+e)};var Ua=Q.prototype=new G;Ua.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),K(this.h,this.s,this.l/n)},Ua.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),K(this.h,this.s,n*this.l)},Ua.rgb=function(){return nt(this.h,this.s,this.l)},Xo.hcl=function(n,t,e){return 1===arguments.length?n instanceof et?tt(n.h,n.c,n.l):n instanceof it?at(n.l,n.a,n.b):at((n=yt((n=Xo.rgb(n)).r,n.g,n.b)).l,n.a,n.b):tt(+n,+t,+e)};var ja=et.prototype=new G;ja.brighter=function(n){return tt(this.h,this.c,Math.min(100,this.l+Ha*(arguments.length?n:1)))},ja.darker=function(n){return tt(this.h,this.c,Math.max(0,this.l-Ha*(arguments.length?n:1)))},ja.rgb=function(){return rt(this.h,this.c,this.l).rgb()},Xo.lab=function(n,t,e){return 1===arguments.length?n instanceof it?ut(n.l,n.a,n.b):n instanceof et?rt(n.l,n.c,n.h):yt((n=Xo.rgb(n)).r,n.g,n.b):ut(+n,+t,+e)};var Ha=18,Fa=.95047,Oa=1,Ya=1.08883,Ia=it.prototype=new G;Ia.brighter=function(n){return ut(Math.min(100,this.l+Ha*(arguments.length?n:1)),this.a,this.b)},Ia.darker=function(n){return ut(Math.max(0,this.l-Ha*(arguments.length?n:1)),this.a,this.b)},Ia.rgb=function(){return ot(this.l,this.a,this.b)},Xo.rgb=function(n,t,e){return 1===arguments.length?n instanceof pt?gt(n.r,n.g,n.b):dt(""+n,gt,nt):gt(~~n,~~t,~~e)};var Za=pt.prototype=new G;Za.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,u=30;return t||e||r?(t&&u>t&&(t=u),e&&u>e&&(e=u),r&&u>r&&(r=u),gt(Math.min(255,~~(t/n)),Math.min(255,~~(e/n)),Math.min(255,~~(r/n)))):gt(u,u,u)},Za.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),gt(~~(n*this.r),~~(n*this.g),~~(n*this.b))},Za.hsl=function(){return mt(this.r,this.g,this.b)},Za.toString=function(){return"#"+vt(this.r)+vt(this.g)+vt(this.b)};var Va=Xo.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});Va.forEach(function(n,t){Va.set(n,ft(t))}),Xo.functor=_t,Xo.xhr=wt(bt),Xo.dsv=function(n,t){function e(n,e,i){arguments.length<3&&(i=e,e=null);var o=St(n,t,null==e?r:u(e),i);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:u(n)):e},o}function r(n){return e.parse(n.responseText)}function u(n){return function(t){return e.parse(t.responseText,n)}}function i(t){return t.map(o).join(n)}function o(n){return a.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var a=new RegExp('["'+n+"\n]"),c=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var u=new Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(u(n),e)}:u})},e.parseRows=function(n,t){function e(){if(l>=s)return o;if(u)return u=!1,i;var t=l;if(34===n.charCodeAt(t)){for(var e=t;e++<s;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}l=e+2;var r=n.charCodeAt(e+1);return 13===r?(u=!0,10===n.charCodeAt(e+2)&&++l):10===r&&(u=!0),n.substring(t+1,e).replace(/""/g,'"')}for(;s>l;){var r=n.charCodeAt(l++),a=1;if(10===r)u=!0;else if(13===r)u=!0,10===n.charCodeAt(l)&&(++l,++a);else if(r!==c)continue;return n.substring(t,l-a)}return n.substring(t)}for(var r,u,i={},o={},a=[],s=n.length,l=0,f=0;(r=e())!==o;){for(var h=[];r!==i&&r!==o;)h.push(r),r=e();(!t||(h=t(h,f++)))&&a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new l,u=[];return t.forEach(function(n){for(var t in n)r.has(t)||u.push(r.add(t))}),[u.map(o).join(n)].concat(t.map(function(t){return u.map(function(n){return o(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(i).join("\n")},e},Xo.csv=Xo.dsv(",","text/csv"),Xo.tsv=Xo.dsv("	","text/tab-separated-values");var Xa,$a,Ba,Wa,Ja,Ga=Go[h(Go,"requestAnimationFrame")]||function(n){setTimeout(n,17)};Xo.timer=function(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var u=e+t,i={c:n,t:u,f:!1,n:null};$a?$a.n=i:Xa=i,$a=i,Ba||(Wa=clearTimeout(Wa),Ba=1,Ga(Et))},Xo.timer.flush=function(){At(),Ct()},Xo.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)};var Ka=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"].map(Lt);Xo.formatPrefix=function(n,t){var e=0;return n&&(0>n&&(n*=-1),t&&(n=Xo.round(n,Nt(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((0>=e?e+1:e-1)/3)))),Ka[8+e/3]};var Qa=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,nc=Xo.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=Xo.round(n,Nt(n,t))).toFixed(Math.max(0,Math.min(20,Nt(n*(1+1e-15),t))))}}),tc=Xo.time={},ec=Date;zt.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){rc.setUTCDate.apply(this._,arguments)},setDay:function(){rc.setUTCDay.apply(this._,arguments)},setFullYear:function(){rc.setUTCFullYear.apply(this._,arguments)},setHours:function(){rc.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){rc.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){rc.setUTCMinutes.apply(this._,arguments)},setMonth:function(){rc.setUTCMonth.apply(this._,arguments)},setSeconds:function(){rc.setUTCSeconds.apply(this._,arguments)},setTime:function(){rc.setTime.apply(this._,arguments)}};var rc=Date.prototype;tc.year=Rt(function(n){return n=tc.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),tc.years=tc.year.range,tc.years.utc=tc.year.utc.range,tc.day=Rt(function(n){var t=new ec(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),tc.days=tc.day.range,tc.days.utc=tc.day.utc.range,tc.dayOfYear=function(n){var t=tc.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},["sunday","monday","tuesday","wednesday","thursday","friday","saturday"].forEach(function(n,t){t=7-t;var e=tc[n]=Rt(function(n){return(n=tc.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=tc.year(n).getDay();return Math.floor((tc.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});tc[n+"s"]=e.range,tc[n+"s"].utc=e.utc.range,tc[n+"OfYear"]=function(n){var e=tc.year(n).getDay();return Math.floor((tc.dayOfYear(n)+(e+t)%7)/7)}}),tc.week=tc.sunday,tc.weeks=tc.sunday.range,tc.weeks.utc=tc.sunday.utc.range,tc.weekOfYear=tc.sundayOfYear;var uc={"-":"",_:" ",0:"0"},ic=/^\s*\d+/,oc=/^%/;Xo.locale=function(n){return{numberFormat:Tt(n),timeFormat:Pt(n)}};var ac=Xo.locale({decimal:".",thousands:",",grouping:[3],currency:["$",""],dateTime:"%a %b %e %X %Y",date:"%m/%d/%Y",time:"%H:%M:%S",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});Xo.format=ac.numberFormat,Xo.geo={},re.prototype={s:0,t:0,add:function(n){ue(n,this.t,cc),ue(cc.s,this.s,this),this.s?this.t+=cc.t:this.s=cc.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var cc=new re;Xo.geo.stream=function(n,t){n&&sc.hasOwnProperty(n.type)?sc[n.type](n,t):ie(n,t)};var sc={Feature:function(n,t){ie(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,u=e.length;++r<u;)ie(e[r].geometry,t)}},lc={Sphere:function(n,t){t.sphere()},Point:function(n,t){n=n.coordinates,t.point(n[0],n[1],n[2])},MultiPoint:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)n=e[r],t.point(n[0],n[1],n[2])},LineString:function(n,t){oe(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)oe(e[r],t,0)},Polygon:function(n,t){ae(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)ae(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,u=e.length;++r<u;)ie(e[r],t)}};Xo.geo.area=function(n){return fc=0,Xo.geo.stream(n,gc),fc};var fc,hc=new re,gc={sphere:function(){fc+=4*Sa},point:g,lineStart:g,lineEnd:g,polygonStart:function(){hc.reset(),gc.lineStart=ce},polygonEnd:function(){var n=2*hc;fc+=0>n?4*Sa+n:n,gc.lineStart=gc.lineEnd=gc.point=g}};Xo.geo.bounds=function(){function n(n,t){x.push(M=[l=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=se([t*Na,e*Na]);if(m){var u=fe(m,r),i=[u[1],-u[0],0],o=fe(i,u);pe(o),o=ve(o);var c=t-p,s=c>0?1:-1,v=o[0]*La*s,d=oa(c)>180;if(d^(v>s*p&&s*t>v)){var y=o[1]*La;y>g&&(g=y)}else if(v=(v+360)%360-180,d^(v>s*p&&s*t>v)){var y=-o[1]*La;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);d?p>t?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t):h>=l?(l>t&&(l=t),t>h&&(h=t)):t>p?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t)}else n(t,e);m=r,p=t}function e(){_.point=t}function r(){M[0]=l,M[1]=h,_.point=n,m=null}function u(n,e){if(m){var r=n-p;y+=oa(r)>180?r+(r>0?360:-360):r}else v=n,d=e;gc.point(n,e),t(n,e)}function i(){gc.lineStart()}function o(){u(v,d),gc.lineEnd(),oa(y)>Aa&&(l=-(h=180)),M[0]=l,M[1]=h,m=null}function a(n,t){return(t-=n)<0?t+360:t}function c(n,t){return n[0]-t[0]}function s(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var l,f,h,g,p,v,d,m,y,x,M,_={point:n,lineStart:e,lineEnd:r,polygonStart:function(){_.point=u,_.lineStart=i,_.lineEnd=o,y=0,gc.polygonStart()},polygonEnd:function(){gc.polygonEnd(),_.point=n,_.lineStart=e,_.lineEnd=r,0>hc?(l=-(h=180),f=-(g=90)):y>Aa?g=90:-Aa>y&&(f=-90),M[0]=l,M[1]=h}};return function(n){g=h=-(l=f=1/0),x=[],Xo.geo.stream(n,_);var t=x.length;if(t){x.sort(c);for(var e,r=1,u=x[0],i=[u];t>r;++r)e=x[r],s(e[0],u)||s(e[1],u)?(a(u[0],e[1])>a(u[0],u[1])&&(u[1]=e[1]),a(e[0],u[1])>a(u[0],u[1])&&(u[0]=e[0])):i.push(u=e);for(var o,e,p=-1/0,t=i.length-1,r=0,u=i[t];t>=r;u=e,++r)e=i[r],(o=a(u[1],e[0]))>p&&(p=o,l=e[0],h=u[1])}return x=M=null,1/0===l||1/0===f?[[0/0,0/0],[0/0,0/0]]:[[l,f],[h,g]]}}(),Xo.geo.centroid=function(n){pc=vc=dc=mc=yc=xc=Mc=_c=bc=wc=Sc=0,Xo.geo.stream(n,kc);var t=bc,e=wc,r=Sc,u=t*t+e*e+r*r;return Ca>u&&(t=xc,e=Mc,r=_c,Aa>vc&&(t=dc,e=mc,r=yc),u=t*t+e*e+r*r,Ca>u)?[0/0,0/0]:[Math.atan2(e,t)*La,X(r/Math.sqrt(u))*La]};var pc,vc,dc,mc,yc,xc,Mc,_c,bc,wc,Sc,kc={sphere:g,point:me,lineStart:xe,lineEnd:Me,polygonStart:function(){kc.lineStart=_e},polygonEnd:function(){kc.lineStart=xe}},Ec=Ee(be,Te,ze,[-Sa,-Sa/2]),Ac=1e9;Xo.geo.clipExtent=function(){var n,t,e,r,u,i,o={stream:function(n){return u&&(u.valid=!1),u=i(n),u.valid=!0,u},extent:function(a){return arguments.length?(i=Pe(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),u&&(u.valid=!1,u=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(Xo.geo.conicEqualArea=function(){return je(They)}).raw=They,Xo.geo.albers=function(){return Xo.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},Xo.geo.albersUsa=function(){function n(n){var i=n[0],o=n[1];return t=null,e(i,o),t||(r(i,o),t)||u(i,o),t}var t,e,r,u,i=Xo.geo.albers(),o=Xo.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=Xo.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=i.scale(),e=i.translate(),r=(n[0]-e[0])/t,u=(n[1]-e[1])/t;return(u>=.12&&.234>u&&r>=-.425&&-.214>r?o:u>=.166&&.234>u&&r>=-.214&&-.115>r?a:i).invert(n)},n.stream=function(n){var t=i.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,u){t.point(n,u),e.point(n,u),r.point(n,u)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),a.precision(t),n):i.precision()},n.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),a.scale(t),n.translate(i.translate())):i.scale()},n.translate=function(t){if(!arguments.length)return i.translate();var s=i.scale(),l=+t[0],f=+t[1];return e=i.translate(t).clipExtent([[l-.455*s,f-.238*s],[l+.455*s,f+.238*s]]).stream(c).point,r=o.translate([l-.307*s,f+.201*s]).clipExtent([[l-.425*s+Aa,f+.12*s+Aa],[l-.214*s-Aa,f+.234*s-Aa]]).stream(c).point,u=a.translate([l-.205*s,f+.212*s]).clipExtent([[l-.214*s+Aa,f+.166*s+Aa],[l-.115*s-Aa,f+.234*s-Aa]]).stream(c).point,n},n.scale(1070)};var Cc,Nc,Lc,Tc,qc,zc,Rc={point:g,lineStart:g,lineEnd:g,polygonStart:function(){Nc=0,Rc.lineStart=Fe},polygonEnd:function(){Rc.lineStart=Rc.lineEnd=Rc.point=g,Cc+=oa(Nc/2)}},Dc={point:Oe,lineStart:g,lineEnd:g,polygonStart:g,polygonEnd:g},Pc={point:Ze,lineStart:Ve,lineEnd:Xe,polygonStart:function(){Pc.lineStart=$e},polygonEnd:function(){Pc.point=Ze,Pc.lineStart=Ve,Pc.lineEnd=Xe}};Xo.geo.path=function(){function n(n){return n&&("function"==typeof a&&i.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=u(i)),Xo.geo.stream(n,o)),i.result()}function t(){return o=null,n}var e,r,u,i,o,a=4.5;return n.area=function(n){return Cc=0,Xo.geo.stream(n,u(Rc)),Cc},n.centroid=function(n){return dc=mc=yc=xc=Mc=_c=bc=wc=Sc=0,Xo.geo.stream(n,u(Pc)),Sc?[bc/Sc,wc/Sc]:_c?[xc/_c,Mc/_c]:yc?[dc/yc,mc/yc]:[0/0,0/0]},n.bounds=function(n){return qc=zc=-(Lc=Tc=1/0),Xo.geo.stream(n,u(Dc)),[[Lc,Tc],[qc,zc]]},n.projection=function(n){return arguments.length?(u=(e=n)?n.stream||Je(n):bt,t()):e},n.context=function(n){return arguments.length?(i=null==(r=n)?new Ye:new Be(n),"function"!=typeof a&&i.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a="function"==typeof t?t:(i.pointRadius(+t),+t),n):a},n.projection(Xo.geo.albersUsa()).context(null)},Xo.geo.transform=function(n){return{stream:function(t){var e=new Ge(t);for(var r in n)e[r]=n[r];return e}}},Ge.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},Xo.geo.projection=Qe,Xo.geo.projectionMutator=nr,(Xo.geo.equirectangular=function(){return Qe(er)}).raw=er.invert=er,Xo.geo.rotation=function(n){function t(t){return t=n(t[0]*Na,t[1]*Na),t[0]*=La,t[1]*=La,t}return n=ur(n[0]%360*Na,n[1]*Na,n.length>2?n[2]*Na:0),t.invert=function(t){return t=n.invert(t[0]*Na,t[1]*Na),t[0]*=La,t[1]*=La,t},t},rr.invert=er,Xo.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=ur(-n[0]*Na,-n[1]*Na,0).invert,u=[];return e(null,null,1,{point:function(n,e){u.push(n=t(n,e)),n[0]*=La,n[1]*=La}}),{type:"Polygon",coordinates:[u]}}var t,e,r=[0,0],u=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=cr((t=+r)*Na,u*Na),n):t},n.precision=function(r){return arguments.length?(e=cr(t*Na,(u=+r)*Na),n):u},n.angle(90)},Xo.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Na,u=n[1]*Na,i=t[1]*Na,o=Math.sin(r),a=Math.cos(r),c=Math.sin(u),s=Math.cos(u),l=Math.sin(i),f=Math.cos(i);return Math.atan2(Math.sqrt((e=f*o)*e+(e=s*l-c*f*a)*e),c*l+s*f*a)},Xo.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return Xo.range(Math.ceil(i/d)*d,u,d).map(h).concat(Xo.range(Math.ceil(s/m)*m,c,m).map(g)).concat(Xo.range(Math.ceil(r/p)*p,e,p).filter(function(n){return oa(n%d)>Aa}).map(l)).concat(Xo.range(Math.ceil(a/v)*v,o,v).filter(function(n){return oa(n%m)>Aa}).map(f))}var e,r,u,i,o,a,c,s,l,f,h,g,p=10,v=p,d=90,m=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(i).concat(g(c).slice(1),h(u).reverse().slice(1),g(s).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(i=+t[0][0],u=+t[1][0],s=+t[0][1],c=+t[1][1],i>u&&(t=i,i=u,u=t),s>c&&(t=s,s=c,c=t),n.precision(y)):[[i,s],[u,c]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(y)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(d=+t[0],m=+t[1],n):[d,m]},n.minorStep=function(t){return arguments.length?(p=+t[0],v=+t[1],n):[p,v]},n.precision=function(t){return arguments.length?(y=+t,l=lr(a,o,90),f=fr(r,e,y),h=lr(s,c,90),g=fr(i,u,y),n):y},n.majorExtent([[-180,-90+Aa],[180,90-Aa]]).minorExtent([[-180,-80-Aa],[180,80+Aa]])},Xo.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||u.apply(this,arguments)]}}var t,e,r=hr,u=gr;return n.distance=function(){return Xo.geo.distance(t||r.apply(this,arguments),e||u.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(u=t,e="function"==typeof t?null:t,n):u},n.precision=function(){return arguments.length?n:0},n},Xo.geo.interpolate=function(n,t){return pr(n[0]*Na,n[1]*Na,t[0]*Na,t[1]*Na)},Xo.geo.length=function(n){return Uc=0,Xo.geo.stream(n,jc),Uc};var Uc,jc={sphere:g,point:g,lineStart:vr,lineEnd:g,polygonStart:g,polygonEnd:g},Hc=dr(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(Xo.geo.azimuthalEqualArea=function(){return Qe(Hc)}).raw=Hc;var Fc=dr(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},bt);(Xo.geo.azimuthalEquidistant=function(){return Qe(Fc)}).raw=Fc,(Xo.geo.conicConformal=function(){return je(mr)}).raw=mr,(Xo.geo.conicEquidistant=function(){return je(yr)}).raw=yr;var Oc=dr(function(n){return 1/n},Math.atan);(Xo.geo.gnomonic=function(){return Qe(Oc)}).raw=Oc,xr.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Ea]},(Xo.geo.mercator=function(){return Mr(xr)}).raw=xr;var Yc=dr(function(){return 1},Math.asin);(Xo.geo.orthographic=function(){return Qe(Yc)}).raw=Yc;var Ic=dr(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(Xo.geo.stereographic=function(){return Qe(Ic)}).raw=Ic,_r.invert=function(n,t){return[-t,2*Math.atan(Math.exp(n))-Ea]},(Xo.geo.transverseMercator=function(){var n=Mr(_r),t=n.center,e=n.rotate;return n.center=function(n){return n?t([-n[1],n[0]]):(n=t(),[-n[1],n[0]])},n.rotate=function(n){return n?e([n[0],n[1],n.length>2?n[2]+90:90]):(n=e(),[n[0],n[1],n[2]-90])},n.rotate([0,0])}).raw=_r,Xo.geom={},Xo.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,u=_t(e),i=_t(r),o=n.length,a=[],c=[];for(t=0;o>t;t++)a.push([+u.call(this,n[t],t),+i.call(this,n[t],t),t]);for(a.sort(kr),t=0;o>t;t++)c.push([a[t][0],-a[t][1]]);var s=Sr(a),l=Sr(c),f=l[0]===s[0],h=l[l.length-1]===s[s.length-1],g=[];for(t=s.length-1;t>=0;--t)g.push(n[a[s[t]][2]]);for(t=+f;t<l.length-h;++t)g.push(n[a[l[t]][2]]);return g}var e=br,r=wr;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},Xo.geom.polygon=function(n){return fa(n,Zc),n};var Zc=Xo.geom.polygon.prototype=[];Zc.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],u=0;++t<e;)n=r,r=this[t],u+=n[1]*r[0]-n[0]*r[1];return.5*u},Zc.centroid=function(n){var t,e,r=-1,u=this.length,i=0,o=0,a=this[u-1];for(arguments.length||(n=-1/(6*this.area()));++r<u;)t=a,a=this[r],e=t[0]*a[1]-a[0]*t[1],i+=(t[0]+a[0])*e,o+=(t[1]+a[1])*e;return[i*n,o*n]},Zc.clip=function(n){for(var t,e,r,u,i,o,a=Cr(n),c=-1,s=this.length-Cr(this),l=this[s-1];++c<s;){for(t=n.slice(),n.length=0,u=this[c],i=t[(r=t.length-a)-1],e=-1;++e<r;)o=t[e],Er(o,l,u)?(Er(i,l,u)||n.push(Ar(i,o,l,u)),n.push(o)):Er(i,l,u)&&n.push(Ar(i,o,l,u)),i=o;a&&n.push(n[0]),l=u}return n};var Vc,Xc,$c,Bc,Wc,Jc=[],Gc=[];Pr.prototype.prepare=function(){for(var n,t=this.edges,e=t.length;e--;)n=t[e].edge,n.b&&n.a||t.splice(e,1);return t.sort(jr),t.length},Br.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},Wr.prototype={insert:function(n,t){var e,r,u;if(n){if(t.P=n,t.N=n.N,n.N&&(n.N.P=t),n.N=t,n.R){for(n=n.R;n.L;)n=n.L;n.L=t}else n.R=t;e=n}else this._?(n=Qr(this._),t.P=null,t.N=n,n.P=n.L=t,e=n):(t.P=t.N=null,this._=t,e=null);for(t.L=t.R=null,t.U=e,t.C=!0,n=t;e&&e.C;)r=e.U,e===r.L?(u=r.R,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.R&&(Gr(this,e),n=e,e=n.U),e.C=!1,r.C=!0,Kr(this,r))):(u=r.L,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.L&&(Kr(this,e),n=e,e=n.U),e.C=!1,r.C=!0,Gr(this,r))),e=n.U;this._.C=!1},remove:function(n){n.N&&(n.N.P=n.P),n.P&&(n.P.N=n.N),n.N=n.P=null;var t,e,r,u=n.U,i=n.L,o=n.R;if(e=i?o?Qr(o):i:o,u?u.L===n?u.L=e:u.R=e:this._=e,i&&o?(r=e.C,e.C=n.C,e.L=i,i.U=e,e!==o?(u=e.U,e.U=n.U,n=e.R,u.L=n,e.R=o,o.U=e):(e.U=u,u=e,n=e.R)):(r=n.C,n=e),n&&(n.U=u),!r){if(n&&n.C)return n.C=!1,void 0;do{if(n===this._)break;if(n===u.L){if(t=u.R,t.C&&(t.C=!1,u.C=!0,Gr(this,u),t=u.R),t.L&&t.L.C||t.R&&t.R.C){t.R&&t.R.C||(t.L.C=!1,t.C=!0,Kr(this,t),t=u.R),t.C=u.C,u.C=t.R.C=!1,Gr(this,u),n=this._;break}}else if(t=u.L,t.C&&(t.C=!1,u.C=!0,Kr(this,u),t=u.L),t.L&&t.L.C||t.R&&t.R.C){t.L&&t.L.C||(t.R.C=!1,t.C=!0,Gr(this,t),t=u.L),t.C=u.C,u.C=t.L.C=!1,Kr(this,u),n=this._;break}t.C=!0,n=u,u=u.U}while(!n.C);n&&(n.C=!1)}}},Xo.geom.voronoi=function(n){function t(n){var t=new Array(n.length),r=a[0][0],u=a[0][1],i=a[1][0],o=a[1][1];return nu(e(n),a).cells.forEach(function(e,a){var c=e.edges,s=e.site,l=t[a]=c.length?c.map(function(n){var t=n.start();return[t.x,t.y]}):s.x>=r&&s.x<=i&&s.y>=u&&s.y<=o?[[r,o],[i,o],[i,u],[r,u]]:[];l.point=n[a]}),t}function e(n){return n.map(function(n,t){return{x:Math.round(i(n,t)/Aa)*Aa,y:Math.round(o(n,t)/Aa)*Aa,i:t}})}var r=br,u=wr,i=r,o=u,a=Kc;return n?t(n):(t.links=function(n){return nu(e(n)).edges.filter(function(n){return n.l&&n.r}).map(function(t){return{source:n[t.l.i],target:n[t.r.i]}})},t.triangles=function(n){var t=[];return nu(e(n)).cells.forEach(function(e,r){for(var u,i,o=e.site,a=e.edges.sort(jr),c=-1,s=a.length,l=a[s-1].edge,f=l.l===o?l.r:l.l;++c<s;)u=l,i=f,l=a[c].edge,f=l.l===o?l.r:l.l,r<i.i&&r<f.i&&eu(o,i,f)<0&&t.push([n[r],n[i.i],n[f.i]])}),t},t.x=function(n){return arguments.length?(i=_t(r=n),t):r},t.y=function(n){return arguments.length?(o=_t(u=n),t):u},t.clipExtent=function(n){return arguments.length?(a=null==n?Kc:n,t):a===Kc?null:a},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):a===Kc?null:a&&a[1]},t)};var Kc=[[-1e6,-1e6],[1e6,1e6]];Xo.geom.delaunay=function(n){return Xo.geom.voronoi().triangles(n)},Xo.geom.quadtree=function(n,t,e,r,u){function i(n){function i(n,t,e,r,u,i,o,a){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var c=n.x,l=n.y;if(null!=c)if(oa(c-e)+oa(l-r)<.01)s(n,t,e,r,u,i,o,a);else{var f=n.point;n.x=n.y=n.point=null,s(n,f,c,l,u,i,o,a),s(n,t,e,r,u,i,o,a)}else n.x=e,n.y=r,n.point=t}else s(n,t,e,r,u,i,o,a)}function s(n,t,e,r,u,o,a,c){var s=.5*(u+a),l=.5*(o+c),f=e>=s,h=r>=l,g=(h<<1)+f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=iu()),f?u=s:a=s,h?o=l:c=l,i(n,t,e,r,u,o,a,c)}var l,f,h,g,p,v,d,m,y,x=_t(a),M=_t(c);if(null!=t)v=t,d=e,m=r,y=u;else if(m=y=-(v=d=1/0),f=[],h=[],p=n.length,o)for(g=0;p>g;++g)l=n[g],l.x<v&&(v=l.x),l.y<d&&(d=l.y),l.x>m&&(m=l.x),l.y>y&&(y=l.y),f.push(l.x),h.push(l.y);else for(g=0;p>g;++g){var _=+x(l=n[g],g),b=+M(l,g);v>_&&(v=_),d>b&&(d=b),_>m&&(m=_),b>y&&(y=b),f.push(_),h.push(b)}var w=m-v,S=y-d;w>S?y=d+w:m=v+S;var k=iu();if(k.add=function(n){i(k,n,+x(n,++g),+M(n,g),v,d,m,y)},k.visit=function(n){ou(n,k,v,d,m,y)},g=-1,null==t){for(;++g<p;)i(k,n[g],f[g],h[g],v,d,m,y);--g}else n.forEach(k.add);return f=h=n=l=null,k}var o,a=br,c=wr;return(o=arguments.length)?(a=ru,c=uu,3===o&&(u=e,r=t,e=t=0),i(n)):(i.x=function(n){return arguments.length?(a=n,i):a},i.y=function(n){return arguments.length?(c=n,i):c},i.extent=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],u=+n[1][1]),i):null==t?null:[[t,e],[r,u]]},i.size=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=e=0,r=+n[0],u=+n[1]),i):null==t?null:[r-t,u-e]},i)},Xo.interpolateRgb=au,Xo.interpolateObject=cu,Xo.interpolateNumber=su,Xo.interpolateString=lu;var Qc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g;Xo.interpolate=fu,Xo.interpolators=[function(n,t){var e=typeof t;return("string"===e?Va.has(t)||/^(#|rgb\(|hsl\()/.test(t)?au:lu:t instanceof G?au:"object"===e?Array.isArray(t)?hu:cu:su)(n,t)}],Xo.interpolateArray=hu;var ns=function(){return bt},ts=Xo.map({linear:ns,poly:xu,quad:function(){return du},cubic:function(){return mu},sin:function(){return Mu},exp:function(){return _u},circle:function(){return bu},elastic:wu,back:Su,bounce:function(){return ku}}),es=Xo.map({"in":bt,out:pu,"in-out":vu,"out-in":function(n){return vu(pu(n))}});Xo.ease=function(n){var t=n.indexOf("-"),e=t>=0?n.substring(0,t):n,r=t>=0?n.substring(t+1):"in";return e=ts.get(e)||ns,r=es.get(r)||bt,gu(r(e.apply(null,$o.call(arguments,1))))},Xo.interpolateHcl=Eu,Xo.interpolateHsl=Au,Xo.interpolateLab=Cu,Xo.interpolateRound=Nu,Xo.transform=function(n){var t=Wo.createElementNS(Xo.ns.prefix.svg,"g");return(Xo.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new Lu(e?e.matrix:rs)})(n)},Lu.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var rs={a:1,b:0,c:0,d:1,e:0,f:0};Xo.interpolateTransform=Ru,Xo.layout={},Xo.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++e<r;)t.push(Uu(n[e]));return t}},Xo.layout.chord=function(){function n(){var n,s,f,h,g,p={},v=[],d=Xo.range(i),m=[];for(e=[],r=[],n=0,h=-1;++h<i;){for(s=0,g=-1;++g<i;)s+=u[h][g];v.push(s),m.push(Xo.range(i)),n+=s}for(o&&d.sort(function(n,t){return o(v[n],v[t])}),a&&m.forEach(function(n,t){n.sort(function(n,e){return a(u[t][n],u[t][e])})}),n=(ka-l*i)/n,s=0,h=-1;++h<i;){for(f=s,g=-1;++g<i;){var y=d[h],x=m[y][g],M=u[y][x],_=s,b=s+=M*n;p[y+"-"+x]={index:y,subindex:x,startAngle:_,endAngle:b,value:M}}r[y]={index:y,startAngle:f,endAngle:s,value:(s-f)/n},s+=l}for(h=-1;++h<i;)for(g=h-1;++g<i;){var w=p[h+"-"+g],S=p[g+"-"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}c&&t()}function t(){e.sort(function(n,t){return c((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,u,i,o,a,c,s={},l=0;return s.matrix=function(n){return arguments.length?(i=(u=n)&&u.length,e=r=null,s):u},s.padding=function(n){return arguments.length?(l=n,e=r=null,s):l},s.sortGroups=function(n){return arguments.length?(o=n,e=r=null,s):o},s.sortSubgroups=function(n){return arguments.length?(a=n,e=null,s):a},s.sortChords=function(n){return arguments.length?(c=n,e&&t(),s):c},s.chords=function(){return e||n(),e},s.groups=function(){return r||n(),r},s},Xo.layout.force=function(){function n(n){return function(t,e,r,u){if(t.point!==n){var i=t.cx-n.x,o=t.cy-n.y,a=u-e,c=i*i+o*o;if(c>a*a/d){if(p>c){var s=t.charge/c;n.px-=i*s,n.py-=o*s}return!0}if(t.point&&c&&p>c){var s=t.pointCharge/c;n.px-=i*s,n.py-=o*s}}return!t.charge}}function t(n){n.px=Xo.event.x,n.py=Xo.event.y,a.resume()}var e,r,u,i,o,a={},c=Xo.dispatch("start","tick","end"),s=[1,1],l=.9,f=us,h=is,g=-30,p=os,v=.1,d=.64,m=[],y=[];return a.tick=function(){if((r*=.99)<.005)return c.end({type:"end",alpha:r=0}),!0;var t,e,a,f,h,p,d,x,M,_=m.length,b=y.length;for(e=0;b>e;++e)a=y[e],f=a.source,h=a.target,x=h.x-f.x,M=h.y-f.y,(p=x*x+M*M)&&(p=r*i[e]*((p=Math.sqrt(p))-u[e])/p,x*=p,M*=p,h.x-=x*(d=f.weight/(h.weight+f.weight)),h.y-=M*d,f.x+=x*(d=1-d),f.y+=M*d);if((d=r*v)&&(x=s[0]/2,M=s[1]/2,e=-1,d))for(;++e<_;)a=m[e],a.x+=(x-a.x)*d,a.y+=(M-a.y)*d;if(g)for(Zu(t=Xo.geom.quadtree(m),r,o),e=-1;++e<_;)(a=m[e]).fixed||t.visit(n(a));for(e=-1;++e<_;)a=m[e],a.fixed?(a.x=a.px,a.y=a.py):(a.x-=(a.px-(a.px=a.x))*l,a.y-=(a.py-(a.py=a.y))*l);c.tick({type:"tick",alpha:r})},a.nodes=function(n){return arguments.length?(m=n,a):m},a.links=function(n){return arguments.length?(y=n,a):y},a.size=function(n){return arguments.length?(s=n,a):s},a.linkDistance=function(n){return arguments.length?(f="function"==typeof n?n:+n,a):f},a.distance=a.linkDistance,a.linkStrength=function(n){return arguments.length?(h="function"==typeof n?n:+n,a):h},a.friction=function(n){return arguments.length?(l=+n,a):l},a.charge=function(n){return arguments.length?(g="function"==typeof n?n:+n,a):g},a.chargeDistance=function(n){return arguments.length?(p=n*n,a):Math.sqrt(p)},a.gravity=function(n){return arguments.length?(v=+n,a):v},a.theta=function(n){return arguments.length?(d=n*n,a):Math.sqrt(d)},a.alpha=function(n){return arguments.length?(n=+n,r?r=n>0?n:0:n>0&&(c.start({type:"start",alpha:r=n}),Xo.timer(a.tick)),a):r},a.start=function(){function n(n,r){if(!e){for(e=new Array(c),a=0;c>a;++a)e[a]=[];for(a=0;s>a;++a){var u=y[a];e[u.source.index].push(u.target),e[u.target.index].push(u.source)}}for(var i,o=e[t],a=-1,s=o.length;++a<s;)if(!isNaN(i=o[a][n]))return i;return Math.random()*r}var t,e,r,c=m.length,l=y.length,p=s[0],v=s[1];for(t=0;c>t;++t)(r=m[t]).index=t,r.weight=0;for(t=0;l>t;++t)r=y[t],"number"==typeof r.source&&(r.source=m[r.source]),"number"==typeof r.target&&(r.target=m[r.target]),++r.source.weight,++r.target.weight;for(t=0;c>t;++t)r=m[t],isNaN(r.x)&&(r.x=n("x",p)),isNaN(r.y)&&(r.y=n("y",v)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(u=[],"function"==typeof f)for(t=0;l>t;++t)u[t]=+f.call(this,y[t],t);else for(t=0;l>t;++t)u[t]=f;if(i=[],"function"==typeof h)for(t=0;l>t;++t)i[t]=+h.call(this,y[t],t);else for(t=0;l>t;++t)i[t]=h;if(o=[],"function"==typeof g)for(t=0;c>t;++t)o[t]=+g.call(this,m[t],t);else for(t=0;c>t;++t)o[t]=g;return a.resume()},a.resume=function(){return a.alpha(.1)},a.stop=function(){return a.alpha(0)},a.drag=function(){return e||(e=Xo.behavior.drag().origin(bt).on("dragstart.force",Fu).on("drag.force",t).on("dragend.force",Ou)),arguments.length?(this.on("mouseover.force",Yu).on("mouseout.force",Iu).call(e),void 0):e},Xo.rebind(a,c,"on")};var us=20,is=1,os=1/0;Xo.layout.hierarchy=function(){function n(t,o,a){var c=u.call(e,t,o);if(t.depth=o,a.push(t),c&&(s=c.length)){for(var s,l,f=-1,h=t.children=new Array(s),g=0,p=o+1;++f<s;)l=h[f]=n(c[f],p,a),l.parent=t,g+=l.value;r&&h.sort(r),i&&(t.value=g)}else delete t.children,i&&(t.value=+i.call(e,t,o)||0);return t}function t(n,r){var u=n.children,o=0;if(u&&(a=u.length))for(var a,c=-1,s=r+1;++c<a;)o+=t(u[c],s);else i&&(o=+i.call(e,n,r)||0);return i&&(n.value=o),o}function e(t){var e=[];return n(t,0,e),e}var r=Bu,u=Xu,i=$u;return e.sort=function(n){return arguments.length?(r=n,e):r},e.children=function(n){return arguments.length?(u=n,e):u},e.value=function(n){return arguments.length?(i=n,e):i},e.revalue=function(n){return t(n,0),n},e},Xo.layout.partition=function(){function n(t,e,r,u){var i=t.children;if(t.x=e,t.y=t.depth*u,t.dx=r,t.dy=u,i&&(o=i.length)){var o,a,c,s=-1;for(r=t.value?r/t.value:0;++s<o;)n(a=i[s],e,c=a.value*r,u),e+=c}}function t(n){var e=n.children,r=0;if(e&&(u=e.length))for(var u,i=-1;++i<u;)r=Math.max(r,t(e[i]));return 1+r}function e(e,i){var o=r.call(this,e,i);return n(o[0],0,u[0],u[1]/t(o[0])),o}var r=Xo.layout.hierarchy(),u=[1,1];return e.size=function(n){return arguments.length?(u=n,e):u},Vu(e,r)},Xo.layout.pie=function(){function n(i){var o=i.map(function(e,r){return+t.call(n,e,r)}),a=+("function"==typeof r?r.apply(this,arguments):r),c=(("function"==typeof u?u.apply(this,arguments):u)-a)/Xo.sum(o),s=Xo.range(i.length);null!=e&&s.sort(e===as?function(n,t){return o[t]-o[n]}:function(n,t){return e(i[n],i[t])});var l=[];return s.forEach(function(n){var t;l[n]={data:i[n],value:t=o[n],startAngle:a,endAngle:a+=t*c}}),l}var t=Number,e=as,r=0,u=ka;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(u=t,n):u},n};var as={};Xo.layout.stack=function(){function n(a,c){var s=a.map(function(e,r){return t.call(n,e,r)}),l=s.map(function(t){return t.map(function(t,e){return[i.call(n,t,e),o.call(n,t,e)]})}),f=e.call(n,l,c);s=Xo.permute(s,f),l=Xo.permute(l,f);var h,g,p,v=r.call(n,l,c),d=s.length,m=s[0].length;for(g=0;m>g;++g)for(u.call(n,s[0][g],p=v[g],l[0][g][1]),h=1;d>h;++h)u.call(n,s[h][g],p+=l[h-1][g][1],l[h][g][1]);return a}var t=bt,e=Qu,r=ni,u=Ku,i=Ju,o=Gu;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:cs.get(t)||Qu,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:ss.get(t)||ni,n):r},n.x=function(t){return arguments.length?(i=t,n):i},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(u=t,n):u},n};var cs=Xo.map({"inside-out":function(n){var t,e,r=n.length,u=n.map(ti),i=n.map(ei),o=Xo.range(r).sort(function(n,t){return u[n]-u[t]}),a=0,c=0,s=[],l=[];for(t=0;r>t;++t)e=o[t],c>a?(a+=i[e],s.push(e)):(c+=i[e],l.push(e));return l.reverse().concat(s)},reverse:function(n){return Xo.range(n.length).reverse()},"default":Qu}),ss=Xo.map({silhouette:function(n){var t,e,r,u=n.length,i=n[0].length,o=[],a=0,c=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;i>e;++e)c[e]=(a-o[e])/2;return c},wiggle:function(n){var t,e,r,u,i,o,a,c,s,l=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=s=0,e=1;h>e;++e){for(t=0,u=0;l>t;++t)u+=n[t][e][1];for(t=0,i=0,a=f[e][0]-f[e-1][0];l>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;i+=o*n[t][e][1]}g[e]=c-=u?i/u*a:0,s>c&&(s=c)}for(e=0;h>e;++e)g[e]-=s;return g},expand:function(n){var t,e,r,u=n.length,i=n[0].length,o=1/u,a=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];if(r)for(t=0;u>t;t++)n[t][e][1]/=r;else for(t=0;u>t;t++)n[t][e][1]=o}for(e=0;i>e;++e)a[e]=0;return a},zero:ni});Xo.layout.histogram=function(){function n(n,i){for(var o,a,c=[],s=n.map(e,this),l=r.call(this,s,i),f=u.call(this,l,s,i),i=-1,h=s.length,g=f.length-1,p=t?1:1/h;++i<g;)o=c[i]=[],o.dx=f[i+1]-(o.x=f[i]),o.y=0;if(g>0)for(i=-1;++i<h;)a=s[i],a>=l[0]&&a<=l[1]&&(o=c[Xo.bisect(f,a,1,g)-1],o.y+=p,o.push(n[i]));return c}var t=!0,e=Number,r=oi,u=ui;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=_t(t),n):r},n.bins=function(t){return arguments.length?(u="number"==typeof t?function(n){return ii(n,t)}:_t(t),n):u},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},Xo.layout.tree=function(){function n(n,i){function o(n,t){var r=n.children,u=n._tree;if(r&&(i=r.length)){for(var i,a,s,l=r[0],f=l,h=-1;++h<i;)s=r[h],o(s,a),f=c(s,a,f),a=s;vi(n);var g=.5*(l._tree.prelim+s._tree.prelim);t?(u.prelim=t._tree.prelim+e(n,t),u.mod=u.prelim-g):u.prelim=g}else t&&(u.prelim=t._tree.prelim+e(n,t))}function a(n,t){n.x=n._tree.prelim+t;var e=n.children;if(e&&(r=e.length)){var r,u=-1;for(t+=n._tree.mod;++u<r;)a(e[u],t)}}function c(n,t,r){if(t){for(var u,i=n,o=n,a=t,c=n.parent.children[0],s=i._tree.mod,l=o._tree.mod,f=a._tree.mod,h=c._tree.mod;a=si(a),i=ci(i),a&&i;)c=ci(c),o=si(o),o._tree.ancestor=n,u=a._tree.prelim+f-i._tree.prelim-s+e(a,i),u>0&&(di(mi(a,n,r),n,u),s+=u,l+=u),f+=a._tree.mod,s+=i._tree.mod,h+=c._tree.mod,l+=o._tree.mod;a&&!si(o)&&(o._tree.thread=a,o._tree.mod+=f-l),i&&!ci(c)&&(c._tree.thread=i,c._tree.mod+=s-h,r=n)}return r}var s=t.call(this,n,i),l=s[0];pi(l,function(n,t){n._tree={ancestor:n,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),o(l),a(l,-l._tree.prelim);var f=li(l,hi),h=li(l,fi),g=li(l,gi),p=f.x-e(f,h)/2,v=h.x+e(h,f)/2,d=g.depth||1;return pi(l,u?function(n){n.x*=r[0],n.y=n.depth*r[1],delete n._tree}:function(n){n.x=(n.x-p)/(v-p)*r[0],n.y=n.depth/d*r[1],delete n._tree}),s}var t=Xo.layout.hierarchy().sort(null).value(null),e=ai,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Vu(n,t)},Xo.layout.pack=function(){function n(n,i){var o=e.call(this,n,i),a=o[0],c=u[0],s=u[1],l=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(a.x=a.y=0,pi(a,function(n){n.r=+l(n.value)}),pi(a,bi),r){var f=r*(t?1:Math.max(2*a.r/c,2*a.r/s))/2;pi(a,function(n){n.r+=f}),pi(a,bi),pi(a,function(n){n.r-=f})}return ki(a,c/2,s/2,t?1:1/Math.max(2*a.r/c,2*a.r/s)),o}var t,e=Xo.layout.hierarchy().sort(yi),r=0,u=[1,1];return n.size=function(t){return arguments.length?(u=t,n):u},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},Vu(n,e)},Xo.layout.cluster=function(){function n(n,i){var o,a=t.call(this,n,i),c=a[0],s=0;pi(c,function(n){var t=n.children;t&&t.length?(n.x=Ci(t),n.y=Ai(t)):(n.x=o?s+=e(n,o):0,n.y=0,o=n)});var l=Ni(c),f=Li(c),h=l.x-e(l,f)/2,g=f.x+e(f,l)/2;return pi(c,u?function(n){n.x=(n.x-c.x)*r[0],n.y=(c.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(c.y?n.y/c.y:1))*r[1]}),a}var t=Xo.layout.hierarchy().sort(null).value(null),e=ai,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Vu(n,t)},Xo.layout.treemap=function(){function n(n,t){for(var e,r,u=-1,i=n.length;++u<i;)r=(e=n[u]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var i=e.children;if(i&&i.length){var o,a,c,s=f(e),l=[],h=i.slice(),p=1/0,v="slice"===g?s.dx:"dice"===g?s.dy:"slice-dice"===g?1&e.depth?s.dy:s.dx:Math.min(s.dx,s.dy);for(n(h,s.dx*s.dy/e.value),l.area=0;(c=h.length)>0;)l.push(o=h[c-1]),l.area+=o.area,"squarify"!==g||(a=r(l,v))<=p?(h.pop(),p=a):(l.area-=l.pop().area,u(l,v,s,!1),v=Math.min(s.dx,s.dy),l.length=l.area=0,p=1/0);l.length&&(u(l,v,s,!0),l.length=l.area=0),i.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var i,o=f(t),a=r.slice(),c=[];for(n(a,o.dx*o.dy/t.value),c.area=0;i=a.pop();)c.push(i),c.area+=i.area,null!=i.z&&(u(c,i.z?o.dx:o.dy,o,!a.length),c.length=c.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,u=0,i=1/0,o=-1,a=n.length;++o<a;)(e=n[o].area)&&(i>e&&(i=e),e>u&&(u=e));return r*=r,t*=t,r?Math.max(t*u*p/r,r/(t*i*p)):1/0}function u(n,t,e,r){var u,i=-1,o=n.length,a=e.x,s=e.y,l=t?c(n.area/t):0;if(t==e.dx){for((r||l>e.dy)&&(l=e.dy);++i<o;)u=n[i],u.x=a,u.y=s,u.dy=l,a+=u.dx=Math.min(e.x+e.dx-a,l?c(u.area/l):0);u.z=!0,u.dx+=e.x+e.dx-a,e.y+=l,e.dy-=l}else{for((r||l>e.dx)&&(l=e.dx);++i<o;)u=n[i],u.x=a,u.y=s,u.dx=l,s+=u.dy=Math.min(e.y+e.dy-s,l?c(u.area/l):0);u.z=!1,u.dy+=e.y+e.dy-s,e.x+=l,e.dx-=l}}function i(r){var u=o||a(r),i=u[0];return i.x=0,i.y=0,i.dx=s[0],i.dy=s[1],o&&a.revalue(i),n([i],i.dx*i.dy/i.value),(o?e:t)(i),h&&(o=u),u}var o,a=Xo.layout.hierarchy(),c=Math.round,s=[1,1],l=null,f=Ti,h=!1,g="squarify",p=.5*(1+Math.sqrt(5));return i.size=function(n){return arguments.length?(s=n,i):s},i.padding=function(n){function t(t){var e=n.call(i,t,t.depth);return null==e?Ti(t):qi(t,"number"==typeof e?[e,e,e,e]:e)}function e(t){return qi(t,n)}if(!arguments.length)return l;var r;return f=null==(l=n)?Ti:"function"==(r=typeof n)?t:"number"===r?(n=[n,n,n,n],e):e,i},i.round=function(n){return arguments.length?(c=n?Math.round:Number,i):c!=Number},i.sticky=function(n){return arguments.length?(h=n,o=null,i):h},i.ratio=function(n){return arguments.length?(p=n,i):p},i.mode=function(n){return arguments.length?(g=n+"",i):g},Vu(i,a)},Xo.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,u;do e=2*Math.random()-1,r=2*Math.random()-1,u=e*e+r*r;while(!u||u>1);return n+t*e*Math.sqrt(-2*Math.log(u)/u)}},logNormal:function(){var n=Xo.random.normal.apply(Xo,arguments);return function(){return Math.exp(n())}},bates:function(n){var t=Xo.random.irwinHall(n);return function(){return t()/n}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t}}},Xo.scale={};var ls={floor:bt,ceil:bt};Xo.scale.linear=function(){return Hi([0,1],[0,1],fu,!1)};var fs={s:1,g:1,p:1,r:1,e:1};Xo.scale.log=function(){return $i(Xo.scale.linear().domain([0,1]),10,!0,[1,10])};var hs=Xo.format(".0e"),gs={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};Xo.scale.pow=function(){return Bi(Xo.scale.linear(),1,[0,1])},Xo.scale.sqrt=function(){return Xo.scale.pow().exponent(.5)},Xo.scale.ordinal=function(){return Ji([],{t:"range",a:[[]]})},Xo.scale.category10=function(){return Xo.scale.ordinal().range(ps)},Xo.scale.category20=function(){return Xo.scale.ordinal().range(vs)},Xo.scale.category20b=function(){return Xo.scale.ordinal().range(ds)},Xo.scale.category20c=function(){return Xo.scale.ordinal().range(ms)};var ps=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(ht),vs=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(ht),ds=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(ht),ms=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(ht);Xo.scale.quantile=function(){return Gi([],[])},Xo.scale.quantize=function(){return Ki(0,1,[0,1])},Xo.scale.threshold=function(){return Qi([.5],[0,1])},Xo.scale.identity=function(){return no([0,1])},Xo.svg={},Xo.svg.arc=function(){function n(){var n=t.apply(this,arguments),i=e.apply(this,arguments),o=r.apply(this,arguments)+ys,a=u.apply(this,arguments)+ys,c=(o>a&&(c=o,o=a,a=c),a-o),s=Sa>c?"0":"1",l=Math.cos(o),f=Math.sin(o),h=Math.cos(a),g=Math.sin(a);return c>=xs?n?"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"M0,"+n+"A"+n+","+n+" 0 1,0 0,"+-n+"A"+n+","+n+" 0 1,0 0,"+n+"Z":"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"Z":n?"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L"+n*h+","+n*g+"A"+n+","+n+" 0 "+s+",0 "+n*l+","+n*f+"Z":"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L0,0"+"Z"}var t=to,e=eo,r=ro,u=uo;return n.innerRadius=function(e){return arguments.length?(t=_t(e),n):t},n.outerRadius=function(t){return arguments.length?(e=_t(t),n):e},n.startAngle=function(t){return arguments.length?(r=_t(t),n):r},n.endAngle=function(t){return arguments.length?(u=_t(t),n):u},n.centroid=function(){var n=(t.apply(this,arguments)+e.apply(this,arguments))/2,i=(r.apply(this,arguments)+u.apply(this,arguments))/2+ys;return[Math.cos(i)*n,Math.sin(i)*n]},n};var ys=-Ea,xs=ka-Aa;Xo.svg.line=function(){return io(bt)};var Ms=Xo.map({linear:oo,"linear-closed":ao,step:co,"step-before":so,"step-after":lo,basis:mo,"basis-open":yo,"basis-closed":xo,bundle:Mo,cardinal:go,"cardinal-open":fo,"cardinal-closed":ho,monotone:Eo});Ms.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var _s=[0,2/3,1/3,0],bs=[0,1/3,2/3,0],ws=[0,1/6,2/3,1/6];Xo.svg.line.radial=function(){var n=io(Ao);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},so.reverse=lo,lo.reverse=so,Xo.svg.area=function(){return Co(bt)},Xo.svg.area.radial=function(){var n=Co(Ao);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},Xo.svg.chord=function(){function n(n,a){var c=t(this,i,n,a),s=t(this,o,n,a);return"M"+c.p0+r(c.r,c.p1,c.a1-c.a0)+(e(c,s)?u(c.r,c.p1,c.r,c.p0):u(c.r,c.p1,s.r,s.p0)+r(s.r,s.p1,s.a1-s.a0)+u(s.r,s.p1,c.r,c.p0))+"Z"}function t(n,t,e,r){var u=t.call(n,e,r),i=a.call(n,u,r),o=c.call(n,u,r)+ys,l=s.call(n,u,r)+ys;return{r:i,a0:o,a1:l,p0:[i*Math.cos(o),i*Math.sin(o)],p1:[i*Math.cos(l),i*Math.sin(l)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>Sa)+",1 "+t}function u(n,t,e,r){return"Q 0,0 "+r}var i=hr,o=gr,a=No,c=ro,s=uo;return n.radius=function(t){return arguments.length?(a=_t(t),n):a},n.source=function(t){return arguments.length?(i=_t(t),n):i},n.target=function(t){return arguments.length?(o=_t(t),n):o},n.startAngle=function(t){return arguments.length?(c=_t(t),n):c},n.endAngle=function(t){return arguments.length?(s=_t(t),n):s},n},Xo.svg.diagonal=function(){function n(n,u){var i=t.call(this,n,u),o=e.call(this,n,u),a=(i.y+o.y)/2,c=[i,{x:i.x,y:a},{x:o.x,y:a},o];return c=c.map(r),"M"+c[0]+"C"+c[1]+" "+c[2]+" "+c[3]}var t=hr,e=gr,r=Lo;return n.source=function(e){return arguments.length?(t=_t(e),n):t},n.target=function(t){return arguments.length?(e=_t(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},Xo.svg.diagonal.radial=function(){var n=Xo.svg.diagonal(),t=Lo,e=n.projection;return n.projection=function(n){return arguments.length?e(To(t=n)):t},n},Xo.svg.symbol=function(){function n(n,r){return(Ss.get(t.call(this,n,r))||Ro)(e.call(this,n,r))}var t=zo,e=qo;return n.type=function(e){return arguments.length?(t=_t(e),n):t},n.size=function(t){return arguments.length?(e=_t(t),n):e},n};var Ss=Xo.map({circle:Ro,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Cs)),e=t*Cs;return"M0,"+-t+"L"+e+",0"+" 0,"+t+" "+-e+",0"+"Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/As),e=t*As/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/As),e=t*As/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});Xo.svg.symbolTypes=Ss.keys();var ks,Es,As=Math.sqrt(3),Cs=Math.tan(30*Na),Ns=[],Ls=0;Ns.call=da.call,Ns.empty=da.empty,Ns.node=da.node,Ns.size=da.size,Xo.transition=function(n){return arguments.length?ks?n.transition():n:xa.transition()},Xo.transition.prototype=Ns,Ns.select=function(n){var t,e,r,u=this.id,i=[];n=M(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]);for(var c=this[o],s=-1,l=c.length;++s<l;)(r=c[s])&&(e=n.call(r,r.__data__,s,o))?("__data__"in r&&(e.__data__=r.__data__),jo(e,s,u,r.__transition__[u]),t.push(e)):t.push(null)}return Do(i,u)},Ns.selectAll=function(n){var t,e,r,u,i,o=this.id,a=[];n=_(n);for(var c=-1,s=this.length;++c<s;)for(var l=this[c],f=-1,h=l.length;++f<h;)if(r=l[f]){i=r.__transition__[o],e=n.call(r,r.__data__,f,c),a.push(t=[]);for(var g=-1,p=e.length;++g<p;)(u=e[g])&&jo(u,g,o,i),t.push(u)}return Do(a,o)},Ns.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=q(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]);for(var e=this[i],a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return Do(u,this.id)},Ns.tween=function(n,t){var e=this.id;return arguments.length<2?this.node().__transition__[e].tween.get(n):R(this,null==t?function(t){t.__transition__[e].tween.remove(n)}:function(r){r.__transition__[e].tween.set(n,t)})},Ns.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function u(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function i(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?Ru:fu,a=Xo.ns.qualify(n);return Po(this,"attr."+n,t,a.local?i:u)},Ns.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))}}var u=Xo.ns.qualify(n);return this.tween("attr."+n,u.local?r:e)},Ns.style=function(n,t,e){function r(){this.style.removeProperty(n)}function u(t){return null==t?r:(t+="",function(){var r,u=Go.getComputedStyle(this,null).getPropertyValue(n);return u!==t&&(r=fu(u,t),function(t){this.style.setProperty(n,r(t),e)})})}var i=arguments.length;if(3>i){if("string"!=typeof n){2>i&&(t="");for(e in n)this.style(e,n[e],t);return this}e=""}return Po(this,"style."+n,t,u)},Ns.styleTween=function(n,t,e){function r(r,u){var i=t.call(this,r,u,Go.getComputedStyle(this,null).getPropertyValue(n));return i&&function(t){this.style.setProperty(n,i(t),e)}}return arguments.length<3&&(e=""),this.tween("style."+n,r)},Ns.text=function(n){return Po(this,"text",n,Uo)},Ns.remove=function(){return this.each("end.transition",function(){var n;this.__transition__.count<2&&(n=this.parentNode)&&n.removeChild(this)})},Ns.ease=function(n){var t=this.id;return arguments.length<1?this.node().__transition__[t].ease:("function"!=typeof n&&(n=Xo.ease.apply(Xo,arguments)),R(this,function(e){e.__transition__[t].ease=n}))},Ns.delay=function(n){var t=this.id;return R(this,"function"==typeof n?function(e,r,u){e.__transition__[t].delay=+n.call(e,e.__data__,r,u)}:(n=+n,function(e){e.__transition__[t].delay=n}))},Ns.duration=function(n){var t=this.id;return R(this,"function"==typeof n?function(e,r,u){e.__transition__[t].duration=Math.max(1,n.call(e,e.__data__,r,u))}:(n=Math.max(1,n),function(e){e.__transition__[t].duration=n}))},Ns.each=function(n,t){var e=this.id;if(arguments.length<2){var r=Es,u=ks;ks=e,R(this,function(t,r,u){Es=t.__transition__[e],n.call(t,t.__data__,r,u)}),Es=r,ks=u}else R(this,function(r){var u=r.__transition__[e];(u.event||(u.event=Xo.dispatch("start","end"))).on(n,t)});return this},Ns.transition=function(){for(var n,t,e,r,u=this.id,i=++Ls,o=[],a=0,c=this.length;c>a;a++){o.push(n=[]);for(var t=this[a],s=0,l=t.length;l>s;s++)(e=t[s])&&(r=Object.create(e.__transition__[u]),r.delay+=r.duration,jo(e,s,i,r)),n.push(e)}return Do(o,i)},Xo.svg.axis=function(){function n(n){n.each(function(){var n,s=Xo.select(this),l=this.__chart__||e,f=this.__chart__=e.copy(),h=null==c?f.ticks?f.ticks.apply(f,a):f.domain():c,g=null==t?f.tickFormat?f.tickFormat.apply(f,a):bt:t,p=s.selectAll(".tick").data(h,f),v=p.enter().insert("g",".domain").attr("class","tick").style("opacity",Aa),d=Xo.transition(p.exit()).style("opacity",Aa).remove(),m=Xo.transition(p).style("opacity",1),y=Ri(f),x=s.selectAll(".domain").data([0]),M=(x.enter().append("path").attr("class","domain"),Xo.transition(x));v.append("line"),v.append("text");var _=v.select("line"),b=m.select("line"),w=p.select("text").text(g),S=v.select("text"),k=m.select("text");switch(r){case"bottom":n=Ho,_.attr("y2",u),S.attr("y",Math.max(u,0)+o),b.attr("x2",0).attr("y2",u),k.attr("x",0).attr("y",Math.max(u,0)+o),w.attr("dy",".71em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+i+"V0H"+y[1]+"V"+i);break;case"top":n=Ho,_.attr("y2",-u),S.attr("y",-(Math.max(u,0)+o)),b.attr("x2",0).attr("y2",-u),k.attr("x",0).attr("y",-(Math.max(u,0)+o)),w.attr("dy","0em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+-i+"V0H"+y[1]+"V"+-i);break;case"left":n=Fo,_.attr("x2",-u),S.attr("x",-(Math.max(u,0)+o)),b.attr("x2",-u).attr("y2",0),k.attr("x",-(Math.max(u,0)+o)).attr("y",0),w.attr("dy",".32em").style("text-anchor","end"),M.attr("d","M"+-i+","+y[0]+"H0V"+y[1]+"H"+-i);break;case"right":n=Fo,_.attr("x2",u),S.attr("x",Math.max(u,0)+o),b.attr("x2",u).attr("y2",0),k.attr("x",Math.max(u,0)+o).attr("y",0),w.attr("dy",".32em").style("text-anchor","start"),M.attr("d","M"+i+","+y[0]+"H0V"+y[1]+"H"+i)}if(f.rangeBand){var E=f,A=E.rangeBand()/2;l=f=function(n){return E(n)+A}}else l.rangeBand?l=f:d.call(n,f);v.call(n,l),m.call(n,f)})}var t,e=Xo.scale.linear(),r=Ts,u=6,i=6,o=3,a=[10],c=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in qs?t+"":Ts,n):r},n.ticks=function(){return arguments.length?(a=arguments,n):a},n.tickValues=function(t){return arguments.length?(c=t,n):c},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(u=+t,i=+arguments[e-1],n):u},n.innerTickSize=function(t){return arguments.length?(u=+t,n):u},n.outerTickSize=function(t){return arguments.length?(i=+t,n):i},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Ts="bottom",qs={top:1,right:1,bottom:1,left:1};Xo.svg.brush=function(){function n(i){i.each(function(){var i=Xo.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",u).on("touchstart.brush",u),o=i.selectAll(".background").data([0]);o.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),i.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var a=i.selectAll(".resize").data(p,bt);a.exit().remove(),a.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return zs[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),a.style("display",n.empty()?"none":null);var l,f=Xo.transition(i),h=Xo.transition(o);c&&(l=Ri(c),h.attr("x",l[0]).attr("width",l[1]-l[0]),e(f)),s&&(l=Ri(s),h.attr("y",l[0]).attr("height",l[1]-l[0]),r(f)),t(f)})}function t(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+l[+/e$/.test(n)]+","+f[+/^s/.test(n)]+")"})}function e(n){n.select(".extent").attr("x",l[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",l[1]-l[0])}function r(n){n.select(".extent").attr("y",f[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",f[1]-f[0])}function u(){function u(){32==Xo.event.keyCode&&(C||(x=null,L[0]-=l[1],L[1]-=f[1],C=2),d())}function p(){32==Xo.event.keyCode&&2==C&&(L[0]+=l[1],L[1]+=f[1],C=0,d())}function v(){var n=Xo.mouse(_),u=!1;M&&(n[0]+=M[0],n[1]+=M[1]),C||(Xo.event.altKey?(x||(x=[(l[0]+l[1])/2,(f[0]+f[1])/2]),L[0]=l[+(n[0]<x[0])],L[1]=f[+(n[1]<x[1])]):x=null),E&&m(n,c,0)&&(e(S),u=!0),A&&m(n,s,1)&&(r(S),u=!0),u&&(t(S),w({type:"brush",mode:C?"move":"resize"}))}function m(n,t,e){var r,u,a=Ri(t),c=a[0],s=a[1],p=L[e],v=e?f:l,d=v[1]-v[0];return C&&(c-=p,s-=d+p),r=(e?g:h)?Math.max(c,Math.min(s,n[e])):n[e],C?u=(r+=p)+d:(x&&(p=Math.max(c,Math.min(s,2*x[e]-r))),r>p?(u=r,r=p):u=p),v[0]!=r||v[1]!=u?(e?o=null:i=null,v[0]=r,v[1]=u,!0):void 0}function y(){v(),S.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),Xo.select("body").style("cursor",null),T.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),N(),w({type:"brushend"})}var x,M,_=this,b=Xo.select(Xo.event.target),w=a.of(_,arguments),S=Xo.select(_),k=b.datum(),E=!/^(n|s)$/.test(k)&&c,A=!/^(e|w)$/.test(k)&&s,C=b.classed("extent"),N=O(),L=Xo.mouse(_),T=Xo.select(Go).on("keydown.brush",u).on("keyup.brush",p);if(Xo.event.changedTouches?T.on("touchmove.brush",v).on("touchend.brush",y):T.on("mousemove.brush",v).on("mouseup.brush",y),S.interrupt().selectAll("*").interrupt(),C)L[0]=l[0]-L[0],L[1]=f[0]-L[1];else if(k){var q=+/w$/.test(k),z=+/^n/.test(k);M=[l[1-q]-L[0],f[1-z]-L[1]],L[0]=l[q],L[1]=f[z]}else Xo.event.altKey&&(x=L.slice());S.style("pointer-events","none").selectAll(".resize").style("display",null),Xo.select("body").style("cursor",b.style("cursor")),w({type:"brushstart"}),v()}var i,o,a=y(n,"brushstart","brush","brushend"),c=null,s=null,l=[0,0],f=[0,0],h=!0,g=!0,p=Rs[0];return n.event=function(n){n.each(function(){var n=a.of(this,arguments),t={x:l,y:f,i:i,j:o},e=this.__chart__||t;this.__chart__=t,ks?Xo.select(this).transition().each("start.brush",function(){i=e.i,o=e.j,l=e.x,f=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=hu(l,t.x),r=hu(f,t.y);return i=o=null,function(u){l=t.x=e(u),f=t.y=r(u),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){i=t.i,o=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,p=Rs[!c<<1|!s],n):c},n.y=function(t){return arguments.length?(s=t,p=Rs[!c<<1|!s],n):s},n.clamp=function(t){return arguments.length?(c&&s?(h=!!t[0],g=!!t[1]):c?h=!!t:s&&(g=!!t),n):c&&s?[h,g]:c?h:s?g:null},n.extent=function(t){var e,r,u,a,h;return arguments.length?(c&&(e=t[0],r=t[1],s&&(e=e[0],r=r[0]),i=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(h=e,e=r,r=h),(e!=l[0]||r!=l[1])&&(l=[e,r])),s&&(u=t[0],a=t[1],c&&(u=u[1],a=a[1]),o=[u,a],s.invert&&(u=s(u),a=s(a)),u>a&&(h=u,u=a,a=h),(u!=f[0]||a!=f[1])&&(f=[u,a])),n):(c&&(i?(e=i[0],r=i[1]):(e=l[0],r=l[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(h=e,e=r,r=h))),s&&(o?(u=o[0],a=o[1]):(u=f[0],a=f[1],s.invert&&(u=s.invert(u),a=s.invert(a)),u>a&&(h=u,u=a,a=h))),c&&s?[[e,u],[r,a]]:c?[e,r]:s&&[u,a])},n.clear=function(){return n.empty()||(l=[0,0],f=[0,0],i=o=null),n},n.empty=function(){return!!c&&l[0]==l[1]||!!s&&f[0]==f[1]},Xo.rebind(n,a,"on")};var zs={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Rs=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Ds=tc.format=ac.timeFormat,Ps=Ds.utc,Us=Ps("%Y-%m-%dT%H:%M:%S.%LZ");Ds.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?Oo:Us,Oo.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},Oo.toString=Us.toString,tc.second=Rt(function(n){return new ec(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),tc.seconds=tc.second.range,tc.seconds.utc=tc.second.utc.range,tc.minute=Rt(function(n){return new ec(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),tc.minutes=tc.minute.range,tc.minutes.utc=tc.minute.utc.range,tc.hour=Rt(function(n){var t=n.getTimezoneOffset()/60;return new ec(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),tc.hours=tc.hour.range,tc.hours.utc=tc.hour.utc.range,tc.month=Rt(function(n){return n=tc.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),tc.months=tc.month.range,tc.months.utc=tc.month.utc.range;var js=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Hs=[[tc.second,1],[tc.second,5],[tc.second,15],[tc.second,30],[tc.minute,1],[tc.minute,5],[tc.minute,15],[tc.minute,30],[tc.hour,1],[tc.hour,3],[tc.hour,6],[tc.hour,12],[tc.day,1],[tc.day,2],[tc.week,1],[tc.month,1],[tc.month,3],[tc.year,1]],Fs=Ds.multi([[".%L",function(n){return n.getMilliseconds()}],[":%S",function(n){return n.getSeconds()}],["%I:%M",function(n){return n.getMinutes()}],["%I %p",function(n){return n.getHours()}],["%a %d",function(n){return n.getDay()&&1!=n.getDate()}],["%b %d",function(n){return 1!=n.getDate()}],["%B",function(n){return n.getMonth()}],["%Y",be]]),Os={range:function(n,t,e){return Xo.range(Math.ceil(n/e)*e,+t,e).map(Io)},floor:bt,ceil:bt};Hs.year=tc.year,tc.scale=function(){return Yo(Xo.scale.linear(),Hs,Fs)};var Ys=Hs.map(function(n){return[n[0].utc,n[1]]}),Is=Ps.multi([[".%L",function(n){return n.getUTCMilliseconds()}],[":%S",function(n){return n.getUTCSeconds()}],["%I:%M",function(n){return n.getUTCMinutes()}],["%I %p",function(n){return n.getUTCHours()}],["%a %d",function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],["%b %d",function(n){return 1!=n.getUTCDate()}],["%B",function(n){return n.getUTCMonth()}],["%Y",be]]);Ys.year=tc.year.utc,tc.scale.utc=function(){return Yo(Xo.scale.linear(),Ys,Is)},Xo.text=wt(function(n){return n.responseText}),Xo.json=function(n,t){return St(n,"application/json",Zo,t)},Xo.html=function(n,t){return St(n,"text/html",Vo,t)},Xo.xml=wt(function(n){return n.responseXML}),"function"==typeof define&&define.amd?define(Xo):"object"==typeof module&&module.exports?module.exports=Xo:this.d3=Xo}();'use strict';(function(window){window.define=undefined;}).call(this,this);'use strict';tr.exportTo('tr.ui.b',function(){const DataSeriesEnableChangeEventType='data-series-enabled-change';const THIS_DOC=document.currentScript.ownerDocument;const svgNS='http://www.w3.org/2000/svg';const ColorScheme=tr.b.ColorScheme;function getColorOfKey(key,selected){let id=ColorScheme.getColorIdForGeneralPurposeString(key);if(selected){id+=ColorScheme.properties.brightenedOffsets[0];}
7618return ColorScheme.colorsAsStrings[id];}
7619function getSVGTextSize(parentNode,text,opt_callback,opt_this){const textNode=document.createElementNS('http://www.w3.org/2000/svg','text');textNode.setAttributeNS(null,'x',0);textNode.setAttributeNS(null,'y',0);textNode.setAttributeNS(null,'fill','black');textNode.appendChild(document.createTextNode(text));parentNode.appendChild(textNode);if(opt_callback){opt_callback.call(opt_this||parentNode,textNode);}
7620const width=textNode.getComputedTextLength();const height=textNode.getBBox().height;parentNode.removeChild(textNode);return{width,height};}
7621function DataSeries(key){this.key_=key;this.target_=undefined;this.title_='';this.optional_=false;this.enabled_=true;this.color_=getColorOfKey(key,false);this.highlightedColor_=getColorOfKey(key,true);}
7622DataSeries.prototype={get key(){return this.key_;},get title(){return this.title_;},set title(t){this.title_=t;},get color(){return this.color_;},set color(c){this.color_=c;},get highlightedColor(){return this.highlightedColor_;},set highlightedColor(c){this.highlightedColor_=c;},get optional(){return this.optional_;},set optional(optional){this.optional_=optional;},get enabled(){return this.enabled_;},set enabled(enabled){if(!this.optional&&!enabled){this.optional=true;}
7623this.enabled_=enabled;},get target(){return this.target_;},set target(t){this.target_=t;}};const ChartBase=tr.ui.b.define('svg',undefined,svgNS);ChartBase.prototype={__proto__:HTMLUnknownElement.prototype,getDataSeries(key){if(!this.seriesByKey_.has(key)){this.seriesByKey_.set(key,new DataSeries(key));}
7624return this.seriesByKey_.get(key);},decorate(){Polymer.dom(this).classList.add('chart-base');this.setAttribute('style','cursor: default; user-select: none;');this.chartTitle_=undefined;this.seriesByKey_=new Map();this.graphWidth_=undefined;this.graphHeight_=undefined;this.margin={top:0,right:0,bottom:0,left:0,};this.hideLegend_=false;const template=Polymer.dom(THIS_DOC).querySelector('#chart-base-template');const svgEl=Polymer.dom(template.content).querySelector('svg');for(let i=0;i<Polymer.dom(svgEl).children.length;i++){Polymer.dom(this).appendChild(Polymer.dom(svgEl.children[i]).cloneNode(true));}
7625this.addEventListener(DataSeriesEnableChangeEventType,this.onDataSeriesEnableChange_.bind(this));},get hideLegend(){return this.hideLegend_;},set hideLegend(h){this.hideLegend_=h;this.updateContents_();},isSeriesEnabled(key){return this.getDataSeries(key).enabled;},onDataSeriesEnableChange_(event){this.getDataSeries(event.key).enabled=event.enabled;this.updateContents_();},get chartTitle(){return this.chartTitle_;},set chartTitle(chartTitle){this.chartTitle_=chartTitle;this.updateContents_();},get chartAreaElement(){return Polymer.dom(this).querySelector('#chart-area');},get graphWidth(){if(this.graphWidth_===undefined)return this.defaultGraphWidth;return this.graphWidth_;},set graphWidth(width){this.graphWidth_=width;this.updateContents_();},get defaultGraphWidth(){return 0;},get graphHeight(){if(this.graphHeight_===undefined)return this.defaultGraphHeight;return this.graphHeight_;},set graphHeight(height){this.graphHeight_=height;this.updateContents_();},get defaultGraphHeight(){return 0;},get totalWidth(){return this.margin.left+this.graphWidth+this.margin.right;},get totalHeight(){return this.margin.top+this.graphHeight+this.margin.bottom;},updateMargins_(){const legendSize=this.computeLegendSize_();this.margin.right=Math.max(this.margin.right,legendSize.width);this.margin.bottom=Math.max(this.margin.bottom,legendSize.height-this.graphHeight);if(this.chartTitle_){const titleSize=getSVGTextSize(this,this.chartTitle_,textNode=>{textNode.style.fontSize='16pt';});this.margin.top=Math.max(this.margin.top,titleSize.height+15);const horizontalOverhangPx=(titleSize.width-this.graphWidth)/2;this.margin.left=Math.max(this.margin.left,horizontalOverhangPx);this.margin.right=Math.max(this.margin.right,horizontalOverhangPx);}},computeLegendSize_(){let width=0;let height=0;if(this.hideLegend)return{width,height};for(const series of this.seriesByKey_.values()){const textSize=getSVGTextSize(this,series.key);width=Math.max(width,textSize.width+20);height+=textSize.height;}
7626return{width,height};},updateDimensions_(){const thisSel=d3.select(this);thisSel.attr('width',this.totalWidth);thisSel.attr('height',this.totalHeight);d3.select(this.chartAreaElement).attr('transform','translate('+this.margin.left+', '+this.margin.top+')');},updateContents_(){this.updateMargins_();this.updateDimensions_();this.updateTitle_();this.updateLegend_();},updateTitle_(){const titleSel=d3.select(this.chartAreaElement).select('#title');if(!this.chartTitle_){titleSel.style('display','none');return;}
7627titleSel.attr('transform','translate('+this.graphWidth*0.5+',-15)').style('display',undefined).style('text-anchor','middle').style('font-size','16pt').attr('class','title').attr('width',this.graphWidth).text(this.chartTitle_);},updateLegend_(){const chartAreaSel=d3.select(this.chartAreaElement);chartAreaSel.selectAll('.legend').remove();if(this.hideLegend)return;const series=[...this.seriesByKey_.values()].reverse();const legendEntriesSel=chartAreaSel.selectAll('.legend').data(series);legendEntriesSel.enter().append('foreignObject').attr('class','legend').attr('x',this.graphWidth+2).attr('width',this.margin.right).attr('height',18).attr('transform',(series,i)=>'translate(0,'+i*18+')').append('xhtml:body').style('margin',0).append('tr-ui-b-chart-legend-key').property('color',series=>((this.currentHighlightedLegendKey===series.key)?series.highlightedColor:series.color)).property('width',this.margin.right).property('target',series=>series.target).property('title',series=>series.title).property('optional',series=>series.optional).property('enabled',series=>series.enabled).text(series=>series.key);legendEntriesSel.exit().remove();},get highlightedLegendKey(){return this.highlightedLegendKey_;},set highlightedLegendKey(highlightedLegendKey){this.highlightedLegendKey_=highlightedLegendKey;this.updateHighlight_();},get currentHighlightedLegendKey(){if(this.tempHighlightedLegendKey_){return this.tempHighlightedLegendKey_;}
7628return this.highlightedLegendKey_;},pushTempHighlightedLegendKey(key){if(this.tempHighlightedLegendKey_){throw new Error('push cannot nest');}
7629this.tempHighlightedLegendKey_=key;this.updateHighlight_();},popTempHighlightedLegendKey(key){if(this.tempHighlightedLegendKey_!==key){throw new Error('pop cannot happen');}
7630this.tempHighlightedLegendKey_=undefined;this.updateHighlight_();},updateHighlight_(){const chartAreaSel=d3.select(this.chartAreaElement);const legendEntriesSel=chartAreaSel.selectAll('.legend');const getDataSeries=chart.getDataSeries.bind(chart);const currentHighlightedLegendKey=chart.currentHighlightedLegendKey;legendEntriesSel.each(function(key){const dataSeries=getDataSeries(key);if(key===currentHighlightedLegendKey){this.style.fill=dataSeries.highlightedColor;this.style.fontWeight='bold';}else{this.style.fill=dataSeries.color;this.style.fontWeight='';}});}};return{ChartBase,DataSeriesEnableChangeEventType,getColorOfKey,getSVGTextSize,};});'use strict';tr.exportTo('tr.ui.b',function(){const D3_Y_AXIS_WIDTH_PX=9;const D3_X_AXIS_HEIGHT_PX=23;function sanitizePower(x,defaultValue){if(!isNaN(x)&&isFinite(x)&&(x!==0))return x;return defaultValue;}
7631const ChartBase2D=tr.ui.b.define('chart-base-2d',tr.ui.b.ChartBase);ChartBase2D.prototype={__proto__:tr.ui.b.ChartBase.prototype,decorate(){super.decorate();Polymer.dom(this).classList.add('chart-base-2d');this.xScale_=d3.scale.linear();this.yScale_=d3.scale.linear();this.isYLogScale_=false;this.yLogScaleBase_=10;this.yLogScaleMin_=undefined;this.autoDataRange_=new tr.b.math.Range();this.overrideDataRange_=undefined;this.hideXAxis_=false;this.hideYAxis_=false;this.data_=[];this.xAxisLabel_='';this.yAxisLabel_='';this.textHeightPx_=0;this.unit_=undefined;d3.select(this.chartAreaElement).append('g').attr('id','brushes');d3.select(this.chartAreaElement).append('g').attr('id','series');this.addEventListener('mousedown',this.onMouseDown_.bind(this));},get yLogScaleBase(){return this.yLogScaleBase_;},set yLogScaleBase(b){this.yLogScaleBase_=b;},get unit(){return this.unit_;},set unit(unit){this.unit_=unit;this.updateContents_();},get xAxisLabel(){return this.xAxisLabel_;},set xAxisLabel(label){this.xAxisLabel_=label;},get yAxisLabel(){return this.yAxisLabel_;},set yAxisLabel(label){this.yAxisLabel_=label;},get hideXAxis(){return this.hideXAxis_;},set hideXAxis(h){this.hideXAxis_=h;this.updateContents_();},get hideYAxis(){return this.hideYAxis_;},set hideYAxis(h){this.hideYAxis_=h;this.updateContents_();},get data(){return this.data_;},set data(data){if(data===undefined){throw new Error('data must be an Array');}
7632this.data_=data;this.updateSeriesKeys_();this.updateDataRange_();this.updateContents_();},set isYLogScale(logScale){if(logScale){this.yScale_=d3.scale.log().base(this.yLogScaleBase);}else{this.yScale_=d3.scale.linear();}
7633this.isYLogScale_=logScale;},getYScaleMin_(){return this.isYLogScale_?this.yLogScaleMin_:0;},getYScaleDomain_(minValue,maxValue){if(this.overrideDataRange_!==undefined){return[this.dataRange.min,this.dataRange.max];}
7634if(this.isYLogScale_){return[this.getYScaleMin_(),maxValue];}
7635return[Math.min(minValue,this.getYScaleMin_()),maxValue];},getSampleWidth_(data,index,leftSide){let leftIndex;let rightIndex;if(leftSide){leftIndex=Math.max(index-1,0);rightIndex=index;}else{leftIndex=index;rightIndex=Math.min(index+1,data.length-1);}
7636const leftWidth=this.getXForDatum_(data[index],index)-
7637this.getXForDatum_(data[leftIndex],leftIndex);const rightWidth=this.getXForDatum_(data[rightIndex],rightIndex)-
7638this.getXForDatum_(data[index],index);return tr.b.math.Statistics.mean([leftWidth,rightWidth]);},updateSeriesKeys_(){this.data_.forEach(function(datum){Object.keys(datum).forEach(function(key){if(this.isDatumFieldSeries_(key)){this.getDataSeries(key);}},this);},this);},isDatumFieldSeries_(fieldName){return fieldName!=='x';},getXForDatum_(datum,index){return datum.x;},updateMargins_(){this.margin.left=this.hideYAxis?0:this.yAxisWidth;this.margin.bottom=this.hideXAxis?0:this.xAxisHeight;if(this.hideXAxis&&!this.hideYAxis){this.margin.bottom=10;}
7639if(this.hideYAxis&&!this.hideXAxis){this.margin.left=10;}
7640this.margin.top=this.hideYAxis?0:10;if(this.yAxisLabel){this.margin.top+=this.textHeightPx_;}
7641if(this.xAxisLabel){this.margin.right=Math.max(this.margin.right,16+tr.ui.b.getSVGTextSize(this,this.xAxisLabel).width);}
7642super.updateMargins_();},get xAxisHeight(){return D3_X_AXIS_HEIGHT_PX;},computeScaleTickWidth_(scale){if(this.data.length===0)return 0;let tickValues=scale.ticks();let tickFormat=scale.tickFormat();if(this.isYLogScale_){const enclosingPowers=this.dataRange.enclosingPowers();tickValues=[];const maxPower=sanitizePower(enclosingPowers.max,this.yLogScaleBase);for(let power=sanitizePower(enclosingPowers.min,1);power<=maxPower;power*=this.yLogScaleBase){tickValues.push(power);}
7643tickFormat=v=>v.toString();}
7644if(this.unit){tickFormat=v=>this.unit.format(v);}
7645let maxTickWidth=0;for(const tickValue of tickValues){maxTickWidth=Math.max(maxTickWidth,tr.ui.b.getSVGTextSize(this,tickFormat(tickValue)).width);}
7646return D3_Y_AXIS_WIDTH_PX+maxTickWidth;},get yAxisWidth(){return this.computeScaleTickWidth_(this.yScale_);},updateScales_(){if(this.data_.length===0)return;this.xScale_.range([0,this.graphWidth]);this.xScale_.domain(d3.extent(this.data_,this.getXForDatum_.bind(this)));this.yScale_.range([this.graphHeight,0]);this.yScale_.domain([this.dataRange.min,this.dataRange.max]);},updateBrushContents_(brushSel){brushSel.selectAll('*').remove();},updateXAxis_(xAxis){xAxis.selectAll('*').remove();xAxis[0][0].style.opacity=0;if(this.hideXAxis)return;this.drawXAxis_(xAxis);const label=xAxis.append('text').attr('class','label');this.drawXAxisTicks_(xAxis);this.drawXAxisLabel_(label);xAxis[0][0].style.opacity=1;},drawXAxis_(xAxis){xAxis.attr('transform','translate(0,'+this.graphHeight+')').call(d3.svg.axis().scale(this.xScale_).orient('bottom'));},drawXAxisLabel_(label){label.attr('x',this.graphWidth+16).attr('y',8).text(this.xAxisLabel);},drawXAxisTicks_(xAxis){let previousRight=undefined;xAxis.selectAll('.tick')[0].forEach(function(tick){const currentLeft=tick.transform.baseVal[0].matrix.e;if((previousRight===undefined)||(currentLeft>(previousRight+3))){const currentWidth=tick.getBBox().width;previousRight=currentLeft+currentWidth;}else{tick.style.opacity=0;}});},set overrideDataRange(range){this.overrideDataRange_=range;},get dataRange(){if(this.overrideDataRange_!==undefined){return this.overrideDataRange_;}
7647return this.autoDataRange_;},updateDataRange_(){if(this.overrideDataRange_!==undefined)return;const dataBySeriesKey=this.getDataBySeriesKey_();this.autoDataRange_.reset();for(const[series,values]of Object.entries(dataBySeriesKey)){for(let i=0;i<values.length;i++){this.autoDataRange_.addValue(values[i][series]);}}
7648this.yLogScaleMin_=undefined;if(this.autoDataRange_.min!==undefined){let minValue=this.autoDataRange_.min;if(minValue===0){minValue=1;}
7649const onePowerLess=tr.b.math.lesserPower(minValue/this.yLogScaleBase);this.yLogScaleMin_=onePowerLess;}},updateYAxis_(yAxis){yAxis.selectAll('*').remove();yAxis[0][0].style.opacity=0;if(this.hideYAxis)return;this.drawYAxis_(yAxis);this.drawYAxisTicks_(yAxis);const label=yAxis.append('text').attr('class','label');this.drawYAxisLabel_(label);},drawYAxis_(yAxis){let axisModifier=d3.svg.axis().scale(this.yScale_).orient('left');let tickFormat;if(this.isYLogScale_){if(this.yLogScaleMin_===undefined)return;const tickValues=[];const enclosingPowers=this.dataRange.enclosingPowers();const maxPower=sanitizePower(enclosingPowers.max,this.yLogScaleBase);for(let power=sanitizePower(enclosingPowers.min,1);power<=maxPower;power*=this.yLogScaleBase){tickValues.push(power);}
7650axisModifier=axisModifier.tickValues(tickValues);tickFormat=v=>v.toString();}
7651if(this.unit){tickFormat=v=>this.unit.format(v);}
7652if(tickFormat){axisModifier=axisModifier.tickFormat(tickFormat);}
7653yAxis.call(axisModifier);},drawYAxisLabel_(label){const labelWidthPx=Math.ceil(tr.ui.b.getSVGTextSize(this.chartAreaElement,this.yAxisLabel).width);label.attr('x',-labelWidthPx).attr('y',-8).text(this.yAxisLabel);},drawYAxisTicks_(yAxis){let previousTop=undefined;yAxis.selectAll('.tick')[0].forEach(function(tick){const bbox=tick.getBBox();const currentTop=tick.transform.baseVal[0].matrix.f;const currentBottom=currentTop+bbox.height;if((previousTop===undefined)||(previousTop>(currentBottom+3))){previousTop=currentTop;}else{tick.style.opacity=0;}});yAxis[0][0].style.opacity=1;},updateContents_(){if(this.textHeightPx_===0){this.textHeightPx_=tr.ui.b.getSVGTextSize(this,'Ay').height;}
7654this.updateScales_();super.updateContents_();const chartAreaSel=d3.select(this.chartAreaElement);this.updateXAxis_(chartAreaSel.select('.x.axis'));this.updateYAxis_(chartAreaSel.select('.y.axis'));for(const child of this.querySelectorAll('.axis path, .axis line')){child.style.fill='none';child.style.shapeRendering='crispEdges';child.style.stroke='black';}
7655this.updateBrushContents_(chartAreaSel.select('#brushes'));this.updateDataContents_(chartAreaSel.select('#series'));},updateDataContents_(seriesSel){throw new Error('Not implemented');},getDataBySeriesKey_(){const dataBySeriesKey={};for(const[key,series]of this.seriesByKey_){dataBySeriesKey[key]=[];}
7656this.data_.forEach(function(multiSeriesDatum,index){const x=this.getXForDatum_(multiSeriesDatum,index);d3.keys(multiSeriesDatum).forEach(function(seriesKey){if(seriesKey==='x')return;if(multiSeriesDatum[seriesKey]===undefined)return;if(!this.isDatumFieldSeries_(seriesKey))return;const singleSeriesDatum={x};singleSeriesDatum[seriesKey]=multiSeriesDatum[seriesKey];dataBySeriesKey[seriesKey].push(singleSeriesDatum);},this);},this);return dataBySeriesKey;},getChartPointAtClientPoint_(clientPoint){const rect=this.getBoundingClientRect();return{x:clientPoint.x-rect.left-this.margin.left,y:clientPoint.y-rect.top-this.margin.top};},getDataPointAtChartPoint_(chartPoint){return{x:tr.b.math.clamp(this.xScale_.invert(chartPoint.x),this.xScale_.domain()[0],this.xScale_.domain()[1]),y:tr.b.math.clamp(this.yScale_.invert(chartPoint.y),this.yScale_.domain()[0],this.yScale_.domain()[1])};},getDataPointAtClientPoint_(clientX,clientY){const chartPoint=this.getChartPointAtClientPoint_({x:clientX,y:clientY});return this.getDataPointAtChartPoint_(chartPoint);},prepareDataEvent_(mouseEvent,dataEvent){const dataPoint=this.getDataPointAtClientPoint_(mouseEvent.clientX,mouseEvent.clientY);dataEvent.x=dataPoint.x;dataEvent.y=dataPoint.y;},onMouseDown_(mouseEvent){tr.ui.b.trackMouseMovesUntilMouseUp(this.onMouseMove_.bind(this,mouseEvent.button),this.onMouseUp_.bind(this,mouseEvent.button));mouseEvent.preventDefault();mouseEvent.stopPropagation();const dataEvent=new tr.b.Event('item-mousedown');dataEvent.button=mouseEvent.button;this.prepareDataEvent_(mouseEvent,dataEvent);this.dispatchEvent(dataEvent);for(const child of this.querySelector('#brushes').children){child.setAttribute('fill','rgb(103, 199, 165)');}},onMouseMove_(button,mouseEvent){if(mouseEvent.buttons!==undefined){mouseEvent.preventDefault();mouseEvent.stopPropagation();}
7657const dataEvent=new tr.b.Event('item-mousemove');dataEvent.button=button;this.prepareDataEvent_(mouseEvent,dataEvent);this.dispatchEvent(dataEvent);for(const child of this.querySelector('#brushes').children){child.setAttribute('fill','rgb(103, 199, 165)');}},onMouseUp_(button,mouseEvent){mouseEvent.preventDefault();mouseEvent.stopPropagation();const dataEvent=new tr.b.Event('item-mouseup');dataEvent.button=button;this.prepareDataEvent_(mouseEvent,dataEvent);this.dispatchEvent(dataEvent);for(const child of this.querySelector('#brushes').children){child.setAttribute('fill','rgb(213, 236, 229)');}}};return{ChartBase2D,};});'use strict';tr.exportTo('tr.ui.b',function(){const ChartBase2D=tr.ui.b.ChartBase2D;const ChartBase2DBrushX=tr.ui.b.define('chart-base-2d-brush-1d',ChartBase2D);ChartBase2DBrushX.prototype={__proto__:ChartBase2D.prototype,decorate(){super.decorate();this.brushedRange_=new tr.b.math.Range();},set brushedRange(range){this.brushedRange_.reset();this.brushedRange_.addRange(range);this.updateContents_();},get brushedRange(){return tr.b.math.Range.fromDict(this.brushedRange_.toJSON());},computeBrushRangeFromIndices(indexA,indexB){indexA=tr.b.math.clamp(indexA,0,this.data_.length-1);indexB=tr.b.math.clamp(indexB,0,this.data_.length-1);const leftIndex=Math.min(indexA,indexB);const rightIndex=Math.max(indexA,indexB);const brushRange=new tr.b.math.Range();brushRange.addValue(this.getXForDatum_(this.data_[leftIndex],leftIndex)-
7658this.getSampleWidth_(this.data_,leftIndex,true));brushRange.addValue(this.getXForDatum_(this.data_[rightIndex],rightIndex)+
7659this.getSampleWidth_(this.data_,rightIndex,false));return brushRange;},getDataIndex_(dataX){if(this.data.length===0)return undefined;const bisect=d3.bisector(this.getXForDatum_.bind(this)).right;return bisect(this.data_,dataX)-1;},prepareDataEvent_(mouseEvent,dataEvent){ChartBase2D.prototype.prepareDataEvent_.call(this,mouseEvent,dataEvent);dataEvent.index=this.getDataIndex_(dataEvent.x);if(dataEvent.index!==undefined){dataEvent.data=this.data_[dataEvent.index];}},updateBrushContents_(brushSel){brushSel.selectAll('*').remove();const brushes=this.brushedRange_.isEmpty?[]:[this.brushedRange_];const brushRectsSel=brushSel.selectAll('rect').data(brushes);brushRectsSel.enter().append('rect');brushRectsSel.exit().remove();this.drawBrush_(brushRectsSel);},drawBrush_(brushRectsSel){brushRectsSel.attr('x',d=>this.xScale_(d.min)).attr('y',0).attr('width',d=>this.xScale_(d.max)-this.xScale_(d.min)).attr('height',this.graphHeight).attr('fill','rgb(213, 236, 229)');}};return{ChartBase2DBrushX,};});'use strict';tr.exportTo('tr.ui.b',function(){const ColumnChart=tr.ui.b.define('column-chart',tr.ui.b.ChartBase2DBrushX);ColumnChart.prototype={__proto__:tr.ui.b.ChartBase2DBrushX.prototype,decorate(){super.decorate();this.xCushion_=1;this.isStacked_=false;this.enableHoverBox=true;this.displayXInHover=false;},set isStacked(stacked){this.isStacked_=true;this.updateContents_();},get isStacked(){return this.isStacked_;},get defaultGraphHeight(){return 100;},get defaultGraphWidth(){return 10*this.data_.length;},updateScales_(){if(this.data_.length===0)return;let xDifferences=0;let currentX=undefined;let previousX=undefined;this.data_.forEach(function(datum,index){previousX=currentX;currentX=this.getXForDatum_(datum,index);if(previousX!==undefined){xDifferences+=currentX-previousX;}},this);this.xScale_.range([0,this.graphWidth]);const domain=d3.extent(this.data_,this.getXForDatum_.bind(this));if(this.data_.length>1){this.xCushion_=xDifferences/(this.data_.length-1);}
7660this.xScale_.domain([domain[0],domain[1]+this.xCushion_]);this.yScale_.range([this.graphHeight,0]);this.yScale_.domain(this.getYScaleDomain_(this.dataRange.min,this.dataRange.max));},updateDataRange_(){if(!this.isStacked){super.updateDataRange_();return;}
7661this.autoDataRange_.reset();this.autoDataRange_.addValue(0);for(const datum of this.data_){let sum=0;for(const[key,series]of this.seriesByKey_){if(datum[key]===undefined){continue;}
7662sum+=datum[key];}
7663this.autoDataRange_.addValue(sum);}},getStackedRectsForDatum_(datum,index){const stacks=[];let bottom=this.yScale_.range()[0];let sum=0;for(const[key,series]of this.seriesByKey_){if(datum[key]===undefined||!this.isSeriesEnabled(key)){continue;}
7664sum+=this.dataRange.clamp(datum[key]);const heightPx=bottom-this.yScale_(sum);bottom-=heightPx;stacks.push({key,value:datum[key],color:this.getDataSeries(key).color,heightPx,topPx:bottom,underflow:sum<this.dataRange.min,overflow:sum>this.dataRange.max,});}
7665return stacks;},getRectsForDatum_(datum,index){if(this.isStacked){return this.getStackedRectsForDatum_(datum,index);}
7666const stacks=[];for(const[key,series]of this.seriesByKey_){if(datum[key]===undefined||!this.isSeriesEnabled(key)){continue;}
7667const clampedValue=this.dataRange.clamp(datum[key]);const topPx=this.yScale_(Math.max(clampedValue,this.getYScaleMin_()));stacks.push({key,value:datum[key],topPx,heightPx:this.yScale_.range()[0]-topPx,color:this.getDataSeries(key).color,underflow:datum[key]<this.dataRange.min,overflow:datum[key]>this.dataRange.max,});}
7668stacks.sort(function(a,b){return b.topPx-a.topPx;});return stacks;},drawHoverValueBox_(rect){const rectHoverEvent=new tr.b.Event('rect-mouseenter');rectHoverEvent.rect=rect;this.dispatchEvent(rectHoverEvent);if(!this.enableHoverBox)return;const seriesKeys=[...this.seriesByKey_.keys()];const chartAreaSel=d3.select(this.chartAreaElement);chartAreaSel.selectAll('.hover').remove();let keyWidthPx=0;let keyHeightPx=0;if(seriesKeys.length>1){keyWidthPx=tr.ui.b.getSVGTextSize(this.chartAreaElement,rect.key).width+5;keyHeightPx=this.textHeightPx_;}
7669let xLabelWidthPx=0;let xLabelHeightPx=0;if(this.displayXInHover){xLabelWidthPx=tr.ui.b.getSVGTextSize(this.chartAreaElement,rect.datum.x).width+5;xLabelHeightPx=this.textHeightPx_;}
7670let value=rect.value;if(this.unit)value=this.unit.format(value);const valueWidthPx=tr.ui.b.getSVGTextSize(this.chartAreaElement,value).width+5;const valueHeightPx=this.textHeightPx_;const hoverWidthPx=Math.max(keyWidthPx,valueWidthPx,xLabelWidthPx);let hoverLeftPx=rect.leftPx+(rect.widthPx/2);hoverLeftPx=Math.max(hoverLeftPx-hoverWidthPx,-this.margin.left);const hoverHeightPx=keyHeightPx+valueHeightPx+xLabelHeightPx+2;let hoverTopPx=rect.topPx;hoverTopPx=Math.min(hoverTopPx,this.getBoundingClientRect().height-hoverHeightPx-12);chartAreaSel.append('rect').attr('class','hover').on('mouseleave',()=>this.clearHoverValueBox_(rect)).attr('fill','white').attr('stroke','black').attr('x',hoverLeftPx).attr('y',hoverTopPx).attr('width',hoverWidthPx).attr('height',hoverHeightPx);if(seriesKeys.length>1){chartAreaSel.append('text').attr('class','hover').on('mouseleave',()=>this.clearHoverValueBox_(rect)).attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',hoverTopPx+keyHeightPx-2).text(rect.key);}
7671if(this.displayXInHover){chartAreaSel.append('text').attr('class','hover').on('mouseleave',()=>this.clearHoverValueBox_(rect)).attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',hoverTopPx+keyHeightPx+xLabelHeightPx-2).text(rect.datum.x);}
7672chartAreaSel.append('text').attr('class','hover').on('mouseleave',()=>this.clearHoverValueBox_(rect)).attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',hoverTopPx+hoverHeightPx-2).text(value);},clearHoverValueBox_(rect){const event=window.event;if(event.relatedTarget&&Array.from(event.relatedTarget.classList).includes('hover')){return;}
7673const rectHoverEvent=new tr.b.Event('rect-mouseleave');rectHoverEvent.rect=rect;this.dispatchEvent(rectHoverEvent);d3.select(this.chartAreaElement).selectAll('.hover').remove();},drawRect_(rect,sel){sel=sel.data([rect]);sel.enter().append('rect').attr('fill',rect.color).attr('x',rect.leftPx).attr('y',rect.topPx).attr('width',rect.widthPx).attr('height',rect.heightPx).on('mouseenter',this.drawHoverValueBox_.bind(this,rect)).on('mouseleave',this.clearHoverValueBox_.bind(this,rect));sel.exit().remove();},drawUnderflow_(rect,sel){sel=sel.data([rect]);sel.enter().append('text').text('*').attr('fill',rect.color).attr('x',rect.leftPx+(rect.widthPx/2)).attr('y',this.graphHeight).on('mouseenter',this.drawHoverValueBox_.bind(this,rect)).on('mouseleave',this.clearHoverValueBox_.bind(this,rect));sel.exit().remove();},drawOverflow_(rect,sel){sel=sel.data([rect]);sel.enter().append('text').text('*').attr('fill',rect.color).attr('x',rect.leftPx+(rect.widthPx/2)).attr('y',0);sel.exit().remove();},updateDataContents_(dataSel){dataSel.selectAll('*').remove();const chartAreaSel=d3.select(this.chartAreaElement);const seriesKeys=[...this.seriesByKey_.keys()];const rectsSel=dataSel.selectAll('path');this.data_.forEach(function(datum,index){const currentX=this.getXForDatum_(datum,index);let width=undefined;if(index<(this.data_.length-1)){const nextX=this.getXForDatum_(this.data_[index+1],index+1);width=nextX-currentX;}else{width=this.xCushion_;}
7674for(const rect of this.getRectsForDatum_(datum,index)){rect.datum=datum;rect.index=index;rect.leftPx=this.xScale_(currentX);rect.rightPx=this.xScale_(currentX+width);rect.widthPx=rect.rightPx-rect.leftPx;this.drawRect_(rect,rectsSel);if(rect.underflow){this.drawUnderflow_(rect,rectsSel);}
7675if(rect.overflow){this.drawOverflow_(rect,rectsSel);}}},this);}};return{ColumnChart,};});'use strict';tr.exportTo('tr.ui.b',function(){const LineChart=tr.ui.b.define('line-chart',tr.ui.b.ChartBase2DBrushX);LineChart.prototype={__proto__:tr.ui.b.ChartBase2DBrushX.prototype,decorate(){super.decorate();this.enableHoverBox=true;this.displayXInHover=false;},get defaultGraphWidth(){return 20*this.data_.length;},get defaultGraphHeight(){return 100;},drawHoverValueBox_(circle){tr.ui.b.ColumnChart.prototype.drawHoverValueBox_.call(this,circle);},clearHoverValueBox_(circle){tr.ui.b.ColumnChart.prototype.clearHoverValueBox_.call(this,circle);},updateDataContents_(dataSel){dataSel.selectAll('*').remove();const dataBySeriesKey=this.getDataBySeriesKey_();const seriesKeys=[...this.seriesByKey_.keys()];const pathsSel=dataSel.selectAll('path').data(seriesKeys);pathsSel.enter().append('path').style('fill','none').style('stroke-width','1.5px').style('stroke',key=>this.getDataSeries(key).color).attr('d',key=>{const line=d3.svg.line().x(d=>this.xScale_(d.x)).y(d=>this.yScale_(this.dataRange.clamp(d[key])));return line(dataBySeriesKey[key]);});pathsSel.exit().remove();if(this.enableHoverBox){for(let index=0;index<this.data_.length;++index){const datum=this.data_[index];const x=this.getXForDatum_(datum,index);for(const[key,value]of Object.entries(datum)){if(key==='x')continue;if(value===undefined)continue;const color=this.getDataSeries(key).color;const circle=document.createElementNS('http://www.w3.org/2000/svg','circle');circle.setAttribute('cx',this.xScale_(x));circle.setAttribute('cy',this.yScale_(this.dataRange.clamp(value)));circle.setAttribute('r',5);circle.style.fill=color;circle.datum=datum;circle.key=key;circle.value=datum[key];circle.leftPx=this.xScale_(x);circle.widthPx=0;circle.color=color;circle.topPx=this.yScale_(this.dataRange.clamp(value));circle.heightPx=0;circle.addEventListener('mouseenter',()=>this.drawHoverValueBox_(circle));circle.addEventListener('mouseleave',()=>this.clearHoverValueBox_(circle));dataSel[0][0].appendChild(circle);}}}}};return{LineChart,};});'use strict';Polymer({is:'tr-ui-e-s-input-latency-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready(){this.rangeOfInterest_=new tr.b.math.Range();this.frametimeType_=tr.model.helpers.IMPL_FRAMETIME_TYPE;this.latencyChart_=undefined;this.frametimeChart_=undefined;this.selectedProcessId_=undefined;this.mouseDownIndex_=undefined;this.curMouseIndex_=undefined;},get model(){return this.model_;},set model(model){this.model_=model;if(this.model_){this.modelHelper_=this.model_.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);}else{this.modelHelper_=undefined;}
7676this.updateToolbar_();this.updateContents_();},get frametimeType(){return this.frametimeType_;},set frametimeType(type){if(this.frametimeType_===type)return;this.frametimeType_=type;this.updateContents_();},get selectedProcessId(){return this.selectedProcessId_;},set selectedProcessId(process){if(this.selectedProcessId_===process)return;this.selectedProcessId_=process;this.updateContents_();},set selection(selection){if(this.latencyChart_===undefined)return;this.latencyChart_.brushedRange=selection.bounds;},setBrushedIndices(mouseDownIndex,curIndex){this.mouseDownIndex_=mouseDownIndex;this.curMouseIndex_=curIndex;this.updateBrushedRange_();},updateBrushedRange_(){if(this.latencyChart_===undefined)return;let r=new tr.b.math.Range();if(this.mouseDownIndex_===undefined){this.latencyChart_.brushedRange=r;return;}
7677r=this.latencyChart_.computeBrushRangeFromIndices(this.mouseDownIndex_,this.curMouseIndex_);this.latencyChart_.brushedRange=r;let latencySlices=[];for(const thread of this.model_.getAllThreads()){for(const event of thread.getDescendantEvents()){if(event.title.indexOf('InputLatency:')===0){latencySlices.push(event);}}}
7678latencySlices=tr.model.helpers.getSlicesIntersectingRange(r,latencySlices);const event=new tr.model.RequestSelectionChangeEvent();event.selection=new tr.model.EventSet(latencySlices);this.latencyChart_.dispatchEvent(event);},registerMouseEventForLatencyChart_(){this.latencyChart_.addEventListener('item-mousedown',function(e){this.mouseDownIndex_=e.index;this.curMouseIndex_=e.index;this.updateBrushedRange_();}.bind(this));this.latencyChart_.addEventListener('item-mousemove',function(e){if(e.button===undefined)return;this.curMouseIndex_=e.index;this.updateBrushedRange_();}.bind(this));this.latencyChart_.addEventListener('item-mouseup',function(e){this.curMouseIndex=e.index;this.updateBrushedRange_();}.bind(this));},updateToolbar_(){const browserProcess=this.modelHelper_.browserProcess;const labels=[];if(browserProcess!==undefined){const labelStr='Browser: '+browserProcess.pid;labels.push({label:labelStr,value:browserProcess.pid});}
7679for(const rendererHelper of
7680Object.values(this.modelHelper_.rendererHelpers)){const rendererProcess=rendererHelper.process;const labelStr='Renderer: '+rendererProcess.userFriendlyName;labels.push({label:labelStr,value:rendererProcess.userFriendlyName});}
7681if(labels.length===0)return;this.selectedProcessId_=labels[0].value;const toolbarEl=this.$.toolbar;Polymer.dom(toolbarEl).appendChild(tr.ui.b.createSelector(this,'frametimeType','inputLatencySidePanel.frametimeType',this.frametimeType_,[{label:'Main Thread Frame Times',value:tr.model.helpers.MAIN_FRAMETIME_TYPE},{label:'Impl Thread Frame Times',value:tr.model.helpers.IMPL_FRAMETIME_TYPE}]));Polymer.dom(toolbarEl).appendChild(tr.ui.b.createSelector(this,'selectedProcessId','inputLatencySidePanel.selectedProcessId',this.selectedProcessId_,labels));},get currentRangeOfInterest(){if(this.rangeOfInterest_.isEmpty){return this.model_.bounds;}
7682return this.rangeOfInterest_;},createLatencyLineChart(data,title,parentNode){const chart=new tr.ui.b.LineChart();Polymer.dom(parentNode).appendChild(chart);let width=600;if(document.body.clientWidth!==undefined){width=document.body.clientWidth*0.5;}
7683chart.graphWidth=width;chart.chartTitle=title;chart.data=data;return chart;},updateContents_(){const resultArea=this.$.result_area;this.latencyChart_=undefined;this.frametimeChart_=undefined;Polymer.dom(resultArea).textContent='';if(this.modelHelper_===undefined)return;const rangeOfInterest=this.currentRangeOfInterest;let chromeProcess;if(this.modelHelper_.rendererHelpers[this.selectedProcessId_]){chromeProcess=this.modelHelper_.rendererHelpers[this.selectedProcessId_];}else{chromeProcess=this.modelHelper_.browserHelper;}
7684const frameEvents=chromeProcess.getFrameEventsInRange(this.frametimeType,rangeOfInterest);const frametimeData=tr.model.helpers.getFrametimeDataFromEvents(frameEvents);const averageFrametime=tr.b.math.Statistics.mean(frametimeData,d=>d.frametime);const latencyEvents=this.modelHelper_.browserHelper.getLatencyEventsInRange(rangeOfInterest);const latencyData=[];latencyEvents.forEach(function(event){if(event.inputLatency===undefined)return;latencyData.push({x:event.start,latency:event.inputLatency/1000});});const averageLatency=tr.b.math.Statistics.mean(latencyData,function(d){return d.latency;});const latencySummaryText=document.createElement('div');Polymer.dom(latencySummaryText).appendChild(tr.ui.b.createSpan({textContent:'Average Latency '+averageLatency+' ms',bold:true}));Polymer.dom(resultArea).appendChild(latencySummaryText);const frametimeSummaryText=document.createElement('div');Polymer.dom(frametimeSummaryText).appendChild(tr.ui.b.createSpan({textContent:'Average Frame Time '+averageFrametime+' ms',bold:true}));Polymer.dom(resultArea).appendChild(frametimeSummaryText);if(latencyData.length!==0){this.latencyChart_=this.createLatencyLineChart(latencyData,'Latency Over Time',resultArea);this.registerMouseEventForLatencyChart_();}
7685if(frametimeData.length!==0){this.frametimeChart_=this.createLatencyLineChart(frametimeData,'Frame Times',resultArea);}},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;this.updateContents_();},supportsModel(m){if(m===undefined){return{supported:false,reason:'Unknown tracing model'};}
7686if(!tr.model.helpers.ChromeModelHelper.supportsModel(m)){return{supported:false,reason:'No Chrome browser or renderer process found'};}
7687const modelHelper=m.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(modelHelper.browserHelper&&modelHelper.browserHelper.hasLatencyEvents){return{supported:true};}
7688return{supported:false,reason:'No InputLatency events trace. Consider enabling '+'benchmark" and "input" category when recording the trace'};},get textLabel(){return'Input Latency';}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-input-latency-side-panel');});'use strict';tr.exportTo('tr.e.system_stats',function(){const ObjectSnapshot=tr.model.ObjectSnapshot;function SystemStatsSnapshot(objectInstance,ts,args){ObjectSnapshot.apply(this,arguments);this.objectInstance=objectInstance;this.ts=ts;this.args=args;this.stats=args;}
7689SystemStatsSnapshot.prototype={__proto__:ObjectSnapshot.prototype,initialize(){if(this.args.length===0){throw new Error('No system stats snapshot data.');}
7690this.stats_=this.args;},getStats(){return this.stats_;},setStats(stats){this.stats_=stats;}};ObjectSnapshot.subTypes.register(SystemStatsSnapshot,{typeName:'base::TraceEventSystemStatsMonitor::SystemStats'});return{SystemStatsSnapshot,};});'use strict';tr.exportTo('tr.ui.b',function(){const constants={HEADING_WIDTH:250};return{constants,};});'use strict';Polymer({is:'tr-ui-b-heading',DOWN_ARROW:String.fromCharCode(0x25BE),RIGHT_ARROW:String.fromCharCode(0x25B8),ready(viewport){this.style.width=(tr.ui.b.constants.HEADING_WIDTH-6)+'px';this.heading_='';this.expanded_=true;this.arrowVisible_=false;this.selectionGenerator_=undefined;this.updateContents_();},get heading(){return this.heading_;},set heading(text){if(this.heading_===text)return;this.heading_=text;this.updateContents_();},set arrowVisible(val){if(this.arrowVisible_===val)return;this.arrowVisible_=!!val;this.updateContents_();},set tooltip(text){this.$.heading.title=text;},set selectionGenerator(generator){if(this.selectionGenerator_===generator)return;this.selectionGenerator_=generator;this.updateContents_();},get expanded(){return this.expanded_;},set expanded(expanded){if(this.expanded_===expanded)return;this.expanded_=!!expanded;this.updateContents_();},onHeadingDivClicked_(){this.dispatchEvent(new tr.b.Event('heading-clicked',true));},updateContents_(){if(this.arrowVisible_){this.$.arrow.style.display='';}else{this.$.arrow.style.display='none';this.$.heading.style.display=this.expanded_?'':'none';}
7691if(this.arrowVisible_){Polymer.dom(this.$.arrow).textContent=this.expanded_?this.DOWN_ARROW:this.RIGHT_ARROW;}
7692this.$.link.style.display='none';this.$.heading_content.style.display='none';if(this.selectionGenerator_){this.$.link.style.display='inline-block';this.$.link.selection=this.selectionGenerator_;Polymer.dom(this.$.link).textContent=this.heading_;}else{this.$.heading_content.style.display='inline-block';Polymer.dom(this.$.heading_content).textContent=this.heading_;}}});'use strict';tr.exportTo('tr.ui.tracks',function(){const Track=tr.ui.b.define('track',tr.ui.b.ContainerThatDecoratesItsChildren);Track.prototype={__proto__:tr.ui.b.ContainerThatDecoratesItsChildren.prototype,decorate(viewport){tr.ui.b.ContainerThatDecoratesItsChildren.prototype.decorate.call(this);if(viewport===undefined){throw new Error('viewport is required when creating a Track.');}
7693this.viewport_=viewport;Polymer.dom(this).classList.add('track');},get viewport(){return this.viewport_;},get drawingContainer(){if(this instanceof tr.ui.tracks.DrawingContainer)return this;let cur=this.parentElement;while(cur){if(cur instanceof tr.ui.tracks.DrawingContainer)return cur;cur=cur.parentElement;}
7694return undefined;},get eventContainer(){},invalidateDrawingContainer(){const dc=this.drawingContainer;if(dc)dc.invalidate();},context(){if(!Polymer.dom(this).parentNode)return undefined;if(!Polymer.dom(this).parentNode.context){throw new Error('Parent container does not support context() method.');}
7695return Polymer.dom(this).parentNode.context();},decorateChild_(childTrack){},undecorateChild_(childTrack){if(childTrack.detach){childTrack.detach();}},updateContents_(){},drawTrack(type){const ctx=this.context();const pixelRatio=window.devicePixelRatio||1;const bounds=this.getBoundingClientRect();const canvasBounds=ctx.canvas.getBoundingClientRect();ctx.save();ctx.translate(0,pixelRatio*(bounds.top-canvasBounds.top));const dt=this.viewport.currentDisplayTransform;const viewLWorld=dt.xViewToWorld(0);const viewRWorld=dt.xViewToWorld(canvasBounds.width*pixelRatio);const viewHeight=bounds.height*pixelRatio;this.draw(type,viewLWorld,viewRWorld,viewHeight);ctx.restore();},draw(type,viewLWorld,viewRWorld,viewHeight){},addEventsToTrackMap(eventToTrackMap){},addContainersToTrackMap(containerToTrackMap){},addIntersectingEventsInRangeToSelection(loVX,hiVX,loVY,hiVY,selection){const pixelRatio=window.devicePixelRatio||1;const dt=this.viewport.currentDisplayTransform;const viewPixWidthWorld=dt.xViewVectorToWorld(1);const loWX=dt.xViewToWorld(loVX*pixelRatio);const hiWX=dt.xViewToWorld(hiVX*pixelRatio);const clientRect=this.getBoundingClientRect();const a=Math.max(loVY,clientRect.top);const b=Math.min(hiVY,clientRect.bottom);if(a>b)return;this.addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection);},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){},addClosestInstantEventToSelection(instantEvents,worldX,worldMaxDist,selection){const instantEvent=tr.b.findClosestElementInSortedArray(instantEvents,function(x){return x.start;},worldX,worldMaxDist);if(!instantEvent)return;selection.push(instantEvent);}};return{Track,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const SelectionState=tr.model.SelectionState;const EventPresenter=tr.ui.b.EventPresenter;const ObjectInstanceTrack=tr.ui.b.define('object-instance-track',tr.ui.tracks.Track);ObjectInstanceTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('object-instance-track');this.objectInstances_=[];this.objectSnapshots_=[];this.heading_=document.createElement('tr-ui-b-heading');Polymer.dom(this).appendChild(this.heading_);},set heading(heading){this.heading_.heading=heading;},get heading(){return this.heading_.heading;},set tooltip(tooltip){this.heading_.tooltip=tooltip;},get objectInstances(){return this.objectInstances_;},set objectInstances(objectInstances){if(!objectInstances||objectInstances.length===0){this.heading='';this.objectInstances_=[];this.objectSnapshots_=[];return;}
7696this.heading=objectInstances[0].baseTypeName;this.objectInstances_=objectInstances;this.objectSnapshots_=[];this.objectInstances_.forEach(function(instance){this.objectSnapshots_.push.apply(this.objectSnapshots_,instance.snapshots);},this);this.objectSnapshots_.sort(function(a,b){return a.ts-b.ts;});},get height(){return window.getComputedStyle(this).height;},set height(height){this.style.height=height;},get snapshotRadiusView(){return 7*(window.devicePixelRatio||1);},draw(type,viewLWorld,viewRWorld,viewHeight){switch(type){case tr.ui.tracks.DrawType.GENERAL_EVENT:this.drawObjectInstances_(viewLWorld,viewRWorld);break;}},drawObjectInstances_(viewLWorld,viewRWorld){const ctx=this.context();const pixelRatio=window.devicePixelRatio||1;const bounds=this.getBoundingClientRect();const height=bounds.height*pixelRatio;const halfHeight=height*0.5;const twoPi=Math.PI*2;const dt=this.viewport.currentDisplayTransform;const snapshotRadiusView=this.snapshotRadiusView;const snapshotRadiusWorld=dt.xViewVectorToWorld(height);const objectInstances=this.objectInstances_;let loI=tr.b.findLowIndexInSortedArray(objectInstances,function(instance){return instance.deletionTs;},viewLWorld);ctx.save();ctx.strokeStyle='rgb(0,0,0)';for(let i=loI;i<objectInstances.length;++i){const instance=objectInstances[i];const x=instance.creationTs;if(x>viewRWorld)break;const right=instance.deletionTs===Number.MAX_VALUE?viewRWorld:instance.deletionTs;const xView=dt.xWorldToView(x);const widthView=dt.xWorldVectorToView(right-x);ctx.fillStyle=EventPresenter.getObjectInstanceColor(instance);ctx.fillRect(xView,pixelRatio,widthView,height-2*pixelRatio);}
7697ctx.restore();const objectSnapshots=this.objectSnapshots_;loI=tr.b.findLowIndexInSortedArray(objectSnapshots,function(snapshot){return snapshot.ts+snapshotRadiusWorld;},viewLWorld);for(let i=loI;i<objectSnapshots.length;++i){const snapshot=objectSnapshots[i];const x=snapshot.ts;if(x-snapshotRadiusWorld>viewRWorld)break;const xView=dt.xWorldToView(x);ctx.fillStyle=EventPresenter.getObjectSnapshotColor(snapshot);ctx.beginPath();ctx.arc(xView,halfHeight,snapshotRadiusView,0,twoPi);ctx.fill();if(snapshot.selected){ctx.lineWidth=5;ctx.strokeStyle='rgb(100,100,0)';ctx.stroke();ctx.beginPath();ctx.arc(xView,halfHeight,snapshotRadiusView-1,0,twoPi);ctx.lineWidth=2;ctx.strokeStyle='rgb(255,255,0)';ctx.stroke();}else{ctx.lineWidth=1;ctx.strokeStyle='rgb(0,0,0)';ctx.stroke();}}
7698ctx.lineWidth=1;let selectionState=SelectionState.NONE;if(objectInstances.length&&objectInstances[0].selectionState===SelectionState.DIMMED){selectionState=SelectionState.DIMMED;}
7699if(selectionState===SelectionState.DIMMED){const width=bounds.width*pixelRatio;ctx.fillStyle='rgba(255,255,255,0.5)';ctx.fillRect(0,0,width,height);ctx.restore();}},addEventsToTrackMap(eventToTrackMap){if(this.objectInstance_!==undefined){this.objectInstance_.forEach(function(obj){eventToTrackMap.addEvent(obj,this);},this);}
7700if(this.objectSnapshots_!==undefined){this.objectSnapshots_.forEach(function(obj){eventToTrackMap.addEvent(obj,this);},this);}},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){let foundSnapshot=false;function onSnapshot(snapshot){selection.push(snapshot);foundSnapshot=true;}
7701const snapshotRadiusView=this.snapshotRadiusView;const snapshotRadiusWorld=viewPixWidthWorld*snapshotRadiusView;tr.b.iterateOverIntersectingIntervals(this.objectSnapshots_,function(x){return x.ts-snapshotRadiusWorld;},function(x){return 2*snapshotRadiusWorld;},loWX,hiWX,onSnapshot);if(foundSnapshot)return;tr.b.iterateOverIntersectingIntervals(this.objectInstances_,function(x){return x.creationTs;},function(x){return x.deletionTs-x.creationTs;},loWX,hiWX,(value)=>{selection.push(value);});},addEventNearToProvidedEventToSelection(event,offset,selection){let events;if(event instanceof tr.model.ObjectSnapshot){events=this.objectSnapshots_;}else if(event instanceof tr.model.ObjectInstance){events=this.objectInstances_;}else{throw new Error('Unrecognized event');}
7702const index=events.indexOf(event);const newIndex=index+offset;if(newIndex>=0&&newIndex<events.length){selection.push(events[newIndex]);return true;}
7703return false;},addAllEventsMatchingFilterToSelection(filter,selection){},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){const snapshot=tr.b.findClosestElementInSortedArray(this.objectSnapshots_,function(x){return x.ts;},worldX,worldMaxDist);if(!snapshot)return;selection.push(snapshot);}};const options=new tr.b.ExtensionRegistryOptions(tr.b.TYPE_BASED_REGISTRY_MODE);tr.b.decorateExtensionRegistry(ObjectInstanceTrack,options);return{ObjectInstanceTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const StackedBarsTrack=tr.ui.b.define('stacked-bars-track',tr.ui.tracks.Track);StackedBarsTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('stacked-bars-track');this.objectInstance_=null;this.heading_=document.createElement('tr-ui-b-heading');Polymer.dom(this).appendChild(this.heading_);},set heading(heading){this.heading_.heading=heading;},get heading(){return this.heading_.heading;},set tooltip(tooltip){this.heading_.tooltip=tooltip;},addEventsToTrackMap(eventToTrackMap){const objectSnapshots=this.objectInstance_.snapshots;objectSnapshots.forEach(function(obj){eventToTrackMap.addEvent(obj,this);},this);},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){function onSnapshot(snapshot){selection.push(snapshot);}
7704const snapshots=this.objectInstance_.snapshots;const maxBounds=this.objectInstance_.parent.model.bounds.max;tr.b.iterateOverIntersectingIntervals(snapshots,function(x){return x.ts;},function(x,i){if(i===snapshots.length-1){if(snapshots.length===1){return maxBounds;}
7705return snapshots[i].ts-snapshots[i-1].ts;}
7706return snapshots[i+1].ts-snapshots[i].ts;},loWX,hiWX,onSnapshot);},addEventNearToProvidedEventToSelection(event,offset,selection){if(!(event instanceof tr.model.ObjectSnapshot)){throw new Error('Unrecognized event');}
7707const objectSnapshots=this.objectInstance_.snapshots;const index=objectSnapshots.indexOf(event);const newIndex=index+offset;if(newIndex>=0&&newIndex<objectSnapshots.length){selection.push(objectSnapshots[newIndex]);return true;}
7708return false;},addAllEventsMatchingFilterToSelection(filter,selection){},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){const snapshot=tr.b.findClosestElementInSortedArray(this.objectInstance_.snapshots,function(x){return x.ts;},worldX,worldMaxDist);if(!snapshot)return;selection.push(snapshot);}};return{StackedBarsTrack,};});'use strict';tr.exportTo('tr.ui.e.system_stats',function(){const EventPresenter=tr.ui.b.EventPresenter;let statCount;const excludedStats={'meminfo':{'pswpin':0,'pswpout':0,'pgmajfault':0},'diskinfo':{'io':0,'io_time':0,'read_time':0,'reads':0,'reads_merged':0,'sectors_read':0,'sectors_written':0,'weighted_io_time':0,'write_time':0,'writes':0,'writes_merged':0},'swapinfo':{}};const SystemStatsInstanceTrack=tr.ui.b.define('tr-ui-e-system-stats-instance-track',tr.ui.tracks.StackedBarsTrack);SystemStatsInstanceTrack.prototype={__proto__:tr.ui.tracks.StackedBarsTrack.prototype,decorate(viewport){tr.ui.tracks.StackedBarsTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('tr-ui-e-system-stats-instance-track');this.objectInstance_=null;},set objectInstances(objectInstances){if(!objectInstances){this.objectInstance_=[];return;}
7709if(objectInstances.length!==1){throw new Error('Bad object instance count.');}
7710this.objectInstance_=objectInstances[0];if(this.objectInstance_!==null){this.computeRates_(this.objectInstance_.snapshots);this.maxStats_=this.computeMaxStats_(this.objectInstance_.snapshots);}},computeRates_(snapshots){for(let i=0;i<snapshots.length;i++){const snapshot=snapshots[i];const stats=snapshot.getStats();let prevSnapshot;if(i===0){prevSnapshot=snapshots[0];}else{prevSnapshot=snapshots[i-1];}
7711const prevStats=prevSnapshot.getStats();let timeIntervalSeconds=(snapshot.ts-prevSnapshot.ts)/1000;if(timeIntervalSeconds===0){timeIntervalSeconds=1;}
7712this.computeRatesRecursive_(prevStats,stats,timeIntervalSeconds);}},computeRatesRecursive_(prevStats,stats,timeIntervalSeconds){for(const statName in stats){if(stats[statName]instanceof Object){this.computeRatesRecursive_(prevStats[statName],stats[statName],timeIntervalSeconds);}else{if(statName==='sectors_read'){stats.bytes_read_per_sec=(stats.sectors_read-
7713prevStats.sectors_read)*512/timeIntervalSeconds;}
7714if(statName==='sectors_written'){stats.bytes_written_per_sec=(stats.sectors_written-
7715prevStats.sectors_written)*512/timeIntervalSeconds;}
7716if(statName==='pgmajfault'){stats.pgmajfault_per_sec=(stats.pgmajfault-
7717prevStats.pgmajfault)/timeIntervalSeconds;}
7718if(statName==='pswpin'){stats.bytes_swpin_per_sec=(stats.pswpin-
7719prevStats.pswpin)*1000/timeIntervalSeconds;}
7720if(statName==='pswpout'){stats.bytes_swpout_per_sec=(stats.pswpout-
7721prevStats.pswpout)*1000/timeIntervalSeconds;}}}},computeMaxStats_(snapshots){const maxStats={};statCount=0;for(let i=0;i<snapshots.length;i++){const snapshot=snapshots[i];const stats=snapshot.getStats();this.computeMaxStatsRecursive_(stats,maxStats,excludedStats);}
7722return maxStats;},computeMaxStatsRecursive_(stats,maxStats,excludedStats){for(const statName in stats){if(stats[statName]instanceof Object){if(!(statName in maxStats)){maxStats[statName]={};}
7723let excludedNested;if(excludedStats&&statName in excludedStats){excludedNested=excludedStats[statName];}else{excludedNested=null;}
7724this.computeMaxStatsRecursive_(stats[statName],maxStats[statName],excludedNested);}else{if(excludedStats&&statName in excludedStats){continue;}
7725if(!(statName in maxStats)){maxStats[statName]=0;statCount++;}
7726if(stats[statName]>maxStats[statName]){maxStats[statName]=stats[statName];}}}},get height(){return window.getComputedStyle(this).height;},set height(height){this.style.height=height;},draw(type,viewLWorld,viewRWorld,viewHeight){switch(type){case tr.ui.tracks.DrawType.GENERAL_EVENT:this.drawStatBars_(viewLWorld,viewRWorld);break;}},drawStatBars_(viewLWorld,viewRWorld){const ctx=this.context();const pixelRatio=window.devicePixelRatio||1;const bounds=this.getBoundingClientRect();const width=bounds.width*pixelRatio;const height=(bounds.height*pixelRatio)/statCount;const vp=this.viewport.currentDisplayTransform;const maxStats=this.maxStats_;const objectSnapshots=this.objectInstance_.snapshots;let lowIndex=tr.b.findLowIndexInSortedArray(objectSnapshots,function(snapshot){return snapshot.ts;},viewLWorld);if(lowIndex>0)lowIndex-=1;for(let i=lowIndex;i<objectSnapshots.length;++i){const snapshot=objectSnapshots[i];const trace=snapshot.getStats();const currentY=height;const left=snapshot.ts;if(left>viewRWorld)break;let leftView=vp.xWorldToView(left);if(leftView<0)leftView=0;let right;if(i!==objectSnapshots.length-1){right=objectSnapshots[i+1].ts;}else{if(objectSnapshots.length>1){right=objectSnapshots[i].ts+(objectSnapshots[i].ts-
7727objectSnapshots[i-1].ts);}else{right=this.objectInstance_.parent.model.bounds.max;}}
7728let rightView=vp.xWorldToView(right);if(rightView>width){rightView=width;}
7729leftView=Math.floor(leftView);rightView=Math.floor(rightView);this.drawStatBarsRecursive_(snapshot,leftView,rightView,height,trace,maxStats,currentY);if(i===lowIndex){this.drawStatNames_(leftView,height,currentY,'',maxStats);}}
7730ctx.lineWidth=1;},drawStatBarsRecursive_(snapshot,leftView,rightView,height,stats,maxStats,currentY){const ctx=this.context();for(const statName in maxStats){if(stats[statName]instanceof Object){currentY=this.drawStatBarsRecursive_(snapshot,leftView,rightView,height,stats[statName],maxStats[statName],currentY);}else{const maxStat=maxStats[statName];ctx.fillStyle=EventPresenter.getBarSnapshotColor(snapshot,Math.round(currentY/height));let barHeight;if(maxStat>0){barHeight=height*Math.max(stats[statName],0)/maxStat;}else{barHeight=0;}
7731ctx.fillRect(leftView,currentY-barHeight,Math.max(rightView-leftView,1),barHeight);currentY+=height;}}
7732return currentY;},drawStatNames_(leftView,height,currentY,prefix,maxStats){const ctx=this.context();ctx.textAlign='end';ctx.font='12px Arial';ctx.fillStyle='#000000';for(const statName in maxStats){if(maxStats[statName]instanceof Object){currentY=this.drawStatNames_(leftView,height,currentY,statName,maxStats[statName]);}else{let fullname=statName;if(prefix!==''){fullname=prefix+' :: '+statName;}
7733ctx.fillText(fullname,leftView-10,currentY-height/4);currentY+=height;}}
7734return currentY;}};tr.ui.tracks.ObjectInstanceTrack.register(SystemStatsInstanceTrack,{typeName:'base::TraceEventSystemStatsMonitor::SystemStats'});return{SystemStatsInstanceTrack,};});'use strict';tr.exportTo('tr.ui.e.system_stats',function(){const SystemStatsSnapshotView=tr.ui.b.define('tr-ui-e-system-stats-snapshot-view',tr.ui.analysis.ObjectSnapshotView);SystemStatsSnapshotView.prototype={__proto__:tr.ui.analysis.ObjectSnapshotView.prototype,decorate(){Polymer.dom(this).classList.add('tr-ui-e-system-stats-snapshot-view');},updateContents(){const snapshot=this.objectSnapshot_;if(!snapshot||!snapshot.getStats()){Polymer.dom(this).textContent='No system stats snapshot found.';return;}
7735Polymer.dom(this).textContent='';const stats=snapshot.getStats();Polymer.dom(this).appendChild(this.buildList_(stats));},isFloat(n){return typeof n==='number'&&n%1!==0;},buildList_(stats){const statList=document.createElement('ul');for(const statName in stats){const statText=document.createElement('li');Polymer.dom(statText).textContent=''+statName+': ';Polymer.dom(statList).appendChild(statText);if(stats[statName]instanceof Object){Polymer.dom(statList).appendChild(this.buildList_(stats[statName]));}else{if(this.isFloat(stats[statName])){Polymer.dom(statText).textContent+=stats[statName].toFixed(2);}else{Polymer.dom(statText).textContent+=stats[statName];}}}
7736return statList;}};tr.ui.analysis.ObjectSnapshotView.register(SystemStatsSnapshotView,{typeName:'base::TraceEventSystemStatsMonitor::SystemStats'});return{SystemStatsSnapshotView,};});'use strict';tr.exportTo('tr.ui.e.v8',function(){const IGNORED_ENTRIES={match:full=>full.startsWith('*CODE_AGE_')};const INSTANCE_TYPE_GROUPS={FIXED_ARRAY_TYPE:{match:full=>full.startsWith('*FIXED_ARRAY_'),realEntry:'FIXED_ARRAY_TYPE',keyToName:key=>key.slice('*FIXED_ARRAY_'.length).slice(0,-('_SUB_TYPE'.length)),nameToKey:name=>'*FIXED_ARRAY_'+name+'_SUB_TYPE'},CODE_TYPE:{match:full=>full.startsWith('*CODE_'),realEntry:'CODE_TYPE',keyToName:key=>key.slice('*CODE_'.length),nameToKey:name=>'*CODE_'+name},JS_OBJECTS:{match:full=>full.startsWith('JS_'),keyToName:key=>key,nameToKey:name=>name},Strings:{match:full=>full.endsWith('STRING_TYPE'),keyToName:key=>key,nameToKey:name=>name}};const DIFF_COLOR={GREEN:'#64DD17',RED:'#D50000'};function computePercentage(valueA,valueB){if(valueA===0)return 0;return valueA/valueB*100;}
7737class DiffEntry{constructor(originalEntry,diffEntry){this.originalEntry_=originalEntry;this.diffEntry_=diffEntry;}
7738get title(){return this.diffEntry_.title;}
7739get overall(){return this.diffEntry_.overall;}
7740get overAllocated(){return this.diffEntry_.overAllocated;}
7741get count(){return this.diffEntry_.count;}
7742get overallPercent(){return this.diffEntry_.overallPercent;}
7743get overAllocatedPercent(){return this.diffEntry_.overAllocatedPercent;}
7744get origin(){return this.originalEntry_;}
7745get diff(){return this.diffEntry_;}
7746get subRows(){return this.diffEntry_.subRows;}}
7747class Entry{constructor(title,count,overall,overAllocated,histogram,overAllocatedHistogram){this.title_=title;this.overall_=overall;this.count_=count;this.overAllocated_=overAllocated;this.histogram_=histogram;this.overAllocatedHistogram_=overAllocatedHistogram;this.bucketSize_=this.histogram_.length;this.overallPercent_=100;this.overAllocatedPercent_=100;}
7748get title(){return this.title_;}
7749get overall(){return this.overall_;}
7750get count(){return this.count_;}
7751get overAllocated(){return this.overAllocated_;}
7752get histogram(){return this.histogram_;}
7753get overAllocatedHistogram(){return this.overAllocatedHistogram_;}
7754get bucketSize(){return this.bucketSize_;}
7755get overallPercent(){return this.overallPercent_;}
7756set overallPercent(value){this.overallPercent_=value;}
7757get overAllocatedPercent(){return this.overAllocatedPercent_;}
7758set overAllocatedPercent(value){this.overAllocatedPercent_=value;}
7759setFromObject(obj){this.count_=obj.count;this.overall_=obj.overall/1024;this.overAllocated_=obj.over_allocated/1024;this.histogram_=obj.histogram;this.overAllocatedHistogram_=obj.over_allocated_histogram;}
7760diff(other){const entry=new Entry(this.title_,other.count_-this.count,other.overall_-this.overall,other.overAllocated_-this.overAllocated,[],[]);entry.overallPercent=computePercentage(entry.overall,this.overall);entry.overAllocatedPercent=computePercentage(entry.overAllocated,this.overAllocated);return new DiffEntry(this,entry);}}
7761class GroupedEntry extends Entry{constructor(title,count,overall,overAllocated,histogram,overAllocatedHistogram){super(title,count,overall,overAllocated,histogram,overAllocatedHistogram);this.histogram_.fill(0);this.overAllocatedHistogram_.fill(0);this.entries_=new Map();}
7762get title(){return this.title_;}
7763set title(value){this.title_=value;}
7764get subRows(){return Array.from(this.entries_.values());}
7765getEntryFromTitle(title){return this.entries_.get(title);}
7766add(entry){this.count_+=entry.count;this.overall_+=entry.overall;this.overAllocated_+=entry.overAllocated;if(this.bucketSize_===entry.bucketSize){for(let i=0;i<this.bucketSize_;++i){this.histogram_[i]+=entry.histogram[i];this.overAllocatedHistogram_[i]+=entry.overAllocatedHistogram[i];}}
7767this.entries_.set(entry.title,entry);}
7768accumulateUnknown(title){let unknownCount=this.count_;let unknownOverall=this.overall_;let unknownOverAllocated=this.overAllocated_;const unknownHistogram=tr.b.deepCopy(this.histogram_);const unknownOverAllocatedHistogram=tr.b.deepCopy(this.overAllocatedHistogram_);for(const entry of this.entries_.values()){unknownCount-=entry.count;unknownOverall-=entry.overall;unknownOverAllocated-=entry.overAllocated;for(let i=0;i<this.bucketSize_;++i){unknownHistogram[i]-=entry.histogram[i];unknownOverAllocatedHistogram[i]-=entry.overAllocatedHistogram[i];}}
7769unknownOverAllocated=unknownOverAllocated<0?0:unknownOverAllocated;this.entries_.set(title,new Entry(title,unknownCount,unknownOverall,unknownOverAllocated,unknownHistogram,unknownOverAllocatedHistogram));}
7770calculatePercentage(){for(const entry of this.entries_.values()){entry.overallPercent=computePercentage(entry.overall,this.overall_);entry.overAllocatedPercent=computePercentage(entry.overAllocated,this.overAllocated_);if(entry instanceof GroupedEntry)entry.calculatePercentage();}}
7771diff(other){let newTitle='';if(this.title_.startsWith('Isolate')){newTitle='Total';}else{newTitle=this.title_;}
7772const result=new GroupedEntry(newTitle,0,0,0,[],[]);for(const entry of this.entries_){const otherEntry=other.getEntryFromTitle(entry[0]);if(otherEntry===undefined)continue;result.add(entry[1].diff(otherEntry));}
7773result.overallPercent=computePercentage(result.overall,this.overall);result.overAllocatedPercent=computePercentage(result.overAllocated,this.overAllocated);return new DiffEntry(this,result);}}
7774function createSelector(targetEl,defaultValue,items,callback){const selectorEl=document.createElement('select');selectorEl.addEventListener('change',callback.bind(targetEl));const defaultOptionEl=document.createElement('option');for(let i=0;i<items.length;i++){const item=items[i];const optionEl=document.createElement('option');Polymer.dom(optionEl).textContent=item.label;optionEl.targetPropertyValue=item.value;optionEl.item=item;Polymer.dom(selectorEl).appendChild(optionEl);}
7775selectorEl.__defineGetter__('selectedValue',function(v){if(selectorEl.children[selectorEl.selectedIndex]===undefined){return undefined;}
7776return selectorEl.children[selectorEl.selectedIndex].targetPropertyValue;});selectorEl.__defineGetter__('selectedItem',function(v){if(selectorEl.children[selectorEl.selectedIndex]===undefined){return undefined;}
7777return selectorEl.children[selectorEl.selectedIndex].item;});selectorEl.__defineSetter__('selectedValue',function(v){for(let i=0;i<selectorEl.children.length;i++){const value=selectorEl.children[i].targetPropertyValue;if(value===v){const changed=selectorEl.selectedIndex!==i;if(changed){selectorEl.selectedIndex=i;callback();}
7778return;}}
7779throw new Error('Not a valid value');});selectorEl.selectedIndex=-1;return selectorEl;}
7780function plusMinus(value,toFixed=3){return(value>0?'+':'')+value.toFixed(toFixed);}
7781function addArrow(value){if(value===0)return value;if(value===Number.NEGATIVE_INFINITY)return'\u2193\u221E';if(value===Number.POSITIVE_INFINITY)return'\u2191\u221E';return(value>0?'\u2191':'\u2193')+Math.abs(value.toFixed(3));}
7782Polymer({is:'tr-ui-e-v8-gc-objects-stats-table',ready(){this.$.diffOption.style.display='none';this.isolateEntries_=[];this.selector1_=undefined;this.selector2_=undefined;},constructDiffTable_(table){this.$.diffTable.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.diffTable.tableColumns=[{title:'Component',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.title;return typeEl;},showExpandButtons:true},{title:'Overall Memory(KB)',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=row.origin.overall.toFixed(3);return spanEl;},cmp(a,b){return a.origin.overall-b.origin.overall;}},{title:'diff(KB)',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=plusMinus(row.overall);if(row.overall>0){spanEl.style.color=DIFF_COLOR.RED;}else if(row.overall<0){spanEl.style.color=DIFF_COLOR.GREEN;}
7783return spanEl;},cmp(a,b){return a.overall-b.overall;}},{title:'diff(%)',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=addArrow(row.overallPercent);if(row.overall>0){spanEl.style.color=DIFF_COLOR.RED;}else if(row.overall<0){spanEl.style.color=DIFF_COLOR.GREEN;}
7784return spanEl;},cmp(a,b){return a.overall-b.overall;}},{title:'Over Allocated Memory(KB)',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=row.origin.overAllocated.toFixed(3);return spanEl;},cmp(a,b){return a.origin.overAllocated-b.origin.overAllocated;}},{title:'diff(KB)',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=plusMinus(row.overAllocated);if(row.overAllocated>0){spanEl.style.color=DIFF_COLOR.RED;}else if(row.overAllocated<0){spanEl.style.color=DIFF_COLOR.GREEN;}
7785return spanEl;},cmp(a,b){return a.overAllocated-b.overAllocated;}},{title:'diff(%)',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=addArrow(row.overAllocatedPercent);if(row.overAllocated>0){spanEl.style.color=DIFF_COLOR.RED;}else if(row.overAllocated<0){spanEl.style.color=DIFF_COLOR.GREEN;}
7786return spanEl;},cmp(a,b){return a.overAllocated-b.overAllocated;}},{title:'Count',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=row.origin.count;return spanEl;},cmp(a,b){return a.origin.count-b.origin.count;}},{title:'diff',value(row){const spanEl=tr.ui.b.createSpan();spanEl.innerText=plusMinus(row.count,0);if(row.count>0){spanEl.style.color=DIFF_COLOR.RED;}else if(row.count<0){spanEl.style.color=DIFF_COLOR.GREEN;}
7787return spanEl;},cmp(a,b){return a.count-b.count;}},];},buildOptions_(){const items=[];for(const isolateEntry of this.isolateEntries_){items.push({label:isolateEntry.title,value:isolateEntry});}
7788this.$.diffOption.style.display='inline-block';this.selector1_=createSelector(this,'',items,this.diffOptionChanged_);Polymer.dom(this.$.diffOption).appendChild(this.selector1_);const spanEl=tr.ui.b.createSpan();spanEl.innerText=' VS ';Polymer.dom(this.$.diffOption).appendChild(spanEl);this.selector2_=createSelector(this,'',items,this.diffOptionChanged_);Polymer.dom(this.$.diffOption).appendChild(this.selector2_);},diffOptionChanged_(){const isolateEntry1=this.selector1_.selectedValue;const isolateEntry2=this.selector2_.selectedValue;if(isolateEntry1===undefined||isolateEntry2===undefined){return;}
7789if(isolateEntry1===isolateEntry2){this.$.diffTable.tableRows=[];this.$.diffTable.rebuild();return;}
7790this.$.diffTable.tableRows=[isolateEntry1.diff(isolateEntry2)];this.$.diffTable.rebuild();},constructTable_(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.table.tableColumns=[{title:'Component',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.title;return typeEl;},showExpandButtons:true},{title:'Overall Memory (KB)',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.overall.toFixed(3);return typeEl;},cmp(a,b){return a.overall-b.overall;}},{title:'Over Allocated Memory (KB)',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.overAllocated.toFixed(3);return typeEl;},cmp(a,b){return a.overAllocated-b.overAllocated;}},{title:'Overall Count',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.count;return typeEl;},cmp(a,b){return a.count-b.count;}},{title:'Overall Memory Percent',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.overallPercent.toFixed(3)+'%';return typeEl;},cmp(a,b){return a.overall-b.overall;}},{title:'Overall Allocated Memory Percent',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.overAllocatedPercent.toFixed(3)+'%';return typeEl;},cmp(a,b){return a.overAllocated-b.overAllocated;}}];this.$.table.sortColumnIndex=1;this.$.table.sortDescending=true;},buildSubEntry_(objects,groupEntry,keyToName){const typeGroup=INSTANCE_TYPE_GROUPS[groupEntry.title];for(const instanceType of typeGroup){const e=objects[instanceType];if(e===undefined)continue;delete objects[instanceType];let title=instanceType;if(keyToName!==undefined)title=keyToName(title);groupEntry.add(new Entry(title,e.count,e.overall/1024,e.over_allocated/1024,e.histogram,e.over_allocated_histogram));}},buildUnGroupedEntries_(objects,objectEntry,bucketSize){for(const title of Object.getOwnPropertyNames(objects)){const obj=objects[title];const groupedEntry=new GroupedEntry(title,0,0,0,new Array(bucketSize),new Array(bucketSize));groupedEntry.setFromObject(obj);objectEntry.add(groupedEntry);}},createGroupEntries_(groupEntries,objects,bucketSize){for(const groupName of Object.getOwnPropertyNames(INSTANCE_TYPE_GROUPS)){const groupEntry=new GroupedEntry(groupName,0,0,0,new Array(bucketSize),new Array(bucketSize));if(INSTANCE_TYPE_GROUPS[groupName].realEntry!==undefined){groupEntry.savedRealEntry=objects[INSTANCE_TYPE_GROUPS[groupName].realEntry];delete objects[INSTANCE_TYPE_GROUPS[groupName].realEntry];}
7791groupEntries[groupName]=groupEntry;}},buildGroupEntries_(groupEntries,objectEntry){for(const groupName of Object.getOwnPropertyNames(groupEntries)){const groupEntry=groupEntries[groupName];if(groupEntry.savedRealEntry!==undefined){groupEntry.setFromObject(groupEntry.savedRealEntry);groupEntry.accumulateUnknown('UNKNOWN');delete groupEntry.savedRealEntry;}
7792objectEntry.add(groupEntry);}},buildSubEntriesForGroups_(groupEntries,objects){for(const instanceType of Object.getOwnPropertyNames(objects)){if(IGNORED_ENTRIES.match(instanceType)){delete objects[instanceType];continue;}
7793const e=objects[instanceType];for(const name of Object.getOwnPropertyNames(INSTANCE_TYPE_GROUPS)){const group=INSTANCE_TYPE_GROUPS[name];if(group.match(instanceType)){groupEntries[name].add(new Entry(group.keyToName(instanceType),e.count,e.overall/1024,e.over_allocated/1024,e.histogram,e.over_allocated_histogram));delete objects[instanceType];}}}},build_(objects,objectEntry,bucketSize){delete objects.END;const groupEntries={};this.createGroupEntries_(groupEntries,objects,bucketSize);this.buildSubEntriesForGroups_(groupEntries,objects);this.buildGroupEntries_(groupEntries,objectEntry);this.buildUnGroupedEntries_(objects,objectEntry,bucketSize);},set selection(slices){slices.sortEvents(function(a,b){return b.start-a.start;});const previous=undefined;for(const slice of slices){if(!slice instanceof tr.e.v8.V8GCStatsThreadSlice)continue;const liveObjects=slice.liveObjects;const deadObjects=slice.deadObjects;const isolate=liveObjects.isolate;const isolateEntry=new GroupedEntry('Isolate_'+isolate+' at '+slice.start.toFixed(3)+' ms',0,0,0,[],[]);const liveEntry=new GroupedEntry('live objects',0,0,0,[],[]);const deadEntry=new GroupedEntry('dead objects',0,0,0,[],[]);const liveBucketSize=liveObjects.bucket_sizes.length;const deadBucketSize=deadObjects.bucket_sizes.length;this.build_(tr.b.deepCopy(liveObjects.type_data),liveEntry,liveBucketSize);isolateEntry.add(liveEntry);this.build_(tr.b.deepCopy(deadObjects.type_data),deadEntry,deadBucketSize);isolateEntry.add(deadEntry);isolateEntry.calculatePercentage();this.isolateEntries_.push(isolateEntry);}
7794this.updateTable_();if(slices.length>1){this.buildOptions_();this.constructDiffTable_();}},updateTable_(){this.constructTable_();this.$.table.tableRows=this.isolateEntries_;this.$.table.rebuild();},});return{};});'use strict';Polymer({is:'tr-ui-e-multi-v8-gc-stats-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.gcObjectsStats.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-multi-v8-gc-stats-thread-slice-sub-view',tr.e.v8.V8GCStatsThreadSlice,{multi:true,title:'V8 GC Stats slices'});'use strict';tr.exportTo('tr.e.v8',function(){const IC_STATS_PROPERTIES=['type','category','scriptName','filePosition','state','isNative','map','propertiesMode','numberOfOwnProperties','instanceType'];class ICStatsEntry{constructor(obj){this.type_=obj.type;if(this.type_.includes('Store')){this.category_='Store';}else if(this.type_.includes('Load')){this.category_='Load';}
7795this.state_=obj.state;if(obj.functionName){this.functionName_=obj.optimized?'*':'~';this.functionName_+=obj.functionName.length===0?'(anonymous function)':obj.functionName;}
7796this.offset_=obj.offset;this.scriptName_=obj.scriptName?obj.scriptName:'unknown';this.isNative_=obj.scriptName&&obj.scriptName.includes('native');this.lineNum_=obj.lineNum?obj.lineNum:'unknown';this.filePosition_=this.scriptName_+':'+this.lineNum_;if(this.functionName_){this.filePosition_+=' '+this.functionName_+'+'+this.offset_;}
7797this.constructor_=obj.constructor?false:true;this.map_=obj.map;if(this.map_){this.propertiesMode_=obj.dict===0?'slow':'fast';}else{this.propertiesMode_='unknown';}
7798this.numberOfOwnProperties_=obj.own;this.instanceType_=obj.instanceType;this.key_=obj.key;}
7799get type(){return this.type_;}
7800get category(){return this.category_;}
7801get state(){return this.state_;}
7802get functionName(){return this.functionName_;}
7803get offset(){return this.offset_;}
7804get scriptName(){return this.scriptName_;}
7805get isNative(){return this.isNative_;}
7806get lineNumber(){return this.lineNum_;}
7807get isConstructor(){return this.constructor_;}
7808get map(){return this.map_;}
7809get propertiesMode(){return this.propertiesMode_;}
7810get numberOfOwnProperties(){return this.numberOfOwnProperties_;}
7811get instanceType(){return this.instanceType_;}
7812get filePosition(){return this.filePosition_;}}
7813class ICStatsEntryGroup{constructor(property,key){this.property_=property;this.key_=key;this.percentage_=0;this.entries_=[];this.subGroup_=undefined;}
7814static groupBy(groups,entries,property){for(const entry of entries){const key=entry[property];let group=groups.get(key);if(!group){group=new ICStatsEntryGroup(property,key);groups.set(key,group);}
7815group.add(entry);}
7816for(const group of groups.values()){group.percentage=group.length/entries.length;}}
7817add(entry){this.entries_.push(entry);}
7818createSubGroup(){if(this.subGroup_)return this.subGroup_;this.subGroup_=new Map();for(const property of IC_STATS_PROPERTIES){if(property===this.property_)continue;const groups=new Map();this.subGroup_.set(property,groups);ICStatsEntryGroup.groupBy(groups,this.entries_,property);}
7819return this.subGroup_;}
7820get entries(){return this.entries_;}
7821get key(){return this.key_;}
7822get length(){return this.entries_.length;}
7823get percentage(){return this.percentage_;}
7824set percentage(value){this.percentage_=value;}}
7825class ICStatsCollection{constructor(){this.entries_=[];this.groupedEntries_=new Map();}
7826add(entry){this.entries_.push(entry);}
7827groupBy(property){if(this.groupedEntries_.has(property)){return Array.from(this.groupedEntries_.get(property).values());}
7828const groups=new Map();this.groupedEntries_.set(property,groups);ICStatsEntryGroup.groupBy(groups,this.entries_,property);return Array.from(groups.values());}
7829get entries(){return this.entries_;}
7830get length(){return this.entries_.length;}}
7831return{IC_STATS_PROPERTIES,ICStatsEntry,ICStatsEntryGroup,ICStatsCollection,};});'use strict';tr.exportTo('tr.ui.e.v8',function(){const PROPERTIES=tr.e.v8.IC_STATS_PROPERTIES.map(x=>{return{label:x,value:x};});const ICStatsEntry=tr.e.v8.ICStatsEntry;const ICStatsEntryGroup=tr.e.v8.ICStatsEntryGroup;const ICStatsCollection=tr.e.v8.ICStatsCollection;Polymer({is:'tr-ui-e-v8-ic-stats-table',ready(){this.icStatsCollection_=new ICStatsCollection();this.groupKey_=PROPERTIES[0].value;this.selector_=tr.ui.b.createSelector(this,'groupKey','v8ICStatsGroupKey',this.groupKey_,PROPERTIES);Polymer.dom(this.$.groupOption).appendChild(this.selector_);},get groupKey(){return this.groupKey_;},set groupKey(key){this.groupKey_=key;if(this.icStatsCollection_.length===0)return;this.updateTable_(this.groupKey_);},constructTable_(table,groupKey){table.tableColumns=[{title:'',value:row=>{let expanded=false;const buttonEl=tr.ui.b.createButton('details',function(){const previousSibling=Polymer.dom(this).parentNode.parentNode;const parentNode=previousSibling.parentNode;if(expanded){const trEls=parentNode.getElementsByClassName('subTable');Array.from(trEls).map(x=>x.parentNode.removeChild(x));expanded=false;return;}
7832expanded=true;const subGroups=row.createSubGroup();const tr=document.createElement('tr');tr.classList.add('subTable');tr.appendChild(document.createElement('td'));const td=document.createElement('td');td.colSpan=3;for(const subGroup of subGroups){const property=subGroup[0];const all=Array.from(subGroup[1].values());const group=all.slice(0,20);const divEl=document.createElement('div');const spanEl=document.createElement('span');const subTableEl=document.createElement('tr-ui-b-table');spanEl.innerText=`Top 20 out of ${all.length}`;spanEl.style.fontWeight='bold';spanEl.style.fontSize='14px';divEl.appendChild(spanEl);this.constructTable_(subTableEl,property);subTableEl.tableRows=group;subTableEl.rebuild();divEl.appendChild(subTableEl);td.appendChild(divEl);}
7833tr.appendChild(td);parentNode.insertBefore(tr,previousSibling.nextSibling);});return buttonEl;}},{title:'Percentage',value(row){const spanEl=document.createElement('span');spanEl.innerText=(row.percentage*100).toFixed(3)+'%';return spanEl;},cmp:(a,b)=>a.percentage-b.percentage},{title:'Count',value(row){const spanEl=document.createElement('span');spanEl.innerText=row.length;return spanEl;},cmp:(a,b)=>a.length-b.length},{title:groupKey,value(row){const spanEl=document.createElement('span');spanEl.innerText=row.key?row.key:'';return spanEl;}}];table.sortColumnIndex=1;table.sortDescending=true;},updateTable_(groupKey){this.constructTable_(this.$.table,groupKey);this.$.table.tableRows=this.icStatsCollection_.groupBy(groupKey);this.$.table.rebuild();},set selection(slices){for(const slice of slices){for(const icStatsObj of slice.icStats){const entry=new ICStatsEntry(icStatsObj);this.icStatsCollection_.add(entry);}}
7834this.$.total.innerText='Total items: '+this.icStatsCollection_.length;this.updateTable_(this.selector_.selectedValue);}});return{};});'use strict';Polymer({is:'tr-ui-e-multi-v8-ic-stats-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.table.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-multi-v8-ic-stats-thread-slice-sub-view',tr.e.v8.V8ICStatsThreadSlice,{multi:true,title:'V8 IC stats slices'});'use strict';tr.exportTo('tr.e.v8',function(){class RuntimeStatsEntry{constructor(name,count,time){this.name_=name;this.count_=count;this.time_=time;}
7835get name(){return this.name_;}
7836get count(){return this.count_;}
7837get time(){return this.time_;}
7838addSample(count,time){this.count_+=count;this.time_+=time;}}
7839class RuntimeStatsGroup extends RuntimeStatsEntry{constructor(name,matchRegex){super(name,0,0);this.regex_=matchRegex;this.entries_=new Map();}
7840match(name){return this.regex_&&name.match(this.regex_);}
7841add(entry){const value=this.entries_.get(entry.name);if(value!==undefined){value.addSample(entry.count,entry.time);}else{this.entries_.set(entry.name,entry);}
7842this.count_+=entry.count;this.time_+=entry.time;}
7843get values(){return Array.from(this.entries_.values());}}
7844class RuntimeStatsGroupCollection{constructor(){this.blink_cpp_group_=new RuntimeStatsGroup('Blink C++',/.*Callback.*/);this.api_group_=new RuntimeStatsGroup('API',/.*API.*/);this.groups_=[new RuntimeStatsGroup('Total'),new RuntimeStatsGroup('IC',/.*IC_.*/),new RuntimeStatsGroup('Optimize',/StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*/),new RuntimeStatsGroup('Compile-Background',/(.*CompileBackground.*)/),new RuntimeStatsGroup('Compile',/(^Compile.*)|(.*_Compile.*)/),new RuntimeStatsGroup('Parse-Background',/.*ParseBackground.*/),new RuntimeStatsGroup('Parse',/.*Parse.*/),this.blink_cpp_group_,this.api_group_,new RuntimeStatsGroup('GC-Background-Marking',/.*GC.MC.BACKGROUND.*MARKING.*/),new RuntimeStatsGroup('GC-Background-Sweeping',/.*GC.MC.BACKGROUND.*SWEEPING.*/),new RuntimeStatsGroup('GC-Background-Scavenger',/.*GC.SCAVENGER.BACKGROUND.*/),new RuntimeStatsGroup('GC-Background-MinorMC',/.*GC.MINOR_MC.BACKGROUND.*/),new RuntimeStatsGroup('GC-Background-MajorMC',/.*GC.MC.BACKGROUND.*/),new RuntimeStatsGroup('GC-Background-Other',/.*GC.*BACKGROUND.*/),new RuntimeStatsGroup('GC',/GC|AllocateInTargetSpace/),new RuntimeStatsGroup('JavaScript',/JS_Execution/),new RuntimeStatsGroup('V8 C++',/.*/)];this.blink_group_collection_=null;}
7845addSlices(slices){const blinkEntries=[];for(const slice of slices){if(!(slice instanceof tr.e.v8.V8ThreadSlice))return;let runtimeCallStats;try{runtimeCallStats=JSON.parse(slice.runtimeCallStats);}catch(e){runtimeCallStats=slice.runtimeCallStats;}
7846if(runtimeCallStats===undefined)continue;for(const[name,stat]of Object.entries(runtimeCallStats)){if(name.match(/Blink_.*/)){if(name==='Blink_V8')continue;const entry=new RuntimeStatsEntry(name,stat[0],stat[1]);blinkEntries.push(entry);continue;}
7847for(let i=1;i<this.groups_.length;++i){if(this.groups_[i].match(name)){if(stat.length!==2)break;const entry=new RuntimeStatsEntry(name,stat[0],stat[1]);this.groups_[0].addSample(stat[0],stat[1]);this.groups_[i].add(entry);break;}}}}
7848this.blink_group_collection_=new BlinkRuntimeStatsGroupCollection(blinkEntries);}
7849get totalTime(){return this.groups_[0].time;}
7850get totalCount(){return this.groups_[0].count;}
7851get runtimeGroups(){return this.groups_;}
7852get blinkRCSGroupCollection(){return this.blink_group_collection_;}
7853get blinkCppTotalTime(){return this.blink_cpp_group_.time+this.api_group_.time;}}
7854class BlinkRuntimeStatsGroupCollection{constructor(entries){this.groups_=[new RuntimeStatsGroup('Blink_Bindings',/^Blink_Bindings_(.*)/),new RuntimeStatsGroup('Blink_GC',/^Blink_GC_(.*)/),new RuntimeStatsGroup('Blink_Layout',/^Blink_Layout_(.*)/),new RuntimeStatsGroup('Blink_Parsing',/^Blink_Parsing_(.*)/),new RuntimeStatsGroup('Blink_Style',/^Blink_Style_(.*)/),new RuntimeStatsGroup('Blink_Callbacks',/^Blink_(.*)/)];this.total_group_=new RuntimeStatsGroup('Blink_Total',/.*/);for(const entry of entries){for(const group of this.groups_){if(group.match(entry.name)){const newEntry=new RuntimeStatsEntry('Blink_'+group.match(entry.name)[1],entry.count,entry.time);group.add(newEntry);this.total_group_.addSample(entry.count,entry.time);break;}}}}
7855get runtimeGroups(){return this.groups_.concat(this.total_group_);}
7856get values(){return this.groups_.reduce((values,group)=>values.concat(group.values),[]);}
7857get totalTime(){return this.total_group_.time;}
7858get totalCount(){return this.total_group_.count;}}
7859return{BlinkRuntimeStatsGroupCollection,RuntimeStatsEntry,RuntimeStatsGroup,RuntimeStatsGroupCollection,};});'use strict';tr.exportTo('tr.ui.e.v8',function(){const codeSearchURL_='https://cs.chromium.org/search/?sq=package:chromium&type=cs&q=';function removeBlinkPrefix_(name){if(name.startsWith('Blink_'))name=name.substring(6);return name;}
7860function handleCodeSearchForV8_(event){if(event.target.parentNode===undefined)return;let name=event.target.parentNode.entryName;if(name.startsWith('API_'))name=name.substring(4);const url=codeSearchURL_+encodeURIComponent(name)+'+file:src/v8/src';window.open(url,'_blank');}
7861function handleCodeSearchForBlink_(event){if(event.target.parentNode===undefined)return;const name=event.target.parentNode.entryName;const url=codeSearchURL_+
7862encodeURIComponent('RuntimeCallStats::CounterId::k'+name)+'+file:src/third_party/WebKit/|src/out/Debug/';window.open(url,'_blank');}
7863function createCodeSearchEl_(handleCodeSearch){const codeSearchEl=document.createElement('span');codeSearchEl.innerText='?';codeSearchEl.style.float='right';codeSearchEl.style.borderRadius='5px';codeSearchEl.style.backgroundColor='#EEE';codeSearchEl.addEventListener('click',handleCodeSearch.bind(this));return codeSearchEl;}
7864const timeColumn_={title:'Time',value(row){const typeEl=document.createElement('span');typeEl.innerText=(row.time/1000.0).toFixed(3)+' ms';return typeEl;},width:'100px',cmp(a,b){return a.time-b.time;}};const countColumn_={title:'Count',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.count;return typeEl;},width:'100px',cmp(a,b){return a.count-b.count;}};function percentColumn_(title,totalTime){return{title,value(row){const typeEl=document.createElement('span');typeEl.innerText=(row.time/totalTime*100).toFixed(3)+'%';return typeEl;},width:'100px',cmp(a,b){return a.time-b.time;}};}
7865function nameColumn_(handleCodeSearch,modifyName){return{title:'Name',value(row){const typeEl=document.createElement('span');let name=row.name;if(modifyName)name=modifyName(name);typeEl.innerText=name;if(!(row instanceof tr.e.v8.RuntimeStatsGroup)){typeEl.title='click ? for code search';typeEl.entryName=name;const codeSearchEl=createCodeSearchEl_(handleCodeSearch);typeEl.appendChild(codeSearchEl);}
7866return typeEl;},width:'200px',showExpandButtons:true};}
7867function initializeCommonOptions_(table){table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;table.sortColumnIndex=1;table.sortDescending=true;table.subRowsPropertyName='values';}
7868Polymer({is:'tr-ui-e-v8-runtime-call-stats-table',ready(){this.table_=this.$.table;this.blink_rcs_table_=this.$.blink_rcs_table;this.totalTime_=0;},constructV8RCSTable_(totalTime){this.table_.tableColumns=[nameColumn_(handleCodeSearchForV8_),timeColumn_,countColumn_,percentColumn_('Percent',totalTime)];initializeCommonOptions_(this.table_);},constructBlinkRCSTable_(blinkCppTotalTime){this.blink_rcs_table_.tableColumns=[nameColumn_(handleCodeSearchForBlink_,removeBlinkPrefix_),timeColumn_,countColumn_,percentColumn_('Percent (of \'Blink C++\' + \'API\')',blinkCppTotalTime)];initializeCommonOptions_(this.blink_rcs_table_);},set slices(slices){const runtimeGroupCollection=new tr.e.v8.RuntimeStatsGroupCollection();runtimeGroupCollection.addSlices(slices);if(runtimeGroupCollection.totalTime>0){this.$.v8_rcs_heading.textContent='V8 Runtime Call Stats';this.constructV8RCSTable_(runtimeGroupCollection.totalTime);this.table_.tableRows=runtimeGroupCollection.runtimeGroups;this.table_.rebuild();}
7869const blinkRCSGroupCollection=runtimeGroupCollection.blinkRCSGroupCollection;if(runtimeGroupCollection.blinkCppTotalTime>0&&blinkRCSGroupCollection.totalTime>0){this.$.blink_rcs_heading.textContent='Blink Runtime Call Stats';this.constructBlinkRCSTable_(runtimeGroupCollection.blinkCppTotalTime);this.blink_rcs_table_.tableRows=blinkRCSGroupCollection.runtimeGroups;this.blink_rcs_table_.rebuild();}}});return{};});'use strict';Polymer({is:'tr-ui-e-multi-v8-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.runtimeCallStats.slices=selection;this.$.content.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-multi-v8-thread-slice-sub-view',tr.e.v8.V8ThreadSlice,{multi:true,title:'V8 slices'});'use strict';Polymer({is:'tr-ui-e-single-v8-gc-stats-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.content.selection=selection;this.$.gcObjectsStats.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-single-v8-gc-stats-thread-slice-sub-view',tr.e.v8.V8GCStatsThreadSlice,{multi:false,title:'V8 GC stats slice'});'use strict';Polymer({is:'tr-ui-e-single-v8-ic-stats-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.table.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-single-v8-ic-stats-thread-slice-sub-view',tr.e.v8.V8ICStatsThreadSlice,{multi:false,title:'V8 IC stats slice'});'use strict';Polymer({is:'tr-ui-e-single-v8-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.runtimeCallStats.slices=selection;this.$.content.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-single-v8-thread-slice-sub-view',tr.e.v8.V8ThreadSlice,{multi:false,title:'V8 slice'});'use strict';tr.exportTo('tr.c',function(){function ScriptingObject(){}
7870ScriptingObject.prototype={onModelChanged(model){}};return{ScriptingObject,};});'use strict';tr.exportTo('tr.c',function(){function ScriptingController(brushingStateController){this.brushingStateController_=brushingStateController;this.scriptObjectNames_=[];this.scriptObjectValues_=[];this.brushingStateController.addEventListener('model-changed',this.onModelChanged_.bind(this));const typeInfos=ScriptingObjectRegistry.getAllRegisteredTypeInfos();typeInfos.forEach(function(typeInfo){this.addScriptObject(typeInfo.metadata.name,typeInfo.constructor);global[typeInfo.metadata.name]=typeInfo.constructor;},this);}
7871function ScriptingObjectRegistry(){}
7872const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(ScriptingObjectRegistry,options);ScriptingController.prototype={get brushingStateController(){return this.brushingStateController_;},onModelChanged_(){this.scriptObjectValues_.forEach(function(v){if(v.onModelChanged){v.onModelChanged(this.brushingStateController.model);}},this);},addScriptObject(name,value){this.scriptObjectNames_.push(name);this.scriptObjectValues_.push(value);},executeCommand(command){const f=new Function(this.scriptObjectNames_,'return eval('+command+')');return f.apply(null,this.scriptObjectValues_);}};return{ScriptingController,ScriptingObjectRegistry,};});'use strict';tr.exportTo('tr.metrics',function(){function MetricRegistry(){}
7873const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};tr.b.decorateExtensionRegistry(MetricRegistry,options);function camelCaseToHackerString(camelCase){let hackerString='';for(const c of camelCase){const lowered=c.toLocaleLowerCase();if(lowered===c){hackerString+=c;}else{hackerString+='_'+lowered;}}
7874return hackerString;}
7875function getCallStack(){try{throw new Error();}catch(error){return error.stack;}}
7876function getPathsFromStack(stack){return stack.split('\n').map(line=>{line=line.replace(/^ */,'').split(':');if(line.length<4)return'';return line[line.length-3].split('/');}).filter(x=>x);}
7877MetricRegistry.checkFilename=function(metricName,opt_metricPathForTest){if(metricName==='runtimeStatsTotalMetric'||metricName==='v8AndMemoryMetrics'){return;}
7878const expectedFilename=camelCaseToHackerString(metricName)+'.html';const stack=getCallStack();let metricPath=opt_metricPathForTest;if(metricPath===undefined){const paths=getPathsFromStack(stack);const METRIC_STACK_INDEX=5;if(paths.length<=METRIC_STACK_INDEX||paths[METRIC_STACK_INDEX].join('/')===paths[0].join('/')){return;}
7879metricPath=paths[METRIC_STACK_INDEX].slice(paths[METRIC_STACK_INDEX].length-2);}
7880if(!metricPath[1].endsWith('_test.html')&&metricPath[1]!==expectedFilename&&metricPath.join('_')!==expectedFilename){throw new Error('Expected '+metricName+' to be in a file named '+
7881expectedFilename+'; actual: '+metricPath.join('/')+'; stack: '+stack.replace(/\n/g,'\n  '));}};MetricRegistry.addEventListener('will-register',function(e){const metric=e.typeInfo.constructor;if(!(metric instanceof Function)){throw new Error('Metrics must be functions.');}
7882if(!metric.name.endsWith('Metric')&&!metric.name.endsWith('Metrics')){throw new Error('Metric names must end with "Metric" or "Metrics".');}
7883if(metric.length<2){throw new Error('Metrics take a HistogramSet and a Model and '+'optionally an options dictionary.');}
7884MetricRegistry.checkFilename(metric.name);});return{MetricRegistry,};});'use strict';tr.exportTo('tr.metrics',function(){function accessibilityMetric(histograms,model){const browserAccessibilityEventsHist=new tr.v.Histogram('browser_accessibility_events',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);browserAccessibilityEventsHist.description='Browser accessibility events time';const renderAccessibilityEventsHist=new tr.v.Histogram('render_accessibility_events',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);renderAccessibilityEventsHist.description='Render accessibility events time';const renderAccessibilityLocationsHist=new tr.v.Histogram('render_accessibility_locations',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);renderAccessibilityLocationsHist.description='Render accessibility locations time';const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(chromeHelper===undefined)return;for(const rendererHelper of Object.values(chromeHelper.rendererHelpers)){const mainThread=rendererHelper.mainThread;if(mainThread===undefined)continue;for(const slice of mainThread.getDescendantEvents()){if(!(slice instanceof tr.model.ThreadSlice))continue;if(slice.title==='RenderAccessibilityImpl::SendPendingAccessibilityEvents'){renderAccessibilityEventsHist.addSample(slice.duration,{event:new tr.v.d.RelatedEventSet(slice)});}
7885if(slice.title==='RenderAccessibilityImpl::SendLocationChanges'){renderAccessibilityLocationsHist.addSample(slice.duration,{event:new tr.v.d.RelatedEventSet(slice)});}}}
7886for(const browserHelper of Object.values(chromeHelper.browserHelpers)){const mainThread=browserHelper.mainThread;if(mainThread===undefined)continue;for(const slice of mainThread.getDescendantEvents()){if(slice.title==='BrowserAccessibilityManager::OnAccessibilityEvents'){browserAccessibilityEventsHist.addSample(slice.duration,{event:new tr.v.d.RelatedEventSet(slice)});}}}
7887histograms.addHistogram(browserAccessibilityEventsHist);histograms.addHistogram(renderAccessibilityEventsHist);histograms.addHistogram(renderAccessibilityLocationsHist);}
7888tr.metrics.MetricRegistry.register(accessibilityMetric);return{accessibilityMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function androidStartupMetric(histograms,model){const messageLoopStartHistogram=histograms.createHistogram('messageloop_start_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,[]);const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(!chromeHelper)return;for(const helper of chromeHelper.browserHelpers){for(const ev of helper.mainThread.asyncSliceGroup.childEvents()){if(ev.title==='Startup.BrowserMessageLoopStartTimeFromMainEntry3'){messageLoopStartHistogram.addSample(ev.duration,{events:new tr.v.d.RelatedEventSet([ev])});}}}}
7889tr.metrics.MetricRegistry.register(androidStartupMetric);return{androidStartupMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const MAX_INPUT_EVENT_TO_STARTUP_DELAY_IN_MS=2000;const MIN_DRAW_DELAY_IN_MS=80;const MAX_DRAW_DELAY_IN_MS=2000;function findProcess(processName,model){for(const pid in model.processes){const process=model.processes[pid];if(process.name===processName){return process;}}
7890return undefined;}
7891function findThreads(process,threadPrefix){if(process===undefined)return undefined;const threads=[];for(const tid in process.threads){const thread=process.threads[tid];if(thread.name.startsWith(threadPrefix)){threads.push(thread);}}
7892return threads;}
7893function findUIThread(process){if(process===undefined)return undefined;const threads=findThreads(process,'UI Thread');if(threads!==undefined&&threads.length===1){return threads[0];}
7894return process.threads[process.pid];}
7895function findLaunchSlices(model){const launches=[];const binders=findThreads(findProcess('system_server',model),'Binder');for(const binderId in binders){const binder=binders[binderId];for(const sliceId in binder.asyncSliceGroup.slices){const slice=binder.asyncSliceGroup.slices[sliceId];if(slice.title.startsWith('launching:')){launches.push(slice);}}}
7896return launches;}
7897function findDrawSlice(appName,startNotBefore,model){let drawSlice=undefined;const thread=findUIThread(findProcess(appName,model));if(thread===undefined)return undefined;for(const sliceId in thread.sliceGroup.slices){const slice=thread.sliceGroup.slices[sliceId];if(slice.start<startNotBefore+MIN_DRAW_DELAY_IN_MS||slice.start>startNotBefore+MAX_DRAW_DELAY_IN_MS)continue;if(slice.title!=='draw')continue;if(drawSlice===undefined||slice.start<drawSlice.start){drawSlice=slice;}}
7898return drawSlice;}
7899function findInputEventSlice(endNotAfter,model){const endNotBefore=endNotAfter-MAX_INPUT_EVENT_TO_STARTUP_DELAY_IN_MS;let inputSlice=undefined;const systemUi=findUIThread(findProcess('com.android.systemui',model));if(systemUi===undefined)return undefined;for(const sliceId in systemUi.asyncSliceGroup.slices){const slice=systemUi.asyncSliceGroup.slices[sliceId];if(slice.end>endNotAfter||slice.end<endNotBefore)continue;if(slice.title!=='deliverInputEvent')continue;if(inputSlice===undefined||slice.end>inputSlice.end){inputSlice=slice;}}
7900return inputSlice;}
7901function computeStartupTimeInMs(appName,launchSlice,model){let startupStart=launchSlice.start;let startupEnd=launchSlice.end;const drawSlice=findDrawSlice(appName,launchSlice.end,model);if(drawSlice!==undefined){startupEnd=drawSlice.end;}
7902const inputSlice=findInputEventSlice(launchSlice.start,model);if(inputSlice!==undefined){startupStart=inputSlice.start;}
7903return startupEnd-startupStart;}
7904function measureStartup(histograms,model){const launches=findLaunchSlices(model);for(const sliceId in launches){const launchSlice=launches[sliceId];const appName=launchSlice.title.split(': ')[1];const startupMs=computeStartupTimeInMs(appName,launchSlice,model);histograms.createHistogram(`android:systrace:startup:${appName}`,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,startupMs);}}
7905function measureThreadStates(histograms,model,rangeOfInterest){for(const pid in model.processes){const process=model.processes[pid];if(process.name===undefined)continue;let hasSlices=false;let timeRunning=0;let timeRunnable=0;let timeSleeping=0;let timeUninterruptible=0;let timeBlockIO=0;let timeUnknown=0;for(const tid in process.threads){const thread=process.threads[tid];if(thread.timeSlices===undefined)continue;for(const sliceId in thread.timeSlices){const slice=thread.timeSlices[sliceId];const sliceRange=tr.b.math.Range.fromExplicitRange(slice.start,slice.end);const intersection=rangeOfInterest.findIntersection(sliceRange);const duration=intersection.duration;if(duration===0)continue;hasSlices=true;if(slice.title==='Running'){timeRunning+=duration;}else if(slice.title==='Runnable'){timeRunnable+=duration;}else if(slice.title==='Sleeping'){timeSleeping+=duration;}else if(slice.title.startsWith('Uninterruptible')){timeUninterruptible+=duration;if(slice.title.includes('Block I/O'))timeBlockIO+=duration;}else{timeUnknown+=duration;}}}
7906if(hasSlices){const wall=rangeOfInterest.max-rangeOfInterest.min;histograms.createHistogram(`android:systrace:threadtime:${process.name}:running`,tr.b.Unit.byName.normalizedPercentage,timeRunning/wall);histograms.createHistogram(`android:systrace:threadtime:${process.name}:runnable`,tr.b.Unit.byName.normalizedPercentage,timeRunnable/wall);histograms.createHistogram(`android:systrace:threadtime:${process.name}:sleeping`,tr.b.Unit.byName.normalizedPercentage,timeSleeping/wall);histograms.createHistogram(`android:systrace:threadtime:${process.name}:blockio`,tr.b.Unit.byName.normalizedPercentage,timeBlockIO/wall);histograms.createHistogram(`android:systrace:threadtime:${process.name}:uninterruptible`,tr.b.Unit.byName.normalizedPercentage,timeUninterruptible/wall);if(timeUnknown>0){histograms.createHistogram(`android:systrace:threadtime:${process.name}:unknown`,tr.b.Unit.byName.normalizedPercentage,timeUnknown/wall);}}}}
7907function androidSystraceMetric(histograms,model,options){let rangeOfInterest=model.bounds;if(options!==undefined&&options.rangeOfInterest!==undefined){rangeOfInterest=options.rangeOfInterest;}
7908measureStartup(histograms,model);measureThreadStates(histograms,model,rangeOfInterest);}
7909tr.metrics.MetricRegistry.register(androidSystraceMetric,{supportsRangeOfInterest:true});return{androidSystraceMetric,};});'use strict';tr.exportTo('tr.b.math',function(){const PERCENTILE_PRECISION=1e-7;function PiecewiseLinearFunction(){this.pieces=[];}
7910PiecewiseLinearFunction.prototype={push(x1,y1,x2,y2){if(x1>=x2){throw new Error('Invalid segment');}
7911if(this.pieces.length>0&&this.pieces[this.pieces.length-1].x2>x1){throw new Error('Potentially overlapping segments');}
7912if(x1<x2){this.pieces.push(new Piece(x1,y1,x2,y2));}},partBelow(y){return this.pieces.reduce((acc,p)=>(acc+p.partBelow(y)),0);},get min(){return this.pieces.reduce((acc,p)=>Math.min(acc,p.min),Infinity);},get max(){return this.pieces.reduce((acc,p)=>Math.max(acc,p.max),-Infinity);},get average(){let weightedSum=0;let totalWeight=0;this.pieces.forEach(function(piece){weightedSum+=piece.width*piece.average;totalWeight+=piece.width;});if(totalWeight===0)return 0;return weightedSum/totalWeight;},percentile(percent){if(!(percent>=0&&percent<=1)){throw new Error('percent must be [0,1]');}
7913let lower=this.min;let upper=this.max;const total=this.partBelow(upper);if(total===0)return 0;while(upper-lower>PERCENTILE_PRECISION){const middle=(lower+upper)/2;const below=this.partBelow(middle);if(below/total<percent){lower=middle;}else{upper=middle;}}
7914return(lower+upper)/2;}};function Piece(x1,y1,x2,y2){this.x1=x1;this.y1=y1;this.x2=x2;this.y2=y2;}
7915Piece.prototype={partBelow(y){const width=this.width;if(width===0)return 0;const minY=this.min;const maxY=this.max;if(y>=maxY)return width;if(y<minY)return 0;return(y-minY)/(maxY-minY)*width;},get min(){return Math.min(this.y1,this.y2);},get max(){return Math.max(this.y1,this.y2);},get average(){return(this.y1+this.y2)/2;},get width(){return this.x2-this.x1;}};return{PiecewiseLinearFunction,};});'use strict';tr.exportTo('tr.metrics.v8.utils',function(){const IDLE_TASK_EVENT='SingleThreadIdleTaskRunner::RunTask';const V8_EXECUTE='V8.Execute';const GC_EVENT_PREFIX='V8.GC';const FULL_GC_EVENT='V8.GCCompactor';const LOW_MEMORY_EVENT='V8.GCLowMemoryNotification';const MAJOR_GC_EVENT='MajorGC';const MINOR_GC_EVENT='MinorGC';const TOP_GC_EVENTS={'V8.GCCompactor':'v8-gc-full-mark-compactor','V8.GCFinalizeMC':'v8-gc-latency-mark-compactor','V8.GCFinalizeMCReduceMemory':'v8-gc-memory-mark-compactor','V8.GCIncrementalMarking':'v8-gc-incremental-step','V8.GCIncrementalMarkingFinalize':'v8-gc-incremental-finalize','V8.GCIncrementalMarkingStart':'v8-gc-incremental-start','V8.GCPhantomHandleProcessingCallback':'v8-gc-phantom-handle-callback','V8.GCScavenger':'v8-gc-scavenger'};const LOW_MEMORY_MARK_COMPACTOR='v8-gc-low-memory-mark-compactor';function findParent(event,predicate){let parent=event.parentSlice;while(parent){if(predicate(parent)){return parent;}
7916parent=parent.parentSlice;}
7917return null;}
7918function isIdleTask(event){return event.title===IDLE_TASK_EVENT;}
7919function isLowMemoryEvent(event){return event.title===LOW_MEMORY_EVENT;}
7920function isV8Event(event){return event.title.startsWith('V8.');}
7921function isV8ExecuteEvent(event){return event.title===V8_EXECUTE;}
7922function isTopV8ExecuteEvent(event){return isV8ExecuteEvent(event)&&findParent(isV8ExecuteEvent)===null;}
7923function isGarbageCollectionEvent(event){return event.title&&event.title.startsWith(GC_EVENT_PREFIX)&&event.title!==LOW_MEMORY_EVENT;}
7924function isTopGarbageCollectionEvent(event){return event.title in TOP_GC_EVENTS;}
7925function isForcedGarbageCollectionEvent(event){return findParent(event,isLowMemoryEvent)!==null;}
7926function isSubGarbageCollectionEvent(event){return isGarbageCollectionEvent(event)&&event.parentSlice&&(isTopGarbageCollectionEvent(event.parentSlice)||event.parentSlice.title===MAJOR_GC_EVENT||event.parentSlice.title===MINOR_GC_EVENT);}
7927function isFullMarkCompactorEvent(event){return event.title==='V8.GCCompactor';}
7928function isIncrementalMarkingEvent(event){return event.title.startsWith('V8.GCIncrementalMarking');}
7929function isLatencyMarkCompactorEvent(event){return event.title==='V8.GCFinalizeMC';}
7930function isMemoryMarkCompactorEvent(event){return event.title==='V8.GCFinalizeMCReduceMemory';}
7931function isScavengerEvent(event){return event.title==='V8.GCScavenger';}
7932function isCompileOptimizeRCSCategory(name){return name==='Optimize';}
7933function isCompileUnoptimizeRCSCategory(name){return name==='Compile';}
7934function isCompileParseRCSCategory(name){return name==='Parse';}
7935function isCompileRCSCategory(name){return name==='Compile'||name==='Optimize'||name==='Parse';}
7936function isV8RCSEvent(event){return event instanceof tr.e.v8.V8ThreadSlice;}
7937function topGarbageCollectionEventName(event){if(event.title===FULL_GC_EVENT){if(findParent(event,isLowMemoryEvent)){return LOW_MEMORY_MARK_COMPACTOR;}}
7938return TOP_GC_EVENTS[event.title];}
7939function subGarbageCollectionEventName(event){const topEvent=findParent(event,isTopGarbageCollectionEvent);const prefix=topEvent?topGarbageCollectionEventName(topEvent):'unknown';const name=event.title.replace('V8.GC_MC_','').replace('V8.GC_SCAVENGER_','').replace('V8.GC_','').replace(/_/g,'-').toLowerCase();return prefix+'-'+name;}
7940function groupAndProcessEvents(model,filterCallback,nameCallback,processCallback){const nameToEvents={};for(const event of model.getDescendantEvents()){if(!filterCallback(event))continue;const name=nameCallback(event);nameToEvents[name]=nameToEvents[name]||[];nameToEvents[name].push(event);}
7941for(const[name,events]of Object.entries(nameToEvents)){processCallback(name,events);}}
7942function unionOfIntervals(intervals){if(intervals.length===0)return[];return tr.b.math.mergeRanges(intervals.map(x=>{return{min:x.start,max:x.end};}),1e-6,function(ranges){return{start:ranges.reduce((acc,x)=>Math.min(acc,x.min),ranges[0].min),end:ranges.reduce((acc,x)=>Math.max(acc,x.max),ranges[0].max)};});}
7943function hasV8Stats(globalMemoryDump){let v8stats=undefined;globalMemoryDump.iterateContainerDumps(function(dump){v8stats=v8stats||dump.getMemoryAllocatorDumpByFullName('v8');});return!!v8stats;}
7944function rangeForMemoryDumps(model){const startOfFirstDumpWithV8=model.globalMemoryDumps.filter(hasV8Stats).reduce((start,dump)=>Math.min(start,dump.start),Infinity);if(startOfFirstDumpWithV8===Infinity)return new tr.b.math.Range();return tr.b.math.Range.fromExplicitRange(startOfFirstDumpWithV8,Infinity);}
7945return{findParent,groupAndProcessEvents,isForcedGarbageCollectionEvent,isFullMarkCompactorEvent,isGarbageCollectionEvent,isIdleTask,isIncrementalMarkingEvent,isLatencyMarkCompactorEvent,isLowMemoryEvent,isMemoryMarkCompactorEvent,isScavengerEvent,isSubGarbageCollectionEvent,isTopGarbageCollectionEvent,isTopV8ExecuteEvent,isV8Event,isV8ExecuteEvent,isV8RCSEvent,isCompileRCSCategory,isCompileOptimizeRCSCategory,isCompileUnoptimizeRCSCategory,isCompileParseRCSCategory,rangeForMemoryDumps,subGarbageCollectionEventName,topGarbageCollectionEventName,unionOfIntervals,};});'use strict';tr.exportTo('tr.metrics.blink',function(){const BLINK_GC_EVENTS={'BlinkGCMarking':'blink-gc-marking','ThreadState::completeSweep':'blink-gc-complete-sweep','ThreadState::performIdleLazySweep':'blink-gc-idle-lazy-sweep'};function isBlinkGarbageCollectionEvent(event){return event.title in BLINK_GC_EVENTS;}
7946function blinkGarbageCollectionEventName(event){return BLINK_GC_EVENTS[event.title];}
7947function blinkGcMetric(histograms,model){addDurationOfTopEvents(histograms,model);addTotalDurationOfTopEvents(histograms,model);addIdleTimesOfTopEvents(histograms,model);addTotalIdleTimesOfTopEvents(histograms,model);}
7948tr.metrics.MetricRegistry.register(blinkGcMetric);const timeDurationInMs_smallerIsBetter=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;const percentage_biggerIsBetter=tr.b.Unit.byName.normalizedPercentage_biggerIsBetter;const CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(0,20,200).addExponentialBins(200,100);function createNumericForTopEventTime(name){const n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:true,max:true,min:false,std:true,sum:true,percentile:[0.90]});return n;}
7949function createNumericForIdleTime(name){const n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:true,percentile:[]});return n;}
7950function createPercentage(name,numerator,denominator){const histogram=new tr.v.Histogram(name,percentage_biggerIsBetter);if(denominator===0){histogram.addSample(0);}else{histogram.addSample(numerator/denominator);}
7951return histogram;}
7952function addDurationOfTopEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,blinkGarbageCollectionEventName,function(name,events){const cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});histograms.addHistogram(cpuDuration);});}
7953function addTotalDurationOfTopEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,event=>'blink-gc-total',function(name,events){const cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});histograms.addHistogram(cpuDuration);});}
7954function addIdleTimesOfTopEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,blinkGarbageCollectionEventName,function(name,events){addIdleTimes(histograms,model,name,events);});}
7955function addTotalIdleTimesOfTopEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,event=>'blink-gc-total',function(name,events){addIdleTimes(histograms,model,name,events);});}
7956function addIdleTimes(histograms,model,name,events){const cpuDuration=createNumericForIdleTime(name+'_cpu');const insideIdle=createNumericForIdleTime(name+'_inside_idle');const outsideIdle=createNumericForIdleTime(name+'_outside_idle');const idleDeadlineOverrun=createNumericForIdleTime(name+'_idle_deadline_overrun');events.forEach(function(event){const idleTask=tr.metrics.v8.utils.findParent(event,tr.metrics.v8.utils.isIdleTask);let inside=0;let overrun=0;if(idleTask){const allottedTime=idleTask.args.allotted_time_ms;if(event.duration>allottedTime){overrun=event.duration-allottedTime;inside=event.cpuDuration*allottedTime/event.duration;}else{inside=event.cpuDuration;}}
7957cpuDuration.addSample(event.cpuDuration);insideIdle.addSample(inside);outsideIdle.addSample(event.cpuDuration-inside);idleDeadlineOverrun.addSample(overrun);});histograms.addHistogram(idleDeadlineOverrun);histograms.addHistogram(outsideIdle);const percentage=createPercentage(name+'_percentage_idle',insideIdle.sum,cpuDuration.sum);histograms.addHistogram(percentage);}
7958return{blinkGcMetric,};});'use strict';tr.exportTo('tr.metrics.blink',function(){function leakDetectionMetric(histograms,model){const modelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(modelHelper===undefined){throw new Error('Chrome is not present.');}
7959const rendererHelpers=modelHelper.rendererHelpers;if(Object.keys(rendererHelpers).length===0){throw new Error('Renderer process is not present.');}
7960const pids=Object.keys(rendererHelpers);const chromeDumps=tr.metrics.sh.splitGlobalDumpsByBrowserName(model,undefined).get('chrome');const sumCounter=new Map();for(const pid of pids){for(const[key,count]of countLeakedBlinkObjects(chromeDumps,pid)){sumCounter.set(key,(sumCounter.get(key)||0)+count);}}
7961for(const[key,count]of sumCounter){histograms.createHistogram('Leaked '+key,tr.b.Unit.byName.count_smallerIsBetter,count);}
7962for(const[key,count]of sumCounter){if(count>0){throw new Error('Memory leak is found.');}}}
7963tr.metrics.MetricRegistry.register(leakDetectionMetric);function countLeakedBlinkObjects(dumps,pid){if(dumps===undefined||dumps.length<2){throw new Error('Expected at least two memory dumps.');}
7964const firstCounter=countBlinkObjects(dumps[0],pid);const lastCounter=countBlinkObjects(dumps[dumps.length-1],pid);const diffCounter=new Map();for(const[key,lastCount]of lastCounter){diffCounter.set(key,lastCount-firstCounter.get(key));}
7965return diffCounter;}
7966function countBlinkObjects(dump,pid){const counter=new Map();const processesMemoryDumps=dump.processMemoryDumps;if(processesMemoryDumps[pid]===undefined)return counter;const blinkObjectsDump=processesMemoryDumps[pid].memoryAllocatorDumps.find(dump=>dump.fullName==='blink_objects');for(const v of blinkObjectsDump.children){counter.set(v.name,v.numerics.object_count.value);}
7967return counter;}
7968return{leakDetectionMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function getCpuSnapshotsFromModel(model){const snapshots=[];for(const pid in model.processes){const snapshotInstances=model.processes[pid].objects.getAllInstancesNamed('CPUSnapshots');if(!snapshotInstances)continue;for(const object of snapshotInstances[0].snapshots){snapshots.push(object.args.processes);}}
7969return snapshots;}
7970function getProcessSumsFromSnapshot(snapshot){const processSums=new Map();for(const processData of snapshot){const processName=processData.name;if(!(processSums.has(processName))){processSums.set(processName,{sum:0.0,paths:new Set()});}
7971processSums.get(processName).sum+=parseFloat(processData.pCpu);if(processData.path){processSums.get(processName).paths.add(processData.path);}}
7972return processSums;}
7973function buildNumericsFromSnapshots(snapshots){const processNumerics=new Map();for(const snapshot of snapshots){const processSums=getProcessSumsFromSnapshot(snapshot);for(const[processName,processData]of processSums.entries()){if(!(processNumerics.has(processName))){processNumerics.set(processName,{numeric:new tr.v.Histogram('cpu:percent:'+processName,tr.b.Unit.byName.normalizedPercentage_smallerIsBetter),paths:new Set()});}
7974processNumerics.get(processName).numeric.addSample(processData.sum/100.0);for(const path of processData.paths){processNumerics.get(processName).paths.add(path);}}}
7975return processNumerics;}
7976function cpuProcessMetric(histograms,model){const snapshots=getCpuSnapshotsFromModel(model);const processNumerics=buildNumericsFromSnapshots(snapshots);for(const[processName,processData]of processNumerics){const numeric=processData.numeric;const missingSnapshotCount=snapshots.length-numeric.numValues;for(let i=0;i<missingSnapshotCount;i++){numeric.addSample(0);}
7977numeric.diagnostics.set('paths',new
7978tr.v.d.GenericSet([...processData.paths]));histograms.addHistogram(numeric);}}
7979tr.metrics.MetricRegistry.register(cpuProcessMetric);return{cpuProcessMetric,};});'use strict';tr.exportTo('tr.metrics',function(){function mediaMetric(histograms,model){const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(chromeHelper===undefined)return;for(const rendererHelper of Object.values(chromeHelper.rendererHelpers)){const mainThread=rendererHelper.mainThread;if(mainThread===undefined)continue;const compositorThread=rendererHelper.compositorThread;const audioThreads=rendererHelper.process.findAllThreadsNamed('AudioOutputDevice');if(compositorThread===undefined&&audioThreads.length===0)continue;const processData=new PerProcessData();processData.recordPlayStarts(mainThread);if(!processData.hasPlaybacks)continue;if(compositorThread!==undefined){processData.calculateTimeToVideoPlays(compositorThread);processData.calculateDroppedFrameCounts(compositorThread);}
7980if(audioThreads.length!==0){processData.calculateTimeToAudioPlays(audioThreads);}
7981processData.calculateSeekTimes(mainThread);processData.calculateBufferingTimes(mainThread);processData.addMetricToHistograms(histograms);}}
7982class PerProcessData{constructor(){this.playbackIdToDataMap_=new Map();}
7983recordPlayStarts(mainThread){for(const event of mainThread.sliceGroup.getDescendantEvents()){if(event.title==='WebMediaPlayerImpl::DoLoad'){const id=event.args.id;if(this.playbackIdToDataMap_.has(id)){throw new Error('Unexpected multiple initialization of a media playback');}
7984this.playbackIdToDataMap_.set(id,new PerPlaybackData(event.start));}}}
7985get hasPlaybacks(){return this.playbackIdToDataMap_.size>0;}
7986calculateTimeToVideoPlays(compositorThread){for(const event of compositorThread.sliceGroup.getDescendantEvents()){if(event.title==='VideoRendererImpl::Render'){this.getPerPlaybackObject_(event.args.id).processVideoRenderTime(event.start);}}}
7987calculateTimeToAudioPlays(audioThreads){for(const audioThread of audioThreads){for(const event of audioThread.sliceGroup.getDescendantEvents()){if(event.title==='AudioRendererImpl::Render'){this.getPerPlaybackObject_(event.args.id).processAudioRenderTime(event.start);}}}}
7988calculateSeekTimes(mainThread){for(const event of mainThread.sliceGroup.getDescendantEvents()){if(event.title==='WebMediaPlayerImpl::DoSeek'){this.getPerPlaybackObject_(event.args.id).processDoSeek(event.args.target,event.start);}else if(event.title==='WebMediaPlayerImpl::OnPipelineSeeked'){this.getPerPlaybackObject_(event.args.id).processOnPipelineSeeked(event.args.target,event.start);}else if(event.title==='WebMediaPlayerImpl::BufferingHaveEnough'){this.getPerPlaybackObject_(event.args.id).processBufferingHaveEnough(event.start);}}}
7989calculateBufferingTimes(mainThread){for(const event of mainThread.sliceGroup.getDescendantEvents()){if(event.title==='WebMediaPlayerImpl::OnEnded'){this.getPerPlaybackObject_(event.args.id).processOnEnded(event.start,event.args.duration);}}}
7990calculateDroppedFrameCounts(compositorThread){for(const event of compositorThread.sliceGroup.getDescendantEvents()){if(event.title==='VideoFramesDropped'){this.getPerPlaybackObject_(event.args.id).processVideoFramesDropped(event.args.count);}}}
7991addMetricToHistograms(histograms){for(const[id,playbackData]of this.playbackIdToDataMap_){playbackData.addMetricToHistograms(histograms);}}
7992getPerPlaybackObject_(playbackId){let perPlaybackObject=this.playbackIdToDataMap_.get(playbackId);if(perPlaybackObject===undefined){perPlaybackObject=new PerPlaybackData(undefined);this.playbackIdToDataMap_.set(playbackId,perPlaybackObject);}
7993return perPlaybackObject;}}
7994class PerPlaybackData{constructor(playStartTime){this.playStart_=playStartTime;this.timeToVideoPlay_=undefined;this.timeToAudioPlay_=undefined;this.bufferingTime_=undefined;this.droppedFrameCount_=0;this.seekError_=false;this.seekTimes_=new Map();this.currentSeek_=undefined;}
7995get timeToVideoPlay(){return this.timeToVideoPlay_;}
7996get timeToAudioPlay(){return this.timeToAudioPlay_;}
7997get bufferingTime(){return this.bufferingTime_;}
7998get droppedFrameCount(){return(this.timeToVideoPlay_!==undefined)?this.droppedFrameCount_:undefined;}
7999get seekTimes(){if(this.seekError_||this.currentSeek_!==undefined)return new Map();return this.seekTimes_;}
8000processVideoRenderTime(videoRenderTime){if(this.playStart_!==undefined&&this.timeToVideoPlay_===undefined){this.timeToVideoPlay_=videoRenderTime-this.playStart_;}}
8001processAudioRenderTime(audioRenderTime){if(this.playStart_!==undefined&&this.timeToAudioPlay_===undefined){this.timeToAudioPlay_=audioRenderTime-this.playStart_;}}
8002processVideoFramesDropped(count){this.droppedFrameCount_+=count;}
8003processDoSeek(target,startTime){if(this.currentSeek_!==undefined){this.seekError_=true;return;}
8004this.currentSeek_={target,startTime};this.seekTimes_.set(target,this.currentSeek_);}
8005processOnPipelineSeeked(target,time){if(this.seekError_)return;const currentSeek=this.currentSeek_;if(currentSeek===undefined){return;}
8006if(currentSeek.target!==target){this.seekError_=true;return;}
8007if(currentSeek.pipelineSeekTime!==undefined){this.seekError_=true;return;}
8008currentSeek.pipelineSeekTime=time-currentSeek.startTime;}
8009processBufferingHaveEnough(time){if(this.seekError_)return;const currentSeek=this.currentSeek_;if(currentSeek===undefined){return;}
8010if(currentSeek.pipelineSeekTime===undefined){return;}
8011currentSeek.seekTime=time-currentSeek.startTime;this.currentSeek_=undefined;}
8012processOnEnded(playEndTime,duration){if(this.playStart_===undefined)return;if(this.seekTimes_.size!==0||this.seekError_)return;if(this.bufferingTime_!==undefined)return;duration=tr.b.convertUnit(duration,tr.b.UnitPrefixScale.METRIC.NONE,tr.b.UnitPrefixScale.METRIC.MILLI);const playTime=playEndTime-this.playStart_;if(this.timeToVideoPlay_!==undefined){this.bufferingTime_=playTime-duration-this.timeToVideoPlay_;}else if(this.timeToAudioPlay!==undefined){this.bufferingTime_=playTime-duration-this.timeToAudioPlay_;}}
8013addMetricToHistograms(histograms){this.addSample_(histograms,'time_to_video_play',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,this.timeToVideoPlay);this.addSample_(histograms,'time_to_audio_play',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,this.timeToAudioPlay);this.addSample_(histograms,'dropped_frame_count',tr.b.Unit.byName.count_smallerIsBetter,this.droppedFrameCount);for(const[key,value]of this.seekTimes.entries()){const keyString=key.toString().replace('.','_');this.addSample_(histograms,'pipeline_seek_time_'+keyString,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,value.pipelineSeekTime);this.addSample_(histograms,'seek_time_'+keyString,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,value.seekTime);}
8014this.addSample_(histograms,'buffering_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,this.bufferingTime);}
8015addSample_(histograms,name,unit,sample){if(sample===undefined)return;const histogram=histograms.getHistogramNamed(name);if(histogram===undefined){histograms.createHistogram(name,unit,sample);}else{histogram.addSample(sample);}}}
8016tr.metrics.MetricRegistry.register(mediaMetric);return{mediaMetric,};});'use strict';tr.exportTo('tr.metrics',function(){function sampleExceptionMetric(histograms,model){const hist=new tr.v.Histogram('foo',tr.b.Unit.byName.sizeInBytes_smallerIsBetter);hist.addSample(9);hist.addSample(91,{bar:new tr.v.d.GenericSet([{hello:42}])});for(const expectation of model.userModel.expectations){if(expectation instanceof tr.model.um.ResponseExpectation){}else if(expectation instanceof tr.model.um.AnimationExpectation){}else if(expectation instanceof tr.model.um.IdleExpectation){}else if(expectation instanceof tr.model.um.LoadExpectation){}}
8017const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);for(const[pid,process]of Object.entries(model.processes)){}
8018histograms.addHistogram(hist);throw new Error('There was an error');}
8019tr.metrics.MetricRegistry.register(sampleExceptionMetric);return{sampleExceptionMetric,};});'use strict';tr.exportTo('tr.metrics',function(){function sampleMetric(histograms,model){const hist=new tr.v.Histogram('foo',tr.b.Unit.byName.sizeInBytes_smallerIsBetter);hist.addSample(9);hist.addSample(91,{bar:new tr.v.d.GenericSet([{hello:42}])});for(const expectation of model.userModel.expectations){if(expectation instanceof tr.model.um.ResponseExpectation){}else if(expectation instanceof tr.model.um.AnimationExpectation){}else if(expectation instanceof tr.model.um.IdleExpectation){}else if(expectation instanceof tr.model.um.LoadExpectation){}}
8020const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);for(const[pid,process]of Object.entries(model.processes)){}
8021histograms.addHistogram(hist);}
8022tr.metrics.MetricRegistry.register(sampleMetric);return{sampleMetric,};});'use strict';tr.exportTo('tr.metrics',function(){const HANDLE_INPUT_EVENT_TITLE='WebViewImpl::handleInputEvent';function findPrecedingEvents_(eventsA,eventsB){const events=new Map();let eventsBIndex=0;for(const eventA of eventsA){for(;eventsBIndex<eventsB.length;eventsBIndex++){if(eventsB[eventsBIndex].start>eventA.start)break;}
8023if(eventsBIndex>0){events.set(eventA,eventsB[eventsBIndex-1]);}}
8024return events;}
8025function findFollowingEvents_(eventsA,eventsB){const events=new Map();let eventsBIndex=0;for(const eventA of eventsA){for(;eventsBIndex<eventsB.length;eventsBIndex++){if(eventsB[eventsBIndex].start>=eventA.start)break;}
8026if(eventsBIndex>=0&&eventsBIndex<eventsB.length){events.set(eventA,eventsB[eventsBIndex]);}}
8027return events;}
8028function getSpaNavigationStartCandidates_(rendererHelper,browserHelper){const isNavStartEvent=e=>{if(e.title===HANDLE_INPUT_EVENT_TITLE&&e.args.type==='MouseUp'){return true;}
8029return e.title==='NavigationControllerImpl::GoToIndex';};return[...rendererHelper.mainThread.sliceGroup.getDescendantEvents(),...browserHelper.mainThread.sliceGroup.getDescendantEvents()].filter(isNavStartEvent);}
8030function getSpaNavigationEvents_(rendererHelper){const isNavEvent=e=>e.category==='blink'&&e.title==='FrameLoader::updateForSameDocumentNavigation';return[...rendererHelper.mainThread.sliceGroup.getDescendantEvents()].filter(isNavEvent);}
8031function getInputLatencyEvents_(browserHelper){const isInputLatencyEvent=e=>e.title==='InputLatency::MouseUp';return browserHelper.getAllAsyncSlicesMatching(isInputLatencyEvent);}
8032function getInputLatencyEventByBindIdMap_(browserHelper){const inputLatencyEventByBindIdMap=new Map();for(const event of getInputLatencyEvents_(browserHelper)){inputLatencyEventByBindIdMap.set(event.args.data.trace_id,event);}
8033return inputLatencyEventByBindIdMap;}
8034function getSpaNavigationEventToNavigationStartMap_(rendererHelper,browserHelper){const mainThread=rendererHelper.mainThread;const spaNavEvents=getSpaNavigationEvents_(rendererHelper);const navStartCandidates=getSpaNavigationStartCandidates_(rendererHelper,browserHelper).sort(tr.importer.compareEvents);const spaNavEventToNavStartCandidateMap=findPrecedingEvents_(spaNavEvents,navStartCandidates);const inputLatencyEventByBindIdMap=getInputLatencyEventByBindIdMap_(browserHelper);const spaNavEventToNavStartEventMap=new Map();for(const[spaNavEvent,navStartCandidate]of
8035spaNavEventToNavStartCandidateMap){if(navStartCandidate.title===HANDLE_INPUT_EVENT_TITLE){const inputLatencySlice=inputLatencyEventByBindIdMap.get(Number(navStartCandidate.parentSlice.bindId));if(inputLatencySlice){spaNavEventToNavStartEventMap.set(spaNavEvent,inputLatencySlice);}}else{spaNavEventToNavStartEventMap.set(spaNavEvent,navStartCandidate);}}
8036return spaNavEventToNavStartEventMap;}
8037function getFirstPaintEvents_(rendererHelper){const isFirstPaintEvent=e=>e.category==='blink'&&e.title==='PaintLayerCompositor::updateIfNeededRecursive';return[...rendererHelper.mainThread.sliceGroup.getDescendantEvents()].filter(isFirstPaintEvent);}
8038function getSpaNavigationEventToFirstPaintEventMap_(rendererHelper){const spaNavEvents=getSpaNavigationEvents_(rendererHelper).sort(tr.importer.compareEvents);const firstPaintEvents=getFirstPaintEvents_(rendererHelper).sort(tr.importer.compareEvents);return findFollowingEvents_(spaNavEvents,firstPaintEvents);}
8039function findSpaNavigationsOnRenderer(rendererHelper,browserHelper){const spaNavEventToNavStartMap=getSpaNavigationEventToNavigationStartMap_(rendererHelper,browserHelper);const spaNavEventToFirstPaintEventMap=getSpaNavigationEventToFirstPaintEventMap_(rendererHelper);const spaNavigations=[];for(const[spaNavEvent,navStartEvent]of
8040spaNavEventToNavStartMap){if(spaNavEventToFirstPaintEventMap.has(spaNavEvent)){const firstPaintEvent=spaNavEventToFirstPaintEventMap.get(spaNavEvent);const isNavStartAsyncSlice=navStartEvent instanceof tr.model.AsyncSlice;spaNavigations.push({navStartCandidates:{inputLatencyAsyncSlice:isNavStartAsyncSlice?navStartEvent:undefined,goToIndexSlice:isNavStartAsyncSlice?undefined:navStartEvent},firstPaintEvent,url:spaNavEvent.args.url});}}
8041return spaNavigations;}
8042return{findSpaNavigationsOnRenderer,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function generateTimeBreakdownTree(mainThread,rangeOfInterest,getEventStart,getEventDuration,getEventSelfTime){if(mainThread===null)return;const breakdownTree={};for(const title of
8043tr.e.chrome.ChromeUserFriendlyCategoryDriver.ALL_TITLES){breakdownTree[title]={total:0,events:{}};}
8044for(const event of mainThread.getDescendantEvents()){const eventStart=getEventStart(event);const eventDuration=getEventDuration(event);const eventSelfTime=getEventSelfTime(event);const eventEnd=eventStart+eventDuration;if(!rangeOfInterest.intersectsExplicitRangeExclusive(eventStart,eventEnd)){continue;}
8045if(eventSelfTime===undefined)continue;const title=tr.e.chrome.ChromeUserFriendlyCategoryDriver.fromEvent(event);let timeIntersectionRatio=0;if(eventDuration>0){timeIntersectionRatio=rangeOfInterest.findExplicitIntersectionDuration(eventStart,eventEnd)/eventDuration;}
8046const v8Runtime=event.args['runtime-call-stat'];if(v8Runtime!==undefined){const v8RuntimeObject=JSON.parse(v8Runtime);for(const runtimeCall in v8RuntimeObject){if(v8RuntimeObject[runtimeCall].length===2){if(breakdownTree.v8_runtime.events[runtimeCall]===undefined){breakdownTree.v8_runtime.events[runtimeCall]=0;}
8047const runtimeTime=tr.b.Unit.timestampFromUs(v8RuntimeObject[runtimeCall][1]*timeIntersectionRatio);breakdownTree.v8_runtime.total+=runtimeTime;breakdownTree.v8_runtime.events[runtimeCall]+=runtimeTime;}}}
8048const approximatedSelfTimeContribution=eventSelfTime*timeIntersectionRatio;breakdownTree[title].total+=approximatedSelfTimeContribution;if(breakdownTree[title].events[event.title]===undefined){breakdownTree[title].events[event.title]=0;}
8049breakdownTree[title].events[event.title]+=approximatedSelfTimeContribution;}
8050return breakdownTree;}
8051function addIdleAndBlockByNetworkBreakdown_(breakdownTree,mainThreadEvents,networkEvents,rangeOfInterest){let idleRanges=[rangeOfInterest];const mainThreadEventRanges=tr.b.math.convertEventsToRanges(mainThreadEvents);const networkEventRanges=tr.b.math.convertEventsToRanges(networkEvents);const eventRanges=mainThreadEventRanges.concat(networkEventRanges);eventRanges.sort((a,b)=>a.min-b.min);for(const eventRange of eventRanges){if(!eventRange||eventRange.isEmpty||eventRange.duration<0){throw new Error('Range is invalid');}
8052const newLastIdleRanges=tr.b.math.Range.findDifference(idleRanges[idleRanges.length-1],eventRange);idleRanges.pop();idleRanges=idleRanges.concat(newLastIdleRanges);if(idleRanges.length===0)break;}
8053const totalFreeDuration=tr.b.math.Statistics.sum(idleRanges,range=>range.duration);breakdownTree.idle={total:totalFreeDuration,events:{}};let totalBlockedDuration=rangeOfInterest.duration;for(const component of Object.values(breakdownTree)){totalBlockedDuration-=component.total;}
8054breakdownTree.blocked_on_network={total:totalBlockedDuration,events:{}};}
8055function generateWallClockTimeBreakdownTree(mainThread,networkEvents,rangeOfInterest){function getEventStart(e){return e.start;}
8056function getEventDuration(e){return e.duration;}
8057function getEventSelfTime(e){return e.selfTime;}
8058const breakdownTree=generateTimeBreakdownTree(mainThread,rangeOfInterest,getEventStart,getEventDuration,getEventSelfTime);const mainThreadEventsInRange=tr.model.helpers.getSlicesIntersectingRange(rangeOfInterest,mainThread.sliceGroup.topLevelSlices);addIdleAndBlockByNetworkBreakdown_(breakdownTree,mainThreadEventsInRange,networkEvents,rangeOfInterest);return breakdownTree;}
8059function generateCpuTimeBreakdownTree(mainThread,rangeOfInterestCpuTime){function getEventStart(e){return e.cpuStart;}
8060function getEventDuration(e){return e.cpuDuration;}
8061function getEventSelfTime(e){return e.cpuSelfTime;}
8062return generateTimeBreakdownTree(mainThread,rangeOfInterestCpuTime,getEventStart,getEventDuration,getEventSelfTime);}
8063return{generateTimeBreakdownTree,generateWallClockTimeBreakdownTree,generateCpuTimeBreakdownTree,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const LONG_TASK_THRESHOLD_MS=50;const timeDurationInMs_smallerIsBetter=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;const RelatedEventSet=tr.v.d.RelatedEventSet;const hasCategoryAndName=tr.metrics.sh.hasCategoryAndName;const EventFinderUtils=tr.e.chrome.EventFinderUtils;function getNetworkEventsInRange(process,range){const networkEvents=[];for(const thread of Object.values(process.threads)){const threadHelper=new tr.model.helpers.ChromeThreadHelper(thread);const events=threadHelper.getNetworkEvents();for(const event of events){if(range.intersectsExplicitRangeInclusive(event.start,event.end)){networkEvents.push(event);}}}
8064return networkEvents;}
8065function createBreakdownDiagnostic(breakdownTree){const breakdownDiagnostic=new tr.v.d.Breakdown();breakdownDiagnostic.colorScheme=tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;for(const label in breakdownTree){breakdownDiagnostic.set(label,breakdownTree[label].total);}
8066return breakdownDiagnostic;}
8067const LOADING_METRIC_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(0,1e3,20).addLinearBins(3e3,20).addExponentialBins(20e3,20);const TIME_TO_INTERACTIVE_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1,40e3,35).addExponentialBins(80e3,15);const SUMMARY_OPTIONS={avg:true,count:false,max:true,min:true,std:true,sum:false,};function findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,ts){const objects=rendererHelper.process.objects;const frameLoaderInstances=objects.instancesByTypeName_.FrameLoader;if(frameLoaderInstances===undefined)return undefined;let snapshot;for(const instance of frameLoaderInstances){if(!instance.isAliveAt(ts))continue;const maybeSnapshot=instance.getSnapshotAt(ts);if(frameIdRef!==maybeSnapshot.args.frame.id_ref)continue;snapshot=maybeSnapshot;}
8068return snapshot;}
8069function findAllEvents(rendererHelper,category,title){const targetEvents=[];for(const ev of rendererHelper.process.getDescendantEvents()){if(!hasCategoryAndName(ev,category,title))continue;targetEvents.push(ev);}
8070return targetEvents;}
8071const URL_EXCLUSION=['','about:blank','data:text/html,pluginplaceholderdata','chrome-error://chromewebdata/'];function shouldIgnoreURL(url){return URL_EXCLUSION.includes(url);}
8072function collectTimeToEvent(category,eventName,rendererHelper,frameToNavStartEvents){const targetEvents=findAllEvents(rendererHelper,category,eventName);const samples=[];for(const ev of targetEvents){if(rendererHelper.isTelemetryInternalEvent(ev))continue;const frameIdRef=ev.args.frame;const snapshot=findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,ev.start);if(snapshot===undefined||!snapshot.args.isLoadingMainFrame)continue;const url=snapshot.args.documentLoaderURL;if(shouldIgnoreURL(url))continue;const navigationStartEvent=EventFinderUtils.findLastEventStartingOnOrBeforeTimestamp(frameToNavStartEvents.get(frameIdRef)||[],ev.start);if(navigationStartEvent===undefined)continue;const navStartToEventRange=tr.b.math.Range.fromExplicitRange(navigationStartEvent.start,ev.start);const networkEvents=getNetworkEventsInRange(rendererHelper.process,navStartToEventRange);const breakdownTree=tr.metrics.sh.generateWallClockTimeBreakdownTree(rendererHelper.mainThread,networkEvents,navStartToEventRange);samples.push({value:navStartToEventRange.duration,breakdownTree,diagnostics:{breakdown:createBreakdownDiagnostic(breakdownTree),url:new tr.v.d.GenericSet([url]),Start:new RelatedEventSet(navigationStartEvent),End:new RelatedEventSet(ev)}});}
8073return samples;}
8074function addFirstMeaningfulPaintSample(samples,rendererHelper,navigationStart,fmpMarkerEvent,url){const navStartToFMPRange=tr.b.math.Range.fromExplicitRange(navigationStart.start,fmpMarkerEvent.start);const networkEvents=getNetworkEventsInRange(rendererHelper.process,navStartToFMPRange);const timeToFirstMeaningfulPaint=navStartToFMPRange.duration;const breakdownTree=tr.metrics.sh.generateWallClockTimeBreakdownTree(rendererHelper.mainThread,networkEvents,navStartToFMPRange);samples.push({value:timeToFirstMeaningfulPaint,breakdownTree,diagnostics:{breakdown:createBreakdownDiagnostic(breakdownTree),start:new RelatedEventSet(navigationStart),end:new RelatedEventSet(fmpMarkerEvent),infos:new tr.v.d.GenericSet([{url,pid:rendererHelper.pid,start:navigationStart.start,fmp:fmpMarkerEvent.start,}]),}});}
8075function addFirstMeaningfulPaintCpuTimeSample(samples,rendererHelper,navigationStart,fmpMarkerEvent,url){const navStartToFMPCpuRange=tr.b.math.Range.fromExplicitRange(navigationStart.cpuStart,fmpMarkerEvent.cpuStart);const mainThreadCpuTime=getMainThreadCpuTime(rendererHelper,navStartToFMPCpuRange);const breakdownTree=tr.metrics.sh.generateCpuTimeBreakdownTree(rendererHelper.mainThread,navStartToFMPCpuRange);samples.push({value:mainThreadCpuTime,breakdownTree,diagnostics:{breakdown:createBreakdownDiagnostic(breakdownTree),start:new RelatedEventSet(navigationStart),end:new RelatedEventSet(fmpMarkerEvent),infos:new tr.v.d.GenericSet([{url,pid:rendererHelper.pid,start:navigationStart.start,fmp:fmpMarkerEvent.start,}]),}});}
8076function getMainThreadCpuTime(rendererHelper,rangeOfInterest){let mainThreadCpuTime=0;for(const slice of rendererHelper.mainThread.sliceGroup.topLevelSlices){if(!slice.cpuDuration)continue;const sliceRange=tr.b.math.Range.fromExplicitRange(slice.cpuStart,slice.cpuStart+slice.cpuDuration);const intersection=rangeOfInterest.findIntersection(sliceRange);mainThreadCpuTime+=intersection.duration;}
8077return mainThreadCpuTime;}
8078function decorateInteractivitySampleWithDiagnostics_(rendererHelper,eventTimestamp,navigationStartEvent,firstMeaningfulPaintTime,domContentLoadedEndTime,url){if(eventTimestamp===undefined)return undefined;const navigationStartTime=navigationStartEvent.start;const navStartToEventTimeRange=tr.b.math.Range.fromExplicitRange(navigationStartTime,eventTimestamp);const networkEvents=getNetworkEventsInRange(rendererHelper.process,navStartToEventTimeRange);const breakdownTree=tr.metrics.sh.generateWallClockTimeBreakdownTree(rendererHelper.mainThread,networkEvents,navStartToEventTimeRange);const breakdownDiagnostic=createBreakdownDiagnostic(breakdownTree);return{value:navStartToEventTimeRange.duration,diagnostics:tr.v.d.DiagnosticMap.fromObject({'Start':new RelatedEventSet(navigationStartEvent),'Navigation infos':new tr.v.d.GenericSet([{url,pid:rendererHelper.pid,navigationStartTime,firstMeaningfulPaintTime,domContentLoadedEndTime,eventTimestamp,}]),'Breakdown of [navStart, eventTimestamp]':breakdownDiagnostic,}),};}
8079function collectLoadingMetricsForRenderer(rendererHelper){const model=rendererHelper.modelHelper.model;const frameToNavStartEvents=EventFinderUtils.getSortedMainThreadEventsByFrame(rendererHelper,'navigationStart','blink.user_timing');const firstPaintSamples=collectTimeToEvent('loading','firstPaint',rendererHelper,frameToNavStartEvents);const firstContentfulPaintSamples=collectTimeToEvent('loading','firstContentfulPaint',rendererHelper,frameToNavStartEvents);const onLoadSamples=collectTimeToEvent('blink.user_timing','loadEventStart',rendererHelper,frameToNavStartEvents);const interactiveSamples=[];const firstCpuIdleSamples=[];const firstMeaningfulPaintSamples=[];const firstMeaningfulPaintCpuTimeSamples=[];for(const expectation of model.userModel.expectations){if(!(expectation instanceof tr.model.um.LoadExpectation))continue;if(shouldIgnoreURL(expectation.url))continue;if(expectation.renderProcess.pid!==rendererHelper.pid)continue;if(expectation.fmpEvent!==undefined){addFirstMeaningfulPaintSample(firstMeaningfulPaintSamples,rendererHelper,expectation.navigationStart,expectation.fmpEvent,expectation.url);addFirstMeaningfulPaintCpuTimeSample(firstMeaningfulPaintCpuTimeSamples,rendererHelper,expectation.navigationStart,expectation.fmpEvent,expectation.url);}
8080if(expectation.firstCpuIdleTime!==undefined){firstCpuIdleSamples.push(decorateInteractivitySampleWithDiagnostics_(rendererHelper,expectation.firstCpuIdleTime,expectation.navigationStart,expectation.fmpEvent.start,expectation.domContentLoadedEndEvent.start,expectation.url));}
8081if(expectation.timeToInteractive!==undefined){interactiveSamples.push(decorateInteractivitySampleWithDiagnostics_(rendererHelper,expectation.timeToInteractive,expectation.navigationStart,expectation.fmpEvent.start,expectation.domContentLoadedEndEvent.start,expectation.url));}}
8082return{firstPaintSamples,firstContentfulPaintSamples,onLoadSamples,firstMeaningfulPaintSamples,firstMeaningfulPaintCpuTimeSamples,firstCpuIdleSamples,interactiveSamples,};}
8083function addSamplesToHistogram(samples,histogram,histograms){for(const sample of samples){histogram.addSample(sample.value,sample.diagnostics);if(histogram.name!=='timeToFirstContentfulPaint')continue;if(!sample.breakdownTree)continue;for(const[category,breakdown]of Object.entries(sample.breakdownTree)){const relatedName=`${histogram.name}:${category}`;let relatedHist=histograms.getHistogramsNamed(relatedName)[0];if(!relatedHist){relatedHist=histograms.createHistogram(relatedName,histogram.unit,[],{binBoundaries:LOADING_METRIC_BOUNDARIES,summaryOptions:{count:false,max:false,min:false,sum:false,},});let relatedNames=histogram.diagnostics.get('breakdown');if(!relatedNames){relatedNames=new tr.v.d.RelatedNameMap();histogram.diagnostics.set('breakdown',relatedNames);}
8084relatedNames.set(category,relatedName);}
8085relatedHist.addSample(breakdown.total,{breakdown:tr.v.d.Breakdown.fromEntries(Object.entries(breakdown.events)),});}}}
8086function loadingMetric(histograms,model){const firstPaintHistogram=histograms.createHistogram('timeToFirstPaint',timeDurationInMs_smallerIsBetter,[],{binBoundaries:LOADING_METRIC_BOUNDARIES,description:'time to first paint',summaryOptions:SUMMARY_OPTIONS,});const firstContentfulPaintHistogram=histograms.createHistogram('timeToFirstContentfulPaint',timeDurationInMs_smallerIsBetter,[],{binBoundaries:LOADING_METRIC_BOUNDARIES,description:'time to first contentful paint',summaryOptions:SUMMARY_OPTIONS,});const onLoadHistogram=histograms.createHistogram('timeToOnload',timeDurationInMs_smallerIsBetter,[],{binBoundaries:LOADING_METRIC_BOUNDARIES,description:'time to onload. '+'This is temporary metric used for PCv1/v2 correctness checking',summaryOptions:SUMMARY_OPTIONS,});const firstMeaningfulPaintHistogram=histograms.createHistogram('timeToFirstMeaningfulPaint',timeDurationInMs_smallerIsBetter,[],{binBoundaries:LOADING_METRIC_BOUNDARIES,description:'time to first meaningful paint',summaryOptions:SUMMARY_OPTIONS,});const firstMeaningfulPaintCpuTimeHistogram=histograms.createHistogram('cpuTimeToFirstMeaningfulPaint',timeDurationInMs_smallerIsBetter,[],{binBoundaries:LOADING_METRIC_BOUNDARIES,description:'CPU time to first meaningful paint',summaryOptions:SUMMARY_OPTIONS,});const timeToInteractiveHistogram=histograms.createHistogram('timeToInteractive',timeDurationInMs_smallerIsBetter,[],{binBoundaries:TIME_TO_INTERACTIVE_BOUNDARIES,description:'Time to Interactive',summaryOptions:SUMMARY_OPTIONS,});const timeToFirstCpuIdleHistogram=histograms.createHistogram('timeToFirstCpuIdle',timeDurationInMs_smallerIsBetter,[],{binBoundaries:TIME_TO_INTERACTIVE_BOUNDARIES,description:'Time to First CPU Idle',summaryOptions:SUMMARY_OPTIONS,});const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);for(const pid in chromeHelper.rendererHelpers){const rendererHelper=chromeHelper.rendererHelpers[pid];if(rendererHelper.isChromeTracingUI)continue;const samplesSet=collectLoadingMetricsForRenderer(rendererHelper);addSamplesToHistogram(samplesSet.firstPaintSamples,firstPaintHistogram,histograms);addSamplesToHistogram(samplesSet.firstContentfulPaintSamples,firstContentfulPaintHistogram,histograms);addSamplesToHistogram(samplesSet.onLoadSamples,onLoadHistogram,histograms);addSamplesToHistogram(samplesSet.firstMeaningfulPaintSamples,firstMeaningfulPaintHistogram,histograms);addSamplesToHistogram(samplesSet.firstMeaningfulPaintCpuTimeSamples,firstMeaningfulPaintCpuTimeHistogram,histograms);addSamplesToHistogram(samplesSet.interactiveSamples,timeToInteractiveHistogram,histograms);addSamplesToHistogram(samplesSet.firstCpuIdleSamples,timeToFirstCpuIdleHistogram,histograms);}}
8087tr.metrics.MetricRegistry.register(loadingMetric);return{loadingMetric,getNetworkEventsInRange,collectLoadingMetricsForRenderer,};});'use strict';tr.exportTo('tr.metrics',function(){const SPA_NAVIGATION_START_TO_FIRST_PAINT_DURATION_BIN_BOUNDARY=tr.v.HistogramBinBoundaries.createExponential(1,1000,50);function spaNavigationMetric(histograms,model){const histogram=new tr.v.Histogram('spaNavigationStartToFpDuration',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,SPA_NAVIGATION_START_TO_FIRST_PAINT_DURATION_BIN_BOUNDARY);histogram.description='Latency between the input event causing'+' a SPA navigation and the first paint event after it';histogram.customizeSummaryOptions({count:false,sum:false,});const modelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(!modelHelper){return;}
8088const rendererHelpers=modelHelper.rendererHelpers;if(!rendererHelpers){return;}
8089const browserHelper=modelHelper.browserHelper;for(const rendererHelper of Object.values(rendererHelpers)){const spaNavigations=tr.metrics.findSpaNavigationsOnRenderer(rendererHelper,browserHelper);for(const spaNav of spaNavigations){let beginTs=0;if(spaNav.navStartCandidates.inputLatencyAsyncSlice){const beginData=spaNav.navStartCandidates.inputLatencyAsyncSlice.args.data;beginTs=model.convertTimestampToModelTime('traceEventClock',beginData.INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT.time);}else{beginTs=spaNav.navStartCandidates.goToIndexSlice.start;}
8090const rangeOfInterest=tr.b.math.Range.fromExplicitRange(beginTs,spaNav.firstPaintEvent.start);const networkEvents=tr.metrics.sh.getNetworkEventsInRange(rendererHelper.process,rangeOfInterest);const breakdownDict=tr.metrics.sh.generateWallClockTimeBreakdownTree(rendererHelper.mainThread,networkEvents,rangeOfInterest);const breakdownDiagnostic=new tr.v.d.Breakdown();breakdownDiagnostic.colorScheme=tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;for(const label in breakdownDict){breakdownDiagnostic.set(label,parseInt(breakdownDict[label].total*1e3)/1e3);}
8091histogram.addSample(rangeOfInterest.duration,{'Breakdown of [navStart, firstPaint]':breakdownDiagnostic,'Start':new tr.v.d.RelatedEventSet(spaNav.navigationStart),'End':new tr.v.d.RelatedEventSet(spaNav.firstPaintEvent),'Navigation infos':new tr.v.d.GenericSet([{url:spaNav.url,pid:rendererHelper.pid,navStart:beginTs,firstPaint:spaNav.firstPaintEvent.start}]),});}}
8092histograms.addHistogram(histogram);}
8093tr.metrics.MetricRegistry.register(spaNavigationMetric);return{spaNavigationMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const LATENCY_BOUNDS=tr.v.HistogramBinBoundaries.createLinear(0,20,100);function clockSyncLatencyMetric(values,model){const domains=Array.from(model.clockSyncManager.domainsSeen).sort();for(let i=0;i<domains.length;i++){for(let j=i+1;j<domains.length;j++){const latency=model.clockSyncManager.getTimeTransformerError(domains[i],domains[j]);const hist=new tr.v.Histogram('clock_sync_latency_'+
8094domains[i].toLowerCase()+'_to_'+domains[j].toLowerCase(),tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,LATENCY_BOUNDS);hist.customizeSummaryOptions({avg:true,count:false,max:false,min:false,std:false,sum:false,});hist.description='Clock sync latency for domain '+domains[i]+' to domain '+domains[j];hist.addSample(latency);values.addHistogram(hist);}}}
8095tr.metrics.MetricRegistry.register(clockSyncLatencyMetric);return{clockSyncLatencyMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const CPU_TIME_PERCENTAGE_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(0.01,50,200);function cpuTimeMetric(histograms,model,opt_options){let rangeOfInterest=model.bounds;if(opt_options&&opt_options.rangeOfInterest){rangeOfInterest=opt_options.rangeOfInterest;}else{const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(chromeHelper){const chromeBounds=chromeHelper.chromeBounds;if(chromeBounds){rangeOfInterest=chromeBounds;}}}
8096let allProcessCpuTime=0;for(const pid in model.processes){const process=model.processes[pid];if(tr.model.helpers.ChromeRendererHelper.isTracingProcess(process)){continue;}
8097let processCpuTime=0;for(const tid in process.threads){const thread=process.threads[tid];let threadCpuTime=0;thread.sliceGroup.topLevelSlices.forEach(function(slice){if(slice.duration===0)return;if(!slice.cpuDuration)return;const sliceRange=tr.b.math.Range.fromExplicitRange(slice.start,slice.end);const intersection=rangeOfInterest.findIntersection(sliceRange);const fractionOfSliceInsideRangeOfInterest=intersection.duration/slice.duration;threadCpuTime+=slice.cpuDuration*fractionOfSliceInsideRangeOfInterest;});processCpuTime+=threadCpuTime;}
8098allProcessCpuTime+=processCpuTime;}
8099let normalizedAllProcessCpuTime=0;if(rangeOfInterest.duration>0){normalizedAllProcessCpuTime=allProcessCpuTime/rangeOfInterest.duration;}
8100const unit=tr.b.Unit.byName.normalizedPercentage_smallerIsBetter;const cpuTimeHist=new tr.v.Histogram('cpu_time_percentage',unit,CPU_TIME_PERCENTAGE_BOUNDARIES);cpuTimeHist.description='Percent CPU utilization, normalized against a single core. Can be '+'greater than 100% if machine has multiple cores.';cpuTimeHist.customizeSummaryOptions({avg:true,count:false,max:false,min:false,std:false,sum:false});cpuTimeHist.addSample(normalizedAllProcessCpuTime);histograms.addHistogram(cpuTimeHist);}
8101tr.metrics.MetricRegistry.register(cpuTimeMetric,{supportsRangeOfInterest:true});return{cpuTimeMetric,};});'use strict';tr.exportTo('tr.v.d',function(){function addRelatedNames(histograms){for(const hist of histograms){const relatedNames=new Set();for(const[name,diagnostic]of hist.diagnostics){if(diagnostic instanceof tr.v.d.RelatedHistogramMap){for(const[relationshipName,relatedHist]of diagnostic){relatedNames.add(relatedHist.name);}}}
8102if(relatedNames.size){hist.diagnostics.set(tr.v.d.RESERVED_NAMES.RELATED_NAMES,new tr.v.d.GenericSet(relatedNames));}}}
8103return{addRelatedNames,};});'use strict';tr.exportTo('tr.v',function(){class HistogramGrouping{constructor(key,callback){this.key_=key;this.callback_=callback;HistogramGrouping.BY_KEY.set(key,this);}
8104get key(){return this.key_;}
8105get callback(){return this.callback_;}
8106get label(){return this.key;}
8107static buildFromTags(tags,diagnosticName){const booleanTags=new Set();const keyValueTags=new Set();for(const tag of tags){if(tag.includes(':')){const key=tag.split(':')[0];if(booleanTags.has(key)){throw new Error(`Tag "${key}" cannot be both boolean and key-value`);}
8108keyValueTags.add(key);}else{if(keyValueTags.has(tag)){throw new Error(`Tag "${tag}" cannot be both boolean and key-value`);}
8109booleanTags.add(tag);}}
8110const groupings=[];for(const tag of booleanTags){groupings.push(HistogramGrouping.buildBooleanTagGrouping_(tag,diagnosticName));}
8111for(const tag of keyValueTags){groupings.push(HistogramGrouping.buildKeyValueTagGrouping_(tag,diagnosticName));}
8112return groupings;}
8113static buildBooleanTagGrouping_(tag,diagnosticName){return new HistogramGrouping(`${tag}Tag`,h=>{const tags=h.diagnostics.get(diagnosticName);if(tags===undefined||!tags.has(tag))return`~${tag}`;return tag;});}
8114static buildKeyValueTagGrouping_(tag,diagnosticName){return new HistogramGrouping(`${tag}Tag`,h=>{const tags=h.diagnostics.get(diagnosticName);if(tags===undefined)return`~${tag}`;const values=new Set();for(const value of tags){const kvp=value.split(':');if(kvp.length<2||kvp[0]!==tag)continue;values.add(kvp[1]);}
8115if(values.size===0)return`~${tag}`;const sortedValues=Array.from(values);sortedValues.sort();return sortedValues.join(',');},`${tag} tag`);}}
8116HistogramGrouping.BY_KEY=new Map();HistogramGrouping.HISTOGRAM_NAME=new HistogramGrouping('name',h=>h.name);HistogramGrouping.DISPLAY_LABEL=new HistogramGrouping('displayLabel',hist=>{const labels=hist.diagnostics.get(tr.v.d.RESERVED_NAMES.LABELS);if(labels!==undefined&&labels.size>0){return Array.from(labels).join(',');}
8117const benchmarks=hist.diagnostics.get(tr.v.d.RESERVED_NAMES.BENCHMARKS);const start=hist.diagnostics.get(tr.v.d.RESERVED_NAMES.BENCHMARK_START);if(benchmarks===undefined){if(start===undefined)return'Value';return start.toString();}
8118const benchmarksStr=Array.from(benchmarks).join('\n');if(start===undefined)return benchmarksStr;return benchmarksStr+'\n'+start.toString();});class GenericSetGrouping extends HistogramGrouping{constructor(name){super(name,undefined);this.callback_=this.compute_.bind(this);}
8119compute_(hist){const diag=hist.diagnostics.get(this.key);if(diag===undefined)return'';const parts=Array.from(diag);parts.sort();return parts.join(',');}}
8120GenericSetGrouping.NAMES=[tr.v.d.RESERVED_NAMES.ARCHITECTURES,tr.v.d.RESERVED_NAMES.BENCHMARKS,tr.v.d.RESERVED_NAMES.BOTS,tr.v.d.RESERVED_NAMES.BUILDS,tr.v.d.RESERVED_NAMES.DEVICE_IDS,tr.v.d.RESERVED_NAMES.PRIMARYS,tr.v.d.RESERVED_NAMES.MEMORY_AMOUNTS,tr.v.d.RESERVED_NAMES.OS_NAMES,tr.v.d.RESERVED_NAMES.OS_VERSIONS,tr.v.d.RESERVED_NAMES.PRODUCT_VERSIONS,tr.v.d.RESERVED_NAMES.STORIES,tr.v.d.RESERVED_NAMES.STORYSET_REPEATS,tr.v.d.RESERVED_NAMES.STORY_TAGS,];for(const name of GenericSetGrouping.NAMES){new GenericSetGrouping(name);}
8121class DateRangeGrouping extends HistogramGrouping{constructor(name){super(name,undefined);this.callback_=this.compute_.bind(this);}
8122compute_(hist){const diag=hist.diagnostics.get(this.key);if(diag===undefined)return'';return diag.toString();}}
8123DateRangeGrouping.NAMES=[tr.v.d.RESERVED_NAMES.BENCHMARK_START,tr.v.d.RESERVED_NAMES.TRACE_START,];for(const name of DateRangeGrouping.NAMES){new DateRangeGrouping(name);}
8124return{HistogramGrouping,GenericSetGrouping,DateRangeGrouping,};});'use strict';tr.exportTo('tr.v',function(){class HistogramSet{constructor(opt_histograms){this.histogramsByGuid_=new Map();this.sharedDiagnosticsByGuid_=new Map();if(opt_histograms!==undefined){for(const hist of opt_histograms){this.addHistogram(hist);}}}
8125createHistogram(name,unit,samples,opt_options){const hist=tr.v.Histogram.create(name,unit,samples,opt_options);this.addHistogram(hist);return hist;}
8126addHistogram(hist,opt_diagnostics){if(this.histogramsByGuid_.has(hist.guid)){throw new Error('Cannot add same Histogram twice');}
8127if(opt_diagnostics!==undefined){if(!(opt_diagnostics instanceof Map)){opt_diagnostics=Object.entries(opt_diagnostics);}
8128for(const[name,diagnostic]of opt_diagnostics){hist.diagnostics.set(name,diagnostic);}}
8129this.histogramsByGuid_.set(hist.guid,hist);}
8130addSharedDiagnosticToAllHistograms(name,diagnostic){this.addSharedDiagnostic(diagnostic);for(const hist of this){hist.diagnostics.set(name,diagnostic);}}
8131addSharedDiagnostic(diagnostic){this.sharedDiagnosticsByGuid_.set(diagnostic.guid,diagnostic);}
8132get length(){return this.histogramsByGuid_.size;}*[Symbol.iterator](){for(const hist of this.histogramsByGuid_.values()){yield hist;}}
8133getHistogramsNamed(name){return[...this].filter(h=>h.name===name);}
8134getHistogramNamed(name){const histograms=this.getHistogramsNamed(name);if(histograms.length===0)return undefined;if(histograms.length>1){throw new Error(`Unexpectedly found multiple histograms named "${name}"`);}
8135return histograms[0];}
8136lookupHistogram(guid){return this.histogramsByGuid_.get(guid);}
8137lookupDiagnostic(guid){return this.sharedDiagnosticsByGuid_.get(guid);}
8138resolveRelatedHistograms(){const handleDiagnosticMap=dm=>{for(const[name,diagnostic]of dm){if(diagnostic instanceof tr.v.d.RelatedHistogramMap){diagnostic.resolve(this);}}};for(const hist of this){handleDiagnosticMap(hist.diagnostics);for(const dm of hist.nanDiagnosticMaps){handleDiagnosticMap(dm);}
8139for(const bin of hist.allBins){for(const dm of bin.diagnosticMaps){handleDiagnosticMap(dm);}}}}
8140importDicts(dicts){for(const dict of dicts){if(dict.type&&tr.v.d.Diagnostic.findTypeInfoWithName(dict.type)){this.sharedDiagnosticsByGuid_.set(dict.guid,tr.v.d.Diagnostic.fromDict(dict));}else{const hist=tr.v.Histogram.fromDict(dict);this.addHistogram(hist);hist.diagnostics.resolveSharedDiagnostics(this,true);}}}
8141asDicts(){const dicts=[];for(const diagnostic of this.sharedDiagnosticsByGuid_.values()){dicts.push(diagnostic.asDict());}
8142for(const hist of this){dicts.push(hist.asDict());}
8143return dicts;}
8144get sourceHistograms(){const diagnosticNames=new Set();for(const hist of this){for(const diagnostic of hist.diagnostics.values()){if(!(diagnostic instanceof tr.v.d.RelatedNameMap))continue;for(const name of diagnostic.values()){diagnosticNames.add(name);}}}
8145const sourceHistograms=new Map();for(const hist of this){if(!diagnosticNames.has(hist.name)){sourceHistograms.set(hist.guid,hist);}}
8146function deleteSourceHistograms(diagnosticMap){for(const[name,diagnostic]of diagnosticMap){if(diagnostic instanceof tr.v.d.RelatedHistogramMap){for(const[name,relatedHist]of diagnostic){sourceHistograms.delete(relatedHist.guid);}}}}
8147for(const hist of this){deleteSourceHistograms(hist.diagnostics);for(const dm of hist.nanDiagnosticMaps){deleteSourceHistograms(dm);}
8148for(const b of hist.allBins){for(const dm of b.diagnosticMaps){deleteSourceHistograms(dm);}}}
8149return new HistogramSet([...sourceHistograms.values()]);}
8150groupHistogramsRecursively(groupings,opt_skipGroupingCallback){function recurse(histograms,level){if(level===groupings.length){return histograms;}
8151const grouping=groupings[level];const groupedHistograms=tr.b.groupIntoMap(histograms,grouping.callback);if(opt_skipGroupingCallback&&opt_skipGroupingCallback(grouping,groupedHistograms)){return recurse(histograms,level+1);}
8152for(const[key,group]of groupedHistograms){groupedHistograms.set(key,recurse(group,level+1));}
8153return groupedHistograms;}
8154return recurse([...this],0);}
8155deduplicateDiagnostics(){const namesToCandidates=new Map();const diagnosticsToHistograms=new Map();for(const hist of this){for(const[name,candidate]of hist.diagnostics){if(candidate.equals===undefined){this.sharedDiagnosticsByGuid_.set(candidate.guid,candidate);continue;}
8156if(diagnosticsToHistograms.get(candidate)===undefined){diagnosticsToHistograms.set(candidate,[hist]);}else{diagnosticsToHistograms.get(candidate).push(hist);}
8157if(!namesToCandidates.has(name)){namesToCandidates.set(name,new Set());}
8158namesToCandidates.get(name).add(candidate);}}
8159for(const[name,candidates]of namesToCandidates){const deduplicatedDiagnostics=new Set();for(const candidate of candidates){let found=false;for(const test of deduplicatedDiagnostics){if(candidate.equals(test)){const hists=diagnosticsToHistograms.get(candidate);for(const hist of hists){hist.diagnostics.set(name,test);}
8160found=true;break;}}
8161if(!found){deduplicatedDiagnostics.add(candidate);}
8162for(const diagnostic of deduplicatedDiagnostics){this.sharedDiagnosticsByGuid_.set(diagnostic.guid,diagnostic);}}}}
8163buildGroupingsFromTags(names){const tags=new Map();for(const hist of this){for(const name of names){if(!hist.diagnostics.has(name))continue;if(!tags.has(name))tags.set(name,new Set());for(const tag of hist.diagnostics.get(name)){tags.get(name).add(tag);}}}
8164const groupings=[];for(const[name,values]of tags){const built=tr.v.HistogramGrouping.buildFromTags(values,name);for(const grouping of built){groupings.push(grouping);}}
8165return groupings;}
8166mergeRelationships(){for(const hist of this){hist.diagnostics.mergeRelationships(hist);}}}
8167return{HistogramSet,};});'use strict';tr.exportTo('tr.e.chrome',function(){function hasTitleAndCategory(event,title,category){return event.title===title&&event.category&&tr.b.getCategoryParts(event.category).includes(category);}
8168function getNavStartTimestamps(rendererHelper){const navStartTimestamps=[];for(const e of rendererHelper.mainThread.sliceGroup.childEvents()){if(hasTitleAndCategory(e,'navigationStart','blink.user_timing')){navStartTimestamps.push(e.start);}}
8169return navStartTimestamps;}
8170function getInteractiveTimestamps(model){const interactiveTimestampsMap=new Map();const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);for(const rendererHelper of Object.values(chromeHelper.rendererHelpers)){const timestamps=[];interactiveTimestampsMap.set(rendererHelper.pid,timestamps);const samples=tr.metrics.sh.collectLoadingMetricsForRenderer(rendererHelper).interactiveSamples;for(const sample of samples){timestamps.push(tr.b.getOnlyElement(sample.diagnostics.get('Navigation infos')).eventTimestamp);}}
8171return interactiveTimestampsMap;}
8172function getPostInteractiveTaskWindows(interactiveTimestamps,navStartTimestamps,traceEndTimestamp){let navStartTsIndex=0;let lastTaskWindowEndTs=undefined;const taskWindows=[];for(const currTTI of interactiveTimestamps){while(navStartTsIndex<navStartTimestamps.length&&navStartTimestamps[navStartTsIndex]<currTTI){navStartTsIndex++;}
8173const taskWindowEndTs=navStartTsIndex<navStartTimestamps.length?navStartTimestamps[navStartTsIndex]:traceEndTimestamp;if(taskWindowEndTs===lastTaskWindowEndTs){throw Error('Encountered two consecutive interactive timestamps '+'with no navigationStart between them. '+'PostInteractiveTaskWindow is not well defined in this case.');}
8174taskWindows.push(tr.b.math.Range.fromExplicitRange(currTTI,taskWindowEndTs));lastTaskWindowEndTs=taskWindowEndTs;}
8175return taskWindows;}
8176function contributionToEQT(window,task){const startInWindow=Math.max(window.min,task.start);const endInWindow=Math.min(window.max,task.end);const durationInWindow=endInWindow-startInWindow;if(durationInWindow<=0)return 0;const probabilityOfTask=durationInWindow/(window.max-window.min);const minQueueingTime=task.end-endInWindow;const maxQueueingTime=task.end-startInWindow;const expectedQueueingTimeDueToTask=(maxQueueingTime+minQueueingTime)/2;return probabilityOfTask*expectedQueueingTimeDueToTask;}
8177function weightedExpectedQueueingTime(window,weightedTasks){let result=0;for(const task of weightedTasks){result+=contributionToEQT(window,task)*task.weight;}
8178return result;}
8179function expectedQueueingTime(window,tasks){return weightedExpectedQueueingTime(window,tasks.map(function(task){return{start:task.start,end:task.end,weight:1};}));}
8180class SlidingWindow{constructor(startTime,windowSize,sortedTasks){this.windowSize_=windowSize;this.sortedTasks_=sortedTasks;this.range_=tr.b.math.Range.fromExplicitRange(startTime,startTime+windowSize);this.firstTaskIndex_=sortedTasks.findIndex(task=>startTime<task.end);if(this.firstTaskIndex_===-1){this.firstTaskIndex_=sortedTasks.length;}
8181this.lastTaskIndex_=-1;while(this.lastTaskIndex_+1<sortedTasks.length&&sortedTasks[this.lastTaskIndex_+1].start<startTime+windowSize){this.lastTaskIndex_++;}
8182this.innerEQT_=0;for(let i=this.firstTaskIndex_+1;i<this.lastTaskIndex_;i++){this.innerEQT_+=contributionToEQT(this.range_,sortedTasks[i]);}}
8183get getEQT(){let firstTaskEQT=0;if(this.firstTaskIndex_<this.sortedTasks_.length){firstTaskEQT=contributionToEQT(this.range_,this.sortedTasks_[this.firstTaskIndex_]);}
8184let lastTaskEQT=0;if(this.firstTaskIndex_<this.lastTaskIndex_){lastTaskEQT=contributionToEQT(this.range_,this.sortedTasks_[this.lastTaskIndex_]);}
8185return firstTaskEQT+this.innerEQT_+lastTaskEQT;}
8186slide(t){this.range_=tr.b.math.Range.fromExplicitRange(t,t+this.windowSize_);if(this.firstTaskIndex_<this.sortedTasks_.length&&this.sortedTasks_[this.firstTaskIndex_].end<=t){this.firstTaskIndex_++;if(this.firstTaskIndex_<this.lastTaskIndex_){this.innerEQT_-=contributionToEQT(this.range_,this.sortedTasks_[this.firstTaskIndex_]);}}
8187if(this.lastTaskIndex_+1<this.sortedTasks_.length&&this.sortedTasks_[this.lastTaskIndex_+1].start<t+this.windowSize_){if(this.firstTaskIndex_<this.lastTaskIndex_){this.innerEQT_+=contributionToEQT(this.range_,this.sortedTasks_[this.lastTaskIndex_]);}
8188this.lastTaskIndex_++;}}}
8189function maxExpectedQueueingTimeInSlidingWindow(startTime,endTime,windowSize,tasks){if(windowSize<=0){throw Error('The window size must be positive number');}
8190if(startTime+windowSize>endTime){throw Error('The sliding window must fit in the specified time range');}
8191const sortedTasks=tasks.slice().sort((a,b)=>a.start-b.start);for(let i=1;i<sortedTasks.length;i++){const PRECISION_MS=0.1;if(sortedTasks[i-1].end>sortedTasks[i].start+PRECISION_MS){throw Error('Tasks must not overlap');}
8192if(sortedTasks[i-1].end>sortedTasks[i].start){const midpoint=(sortedTasks[i-1].end+sortedTasks[i].start)/2;sortedTasks[i-1].end=midpoint;sortedTasks[i].start=midpoint;}}
8193let endpoints=[];endpoints.push(startTime);endpoints.push(endTime-windowSize);for(const task of tasks){endpoints.push(task.start-windowSize);endpoints.push(task.start);endpoints.push(task.end-windowSize);endpoints.push(task.end);}
8194endpoints=endpoints.filter(x=>(startTime<=x&&x+windowSize<=endTime));endpoints.sort((a,b)=>a-b);const slidingWindow=new SlidingWindow(endpoints[0],windowSize,sortedTasks);let maxEQT=0;for(const t of endpoints){slidingWindow.slide(t);maxEQT=Math.max(maxEQT,slidingWindow.getEQT);}
8195return maxEQT;}
8196return{getPostInteractiveTaskWindows,getNavStartTimestamps,getInteractiveTimestamps,expectedQueueingTime,maxExpectedQueueingTimeInSlidingWindow,weightedExpectedQueueingTime};});'use strict';tr.exportTo('tr.metrics.sh',function(){const WINDOW_SIZE_MS=500;const EQT_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(0.01,WINDOW_SIZE_MS,50);function containsForcedGC_(slice){return slice.findTopmostSlicesRelativeToThisSlice(tr.metrics.v8.utils.isForcedGarbageCollectionEvent).length>0;}
8197function createHistogramForEQT_(name,description){const histogram=new tr.v.Histogram(name,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,EQT_BOUNDARIES);histogram.customizeSummaryOptions({avg:false,count:false,max:true,min:false,std:false,sum:false,});histogram.description=description;return histogram;}
8198function expectedQueueingTimeMetric(histograms,model){const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);const rendererHelpers=Object.values(chromeHelper.rendererHelpers);const rendererToInteractiveTimestamps=tr.e.chrome.getInteractiveTimestamps(model);addExpectedQueueingTimeMetric_('renderer_eqt',event=>{return{start:event.start,duration:event.duration};},false,rendererHelpers,rendererToInteractiveTimestamps,histograms,model);addExpectedQueueingTimeMetric_('renderer_eqt_cpu',event=>{return{start:event.cpuStart,duration:event.cpuDuration};},true,rendererHelpers,rendererToInteractiveTimestamps,histograms,model);}
8199function addExpectedQueueingTimeMetric_(eqtName,getEventTimes,isCpuTime,rendererHelpers,rendererToInteractiveTimestamps,histograms,model){function getTasks(rendererHelper){const tasks=[];for(const slice of rendererHelper.mainThread.sliceGroup.topLevelSlices){const times=getEventTimes(slice);if(times.duration>0&&!containsForcedGC_(slice)){tasks.push({start:times.start,end:times.start+times.duration});}}
8200return tasks;}
8201const totalHistogram=createHistogramForEQT_(`total:${WINDOW_SIZE_MS}ms_window:${eqtName}`,`The maximum EQT in a ${WINDOW_SIZE_MS}ms sliding window`+' for a given renderer');const interactiveHistogram=createHistogramForEQT_(`interactive:${WINDOW_SIZE_MS}ms_window:${eqtName}`,`The maximum EQT in a ${WINDOW_SIZE_MS}ms sliding window`+' for a given renderer while the page is interactive');for(const rendererHelper of rendererHelpers){if(rendererHelper.isChromeTracingUI)continue;if(rendererHelper.mainThread.bounds.duration<WINDOW_SIZE_MS)continue;const tasks=getTasks(rendererHelper);totalHistogram.addSample(tr.e.chrome.maxExpectedQueueingTimeInSlidingWindow(rendererHelper.mainThread.bounds.min,rendererHelper.mainThread.bounds.max,WINDOW_SIZE_MS,tasks));const interactiveTimestamps=rendererToInteractiveTimestamps.get(rendererHelper.pid);if(interactiveTimestamps.length===0)continue;if(interactiveTimestamps.length>1){continue;}
8202const interactiveWindow=tr.b.math.Range.fromExplicitRange(interactiveTimestamps[0],Infinity).findIntersection(rendererHelper.mainThread.bounds);interactiveHistogram.addSample(tr.e.chrome.maxExpectedQueueingTimeInSlidingWindow(interactiveWindow.min,interactiveWindow.max,WINDOW_SIZE_MS,tasks));}
8203addV8ContributionToExpectedQueueingTime_(eqtName,getEventTimes,isCpuTime,totalHistogram,interactiveHistogram,rendererToInteractiveTimestamps,histograms,model);histograms.addHistogram(totalHistogram);histograms.addHistogram(interactiveHistogram);}
8204function addV8ContributionToExpectedQueueingTime_(eqtName,getEventTimes,isCpuTime,totalEqtHistogram,interactiveEqtHistogram,rendererToInteractiveTimestamps,histograms,model){if(!model.categories.includes('v8'))return;const breakdownForTotal=new tr.v.d.RelatedHistogramMap();const breakdownForInteractive=new tr.v.d.RelatedHistogramMap();const eventNamesWithTaskExtractors=getV8EventNamesWithTaskExtractors_(getEventTimes);if(!isCpuTime){const taskExtractorsUsingRCS=getV8EventNamesWithTaskExtractorsUsingRCS_(getEventTimes);for(const[eventName,getTasks]of taskExtractorsUsingRCS){eventNamesWithTaskExtractors.set(eventName,getTasks);}}
8205for(const[eventName,getTasks]of eventNamesWithTaskExtractors){const contribution=contributionToExpectedQueueingTime_(eqtName,eventName,getTasks,rendererToInteractiveTimestamps,histograms,model);breakdownForTotal.set(eventName,contribution.total);breakdownForInteractive.set(eventName,contribution.interactive);}
8206totalEqtHistogram.diagnostics.set('v8',breakdownForTotal);interactiveEqtHistogram.diagnostics.set('v8',breakdownForInteractive);}
8207function getV8EventNamesWithTaskExtractors_(getEventTimes,cpuMetrics){function durationOfTopmostSubSlices(slice,predicate,excludePredicate){let duration=0;for(const sub of slice.findTopmostSlicesRelativeToThisSlice(predicate)){duration+=getEventTimes(sub).duration;if(excludePredicate!==null&&excludePredicate!==undefined){duration-=durationOfTopmostSubSlices(sub,excludePredicate);}}
8208return duration;}
8209function taskExtractor(predicate,excludePredicate){return function(rendererHelper){const slices=rendererHelper.mainThread.sliceGroup.topLevelSlices;const result=[];for(const slice of slices){const times=getEventTimes(slice);if(times.duration>0&&!containsForcedGC_(slice)){const duration=durationOfTopmostSubSlices(slice,predicate,excludePredicate);result.push({start:times.start,end:times.start+duration});}}
8210return result;};}
8211return new Map([['v8',taskExtractor(tr.metrics.v8.utils.isV8Event)],['v8:execute',taskExtractor(tr.metrics.v8.utils.isV8ExecuteEvent)],['v8:gc',taskExtractor(tr.metrics.v8.utils.isGarbageCollectionEvent)],['v8:gc:full-mark-compactor',taskExtractor(tr.metrics.v8.utils.isFullMarkCompactorEvent)],['v8:gc:incremental-marking',taskExtractor(tr.metrics.v8.utils.isIncrementalMarkingEvent)],['v8:gc:latency-mark-compactor',taskExtractor(tr.metrics.v8.utils.isLatencyMarkCompactorEvent)],['v8:gc:memory-mark-compactor',taskExtractor(tr.metrics.v8.utils.isMemoryMarkCompactorEvent)],['v8:gc:scavenger',taskExtractor(tr.metrics.v8.utils.isScavengerEvent)]]);}
8212function extractTaskRCS(getEventTimes,predicate,rendererHelper){const result=[];for(const topSlice of
8213rendererHelper.mainThread.sliceGroup.topLevelSlices){const times=getEventTimes(topSlice);if(times.duration<=0||containsForcedGC_(topSlice)){continue;}
8214const v8ThreadSlices=[];for(const slice of topSlice.descendentSlices){if(tr.metrics.v8.utils.isV8RCSEvent(slice)){v8ThreadSlices.push(slice);}}
8215const runtimeGroupCollection=new tr.e.v8.RuntimeStatsGroupCollection();runtimeGroupCollection.addSlices(v8ThreadSlices);let duration=0;for(const runtimeGroup of runtimeGroupCollection.runtimeGroups){if(predicate(runtimeGroup.name)){duration+=runtimeGroup.time;}}
8216duration=tr.b.convertUnit(duration,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);result.push({start:times.start,end:times.start+duration});}
8217return result;}
8218function getV8EventNamesWithTaskExtractorsUsingRCS_(getEventTimes){const extractors=new Map();extractors.set('v8:compile_rcs',rendererHelper=>extractTaskRCS(getEventTimes,tr.metrics.v8.utils.isCompileRCSCategory,rendererHelper));extractors.set('v8:compile:optimize_rcs',rendererHelper=>extractTaskRCS(getEventTimes,tr.metrics.v8.utils.isCompileOptimizeRCSCategory,rendererHelper));extractors.set('v8:compile:parse_rcs',rendererHelper=>extractTaskRCS(getEventTimes,tr.metrics.v8.utils.isCompileParseRCSCategory,rendererHelper));extractors.set('v8:compile:compile-unoptimize_rcs',rendererHelper=>extractTaskRCS(getEventTimes,tr.metrics.v8.utils.isCompileUnoptimizeRCSCategory,rendererHelper));return extractors;}
8219function contributionToExpectedQueueingTime_(eqtName,eventName,getTasks,rendererToInteractiveTimestamps,histograms,model){const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);const totalHistogram=createHistogramForEQT_(`total:${WINDOW_SIZE_MS}ms_window:${eqtName}:${eventName}`,`Contribution to the expected queueing time by ${eventName}`+' for a given renderer. It is computed as the maximum EQT in'+` a ${WINDOW_SIZE_MS}ms sliding window after shrinking top-level`+` tasks to contain only ${eventName} subevents`);const interactiveHistogram=createHistogramForEQT_(`interactive:${WINDOW_SIZE_MS}ms_window:${eqtName}:${eventName}`,`Contribution to the expected queueing time by ${eventName}`+' for a given renderer while the page is interactive. It is computed'+` as the maximum EQT in a ${WINDOW_SIZE_MS}ms sliding window after`+` shrinking top-level tasks to contain only ${eventName} subevents`);const rendererHelpers=Object.values(chromeHelper.rendererHelpers);for(const rendererHelper of rendererHelpers){if(rendererHelper.isChromeTracingUI)continue;const tasks=getTasks(rendererHelper);totalHistogram.addSample(tr.e.chrome.maxExpectedQueueingTimeInSlidingWindow(rendererHelper.mainThread.bounds.min,rendererHelper.mainThread.bounds.max,WINDOW_SIZE_MS,tasks));const interactiveTimestamps=rendererToInteractiveTimestamps.get(rendererHelper.pid);if(interactiveTimestamps.length===0)continue;if(interactiveTimestamps.length>1){continue;}
8220const interactiveWindow=tr.b.math.Range.fromExplicitRange(interactiveTimestamps[0],Infinity).findIntersection(rendererHelper.mainThread.bounds);interactiveHistogram.addSample(tr.e.chrome.maxExpectedQueueingTimeInSlidingWindow(interactiveWindow.min,interactiveWindow.max,WINDOW_SIZE_MS,tasks));}
8221histograms.addHistogram(totalHistogram);histograms.addHistogram(interactiveHistogram);return{total:totalHistogram,interactive:interactiveHistogram};}
8222tr.metrics.MetricRegistry.register(expectedQueueingTimeMetric);return{expectedQueueingTimeMetric,};});'use strict';tr.exportTo('tr.b',function(){function MultiDimensionalViewNode(title,valueCount){this.title=title;const dimensions=title.length;this.children=new Array(dimensions);for(let i=0;i<dimensions;i++){this.children[i]=new Map();}
8223this.values=new Array(valueCount);for(let v=0;v<valueCount;v++){this.values[v]={self:0,total:0,totalState:NOT_PROVIDED};}}
8224MultiDimensionalViewNode.TotalState={NOT_PROVIDED:0,LOWER_BOUND:1,EXACT:2};const NOT_PROVIDED=MultiDimensionalViewNode.TotalState.NOT_PROVIDED;const LOWER_BOUND=MultiDimensionalViewNode.TotalState.LOWER_BOUND;const EXACT=MultiDimensionalViewNode.TotalState.EXACT;MultiDimensionalViewNode.prototype={get subRows(){return Array.from(this.children[0].values());}};function MultiDimensionalViewBuilder(dimensions,valueCount){if(typeof(dimensions)!=='number'||dimensions<0){throw new Error('Dimensions must be a non-negative number');}
8225this.dimensions_=dimensions;if(typeof(valueCount)!=='number'||valueCount<0){throw new Error('Number of values must be a non-negative number');}
8226this.valueCount_=valueCount;this.buildRoot_=this.createRootNode_();this.topDownTreeViewRoot_=undefined;this.topDownHeavyViewRoot_=undefined;this.bottomUpHeavyViewNode_=undefined;this.complete_=false;this.maxDimensionDepths_=new Array(dimensions);for(let d=0;d<dimensions;d++){this.maxDimensionDepths_[d]=0;}}
8227MultiDimensionalViewBuilder.ValueKind={SELF:0,TOTAL:1};MultiDimensionalViewBuilder.ViewType={TOP_DOWN_TREE_VIEW:0,TOP_DOWN_HEAVY_VIEW:1,BOTTOM_UP_HEAVY_VIEW:2};MultiDimensionalViewBuilder.prototype={addPath(path,values,valueKind){if(this.buildRoot_===undefined){throw new Error('Paths cannot be added after either view has been built');}
8228if(path.length!==this.dimensions_){throw new Error('Path must be '+this.dimensions_+'-dimensional');}
8229if(values.length!==this.valueCount_){throw new Error('Must provide '+this.valueCount_+' values');}
8230let isTotal;switch(valueKind){case MultiDimensionalViewBuilder.ValueKind.SELF:isTotal=false;break;case MultiDimensionalViewBuilder.ValueKind.TOTAL:isTotal=true;break;default:throw new Error('Invalid value kind: '+valueKind);}
8231let node=this.buildRoot_;for(let d=0;d<path.length;d++){const singleDimensionPath=path[d];const singleDimensionPathLength=singleDimensionPath.length;this.maxDimensionDepths_[d]=Math.max(this.maxDimensionDepths_[d],singleDimensionPathLength);for(let i=0;i<singleDimensionPathLength;i++){node=this.getOrCreateChildNode_(node,d,singleDimensionPath[i]);}}
8232for(let v=0;v<this.valueCount_;v++){const addedValue=values[v];if(addedValue===undefined)continue;const nodeValue=node.values[v];if(isTotal){nodeValue.total+=addedValue;nodeValue.totalState=EXACT;}else{nodeValue.self+=addedValue;nodeValue.totalState=Math.max(nodeValue.totalState,LOWER_BOUND);}}},get complete(){return this.complete_;},set complete(isComplete){if(this.buildRoot_===undefined){throw new Error('Can\'t set complete after any view has been built.');}
8233this.complete_=isComplete;},buildView(viewType){switch(viewType){case MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW:return this.buildTopDownTreeView();case MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW:return this.buildTopDownHeavyView();case MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW:return this.buildBottomUpHeavyView();default:throw new Error('Unknown multi-dimensional view type: '+viewType);}},buildTopDownTreeView(){if(this.topDownTreeViewRoot_===undefined){const treeViewRoot=this.buildRoot_;this.buildRoot_=undefined;this.setUpMissingChildRelationships_(treeViewRoot,0);this.finalizeTotalValues_(treeViewRoot,0,new WeakMap());this.topDownTreeViewRoot_=treeViewRoot;}
8234return this.topDownTreeViewRoot_;},buildTopDownHeavyView(){if(this.topDownHeavyViewRoot_===undefined){this.topDownHeavyViewRoot_=this.buildGenericHeavyView_(this.addDimensionToTopDownHeavyViewNode_.bind(this));}
8235return this.topDownHeavyViewRoot_;},buildBottomUpHeavyView(){if(this.bottomUpHeavyViewNode_===undefined){this.bottomUpHeavyViewNode_=this.buildGenericHeavyView_(this.addDimensionToBottomUpHeavyViewNode_.bind(this));}
8236return this.bottomUpHeavyViewNode_;},createRootNode_(){return new MultiDimensionalViewNode(new Array(this.dimensions_),this.valueCount_);},getOrCreateChildNode_(parentNode,dimension,childDimensionTitle){if(dimension<0||dimension>=this.dimensions_){throw new Error('Invalid dimension');}
8237const dimensionChildren=parentNode.children[dimension];let childNode=dimensionChildren.get(childDimensionTitle);if(childNode!==undefined){return childNode;}
8238const childTitle=parentNode.title.slice();childTitle[dimension]=childDimensionTitle;childNode=new MultiDimensionalViewNode(childTitle,this.valueCount_);dimensionChildren.set(childDimensionTitle,childNode);return childNode;},setUpMissingChildRelationships_(node,firstDimensionToSetUp){for(let d=firstDimensionToSetUp;d<this.dimensions_;d++){const currentDimensionChildTitles=new Set(node.children[d].keys());for(let i=0;i<d;i++){for(const previousDimensionChildNode of node.children[i].values()){for(const previousDimensionGrandChildTitle of
8239previousDimensionChildNode.children[d].keys()){currentDimensionChildTitles.add(previousDimensionGrandChildTitle);}}}
8240for(const currentDimensionChildTitle of currentDimensionChildTitles){const currentDimensionChildNode=this.getOrCreateChildNode_(node,d,currentDimensionChildTitle);for(let i=0;i<d;i++){for(const previousDimensionChildNode of
8241node.children[i].values()){const previousDimensionGrandChildNode=previousDimensionChildNode.children[d].get(currentDimensionChildTitle);if(previousDimensionGrandChildNode!==undefined){currentDimensionChildNode.children[i].set(previousDimensionChildNode.title[i],previousDimensionGrandChildNode);}}}
8242this.setUpMissingChildRelationships_(currentDimensionChildNode,d);}}},finalizeTotalValues_(node,firstDimensionToFinalize,dimensionalSelfSumsMap){const dimensionalSelfSums=new Array(this.dimensions_);const minResidual=new Array(this.valueCount_);for(let v=0;v<this.valueCount_;v++)minResidual[v]=0;const nodeValues=node.values;const nodeSelfSums=new Array(this.valueCount_);for(let v=0;v<this.valueCount_;v++){nodeSelfSums[v]=nodeValues[v].self;}
8243for(let d=0;d<this.dimensions_;d++){const childResidualSums=new Array(this.valueCount_);for(let v=0;v<this.valueCount_;v++){childResidualSums[v]=0;}
8244for(const childNode of node.children[d].values()){if(d>=firstDimensionToFinalize){this.finalizeTotalValues_(childNode,d,dimensionalSelfSumsMap);}
8245const childNodeSelfSums=dimensionalSelfSumsMap.get(childNode);const childNodeValues=childNode.values;for(let v=0;v<this.valueCount_;v++){nodeSelfSums[v]+=childNodeSelfSums[d][v];const residual=childNodeValues[v].total-
8246childNodeSelfSums[this.dimensions_-1][v];childResidualSums[v]+=residual;if(this.complete){nodeValues[v].totalState=EXACT;}else if(childNodeValues[v].totalState>NOT_PROVIDED){nodeValues[v].totalState=Math.max(nodeValues[v].totalState,LOWER_BOUND);}}}
8247dimensionalSelfSums[d]=nodeSelfSums.slice();for(let v=0;v<this.valueCount_;v++){minResidual[v]=Math.max(minResidual[v],childResidualSums[v]);}}
8248for(let v=0;v<this.valueCount_;v++){nodeValues[v].total=Math.max(nodeValues[v].total,nodeSelfSums[v]+minResidual[v]);}
8249if(dimensionalSelfSumsMap.has(node)){throw new Error('Internal error: Node finalized more than once');}
8250dimensionalSelfSumsMap.set(node,dimensionalSelfSums);},buildGenericHeavyView_(treeViewNodeHandler){const treeViewRoot=this.buildTopDownTreeView();const heavyViewRoot=this.createRootNode_();heavyViewRoot.values=treeViewRoot.values;const recursionDepthTrackers=new Array(this.dimensions_);for(let d=0;d<this.dimensions_;d++){recursionDepthTrackers[d]=new RecursionDepthTracker(this.maxDimensionDepths_[d],d);}
8251this.addDimensionsToGenericHeavyViewNode_(treeViewRoot,heavyViewRoot,0,recursionDepthTrackers,false,treeViewNodeHandler);this.setUpMissingChildRelationships_(heavyViewRoot,0);return heavyViewRoot;},addDimensionsToGenericHeavyViewNode_(treeViewParentNode,heavyViewParentNode,startDimension,recursionDepthTrackers,previousDimensionsRecursive,treeViewNodeHandler){for(let d=startDimension;d<this.dimensions_;d++){this.addDimensionDescendantsToGenericHeavyViewNode_(treeViewParentNode,heavyViewParentNode,d,recursionDepthTrackers,previousDimensionsRecursive,treeViewNodeHandler);}},addDimensionDescendantsToGenericHeavyViewNode_(treeViewParentNode,heavyViewParentNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive,treeViewNodeHandler){const treeViewChildren=treeViewParentNode.children[currentDimension];const recursionDepthTracker=recursionDepthTrackers[currentDimension];for(const treeViewChildNode of treeViewChildren.values()){recursionDepthTracker.push(treeViewChildNode);treeViewNodeHandler(treeViewChildNode,heavyViewParentNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive);this.addDimensionDescendantsToGenericHeavyViewNode_(treeViewChildNode,heavyViewParentNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive,treeViewNodeHandler);recursionDepthTracker.pop();}},addDimensionToTopDownHeavyViewNode_(treeViewChildNode,heavyViewParentNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive){this.addDimensionToTopDownHeavyViewNodeRecursively_(treeViewChildNode,heavyViewParentNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive,1);},addDimensionToTopDownHeavyViewNodeRecursively_(treeViewChildNode,heavyViewParentNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive,subTreeDepth){const recursionDepthTracker=recursionDepthTrackers[currentDimension];const currentDimensionRecursive=subTreeDepth<=recursionDepthTracker.recursionDepth;const currentOrPreviousDimensionsRecursive=currentDimensionRecursive||previousDimensionsRecursive;const dimensionTitle=treeViewChildNode.title[currentDimension];const heavyViewChildNode=this.getOrCreateChildNode_(heavyViewParentNode,currentDimension,dimensionTitle);this.addNodeValues_(treeViewChildNode,heavyViewChildNode,!currentOrPreviousDimensionsRecursive);this.addDimensionsToGenericHeavyViewNode_(treeViewChildNode,heavyViewChildNode,currentDimension+1,recursionDepthTrackers,currentOrPreviousDimensionsRecursive,this.addDimensionToTopDownHeavyViewNode_.bind(this));for(const treeViewGrandChildNode of
8252treeViewChildNode.children[currentDimension].values()){recursionDepthTracker.push(treeViewGrandChildNode);this.addDimensionToTopDownHeavyViewNodeRecursively_(treeViewGrandChildNode,heavyViewChildNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive,subTreeDepth+1);recursionDepthTracker.pop();}},addDimensionToBottomUpHeavyViewNode_(treeViewChildNode,heavyViewParentNode,currentDimension,recursionDepthTrackers,previousDimensionsRecursive){const recursionDepthTracker=recursionDepthTrackers[currentDimension];const bottomIndex=recursionDepthTracker.bottomIndex;const topIndex=recursionDepthTracker.topIndex;const firstNonRecursiveIndex=bottomIndex+recursionDepthTracker.recursionDepth;const viewNodePath=recursionDepthTracker.viewNodePath;const trackerAncestorNode=recursionDepthTracker.trackerAncestorNode;let heavyViewDescendantNode=heavyViewParentNode;for(let i=bottomIndex;i<topIndex;i++){const treeViewAncestorNode=viewNodePath[i];const dimensionTitle=treeViewAncestorNode.title[currentDimension];heavyViewDescendantNode=this.getOrCreateChildNode_(heavyViewDescendantNode,currentDimension,dimensionTitle);const currentDimensionRecursive=i<firstNonRecursiveIndex;const currentOrPreviousDimensionsRecursive=currentDimensionRecursive||previousDimensionsRecursive;this.addNodeValues_(treeViewChildNode,heavyViewDescendantNode,!currentOrPreviousDimensionsRecursive);this.addDimensionsToGenericHeavyViewNode_(treeViewChildNode,heavyViewDescendantNode,currentDimension+1,recursionDepthTrackers,currentOrPreviousDimensionsRecursive,this.addDimensionToBottomUpHeavyViewNode_.bind(this));}},addNodeValues_(sourceNode,targetNode,addTotal){const targetNodeValues=targetNode.values;const sourceNodeValues=sourceNode.values;for(let v=0;v<this.valueCount_;v++){const targetNodeValue=targetNodeValues[v];const sourceNodeValue=sourceNodeValues[v];targetNodeValue.self+=sourceNodeValue.self;if(addTotal){targetNodeValue.total+=sourceNodeValue.total;if(this.complete){targetNodeValue.totalState=EXACT;}else if(sourceNodeValue.totalState>NOT_PROVIDED){targetNodeValue.totalState=Math.max(targetNodeValue.totalState,LOWER_BOUND);}}}}};function RecursionDepthTracker(maxDepth,dimension){this.titlePath=new Array(maxDepth);this.viewNodePath=new Array(maxDepth);this.bottomIndex=this.topIndex=maxDepth;this.dimension_=dimension;this.currentTrackerNode_=this.createNode_(0,undefined);}
8253RecursionDepthTracker.prototype={push(viewNode){if(this.bottomIndex===0){throw new Error('Cannot push to a full tracker');}
8254const title=viewNode.title[this.dimension_];this.bottomIndex--;this.titlePath[this.bottomIndex]=title;this.viewNodePath[this.bottomIndex]=viewNode;let childTrackerNode=this.currentTrackerNode_.children.get(title);if(childTrackerNode!==undefined){this.currentTrackerNode_=childTrackerNode;return;}
8255const maxLengths=zFunction(this.titlePath,this.bottomIndex);let recursionDepth=0;for(let i=0;i<maxLengths.length;i++){recursionDepth=Math.max(recursionDepth,maxLengths[i]);}
8256childTrackerNode=this.createNode_(recursionDepth,this.currentTrackerNode_);this.currentTrackerNode_.children.set(title,childTrackerNode);this.currentTrackerNode_=childTrackerNode;},pop(){if(this.bottomIndex===this.topIndex){throw new Error('Cannot pop from an empty tracker');}
8257this.titlePath[this.bottomIndex]=undefined;this.viewNodePath[this.bottomIndex]=undefined;this.bottomIndex++;this.currentTrackerNode_=this.currentTrackerNode_.parent;},get recursionDepth(){return this.currentTrackerNode_.recursionDepth;},createNode_(recursionDepth,parent){return{recursionDepth,parent,children:new Map()};}};function zFunction(list,startIndex){const n=list.length-startIndex;if(n===0)return[];const z=new Array(n);z[0]=0;for(let i=1,left=0,right=0;i<n;++i){let maxLength;if(i<=right){maxLength=Math.min(right-i+1,z[i-left]);}else{maxLength=0;}
8258while(i+maxLength<n&&list[startIndex+maxLength]===list[startIndex+i+maxLength]){++maxLength;}
8259if(i+maxLength-1>right){left=i;right=i+maxLength-1;}
8260z[i]=maxLength;}
8261return z;}
8262return{MultiDimensionalViewBuilder,MultiDimensionalViewNode,RecursionDepthTracker,zFunction,};});'use strict';tr.exportTo('tr.e.chrome',function(){class CpuTime{static getCpuTimeForThread(thread,range){let totalCpuTime=0;tr.b.iterateOverIntersectingIntervals(thread.sliceGroup.topLevelSlices,slice=>slice.start,slice=>slice.end,range.min,range.max,slice=>{if(slice.duration===0)return;if(!slice.cpuDuration)return;const intersection=range.findIntersection(slice.range);const fractionOfSliceInsideRangeOfInterest=intersection.duration/slice.duration;totalCpuTime+=slice.cpuDuration*fractionOfSliceInsideRangeOfInterest;});return totalCpuTime;}
8263static getStageToInitiatorToSegmentBounds(segments,rangeOfInterest){const stageToInitiatorToRanges=new Map();stageToInitiatorToRanges.set('all_stages',new Map([['all_initiators',new Set()]]));const allRanges=stageToInitiatorToRanges.get('all_stages').get('all_initiators');for(const segment of segments){if(!rangeOfInterest.intersectsRangeInclusive(segment.range))continue;const intersectingRange=rangeOfInterest.findIntersection(segment.range);allRanges.add(intersectingRange);for(const expectation of segment.expectations){const stageTitle=expectation.stageTitle;if(!stageToInitiatorToRanges.has(stageTitle)){stageToInitiatorToRanges.set(stageTitle,new Map([['all_initiators',new Set()]]));}
8264const initiatorToRanges=stageToInitiatorToRanges.get(stageTitle);initiatorToRanges.get('all_initiators').add(intersectingRange);const initiatorType=expectation.initiatorType;if(initiatorType){if(!initiatorToRanges.has(initiatorType)){initiatorToRanges.set(initiatorType,new Set());}
8265initiatorToRanges.get(initiatorType).add(intersectingRange);}}}
8266return stageToInitiatorToRanges;}
8267static computeCpuTimesForRanges_(ranges,thread){const rangeToCpuTime=new Map();for(const range of ranges){rangeToCpuTime.set(range,CpuTime.getCpuTimeForThread(thread,range));}
8268return rangeToCpuTime;}
8269static constructMultiDimensionalView(model,rangeOfInterest){const mdvBuilder=new tr.b.MultiDimensionalViewBuilder(3,2);const stageToInitiatorToRanges=CpuTime.getStageToInitiatorToSegmentBounds(model.userModel.segments,rangeOfInterest);const allSegmentBoundsInRange=stageToInitiatorToRanges.get('all_stages').get('all_initiators');for(const[pid,process]of Object.entries(model.processes)){const processType=tr.e.chrome.chrome_processes.canonicalizeProcessName(process.name);for(const[tid,thread]of Object.entries(process.threads)){const rangeToCpuTime=CpuTime.computeCpuTimesForRanges_(allSegmentBoundsInRange,thread);for(const[stage,initiatorToRanges]of stageToInitiatorToRanges){for(const[initiator,ranges]of initiatorToRanges){const cpuTime=tr.b.math.Statistics.sum(ranges,range=>rangeToCpuTime.get(range));const duration=tr.b.math.Statistics.sum(ranges,range=>range.duration);const cpuTimePerSecond=cpuTime/duration;mdvBuilder.addPath([[processType],[thread.type],[stage,initiator]],[cpuTimePerSecond,cpuTime],tr.b.MultiDimensionalViewBuilder.ValueKind.TOTAL);}}}}
8270return mdvBuilder.buildTopDownTreeView();}}
8271return{CpuTime,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const CPU_PERCENTAGE_UNIT=tr.b.Unit.byName.normalizedPercentage_smallerIsBetter;const CPU_TIME_UNIT=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;function clonePath_(previousPath){return previousPath.map(subPath=>subPath.map(x=>x));}
8272function decodePath_(path){return{processType:path[0][0],threadType:path[1][0],railStage:path[2][0],initiatorType:path[2][1]};}
8273function stringifyPathName_(path){const decodedPath=decodePath_(path);return[decodedPath.processType,decodedPath.threadType,decodedPath.railStage,decodedPath.initiatorType].join(':');}
8274class CpuTimeTreeDataReporter{constructor(){this.visitedSet_=new Set();}
8275reportValuesFromNode_(node,path){const decodedPath=decodePath_(path);const processType=decodedPath.processType||'all_processes';const threadType=decodedPath.threadType||'all_threads';if(!decodedPath.railStage||!decodedPath.initiatorType)return;const{railStage,initiatorType}=decodedPath;const serializedPathName=[processType,threadType,railStage,initiatorType].join(':');const cpuPercentageValue=node.values[0].total;const cpuTimeValue=node.values[1].total;this.histogramSet_.createHistogram(`cpuPercentage:${serializedPathName}`,CPU_PERCENTAGE_UNIT,cpuPercentageValue);this.histogramSet_.createHistogram(`cpuTime:${serializedPathName}`,CPU_TIME_UNIT,cpuTimeValue);}
8276reportDataFromTree_(root,rootPath){const rootPathString=stringifyPathName_(rootPath);if(this.visitedSet_.has(rootPathString))return;this.visitedSet_.add(rootPathString);this.reportValuesFromNode_(root,rootPath);for(let dimension=0;dimension<root.children.length;dimension++){const children=root.children[dimension];for(const[name,node]of children){const childPath=clonePath_(rootPath);childPath[dimension].push(name);this.reportDataFromTree_(node,childPath);}}}
8277addTreeValuesToHistogramSet(rootNode,histogramSet){const rootPath=[[],[],[]];this.rootNode_=rootNode;this.histogramSet_=histogramSet;this.reportDataFromTree_(this.rootNode_,rootPath);}
8278static reportToHistogramSet(rootNode,histogramSet){const reporter=new CpuTimeTreeDataReporter();reporter.addTreeValuesToHistogramSet(rootNode,histogramSet);}}
8279return{CpuTimeTreeDataReporter,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function newCpuTimeMetric(histograms,model,opt_options){const rangeOfInterest=opt_options&&opt_options.rangeOfInterest?opt_options.rangeOfInterest:model.bounds;const rootNode=tr.e.chrome.CpuTime.constructMultiDimensionalView(model,rangeOfInterest);tr.metrics.sh.CpuTimeTreeDataReporter.reportToHistogramSet(rootNode,histograms);}
8280tr.metrics.MetricRegistry.register(newCpuTimeMetric,{supportsRangeOfInterest:true});return{newCpuTimeMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const includeHistogramNames=['cpuTime:all_processes:all_threads:all_stages:all_initiators','cpuPercentage:all_processes:all_threads:all_stages:all_initiators','cpuTime:browser_process:all_threads:all_stages:all_initiators','cpuPercentage:browser_process:all_threads:all_stages:all_initiators','cpuTime:renderer_processes:all_threads:all_stages:all_initiators','cpuPercentage:renderer_processes:all_threads:all_stages:all_initiators','cpuTime:gpu_process:all_threads:all_stages:all_initiators','cpuPercentage:gpu_process:all_threads:all_stages:all_initiators','cpuTime:renderer_processes:CrRendererMain:all_stages:all_initiators','cpuPercentage:renderer_processes:CrRendererMain:all_stages:all_initiators','cpuTime:browser_process:CrBrowserMain:all_stages:all_initiators','cpuPercentage:browser_process:CrBrowserMain:all_stages:all_initiators','cpuTime:all_processes:all_threads:Load:Successful','cpuPercentage:all_processes:all_threads:Load:Successful',];function limitedCpuTimeMetric(histograms,model,opt_options){const allCpuHistograms=new tr.v.HistogramSet();tr.metrics.sh.newCpuTimeMetric(allCpuHistograms,model,opt_options);for(const histogramName of includeHistogramNames){const histogram=allCpuHistograms.getHistogramNamed(histogramName);if(histogram)histograms.addHistogram(histogram);}}
8281tr.metrics.MetricRegistry.register(limitedCpuTimeMetric,{supportsRangeOfInterest:true});return{limitedCpuTimeMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const LONG_TASK_MS=50;const LONGEST_TASK_MS=1000;function iterateLongTopLevelTasksOnThreadInRange(thread,opt_range,cb,opt_this){thread.sliceGroup.topLevelSlices.forEach(function(slice){if(opt_range&&!opt_range.intersectsExplicitRangeInclusive(slice.start,slice.end)){return;}
8282if(slice.duration<LONG_TASK_MS)return;cb.call(opt_this,slice);});}
8283function iterateRendererMainThreads(model,cb,opt_this){const modelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(modelHelper!==undefined){Object.values(modelHelper.rendererHelpers).forEach(function(rendererHelper){if(!rendererHelper.mainThread)return;cb.call(opt_this,rendererHelper.mainThread);});}}
8284const BIN_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(LONG_TASK_MS,LONGEST_TASK_MS,40);function longTasksMetric(histograms,model,opt_options){const rangeOfInterest=opt_options?opt_options.rangeOfInterest:undefined;const longTaskHist=histograms.createHistogram('longTasks',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,[],{binBoundaries:BIN_BOUNDARIES,description:'durations of long tasks',});const relatedNames=new tr.v.d.RelatedNameMap();longTaskHist.diagnostics.set('categories',relatedNames);iterateRendererMainThreads(model,function(thread){iterateLongTopLevelTasksOnThreadInRange(thread,rangeOfInterest,function(task){const breakdown=new tr.v.d.Breakdown();breakdown.colorScheme=tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;for(const slice of task.descendentSlices){const sample=slice.cpuSelfTime;if(sample===undefined)continue;const category=model.getUserFriendlyCategoryFromEvent(slice);const histName='longTasks:'+category;let hist=histograms.getHistogramNamed(histName);if(hist===undefined){hist=histograms.createHistogram(histName,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,[],{binBoundaries:BIN_BOUNDARIES,});relatedNames.set(category,hist.name);}
8285hist.addSample(sample,{events:new tr.v.d.RelatedEventSet([slice]),});breakdown.set(category,sample+breakdown.get(category));}
8286longTaskHist.addSample(task.duration,{events:new tr.v.d.RelatedEventSet([task]),categories:breakdown,});});});}
8287tr.metrics.MetricRegistry.register(longTasksMetric,{supportsRangeOfInterest:true,requiredCategories:['toplevel'],});return{longTasksMetric,iterateLongTopLevelTasksOnThreadInRange,iterateRendererMainThreads,LONG_TASK_MS,LONGEST_TASK_MS,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;const LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;const DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;const sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;const count_smallerIsBetter=tr.b.Unit.byName.count_smallerIsBetter;const DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;const LEVEL_OF_DETAIL_NAMES=new Map();LEVEL_OF_DETAIL_NAMES.set(BACKGROUND,'background');LEVEL_OF_DETAIL_NAMES.set(LIGHT,'light');LEVEL_OF_DETAIL_NAMES.set(DETAILED,'detailed');const HEAP_PROFILER_DETAIL_NAME='heap_profiler';const BOUNDARIES_FOR_UNIT_MAP=new WeakMap();BOUNDARIES_FOR_UNIT_MAP.set(count_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(0,20,20));BOUNDARIES_FOR_UNIT_MAP.set(sizeInBytes_smallerIsBetter,new tr.v.HistogramBinBoundaries(0).addBinBoundary(1024).addExponentialBins(16*1024*1024*1024,4*24));const CHROME_PROCESS_NAMES=tr.e.chrome.chrome_processes.CHROME_PROCESS_NAMES;function memoryMetric(values,model,opt_options){const rangeOfInterest=opt_options?opt_options.rangeOfInterest:undefined;const browserNameToGlobalDumps=tr.metrics.sh.splitGlobalDumpsByBrowserName(model,rangeOfInterest);addGeneralMemoryDumpValues(browserNameToGlobalDumps,values);addDetailedMemoryDumpValues(browserNameToGlobalDumps,values);addMemoryDumpCountValues(browserNameToGlobalDumps,values);}
8288const USER_FRIENDLY_BROWSER_NAMES={'chrome':'Chrome','webview':'WebView','unknown_browser':'an unknown browser'};function convertBrowserNameToUserFriendlyName(browserName){for(const baseName in USER_FRIENDLY_BROWSER_NAMES){if(!browserName.startsWith(baseName))continue;const userFriendlyBaseName=USER_FRIENDLY_BROWSER_NAMES[baseName];const suffix=browserName.substring(baseName.length);if(suffix.length===0){return userFriendlyBaseName;}else if(/^\d+$/.test(suffix)){return userFriendlyBaseName+'('+suffix+')';}}
8289return'\''+browserName+'\' browser';}
8290function convertProcessNameToUserFriendlyName(processName,opt_requirePlural){switch(processName){case CHROME_PROCESS_NAMES.BROWSER:return opt_requirePlural?'browser processes':'the browser process';case CHROME_PROCESS_NAMES.RENDERER:return'renderer processes';case CHROME_PROCESS_NAMES.GPU:return opt_requirePlural?'GPU processes':'the GPU process';case CHROME_PROCESS_NAMES.PPAPI:return opt_requirePlural?'PPAPI processes':'the PPAPI process';case CHROME_PROCESS_NAMES.ALL:return'all processes';case CHROME_PROCESS_NAMES.UNKNOWN:return'unknown processes';default:return'\''+processName+'\' processes';}}
8291function addGeneralMemoryDumpValues(browserNameToGlobalDumps,values){addMemoryDumpValues(browserNameToGlobalDumps,gmd=>true,function(processDump,addProcessScalar){addProcessScalar({source:'process_count',property:PROCESS_COUNT,value:1});if(processDump.totals!==undefined){addProcessScalar({source:'reported_by_os',property:RESIDENT_SIZE,component:['system_memory'],value:processDump.totals.residentBytes});addProcessScalar({source:'reported_by_os',property:PEAK_RESIDENT_SIZE,component:['system_memory'],value:processDump.totals.peakResidentBytes});addProcessScalar({source:'reported_by_os',property:PRIVATE_FOOTPRINT_SIZE,component:['system_memory'],value:processDump.totals.privateFootprintBytes,});}
8292if(processDump.memoryAllocatorDumps===undefined)return;processDump.memoryAllocatorDumps.forEach(function(rootAllocatorDump){CHROME_VALUE_PROPERTIES.forEach(function(property){addProcessScalar({source:'reported_by_chrome',component:[rootAllocatorDump.name],property,value:rootAllocatorDump.numerics[property.name]});});if(rootAllocatorDump.numerics.allocated_objects_size===undefined){const allocatedObjectsDump=rootAllocatorDump.getDescendantDumpByFullName('allocated_objects');if(allocatedObjectsDump!==undefined){addProcessScalar({source:'reported_by_chrome',component:[rootAllocatorDump.name],property:ALLOCATED_OBJECTS_SIZE,value:allocatedObjectsDump.numerics.size});}}});addTopHeapDumpCategoryValue(processDump,addProcessScalar);addV8MemoryDumpValues(processDump,addProcessScalar);},function(componentTree){const tracingNode=componentTree.children[1].get('tracing');if(tracingNode===undefined)return;for(let i=0;i<componentTree.values.length;i++){componentTree.values[i].total-=tracingNode.values[i].total;}},values);}
8293function addTopHeapDumpCategoryValue(processDump,addProcessScalar){if(!processDump.heapDumps){return;}
8294for(const allocatorName in processDump.heapDumps){const heapDump=processDump.heapDumps[allocatorName];if(heapDump.entries===undefined||heapDump.entries.length===0){return;}
8295const typeToSize={};for(let i=0;i<heapDump.entries.length;i+=1){const entry=heapDump.entries[i];if(!entry.objectTypeName||entry.leafStackFrame){continue;}
8296if(!typeToSize[entry.objectTypeName]){typeToSize[entry.objectTypeName]=0;}
8297typeToSize[entry.objectTypeName]+=entry.size;}
8298let largestValue=0;let largestType='';for(const key in typeToSize){if(largestValue<typeToSize[key]){largestValue=typeToSize[key];largestType=key;}}
8299addProcessScalar({source:'reported_by_chrome',component:[allocatorName,largestType],property:HEAP_CATEGORY_SIZE,value:largestValue});}}
8300function addV8MemoryDumpValues(processDump,addProcessScalar){const v8Dump=processDump.getMemoryAllocatorDumpByFullName('v8');if(v8Dump===undefined)return;v8Dump.children.forEach(function(isolateDump){const mallocDump=isolateDump.getDescendantDumpByFullName('malloc');if(mallocDump!==undefined){addV8ComponentValues(mallocDump,['v8','allocated_by_malloc'],addProcessScalar);}
8301const heapDump=isolateDump.getDescendantDumpByFullName('heap_spaces');if(heapDump!==undefined){addV8ComponentValues(heapDump,['v8','heap'],addProcessScalar);heapDump.children.forEach(function(spaceDump){if(spaceDump.name==='other_spaces')return;addV8ComponentValues(spaceDump,['v8','heap',spaceDump.name],addProcessScalar);});}});addProcessScalar({source:'reported_by_chrome',component:['v8'],property:CODE_AND_METADATA_SIZE,value:v8Dump.numerics.code_and_metadata_size});addProcessScalar({source:'reported_by_chrome',component:['v8'],property:CODE_AND_METADATA_SIZE,value:v8Dump.numerics.bytecode_and_metadata_size});}
8302function addV8ComponentValues(componentDump,componentPath,addProcessScalar){CHROME_VALUE_PROPERTIES.forEach(function(property){addProcessScalar({source:'reported_by_chrome',component:componentPath,property,value:componentDump.numerics[property.name]});});}
8303const PROCESS_COUNT={unit:count_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){if(componentPath.length>0){throw new Error('Unexpected process count non-empty component path: '+
8304componentPath.join(':'));}
8305return'total number of '+convertProcessNameToUserFriendlyName(processName,true);}};const EFFECTIVE_SIZE={name:'effective_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildChromeValueDescriptionPrefix(componentPath,processName,{userFriendlyPropertyName:'effective size',componentPreposition:'of'});}};const ALLOCATED_OBJECTS_SIZE={name:'allocated_objects_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildChromeValueDescriptionPrefix(componentPath,processName,{userFriendlyPropertyName:'size of all objects allocated',totalUserFriendlyPropertyName:'size of all allocated objects',componentPreposition:'by'});}};const SHIM_ALLOCATED_OBJECTS_SIZE={name:'shim_allocated_objects_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildChromeValueDescriptionPrefix(componentPath,processName,{userFriendlyPropertyName:'size of all objects allocated through shim',totalUserFriendlyPropertyName:'size of all allocated objects through shim',componentPreposition:'by'});}};const LOCKED_SIZE={name:'locked_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildChromeValueDescriptionPrefix(componentPath,processName,{userFriendlyPropertyName:'locked (pinned) size',componentPreposition:'of'});}};const PEAK_SIZE={name:'peak_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildChromeValueDescriptionPrefix(componentPath,processName,{userFriendlyPropertyName:'peak size',componentPreposition:'of'});}};const HEAP_CATEGORY_SIZE={name:'heap_category_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildChromeValueDescriptionPrefix(componentPath,processName,{userFriendlyPropertyName:'heap profiler category size',componentPreposition:'for'});}};const CODE_AND_METADATA_SIZE={name:'code_and_metadata_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildChromeValueDescriptionPrefix(componentPath,processName,{userFriendlyPropertyNamePrefix:'size of',userFriendlyPropertyName:'code and metadata'});}};const CHROME_VALUE_PROPERTIES=[EFFECTIVE_SIZE,ALLOCATED_OBJECTS_SIZE,SHIM_ALLOCATED_OBJECTS_SIZE,LOCKED_SIZE,PEAK_SIZE];function buildChromeValueDescriptionPrefix(componentPath,processName,formatSpec){const nameParts=[];if(componentPath.length===0){nameParts.push('total');if(formatSpec.totalUserFriendlyPropertyName){nameParts.push(formatSpec.totalUserFriendlyPropertyName);}else{if(formatSpec.userFriendlyPropertyNamePrefix){nameParts.push(formatSpec.userFriendlyPropertyNamePrefix);}
8306nameParts.push(formatSpec.userFriendlyPropertyName);}
8307nameParts.push('reported by Chrome for');}else{if(formatSpec.componentPreposition===undefined){if(formatSpec.userFriendlyPropertyNamePrefix){nameParts.push(formatSpec.userFriendlyPropertyNamePrefix);}
8308nameParts.push(componentPath.join(':'));nameParts.push(formatSpec.userFriendlyPropertyName);}else{if(formatSpec.userFriendlyPropertyNamePrefix){nameParts.push(formatSpec.userFriendlyPropertyNamePrefix);}
8309nameParts.push(formatSpec.userFriendlyPropertyName);nameParts.push(formatSpec.componentPreposition);if(componentPath[componentPath.length-1]==='allocated_by_malloc'){nameParts.push('objects allocated by malloc for');nameParts.push(componentPath.slice(0,componentPath.length-1).join(':'));}else{nameParts.push(componentPath.join(':'));}}
8310nameParts.push('in');}
8311nameParts.push(convertProcessNameToUserFriendlyName(processName));return nameParts.join(' ');}
8312const RESIDENT_SIZE={name:'resident_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildOsValueDescriptionPrefix(componentPath,processName,'resident set size (RSS)');}};const PEAK_RESIDENT_SIZE={name:'peak_resident_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildOsValueDescriptionPrefix(componentPath,processName,'peak resident set size');}};const PROPORTIONAL_RESIDENT_SIZE={name:'proportional_resident_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildOsValueDescriptionPrefix(componentPath,processName,'proportional resident size (PSS)');}};const PRIVATE_DIRTY_SIZE={name:'private_dirty_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildOsValueDescriptionPrefix(componentPath,processName,'private dirty size');}};const PRIVATE_FOOTPRINT_SIZE={name:'private_footprint_size',unit:sizeInBytes_smallerIsBetter,buildDescriptionPrefix(componentPath,processName){return buildOsValueDescriptionPrefix(componentPath,processName,'private footprint size');}};function buildOsValueDescriptionPrefix(componentPath,processName,userFriendlyPropertyName){if(componentPath.length>2){throw new Error('OS value component path for \''+
8313userFriendlyPropertyName+'\' too long: '+componentPath.join(':'));}
8314const nameParts=[];if(componentPath.length<2){nameParts.push('total');}
8315nameParts.push(userFriendlyPropertyName);if(componentPath.length>0){switch(componentPath[0]){case'system_memory':if(componentPath.length>1){const userFriendlyComponentName=SYSTEM_VALUE_COMPONENTS[componentPath[1]].userFriendlyName;if(userFriendlyComponentName===undefined){throw new Error('System value sub-component for \''+
8316userFriendlyPropertyName+'\' unknown: '+
8317componentPath.join(':'));}
8318nameParts.push('of',userFriendlyComponentName,'in');}else{nameParts.push('of system memory (RAM) used by');}
8319break;case'gpu_memory':if(componentPath.length>1){nameParts.push('of the',componentPath[1]);nameParts.push('Android memtrack component in');}else{nameParts.push('of GPU memory (Android memtrack) used by');}
8320break;default:throw new Error('OS value component for \''+
8321userFriendlyPropertyName+'\' unknown: '+
8322componentPath.join(':'));}}else{nameParts.push('reported by the OS for');}
8323nameParts.push(convertProcessNameToUserFriendlyName(processName));return nameParts.join(' ');}
8324function addDetailedMemoryDumpValues(browserNameToGlobalDumps,values){addMemoryDumpValues(browserNameToGlobalDumps,g=>g.levelOfDetail===DETAILED,function(processDump,addProcessScalar){for(const[componentName,componentSpec]of
8325Object.entries(SYSTEM_VALUE_COMPONENTS)){const node=getDescendantVmRegionClassificationNode(processDump.vmRegions,componentSpec.classificationPath);const componentPath=['system_memory'];if(componentName)componentPath.push(componentName);addProcessScalar({source:'reported_by_os',component:componentPath,property:PROPORTIONAL_RESIDENT_SIZE,value:node===undefined?0:(node.byteStats.proportionalResident||0)});addProcessScalar({source:'reported_by_os',component:componentPath,property:PRIVATE_DIRTY_SIZE,value:node===undefined?0:(node.byteStats.privateDirtyResident||0)});}
8326const memtrackDump=processDump.getMemoryAllocatorDumpByFullName('gpu/android_memtrack');if(memtrackDump!==undefined){memtrackDump.children.forEach(function(memtrackChildDump){addProcessScalar({source:'reported_by_os',component:['gpu_memory',memtrackChildDump.name],property:PROPORTIONAL_RESIDENT_SIZE,value:memtrackChildDump.numerics.memtrack_pss});});}},function(componentTree){},values);}
8327const SYSTEM_VALUE_COMPONENTS={'':{classificationPath:[],},'java_heap':{classificationPath:['Android','Java runtime','Spaces'],userFriendlyName:'the Java heap'},'ashmem':{classificationPath:['Android','Ashmem'],userFriendlyName:'ashmem'},'native_heap':{classificationPath:['Native heap'],userFriendlyName:'the native heap'},'stack':{classificationPath:['Stack'],userFriendlyName:'the thread stacks'}};function getDescendantVmRegionClassificationNode(node,path){for(let i=0;i<path.length;i++){if(node===undefined)break;node=node.children.find(c=>c.title===path[i]);}
8328return node;}
8329function addMemoryDumpCountValues(browserNameToGlobalDumps,values){browserNameToGlobalDumps.forEach(function(globalDumps,browserName){let totalDumpCount=0;const levelOfDetailNameToDumpCount={};LEVEL_OF_DETAIL_NAMES.forEach(function(levelOfDetailName){levelOfDetailNameToDumpCount[levelOfDetailName]=0;});levelOfDetailNameToDumpCount[HEAP_PROFILER_DETAIL_NAME]=0;globalDumps.forEach(function(globalDump){totalDumpCount++;const levelOfDetailName=LEVEL_OF_DETAIL_NAMES.get(globalDump.levelOfDetail);if(levelOfDetailName===undefined){return;}
8330levelOfDetailNameToDumpCount[levelOfDetailName]++;if(globalDump.levelOfDetail===DETAILED){if(detectHeapProfilerInMemoryDump(globalDump)){levelOfDetailNameToDumpCount[HEAP_PROFILER_DETAIL_NAME]++;}}});reportMemoryDumpCountAsValue(browserName,undefined,totalDumpCount,values);for(const[levelOfDetailName,levelOfDetailDumpCount]of
8331Object.entries(levelOfDetailNameToDumpCount)){reportMemoryDumpCountAsValue(browserName,levelOfDetailName,levelOfDetailDumpCount,values);}});}
8332function detectHeapProfilerInMemoryDump(globalDump){for(const processDump of Object.values(globalDump.processMemoryDumps)){if(processDump.heapDumps&&processDump.heapDumps.malloc){const mallocDump=processDump.heapDumps.malloc;if(mallocDump.entries&&mallocDump.entries.length>0){return true;}}}
8333return false;}
8334function reportMemoryDumpCountAsValue(browserName,levelOfDetailName,levelOfDetailDumpCount,values){const nameParts=['memory',browserName,'all_processes','dump_count'];if(levelOfDetailName!==undefined){nameParts.push(levelOfDetailName);}
8335const name=nameParts.join(':');const histogram=new tr.v.Histogram(name,count_smallerIsBetter,BOUNDARIES_FOR_UNIT_MAP.get(count_smallerIsBetter));histogram.addSample(levelOfDetailDumpCount);const userFriendlyLevelOfDetail=(levelOfDetailName||'all').replace('_',' ');histogram.description=['total number of',userFriendlyLevelOfDetail,'memory dumps added by',convertBrowserNameToUserFriendlyName(browserName),'to the trace'].join(' ');values.addHistogram(histogram);}
8336function addMemoryDumpValues(browserNameToGlobalDumps,customGlobalDumpFilter,customProcessDumpValueExtractor,customComponentTreeModifier,values){browserNameToGlobalDumps.forEach(function(globalDumps,browserName){const filteredGlobalDumps=globalDumps.filter(customGlobalDumpFilter);const sourceToPropertyToBuilder=extractDataFromGlobalDumps(filteredGlobalDumps,customProcessDumpValueExtractor);reportDataAsValues(sourceToPropertyToBuilder,browserName,customComponentTreeModifier,values);});}
8337function extractDataFromGlobalDumps(globalDumps,customProcessDumpValueExtractor){const sourceToPropertyToBuilder=new Map();const dumpCount=globalDumps.length;globalDumps.forEach(function(globalDump,dumpIndex){for(const processDump of Object.values(globalDump.processMemoryDumps)){extractDataFromProcessDump(processDump,sourceToPropertyToBuilder,dumpIndex,dumpCount,customProcessDumpValueExtractor);}});return sourceToPropertyToBuilder;}
8338function extractDataFromProcessDump(processDump,sourceToPropertyToBuilder,dumpIndex,dumpCount,customProcessDumpValueExtractor){const rawProcessName=processDump.process.name;const processNamePath=[tr.e.chrome.chrome_processes.canonicalizeProcessName(rawProcessName)];customProcessDumpValueExtractor(processDump,function addProcessScalar(spec){if(spec.value===undefined)return;const component=spec.component||[];function createDetailsForErrorMessage(){return['source=',spec.source,', property=',spec.property.name||'(undefined)',', component=',component.length===0?'(empty)':component.join(':'),' in ',processDump.process.userFriendlyName].join('');}
8339let value;if(spec.value instanceof tr.b.Scalar){value=spec.value.value;if(spec.value.unit!==spec.property.unit){throw new Error('Scalar unit for '+
8340createDetailsForErrorMessage()+' ('+
8341spec.value.unit.unitName+') doesn\'t match the unit of the property ('+
8342spec.property.unit.unitName+')');}}else{value=spec.value;}
8343let propertyToBuilder=sourceToPropertyToBuilder.get(spec.source);if(propertyToBuilder===undefined){propertyToBuilder=new Map();sourceToPropertyToBuilder.set(spec.source,propertyToBuilder);}
8344let builder=propertyToBuilder.get(spec.property);if(builder===undefined){builder=new tr.b.MultiDimensionalViewBuilder(2,dumpCount),propertyToBuilder.set(spec.property,builder);}
8345const values=new Array(dumpCount);values[dumpIndex]=value;builder.addPath([processNamePath,component],values,tr.b.MultiDimensionalViewBuilder.ValueKind.TOTAL);});}
8346function reportDataAsValues(sourceToPropertyToBuilder,browserName,customComponentTreeModifier,values){sourceToPropertyToBuilder.forEach(function(propertyToBuilder,sourceName){propertyToBuilder.forEach(function(builders,property){const tree=builders.buildTopDownTreeView();reportComponentDataAsValues(browserName,sourceName,property,[],[],tree,values,customComponentTreeModifier);});});}
8347function reportComponentDataAsValues(browserName,sourceName,property,processPath,componentPath,tree,values,customComponentTreeModifier,opt_cachedHistograms){const cachedHistograms=opt_cachedHistograms||new Map();function recurse(processPath,componentPath,node){return reportComponentDataAsValues(browserName,sourceName,property,processPath,componentPath,node,values,customComponentTreeModifier,cachedHistograms);}
8348function buildHistogram(processPath,componentPath,node){return buildNamedMemoryNumericFromNode(browserName,sourceName,property,processPath.length===0?'all_processes':processPath[0],componentPath,node);}
8349customComponentTreeModifier(tree);const histogram=buildHistogram(processPath,componentPath,tree);if(cachedHistograms.has(histogram.name)){return cachedHistograms.get(histogram.name);}
8350cachedHistograms.set(histogram.name,histogram);const processNames=new tr.v.d.RelatedNameMap();for(const[childProcessName,childProcessNode]of tree.children[0]){processPath.push(childProcessName);const childProcessHistogram=recurse(processPath,componentPath,childProcessNode);processNames.set(childProcessName,childProcessHistogram.name);processPath.pop();}
8351const componentNames=new tr.v.d.RelatedNameMap();for(const[childComponentName,childComponentNode]of tree.children[1]){componentPath.push(childComponentName);const childComponentHistogram=recurse(processPath,componentPath,childComponentNode);componentNames.set(childComponentName,childComponentHistogram.name);componentPath.pop();}
8352values.addHistogram(histogram);if(tree.children[0].size>0){histogram.diagnostics.set('processes',processNames);}
8353if(tree.children[1].size>0){histogram.diagnostics.set('components',componentNames);}
8354return histogram;}
8355function getNumericName(browserName,sourceName,propertyName,processName,componentPath){const nameParts=['memory',browserName,processName,sourceName].concat(componentPath);if(propertyName!==undefined)nameParts.push(propertyName);return nameParts.join(':');}
8356function getNumericDescription(property,browserName,processName,componentPath){return[property.buildDescriptionPrefix(componentPath,processName),'in',convertBrowserNameToUserFriendlyName(browserName)].join(' ');}
8357function buildNamedMemoryNumericFromNode(browserName,sourceName,property,processName,componentPath,node){const name=getNumericName(browserName,sourceName,property.name,processName,componentPath);const description=getNumericDescription(property,browserName,processName,componentPath);const numeric=buildMemoryNumericFromNode(name,node,property.unit);numeric.description=description;return numeric;}
8358function buildSampleDiagnostics(value,node){if(node.children.length<2)return undefined;const diagnostics=new Map();const i=node.values.indexOf(value);const processBreakdown=new tr.v.d.Breakdown();processBreakdown.colorScheme=tr.e.chrome.chrome_processes.PROCESS_COLOR_SCHEME_NAME;for(const[name,subNode]of node.children[0]){processBreakdown.set(name,subNode.values[i].total);}
8359if(processBreakdown.size>0){diagnostics.set('processes',processBreakdown);}
8360const componentBreakdown=new tr.v.d.Breakdown();for(const[name,subNode]of node.children[1]){componentBreakdown.set(name,subNode.values[i].total);}
8361if(componentBreakdown.size>0){diagnostics.set('components',componentBreakdown);}
8362if(diagnostics.size===0)return undefined;return diagnostics;}
8363function buildMemoryNumericFromNode(name,node,unit){const histogram=new tr.v.Histogram(name,unit,BOUNDARIES_FOR_UNIT_MAP.get(unit));node.values.forEach(v=>histogram.addSample(v.total,buildSampleDiagnostics(v,node)));return histogram;}
8364tr.metrics.MetricRegistry.register(memoryMetric,{supportsRangeOfInterest:true});return{memoryMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){const CHROME_POWER_GRACE_PERIOD_MS=1;function createEmptyHistogram_(interval,histograms){if(interval.perSecond){return{perSecond:true,energy:histograms.createHistogram(`${interval.name}:power`,tr.b.Unit.byName.powerInWatts_smallerIsBetter,[],{description:`Energy consumption rate for ${interval.description}`,summaryOptions:{avg:true,count:false,max:true,min:true,std:false,sum:false,},}),};}
8365return{perSecond:false,energy:histograms.createHistogram(`${interval.name}:energy`,tr.b.Unit.byName.energyInJoules_smallerIsBetter,[],{description:`Energy consumed in ${interval.description}`,summaryOptions:{avg:false,count:false,max:true,min:true,std:false,sum:true,},}),};}
8366function createHistograms_(data,interval,histograms){if(data.histograms[interval.name]===undefined){data.histograms[interval.name]=createEmptyHistogram_(interval,histograms);}
8367if(data.histograms[interval.name].perSecond){for(const sample of data.model.device.powerSeries.getSamplesWithinRange(interval.bounds.min,interval.bounds.max)){data.histograms[interval.name].energy.addSample(sample.powerInW);}}else{const energyInJ=data.model.device.powerSeries.getEnergyConsumedInJ(interval.bounds.min,interval.bounds.max);data.histograms[interval.name].energy.addSample(energyInJ);}}
8368function getNavigationTTIIntervals_(model){const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);const intervals=[];for(const rendererHelper of Object.values(chromeHelper.rendererHelpers)){const samples=tr.metrics.sh.collectLoadingMetricsForRenderer(rendererHelper).interactiveSamples;for(const sample of samples){const info=tr.b.getOnlyElement(sample.diagnostics.get('Navigation infos'));intervals.push(tr.b.math.Range.fromExplicitRange(info.navigationStartTime,info.eventTimestamp));}}
8369return intervals.sort((x,y)=>x.min-y.min);}
8370function*computeTimeIntervals_(model){const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);const powerSeries=model.device.powerSeries;if(powerSeries===undefined||powerSeries.samples.length===0){return;}
8371yield{bounds:model.bounds,name:'story',description:'user story',perSecond:true};const chromeBounds=computeChromeBounds_(model);if(chromeBounds.isEmpty)return;const powerSeriesBoundsWithGracePeriod=tr.b.math.Range.fromExplicitRange(powerSeries.bounds.min-CHROME_POWER_GRACE_PERIOD_MS,powerSeries.bounds.max+CHROME_POWER_GRACE_PERIOD_MS);if(!powerSeriesBoundsWithGracePeriod.containsRangeExclusive(chromeBounds)){return;}
8372for(const interval of getRailStageIntervals_(model)){yield{bounds:interval.bounds.findIntersection(chromeBounds),name:interval.name,description:interval.description,perSecond:interval.perSecond};}
8373for(const interval of getLoadingIntervals_(model,chromeBounds)){yield{bounds:interval.bounds.findIntersection(chromeBounds),name:interval.name,description:interval.description,perSecond:interval.perSecond};}}
8374function*getRailStageIntervals_(model){for(const exp of model.userModel.expectations){const histogramName=exp.title.toLowerCase().replace(' ','_');const energyHist=undefined;if(histogramName.includes('response')){yield{bounds:tr.b.math.Range.fromExplicitRange(exp.start,exp.end),name:histogramName,description:'RAIL stage '+histogramName,perSecond:false};}else if(histogramName.includes('animation')||histogramName.includes('idle')){yield{bounds:tr.b.math.Range.fromExplicitRange(exp.start,exp.end),name:histogramName,description:'RAIL stage '+histogramName,perSecond:true};}}}
8375function*getLoadingIntervals_(model,chromeBounds){const ttiIntervals=getNavigationTTIIntervals_(model);for(const ttiInterval of ttiIntervals){yield{bounds:ttiInterval,name:'load',description:'page loads',perSecond:false};}}
8376function computeChromeBounds_(model){const chromeBounds=new tr.b.math.Range();const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(chromeHelper===undefined)return chromeBounds;for(const helper of chromeHelper.browserHelpers){if(helper.mainThread){chromeBounds.addRange(helper.mainThread.bounds);}}
8377for(const pid in chromeHelper.rendererHelpers){if(chromeHelper.rendererHelpers[pid].mainThread){chromeBounds.addRange(chromeHelper.rendererHelpers[pid].mainThread.bounds);}}
8378return chromeBounds;}
8379function powerMetric(histograms,model){const data={model,histograms:{}};for(const interval of computeTimeIntervals_(model)){createHistograms_(data,interval,histograms);}}
8380tr.metrics.MetricRegistry.register(powerMetric);return{powerMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function computeAnimationThroughput(animationExpectation){if(animationExpectation.frameEvents===undefined||animationExpectation.frameEvents.length===0){throw new Error('Animation missing frameEvents '+
8381animationExpectation.stableId);}
8382const durationInS=tr.b.convertUnit(animationExpectation.duration,tr.b.UnitPrefixScale.METRIC.MILLI,tr.b.UnitPrefixScale.METRIC.NONE);return animationExpectation.frameEvents.length/durationInS;}
8383function computeAnimationframeTimeDiscrepancy(animationExpectation){if(animationExpectation.frameEvents===undefined||animationExpectation.frameEvents.length===0){throw new Error('Animation missing frameEvents '+
8384animationExpectation.stableId);}
8385let frameTimestamps=animationExpectation.frameEvents;frameTimestamps=frameTimestamps.toArray().map(function(event){return event.start;});const absolute=true;return tr.b.math.Statistics.timestampsDiscrepancy(frameTimestamps,absolute);}
8386function responsivenessMetric(histograms,model,opt_options){const responseNumeric=new tr.v.Histogram('response latency',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(100,1e3,50));const throughputNumeric=new tr.v.Histogram('animation throughput',tr.b.Unit.byName.unitlessNumber_biggerIsBetter,tr.v.HistogramBinBoundaries.createLinear(10,60,10));const frameTimeDiscrepancyNumeric=new tr.v.Histogram('animation frameTimeDiscrepancy',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(0,1e3,50).addExponentialBins(1e4,10));const latencyNumeric=new tr.v.Histogram('animation latency',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(0,300,60));model.userModel.expectations.forEach(function(ue){if(opt_options&&opt_options.rangeOfInterest&&!opt_options.rangeOfInterest.intersectsExplicitRangeInclusive(ue.start,ue.end)){return;}
8387const sampleDiagnosticMap=tr.v.d.DiagnosticMap.fromObject({relatedEvents:new tr.v.d.RelatedEventSet([ue])});if(ue instanceof tr.model.um.IdleExpectation){return;}else if(ue instanceof tr.model.um.StartupExpectation){return;}else if(ue instanceof tr.model.um.LoadExpectation){}else if(ue instanceof tr.model.um.ResponseExpectation){responseNumeric.addSample(ue.duration,sampleDiagnosticMap);}else if(ue instanceof tr.model.um.AnimationExpectation){if(ue.frameEvents===undefined||ue.frameEvents.length===0){return;}
8388const throughput=computeAnimationThroughput(ue);if(throughput===undefined){throw new Error('Missing throughput for '+
8389ue.stableId);}
8390throughputNumeric.addSample(throughput,sampleDiagnosticMap);const frameTimeDiscrepancy=computeAnimationframeTimeDiscrepancy(ue);if(frameTimeDiscrepancy===undefined){throw new Error('Missing frameTimeDiscrepancy for '+
8391ue.stableId);}
8392frameTimeDiscrepancyNumeric.addSample(frameTimeDiscrepancy,sampleDiagnosticMap);ue.associatedEvents.forEach(function(event){if(!(event instanceof tr.e.cc.InputLatencyAsyncSlice)){return;}
8393latencyNumeric.addSample(event.duration,sampleDiagnosticMap);});}else{throw new Error('Unrecognized stage for '+ue.stableId);}});[responseNumeric,throughputNumeric,frameTimeDiscrepancyNumeric,latencyNumeric].forEach(function(numeric){numeric.customizeSummaryOptions({avg:true,max:true,min:true,std:true});});histograms.addHistogram(responseNumeric);histograms.addHistogram(throughputNumeric);histograms.addHistogram(frameTimeDiscrepancyNumeric);histograms.addHistogram(latencyNumeric);}
8394tr.metrics.MetricRegistry.register(responsivenessMetric,{supportsRangeOfInterest:true,requiredCategories:['rail'],});return{responsivenessMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function webviewStartupMetric(histograms,model){const startupWallHist=new tr.v.Histogram('webview_startup_wall_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);startupWallHist.description='WebView startup wall time';const startupCPUHist=new tr.v.Histogram('webview_startup_cpu_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);startupCPUHist.description='WebView startup CPU time';const loadWallHist=new tr.v.Histogram('webview_url_load_wall_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);loadWallHist.description='WebView blank URL load wall time';const loadCPUHist=new tr.v.Histogram('webview_url_load_cpu_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);loadCPUHist.description='WebView blank URL load CPU time';for(const slice of model.getDescendantEvents()){if(!(slice instanceof tr.model.ThreadSlice))continue;if(slice.title==='WebViewStartupInterval'){startupWallHist.addSample(slice.duration);startupCPUHist.addSample(slice.cpuDuration);}
8395if(slice.title==='WebViewBlankUrlLoadInterval'){loadWallHist.addSample(slice.duration);loadCPUHist.addSample(slice.cpuDuration);}}
8396histograms.addHistogram(startupWallHist);histograms.addHistogram(startupCPUHist);histograms.addHistogram(loadWallHist);histograms.addHistogram(loadCPUHist);}
8397tr.metrics.MetricRegistry.register(webviewStartupMetric);return{webviewStartupMetric,};});'use strict';tr.exportTo('tr.metrics.tabs',function(){function tabsMetric(histograms,model,opt_options){const thread=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper).browserHelper.mainThread;const tabSwitchLatencies=[];if(thread){for(const slice of thread.asyncSliceGroup.slices){if(slice.title==='TabSwitching::Latency'){tabSwitchLatencies.push(slice.duration);}}}
8398histograms.createHistogram('tab_switching_latency',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tabSwitchLatencies,{description:'Tab switching time in ms',summaryOptions:{sum:false}});}
8399tr.metrics.MetricRegistry.register(tabsMetric,{supportsRangeOfInterest:false,});return{tabsMetric,};});'use strict';tr.exportTo('tr.metrics',function(){const MEMORY_INFRA_TRACING_CATEGORY='disabled-by-default-memory-infra';const TIME_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1e-3,1e5,30);const BYTE_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1,1e9,30);const COUNT_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1,1e5,30);const SUMMARY_OPTIONS=tr.v.Histogram.AVERAGE_ONLY_SUMMARY_OPTIONS;function addMemoryInfraHistograms(histograms,model,categoryNamesToTotalEventSizes){const memoryDumpCount=model.globalMemoryDumps.length;if(memoryDumpCount===0)return;let totalOverhead=0;let nonMemoryInfraThreadOverhead=0;const overheadByProvider={};for(const process of Object.values(model.processes)){for(const thread of Object.values(process.threads)){for(const slice of Object.values(thread.sliceGroup.slices)){if(slice.category!==MEMORY_INFRA_TRACING_CATEGORY)continue;totalOverhead+=slice.duration;if(thread.name!=='MemoryInfra'){nonMemoryInfraThreadOverhead+=slice.duration;}
8400if(slice.args&&slice.args['dump_provider.name']){const providerName=slice.args['dump_provider.name'];let durationAndCount=overheadByProvider[providerName];if(durationAndCount===undefined){overheadByProvider[providerName]=durationAndCount={duration:0,count:0};}
8401durationAndCount.duration+=slice.duration;durationAndCount.count++;}}}}
8402histograms.createHistogram('memory_dump_cpu_overhead',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,totalOverhead/memoryDumpCount,{binBoundaries:TIME_BOUNDARIES,description:'Average CPU overhead on all threads per memory-infra dump',summaryOptions:SUMMARY_OPTIONS,});histograms.createHistogram('nonmemory_thread_memory_dump_cpu_overhead',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,nonMemoryInfraThreadOverhead/memoryDumpCount,{binBoundaries:TIME_BOUNDARIES,description:'Average CPU overhead on non-memory-infra threads '+'per memory-infra dump',summaryOptions:SUMMARY_OPTIONS,});for(const[providerName,overhead]of Object.entries(overheadByProvider)){histograms.createHistogram(`${providerName}_memory_dump_cpu_overhead`,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,overhead.duration/overhead.count,{binBoundaries:TIME_BOUNDARIES,description:`Average CPU overhead of ${providerName} per OnMemoryDump call`,summaryOptions:SUMMARY_OPTIONS,});}
8403const memoryInfraEventsSize=categoryNamesToTotalEventSizes.get(MEMORY_INFRA_TRACING_CATEGORY);const memoryInfraTraceBytesValue=new tr.v.Histogram('total_memory_dump_size',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);memoryInfraTraceBytesValue.description='Total trace size of memory-infra dumps in bytes';memoryInfraTraceBytesValue.customizeSummaryOptions(SUMMARY_OPTIONS);memoryInfraTraceBytesValue.addSample(memoryInfraEventsSize);histograms.addHistogram(memoryInfraTraceBytesValue);const traceBytesPerDumpValue=new tr.v.Histogram('memory_dump_size',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);traceBytesPerDumpValue.description='Average trace size of memory-infra dumps in bytes';traceBytesPerDumpValue.customizeSummaryOptions(SUMMARY_OPTIONS);traceBytesPerDumpValue.addSample(memoryInfraEventsSize/memoryDumpCount);histograms.addHistogram(traceBytesPerDumpValue);}
8404function tracingMetric(histograms,model){histograms.createHistogram('trace_import_duration',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,model.stats.traceImportDurationMs,{binBoundaries:TIME_BOUNDARIES,description:'Duration that trace viewer required to import the trace',summaryOptions:SUMMARY_OPTIONS,});if(!model.stats.hasEventSizesinBytes)return;const eventStats=model.stats.allTraceEventStatsInTimeIntervals;eventStats.sort((a,b)=>a.timeInterval-b.timeInterval);const totalTraceBytes=eventStats.reduce((a,b)=>a+b.totalEventSizeinBytes,0);let maxEventCountPerSec=0;let maxEventBytesPerSec=0;const INTERVALS_PER_SEC=Math.floor(1000/model.stats.TIME_INTERVAL_SIZE_IN_MS);let runningEventNumPerSec=0;let runningEventBytesPerSec=0;let start=0;let end=0;while(end<eventStats.length){runningEventNumPerSec+=eventStats[end].numEvents;runningEventBytesPerSec+=eventStats[end].totalEventSizeinBytes;end++;while((eventStats[end-1].timeInterval-
8405eventStats[start].timeInterval)>=INTERVALS_PER_SEC){runningEventNumPerSec-=eventStats[start].numEvents;runningEventBytesPerSec-=eventStats[start].totalEventSizeinBytes;start++;}
8406maxEventCountPerSec=Math.max(maxEventCountPerSec,runningEventNumPerSec);maxEventBytesPerSec=Math.max(maxEventBytesPerSec,runningEventBytesPerSec);}
8407const stats=model.stats.allTraceEventStats;const categoryNamesToTotalEventSizes=(stats.reduce((map,stat)=>(map.set(stat.category,((map.get(stat.category)||0)+
8408stat.totalEventSizeinBytes))),new Map()));const maxCatNameAndBytes=Array.from(categoryNamesToTotalEventSizes.entries()).reduce((a,b)=>((b[1]>=a[1])?b:a));const maxEventBytesPerCategory=maxCatNameAndBytes[1];const categoryWithMaxEventBytes=maxCatNameAndBytes[0];const maxEventCountPerSecValue=new tr.v.Histogram('peak_event_rate',tr.b.Unit.byName.count_smallerIsBetter,COUNT_BOUNDARIES);maxEventCountPerSecValue.description='Max number of events per second';maxEventCountPerSecValue.customizeSummaryOptions(SUMMARY_OPTIONS);maxEventCountPerSecValue.addSample(maxEventCountPerSec);const maxEventBytesPerSecValue=new tr.v.Histogram('peak_event_size_rate',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);maxEventBytesPerSecValue.description='Max event size in bytes per second';maxEventBytesPerSecValue.customizeSummaryOptions(SUMMARY_OPTIONS);maxEventBytesPerSecValue.addSample(maxEventBytesPerSec);const totalTraceBytesValue=new tr.v.Histogram('trace_size',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);totalTraceBytesValue.customizeSummaryOptions(SUMMARY_OPTIONS);totalTraceBytesValue.addSample(totalTraceBytes);const biggestCategory={name:categoryWithMaxEventBytes,size_in_bytes:maxEventBytesPerCategory};totalTraceBytesValue.diagnostics.set('category_with_max_event_size',new tr.v.d.GenericSet([biggestCategory]));histograms.addHistogram(totalTraceBytesValue);maxEventCountPerSecValue.diagnostics.set('category_with_max_event_size',new tr.v.d.GenericSet([biggestCategory]));histograms.addHistogram(maxEventCountPerSecValue);maxEventBytesPerSecValue.diagnostics.set('category_with_max_event_size',new tr.v.d.GenericSet([biggestCategory]));histograms.addHistogram(maxEventBytesPerSecValue);addMemoryInfraHistograms(histograms,model,categoryNamesToTotalEventSizes);}
8409tr.metrics.MetricRegistry.register(tracingMetric);return{tracingMetric,MEMORY_INFRA_TRACING_CATEGORY,};});'use strict';tr.exportTo('tr.metrics.v8',function(){const CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(4,200,100);function computeExecuteMetrics(histograms,model){const cpuTotalExecution=new tr.v.Histogram('v8_execution_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalExecution.description='cpu total time spent in script execution';const wallTotalExecution=new tr.v.Histogram('v8_execution_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalExecution.description='wall total time spent in script execution';const cpuSelfExecution=new tr.v.Histogram('v8_execution_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfExecution.description='cpu self time spent in script execution';const wallSelfExecution=new tr.v.Histogram('v8_execution_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfExecution.description='wall self time spent in script execution';for(const e of model.findTopmostSlicesNamed('V8.Execute')){cpuTotalExecution.addSample(e.cpuDuration);wallTotalExecution.addSample(e.duration);cpuSelfExecution.addSample(e.cpuSelfTime);wallSelfExecution.addSample(e.selfTime);}
8410histograms.addHistogram(cpuTotalExecution);histograms.addHistogram(wallTotalExecution);histograms.addHistogram(cpuSelfExecution);histograms.addHistogram(wallSelfExecution);}
8411function computeParseLazyMetrics(histograms,model){const cpuSelfParseLazy=new tr.v.Histogram('v8_parse_lazy_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfParseLazy.description='cpu self time spent performing lazy parsing';const wallSelfParseLazy=new tr.v.Histogram('v8_parse_lazy_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfParseLazy.description='wall self time spent performing lazy parsing';for(const e of model.findTopmostSlicesNamed('V8.ParseLazyMicroSeconds')){cpuSelfParseLazy.addSample(e.cpuSelfTime);wallSelfParseLazy.addSample(e.selfTime);}
8412for(const e of model.findTopmostSlicesNamed('V8.ParseLazy')){cpuSelfParseLazy.addSample(e.cpuSelfTime);wallSelfParseLazy.addSample(e.selfTime);}
8413histograms.addHistogram(cpuSelfParseLazy);histograms.addHistogram(wallSelfParseLazy);}
8414function computeCompileFullCodeMetrics(histograms,model){const cpuSelfCompileFullCode=new tr.v.Histogram('v8_compile_full_code_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfCompileFullCode.description='cpu self time spent performing compiling full code';const wallSelfCompileFullCode=new tr.v.Histogram('v8_compile_full_code_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfCompileFullCode.description='wall self time spent performing compiling full code';for(const e of model.findTopmostSlicesNamed('V8.CompileFullCode')){cpuSelfCompileFullCode.addSample(e.cpuSelfTime);wallSelfCompileFullCode.addSample(e.selfTime);}
8415histograms.addHistogram(cpuSelfCompileFullCode);histograms.addHistogram(wallSelfCompileFullCode);}
8416function computeCompileIgnitionMetrics(histograms,model){const cpuSelfCompileIgnition=new tr.v.Histogram('v8_compile_ignition_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfCompileIgnition.description='cpu self time spent in compile ignition';const wallSelfCompileIgnition=new tr.v.Histogram('v8_compile_ignition_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfCompileIgnition.description='wall self time spent in compile ignition';for(const e of model.findTopmostSlicesNamed('V8.CompileIgnition')){cpuSelfCompileIgnition.addSample(e.cpuSelfTime);wallSelfCompileIgnition.addSample(e.selfTime);}
8417histograms.addHistogram(cpuSelfCompileIgnition);histograms.addHistogram(wallSelfCompileIgnition);}
8418function computeRecompileMetrics(histograms,model){const cpuTotalRecompileSynchronous=new tr.v.Histogram('v8_recompile_synchronous_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalRecompileSynchronous.description='cpu total time spent in synchronous recompilation';const wallTotalRecompileSynchronous=new tr.v.Histogram('v8_recompile_synchronous_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalRecompileSynchronous.description='wall total time spent in synchronous recompilation';const cpuTotalRecompileConcurrent=new tr.v.Histogram('v8_recompile_concurrent_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalRecompileConcurrent.description='cpu total time spent in concurrent recompilation';const wallTotalRecompileConcurrent=new tr.v.Histogram('v8_recompile_concurrent_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalRecompileConcurrent.description='wall total time spent in concurrent recompilation';const cpuTotalRecompileOverall=new tr.v.Histogram('v8_recompile_overall_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalRecompileOverall.description='cpu total time spent in synchronous or concurrent recompilation';const wallTotalRecompileOverall=new tr.v.Histogram('v8_recompile_overall_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalRecompileOverall.description='wall total time spent in synchronous or concurrent recompilation';for(const e of model.findTopmostSlicesNamed('V8.RecompileSynchronous')){cpuTotalRecompileSynchronous.addSample(e.cpuDuration);wallTotalRecompileSynchronous.addSample(e.duration);cpuTotalRecompileOverall.addSample(e.cpuDuration);wallTotalRecompileOverall.addSample(e.duration);}
8419histograms.addHistogram(cpuTotalRecompileSynchronous);histograms.addHistogram(wallTotalRecompileSynchronous);for(const e of model.findTopmostSlicesNamed('V8.RecompileConcurrent')){cpuTotalRecompileConcurrent.addSample(e.cpuDuration);wallTotalRecompileConcurrent.addSample(e.duration);cpuTotalRecompileOverall.addSample(e.cpuDuration);wallTotalRecompileOverall.addSample(e.duration);}
8420histograms.addHistogram(cpuTotalRecompileConcurrent);histograms.addHistogram(wallTotalRecompileConcurrent);histograms.addHistogram(cpuTotalRecompileOverall);histograms.addHistogram(wallTotalRecompileOverall);}
8421function computeOptimizeCodeMetrics(histograms,model){const cpuTotalOptimizeCode=new tr.v.Histogram('v8_optimize_code_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalOptimizeCode.description='cpu total time spent in code optimization';const wallTotalOptimizeCode=new tr.v.Histogram('v8_optimize_code_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalOptimizeCode.description='wall total time spent in code optimization';for(const e of model.findTopmostSlicesNamed('V8.OptimizeCode')){cpuTotalOptimizeCode.addSample(e.cpuDuration);wallTotalOptimizeCode.addSample(e.duration);}
8422histograms.addHistogram(cpuTotalOptimizeCode);histograms.addHistogram(wallTotalOptimizeCode);}
8423function computeDeoptimizeCodeMetrics(histograms,model){const cpuTotalDeoptimizeCode=new tr.v.Histogram('v8_deoptimize_code_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalDeoptimizeCode.description='cpu total time spent in code deoptimization';const wallTotalDeoptimizeCode=new tr.v.Histogram('v8_deoptimize_code_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalDeoptimizeCode.description='wall total time spent in code deoptimization';for(const e of model.findTopmostSlicesNamed('V8.DeoptimizeCode')){cpuTotalDeoptimizeCode.addSample(e.cpuDuration);wallTotalDeoptimizeCode.addSample(e.duration);}
8424histograms.addHistogram(cpuTotalDeoptimizeCode);histograms.addHistogram(wallTotalDeoptimizeCode);}
8425function executionMetric(histograms,model){computeExecuteMetrics(histograms,model);computeParseLazyMetrics(histograms,model);computeCompileIgnitionMetrics(histograms,model);computeCompileFullCodeMetrics(histograms,model);computeRecompileMetrics(histograms,model);computeOptimizeCodeMetrics(histograms,model);computeDeoptimizeCodeMetrics(histograms,model);}
8426tr.metrics.MetricRegistry.register(executionMetric);return{executionMetric,};});'use strict';tr.exportTo('tr.metrics.v8',function(){const TARGET_FPS=60;const MS_PER_SECOND=1000;const WINDOW_SIZE_MS=MS_PER_SECOND/TARGET_FPS;function gcMetric(histograms,model){addDurationOfTopEvents(histograms,model);addTotalDurationOfTopEvents(histograms,model);addDurationOfSubEvents(histograms,model);addPercentageInV8ExecuteOfTopEvents(histograms,model);addTotalPercentageInV8Execute(histograms,model);}
8427tr.metrics.MetricRegistry.register(gcMetric);const timeDurationInMs_smallerIsBetter=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;const percentage_biggerIsBetter=tr.b.Unit.byName.normalizedPercentage_biggerIsBetter;const percentage_smallerIsBetter=tr.b.Unit.byName.normalizedPercentage_smallerIsBetter;const CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(0,20,200).addExponentialBins(200,100);function createNumericForTopEventTime(name){const n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:true,max:true,min:false,std:true,sum:true,percentile:[0.90]});return n;}
8428function createNumericForSubEventTime(name){const n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:false,percentile:[0.90]});return n;}
8429function createNumericForIdleTime(name){const n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:true,percentile:[]});return n;}
8430function createPercentage(name,numerator,denominator,unit){const hist=new tr.v.Histogram(name,unit);if(denominator===0){hist.addSample(0);}else{hist.addSample(numerator/denominator);}
8431hist.customizeSummaryOptions({avg:true,count:false,max:false,min:false,std:false,sum:false,percentile:[]});return hist;}
8432function isNotForcedTopGarbageCollectionEvent(event){return tr.metrics.v8.utils.isTopGarbageCollectionEvent(event)&&!tr.metrics.v8.utils.isForcedGarbageCollectionEvent(event);}
8433function isNotForcedSubGarbageCollectionEvent(event){return tr.metrics.v8.utils.isSubGarbageCollectionEvent(event)&&!tr.metrics.v8.utils.isForcedGarbageCollectionEvent(event);}
8434function addDurationOfTopEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,tr.metrics.v8.utils.topGarbageCollectionEventName,function(name,events){const cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});histograms.addHistogram(cpuDuration);});}
8435function addTotalDurationOfTopEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,event=>'v8-gc-total',function(name,events){const cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});histograms.addHistogram(cpuDuration);});}
8436function addDurationOfSubEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedSubGarbageCollectionEvent,tr.metrics.v8.utils.subGarbageCollectionEventName,function(name,events){const cpuDuration=createNumericForSubEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});histograms.addHistogram(cpuDuration);});}
8437function addPercentageInV8ExecuteOfTopEvents(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,tr.metrics.v8.utils.topGarbageCollectionEventName,function(name,events){addPercentageInV8Execute(histograms,model,name,events);});}
8438function addTotalPercentageInV8Execute(histograms,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,event=>'v8-gc-total',function(name,events){addPercentageInV8Execute(histograms,model,name,events);});}
8439function addPercentageInV8Execute(histograms,model,name,events){let cpuDurationInV8Execute=0;let cpuDurationTotal=0;events.forEach(function(event){const v8Execute=tr.metrics.v8.utils.findParent(event,tr.metrics.v8.utils.isV8ExecuteEvent);if(v8Execute){cpuDurationInV8Execute+=event.cpuDuration;}
8440cpuDurationTotal+=event.cpuDuration;});const percentage=createPercentage(name+'_percentage_in_v8_execute',cpuDurationInV8Execute,cpuDurationTotal,percentage_smallerIsBetter);histograms.addHistogram(percentage);}
8441return{gcMetric,WINDOW_SIZE_MS,};});'use strict';tr.exportTo('tr.metrics.v8',function(){const COUNT_CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1,1000000,50);const DURATION_CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(0.1,10000,50);const SUMMARY_OPTIONS={std:false,count:false,sum:false,min:false,max:false,};function computeDomContentLoadedTime_(model){const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);let domContentLoadedTime=0;for(const rendererHelper of Object.values(chromeHelper.rendererHelpers)){for(const ev of rendererHelper.mainThread.sliceGroup.childEvents()){if(ev.title==='domContentLoadedEventEnd'&&ev.start>domContentLoadedTime){domContentLoadedTime=ev.start;}}}
8442return domContentLoadedTime;}
8443function computeInteractiveTime_(model){const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);let interactiveTime=0;for(const rendererHelper of Object.values(chromeHelper.rendererHelpers)){const samples=tr.metrics.sh.collectLoadingMetricsForRenderer(rendererHelper).interactiveSamples;if(samples.length===0)continue;if(interactiveTime!==0)throw new Error('Too many navigations');const diagnostics=tr.b.getOnlyElement(samples).diagnostics;interactiveTime=tr.b.getOnlyElement(diagnostics.get('Navigation infos')).eventTimestamp;}
8444return interactiveTime;}
8445function convertMicroToMilli_(time){return tr.b.convertUnit(time,tr.b.UnitPrefixScale.METRIC.MICRO,tr.b.UnitPrefixScale.METRIC.MILLI);}
8446function computeRuntimeStats(histograms,slices){const runtimeGroupCollection=new tr.e.v8.RuntimeStatsGroupCollection();runtimeGroupCollection.addSlices(slices);function addHistogramsForRuntimeGroup(runtimeGroup,optRelatedNameMaps){histograms.createHistogram(`${runtimeGroup.name}:duration`,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,{value:convertMicroToMilli_(runtimeGroup.time),diagnostics:optRelatedNameMaps?{samples:optRelatedNameMaps.durationBreakdown}:{}},{binBoundaries:DURATION_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,diagnostics:optRelatedNameMaps?{samples:optRelatedNameMaps.durationNames}:{}});histograms.createHistogram(`${runtimeGroup.name}:count`,tr.b.Unit.byName.count_smallerIsBetter,{value:runtimeGroup.count,diagnostics:optRelatedNameMaps?{samples:optRelatedNameMaps.countBreakdown}:{}},{binBoundaries:COUNT_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,diagnostics:optRelatedNameMaps?{samples:optRelatedNameMaps.countNames}:{}});}
8447function addDetailedHistogramsForRuntimeGroup(runtimeGroup){const durationNames=new tr.v.d.RelatedNameMap();const durationBreakdown=new tr.v.d.Breakdown();const countNames=new tr.v.d.RelatedNameMap();const countBreakdown=new tr.v.d.Breakdown();for(const entry of runtimeGroup.values){const durationSampleHistogram=histograms.createHistogram(`${entry.name}:duration`,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,convertMicroToMilli_(entry.time),{binBoundaries:DURATION_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,});durationNames.set(entry.name,durationSampleHistogram.name);durationBreakdown.set(entry.name,convertMicroToMilli_(entry.time));const countSampleHistogram=histograms.createHistogram(`${entry.name}:count`,tr.b.Unit.byName.count_smallerIsBetter,entry.count,{binBoundaries:COUNT_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,});countNames.set(entry.name,countSampleHistogram.name);countBreakdown.set(entry.name,entry.count);}
8448addHistogramsForRuntimeGroup(runtimeGroup,{durationNames,durationBreakdown,countNames,countBreakdown});}
8449for(const runtimeGroup of runtimeGroupCollection.runtimeGroups){addHistogramsForRuntimeGroup(runtimeGroup);}
8450const blinkGroupCollection=runtimeGroupCollection.blinkRCSGroupCollection;if(blinkGroupCollection.totalTime>0){blinkGroupCollection.runtimeGroups.forEach(addDetailedHistogramsForRuntimeGroup);}}
8451function runtimeStatsMetric(histograms,model){const interactiveTime=computeInteractiveTime_(model);const domContentLoadedTime=computeDomContentLoadedTime_(model);const endTime=Math.max(interactiveTime,domContentLoadedTime);const slices=[...model.getDescendantEvents()].filter(event=>event instanceof tr.e.v8.V8ThreadSlice&&event.start<=endTime);computeRuntimeStats(histograms,slices);}
8452function addDurationHistogram(railStageName,runtimeGroupName,sampleValue,histograms,durationRelatedHistsByGroupName){const durationHistogram=histograms.createHistogram(`${railStageName}_${runtimeGroupName}:duration`,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,convertMicroToMilli_(sampleValue),{binBoundaries:DURATION_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,});if(durationRelatedHistsByGroupName.get(runtimeGroupName)===undefined){const durationHistogramMap=new tr.v.d.RelatedHistogramMap();durationHistogramMap.set(railStageName,durationHistogram);durationRelatedHistsByGroupName.set(runtimeGroupName,durationHistogramMap);}else{durationRelatedHistsByGroupName.get(runtimeGroupName).set(railStageName,durationHistogram);}}
8453function addCountHistogram(railStageName,runtimeGroupName,sampleValue,histograms,countRelatedHistsByGroupName){const countHistogram=histograms.createHistogram(`${railStageName}_${runtimeGroupName}:count`,tr.b.Unit.byName.count_smallerIsBetter,sampleValue,{binBoundaries:COUNT_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,});if(countRelatedHistsByGroupName.get(runtimeGroupName)===undefined){const countHistogramMap=new tr.v.d.RelatedHistogramMap();countHistogramMap.set(railStageName,countHistogram);countRelatedHistsByGroupName.set(runtimeGroupName,countHistogramMap);}else{countRelatedHistsByGroupName.get(runtimeGroupName).set(railStageName,countHistogram);}}
8454function addTotalDurationHistogram(histogramName,time,histograms,durationRelatedHistsByGroupName){const durationHistogram=histograms.createHistogram(`${histogramName}:duration`,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,convertMicroToMilli_(time),{binBoundaries:DURATION_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,});const durationRelatedHistogram=durationRelatedHistsByGroupName.get(histogramName);if(durationRelatedHistogram!==undefined){durationHistogram.diagnostics.set('RAIL stages',durationRelatedHistogram);}}
8455function addTotalCountHistogram(histogramName,count,histograms,countRelatedHistsByGroupName){const countHistogram=histograms.createHistogram(`${histogramName}:count`,tr.b.Unit.byName.count_smallerIsBetter,count,{binBoundaries:COUNT_CUSTOM_BOUNDARIES,summaryOptions:SUMMARY_OPTIONS,});const countRelatedHistogram=countRelatedHistsByGroupName.get(histogramName);if(countRelatedHistogram!==undefined){countHistogram.diagnostics.set('RAIL stages',countRelatedHistogram);}}
8456function computeRuntimeStatsBucketOnUE(histograms,slices,v8SlicesBucketOnUEMap){const durationRelatedHistsByGroupName=new Map();const countRelatedHistsByGroupName=new Map();for(const[name,slicesUE]of v8SlicesBucketOnUEMap){const runtimeGroupCollection=new tr.e.v8.RuntimeStatsGroupCollection();runtimeGroupCollection.addSlices(slicesUE);let overallV8Time=runtimeGroupCollection.totalTime;let overallV8Count=runtimeGroupCollection.totalCount;for(const runtimeGroup of runtimeGroupCollection.runtimeGroups){addDurationHistogram(name,runtimeGroup.name,runtimeGroup.time,histograms,durationRelatedHistsByGroupName);if(runtimeGroup.name==='Blink C++'){overallV8Time-=runtimeGroup.time;}
8457addCountHistogram(name,runtimeGroup.name,runtimeGroup.count,histograms,countRelatedHistsByGroupName);if(runtimeGroup.name==='Blink C++'){overallV8Count-=runtimeGroup.count;}}
8458if(runtimeGroupCollection.blinkRCSGroupCollection.totalTime>0){const blinkRCSGroupCollection=runtimeGroupCollection.blinkRCSGroupCollection;for(const group of blinkRCSGroupCollection.runtimeGroups){addDurationHistogram(name,group.name,group.time,histograms,durationRelatedHistsByGroupName);addCountHistogram(name,group.name,group.count,histograms,countRelatedHistsByGroupName);}}
8459addDurationHistogram(name,'V8-Only',overallV8Time,histograms,durationRelatedHistsByGroupName);addCountHistogram(name,'V8-Only',overallV8Count,histograms,countRelatedHistsByGroupName);}
8460const runtimeGroupCollection=new tr.e.v8.RuntimeStatsGroupCollection();runtimeGroupCollection.addSlices(slices);let overallV8Time=runtimeGroupCollection.totalTime;let overallV8Count=runtimeGroupCollection.totalCount;for(const runtimeGroup of runtimeGroupCollection.runtimeGroups){addTotalDurationHistogram(runtimeGroup.name,runtimeGroup.time,histograms,durationRelatedHistsByGroupName);if(runtimeGroup.name==='Blink C++'){overallV8Time-=runtimeGroup.time;}
8461addTotalCountHistogram(runtimeGroup.name,runtimeGroup.count,histograms,countRelatedHistsByGroupName);if(runtimeGroup.name==='Blink C++'){overallV8Count-=runtimeGroup.count;}}
8462if(runtimeGroupCollection.blinkRCSGroupCollection.totalTime>0){const blinkRCSGroupCollection=runtimeGroupCollection.blinkRCSGroupCollection;for(const group of blinkRCSGroupCollection.runtimeGroups){addTotalDurationHistogram(group.name,group.time,histograms,durationRelatedHistsByGroupName);addTotalCountHistogram(group.name,group.count,histograms,countRelatedHistsByGroupName);}}
8463addTotalDurationHistogram('V8-Only',overallV8Time,histograms,durationRelatedHistsByGroupName);addTotalCountHistogram('V8-Only',overallV8Count,histograms,countRelatedHistsByGroupName);}
8464function runtimeStatsTotalMetric(histograms,model){const v8ThreadSlices=[...model.getDescendantEvents()].filter(event=>event instanceof tr.e.v8.V8ThreadSlice).sort((e1,e2)=>e1.start-e2.start);const v8SlicesBucketOnUEMap=new Map();for(const expectation of model.userModel.expectations){const slices=expectation.range.filterArray(v8ThreadSlices,event=>event.start);if(slices.length===0)continue;const lastSlice=slices[slices.length-1];if(!expectation.range.intersectsRangeExclusive(lastSlice.range)){slices.pop();}
8465if(v8SlicesBucketOnUEMap.get(expectation.stageTitle)===undefined){v8SlicesBucketOnUEMap.set(expectation.stageTitle,slices);}else{const totalSlices=v8SlicesBucketOnUEMap.get(expectation.stageTitle).concat(slices);v8SlicesBucketOnUEMap.set(expectation.stageTitle,totalSlices);}}
8466computeRuntimeStatsBucketOnUE(histograms,v8ThreadSlices,v8SlicesBucketOnUEMap);}
8467tr.metrics.MetricRegistry.register(runtimeStatsTotalMetric);tr.metrics.MetricRegistry.register(runtimeStatsMetric);return{runtimeStatsMetric,runtimeStatsTotalMetric,};});'use strict';tr.exportTo('tr.metrics.v8',function(){function v8AndMemoryMetrics(histograms,model){tr.metrics.v8.executionMetric(histograms,model);tr.metrics.v8.gcMetric(histograms,model);tr.metrics.sh.memoryMetric(histograms,model,{rangeOfInterest:tr.metrics.v8.utils.rangeForMemoryDumps(model)});}
8468tr.metrics.MetricRegistry.register(v8AndMemoryMetrics);return{v8AndMemoryMetrics,};});'use strict';tr.exportTo('tr.metrics.vr',function(){function createHistograms(histograms,name,options){return{wall:histograms.createHistogram(name+'_wall',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,[],options),cpu:histograms.createHistogram(name+'_cpu',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,[],options),};}
8469function frameCycleDurationMetric(histograms,model,opt_options){const histogramsByEventTitle=new Map();histogramsByEventTitle.set('VrShellGl::DrawFrame',createHistograms(histograms,'draw_frame',{description:'Duration to render one frame'}));histogramsByEventTitle.set('VrShellGl::AcquireFrame',createHistograms(histograms,'acquire_frame',{description:'Duration acquire a frame from GVR'}));histogramsByEventTitle.set('VrShellGl::UpdateController',createHistograms(histograms,'update_controller',{description:'Duration to query input from the controller'}));histogramsByEventTitle.set('VrShellGl::DrawFrameSubmitWhenReady',createHistograms(histograms,'submit_frame',{description:'Duration to submit a frame to GVR'}));histogramsByEventTitle.set('UiScene::OnBeginFrame.UpdateAnimationsAndOpacity',createHistograms(histograms,'update_animations_and_opacity',{description:'Duration to apply animation and opacity changes'}));histogramsByEventTitle.set('UiScene::OnBeginFrame.UpdateBindings',createHistograms(histograms,'update_bindings',{description:'Duration to push binding values'}));histogramsByEventTitle.set('UiScene::OnBeginFrame.UpdateTexturesAndSizes',createHistograms(histograms,'update_textures_and_sizes',{description:'Duration to redraw textures and update element sizes'}));histogramsByEventTitle.set('UiScene::OnBeginFrame.UpdateLayout',createHistograms(histograms,'update_layout',{description:'Duration to reposition elements according to their layout'}));histogramsByEventTitle.set('UiScene::OnBeginFrame.UpdateWorldSpaceTransform',createHistograms(histograms,'update_world_space_transforms',{description:'Duration to calculate element transforms in world space'}));const chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);let rangeOfInterest=model.bounds;const userExpectationsOfInterest=[tr.model.um.AnimationExpectation];if(opt_options&&opt_options.rangeOfInterest){rangeOfInterest=opt_options.rangeOfInterest;userExpectationsOfInterest.push(tr.model.um.ResponseExpectation);}
8470for(const ue of model.userModel.expectations){if(ue.initiatorType!==tr.model.um.INITIATOR_TYPE.VR){continue;}
8471if(!userExpectationsOfInterest.some(function(ueOfInterest){return ue instanceof ueOfInterest;})){continue;}
8472if(!rangeOfInterest.intersectsExplicitRangeInclusive(ue.start,ue.end)){continue;}
8473for(const helper of chromeHelper.browserHelpers){const glThreads=helper.process.findAllThreadsMatching(thread=>!thread.name);for(const glThread of glThreads){for(const event of glThread.getDescendantEvents()){if(!(histogramsByEventTitle.has(event.title))){continue;}
8474if(event.start<ue.start||event.end>ue.end){continue;}
8475if(event.start<rangeOfInterest.min||event.end>rangeOfInterest.max){continue;}
8476const{wall:wallHist,cpu:cpuHist}=histogramsByEventTitle.get(event.title);wallHist.addSample(event.duration);cpuHist.addSample(event.cpuDuration);}}}}}
8477tr.metrics.MetricRegistry.register(frameCycleDurationMetric,{supportsRangeOfInterest:true,});return{frameCycleDurationMetric,};});'use strict';tr.exportTo('tr.metrics.vr',function(){function webvrMetric(histograms,model,opt_options){const WEBVR_COUNTERS=new Map([['gpu.WebVR FPS',{name:'webvr_fps',unit:tr.b.Unit.byName.count_biggerIsBetter,samples:{},options:{description:'WebVR frame per second',binBoundaries:tr.v.HistogramBinBoundaries.createLinear(20,120,25),},}],['gpu.WebVR frame time (ms)',{name:'webvr_frame_time',unit:tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,samples:{},options:{description:'WebVR frame time in ms',binBoundaries:tr.v.HistogramBinBoundaries.createLinear(20,120,25),},}],['gpu.WebVR pose prediction (ms)',{name:'webvr_pose_prediction',unit:tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,samples:{},options:{description:'WebVR pose prediction in ms',binBoundaries:tr.v.HistogramBinBoundaries.createLinear(20,120,25),},}],]);for(const ue of model.userModel.expectations){const rangeOfInterestEnabled=opt_options&&opt_options.rangeOfInterest;if(rangeOfInterestEnabled&&!opt_options.rangeOfInterest.intersectsExplicitRangeInclusive(ue.start,ue.end)){continue;}
8478if(ue.initiatorType!==tr.model.um.INITIATOR_TYPE.VR)continue;if(!rangeOfInterestEnabled){if(!(ue instanceof tr.model.um.AnimationExpectation))continue;}else{if(!(ue instanceof tr.model.um.AnimationExpectation||ue instanceof tr.model.um.ResponseExpectation))continue;}
8479for(const counter of model.getAllCounters()){if(!(WEBVR_COUNTERS.has(counter.id)))continue;for(const series of counter.series){if(!(series.name in WEBVR_COUNTERS.get(counter.id).samples)){WEBVR_COUNTERS.get(counter.id).samples[series.name]=[];}
8480for(const sample of series.samples){if(sample.timestamp<ue.start||sample.timestamp>=ue.end){continue;}
8481if(rangeOfInterestEnabled&&!opt_options.rangeOfInterest.intersectsExplicitRangeInclusive(sample.timestamp,sample.timestamp)){continue;}
8482WEBVR_COUNTERS.get(counter.id).samples[series.name].push(sample.value);}}}}
8483if(!('value'in WEBVR_COUNTERS.get('gpu.WebVR FPS').samples)){WEBVR_COUNTERS.get('gpu.WebVR FPS').samples.value=[0];}
8484for(const[key,value]of WEBVR_COUNTERS){for(const[seriesName,samples]of Object.entries(value.samples)){let histogramName=value.name;if(seriesName!=='value'){histogramName=`${histogramName}_${seriesName}`;}
8485histograms.createHistogram(histogramName,value.unit,samples,value.options);}}}
8486tr.metrics.MetricRegistry.register(webvrMetric,{supportsRangeOfInterest:true,});return{webvrMetric,};});'use strict';tr.exportTo('tr.metrics.webrtc',function(){const DISPLAY_HERTZ=60.0;const VSYNC_DURATION_US=1e6/DISPLAY_HERTZ;const SEVERITY=3;const FROZEN_FRAME_VSYNC_COUNT_THRESHOLD=6;const WEB_MEDIA_PLAYER_UPDATE_TITLE='UpdateCurrentFrame';const IDEAL_RENDER_INSTANT_NAME='Ideal Render Instant';const ACTUAL_RENDER_BEGIN_NAME='Actual Render Begin';const ACTUAL_RENDER_END_NAME='Actual Render End';const STREAM_ID_NAME='Serial';const REQUIRED_EVENT_ARGS_NAMES=[IDEAL_RENDER_INSTANT_NAME,ACTUAL_RENDER_BEGIN_NAME,ACTUAL_RENDER_END_NAME,STREAM_ID_NAME];const SUMMARY_OPTIONS=tr.v.Histogram.AVERAGE_ONLY_SUMMARY_OPTIONS;const count_smallerIsBetter=tr.b.Unit.byName.count_smallerIsBetter;const percentage_biggerIsBetter=tr.b.Unit.byName.normalizedPercentage_biggerIsBetter;const percentage_smallerIsBetter=tr.b.Unit.byName.normalizedPercentage_smallerIsBetter;const timeDurationInMs_smallerIsBetter=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;const unitlessNumber_biggerIsBetter=tr.b.Unit.byName.unitlessNumber_biggerIsBetter;function isValidEvent(event){if(event.title!==WEB_MEDIA_PLAYER_UPDATE_TITLE||!event.args){return false;}
8487for(const parameter of REQUIRED_EVENT_ARGS_NAMES){if(!(parameter in event.args)){return false;}}
8488return true;}
8489function webrtcRenderingMetric(histograms,model){const modelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);let webMediaPlayerMSEvents=[];for(const rendererPid in modelHelper.rendererHelpers){const rendererHelper=modelHelper.rendererHelpers[rendererPid];const compositorThread=rendererHelper.compositorThread;if(compositorThread!==undefined){webMediaPlayerMSEvents=webMediaPlayerMSEvents.concat(compositorThread.sliceGroup.slices.filter(isValidEvent));}}
8490const eventsByStreamName=tr.b.groupIntoMap(webMediaPlayerMSEvents,event=>event.args[STREAM_ID_NAME]);for(const[streamName,events]of eventsByStreamName){getTimeStats(histograms,streamName,events);}}
8491tr.metrics.MetricRegistry.register(webrtcRenderingMetric);function getTimeStats(histograms,streamName,events){const frameHist=getFrameDistribution(histograms,events);addFpsFromFrameDistribution(histograms,frameHist);addFreezingScore(histograms,frameHist);const driftTimeStats=getDriftStats(events);histograms.createHistogram('WebRTCRendering_drift_time',timeDurationInMs_smallerIsBetter,driftTimeStats.driftTime,{summaryOptions:{count:false,min:false,percentile:[0.75,0.9],},});histograms.createHistogram('WebRTCRendering_rendering_length_error',percentage_smallerIsBetter,driftTimeStats.renderingLengthError,{summaryOptions:SUMMARY_OPTIONS,});const smoothnessStats=getSmoothnessStats(driftTimeStats.driftTime);histograms.createHistogram('WebRTCRendering_percent_badly_out_of_sync',percentage_smallerIsBetter,smoothnessStats.percentBadlyOutOfSync,{summaryOptions:SUMMARY_OPTIONS,});histograms.createHistogram('WebRTCRendering_percent_out_of_sync',percentage_smallerIsBetter,smoothnessStats.percentOutOfSync,{summaryOptions:SUMMARY_OPTIONS,});histograms.createHistogram('WebRTCRendering_smoothness_score',percentage_biggerIsBetter,smoothnessStats.smoothnessScore,{summaryOptions:SUMMARY_OPTIONS,});histograms.createHistogram('WebRTCRendering_frames_out_of_sync',count_smallerIsBetter,smoothnessStats.framesOutOfSync,{summaryOptions:SUMMARY_OPTIONS,});histograms.createHistogram('WebRTCRendering_frames_badly_out_of_sync',count_smallerIsBetter,smoothnessStats.framesSeverelyOutOfSync,{summaryOptions:SUMMARY_OPTIONS,});}
8492const FRAME_DISTRIBUTION_BIN_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(1,50,49);function getFrameDistribution(histograms,events){const cadence=tr.b.runLengthEncoding(events.map(e=>e.args[IDEAL_RENDER_INSTANT_NAME]));return histograms.createHistogram('WebRTCRendering_frame_distribution',count_smallerIsBetter,cadence.map(ticks=>ticks.count),{binBoundaries:FRAME_DISTRIBUTION_BIN_BOUNDARIES,summaryOptions:{percentile:[0.75,0.9],},});}
8493function addFpsFromFrameDistribution(histograms,frameHist){let numberFrames=0;let numberVsyncs=0;for(let ticks=1;ticks<frameHist.allBins.length;++ticks){const count=frameHist.allBins[ticks].count;numberFrames+=count;numberVsyncs+=ticks*count;}
8494const meanRatio=numberVsyncs/numberFrames;histograms.createHistogram('WebRTCRendering_fps',unitlessNumber_biggerIsBetter,DISPLAY_HERTZ/meanRatio,{summaryOptions:SUMMARY_OPTIONS,});}
8495function frozenPenaltyWeight(numberFrozenFrames){const penalty={5:1,6:5,7:15,8:25};return penalty[numberFrozenFrames]||(8*(numberFrozenFrames-4));}
8496function addFreezingScore(histograms,frameHist){let numberVsyncs=0;let freezingScore=0;let frozenFramesCount=0;for(let ticks=1;ticks<frameHist.allBins.length;++ticks){const count=frameHist.allBins[ticks].count;numberVsyncs+=ticks*count;if(ticks>=FROZEN_FRAME_VSYNC_COUNT_THRESHOLD){frozenFramesCount+=count*(ticks-1);freezingScore+=count*frozenPenaltyWeight(ticks-1);}}
8497freezingScore=1-freezingScore/numberVsyncs;if(freezingScore<0){freezingScore=0;}
8498histograms.createHistogram('WebRTCRendering_frozen_frames_count',count_smallerIsBetter,frozenFramesCount,{summaryOptions:SUMMARY_OPTIONS,});histograms.createHistogram('WebRTCRendering_freezing_score',percentage_biggerIsBetter,freezingScore,{summaryOptions:SUMMARY_OPTIONS,});}
8499function getDriftStats(events){const driftTime=[];const discrepancy=[];let oldIdealRender=0;let expectedIdealRender=0;for(const event of events){const currentIdealRender=event.args[IDEAL_RENDER_INSTANT_NAME];expectedIdealRender+=VSYNC_DURATION_US;if(currentIdealRender===oldIdealRender){continue;}
8500const actualRenderBegin=event.args[ACTUAL_RENDER_BEGIN_NAME];driftTime.push(actualRenderBegin-currentIdealRender);discrepancy.push(Math.abs(currentIdealRender-expectedIdealRender));expectedIdealRender=currentIdealRender;oldIdealRender=currentIdealRender;}
8501const discrepancySum=tr.b.math.Statistics.sum(discrepancy)-
8502discrepancy[0];const lastIdealRender=events[events.length-1].args[IDEAL_RENDER_INSTANT_NAME];const firstIdealRender=events[0].args[IDEAL_RENDER_INSTANT_NAME];const idealRenderSpan=lastIdealRender-firstIdealRender;const renderingLengthError=discrepancySum/idealRenderSpan;return{driftTime,renderingLengthError};}
8503function getSmoothnessStats(driftTimes){const meanDriftTime=tr.b.math.Statistics.mean(driftTimes);const normDriftTimes=driftTimes.map(driftTime=>Math.abs(driftTime-meanDriftTime));const framesSeverelyOutOfSync=normDriftTimes.filter(driftTime=>driftTime>2*VSYNC_DURATION_US).length;const framesOutOfSync=normDriftTimes.filter(driftTime=>driftTime>VSYNC_DURATION_US).length;const percentBadlyOutOfSync=framesSeverelyOutOfSync/driftTimes.length;const percentOutOfSync=framesOutOfSync/driftTimes.length;const framesOutOfSyncOnlyOnce=framesOutOfSync-framesSeverelyOutOfSync;let smoothnessScore=1-(framesOutOfSyncOnlyOnce+
8504SEVERITY*framesSeverelyOutOfSync)/driftTimes.length;if(smoothnessScore<0){smoothnessScore=0;}
8505return{framesOutOfSync,framesSeverelyOutOfSync,percentBadlyOutOfSync,percentOutOfSync,smoothnessScore};}
8506return{webrtcRenderingMetric,};});'use strict';Polymer({is:'tr-ui-a-alert-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.currentSelection_=undefined;this.$.table.tableColumns=[{title:'Label',value(row){return row.name;},width:'150px'},{title:'Value',width:'100%',value(row){return row.value;}}];this.$.table.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},getRowsForSingleAlert_(alert){const rows=[];for(const argName in alert.args){const argView=document.createElement('tr-ui-a-generic-object-view');argView.object=alert.args[argName];rows.push({name:argName,value:argView});}
8507if(alert.associatedEvents.length){alert.associatedEvents.forEach(function(event,i){const linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet(event),event.title);let valueString='';if(event instanceof tr.model.TimedEvent){valueString='took '+event.duration.toFixed(2)+'ms';}
8508rows.push({name:linkEl,value:valueString});});}
8509const descriptionEl=tr.ui.b.createDiv({textContent:alert.info.description,maxWidth:'300px'});rows.push({name:'Description',value:descriptionEl});if(alert.info.docLinks){alert.info.docLinks.forEach(function(linkObject){const linkEl=document.createElement('a');linkEl.target='_blank';linkEl.href=linkObject.href;Polymer.dom(linkEl).textContent=Polymer.dom(linkObject).textContent;rows.push({name:linkObject.label,value:linkEl});});}
8510return rows;},getRowsForAlerts_(alerts){if(alerts.length===1){const rows=[{name:'Alert',value:tr.b.getOnlyElement(alerts).title}];const detailRows=this.getRowsForSingleAlert_(tr.b.getOnlyElement(alerts));rows.push.apply(rows,detailRows);return rows;}
8511return alerts.map(function(alert){return{name:'Alert',value:alert.title,isExpanded:alerts.size<10,subRows:this.getRowsForSingleAlert_(alert)};},this);},updateContents_(){if(this.currentSelection_===undefined){this.$.table.rows=[];this.$.table.rebuild();return;}
8512const alerts=this.currentSelection_;this.$.table.tableRows=this.getRowsForAlerts_(alerts);this.$.table.rebuild();},get relatedEventsToHighlight(){if(!this.currentSelection_)return undefined;const result=new tr.model.EventSet();for(const event of this.currentSelection_){result.addEventSet(event.associatedEvents);}
8513return result;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-alert-sub-view',tr.model.Alert,{multi:false,title:'Alert',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-alert-sub-view',tr.model.Alert,{multi:true,title:'Alerts',});'use strict';tr.exportTo('tr.ui.analysis',function(){const NO_BREAK_SPACE=String.fromCharCode(160);const RIGHTWARDS_ARROW=String.fromCharCode(8594);const COLLATOR=new Intl.Collator(undefined,{numeric:true});function TitleColumn(title){this.title=title;}
8514TitleColumn.prototype={supportsCellSelection:false,value(row){const formattedTitle=this.formatTitle(row);const contexts=row.contexts;if(contexts===undefined||contexts.length===0){return formattedTitle;}
8515const firstContext=contexts[0];const lastContext=contexts[contexts.length-1];let changeDefinedContextCount=0;for(let i=1;i<contexts.length;i++){if((contexts[i]===undefined)!==(contexts[i-1]===undefined)){changeDefinedContextCount++;}}
8516let color=undefined;let prefix=undefined;if(!firstContext&&lastContext){color='red';prefix='+++';}else if(firstContext&&!lastContext){color='green';prefix='---';}
8517if(changeDefinedContextCount>1){color='purple';}
8518if(color===undefined&&prefix===undefined){return formattedTitle;}
8519const titleEl=document.createElement('span');if(prefix!==undefined){const prefixEl=tr.ui.b.createSpan({textContent:prefix});prefixEl.style.fontFamily='monospace';Polymer.dom(titleEl).appendChild(prefixEl);Polymer.dom(titleEl).appendChild(tr.ui.b.asHTMLOrTextNode(NO_BREAK_SPACE));}
8520if(color!==undefined){titleEl.style.color=color;}
8521Polymer.dom(titleEl).appendChild(tr.ui.b.asHTMLOrTextNode(formattedTitle));return titleEl;},formatTitle(row){return row.title;},cmp(rowA,rowB){return COLLATOR.compare(rowA.title,rowB.title);}};function MemoryColumn(name,cellPath,aggregationMode){this.name=name;this.cellPath=cellPath;this.shouldSetContextGroup=false;this.aggregationMode=aggregationMode;}
8522MemoryColumn.fromRows=function(rows,config){const cellNames=new Set();function gatherCellNames(rows){rows.forEach(function(row){if(row===undefined)return;const fieldCells=row[config.cellKey];if(fieldCells!==undefined){for(const[fieldName,fieldCell]of Object.entries(fieldCells)){if(fieldCell===undefined||fieldCell.fields===undefined){continue;}
8523cellNames.add(fieldName);}}
8524const subRows=row.subRows;if(subRows!==undefined){gatherCellNames(subRows);}});}
8525gatherCellNames(rows);const positions=[];cellNames.forEach(function(cellName){const cellPath=[config.cellKey,cellName];const matchingRule=MemoryColumn.findMatchingRule(cellName,config.rules);const constructor=matchingRule.columnConstructor;const column=new constructor(cellName,cellPath,config.aggregationMode);column.shouldSetContextGroup=!!config.shouldSetContextGroup;positions.push({importance:matchingRule.importance,column});});positions.sort(function(a,b){if(a.importance===b.importance){return COLLATOR.compare(a.column.name,b.column.name);}
8526return b.importance-a.importance;});return positions.map(function(position){return position.column;});};MemoryColumn.spaceEqually=function(columns){const columnWidth=(100/columns.length).toFixed(3)+'%';columns.forEach(function(column){column.width=columnWidth;});};MemoryColumn.findMatchingRule=function(name,rules){for(let i=0;i<rules.length;i++){const rule=rules[i];if(MemoryColumn.nameMatchesCondition(name,rule.condition)){return rule;}}
8527return undefined;};MemoryColumn.nameMatchesCondition=function(name,condition){if(condition===undefined)return true;if(typeof(condition)==='string')return name===condition;return condition.test(name);};MemoryColumn.AggregationMode={DIFF:0,MAX:1};MemoryColumn.SOME_TIMESTAMPS_INFO_QUANTIFIER='at some selected timestamps';MemoryColumn.prototype={get title(){return this.name;},cell(row){let cell=row;const cellPath=this.cellPath;for(let i=0;i<cellPath.length;i++){if(cell===undefined)return undefined;cell=cell[cellPath[i]];}
8528return cell;},aggregateCells(row,subRows){},fields(row){const cell=this.cell(row);if(cell===undefined)return undefined;return cell.fields;},value(row){const fields=this.fields(row);if(this.hasAllRelevantFieldsUndefined(fields))return'';const contexts=row.contexts;const color=this.color(fields,contexts);const infos=[];this.addInfos(fields,contexts,infos);const formattedFields=this.formatFields(fields);if((color===undefined||formattedFields==='')&&infos.length===0){return formattedFields;}
8529const fieldEl=document.createElement('span');fieldEl.style.display='flex';fieldEl.style.alignItems='center';fieldEl.style.justifyContent='flex-end';Polymer.dom(fieldEl).appendChild(tr.ui.b.asHTMLOrTextNode(formattedFields));infos.forEach(function(info){const infoEl=document.createElement('span');infoEl.style.paddingLeft='4px';infoEl.style.cursor='help';infoEl.style.fontWeight='bold';Polymer.dom(infoEl).textContent=info.icon;if(info.color!==undefined){infoEl.style.color=info.color;}
8530infoEl.title=info.message;Polymer.dom(fieldEl).appendChild(infoEl);},this);if(color!==undefined){fieldEl.style.color=color;}
8531return fieldEl;},hasAllRelevantFieldsUndefined(fields){if(fields===undefined)return true;switch(this.aggregationMode){case MemoryColumn.AggregationMode.DIFF:return fields[0]===undefined&&fields[fields.length-1]===undefined;case MemoryColumn.AggregationMode.MAX:default:return fields.every(function(field){return field===undefined;});}},color(fields,contexts){return undefined;},formatFields(fields){if(fields.length===1){return this.formatSingleField(fields[0]);}
8532return this.formatMultipleFields(fields);},formatSingleField(field){throw new Error('Not implemented');},formatMultipleFields(fields){switch(this.aggregationMode){case MemoryColumn.AggregationMode.DIFF:return this.formatMultipleFieldsDiff(fields[0],fields[fields.length-1]);case MemoryColumn.AggregationMode.MAX:return this.formatMultipleFieldsMax(fields);default:return tr.ui.b.createSpan({textContent:'(unsupported aggregation mode)',italic:true});}},formatMultipleFieldsDiff(firstField,lastField){throw new Error('Not implemented');},formatMultipleFieldsMax(fields){return this.formatSingleField(this.getMaxField(fields));},cmp(rowA,rowB){const fieldsA=this.fields(rowA);const fieldsB=this.fields(rowB);if(fieldsA!==undefined&&fieldsB!==undefined&&fieldsA.length!==fieldsB.length){throw new Error('Different number of fields');}
8533const undefinedA=this.hasAllRelevantFieldsUndefined(fieldsA);const undefinedB=this.hasAllRelevantFieldsUndefined(fieldsB);if(undefinedA&&undefinedB)return 0;if(undefinedA)return-1;if(undefinedB)return 1;return this.compareFields(fieldsA,fieldsB);},compareFields(fieldsA,fieldsB){if(fieldsA.length===1){return this.compareSingleFields(fieldsA[0],fieldsB[0]);}
8534return this.compareMultipleFields(fieldsA,fieldsB);},compareSingleFields(fieldA,fieldB){throw new Error('Not implemented');},compareMultipleFields(fieldsA,fieldsB){switch(this.aggregationMode){case MemoryColumn.AggregationMode.DIFF:return this.compareMultipleFieldsDiff(fieldsA[0],fieldsA[fieldsA.length-1],fieldsB[0],fieldsB[fieldsB.length-1]);case MemoryColumn.AggregationMode.MAX:return this.compareMultipleFieldsMax(fieldsA,fieldsB);default:return 0;}},compareMultipleFieldsDiff(firstFieldA,lastFieldA,firstFieldB,lastFieldB){throw new Error('Not implemented');},compareMultipleFieldsMax(fieldsA,fieldsB){return this.compareSingleFields(this.getMaxField(fieldsA),this.getMaxField(fieldsB));},getMaxField(fields){return fields.reduce(function(accumulator,field){if(field===undefined){return accumulator;}
8535if(accumulator===undefined||this.compareSingleFields(field,accumulator)>0){return field;}
8536return accumulator;}.bind(this),undefined);},addInfos(fields,contexts,infos){},getImportance(importanceRules){if(importanceRules.length===0)return 0;const matchingRule=MemoryColumn.findMatchingRule(this.name,importanceRules);if(matchingRule!==undefined){return matchingRule.importance;}
8537let minImportance=importanceRules[0].importance;for(let i=1;i<importanceRules.length;i++){minImportance=Math.min(minImportance,importanceRules[i].importance);}
8538return minImportance-1;}};function StringMemoryColumn(name,cellPath,aggregationMode){MemoryColumn.call(this,name,cellPath,aggregationMode);}
8539StringMemoryColumn.prototype={__proto__:MemoryColumn.prototype,formatSingleField(string){return string;},formatMultipleFieldsDiff(firstString,lastString){if(firstString===undefined){const spanEl=tr.ui.b.createSpan({color:'red'});Polymer.dom(spanEl).appendChild(tr.ui.b.asHTMLOrTextNode('+'));Polymer.dom(spanEl).appendChild(tr.ui.b.asHTMLOrTextNode(this.formatSingleField(lastString)));return spanEl;}else if(lastString===undefined){const spanEl=tr.ui.b.createSpan({color:'green'});Polymer.dom(spanEl).appendChild(tr.ui.b.asHTMLOrTextNode('-'));Polymer.dom(spanEl).appendChild(tr.ui.b.asHTMLOrTextNode(this.formatSingleField(firstString)));return spanEl;}else if(firstString===lastString){return this.formatSingleField(firstString);}
8540const spanEl=tr.ui.b.createSpan({color:'DarkOrange'});Polymer.dom(spanEl).appendChild(tr.ui.b.asHTMLOrTextNode(this.formatSingleField(firstString)));Polymer.dom(spanEl).appendChild(tr.ui.b.asHTMLOrTextNode(' '+RIGHTWARDS_ARROW+' '));Polymer.dom(spanEl).appendChild(tr.ui.b.asHTMLOrTextNode(this.formatSingleField(lastString)));return spanEl;},compareSingleFields(stringA,stringB){return COLLATOR.compare(stringA,stringB);},compareMultipleFieldsDiff(firstStringA,lastStringA,firstStringB,lastStringB){if(firstStringA===undefined&&firstStringB!==undefined){return 1;}
8541if(firstStringA!==undefined&&firstStringB===undefined){return-1;}
8542if(firstStringA===undefined&&firstStringB===undefined){return this.compareSingleFields(lastStringA,lastStringB);}
8543if(lastStringA===undefined&&lastStringB!==undefined){return-1;}
8544if(lastStringA!==undefined&&lastStringB===undefined){return 1;}
8545if(lastStringA===undefined&&lastStringB===undefined){return this.compareSingleFields(firstStringB,firstStringA);}
8546const areStringsAEqual=firstStringA===lastStringA;const areStringsBEqual=firstStringB===lastStringB;if(areStringsAEqual&&areStringsBEqual)return 0;if(areStringsAEqual)return-1;if(areStringsBEqual)return 1;return 0;}};function NumericMemoryColumn(name,cellPath,aggregationMode){MemoryColumn.call(this,name,cellPath,aggregationMode);}
8547NumericMemoryColumn.DIFF_EPSILON=0.0001;NumericMemoryColumn.prototype={__proto__:MemoryColumn.prototype,align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,aggregateCells(row,subRows){const subRowCells=subRows.map(this.cell,this);let hasDefinedSubRowNumeric=false;let timestampCount=undefined;subRowCells.forEach(function(subRowCell){if(subRowCell===undefined)return;const subRowNumerics=subRowCell.fields;if(subRowNumerics===undefined)return;if(timestampCount===undefined){timestampCount=subRowNumerics.length;}else if(timestampCount!==subRowNumerics.length){throw new Error('Sub-rows have different numbers of timestamps');}
8548if(hasDefinedSubRowNumeric){return;}
8549hasDefinedSubRowNumeric=subRowNumerics.some(function(numeric){return numeric!==undefined;});});if(!hasDefinedSubRowNumeric){return;}
8550const cellPath=this.cellPath;let rowCell=row;for(let i=0;i<cellPath.length;i++){const nextStepName=cellPath[i];let nextStep=rowCell[nextStepName];if(nextStep===undefined){if(i<cellPath.length-1){nextStep={};}else{nextStep=new MemoryCell(undefined);}
8551rowCell[nextStepName]=nextStep;}
8552rowCell=nextStep;}
8553if(rowCell.fields===undefined){rowCell.fields=new Array(timestampCount);}else if(rowCell.fields.length!==timestampCount){throw new Error('Row has a different number of timestamps than sub-rows');}
8554for(let i=0;i<timestampCount;i++){if(rowCell.fields[i]!==undefined)continue;rowCell.fields[i]=tr.model.MemoryAllocatorDump.aggregateNumerics(subRowCells.map(function(subRowCell){if(subRowCell===undefined||subRowCell.fields===undefined){return undefined;}
8555return subRowCell.fields[i];}));}},formatSingleField(numeric){return tr.v.ui.createScalarSpan(numeric,{context:this.getFormattingContext(numeric.unit),contextGroup:this.shouldSetContextGroup?this.name:undefined,inline:true,});},getFormattingContext(unit){return undefined;},formatMultipleFieldsDiff(firstNumeric,lastNumeric){return this.formatSingleField(this.getDiffField_(firstNumeric,lastNumeric));},compareSingleFields(numericA,numericB){return numericA.value-numericB.value;},compareMultipleFieldsDiff(firstNumericA,lastNumericA,firstNumericB,lastNumericB){return this.getDiffFieldValue_(firstNumericA,lastNumericA)-
8556this.getDiffFieldValue_(firstNumericB,lastNumericB);},getDiffField_(firstNumeric,lastNumeric){const definedNumeric=firstNumeric||lastNumeric;return new tr.b.Scalar(definedNumeric.unit.correspondingDeltaUnit,this.getDiffFieldValue_(firstNumeric,lastNumeric));},getDiffFieldValue_(firstNumeric,lastNumeric){const firstValue=firstNumeric===undefined?0:firstNumeric.value;const lastValue=lastNumeric===undefined?0:lastNumeric.value;const diff=lastValue-firstValue;return Math.abs(diff)<NumericMemoryColumn.DIFF_EPSILON?0:diff;}};function MemoryCell(fields){this.fields=fields;}
8557MemoryCell.extractFields=function(cell){if(cell===undefined)return undefined;return cell.fields;};const RECURSIVE_EXPANSION_MAX_VISIBLE_ROW_COUNT=10;function expandTableRowsRecursively(table){let currentLevelRows=table.tableRows;let totalVisibleRowCount=currentLevelRows.length;while(currentLevelRows.length>0){let nextLevelRowCount=0;currentLevelRows.forEach(function(currentLevelRow){const subRows=currentLevelRow.subRows;if(subRows===undefined||subRows.length===0)return;nextLevelRowCount+=subRows.length;});if(totalVisibleRowCount+nextLevelRowCount>RECURSIVE_EXPANSION_MAX_VISIBLE_ROW_COUNT){break;}
8558const nextLevelRows=new Array(nextLevelRowCount);let nextLevelRowIndex=0;currentLevelRows.forEach(function(currentLevelRow){const subRows=currentLevelRow.subRows;if(subRows===undefined||subRows.length===0)return;table.setExpandedForTableRow(currentLevelRow,true);subRows.forEach(function(subRow){nextLevelRows[nextLevelRowIndex++]=subRow;});});totalVisibleRowCount+=nextLevelRowCount;currentLevelRows=nextLevelRows;}}
8559function aggregateTableRowCellsRecursively(row,columns,opt_predicate){const subRows=row.subRows;if(subRows===undefined||subRows.length===0)return;subRows.forEach(function(subRow){aggregateTableRowCellsRecursively(subRow,columns,opt_predicate);});if(opt_predicate===undefined||opt_predicate(row.contexts)){aggregateTableRowCells(row,subRows,columns);}}
8560function aggregateTableRowCells(row,subRows,columns){columns.forEach(function(column){if(!(column instanceof MemoryColumn))return;column.aggregateCells(row,subRows);});}
8561function createCells(timeToValues,valueFieldsGetter,opt_this){opt_this=opt_this||this;const fieldNameToFields=tr.b.invertArrayOfDicts(timeToValues,valueFieldsGetter,opt_this);const result={};for(const[fieldName,fields]of Object.entries(fieldNameToFields)){result[fieldName]=new tr.ui.analysis.MemoryCell(fields);}
8562return result;}
8563function createWarningInfo(message){return{message,icon:String.fromCharCode(9888),color:'red'};}
8564function DetailsNumericMemoryColumn(name,cellPath,aggregationMode){NumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
8565DetailsNumericMemoryColumn.prototype={__proto__:NumericMemoryColumn.prototype,getFormattingContext(unit){if(unit.baseUnit===tr.b.Unit.byName.sizeInBytes){return{unitPrefix:tr.b.UnitPrefixScale.BINARY.KIBI};}
8566return undefined;}};return{TitleColumn,MemoryColumn,StringMemoryColumn,NumericMemoryColumn,MemoryCell,expandTableRowsRecursively,aggregateTableRowCellsRecursively,aggregateTableRowCells,createCells,createWarningInfo,DetailsNumericMemoryColumn,};});'use strict';tr.exportTo('tr.ui.analysis',function(){const LATIN_SMALL_LETTER_F_WITH_HOOK=String.fromCharCode(0x0192);const CIRCLED_LATIN_CAPITAL_LETTER_T=String.fromCharCode(0x24C9);const HeapDetailsRowDimension={ROOT:{},STACK_FRAME:{label:'Stack frame',symbol:LATIN_SMALL_LETTER_F_WITH_HOOK,color:'heap_dump_stack_frame'},OBJECT_TYPE:{label:'Object type',symbol:CIRCLED_LATIN_CAPITAL_LETTER_T,color:'heap_dump_object_type'}};function HeapDetailsTitleColumn(title){tr.ui.analysis.TitleColumn.call(this,title);}
8567HeapDetailsTitleColumn.prototype={__proto__:tr.ui.analysis.TitleColumn.prototype,formatTitle(row){if(row.dimension===HeapDetailsRowDimension.ROOT){return row.title;}
8568const symbolEl=document.createElement('span');Polymer.dom(symbolEl).textContent=row.dimension.symbol;symbolEl.title=row.dimension.label;symbolEl.style.color=tr.b.ColorScheme.getColorForReservedNameAsString(row.dimension.color);symbolEl.style.paddingRight='4px';symbolEl.style.cursor='help';symbolEl.style.fontWeight='bold';const titleEl=document.createElement('span');Polymer.dom(titleEl).appendChild(symbolEl);Polymer.dom(titleEl).appendChild(document.createTextNode(row.title));return titleEl;}};function AllocationCountColumn(name,cellPath,aggregationMode){tr.ui.analysis.DetailsNumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
8569AllocationCountColumn.prototype={__proto__:tr.ui.analysis.DetailsNumericMemoryColumn.prototype,getFormattingContext(unit){return{minimumFractionDigits:0};}};const HEAP_DETAILS_COLUMN_RULES=[{condition:'Size',importance:2,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Count',importance:1,columnConstructor:AllocationCountColumn},{importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];return{HeapDetailsRowDimension,HeapDetailsTitleColumn,AllocationCountColumn,HEAP_DETAILS_COLUMN_RULES,};});'use strict';tr.exportTo('tr.ui.analysis',function(){const RebuildableBehavior={rebuild(){if(!this.paneDirty_){return;}
8570this.paneDirty_=false;this.onRebuild_();},scheduleRebuild_(){if(this.paneDirty_)return;this.paneDirty_=true;tr.b.requestAnimationFrame(this.rebuild.bind(this));},onRebuild_(){}};return{RebuildableBehavior,};});'use strict';Polymer({is:'tr-ui-b-tab-view',properties:{label_:{type:String,value:()=>''},selectedSubView_:Object,subViews_:{type:Array,value:()=>[]},tabsHidden:{type:Boolean,value:false,observer:'tabsHiddenChanged_'}},ready(){this.$.tabs.addEventListener('keydown',this.onKeyDown_.bind(this),true);this.updateFocusability_();},set label(newLabel){this.set('label_',newLabel);},get tabs(){return this.get('subViews_');},get selectedSubView(){return this.selectedSubView_;},set selectedSubView(subView){if(subView===this.selectedSubView_)return;if(this.selectedSubView_){Polymer.dom(this.$.subView).removeChild(this.selectedSubView_);const oldInput=this.root.getElementById(this.computeRadioId_(this.selectedSubView_));if(oldInput){oldInput.checked=false;}}
8571this.set('selectedSubView_',subView);if(subView){Polymer.dom(this.$.subView).appendChild(subView);const newInput=this.root.getElementById(this.computeRadioId_(subView));if(newInput){newInput.checked=true;}}
8572this.fire('selected-tab-change');},clearSubViews(){this.splice('subViews_',0,this.subViews_.length);this.selectedSubView=undefined;this.updateFocusability_();},addSubView(subView){this.push('subViews_',subView);if(!this.selectedSubView_)this.selectedSubView=subView;this.updateFocusability_();},get subViews(){return this.subViews_;},resetSubViews(subViews){this.splice('subViews_',0,this.subViews_.length);if(subViews.length){for(const subView of subViews){this.push('subViews_',subView);}
8573this.selectedSubView=subViews[0];}else{this.selectedSubView=undefined;}
8574this.updateFocusability_();},onTabChanged_(event){this.selectedSubView=event.model.item;},isChecked_(subView){return this.selectedSubView_===subView;},tabsHiddenChanged_(){this.updateFocusability_();},onKeyDown_(e){if(this.tabsHidden)return;let keyHandled=false;switch(e.keyCode){case 37:keyHandled=this.selectPreviousTabIfPossible();break;case 39:keyHandled=this.selectNextTabIfPossible();break;}
8575if(!keyHandled)return;e.stopPropagation();e.preventDefault();},selectNextTabIfPossible(){return this.selectTabByOffsetIfPossible_(1);},selectPreviousTabIfPossible(){return this.selectTabByOffsetIfPossible_(-1);},selectTabByOffsetIfPossible_(offset){if(!this.selectedSubView_)return false;const currentIndex=this.subViews_.indexOf(this.selectedSubView_);const newSubView=this.tabs[currentIndex+offset];if(!newSubView)return false;this.selectedSubView=newSubView;return true;},shouldBeFocusable_(){return!this.tabsHidden&&this.subViews_.length>0;},updateFocusability_(){if(this.shouldBeFocusable_()){Polymer.dom(this.$.tabs).setAttribute('tabindex',0);}else{Polymer.dom(this.$.tabs).removeAttribute('tabindex');}},computeRadioId_(subView){return subView.tagName+'-'+subView.tabLabel.replace(/ /g,'-');}});'use strict';tr.exportTo('tr.ui.analysis',function(){const RESONABLE_NUMBER_OF_ROWS=200;const TabUiState={NO_LONG_TAIL:0,HIDING_LONG_TAIL:1,SHOWING_LONG_TAIL:2,};function EmptyFillerColumn(){}
8576EmptyFillerColumn.prototype={title:'',value(){return'';},};Polymer({is:'tr-ui-a-memory-dump-heap-details-breakdown-view',behaviors:[tr.ui.analysis.RebuildableBehavior],created(){this.displayedNode_=undefined;this.dimensionToTab_=new Map();},ready(){this.scheduleRebuild_();this.root.addEventListener('keydown',this.onKeyDown_.bind(this),true);},get displayedNode(){return this.displayedNode_;},set displayedNode(node){this.displayedNode_=node;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;for(const tab of this.$.tabs.tabs){tab.aggregationMode=aggregationMode;}},onRebuild_(){const previouslySelectedTab=this.$.tabs.selectedSubView;let previouslySelectedTabFocused=false;let previouslySelectedDimension=undefined;if(previouslySelectedTab){previouslySelectedTabFocused=previouslySelectedTab.isFocused;previouslySelectedDimension=previouslySelectedTab.dimension;}
8577for(const tab of this.$.tabs.tabs){tab.nodes=undefined;}
8578this.$.tabs.clearSubViews();if(this.displayedNode_===undefined){this.$.tabs.label='No heap node provided.';return;}
8579for(const[dimension,children]of this.displayedNode_.childNodes){if(!this.dimensionToTab_.has(dimension)){this.dimensionToTab_.set(dimension,document.createElement('tr-ui-a-memory-dump-heap-details-breakdown-view-tab'));}
8580const tab=this.dimensionToTab_.get(dimension);tab.aggregationMode=this.aggregationMode_;tab.dimension=dimension;tab.nodes=children;this.$.tabs.addSubView(tab);tab.rebuild();if(dimension===previouslySelectedDimension){this.$.tabs.selectedSubView=tab;if(previouslySelectedTabFocused){tab.focus();}}}
8581if(this.$.tabs.tabs.length>0){this.$.tabs.label='Break selected node further by:';}else{this.$.tabs.label='Selected node cannot be broken down any further.';}},onKeyDown_(keyEvent){if(!this.displayedNode_)return;let keyHandled=false;switch(keyEvent.keyCode){case 8:{if(!this.displayedNode_.parentNode)break;const viewEvent=new tr.b.Event('enter-node');viewEvent.node=this.displayedNode_.parentNode;this.dispatchEvent(viewEvent);keyHandled=true;break;}
8582case 37:case 39:{const wasFocused=this.$.tabs.selectedSubView.isFocused;keyHandled=keyEvent.keyCode===37?this.$.tabs.selectPreviousTabIfPossible():this.$.tabs.selectNextTabIfPossible();if(wasFocused&&keyHandled){this.$.tabs.selectedSubView.focus();}}}
8583if(!keyHandled)return;keyEvent.stopPropagation();keyEvent.preventDefault();}});Polymer({is:'tr-ui-a-memory-dump-heap-details-breakdown-view-tab',behaviors:[tr.ui.analysis.RebuildableBehavior],created(){this.dimension_=undefined;this.nodes_=undefined;this.aggregationMode_=undefined;this.displayLongTail_=false;},ready(){this.$.table.addEventListener('step-into',function(tableEvent){const viewEvent=new tr.b.Event('enter-node');viewEvent.node=tableEvent.tableRow;this.dispatchEvent(viewEvent);}.bind(this));},get displayLongTail(){return this.displayLongTail_;},set displayLongTail(newValue){if(this.displayLongTail===newValue)return;this.displayLongTail_=newValue;this.scheduleRebuild_();},get dimension(){return this.dimension_;},set dimension(dimension){this.dimension_=dimension;this.scheduleRebuild_();},get nodes(){return this.nodes_;},set nodes(nodes){this.nodes_=nodes;this.scheduleRebuild_();},get nodes(){return this.nodes_||[];},get dimensionLabel_(){if(this.dimension_===undefined)return'(undefined)';return this.dimension_.label;},get tabLabel(){let nodeCount=0;if(this.nodes_){nodeCount=this.nodes_.length;}
8584return this.dimensionLabel_+' ('+nodeCount+')';},get tabIcon(){if(this.dimension_===undefined||this.dimension_===tr.ui.analysis.HeapDetailsRowDimension.ROOT){return undefined;}
8585return{text:this.dimension_.symbol,style:'color: '+tr.b.ColorScheme.getColorForReservedNameAsString(this.dimension_.color)+';'};},get aggregationMode(){return this.aggregationMode_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},focus(){this.$.table.focus();},blur(){this.$.table.blur();},get isFocused(){return this.$.table.isFocused;},onRebuild_(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.table.emptyValue='Cannot break down by '+
8586this.dimensionLabel_.toLowerCase()+' any further.';const[state,rows]=this.getRows_();const total=this.nodes.length;const displayed=rows.length;const hidden=total-displayed;this.updateInfoBar_(state,[total,displayed,hidden]);this.$.table.tableRows=rows;this.$.table.tableColumns=this.createColumns_(rows);if(this.$.table.sortColumnIndex===undefined){this.$.table.sortColumnIndex=0;this.$.table.sortDescending=false;}
8587this.$.table.rebuild();},createColumns_(rows){const titleColumn=new tr.ui.analysis.HeapDetailsTitleColumn(this.dimensionLabel_);titleColumn.width='400px';const numericColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'cells',aggregationMode:this.aggregationMode_,rules:tr.ui.analysis.HEAP_DETAILS_COLUMN_RULES,shouldSetContextGroup:true});if(numericColumns.length===0){numericColumns.push(new EmptyFillerColumn());}
8588tr.ui.analysis.MemoryColumn.spaceEqually(numericColumns);const columns=[titleColumn].concat(numericColumns);return columns;},getRows_(){let rows=this.nodes;if(rows.length<=RESONABLE_NUMBER_OF_ROWS){return[TabUiState.NO_LONG_TAIL,rows];}else if(this.displayLongTail){return[TabUiState.SHOWING_LONG_TAIL,rows];}
8589const absSize=row=>Math.max(row.cells.Size.fields[0].value);rows.sort((a,b)=>absSize(b)-absSize(a));rows=rows.slice(0,RESONABLE_NUMBER_OF_ROWS);return[TabUiState.HIDING_LONG_TAIL,rows];},updateInfoBar_(state,rowStats){if(state===TabUiState.SHOWING_LONG_TAIL){this.longTailVisibleInfoBar_(rowStats);}else if(state===TabUiState.HIDING_LONG_TAIL){this.longTailHiddenInfoBar_(rowStats);}else{this.hideInfoBar_();}},longTailVisibleInfoBar_(rowStats){const[total,visible,hidden]=rowStats;const couldHide=total-RESONABLE_NUMBER_OF_ROWS;this.$.info.message='Showing '+total+' rows. This may be slow.';this.$.info.removeAllButtons();const buttonText='Hide '+couldHide+' rows.';this.$.info.addButton(buttonText,()=>this.displayLongTail=false);this.$.info.visible=true;},longTailHiddenInfoBar_(rowStats){const[total,visible,hidden]=rowStats;this.$.info.message='Hiding the smallest '+hidden+' rows.';this.$.info.removeAllButtons();this.$.info.addButton('Show all.',()=>this.displayLongTail=true);this.$.info.visible=true;},hideInfoBar_(){this.$.info.visible=false;},});return{};});'use strict';tr.exportTo('tr.ui.analysis',function(){const DOWNWARDS_ARROW_WITH_TIP_RIGHTWARDS=String.fromCharCode(0x21B3);function HeapDetailsPathColumn(title){tr.ui.analysis.HeapDetailsTitleColumn.call(this,title);}
8590HeapDetailsPathColumn.prototype={__proto__:tr.ui.analysis.HeapDetailsTitleColumn.prototype,formatTitle(row){const title=tr.ui.analysis.HeapDetailsTitleColumn.prototype.formatTitle.call(this,row);if(row.dimension===tr.ui.analysis.HeapDetailsRowDimension.ROOT){return title;}
8591const arrowEl=document.createElement('span');Polymer.dom(arrowEl).textContent=DOWNWARDS_ARROW_WITH_TIP_RIGHTWARDS;arrowEl.style.paddingRight='2px';arrowEl.style.fontWeight='bold';arrowEl.style.color=tr.b.ColorScheme.getColorForReservedNameAsString('heap_dump_child_node_arrow');const rowEl=document.createElement('span');Polymer.dom(rowEl).appendChild(arrowEl);Polymer.dom(rowEl).appendChild(tr.ui.b.asHTMLOrTextNode(title));return rowEl;}};Polymer({is:'tr-ui-a-memory-dump-heap-details-path-view',behaviors:[tr.ui.analysis.RebuildableBehavior],created(){this.selectedNode_=undefined;this.aggregationMode_=undefined;},ready(){this.$.table.addEventListener('selection-changed',function(event){this.selectedNode_=this.$.table.selectedTableRow;this.didSelectedNodeChange_();}.bind(this));},didSelectedNodeChange_(){this.dispatchEvent(new tr.b.Event('selected-node-changed'));},get selectedNode(){return this.selectedNode_;},set selectedNode(node){this.selectedNode_=node;this.didSelectedNodeChange_();this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},onRebuild_(){if(this.selectedNode_===undefined){this.$.table.clear();return;}
8592if(this.$.table.tableRows.includes(this.selectedNode_)){this.$.table.selectedTableRow=this.selectedNode_;return;}
8593this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.table.userCanModifySortOrder=false;const rows=this.createRows_(this.selectedNode_);this.$.table.tableRows=rows;this.$.table.tableColumns=this.createColumns_(rows);this.$.table.selectedTableRow=rows[rows.length-1];},createRows_(node){const rows=[];while(node){rows.push(node);node=node.parentNode;}
8594rows.reverse();return rows;},createColumns_(rows){const titleColumn=new HeapDetailsPathColumn('Current path');titleColumn.width='200px';const numericColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'cells',aggregationMode:this.aggregationMode_,rules:tr.ui.analysis.HEAP_DETAILS_COLUMN_RULES,shouldSetContextGroup:true});tr.ui.analysis.MemoryColumn.spaceEqually(numericColumns);return[titleColumn].concat(numericColumns);}});return{};});'use strict';tr.exportTo('tr.ui.analysis',function(){const StackedPaneImpl={set childPaneBuilder(childPaneBuilder){this.childPaneBuilder_=childPaneBuilder;this.dispatchEvent(new tr.b.Event('request-child-pane-change'));},get childPaneBuilder(){return this.childPaneBuilder_;},appended(){this.rebuild();}};const StackedPane=[tr.ui.analysis.RebuildableBehavior,StackedPaneImpl];return{StackedPane,};});Polymer({is:'tr-ui-a-stacked-pane',behaviors:[tr.ui.analysis.StackedPane]});'use strict';tr.exportTo('tr.ui.analysis',function(){const Scalar=tr.b.Scalar;const sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;const count_smallerIsBetter=tr.b.Unit.byName.count_smallerIsBetter;const MultiDimensionalViewBuilder=tr.b.MultiDimensionalViewBuilder;const TotalState=tr.b.MultiDimensionalViewNode.TotalState;function HeapDumpTreeNode(stackFrameNodes,dimension,title,heavyView,parentNode){this.dimension=dimension;this.title=title;this.parentNode=parentNode;this.heavyView_=heavyView;this.stackFrameNodes_=stackFrameNodes;this.lazyCells_=undefined;this.lazyChildNodes_=undefined;}
8595HeapDumpTreeNode.prototype={get minDisplayedTotalState_(){if(this.heavyView_){return TotalState.LOWER_BOUND;}
8596return TotalState.EXACT;},get childNodes(){if(!this.lazyChildNodes_){this.lazyChildNodes_=new Map();this.addDimensionChildNodes_(tr.ui.analysis.HeapDetailsRowDimension.STACK_FRAME,0);this.addDimensionChildNodes_(tr.ui.analysis.HeapDetailsRowDimension.OBJECT_TYPE,1);this.releaseStackFrameNodesIfPossible_();}
8597return this.lazyChildNodes_;},get cells(){if(!this.lazyCells_){this.addCells_();this.releaseStackFrameNodesIfPossible_();}
8598return this.lazyCells_;},releaseStackFrameNodesIfPossible_(){if(this.lazyCells_&&this.lazyChildNodes_){this.stackFrameNodes_=undefined;}},addDimensionChildNodes_(dimension,dimensionIndex){const dimensionChildTitleToStackFrameNodes=tr.b.invertArrayOfDicts(this.stackFrameNodes_,node=>this.convertStackFrameNodeDimensionToChildDict_(node,dimensionIndex));const dimensionChildNodes=[];for(const[childTitle,childStackFrameNodes]of
8599Object.entries(dimensionChildTitleToStackFrameNodes)){dimensionChildNodes.push(new HeapDumpTreeNode(childStackFrameNodes,dimension,childTitle,this.heavyView_,this));}
8600this.lazyChildNodes_.set(dimension,dimensionChildNodes);},convertStackFrameNodeDimensionToChildDict_(stackFrameNode,dimensionIndex){const childDict={};let displayedChildrenTotalSize=0;let displayedChildrenTotalCount=0;let hasDisplayedChildren=false;let allDisplayedChildrenHaveDisplayedCounts=true;for(const child of stackFrameNode.children[dimensionIndex].values()){if(child.values[0].totalState<this.minDisplayedTotalState_){continue;}
8601if(child.values[1].totalState<this.minDisplayedTotalState_){allDisplayedChildrenHaveDisplayedCounts=false;}
8602childDict[child.title[dimensionIndex]]=child;displayedChildrenTotalSize+=child.values[0].total;displayedChildrenTotalCount+=child.values[1].total;hasDisplayedChildren=true;}
8603const nodeTotalSize=stackFrameNode.values[0].total;const nodeTotalCount=stackFrameNode.values[1].total;const hasUnclassifiedSizeOrCount=displayedChildrenTotalSize<nodeTotalSize||displayedChildrenTotalCount<nodeTotalCount;if(!this.heavyView_&&hasUnclassifiedSizeOrCount&&hasDisplayedChildren){const otherTitle=stackFrameNode.title.slice();otherTitle[dimensionIndex]='<other>';const otherNode=new tr.b.MultiDimensionalViewNode(otherTitle,2);childDict[otherTitle[dimensionIndex]]=otherNode;otherNode.values[0].total=nodeTotalSize-displayedChildrenTotalSize;otherNode.values[0].totalState=this.minDisplayedTotalState_;otherNode.values[1].total=nodeTotalCount-displayedChildrenTotalCount;otherNode.values[1].totalState=allDisplayedChildrenHaveDisplayedCounts?this.minDisplayedTotalState_:TotalState.NOT_PROVIDED;}
8604return childDict;},addCells_(){this.lazyCells_=tr.ui.analysis.createCells(this.stackFrameNodes_,function(stackFrameNode){const size=stackFrameNode.values[0].total;const numerics={'Size':new Scalar(sizeInBytes_smallerIsBetter,size)};const countValue=stackFrameNode.values[1];if(countValue.totalState>=this.minDisplayedTotalState_){const count=countValue.total;numerics.Count=new Scalar(count_smallerIsBetter,count);}
8605return numerics;},this);}};Polymer({is:'tr-ui-a-memory-dump-heap-details-pane',behaviors:[tr.ui.analysis.StackedPane],created(){this.heapDumps_=undefined;this.viewMode_=undefined;this.aggregationMode_=undefined;this.cachedBuilders_=new Map();},ready(){this.$.info_bar.message='Note: Values displayed in the heavy view '+'are lower bounds (except for the root).';Polymer.dom(this.$.view_mode_container).appendChild(tr.ui.b.createSelector(this,'viewMode','memoryDumpHeapDetailsPane.viewMode',MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW,[{label:'Top-down (Tree)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW},{label:'Top-down (Heavy)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW},{label:'Bottom-up (Heavy)',value:MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW}]));this.$.drag_handle.target=this.$.path_view;this.$.drag_handle.horizontal=false;this.$.path_view.addEventListener('selected-node-changed',(function(e){this.$.breakdown_view.displayedNode=this.$.path_view.selectedNode;}).bind(this));this.$.breakdown_view.addEventListener('enter-node',(function(e){this.$.path_view.selectedNode=e.node;}).bind(this));},set heapDumps(heapDumps){this.heapDumps_=heapDumps;this.scheduleRebuild_();},get heapDumps(){return this.heapDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.$.path_view.aggregationMode=aggregationMode;this.$.breakdown_view.aggregationMode=aggregationMode;},get aggregationMode(){return this.aggregationMode_;},set viewMode(viewMode){this.viewMode_=viewMode;this.scheduleRebuild_();},get viewMode(){return this.viewMode_;},get heavyView(){switch(this.viewMode){case MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW:case MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW:return true;default:return false;}},onRebuild_(){if(this.heapDumps_===undefined||this.heapDumps_.length===0){this.$.info_text.style.display='block';this.$.split_view.style.display='none';this.$.view_mode_container.style.display='none';this.$.info_bar.hidden=true;this.$.path_view.selectedNode=undefined;return;}
8606this.$.info_text.style.display='none';this.$.split_view.style.display='flex';this.$.view_mode_container.style.display='block';this.$.info_bar.hidden=!this.heavyView;this.$.path_view.selectedNode=this.createHeapTree_();this.$.path_view.rebuild();this.$.breakdown_view.rebuild();},createHeapTree_(){const definedHeapDump=this.heapDumps_.find(x=>x);if(definedHeapDump===undefined)return undefined;const rootRowTitle=definedHeapDump.allocatorName;const stackFrameTrees=this.createStackFrameTrees_(this.heapDumps_);return new HeapDumpTreeNode(stackFrameTrees,tr.ui.analysis.HeapDetailsRowDimension.ROOT,rootRowTitle,this.heavyView);},createStackFrameTrees_(heapDumps){const builders=heapDumps.map(heapDump=>this.createBuilder_(heapDump));const views=builders.map(builder=>{if(builder===undefined)return undefined;return builder.buildView(this.viewMode);});return views;},createBuilder_(heapDump){if(heapDump===undefined)return undefined;if(this.cachedBuilders_.has(heapDump)){return this.cachedBuilders_.get(heapDump);}
8607const dimensions=2;const valueCount=2;const builder=new MultiDimensionalViewBuilder(dimensions,valueCount);for(const entry of heapDump.entries){const leafStackFrame=entry.leafStackFrame;const stackTracePath=leafStackFrame===undefined?[]:leafStackFrame.getUserFriendlyStackTrace().reverse();const objectTypeName=entry.objectTypeName;const objectTypeNamePath=objectTypeName===undefined?[]:[objectTypeName];const valueKind=entry.valuesAreTotals?MultiDimensionalViewBuilder.ValueKind.TOTAL:MultiDimensionalViewBuilder.ValueKind.SELF;builder.addPath([stackTracePath,objectTypeNamePath],[entry.size,entry.count],valueKind);}
8608builder.complete=heapDump.isComplete;this.cachedBuilders_.set(heapDump,builder);return builder;},});return{};});'use strict';tr.exportTo('tr.ui.analysis',function(){const URL_TO_SIZE_VS_EFFECTIVE_SIZE='https://chromium.googlesource.com/chromium/src/+/master/docs/memory-infra/README.md#effective_size-vs_size';const SUBALLOCATION_CONTEXT=true;const MemoryAllocatorDumpInfoType=tr.model.MemoryAllocatorDumpInfoType;const PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN=MemoryAllocatorDumpInfoType.PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN;const PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER=MemoryAllocatorDumpInfoType.PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER;const LEFTWARDS_OPEN_HEADED_ARROW=String.fromCharCode(0x21FD);const RIGHTWARDS_OPEN_HEADED_ARROW=String.fromCharCode(0x21FE);const EN_DASH=String.fromCharCode(0x2013);const CIRCLED_LATIN_SMALL_LETTER_I=String.fromCharCode(0x24D8);function AllocatorDumpNameColumn(){tr.ui.analysis.TitleColumn.call(this,'Component');}
8609AllocatorDumpNameColumn.prototype={__proto__:tr.ui.analysis.TitleColumn.prototype,formatTitle(row){if(!row.suballocation){return row.title;}
8610return tr.ui.b.createSpan({textContent:row.title,italic:true,tooltip:row.fullNames===undefined?undefined:row.fullNames.join(', ')});}};function getAndUpdateEntry(map,name,createdCallback){let entry=map.get(name);if(entry===undefined){entry={count:0};createdCallback(entry);map.set(name,entry);}
8611entry.count++;return entry;}
8612function SizeInfoMessageBuilder(){this.parts_=[];this.indent_=0;}
8613SizeInfoMessageBuilder.prototype={append(){this.parts_.push.apply(this.parts_,Array.prototype.slice.apply(arguments));},appendMap(map,hasPluralSuffix,emptyText,itemCallback,opt_this){opt_this=opt_this||this;if(map.size===0){if(emptyText){this.append(emptyText);}}else if(map.size===1){this.parts_.push(' ');const key=map.keys().next().value;itemCallback.call(opt_this,key,map.get(key));}else{if(hasPluralSuffix){this.parts_.push('s');}
8614this.parts_.push(':');this.indent_++;for(const key of map.keys()){this.parts_.push('\n',' '.repeat(3*(this.indent_-1)),' - ');itemCallback.call(opt_this,key,map.get(key));}
8615this.indent_--;}},appendImportanceRange(range){this.append(' (importance: ');if(range.min===range.max){this.append(range.min);}else{this.append(range.min,EN_DASH,range.max);}
8616this.append(')');},appendSizeIfDefined(size){if(size!==undefined){this.append(' (',tr.b.Unit.byName.sizeInBytes.format(size),')');}},appendSomeTimestampsQuantifier(){this.append(' ',tr.ui.analysis.MemoryColumn.SOME_TIMESTAMPS_INFO_QUANTIFIER);},build(){return this.parts_.join('');}};function EffectiveSizeColumn(name,cellPath,aggregationMode){tr.ui.analysis.DetailsNumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
8617EffectiveSizeColumn.prototype={__proto__:tr.ui.analysis.DetailsNumericMemoryColumn.prototype,get title(){return tr.ui.b.createLink({textContent:this.name,tooltip:'Memory used by this component',href:URL_TO_SIZE_VS_EFFECTIVE_SIZE});},addInfos(numerics,memoryAllocatorDumps,infos){if(memoryAllocatorDumps===undefined)return;const ownerNameToEntry=new Map();const ownedNameToEntry=new Map();for(let i=0;i<numerics.length;i++){if(numerics[i]===undefined)continue;const dump=memoryAllocatorDumps[i];if(dump===SUBALLOCATION_CONTEXT){return;}
8618dump.ownedBy.forEach(function(ownerLink){const ownerDump=ownerLink.source;this.getAndUpdateOwnershipEntry_(ownerNameToEntry,ownerDump,ownerLink);},this);const ownedLink=dump.owns;if(ownedLink!==undefined){const ownedDump=ownedLink.target;const ownedEntry=this.getAndUpdateOwnershipEntry_(ownedNameToEntry,ownedDump,ownedLink,true);const sharerNameToEntry=ownedEntry.sharerNameToEntry;ownedDump.ownedBy.forEach(function(sharerLink){const sharerDump=sharerLink.source;if(sharerDump===dump)return;this.getAndUpdateOwnershipEntry_(sharerNameToEntry,sharerDump,sharerLink);},this);}}
8619if(ownerNameToEntry.size>0){const messageBuilder=new SizeInfoMessageBuilder();messageBuilder.append('shared by');messageBuilder.appendMap(ownerNameToEntry,false,undefined,function(ownerName,ownerEntry){messageBuilder.append(ownerName);if(ownerEntry.count<numerics.length){messageBuilder.appendSomeTimestampsQuantifier();}
8620messageBuilder.appendImportanceRange(ownerEntry.importanceRange);},this);infos.push({message:messageBuilder.build(),icon:LEFTWARDS_OPEN_HEADED_ARROW,color:'green'});}
8621if(ownedNameToEntry.size>0){const messageBuilder=new SizeInfoMessageBuilder();messageBuilder.append('shares');messageBuilder.appendMap(ownedNameToEntry,false,undefined,function(ownedName,ownedEntry){messageBuilder.append(ownedName);const ownedCount=ownedEntry.count;if(ownedCount<numerics.length){messageBuilder.appendSomeTimestampsQuantifier();}
8622messageBuilder.appendImportanceRange(ownedEntry.importanceRange);messageBuilder.append(' with');messageBuilder.appendMap(ownedEntry.sharerNameToEntry,false,' no other dumps',function(sharerName,sharerEntry){messageBuilder.append(sharerName);if(sharerEntry.count<ownedCount){messageBuilder.appendSomeTimestampsQuantifier();}
8623messageBuilder.appendImportanceRange(sharerEntry.importanceRange);},this);},this);infos.push({message:messageBuilder.build(),icon:RIGHTWARDS_OPEN_HEADED_ARROW,color:'green'});}},getAndUpdateOwnershipEntry_(map,dump,link,opt_withSharerNameToEntry){const entry=getAndUpdateEntry(map,dump.quantifiedName,function(newEntry){newEntry.importanceRange=new tr.b.math.Range();if(opt_withSharerNameToEntry){newEntry.sharerNameToEntry=new Map();}});entry.importanceRange.addValue(link.importance||0);return entry;}};function SizeColumn(name,cellPath,aggregationMode){tr.ui.analysis.DetailsNumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
8624SizeColumn.prototype={__proto__:tr.ui.analysis.DetailsNumericMemoryColumn.prototype,get title(){return tr.ui.b.createLink({textContent:this.name,tooltip:'Memory requested by this component',href:URL_TO_SIZE_VS_EFFECTIVE_SIZE});},addInfos(numerics,memoryAllocatorDumps,infos){if(memoryAllocatorDumps===undefined)return;this.addOverlapInfo_(numerics,memoryAllocatorDumps,infos);this.addProvidedSizeWarningInfos_(numerics,memoryAllocatorDumps,infos);},addOverlapInfo_(numerics,memoryAllocatorDumps,infos){const siblingNameToEntry=new Map();for(let i=0;i<numerics.length;i++){if(numerics[i]===undefined)continue;const dump=memoryAllocatorDumps[i];if(dump===SUBALLOCATION_CONTEXT){return;}
8625const ownedBySiblingSizes=dump.ownedBySiblingSizes;for(const siblingDump of ownedBySiblingSizes.keys()){const siblingName=siblingDump.name;getAndUpdateEntry(siblingNameToEntry,siblingName,function(newEntry){if(numerics.length===1){newEntry.size=ownedBySiblingSizes.get(siblingDump);}});}}
8626if(siblingNameToEntry.size>0){const messageBuilder=new SizeInfoMessageBuilder();messageBuilder.append('overlaps with its sibling');messageBuilder.appendMap(siblingNameToEntry,true,undefined,function(siblingName,siblingEntry){messageBuilder.append('\'',siblingName,'\'');messageBuilder.appendSizeIfDefined(siblingEntry.size);if(siblingEntry.count<numerics.length){messageBuilder.appendSomeTimestampsQuantifier();}},this);infos.push({message:messageBuilder.build(),icon:CIRCLED_LATIN_SMALL_LETTER_I,color:'blue'});}},addProvidedSizeWarningInfos_(numerics,memoryAllocatorDumps,infos){const infoTypeToEntry=new Map();for(let i=0;i<numerics.length;i++){if(numerics[i]===undefined)continue;const dump=memoryAllocatorDumps[i];if(dump===SUBALLOCATION_CONTEXT){return;}
8627dump.infos.forEach(function(dumpInfo){getAndUpdateEntry(infoTypeToEntry,dumpInfo.type,function(newEntry){if(numerics.length===1){newEntry.providedSize=dumpInfo.providedSize;newEntry.dependencySize=dumpInfo.dependencySize;}});});}
8628for(const infoType of infoTypeToEntry.keys()){const entry=infoTypeToEntry.get(infoType);const messageBuilder=new SizeInfoMessageBuilder();messageBuilder.append('provided size');messageBuilder.appendSizeIfDefined(entry.providedSize);let dependencyName;switch(infoType){case PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN:dependencyName='the aggregated size of the children';break;case PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER:dependencyName='the size of the largest owner';break;default:dependencyName='an unknown dependency';break;}
8629messageBuilder.append(' was less than ',dependencyName);messageBuilder.appendSizeIfDefined(entry.dependencySize);if(entry.count<numerics.length){messageBuilder.appendSomeTimestampsQuantifier();}
8630infos.push(tr.ui.analysis.createWarningInfo(messageBuilder.build()));}}};const NUMERIC_COLUMN_RULES=[{condition:tr.model.MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME,importance:10,columnConstructor:EffectiveSizeColumn},{condition:tr.model.MemoryAllocatorDump.SIZE_NUMERIC_NAME,importance:9,columnConstructor:SizeColumn},{condition:'page_size',importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:/size/,importance:5,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];const DIAGNOSTIC_COLUMN_RULES=[{importance:0,columnConstructor:tr.ui.analysis.StringMemoryColumn}];Polymer({is:'tr-ui-a-memory-dump-allocator-details-pane',behaviors:[tr.ui.analysis.StackedPane],created(){this.memoryAllocatorDumps_=undefined;this.heapDumps_=undefined;this.aggregationMode_=undefined;},ready(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},set memoryAllocatorDumps(memoryAllocatorDumps){this.memoryAllocatorDumps_=memoryAllocatorDumps;this.scheduleRebuild_();},get memoryAllocatorDumps(){return this.memoryAllocatorDumps_;},set heapDumps(heapDumps){this.heapDumps_=heapDumps;this.scheduleRebuild_();},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},onRebuild_(){if(this.memoryAllocatorDumps_===undefined||this.memoryAllocatorDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();this.childPaneBuilder=undefined;return;}
8631this.$.info_text.style.display='none';this.$.table.style.display='block';const rows=this.createRows_();const columns=this.createColumns_(rows);rows.forEach(function(rootRow){tr.ui.analysis.aggregateTableRowCellsRecursively(rootRow,columns,function(contexts){return contexts!==undefined&&contexts.some(function(context){return context===SUBALLOCATION_CONTEXT;});});});this.$.table.tableRows=rows;this.$.table.tableColumns=columns;this.$.table.rebuild();tr.ui.analysis.expandTableRowsRecursively(this.$.table);if(this.heapDumps_===undefined){this.childPaneBuilder=undefined;}else{this.childPaneBuilder=function(){const pane=document.createElement('tr-ui-a-memory-dump-heap-details-pane');pane.heapDumps=this.heapDumps_;pane.aggregationMode=this.aggregationMode_;return pane;}.bind(this);}},createRows_(){return[this.createAllocatorRowRecursively_(this.memoryAllocatorDumps_)];},createAllocatorRowRecursively_(dumps){const definedDump=dumps.find(x=>x);const title=definedDump.name;const fullName=definedDump.fullName;const numericCells=tr.ui.analysis.createCells(dumps,function(dump){return dump.numerics;});const diagnosticCells=tr.ui.analysis.createCells(dumps,function(dump){return dump.diagnostics;});let suballocatedBy=undefined;if(title.startsWith('__')){for(let i=0;i<dumps.length;i++){const dump=dumps[i];if(dump===undefined||dump.ownedBy.length===0){continue;}
8632const ownerDump=dump.ownedBy[0].source;if(dump.ownedBy.length>1||dump.children.length>0||ownerDump.containerMemoryDump!==dump.containerMemoryDump){suballocatedBy=undefined;break;}
8633if(suballocatedBy===undefined){suballocatedBy=ownerDump.fullName;}else if(suballocatedBy!==ownerDump.fullName){suballocatedBy=undefined;break;}}}
8634const row={title,fullNames:[fullName],contexts:dumps,numericCells,diagnosticCells,suballocatedBy};const childDumpNameToDumps=tr.b.invertArrayOfDicts(dumps,function(dump){const results={};for(const child of dump.children){results[child.name]=child;}
8635return results;});const subRows=[];let suballocationClassificationRootNode=undefined;for(const childDumps of Object.values(childDumpNameToDumps)){const childRow=this.createAllocatorRowRecursively_(childDumps);if(childRow.suballocatedBy===undefined){subRows.push(childRow);}else{suballocationClassificationRootNode=this.classifySuballocationRow_(childRow,suballocationClassificationRootNode);}}
8636if(suballocationClassificationRootNode!==undefined){const suballocationRow=this.createSuballocationRowRecursively_('suballocations',suballocationClassificationRootNode);subRows.push(suballocationRow);}
8637if(subRows.length>0){row.subRows=subRows;}
8638return row;},classifySuballocationRow_(suballocationRow,rootNode){if(rootNode===undefined){rootNode={children:{},row:undefined};}
8639const suballocationLevels=suballocationRow.suballocatedBy.split('/');let currentNode=rootNode;for(let i=0;i<suballocationLevels.length;i++){const suballocationLevel=suballocationLevels[i];let nextNode=currentNode.children[suballocationLevel];if(nextNode===undefined){currentNode.children[suballocationLevel]=nextNode={children:{},row:undefined};}
8640currentNode=nextNode;}
8641const existingRow=currentNode.row;if(existingRow!==undefined){for(let i=0;i<suballocationRow.contexts.length;i++){const newContext=suballocationRow.contexts[i];if(newContext===undefined)continue;if(existingRow.contexts[i]!==undefined){throw new Error('Multiple suballocations with the same owner name');}
8642existingRow.contexts[i]=newContext;['numericCells','diagnosticCells'].forEach(function(cellKey){const suballocationCells=suballocationRow[cellKey];if(suballocationCells===undefined)return;for(const[cellName,cell]of Object.entries(suballocationCells)){if(cell===undefined)continue;const fields=cell.fields;if(fields===undefined)continue;const field=fields[i];if(field===undefined)continue;let existingCells=existingRow[cellKey];if(existingCells===undefined){existingCells={};existingRow[cellKey]=existingCells;}
8643let existingCell=existingCells[cellName];if(existingCell===undefined){existingCell=new tr.ui.analysis.MemoryCell(new Array(fields.length));existingCells[cellName]=existingCell;}
8644existingCell.fields[i]=field;}});}
8645existingRow.fullNames.push.apply(existingRow.fullNames,suballocationRow.fullNames);}else{currentNode.row=suballocationRow;}
8646return rootNode;},createSuballocationRowRecursively_(name,node){const childCount=Object.keys(node.children).length;if(childCount===0){if(node.row===undefined){throw new Error('Suballocation node must have a row or children');}
8647const row=node.row;row.title=name;row.suballocation=true;return row;}
8648const subRows=[];for(const[subName,subNode]of Object.entries(node.children)){subRows.push(this.createSuballocationRowRecursively_(subName,subNode));}
8649if(node.row!==undefined){const row=node.row;row.title='<unspecified>';row.suballocation=true;subRows.unshift(row);}
8650const contexts=new Array(subRows[0].contexts.length);for(let i=0;i<subRows.length;i++){subRows[i].contexts.forEach(function(subContext,index){if(subContext!==undefined){contexts[index]=SUBALLOCATION_CONTEXT;}});}
8651return{title:name,suballocation:true,contexts,subRows};},createColumns_(rows){const titleColumn=new AllocatorDumpNameColumn();titleColumn.width='200px';const numericColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'numericCells',aggregationMode:this.aggregationMode_,rules:NUMERIC_COLUMN_RULES});const diagnosticColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'diagnosticCells',aggregationMode:this.aggregationMode_,rules:DIAGNOSTIC_COLUMN_RULES});const fieldColumns=numericColumns.concat(diagnosticColumns);tr.ui.analysis.MemoryColumn.spaceEqually(fieldColumns);const columns=[titleColumn].concat(fieldColumns);return columns;}});return{SUBALLOCATION_CONTEXT,AllocatorDumpNameColumn,EffectiveSizeColumn,SizeColumn,};});'use strict';tr.exportTo('tr.ui.analysis',function(){const Scalar=tr.b.Scalar;const sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;const CONSTANT_COLUMN_RULES=[{condition:'Start address',importance:0,columnConstructor:tr.ui.analysis.StringMemoryColumn}];const VARIABLE_COLUMN_RULES=[{condition:'Virtual size',importance:7,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Protection flags',importance:6,columnConstructor:tr.ui.analysis.StringMemoryColumn},{condition:'PSS',importance:5,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Private dirty',importance:4,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Private clean',importance:3,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Shared dirty',importance:2,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Shared clean',importance:1,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Swapped',importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];const BYTE_STAT_COLUMN_MAP={'proportionalResident':'PSS','privateDirtyResident':'Private dirty','privateCleanResident':'Private clean','sharedDirtyResident':'Shared dirty','sharedCleanResident':'Shared clean','swapped':'Swapped'};function hexString(address,is64BitAddress){if(address===undefined)return undefined;const hexPadding=is64BitAddress?'0000000000000000':'00000000';return(hexPadding+address.toString(16)).substr(-hexPadding.length);}
8652function pruneEmptyRuleRows(row){if(row.subRows===undefined||row.subRows.length===0)return;if(row.subRows[0].rule===undefined){return;}
8653row.subRows.forEach(pruneEmptyRuleRows);row.subRows=row.subRows.filter(function(subRow){return subRow.subRows.length>0;});}
8654Polymer({is:'tr-ui-a-memory-dump-vm-regions-details-pane',behaviors:[tr.ui.analysis.StackedPane],created(){this.vmRegions_=undefined;this.aggregationMode_=undefined;},ready(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},set vmRegions(vmRegions){this.vmRegions_=vmRegions;this.scheduleRebuild_();},get vmRegions(){return this.vmRegions_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},onRebuild_(){if(this.vmRegions_===undefined||this.vmRegions_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();return;}
8655this.$.info_text.style.display='none';this.$.table.style.display='block';const rows=this.createRows_(this.vmRegions_);const columns=this.createColumns_(rows);this.$.table.tableRows=rows;this.$.table.tableColumns=columns;this.$.table.rebuild();tr.ui.analysis.expandTableRowsRecursively(this.$.table);},createRows_(timeToVmRegionTree){const is64BitAddress=timeToVmRegionTree.some(function(vmRegionTree){if(vmRegionTree===undefined)return false;return vmRegionTree.someRegion(function(region){if(region.startAddress===undefined)return false;return region.startAddress>=4294967296;});});return[this.createClassificationNodeRow(timeToVmRegionTree,is64BitAddress)];},createClassificationNodeRow(timeToNode,is64BitAddress){const definedNode=timeToNode.find(x=>x);const childNodeIdToTimeToNode=Object.values(tr.b.invertArrayOfDicts(timeToNode,function(node){const children=node.children;if(children===undefined)return undefined;const childMap={};children.forEach(function(childNode){if(!childNode.hasRegions)return;childMap[childNode.title]=childNode;});return childMap;}));const childNodeSubRows=childNodeIdToTimeToNode.map(function(timeToChildNode){return this.createClassificationNodeRow(timeToChildNode,is64BitAddress);},this);const regionIdToTimeToRegion=Object.values(tr.b.invertArrayOfDicts(timeToNode,function(node){const regions=node.regions;if(regions===undefined)return undefined;const results={};for(const region of regions){results[region.uniqueIdWithinProcess]=region;}
8656return results;}));const regionSubRows=regionIdToTimeToRegion.map(function(timeToRegion){return this.createRegionRow_(timeToRegion,is64BitAddress);},this);const subRows=childNodeSubRows.concat(regionSubRows);return{title:definedNode.title,contexts:timeToNode,variableCells:this.createVariableCells_(timeToNode),subRows};},createRegionRow_(timeToRegion,is64BitAddress){const definedRegion=timeToRegion.find(x=>x);return{title:definedRegion.mappedFile,contexts:timeToRegion,constantCells:this.createConstantCells_(definedRegion,is64BitAddress),variableCells:this.createVariableCells_(timeToRegion)};},createConstantCells_(definedRegion,is64BitAddress){return tr.ui.analysis.createCells([definedRegion],function(region){const startAddress=region.startAddress;if(startAddress===undefined)return undefined;return{'Start address':hexString(startAddress,is64BitAddress)};});},createVariableCells_(timeToRegion){return tr.ui.analysis.createCells(timeToRegion,function(region){const fields={};const sizeInBytes=region.sizeInBytes;if(sizeInBytes!==undefined){fields['Virtual size']=new Scalar(sizeInBytes_smallerIsBetter,sizeInBytes);}
8657const protectionFlags=region.protectionFlagsToString;if(protectionFlags!==undefined){fields['Protection flags']=protectionFlags;}
8658for(const[byteStatName,columnName]of
8659Object.entries(BYTE_STAT_COLUMN_MAP)){const byteStat=region.byteStats[byteStatName];if(byteStat===undefined)continue;fields[columnName]=new Scalar(sizeInBytes_smallerIsBetter,byteStat);}
8660return fields;});},createColumns_(rows){const titleColumn=new tr.ui.analysis.TitleColumn('Mapped file');titleColumn.width='200px';const constantColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'constantCells',aggregationMode:undefined,rules:CONSTANT_COLUMN_RULES});const variableColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'variableCells',aggregationMode:this.aggregationMode_,rules:VARIABLE_COLUMN_RULES});const fieldColumns=constantColumns.concat(variableColumns);tr.ui.analysis.MemoryColumn.spaceEqually(fieldColumns);const columns=[titleColumn].concat(fieldColumns);return columns;}});return{};});'use strict';Polymer({is:'tr-ui-b-color-legend',ready(){const blackSquareCharCode=9632;this.$.square.innerText=String.fromCharCode(blackSquareCharCode);this.label_=undefined;this.compoundEventSelectionState_=tr.model.CompoundEventSelectionState.NOT_SELECTED;},set compoundEventSelectionState(compoundEventSelectionState){this.compoundEventSelectionState_=compoundEventSelectionState;},get label(){return this.label_;},set label(label){if(label===undefined){this.setLabelAndColorId(undefined,undefined);return;}
8661const colorId=tr.b.ColorScheme.getColorIdForGeneralPurposeString(label);this.setLabelAndColorId(label,colorId);},setLabelAndColorId(label,colorId){this.label_=label;Polymer.dom(this.$.label).textContent='';Polymer.dom(this.$.label).appendChild(tr.ui.b.asHTMLOrTextNode(label));if(colorId===undefined){this.$.square.style.color='initial';}else{this.$.square.style.color=tr.b.ColorScheme.colorsAsStrings[colorId];}}});'use strict';Polymer({is:'tr-ui-b-view-specific-brushing-state',get viewId(){return this.getAttribute('view-id');},set viewId(viewId){Polymer.dom(this).setAttribute('view-id',viewId);},get(){const viewId=this.viewId;if(!viewId){throw new Error('Element must have a view-id attribute!');}
8662const brushingStateController=tr.c.BrushingStateController.getControllerForElement(this);if(!brushingStateController)return undefined;return brushingStateController.getViewSpecificBrushingState(viewId);},set(state){const viewId=this.viewId;if(!viewId){throw new Error('Element must have a view-id attribute!');}
8663const brushingStateController=tr.c.BrushingStateController.getControllerForElement(this);if(!brushingStateController)return;brushingStateController.changeViewSpecificBrushingState(viewId,state);}});'use strict';tr.exportTo('tr.ui.analysis',function(){const MemoryColumnColorScheme=tr.b.MemoryColumnColorScheme;const Scalar=tr.b.Scalar;const sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;const PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX='_bytes';const DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;const SOME_TIMESTAMPS_INFO_QUANTIFIER=tr.ui.analysis.MemoryColumn.SOME_TIMESTAMPS_INFO_QUANTIFIER;const RIGHTWARDS_ARROW_WITH_HOOK=String.fromCharCode(0x21AA);const RIGHTWARDS_ARROW_FROM_BAR=String.fromCharCode(0x21A6);const GREATER_THAN_OR_EQUAL_TO=String.fromCharCode(0x2265);const UNMARRIED_PARTNERSHIP_SYMBOL=String.fromCharCode(0x26AF);const TRIGRAM_FOR_HEAVEN=String.fromCharCode(0x2630);function lazyMap(list,fn,opt_this){opt_this=opt_this||this;let result=undefined;list.forEach(function(item,index){const value=fn.call(opt_this,item,index);if(value===undefined)return;if(result===undefined){result=new Array(list.length);}
8664result[index]=value;});return result;}
8665function ProcessNameColumn(){tr.ui.analysis.TitleColumn.call(this,'Process');}
8666ProcessNameColumn.prototype={__proto__:tr.ui.analysis.TitleColumn.prototype,formatTitle(row){if(row.contexts===undefined){return row.title;}
8667const titleEl=document.createElement('tr-ui-b-color-legend');titleEl.label=row.title;return titleEl;}};function UsedMemoryColumn(name,cellPath,aggregationMode){tr.ui.analysis.NumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
8668UsedMemoryColumn.COLOR=MemoryColumnColorScheme.getColor('used_memory_column').toString();UsedMemoryColumn.OLDER_COLOR=MemoryColumnColorScheme.getColor('older_used_memory_column').toString();UsedMemoryColumn.prototype={__proto__:tr.ui.analysis.NumericMemoryColumn.prototype,get title(){return tr.ui.b.createSpan({textContent:this.name,color:UsedMemoryColumn.COLOR});},getFormattingContext(unit){return{unitPrefix:tr.b.UnitPrefixScale.BINARY.MEBI};},color(numerics,processMemoryDumps){return UsedMemoryColumn.COLOR;},getChildPaneBuilder(processMemoryDumps){if(processMemoryDumps===undefined)return undefined;const vmRegions=lazyMap(processMemoryDumps,function(pmd){if(pmd===undefined)return undefined;return pmd.mostRecentVmRegions;});if(vmRegions===undefined)return undefined;return function(){const pane=document.createElement('tr-ui-a-memory-dump-vm-regions-details-pane');pane.vmRegions=vmRegions;pane.aggregationMode=this.aggregationMode;return pane;}.bind(this);}};function PeakMemoryColumn(name,cellPath,aggregationMode){UsedMemoryColumn.call(this,name,cellPath,aggregationMode);}
8669PeakMemoryColumn.prototype={__proto__:UsedMemoryColumn.prototype,addInfos(numerics,processMemoryDumps,infos){if(processMemoryDumps===undefined)return;let resettableValueCount=0;let nonResettableValueCount=0;for(let i=0;i<numerics.length;i++){if(numerics[i]===undefined)continue;if(processMemoryDumps[i].arePeakResidentBytesResettable){resettableValueCount++;}else{nonResettableValueCount++;}}
8670if(resettableValueCount>0&&nonResettableValueCount>0){infos.push(tr.ui.analysis.createWarningInfo('Both resettable and '+'non-resettable peak RSS values were provided by the process'));}else if(resettableValueCount>0){infos.push({icon:RIGHTWARDS_ARROW_WITH_HOOK,message:'Peak RSS since previous memory dump.'});}else{infos.push({icon:RIGHTWARDS_ARROW_FROM_BAR,message:'Peak RSS since process startup. Finer grained '+'peaks require a Linux kernel version '+
8671GREATER_THAN_OR_EQUAL_TO+' 4.0.'});}}};function ByteStatColumn(name,cellPath,aggregationMode){UsedMemoryColumn.call(this,name,cellPath,aggregationMode);}
8672ByteStatColumn.prototype={__proto__:UsedMemoryColumn.prototype,color(numerics,processMemoryDumps){if(processMemoryDumps===undefined){return UsedMemoryColumn.COLOR;}
8673const allOlderValues=processMemoryDumps.every(function(processMemoryDump){if(processMemoryDump===undefined)return true;return!processMemoryDump.hasOwnVmRegions;});if(allOlderValues){return UsedMemoryColumn.OLDER_COLOR;}
8674return UsedMemoryColumn.COLOR;},addInfos(numerics,processMemoryDumps,infos){if(processMemoryDumps===undefined)return;let olderValueCount=0;for(let i=0;i<numerics.length;i++){const processMemoryDump=processMemoryDumps[i];if(processMemoryDump!==undefined&&!processMemoryDump.hasOwnVmRegions){olderValueCount++;}}
8675if(olderValueCount===0){return;}
8676const infoQuantifier=olderValueCount<numerics.length?' '+SOME_TIMESTAMPS_INFO_QUANTIFIER:'';infos.push({message:'Older value'+infoQuantifier+' (only heavy (purple) memory dumps contain memory maps).',icon:UNMARRIED_PARTNERSHIP_SYMBOL});}};UsedMemoryColumn.RULES=[{condition:'Total resident',importance:10,columnConstructor:UsedMemoryColumn},{condition:'Peak total resident',importance:9,columnConstructor:PeakMemoryColumn},{condition:'PSS',importance:8,columnConstructor:ByteStatColumn},{condition:'Private dirty',importance:7,columnConstructor:ByteStatColumn},{condition:'Swapped',importance:6,columnConstructor:ByteStatColumn},{importance:0,columnConstructor:UsedMemoryColumn}];UsedMemoryColumn.TOTALS_MAP={'residentBytes':'Total resident','peakResidentBytes':'Peak total resident','privateFootprintBytes':'Private footprint',};UsedMemoryColumn.PLATFORM_SPECIFIC_TOTALS_MAP={'vm':'Total virtual','swp':'Swapped','pc':'Private clean','pd':'Private dirty','sc':'Shared clean','sd':'Shared dirty','gpu_egl':'GPU EGL','gpu_egl_pss':'GPU EGL PSS','gpu_gl':'GPU GL','gpu_gl_pss':'GPU GL PSS','gpu_etc':'GPU Other','gpu_etc_pss':'GPU Other PSS',};UsedMemoryColumn.BYTE_STAT_MAP={'proportionalResident':'PSS','privateDirtyResident':'Private dirty','swapped':'Swapped'};function AllocatorColumn(name,cellPath,aggregationMode){tr.ui.analysis.NumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
8677AllocatorColumn.prototype={__proto__:tr.ui.analysis.NumericMemoryColumn.prototype,get title(){const titleEl=document.createElement('tr-ui-b-color-legend');titleEl.label=this.name;return titleEl;},getFormattingContext(unit){return{unitPrefix:tr.b.UnitPrefixScale.BINARY.MEBI};},addInfos(numerics,processMemoryDumps,infos){if(processMemoryDumps===undefined)return;let heapDumpCount=0;let missingSizeCount=0;for(let i=0;i<processMemoryDumps.length;i++){const processMemoryDump=processMemoryDumps[i];if(processMemoryDump===undefined)continue;const heapDumps=processMemoryDump.heapDumps;if(heapDumps!==undefined&&heapDumps[this.name]!==undefined){heapDumpCount++;}
8678const allocatorDump=processMemoryDump.getMemoryAllocatorDumpByFullName(this.name);if(allocatorDump!==undefined&&allocatorDump.numerics[DISPLAYED_SIZE_NUMERIC_NAME]===undefined){missingSizeCount++;}}
8679if(heapDumpCount>0){const infoQuantifier=heapDumpCount<numerics.length?' '+SOME_TIMESTAMPS_INFO_QUANTIFIER:'';infos.push({message:'Heap dump provided'+infoQuantifier+'.',icon:TRIGRAM_FOR_HEAVEN});}
8680if(missingSizeCount>0){const infoQuantifier=missingSizeCount<numerics.length?' '+SOME_TIMESTAMPS_INFO_QUANTIFIER:'';infos.push(tr.ui.analysis.createWarningInfo('Size was not provided'+infoQuantifier+'.'));}},getChildPaneBuilder(processMemoryDumps){if(processMemoryDumps===undefined)return undefined;const memoryAllocatorDumps=lazyMap(processMemoryDumps,function(pmd){if(pmd===undefined)return undefined;return pmd.getMemoryAllocatorDumpByFullName(this.name);},this);if(memoryAllocatorDumps===undefined)return undefined;const heapDumps=lazyMap(processMemoryDumps,function(pmd){if(pmd===undefined||pmd.heapDumps===undefined)return undefined;return pmd.heapDumps[this.name];},this);return function(){const pane=document.createElement('tr-ui-a-memory-dump-allocator-details-pane');pane.memoryAllocatorDumps=memoryAllocatorDumps;pane.heapDumps=heapDumps;pane.aggregationMode=this.aggregationMode;return pane;}.bind(this);}};function TracingColumn(name,cellPath,aggregationMode){AllocatorColumn.call(this,name,cellPath,aggregationMode);}
8681TracingColumn.COLOR=MemoryColumnColorScheme.getColor('tracing_memory_column').toString();TracingColumn.prototype={__proto__:AllocatorColumn.prototype,get title(){return tr.ui.b.createSpan({textContent:this.name,color:TracingColumn.COLOR});},color(numerics,processMemoryDumps){return TracingColumn.COLOR;}};AllocatorColumn.RULES=[{condition:'tracing',importance:0,columnConstructor:TracingColumn},{importance:1,columnConstructor:AllocatorColumn}];Polymer({is:'tr-ui-a-memory-dump-overview-pane',behaviors:[tr.ui.analysis.StackedPane],created(){this.processMemoryDumps_=undefined;this.aggregationMode_=undefined;},ready(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.CELL;this.$.table.addEventListener('selection-changed',function(tableEvent){tableEvent.stopPropagation();this.changeChildPane_();}.bind(this));},set processMemoryDumps(processMemoryDumps){this.processMemoryDumps_=processMemoryDumps;this.scheduleRebuild_();},get processMemoryDumps(){return this.processMemoryDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},get selectedMemoryCell(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){return undefined;}
8682const selectedTableRow=this.$.table.selectedTableRow;if(!selectedTableRow)return undefined;const selectedColumnIndex=this.$.table.selectedColumnIndex;if(selectedColumnIndex===undefined)return undefined;const selectedColumn=this.$.table.tableColumns[selectedColumnIndex];const selectedMemoryCell=selectedColumn.cell(selectedTableRow);return selectedMemoryCell;},changeChildPane_(){this.storeSelection_();this.childPaneBuilder=this.determineChildPaneBuilderFromSelection_();},determineChildPaneBuilderFromSelection_(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){return undefined;}
8683const selectedTableRow=this.$.table.selectedTableRow;if(!selectedTableRow)return undefined;const selectedColumnIndex=this.$.table.selectedColumnIndex;if(selectedColumnIndex===undefined)return undefined;const selectedColumn=this.$.table.tableColumns[selectedColumnIndex];return selectedColumn.getChildPaneBuilder(selectedTableRow.contexts);},onRebuild_(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();return;}
8684this.$.info_text.style.display='none';this.$.table.style.display='block';const rows=this.createRows_();const columns=this.createColumns_(rows);const footerRows=this.createFooterRows_(rows,columns);this.$.table.tableRows=rows;this.$.table.footerRows=footerRows;this.$.table.tableColumns=columns;this.$.table.rebuild();this.restoreSelection_();},createRows_(){const timeToPidToProcessMemoryDump=this.processMemoryDumps_;const pidToTimeToProcessMemoryDump=tr.b.invertArrayOfDicts(timeToPidToProcessMemoryDump);const rows=[];for(const[pid,timeToDump]of
8685Object.entries(pidToTimeToProcessMemoryDump)){const process=timeToDump.find(x=>x).process;const usedMemoryCells=tr.ui.analysis.createCells(timeToDump,function(dump){const sizes={};const totals=dump.totals;if(totals!==undefined){for(const[totalName,cellName]of
8686Object.entries(UsedMemoryColumn.TOTALS_MAP)){const total=totals[totalName];if(total===undefined)continue;sizes[cellName]=new Scalar(sizeInBytes_smallerIsBetter,total);}
8687const platformSpecific=totals.platformSpecific;if(platformSpecific!==undefined){for(const[name,size]of Object.entries(platformSpecific)){let newName=name;if(UsedMemoryColumn.PLATFORM_SPECIFIC_TOTALS_MAP[name]===undefined){if(name.endsWith(PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX)){newName=name.substring(0,name.length-
8688PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX.length);}
8689newName=newName.replace('_',' ').trim();newName=newName.charAt(0).toUpperCase()+newName.slice(1);}else{newName=UsedMemoryColumn.PLATFORM_SPECIFIC_TOTALS_MAP[name];}
8690sizes[newName]=new Scalar(sizeInBytes_smallerIsBetter,size);}}}
8691const vmRegions=dump.mostRecentVmRegions;if(vmRegions!==undefined){for(const[byteStatName,cellName]of
8692Object.entries(UsedMemoryColumn.BYTE_STAT_MAP)){const byteStat=vmRegions.byteStats[byteStatName];if(byteStat===undefined)continue;sizes[cellName]=new Scalar(sizeInBytes_smallerIsBetter,byteStat);}}
8693return sizes;});const allocatorCells=tr.ui.analysis.createCells(timeToDump,function(dump){const memoryAllocatorDumps=dump.memoryAllocatorDumps;if(memoryAllocatorDumps===undefined)return undefined;const sizes={};memoryAllocatorDumps.forEach(function(allocatorDump){let rootDisplayedSizeNumeric=allocatorDump.numerics[DISPLAYED_SIZE_NUMERIC_NAME];if(rootDisplayedSizeNumeric===undefined){rootDisplayedSizeNumeric=new Scalar(sizeInBytes_smallerIsBetter,0);}
8694sizes[allocatorDump.fullName]=rootDisplayedSizeNumeric;});return sizes;});rows.push({title:process.userFriendlyName,contexts:timeToDump,usedMemoryCells,allocatorCells});}
8695return rows;},createFooterRows_(rows,columns){if(rows.length<=1)return[];const totalRow={title:'Total'};tr.ui.analysis.aggregateTableRowCells(totalRow,rows,columns);return[totalRow];},createColumns_(rows){const titleColumn=new ProcessNameColumn();titleColumn.width='200px';const usedMemorySizeColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'usedMemoryCells',aggregationMode:this.aggregationMode_,rules:UsedMemoryColumn.RULES});const allocatorSizeColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,{cellKey:'allocatorCells',aggregationMode:this.aggregationMode_,rules:AllocatorColumn.RULES});const sizeColumns=usedMemorySizeColumns.concat(allocatorSizeColumns);tr.ui.analysis.MemoryColumn.spaceEqually(sizeColumns);const columns=[titleColumn].concat(sizeColumns);return columns;},storeSelection_(){let selectedRowTitle;const selectedRow=this.$.table.selectedTableRow;if(selectedRow!==undefined){selectedRowTitle=selectedRow.title;}
8696let selectedColumnName;const selectedColumnIndex=this.$.table.selectedColumnIndex;if(selectedColumnIndex!==undefined){const selectedColumn=this.$.table.tableColumns[selectedColumnIndex];selectedColumnName=selectedColumn.name;}
8697this.$.state.set({rowTitle:selectedRowTitle,columnName:selectedColumnName});},restoreSelection_(){const settings=this.$.state.get();if(settings===undefined||settings.rowTitle===undefined||settings.columnName===undefined){return;}
8698const selectedColumnIndex=this.$.table.tableColumns.findIndex(col=>col.name===settings.columnName);if(selectedColumnIndex===-1)return;const selectedRowTitle=settings.rowTitle;const selectedRow=this.$.table.tableRows.find(row=>row.title===selectedRowTitle);if(selectedRow===undefined)return;this.$.table.selectedTableRow=selectedRow;this.$.table.selectedColumnIndex=selectedColumnIndex;}});return{ProcessNameColumn,UsedMemoryColumn,PeakMemoryColumn,ByteStatColumn,AllocatorColumn,TracingColumn,};});'use strict';tr.exportTo('tr.ui.analysis',function(){Polymer({is:'tr-ui-a-memory-dump-header-pane',behaviors:[tr.ui.analysis.StackedPane],created(){this.containerMemoryDumps_=undefined;},ready(){Polymer.dom(this.$.aggregation_mode_container).appendChild(tr.ui.b.createSelector(this,'aggregationMode','memoryDumpHeaderPane.aggregationMode',tr.ui.analysis.MemoryColumn.AggregationMode.DIFF,[{label:'Diff',value:tr.ui.analysis.MemoryColumn.AggregationMode.DIFF},{label:'Max',value:tr.ui.analysis.MemoryColumn.AggregationMode.MAX}]));},set containerMemoryDumps(containerMemoryDumps){this.containerMemoryDumps_=containerMemoryDumps;this.scheduleRebuild_();},get containerMemoryDumps(){return this.containerMemoryDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},onRebuild_(){this.updateLabel_();this.updateAggregationModeSelector_();this.changeChildPane_();},updateLabel_(){Polymer.dom(this.$.label).textContent='';if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=0){Polymer.dom(this.$.label).textContent='No memory dumps selected';return;}
8699const containerDumpCount=this.containerMemoryDumps_.length;const isMultiSelection=containerDumpCount>1;Polymer.dom(this.$.label).appendChild(document.createTextNode('Selected '+containerDumpCount+' memory dump'+
8700(isMultiSelection?'s':'')+' in '+this.containerMemoryDumps_[0].containerName+' at '));Polymer.dom(this.$.label).appendChild(document.createTextNode(tr.b.Unit.byName.timeStampInMs.format(this.containerMemoryDumps_[0].start)));if(isMultiSelection){const ELLIPSIS=String.fromCharCode(8230);Polymer.dom(this.$.label).appendChild(document.createTextNode(ELLIPSIS));Polymer.dom(this.$.label).appendChild(document.createTextNode(tr.b.Unit.byName.timeStampInMs.format(this.containerMemoryDumps_[containerDumpCount-1].start)));}},updateAggregationModeSelector_(){let displayStyle;if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=1){displayStyle='none';}else{displayStyle='initial';}
8701this.$.aggregation_mode_container.style.display=displayStyle;},changeChildPane_(){this.childPaneBuilder=function(){if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=0){return undefined;}
8702const overviewPane=document.createElement('tr-ui-a-memory-dump-overview-pane');overviewPane.processMemoryDumps=this.containerMemoryDumps_.map(function(containerDump){return containerDump.processMemoryDumps;});overviewPane.aggregationMode=this.aggregationMode;return overviewPane;}.bind(this);}});return{};});'use strict';Polymer({is:'tr-ui-a-stacked-pane-view',setPaneBuilder(paneBuilder,opt_parentPane){const paneContainer=this.$.pane_container;if(opt_parentPane){if(!(opt_parentPane instanceof HTMLElement)){throw new Error('Parent pane must be an HTML element');}
8703if(opt_parentPane.parentElement!==paneContainer){throw new Error('Parent pane must be a child of the pane container');}}
8704while(Polymer.dom(paneContainer).lastElementChild!==null&&Polymer.dom(paneContainer).lastElementChild!==opt_parentPane){const removedPane=Polymer.dom(this.$.pane_container).lastElementChild;const listener=this.listeners_.get(removedPane);if(listener===undefined){throw new Error('No listener associated with pane');}
8705this.listeners_.delete(removedPane);removedPane.removeEventListener('request-child-pane-change',listener);Polymer.dom(paneContainer).removeChild(removedPane);}
8706if(opt_parentPane&&opt_parentPane.parentElement!==paneContainer){throw new Error('Parent pane was removed from the pane container');}
8707if(!paneBuilder)return;const pane=paneBuilder();if(!pane)return;if(!(pane instanceof HTMLElement)){throw new Error('Pane must be an HTML element');}
8708const listener=function(event){this.setPaneBuilder(pane.childPaneBuilder,pane);}.bind(this);if(!this.listeners_){this.listeners_=new WeakMap();}
8709this.listeners_.set(pane,listener);pane.addEventListener('request-child-pane-change',listener);Polymer.dom(paneContainer).appendChild(pane);pane.appended();},rebuild(){let currentPane=Polymer.dom(this.$.pane_container).firstElementChild;while(currentPane){currentPane.rebuild();currentPane=currentPane.nextElementSibling;}},get panesForTesting(){const panes=[];let currentChild=Polymer.dom(this.$.pane_container).firstElementChild;while(currentChild){panes.push(currentChild);currentChild=currentChild.nextElementSibling;}
8710return panes;}});'use strict';tr.exportTo('tr.ui.analysis',function(){Polymer({is:'tr-ui-a-container-memory-dump-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],set selection(selection){if(selection===undefined){this.currentSelection_=undefined;this.dumpsByContainerName_=undefined;this.updateContents_();return;}
8711selection.forEach(function(event){if(!(event instanceof tr.model.ContainerMemoryDump)){throw new Error('Memory dump sub-view only supports container memory dumps');}});this.currentSelection_=selection;this.dumpsByContainerName_=tr.b.groupIntoMap(this.currentSelection_.toArray(),dump=>dump.containerName);for(const dumps of this.dumpsByContainerName_.values()){dumps.sort((a,b)=>a.start-b.start);}
8712this.updateContents_();},get selection(){return this.currentSelection_;},get requiresTallView(){return true;},updateContents_(){Polymer.dom(this.$.content).textContent='';if(this.dumpsByContainerName_===undefined)return;const containerNames=Array.from(this.dumpsByContainerName_.keys());if(containerNames.length===0)return;if(containerNames.length>1){this.buildViewForMultipleContainerNames_();}else{this.buildViewForSingleContainerName_();}},buildViewForSingleContainerName_(){const containerMemoryDumps=tr.b.getFirstElement(this.dumpsByContainerName_.values());const dumpView=this.ownerDocument.createElement('tr-ui-a-stacked-pane-view');Polymer.dom(this.$.content).appendChild(dumpView);dumpView.setPaneBuilder(function(){const headerPane=document.createElement('tr-ui-a-memory-dump-header-pane');headerPane.containerMemoryDumps=containerMemoryDumps;return headerPane;});},buildViewForMultipleContainerNames_(){const ownerDocument=this.ownerDocument;const rows=[];for(const[containerName,dumps]of this.dumpsByContainerName_){rows.push({containerName,subRows:dumps,isExpanded:true,});}
8713rows.sort(function(a,b){return a.containerName.localeCompare(b.containerName);});const columns=[{title:'Dump',value(row){if(row.subRows===undefined){return this.singleDumpValue_(row);}
8714return this.groupedDumpValue_(row);},singleDumpValue_(row){const linkEl=ownerDocument.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet([row]));Polymer.dom(linkEl).appendChild(tr.v.ui.createScalarSpan(row.start,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument}));return linkEl;},groupedDumpValue_(row){const linkEl=ownerDocument.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet(row.subRows));Polymer.dom(linkEl).appendChild(tr.ui.b.createSpan({ownerDocument,textContent:row.subRows.length+' memory dump'+
8715(row.subRows.length===1?'':'s')+' in '}));Polymer.dom(linkEl).appendChild(tr.ui.b.createSpan({ownerDocument,textContent:row.containerName,bold:true}));return linkEl;}}];const table=this.ownerDocument.createElement('tr-ui-b-table');table.tableColumns=columns;table.tableRows=rows;table.showHeader=false;table.rebuild();Polymer.dom(this.$.content).appendChild(table);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.GlobalMemoryDump,{multi:false,title:'Global Memory Dump',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.GlobalMemoryDump,{multi:true,title:'Global Memory Dumps',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.ProcessMemoryDump,{multi:false,title:'Process Memory Dump',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.ProcessMemoryDump,{multi:true,title:'Process Memory Dumps',});return{};});'use strict';(function(){const COUNTER_SAMPLE_TABLE_COLUMNS=[{title:'Counter',width:'150px',value(row){return row.counter;}},{title:'Series',width:'150px',value(row){return row.series;}},{title:'Time',width:'150px',value(row){return row.start;}},{title:'Value',width:'100%',value(row){return row.value;}}];Polymer({is:'tr-ui-a-counter-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.currentSelection_=undefined;this.$.table.tableColumns=COUNTER_SAMPLE_TABLE_COLUMNS;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},updateContents_(){this.$.table.tableRows=this.selection?this.getRows_(this.selection.toArray()):[];this.$.table.rebuild();},getRows_(samples){const samplesByCounter=tr.b.groupIntoMap(samples,sample=>sample.series.counter.guid);const rows=[];for(const counterSamples of samplesByCounter.values()){const samplesBySeries=tr.b.groupIntoMap(counterSamples,sample=>sample.series.guid);for(const seriesSamples of samplesBySeries.values()){const seriesRows=this.getRowsForSamples_(seriesSamples);seriesRows[0].counter=seriesSamples[0].series.counter.name;seriesRows[0].series=seriesSamples[0].series.name;if(seriesRows.length>1){seriesRows[0].subRows=seriesRows.slice(1);seriesRows[0].isExpanded=true;}
8716rows.push(seriesRows[0]);}}
8717return rows;},getRowsForSamples_(samples){return samples.map(function(sample){return{start:sample.timestamp,value:sample.value};});}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-counter-sample-sub-view',tr.model.CounterSample,{multi:false,title:'Counter Sample',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-counter-sample-sub-view',tr.model.CounterSample,{multi:true,title:'Counter Samples',});})();'use strict';tr.exportTo('tr.ui.analysis',function(){function MultiEventSummary(title,events){this.title=title;this.duration_=undefined;this.selfTime_=undefined;this.events_=events;this.cpuTimesComputed_=false;this.cpuSelfTime_=undefined;this.cpuDuration_=undefined;this.maxDuration_=undefined;this.maxCpuDuration_=undefined;this.maxSelfTime_=undefined;this.maxCpuSelfTime_=undefined;this.untotallableArgs_=[];this.totalledArgs_=undefined;}
8718MultiEventSummary.prototype={set title(title){if(title==='Totals'){this.totalsRow=true;}
8719this.title_=title;},get title(){return this.title_;},get duration(){if(this.duration_===undefined){this.duration_=tr.b.math.Statistics.sum(this.events_,function(event){return event.duration;});}
8720return this.duration_;},get cpuSelfTime(){this.computeCpuTimesIfNeeded_();return this.cpuSelfTime_;},get cpuDuration(){this.computeCpuTimesIfNeeded_();return this.cpuDuration_;},computeCpuTimesIfNeeded_(){if(this.cpuTimesComputed_)return;this.cpuTimesComputed_=true;let cpuSelfTime=0;let cpuDuration=0;let hasCpuData=false;for(const event of this.events_){if(event.cpuDuration!==undefined){cpuDuration+=event.cpuDuration;hasCpuData=true;}
8721if(event.cpuSelfTime!==undefined){cpuSelfTime+=event.cpuSelfTime;hasCpuData=true;}}
8722if(hasCpuData){this.cpuDuration_=cpuDuration;this.cpuSelfTime_=cpuSelfTime;}},get selfTime(){if(this.selfTime_===undefined){this.selfTime_=0;for(const event of this.events_){if(event.selfTime!==undefined){this.selfTime_+=event.selfTime;}}}
8723return this.selfTime_;},get events(){return this.events_;},get numEvents(){return this.events_.length;},get numAlerts(){if(this.numAlerts_===undefined){this.numAlerts_=tr.b.math.Statistics.sum(this.events_,event=>event.associatedAlerts.length);}
8724return this.numAlerts_;},get untotallableArgs(){this.updateArgsIfNeeded_();return this.untotallableArgs_;},get totalledArgs(){this.updateArgsIfNeeded_();return this.totalledArgs_;},get maxDuration(){if(this.maxDuration_===undefined){this.maxDuration_=tr.b.math.Statistics.max(this.events_,function(event){return event.duration;});}
8725return this.maxDuration_;},get maxCpuDuration(){if(this.maxCpuDuration_===undefined){this.maxCpuDuration_=tr.b.math.Statistics.max(this.events_,function(event){return event.cpuDuration;});}
8726return this.maxCpuDuration_;},get maxSelfTime(){if(this.maxSelfTime_===undefined){this.maxSelfTime_=tr.b.math.Statistics.max(this.events_,function(event){return event.selfTime;});}
8727return this.maxSelfTime_;},get maxCpuSelfTime(){if(this.maxCpuSelfTime_===undefined){this.maxCpuSelfTime_=tr.b.math.Statistics.max(this.events_,function(event){return event.cpuSelfTime;});}
8728return this.maxCpuSelfTime_;},updateArgsIfNeeded_(){if(this.totalledArgs_!==undefined)return;const untotallableArgs={};const totalledArgs={};for(const event of this.events_){for(const argName in event.args){const argVal=event.args[argName];const type=typeof argVal;if(type!=='number'){untotallableArgs[argName]=true;delete totalledArgs[argName];continue;}
8729if(untotallableArgs[argName]){continue;}
8730if(totalledArgs[argName]===undefined){totalledArgs[argName]=0;}
8731totalledArgs[argName]+=argVal;}}
8732this.untotallableArgs_=Object.keys(untotallableArgs);this.totalledArgs_=totalledArgs;}};return{MultiEventSummary,};});'use strict';Polymer({is:'tr-ui-a-multi-event-summary-table',ready(){this.showTotals_=false;this.eventsHaveDuration_=true;this.eventsHaveSubRows_=true;this.eventsByTitle_=undefined;},updateTableColumns_(rows,maxValues){let hasCpuData=false;let hasAlerts=false;rows.forEach(function(row){if(row.cpuDuration!==undefined){hasCpuData=true;}
8733if(row.cpuSelfTime!==undefined){hasCpuData=true;}
8734if(row.numAlerts){hasAlerts=true;}});const ownerDocument=this.ownerDocument;const columns=[];columns.push({title:'Name',value(row){if(row.title==='Totals')return'Totals';const linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(row.events);},row.title);return linkEl;},width:'350px',cmp(rowA,rowB){return rowA.title.localeCompare(rowB.title);}});if(this.eventsHaveDuration_){columns.push({title:'Wall Duration',value(row){return tr.v.ui.createScalarSpan(row.duration,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.math.Range.fromExplicitRange(0,maxValues.duration),ownerDocument,});},width:'<upated further down>',cmp(rowA,rowB){return rowA.duration-rowB.duration;}});}
8735if(this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Duration',value(row){return tr.v.ui.createScalarSpan(row.cpuDuration,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.math.Range.fromExplicitRange(0,maxValues.cpuDuration),ownerDocument,});},width:'<upated further down>',cmp(rowA,rowB){return rowA.cpuDuration-rowB.cpuDuration;}});}
8736if(this.eventsHaveSubRows_&&this.eventsHaveDuration_){columns.push({title:'Self time',value(row){return tr.v.ui.createScalarSpan(row.selfTime,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.math.Range.fromExplicitRange(0,maxValues.selfTime),ownerDocument,});},width:'<upated further down>',cmp(rowA,rowB){return rowA.selfTime-rowB.selfTime;}});}
8737if(this.eventsHaveSubRows_&&this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Self Time',value(row){return tr.v.ui.createScalarSpan(row.cpuSelfTime,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.math.Range.fromExplicitRange(0,maxValues.cpuSelfTime),ownerDocument,});},width:'<upated further down>',cmp(rowA,rowB){return rowA.cpuSelfTime-rowB.cpuSelfTime;}});}
8738if(this.eventsHaveDuration_){columns.push({title:'Average '+(hasCpuData?'CPU':'Wall')+' Duration',value(row){const totalDuration=hasCpuData?row.cpuDuration:row.duration;return tr.v.ui.createScalarSpan(totalDuration/row.numEvents,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.math.Range.fromExplicitRange(0,maxValues.duration),ownerDocument,});},width:'<upated further down>',cmp(rowA,rowB){if(hasCpuData){return rowA.cpuDuration/rowA.numEvents-
8739rowB.cpuDuration/rowB.numEvents;}
8740return rowA.duration/rowA.numEvents-
8741rowB.duration/rowB.numEvents;}});}
8742columns.push({title:'Occurrences',value(row){return row.numEvents;},width:'<upated further down>',cmp(rowA,rowB){return rowA.numEvents-rowB.numEvents;}});let alertsColumnIndex;if(hasAlerts){columns.push({title:'Num Alerts',value(row){return row.numAlerts;},width:'<upated further down>',cmp(rowA,rowB){return rowA.numAlerts-rowB.numAlerts;}});alertsColumnIndex=columns.length-1;}
8743let colWidthPercentage;if(columns.length===1){colWidthPercentage='100%';}else{colWidthPercentage=(100/(columns.length-1)).toFixed(3)+'%';}
8744for(let i=1;i<columns.length;i++){columns[i].width=colWidthPercentage;}
8745this.$.table.tableColumns=columns;if(hasAlerts){this.$.table.sortColumnIndex=alertsColumnIndex;this.$.table.sortDescending=true;}},configure(config){if(config.eventsByTitle===undefined){throw new Error('Required: eventsByTitle');}
8746if(config.showTotals!==undefined){this.showTotals_=config.showTotals;}else{this.showTotals_=true;}
8747if(config.eventsHaveDuration!==undefined){this.eventsHaveDuration_=config.eventsHaveDuration;}else{this.eventsHaveDuration_=true;}
8748if(config.eventsHaveSubRows!==undefined){this.eventsHaveSubRows_=config.eventsHaveSubRows;}else{this.eventsHaveSubRows_=true;}
8749this.eventsByTitle_=config.eventsByTitle;this.updateContents_();},get showTotals(){return this.showTotals_;},set showTotals(showTotals){this.showTotals_=showTotals;this.updateContents_();},get eventsHaveDuration(){return this.eventsHaveDuration_;},set eventsHaveDuration(eventsHaveDuration){this.eventsHaveDuration_=eventsHaveDuration;this.updateContents_();},get eventsHaveSubRows(){return this.eventsHaveSubRows_;},set eventsHaveSubRows(eventsHaveSubRows){this.eventsHaveSubRows_=eventsHaveSubRows;this.updateContents_();},get eventsByTitle(){return this.eventsByTitle_;},set eventsByTitle(eventsByTitle){this.eventsByTitle_=eventsByTitle;this.updateContents_();},get selectionBounds(){return this.selectionBounds_;},set selectionBounds(selectionBounds){this.selectionBounds_=selectionBounds;this.updateContents_();},updateContents_(){let eventsByTitle;if(this.eventsByTitle_!==undefined){eventsByTitle=this.eventsByTitle_;}else{eventsByTitle=[];}
8750const allEvents=new tr.model.EventSet();const rows=[];for(const[title,eventsOfSingleTitle]of Object.entries(eventsByTitle)){for(const event of eventsOfSingleTitle)allEvents.push(event);const row=new tr.ui.analysis.MultiEventSummary(title,eventsOfSingleTitle);rows.push(row);}
8751this.updateTableColumns_(rows);this.$.table.tableRows=rows;const maxValues={duration:undefined,selfTime:undefined,cpuSelfTime:undefined,cpuDuration:undefined};if(this.eventsHaveDuration){for(const column in maxValues){maxValues[column]=tr.b.math.Statistics.max(rows,function(event){return event[column];});}}
8752const footerRows=[];if(this.showTotals_){const multiEventSummary=new tr.ui.analysis.MultiEventSummary('Totals',allEvents);footerRows.push(multiEventSummary);}
8753this.updateTableColumns_(rows,maxValues);this.$.table.tableRows=rows;this.$.table.footerRows=footerRows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-selection-summary-table',created(){this.selection_=new tr.b.math.Range();},ready(){this.$.table.showHeader=false;this.$.table.tableColumns=[{title:'Name',value(row){return row.title;},width:'350px'},{title:'Value',width:'100%',value(row){return row.value;}}];},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;this.updateContents_();},updateContents_(){const selection=this.selection_;const rows=[];let hasRange;if(this.selection_&&(!selection.bounds.isEmpty)){hasRange=true;}else{hasRange=false;}
8754rows.push({title:'Selection start',value:hasRange?tr.v.ui.createScalarSpan(selection.bounds.min,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}):'<empty>'});rows.push({title:'Selection extent',value:hasRange?tr.v.ui.createScalarSpan(selection.bounds.range,{unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument}):'<empty>'});this.$.table.tableRows=rows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-b-radio-picker',created(){this.needsInit_=true;this.settingsKey_=undefined;this.isReady_=false;this.radioButtons_=undefined;this.selectedKey_=undefined;},ready(){this.isReady_=true;this.maybeInit_();this.maybeRenderRadioButtons_();},get vertical(){return this.getAttribute('vertical');},set vertical(vertical){if(vertical){this.setAttribute('vertical',true);}else{this.removeAttribute('vertical');}},get settingsKey(){return this.settingsKey_;},set settingsKey(settingsKey){if(!this.needsInit_){throw new Error('Already initialized.');}
8755this.settingsKey_=settingsKey;this.maybeInit_();},maybeInit_(){if(!this.needsInit_)return;if(this.settingsKey_===undefined)return;this.needsInit_=false;this.select(tr.b.Settings.get(this.settingsKey_));},set items(items){this.radioButtons_={};items.forEach(function(e){if(e.key in this.radioButtons_){throw new Error(e.key+' already exists');}
8756const radioButton=document.createElement('div');const input=document.createElement('input');const label=document.createElement('label');input.type='radio';input.id=e.label;input.addEventListener('click',function(){this.select(e.key);}.bind(this));Polymer.dom(label).innerHTML=e.label;label.htmlFor=e.label;label.style.display='inline';Polymer.dom(radioButton).appendChild(input);Polymer.dom(radioButton).appendChild(label);this.radioButtons_[e.key]=input;}.bind(this));this.maybeInit_();this.maybeRenderRadioButtons_();},maybeRenderRadioButtons_(){if(!this.isReady_)return;if(this.radioButtons_===undefined)return;for(const key in this.radioButtons_){Polymer.dom(this.$.container).appendChild(this.radioButtons_[key].parentElement);}
8757if(this.selectedKey_!==undefined){this.select(this.selectedKey_);}},select(key){if(key===undefined||key===this.selectedKey_){return;}
8758if(this.radioButtons_===undefined){this.selectedKey_=key;return;}
8759if(!(key in this.radioButtons_)){throw new Error(key+' does not exists');}
8760if(this.selectedKey_!==undefined){this.radioButtons_[this.selectedKey_].checked=false;}
8761this.selectedKey_=key;tr.b.Settings.set(this.settingsKey_,this.selectedKey_);if(this.selectedKey_!==undefined){this.radioButtons_[this.selectedKey_].checked=true;}
8762this.dispatchEvent(new tr.b.Event('change',false));},get selectedKey(){return this.selectedKey_;},});'use strict';tr.exportTo('tr.ui.b',function(){const MIN_GUIDELINE_HEIGHT_PX=3;const CHECKBOX_WIDTH_PX=18;const NameColumnChart=tr.ui.b.define('name-column-chart',tr.ui.b.ColumnChart);NameColumnChart.prototype={__proto__:tr.ui.b.ColumnChart.prototype,get xAxisHeight(){return 5+(this.textHeightPx_*this.data_.length);},updateMargins_(){super.updateMargins_();let xAxisTickOverhangPx=0;for(let i=0;i<this.data_.length;++i){const datum=this.data_[i];xAxisTickOverhangPx=Math.max(xAxisTickOverhangPx,this.xScale_(i)+tr.ui.b.getSVGTextSize(this,datum.x).width-
8763this.graphWidth);}
8764this.margin.right=Math.max(this.margin.right,xAxisTickOverhangPx);},getXForDatum_(datum,index){return index;},get xAxisTickOffset(){return 0.5;},updateXAxis_(xAxis){xAxis.selectAll('*').remove();if(this.hideXAxis)return;const nameTexts=xAxis.selectAll('text').data(this.data_);nameTexts.enter().append('text').attr('transform',(d,index)=>'translate(0, '+
8765this.textHeightPx_*(this.data_.length-index)+')').attr('x',(d,index)=>this.xScale_(index)).attr('y',d=>this.graphHeight).text(d=>d.x);nameTexts.exit().remove();const guideLines=xAxis.selectAll('line.guide').data(this.data_);guideLines.enter().append('line').attr('x1',(d,index)=>this.xScale_(index+this.xAxisTickOffset)).attr('x2',(d,index)=>this.xScale_(index+this.xAxisTickOffset)).attr('y1',()=>this.graphHeight).attr('y2',(d,index)=>this.graphHeight+Math.max(MIN_GUIDELINE_HEIGHT_PX,(this.textHeightPx_*(this.data_.length-index-1))));}};return{NameColumnChart,};});'use strict';tr.exportTo('tr.ui.b',function(){const LineChart=tr.ui.b.LineChart;const NameLineChart=tr.ui.b.define('name-line-chart',LineChart);NameLineChart.prototype={__proto__:LineChart.prototype,getXForDatum_(datum,index){return index;},get xAxisHeight(){return 5+(this.textHeightPx_*this.data_.length);},get xAxisTickOffset(){return 0;},updateMargins_(){tr.ui.b.NameColumnChart.prototype.updateMargins_.call(this);},updateXAxis_(xAxis){xAxis.selectAll('*').remove();if(this.hideXAxis)return;tr.ui.b.NameColumnChart.prototype.updateXAxis_.call(this,xAxis);const baseline=xAxis.selectAll('path').data([this]);baseline.enter().append('line').attr('stroke','black').attr('x1',this.xScale_(0)).attr('x2',this.xScale_(this.data_.length-1)).attr('y1',this.graphHeight).attr('y2',this.graphHeight);baseline.exit().remove();}};return{NameLineChart,};});'use strict';tr.exportTo('tr.ui.b',function(){const BoxChart=tr.ui.b.define('box-chart',tr.ui.b.NameLineChart);BoxChart.prototype={__proto__:tr.ui.b.NameLineChart.prototype,get hideLegend(){return true;},updateDataRange_(){if(this.overrideDataRange_!==undefined){return;}
8766this.autoDataRange_.reset();for(const datum of this.data_){this.autoDataRange_.addValue(datum.percentile_0);this.autoDataRange_.addValue(datum.percentile_100);}},updateScales_(){super.updateScales_();this.xScale_.domain([0,this.data_.length]);},get xAxisTickOffset(){return 0.5;},updateDataRange_(){if(this.overrideDataRange_!==undefined)return;this.autoDataRange_.reset();for(const datum of this.data_){this.autoDataRange_.addValue(datum.percentile_0);this.autoDataRange_.addValue(datum.percentile_100);}},updateXAxis_(xAxis){xAxis.selectAll('*').remove();if(this.hideXAxis)return;tr.ui.b.NameColumnChart.prototype.updateXAxis_.call(this,xAxis);const baseline=xAxis.selectAll('path').data([this]);baseline.enter().append('line').attr('stroke','black').attr('x1',this.xScale_(0)).attr('x2',this.xScale_(this.data_.length)).attr('y1',this.graphHeight).attr('y2',this.graphHeight);baseline.exit().remove();},updateDataContents_(dataSel){dataSel.selectAll('*').remove();const boxesSel=dataSel.selectAll('path');for(let index=0;index<this.data_.length;++index){const datum=this.data_[index];const color=datum.color||'black';let sel=boxesSel.data([datum]);sel.enter().append('rect').attr('fill',color).attr('x',this.xScale_(index+0.2)).attr('width',this.xScale_(index+0.8)-this.xScale_(index+0.2)).attr('y',this.yScale_(datum.percentile_75)).attr('height',this.yScale_(datum.percentile_25)-
8767this.yScale_(datum.percentile_75));sel.exit().remove();sel=boxesSel.data([datum]);sel.enter().append('line').attr('stroke',color).attr('x1',this.xScale_(index)).attr('x2',this.xScale_(index+1)).attr('y1',this.yScale_(datum.percentile_50)).attr('y2',this.yScale_(datum.percentile_50));sel.exit().remove();sel=boxesSel.data([datum]);sel.enter().append('line').attr('stroke',color).attr('x1',this.xScale_(index+0.4)).attr('x2',this.xScale_(index+0.6)).attr('y1',this.yScale_(datum.percentile_0)).attr('y2',this.yScale_(datum.percentile_0));sel.exit().remove();sel=boxesSel.data([datum]);sel.enter().append('line').attr('stroke',color).attr('x1',this.xScale_(index+0.4)).attr('x2',this.xScale_(index+0.6)).attr('y1',this.yScale_(datum.percentile_100)).attr('y2',this.yScale_(datum.percentile_100));sel.exit().remove();sel=boxesSel.data([datum]);sel.enter().append('line').attr('stroke',color).attr('x1',this.xScale_(index+0.5)).attr('x2',this.xScale_(index+0.5)).attr('y1',this.yScale_(datum.percentile_100)).attr('y2',this.yScale_(datum.percentile_0));sel.exit().remove();}}};return{BoxChart,};});'use strict';tr.exportTo('tr.ui.b',function(){const BarChart=tr.ui.b.define('bar-chart',tr.ui.b.ColumnChart);BarChart.prototype={__proto__:tr.ui.b.ColumnChart.prototype,decorate(){super.decorate();this.verticalScale_=undefined;this.horizontalScale_=undefined;},updateScales_(){super.updateScales_();this.yScale_.range([this.graphWidth,0]);this.xScale_.range([0,this.graphHeight]);this.verticalScale_=this.isYLogScale_?d3.scale.log(10):d3.scale.linear();this.verticalScale_.domain(this.xScale_.domain());this.verticalScale_.range([this.graphHeight,0]);this.horizontalScale_=d3.scale.linear();this.horizontalScale_.domain(this.yScale_.domain());this.horizontalScale_.range([0,this.graphWidth]);},get defaultGraphHeight(){return Math.max(20,10*this.data_.length);},get defaultGraphWidth(){return 100;},get barHeight(){return this.graphHeight/this.data.length;},drawBrush_(brushRectsSel){brushRectsSel.attr('x',0).attr('width',this.graphWidth).attr('y',d=>this.verticalScale_(d.max)).attr('height',d=>this.verticalScale_(d.min)-this.verticalScale_(d.max)).attr('fill','rgb(213, 236, 229)');},getDataPointAtChartPoint_(chartPoint){const flippedPoint={x:this.graphHeight-chartPoint.y,y:this.graphWidth-chartPoint.x};return super.getDataPointAtChartPoint_(flippedPoint);},drawXAxis_(xAxis){xAxis.attr('transform','translate(0,'+this.graphHeight+')').call(d3.svg.axis().scale(this.horizontalScale_).orient('bottom'));},get yAxisWidth(){return this.computeScaleTickWidth_(this.verticalScale_);},drawYAxis_(yAxis){const axisModifier=d3.svg.axis().scale(this.verticalScale_).orient('left');yAxis.call(axisModifier);},drawHoverValueBox_(rect){const rectHoverEvent=new tr.b.Event('rect-mouseenter');rectHoverEvent.rect=rect;this.dispatchEvent(rectHoverEvent);if(!this.enableHoverBox)return;const seriesKeys=[...this.seriesByKey_.keys()];const chartAreaSel=d3.select(this.chartAreaElement);chartAreaSel.selectAll('.hover').remove();let keyWidthPx=0;let keyHeightPx=0;let xWidthPx=0;let xHeightPx=0;if(seriesKeys.length>1){keyWidthPx=tr.ui.b.getSVGTextSize(this.chartAreaElement,rect.key).width;keyHeightPx=this.textHeightPx_;}
8768if(this.data.length>1){xWidthPx=tr.ui.b.getSVGTextSize(this.chartAreaElement,''+rect.datum.x).width;xHeightPx=this.textHeightPx_;}
8769const valueWidthPx=tr.ui.b.getSVGTextSize(this.chartAreaElement,rect.value).width;const valueHeightPx=this.textHeightPx_;const hoverWidthPx=Math.min(Math.max(keyWidthPx,xWidthPx,valueWidthPx)+5,Math.max(50,rect.widthPx));const hoverTopPx=rect.topPx+(rect.heightPx/2);const hoverLeftPx=rect.leftPx+rect.widthPx-hoverWidthPx;chartAreaSel.append('rect').attr('class','hover').attr('fill','white').attr('x',hoverLeftPx).attr('y',hoverTopPx).attr('width',hoverWidthPx).attr('height',keyHeightPx+xHeightPx+valueHeightPx);if(seriesKeys.length>1){chartAreaSel.append('text').attr('class','hover').attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',hoverTopPx+keyHeightPx-3).text(rect.key);}
8770if(this.data.length>1){chartAreaSel.append('text').attr('class','hover').attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',hoverTopPx+keyHeightPx+valueHeightPx-3).text(''+rect.datum.x);}
8771chartAreaSel.append('text').attr('class','hover').attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',hoverTopPx+xHeightPx+keyHeightPx+valueHeightPx-3).text(rect.value);},flipRect_(rect){return{datum:rect.datum,index:rect.index,key:rect.key,value:rect.value,color:rect.color,topPx:this.graphHeight-rect.leftPx-rect.widthPx,leftPx:this.graphWidth-rect.topPx-rect.heightPx,widthPx:rect.heightPx,heightPx:rect.widthPx,underflow:rect.underflow,overflow:rect.overflow,};},drawRect_(rect,sel){super.drawRect_(this.flipRect_(rect),sel);},drawUnderflow_(rect,rectsSel){let sel=rectsSel.data([rect]);sel.enter().append('text').text('*').attr('fill',rect.color).attr('x',0).attr('y',this.graphHeight-rect.leftPx+
87723+(rect.widthPx/2));sel.exit().remove();sel=rectsSel.data([rect]);sel.enter().append('rect').attr('fill','rgba(0, 0, 0, 0)').attr('x',0).attr('y',this.graphHeight-rect.leftPx-rect.widthPx).attr('width',10).attr('height',rect.widthPx).on('mouseenter',()=>this.drawHoverValueBox_(this.flipRect_(rect))).on('mouseleave',()=>this.clearHoverValueBox_(rect));sel.exit().remove();},drawOverflow_(rect,sel){sel=sel.data([rect]);sel.enter().append('text').text('*').attr('fill',rect.color).attr('x',this.graphWidth).attr('y',this.graphHeight-rect.leftPx+
87733+(rect.widthPx/2));sel.exit().remove();}};return{BarChart,};});'use strict';tr.exportTo('tr.ui.b',function(){const NameBarChart=tr.ui.b.define('name-bar-chart',tr.ui.b.BarChart);const Y_AXIS_PADDING=2;NameBarChart.prototype={__proto__:tr.ui.b.BarChart.prototype,getDataPointAtChartPoint_(chartPoint){return{x:tr.ui.b.BarChart.prototype.getDataPointAtChartPoint_.call(this,chartPoint).x,y:parseInt(Math.floor((this.graphHeight-chartPoint.y)/this.barHeight))};},getXForDatum_(datum,index){return index;},get yAxisWidth(){if(this.data.length===0)return 0;return Y_AXIS_PADDING+tr.b.math.Statistics.max(this.data_,d=>tr.ui.b.getSVGTextSize(this,d.x).width);},get defaultGraphHeight(){return(3+this.textHeightPx_)*this.data.length;},updateYAxis_(yAxis){if(tr.ui.b.getSVGTextSize(this,'test').width===0){tr.b.requestAnimationFrame(()=>this.updateYAxis_(yAxis));return;}
8774yAxis.selectAll('*').remove();const nameTexts=yAxis.selectAll('text').data(this.data_);nameTexts.enter().append('text').attr('x',d=>-(tr.ui.b.getSVGTextSize(this,d.x).width+Y_AXIS_PADDING)).attr('y',(d,index)=>this.verticalScale_(index)).text(d=>d.x);nameTexts.exit().remove();let previousTop=undefined;for(const text of nameTexts[0]){const bbox=text.getBBox();if((previousTop===undefined)||(previousTop>(bbox.y+bbox.height))){previousTop=bbox.y;}else{text.style.opacity=0;}}}};return{NameBarChart,};});'use strict';tr.exportTo('tr.v.ui',function(){const DIAGNOSTIC_SPAN_BEHAVIOR={created(){this.diagnostic_=undefined;this.name_=undefined;this.histogram_=undefined;},attached(){if(this.diagnostic_)this.updateContents_();},get diagnostic(){return this.diagnostic_;},build(diagnostic,name,histogram){this.diagnostic_=diagnostic;this.name_=name;this.histogram_=histogram;if(this.isAttached)this.updateContents_();},updateContents_(){throw new Error('dom-modules must override updateContents_()');}};return{DIAGNOSTIC_SPAN_BEHAVIOR,};});'use strict';tr.exportTo('tr.v.ui',function(){const DEFAULT_COLOR_SCHEME=new tr.b.SinebowColorGenerator();function getHistogramName(histogram,diagnosticName,key){if(histogram===undefined)return undefined;const nameMap=histogram.diagnostics.get(diagnosticName);if(nameMap===undefined)return undefined;return nameMap.get(key);}
8775class BreakdownTableSummaryRow{constructor(displayElement,histogramNames){this.displayElement_=displayElement;this.histogramNames_=histogramNames;this.keySpan_=undefined;}
8776get numberValue(){return undefined;}
8777get keySpan(){if(this.keySpan_===undefined){if(this.histogramNames_.length){this.keySpan_=document.createElement('tr-ui-a-analysis-link');this.keySpan_.setSelectionAndContent(this.histogramNames_,'Select All');}else{this.keySpan_='Sum';}}
8778return this.keySpan_;}
8779get name(){return'Sum';}
8780get displayElement(){return this.displayElement_;}
8781get stringPercent(){return'100%';}}
8782class BreakdownTableRow{constructor(name,value,histogramName,unit,color){this.name_=name;this.value_=value;this.histogramName_=histogramName;this.unit_=unit;if(typeof value!=='number'){throw new Error('unsupported value '+value);}
8783this.tableSum_=undefined;this.keySpan_=undefined;this.color_=color;const hsl=this.color.toHSL();hsl.l*=0.85;this.highlightedColor_=tr.b.Color.fromHSL(hsl);if(this.unit_){this.displayElement_=tr.v.ui.createScalarSpan(this.numberValue,{unit:this.unit_,});}else{this.displayElement_=tr.ui.b.createSpan({textContent:this.stringValue,});}}
8784get name(){return this.name_;}
8785get color(){return this.color_;}
8786get highlightedColor(){return this.highlightedColor_;}
8787get keySpan(){if(this.keySpan_===undefined){if(this.histogramName_){this.keySpan_=document.createElement('tr-ui-a-analysis-link');this.keySpan_.setSelectionAndContent([this.histogramName_],this.name);this.keySpan_.color=this.color;this.keySpan_.title=this.histogramName_;}else{this.keySpan_=document.createElement('span');this.keySpan_.innerText=this.name;this.keySpan_.style.color=this.color;}}
8788return this.keySpan_;}
8789get numberValue(){if(!isNaN(this.value_)&&(this.value_!==Infinity)&&(this.value_!==-Infinity)&&(this.value_>0))return this.value_;return undefined;}
8790get stringValue(){if((this.unit_!==undefined)&&!isNaN(this.value_)&&(this.value_!==Infinity)&&(this.value_!==-Infinity)){return this.unit_.format(this.value_);}
8791return this.value_.toString();}
8792set tableSum(s){this.tableSum_=s;}
8793get stringPercent(){if(this.tableSum_===undefined)return'';const num=this.numberValue;if(num===undefined)return'';return Math.floor(num*100.0/this.tableSum_)+'%';}
8794get displayElement(){return this.displayElement_;}
8795compare(other){if(this.numberValue===undefined){if(other.numberValue===undefined){return this.name.localeCompare(other.name);}
8796return 1;}
8797if(other.numberValue===undefined){return-1;}
8798if(this.numberValue===other.numberValue){return this.name.localeCompare(other.name);}
8799return other.numberValue-this.numberValue;}}
8800Polymer({is:'tr-v-ui-breakdown-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],created(){this.chart_=new tr.ui.b.ColumnChart();this.chart_.graphHeight=130;this.chart_.isStacked=true;this.chart_.hideXAxis=true;this.chart_.hideLegend=true;this.chart_.enableHoverBox=false;this.chart_.addEventListener('rect-mouseenter',event=>this.onRectMouseEnter_(event));this.chart_.addEventListener('rect-mouseleave',event=>this.onRectMouseLeave_(event));},onRectMouseEnter_(event){for(const row of this.$.table.tableRows){if(row.name===event.rect.key){row.displayElement.style.background=event.rect.color;row.keySpan.scrollIntoViewIfNeeded();}else{row.displayElement.style.background='';}}},onRectMouseLeave_(event){for(const row of this.$.table.tableRows){row.displayElement.style.background='';}},ready(){Polymer.dom(this.$.container).appendChild(this.chart_);this.$.table.zebra=true;this.$.table.showHeader=false;this.$.table.tableColumns=[{value:row=>row.keySpan,},{value:row=>row.displayElement,align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,},{value:row=>row.stringPercent,align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,},];},updateContents_(){this.$.container.style.display='none';this.$.table.style.display='none';this.$.empty.style.display='block';if(!this.diagnostic_){this.chart_.data=[];return;}
8801if(this.histogram_)this.chart_.unit=this.histogram_.unit;let colorScheme=undefined;if(this.diagnostic.colorScheme===tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER){colorScheme=(name)=>{let cat=name.split(' ');cat=cat[cat.length-1];return tr.e.chrome.ChromeUserFriendlyCategoryDriver.getColor(cat);};}else if(this.diagnostic.colorScheme!==undefined){colorScheme=(name)=>tr.b.FixedColorSchemeRegistry.lookUp(this.diagnostic.colorScheme).getColor(name);}else{colorScheme=(name)=>DEFAULT_COLOR_SCHEME.colorForKey(name);}
8802const tableRows=[];let tableSum=0;const histogramNames=[];for(const[key,value]of this.diagnostic){let histogramName;let row;if(value instanceof tr.v.Histogram){histogramName=value.name;row=new BreakdownTableRow(key,value.sum,histogramName,value.unit,colorScheme(key));}else{histogramName=getHistogramName(this.histogram_,this.name_,key);row=new BreakdownTableRow(key,value,histogramName,this.chart_.unit,colorScheme(key));}
8803tableRows.push(row);if(row.numberValue!==undefined)tableSum+=row.numberValue;if(histogramName){histogramNames.push(histogramName);}}
8804tableRows.sort((x,y)=>x.compare(y));if(tableSum>0){let summaryDisplayElement=tableSum;if(this.chart_.unit!==undefined){summaryDisplayElement=this.chart_.unit.format(tableSum);}
8805summaryDisplayElement=tr.ui.b.createSpan({textContent:summaryDisplayElement,});tableRows.unshift(new BreakdownTableSummaryRow(summaryDisplayElement,histogramNames));}
8806const chartData={x:0};for(const row of tableRows){if(row.numberValue===undefined)continue;row.tableSum=tableSum;chartData[row.name]=row.numberValue;const dataSeries=this.chart_.getDataSeries(row.name);dataSeries.color=row.color;dataSeries.highlightedColor=row.highlightedColor;}
8807if(tableRows.length>0){this.$.table.style.display='block';this.$.empty.style.display='none';this.$.table.tableRows=tableRows;this.$.table.rebuild();}
8808if(Object.keys(chartData).length>1){this.$.container.style.display='block';this.$.empty.style.display='none';this.chart_.data=[chartData];}}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-collected-related-event-set-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],updateContents_(){Polymer.dom(this).textContent='';for(const[canonicalUrl,events]of this.diagnostic){const link=document.createElement('a');if(events.length===1){const event=tr.b.getOnlyElement(events);link.textContent=event.title+' '+
8809tr.b.Unit.byName.timeDurationInMs.format(event.duration);}else{link.textContent=events.length+' events';}
8810link.href=canonicalUrl;Polymer.dom(this).appendChild(link);Polymer.dom(this).appendChild(document.createElement('br'));}}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-date-range-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],updateContents_(){if(this.diagnostic===undefined){Polymer.dom(this).textContent='';return;}
8811Polymer.dom(this).textContent=this.diagnostic.toString();}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-generic-set-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],updateContents_(){this.$.generic.style.display='none';this.$.links.textContent='';if(this.diagnostic===undefined)return;const values=Array.from(this.diagnostic);let areAllStrings=true;let areAllNumbers=true;for(const value of values){if(typeof value!=='number'){areAllNumbers=false;if(typeof value!=='string'){areAllStrings=false;break;}}}
8812if(!areAllStrings){this.$.generic.style.display='';this.$.generic.object=values;return;}
8813if(areAllNumbers){values.sort((x,y)=>x-y);}else{values.sort();}
8814for(const value of values){const link={textContent:''+value};if(tr.b.isUrl(value))link.href=value;if(this.name_===tr.v.d.RESERVED_NAMES.TRACE_URLS){link.textContent=value.substr(1+value.lastIndexOf('/'));}
8815const linkEl=tr.ui.b.createLink(link);if(link.href){linkEl.target='_blank';linkEl.addEventListener('click',e=>e.stopPropagation());}
8816this.$.links.appendChild(linkEl);}}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-related-event-set-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],updateContents_(){Polymer.dom(this).textContent='';const events=new tr.model.EventSet([...this.diagnostic]);const link=document.createElement('tr-ui-a-analysis-link');let label=events.length+' events';if(events.length===1){const event=tr.b.getOnlyElement(events);label=event.title+' ';label+=tr.b.Unit.byName.timeDurationInMs.format(event.duration);}
8817link.setSelectionAndContent(events,label);Polymer.dom(this).appendChild(link);}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-related-histogram-map-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],ready(){this.$.table.showHeader=false;this.$.table.tableColumns=[{value:row=>row[0]},{value:row=>row[1]},];},updateContents_(){Polymer.dom(this).textContent='';const rows=[];const histogramNames=new Set();for(const[name,hist]of this.diagnostic){histogramNames.add(hist.name);}
8818if(histogramNames.size>1){const link=document.createElement('tr-ui-a-analysis-link');link.setSelectionAndContent(Array.from(histogramNames),'Select All');rows.push([link,'']);}
8819for(const[name,hist]of this.diagnostic){const link=document.createElement('tr-ui-a-analysis-link');link.setSelectionAndContent([hist.name],name);const scalarSpan=tr.v.ui.createScalarSpan(hist);rows.push([link,scalarSpan]);}
8820this.$.table.tableRows=rows;this.$.table.rebuild();}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-scalar-diagnostic-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],updateContents_(){this.$.scalar.setValueAndUnit(this.diagnostic.value.value,this.diagnostic.value.unit);}});return{};});'use strict';Polymer({is:'tr-v-ui-tag-map-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],updateContents_(){if(this.diagnostic===undefined){this.$.generic.object=undefined;return;}
8821const obj={};for(const[tag,stories]of this.diagnostic.tagsToStoryNames){obj[tag]=Array.from(stories);}
8822this.$.generic.object=obj;},onShow_(){this.$.show.style.display='none';this.$.hide.style.display='block';this.$.generic.style.display='block';},onHide_(){this.$.show.style.display='block';this.$.hide.style.display='none';this.$.generic.style.display='none';},});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-unmergeable-diagnostic-set-span',behaviors:[tr.v.ui.DIAGNOSTIC_SPAN_BEHAVIOR],updateContents_(){Polymer.dom(this).textContent='';for(const diagnostic of this.diagnostic){const div=document.createElement('div');div.appendChild(tr.v.ui.createDiagnosticSpan(diagnostic,this.name_,this.histogram_));Polymer.dom(this).appendChild(div);}}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){function findElementNameForDiagnostic(diagnostic){let typeInfo=undefined;let curProto=diagnostic.constructor.prototype;while(curProto){typeInfo=tr.v.d.Diagnostic.findTypeInfo(curProto.constructor);if(typeInfo&&typeInfo.metadata.elementName)break;typeInfo=undefined;curProto=curProto.__proto__;}
8823if(typeInfo===undefined){throw new Error(diagnostic.constructor.name+' or a base class must have a registered elementName');}
8824const tagName=typeInfo.metadata.elementName;if(tr.ui.b.isUnknownElementName(tagName)){throw new Error('Element not registered: '+tagName);}
8825return tagName;}
8826function createDiagnosticSpan(diagnostic,name,histogram){const tagName=findElementNameForDiagnostic(diagnostic);const span=document.createElement(tagName);if(span.build===undefined)throw new Error(tagName);span.build(diagnostic,name,histogram);return span;}
8827return{createDiagnosticSpan,};});'use strict';tr.exportTo('tr.v.ui',function(){function makeColumn(title,histogram){return{title,value(map){const diagnostic=map.get(title);if(!diagnostic)return'';return tr.v.ui.createDiagnosticSpan(diagnostic,title,histogram);}};}
8828Polymer({is:'tr-v-ui-diagnostic-map-table',created(){this.diagnosticMaps_=undefined;this.histogram_=undefined;this.isMetadata_=false;},set histogram(h){this.histogram_=h;},set isMetadata(m){this.isMetadata_=m;this.$.table.showHeader=!this.isMetadata_;},set diagnosticMaps(maps){this.diagnosticMaps_=maps;this.updateContents_();},get diagnosticMaps(){return this.diagnosticMaps_;},updateContents_(){if(this.isMetadata_&&this.diagnosticMaps_.length!==1){throw new Error('Metadata diagnostic-map-tables require exactly 1 DiagnosticMap');}
8829if(this.diagnosticMaps_===undefined||this.diagnosticMaps_.length===0){this.$.table.tableRows=[];this.$.table.tableColumns=[];return;}
8830let names=new Set();for(const map of this.diagnosticMaps_){for(const[name,diagnostic]of map){if(diagnostic instanceof tr.v.d.UnmergeableDiagnosticSet)continue;if(diagnostic instanceof tr.v.d.CollectedRelatedEventSet)continue;if(diagnostic instanceof tr.v.d.GroupingPath)continue;names.add(name);}}
8831names=Array.from(names).sort();const histogram=this.histogram_;if(this.isMetadata_){const diagnosticMap=this.diagnosticMaps_[0];this.$.table.tableColumns=[{value(name){return name.name;}},{value(name){const diagnostic=diagnosticMap.get(name.name);if(!diagnostic)return'';return tr.v.ui.createDiagnosticSpan(diagnostic,name.name,histogram);}},];this.$.table.tableRows=names.map(name=>{return{name};});}else{this.$.table.tableColumns=names.map(name=>makeColumn(name,histogram));this.$.table.tableRows=this.diagnosticMaps_;}
8832this.$.table.rebuild();}});return{};});'use strict';tr.exportTo('tr.b',function(){class Serializable{constructor(){Object.defineProperty(this,'properties_',{configurable:false,enumerable:false,value:new Map(),});}
8833define(name,initialValue){if(this[name]!==undefined){throw new Error(`"${name}" is already defined.`);}
8834if(name[name.length-1]==='_'){throw new Error(`"${name}" cannot end with an underscore.`);}
8835this.properties_.set(name,initialValue);Object.defineProperty(this,name,{configurable:false,enumerable:true,get:()=>this.properties_.get(name),set:value=>this.setProperty_(name,value),});}
8836setProperty_(name,value){this.properties_.set(name,value);}
8837clone(){return Serializable.fromDict(this.asDict());}
8838asDict(){function visit(obj){if(obj instanceof Serializable)return obj.asDict();if(obj instanceof Set)return Array.from(obj);if(obj instanceof Array)return obj.map(visit);if(!(obj instanceof Map))return obj;const result={};for(const[name,value]of obj){result[name]=visit(value);}
8839return result;}
8840const dict={type:this.constructor.name};for(const[name,value]of this.properties_){dict[name.replace(/_$/,'')]=visit(value);}
8841return dict;}
8842static fromDict(dict){function visit(d){if(d instanceof Array)return d.map(visit);if(!(d instanceof Object))return d;if(typeof d.type==='string')return Serializable.fromDict(d);const result=new Map();for(const[name,value]of Object.entries(d)){result.set(name,visit(value));}
8843return result;}
8844const typeInfo=Serializable.findTypeInfoWithName(dict.type);const result=new typeInfo.constructor();for(const[name,value]of Object.entries(dict)){result[name]=visit(value);}
8845return result;}}
8846const options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};options.mandatoryBaseClass=Serializable;tr.b.decorateExtensionRegistry(Serializable,options);return{Serializable,};});'use strict';tr.exportTo('tr.b',function(){class ViewState extends tr.b.Serializable{constructor(){super();tr.b.EventTarget.decorate(this);}
8847setProperty_(name,value){this.update(new Map([[name,value]]));}
8848async updateFromViewState(other){await this.update(other.properties_);}
8849async update(delta){if(!(delta instanceof Map))delta=new Map(Object.entries(delta));const actualDelta={};for(const[name,current]of delta){const previous=this[name];if(previous===current)continue;actualDelta[name]={previous,current};tr.b.Serializable.prototype.setProperty_.call(this,name,current);}
8850if(Object.keys(actualDelta).length===0)return;await tr.b.dispatchSimpleEventAsync(this,this.updateEventName_,{delta:actualDelta});}
8851get updateEventName_(){return this.constructor.name+'.update';}
8852addUpdateListener(listener){this.addEventListener(this.updateEventName_,listener);}
8853removeUpdateListener(listener){this.removeEventListener(this.updateEventName_,listener);}}
8854return{ViewState,};});'use strict';tr.exportTo('tr.v.ui',function(){class HistogramSetViewState extends tr.b.ViewState{constructor(){super();this.define('searchQuery','');this.define('referenceDisplayLabel','');this.define('displayStatisticName','');this.define('showAll',false);this.define('groupings',[]);this.define('sortColumnIndex',0);this.define('sortDescending',false);this.define('constrainNameColumn',true);this.define('tableRowStates',new Map());this.define('alpha',0.01);}}
8855tr.b.ViewState.register(HistogramSetViewState);class HistogramSetTableRowState extends tr.b.ViewState{constructor(){super();this.define('isExpanded',false);this.define('isOverviewed',false);this.define('cells',new Map());this.define('subRows',new Map());this.define('diagnosticsTab','');}
8856asCompactDict(){const result={};if(this.isExpanded)result.e='1';if(this.isOverviewed)result.o='1';if(this.diagnosticsTab)result.d=this.diagnosticsTab;const cells={};for(const[name,cell]of this.cells){const cellDict=cell.asCompactDict();if(cellDict===undefined)continue;cells[name]=cellDict;}
8857if(Object.keys(cells).length>0)result.c=cells;const subRows={};for(const[name,row]of this.subRows){const rowDict=row.asCompactDict();if(rowDict===undefined)continue;subRows[name]=rowDict;}
8858if(Object.keys(subRows).length>0)result.r=subRows;if(Object.keys(result).length===0)return undefined;return result;}
8859async updateFromCompactDict(dict){await this.update({isExpanded:dict.e==='1',isOverviewed:dict.o==='1',diagnosticsTab:dict.d||'',});for(const[name,cellDict]of Object.entries(dict.c||{})){const cell=this.cells.get(name);if(cell===undefined)continue;await cell.updateFromCompactDict(cellDict);}
8860for(const[name,subRowDict]of Object.entries(dict.r||{})){const subRow=this.subRows.get(name);if(subRow===undefined)continue;await subRow.updateFromCompactDict(subRowDict);}}*walk(){yield this;for(const row of this.subRows.values())yield*row.walk();}
8861static*walkAll(rootRows){for(const rootRow of rootRows)yield*rootRow.walk();}}
8862tr.b.ViewState.register(HistogramSetTableRowState);class HistogramSetTableCellState extends tr.b.ViewState{constructor(){super();this.define('isOpen',false);this.define('brushedBinRange',new tr.b.math.Range());this.define('mergeSampleDiagnostics',true);}
8863asCompactDict(){const result={};if(this.isOpen)result.o='1';if(!this.mergeSampleDiagnostics)result.m='0';if(!this.brushedBinRange.isEmpty){result.b=this.brushedBinRange.min+'_'+this.brushedBinRange.max;}
8864if(Object.keys(result).length===0)return undefined;return result;}
8865async updateFromCompactDict(dict){let binRange=this.brushedBinRange;if(dict.b){let[bMin,bMax]=dict.b.split('_');bMin=parseInt(bMin);bMax=parseInt(bMax);if(bMin!==binRange.min||bMax!==binRange.max){binRange=tr.b.math.Range.fromExplicitRange(bMin,bMax);}}
8866await this.update({isOpen:dict.o==='1',brushedBinRange:binRange,mergeSampleDiagnostics:dict.m!=='0',});}}
8867tr.b.ViewState.register(HistogramSetTableCellState);return{HistogramSetTableCellState,HistogramSetTableRowState,HistogramSetViewState,};});'use strict';Polymer({is:'tr-v-ui-scalar-map-table',created(){this.scalarMap_=new Map();this.significance_=new Map();},ready(){this.$.table.showHeader=false;this.$.table.tableColumns=[{value(row){return row.name;}},{value(row){const span=tr.v.ui.createScalarSpan(row.value);if(row.significance!==undefined){span.significance=row.significance;}else if(row.anyRowsHaveSignificance){span.style.marginRight='18px';}
8868span.style.whiteSpace='nowrap';return span;}}];},get scalarMap(){return this.scalarMap_;},set scalarMap(map){this.scalarMap_=map;this.updateContents_();},setSignificanceForKey(key,significance){this.significance_.set(key,significance);this.updateContents_();},updateContents_(){const rows=[];for(const[key,scalar]of this.scalarMap){rows.push({name:key,value:scalar,significance:this.significance_.get(key),anyRowsHaveSignificance:(this.significance_.size>0)});}
8869this.$.table.tableRows=rows;this.$.table.rebuild();}});'use strict';tr.exportTo('tr.v.ui',function(){const DEFAULT_BAR_HEIGHT_PX=5;const TRUNCATE_BIN_MARGIN=0.15;const IGNORE_DELTA_STATISTICS_NAMES=[`${tr.v.DELTA}min`,`%${tr.v.DELTA}min`,`${tr.v.DELTA}max`,`%${tr.v.DELTA}max`,`${tr.v.DELTA}sum`,`%${tr.v.DELTA}sum`,`${tr.v.DELTA}count`,`%${tr.v.DELTA}count`,];Polymer({is:'tr-v-ui-histogram-span',created(){this.viewStateListener_=this.onViewStateUpdate_.bind(this);this.viewState=new tr.v.ui.HistogramSetTableCellState();this.rowStateListener_=this.onRowStateUpdate_.bind(this);this.rowState=new tr.v.ui.HistogramSetTableRowState();this.rootStateListener_=this.onRootStateUpdate_.bind(this);this.rootState=new tr.v.ui.HistogramSetViewState();this.histogram_=undefined;this.referenceHistogram_=undefined;this.graphWidth_=undefined;this.graphHeight_=undefined;this.mouseDownBin_=undefined;this.prevBrushedBinRange_=new tr.b.math.Range();this.anySampleDiagnostics_=false;this.canMergeSampleDiagnostics_=true;this.mwuResult_=undefined;},get rowState(){return this.rowState_;},set rowState(rs){if(this.rowState){this.rowState.removeUpdateListener(this.rowStateListener_);}
8870this.rowState_=rs;this.rowState.addUpdateListener(this.rowStateListener_);if(this.isAttached)this.updateContents_();},get viewState(){return this.viewState_;},set viewState(vs){if(this.viewState){this.viewState.removeUpdateListener(this.viewStateListener_);}
8871this.viewState_=vs;this.viewState.addUpdateListener(this.viewStateListener_);if(this.isAttached)this.updateContents_();},get rootState(){return this.rootState_;},set rootState(vs){if(this.rootState){this.rootState.removeUpdateListener(this.rootStateListener_);}
8872this.rootState_=vs;this.rootState.addUpdateListener(this.rootStateListener_);if(this.isAttached)this.updateContents_();},build(histogram,opt_referenceHistogram){this.histogram_=histogram;this.$.metric_diagnostics.histogram=histogram;this.$.sample_diagnostics.histogram=histogram;this.referenceHistogram_=opt_referenceHistogram;if(this.histogram.canCompare(this.referenceHistogram)){this.mwuResult_=tr.b.math.Statistics.mwu(this.histogram.sampleValues,this.referenceHistogram.sampleValues,this.rootState.alpha);}
8873this.anySampleDiagnostics_=false;for(const bin of this.histogram.allBins){if(bin.diagnosticMaps.length>0){this.anySampleDiagnostics_=true;break;}}
8874if(this.isAttached)this.updateContents_();},onViewStateUpdate_(event){if(event.delta.brushedBinRange){if(this.chart_!==undefined){this.chart_.brushedRange=this.viewState.brushedBinRange;}
8875this.updateDiagnostics_();}
8876if(event.delta.mergeSampleDiagnostics&&(this.viewState.mergeSampleDiagnostics!==this.$.merge_sample_diagnostics.checked)){this.$.merge_sample_diagnostics.checked=this.canMergeSampleDiagnostics&&this.viewState.mergeSampleDiagnostics;this.updateDiagnostics_();}},updateSignificance_(){if(!this.mwuResult_)return;this.$.stats.setSignificanceForKey(`${tr.v.DELTA}avg`,this.mwuResult_.significance);},onRootStateUpdate_(event){if(event.delta.alpha&&this.mwuResult_){this.mwuResult_.compare(this.rootState.alpha);this.updateSignificance_();}},onRowStateUpdate_(event){if(event.delta.diagnosticsTab){if(this.rowState.diagnosticsTab===this.$.sample_diagnostics_container.tabLabel){this.updateDiagnostics_();}else{for(const tab of this.$.diagnostics.subViews){if(this.rowState.diagnosticsTab===tab.tabLabel){this.$.diagnostics.selectedSubView=tab;break;}}}}},ready(){this.$.metric_diagnostics.tabLabel='histogram diagnostics';this.$.sample_diagnostics_container.tabLabel='sample diagnostics';this.$.metadata_diagnostics.tabLabel='metadata';this.$.metadata_diagnostics.isMetadata=true;this.$.diagnostics.addEventListener('selected-tab-change',this.onSelectedDiagnosticsChanged_.bind(this));this.$.drag_handle.target=this.$.container;this.$.drag_handle.addEventListener('drag-handle-resize',this.onResize_.bind(this));},attached(){if(this.histogram_!==undefined)this.updateContents_();},get canMergeSampleDiagnostics(){return this.canMergeSampleDiagnostics_;},set canMergeSampleDiagnostics(merge){this.canMergeSampleDiagnostics_=merge;if(!merge)this.viewState.mergeSampleDiagnostics=false;this.$.merge_sample_diagnostics_container.style.display=(merge?'':'none');},onResize_(event){event.stopPropagation();let heightPx=parseInt(this.$.container.style.height);if(heightPx<this.defaultGraphHeight){heightPx=this.defaultGraphHeight;this.$.container.style.height=this.defaultGraphHeight+'px';}
8877this.chart_.graphHeight=heightPx-(this.chart_.margin.top+
8878this.chart_.margin.bottom);this.$.stats_container.style.maxHeight=this.chart_.getBoundingClientRect().height+'px';},get graphWidth(){return this.graphWidth_||this.defaultGraphWidth;},set graphWidth(width){this.graphWidth_=width;},get graphHeight(){return this.graphHeight_||this.defaultGraphHeight;},set graphHeight(height){this.graphHeight_=height;},get barHeight(){return this.chart_.barHeight;},set barHeight(px){this.graphHeight=this.computeChartHeight_(px);},computeChartHeight_(barHeightPx){return(this.chart_.margin.top+
8879this.chart_.margin.bottom+
8880(barHeightPx*this.histogram.allBins.length));},get defaultGraphHeight(){if(this.histogram&&this.histogram.allBins.length===1){return 150;}
8881return this.computeChartHeight_(DEFAULT_BAR_HEIGHT_PX);},get defaultGraphWidth(){if(this.histogram.allBins.length===1){return 100;}
8882return 300;},get brushedBins(){const bins=[];if(this.histogram&&!this.viewState.brushedBinRange.isEmpty){for(let i=this.viewState.brushedBinRange.min;i<this.viewState.brushedBinRange.max;++i){bins.push(this.histogram.allBins[i]);}}
8883return bins;},async updateBrushedRange_(binIndex){const brushedBinRange=new tr.b.math.Range();brushedBinRange.addValue(tr.b.math.clamp(this.mouseDownBinIndex_,0,this.histogram.allBins.length-1));brushedBinRange.addValue(tr.b.math.clamp(binIndex,0,this.histogram.allBins.length-1));brushedBinRange.max+=1;await this.viewState.update({brushedBinRange});},onMouseDown_(chartEvent){chartEvent.stopPropagation();if(!this.histogram)return;this.prevBrushedBinRange_=this.viewState.brushedBinRange;this.mouseDownBinIndex_=chartEvent.y;this.updateBrushedRange_(chartEvent.y);},onMouseMove_(chartEvent){chartEvent.stopPropagation();if(!this.histogram)return;this.updateBrushedRange_(chartEvent.y);},onMouseUp_(chartEvent){chartEvent.stopPropagation();if(!this.histogram)return;this.updateBrushedRange_(chartEvent.y);if(this.prevBrushedBinRange_.range===1&&this.viewState.brushedBinRange.range===1&&(this.prevBrushedBinRange_.min===this.viewState.brushedBinRange.min)){tr.b.Timing.instant('histogram-span','clearBrushedBins');this.viewState.update({brushedBinRange:new tr.b.math.Range()});}else{tr.b.Timing.instant('histogram-span','brushBins');}
8884this.mouseDownBinIndex_=undefined;},async onSelectedDiagnosticsChanged_(){await this.rowState.update({diagnosticsTab:this.$.diagnostics.selectedSubView.tabLabel,});if((this.$.diagnostics.selectedSubView===this.$.sample_diagnostics_container)&&this.histogram&&this.viewState.brushedBinRange.isEmpty){const brushedBinRange=tr.b.math.Range.fromExplicitRange(0,this.histogram.allBins.length);await this.viewState.update({brushedBinRange});this.updateDiagnostics_();}},updateDiagnostics_(){let maps=[];for(const bin of this.brushedBins){for(const map of bin.diagnosticMaps){maps.push(map);}}
8885if(this.$.merge_sample_diagnostics.checked!==this.viewState.mergeSampleDiagnostics){this.viewState.update({mergeSampleDiagnostics:this.$.merge_sample_diagnostics.checked});}
8886if(this.viewState.mergeSampleDiagnostics){const merged=new tr.v.d.DiagnosticMap();for(const map of maps){merged.addDiagnostics(map);}
8887maps=[merged];}
8888const mark=tr.b.Timing.mark('histogram-span',(this.viewState.mergeSampleDiagnostics?'merge':'split')+'SampleDiagnostics');this.$.sample_diagnostics.diagnosticMaps=maps;mark.end();if(this.anySampleDiagnostics_){this.$.diagnostics.selectedSubView=this.$.sample_diagnostics_container;}},get histogram(){return this.histogram_;},get referenceHistogram(){return this.referenceHistogram_;},getDeltaScalars_(statNames,scalarMap){if(!this.histogram.canCompare(this.referenceHistogram))return;for(const deltaStatName of tr.v.Histogram.getDeltaStatisticsNames(statNames)){if(IGNORE_DELTA_STATISTICS_NAMES.includes(deltaStatName))continue;const scalar=this.histogram.getStatisticScalar(deltaStatName,this.referenceHistogram,this.mwuResult_);if(scalar===undefined)continue;scalarMap.set(deltaStatName,scalar);}},set isYLogScale(logScale){this.chart_.isYLogScale=logScale;},async updateContents_(){this.$.chart.style.display='none';this.$.drag_handle.style.display='none';this.$.container.style.justifyContent='';while(Polymer.dom(this.$.chart).lastChild){Polymer.dom(this.$.chart).removeChild(Polymer.dom(this.$.chart).lastChild);}
8889if(!this.histogram)return;this.$.container.style.display='';const scalarMap=new Map();this.getDeltaScalars_(this.histogram.statisticsNames,scalarMap);for(const[name,scalar]of this.histogram.statisticsScalars){scalarMap.set(name,scalar);}
8890this.$.stats.scalarMap=scalarMap;this.updateSignificance_();const metricDiagnosticMap=new tr.v.d.DiagnosticMap();const metadataDiagnosticMap=new tr.v.d.DiagnosticMap();for(const[key,diagnostic]of this.histogram.diagnostics){if(key===tr.v.d.RESERVED_NAMES.MERGED_FROM)continue;if(key===tr.v.d.RESERVED_NAMES.MERGED_TO)continue;if(diagnostic instanceof tr.v.d.GroupingPath)continue;if(diagnostic instanceof tr.v.d.RelatedNameMap)continue;if(tr.v.d.RESERVED_NAMES_SET.has(key)){metadataDiagnosticMap.set(key,diagnostic);}else{metricDiagnosticMap.set(key,diagnostic);}}
8891const diagnosticTabs=[];if(metricDiagnosticMap.size){this.$.metric_diagnostics.diagnosticMaps=[metricDiagnosticMap];diagnosticTabs.push(this.$.metric_diagnostics);}
8892if(this.anySampleDiagnostics_){diagnosticTabs.push(this.$.sample_diagnostics_container);}
8893if(metadataDiagnosticMap.size){this.$.metadata_diagnostics.diagnosticMaps=[metadataDiagnosticMap];diagnosticTabs.push(this.$.metadata_diagnostics);}
8894this.$.diagnostics.resetSubViews(diagnosticTabs);this.$.diagnostics.set('tabsHidden',diagnosticTabs.length<2);if(this.histogram.numValues<=1){await this.viewState.update({brushedBinRange:tr.b.math.Range.fromExplicitRange(0,this.histogram.allBins.length)});this.$.container.style.justifyContent='flex-end';return;}
8895this.$.chart.style.display='block';this.$.drag_handle.style.display='block';if(this.histogram.allBins.length===1){if(this.histogram.min!==this.histogram.max){this.chart_=new tr.ui.b.BoxChart();Polymer.dom(this.$.chart).appendChild(this.chart_);this.chart_.graphWidth=this.graphWidth;this.chart_.graphHeight=this.graphHeight;this.chart_.hideXAxis=true;this.chart_.data=[{x:'',color:'blue',percentile_0:this.histogram.running.min,percentile_25:this.histogram.getApproximatePercentile(0.25),percentile_50:this.histogram.getApproximatePercentile(0.5),percentile_75:this.histogram.getApproximatePercentile(0.75),percentile_100:this.histogram.running.max,}];}
8896this.$.stats_container.style.maxHeight=this.chart_.getBoundingClientRect().height+'px';await this.viewState.update({brushedBinRange:tr.b.math.Range.fromExplicitRange(0,this.histogram.allBins.length)});return;}
8897this.chart_=new tr.ui.b.NameBarChart();Polymer.dom(this.$.chart).appendChild(this.chart_);this.chart_.graphWidth=this.graphWidth;this.chart_.graphHeight=this.graphHeight;this.chart_.addEventListener('item-mousedown',this.onMouseDown_.bind(this));this.chart_.addEventListener('item-mousemove',this.onMouseMove_.bind(this));this.chart_.addEventListener('item-mouseup',this.onMouseUp_.bind(this));this.chart_.hideLegend=true;this.chart_.getDataSeries('y').color='blue';this.chart_.xAxisLabel='#';this.chart_.brushedRange=this.viewState.brushedBinRange;if(!this.viewState.brushedBinRange.isEmpty){this.updateDiagnostics_();}
8898const chartData=[];const binCounts=[];for(const bin of this.histogram.allBins){let x=bin.range.min;if(x===-Number.MAX_VALUE){x='<'+new tr.b.Scalar(this.histogram.unit,bin.range.max).toString();}else{x=new tr.b.Scalar(this.histogram.unit,x).toString();}
8899chartData.push({x,y:bin.count});binCounts.push(bin.count);}
8900binCounts.sort((x,y)=>y-x);const dataRange=tr.b.math.Range.fromExplicitRange(0,binCounts[0]);if(binCounts[1]>0&&binCounts[0]>(binCounts[1]*2)){dataRange.max=binCounts[1]*(1+TRUNCATE_BIN_MARGIN);}
8901if(binCounts[2]>0&&binCounts[1]>(binCounts[2]*2)){dataRange.max=binCounts[2]*(1+TRUNCATE_BIN_MARGIN);}
8902this.chart_.overrideDataRange=dataRange;this.chart_.data=chartData;this.$.stats_container.style.maxHeight=this.chart_.getBoundingClientRect().height+'px';}});});'use strict';tr.exportTo('tr.ui.analysis',function(){const EVENT_FIELD=[{key:'start',label:'Start'},{key:'cpuDuration',label:'CPU Duration'},{key:'duration',label:'Duration'},{key:'cpuSelfTime',label:'CPU Self Time'},{key:'selfTime',label:'Self Time'}];function buildDiagnostics_(slice){const diagnostics={};for(const item of EVENT_FIELD){const fieldName=item.key;if(slice[fieldName]===undefined)continue;diagnostics[fieldName]=new tr.v.d.Scalar(new tr.b.Scalar(tr.b.Unit.byName.timeDurationInMs,slice[fieldName]));}
8903diagnostics.args=new tr.v.d.GenericSet([slice.args]);diagnostics.event=new tr.v.d.RelatedEventSet(slice);return diagnostics;}
8904Polymer({is:'tr-ui-a-multi-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;this.eventsHaveDuration_=true;this.eventsHaveSubRows_=true;},ready(){this.$.radioPicker.style.display='none';this.$.radioPicker.items=EVENT_FIELD;this.$.radioPicker.select('cpuSelfTime');this.$.radioPicker.addEventListener('change',()=>{if(this.isAttached)this.updateContents_();});this.$.histogramSpan.graphWidth=400;this.$.histogramSpan.canMergeSampleDiagnostics=false;this.$.histogramContainer.style.display='none';},attached(){if(this.currentSelection_!==undefined)this.updateContents_();},set selection(selection){if(selection.length<=1){throw new Error('Only supports multiple items');}
8905this.setSelectionWithoutErrorChecks(selection);},get selection(){return this.currentSelection_;},setSelectionWithoutErrorChecks(selection){this.currentSelection_=selection;if(this.isAttached)this.updateContents_();},get eventsHaveDuration(){return this.eventsHaveDuration_;},set eventsHaveDuration(eventsHaveDuration){this.eventsHaveDuration_=eventsHaveDuration;if(this.isAttached)this.updateContents_();},get eventsHaveSubRows(){return this.eventsHaveSubRows_;},set eventsHaveSubRows(eventsHaveSubRows){this.eventsHaveSubRows_=eventsHaveSubRows;if(this.isAttached)this.updateContents_();},buildHistogram_(selectedKey){let leftBoundary=Number.MAX_VALUE;let rightBoundary=tr.b.math.Statistics.percentile(this.currentSelection_,0.95,function(value){leftBoundary=Math.min(leftBoundary,value[selectedKey]);return value[selectedKey];});if(leftBoundary===rightBoundary)rightBoundary+=1;const histogram=new tr.v.Histogram('',tr.b.Unit.byName.timeDurationInMs,tr.v.HistogramBinBoundaries.createLinear(leftBoundary,rightBoundary,Math.ceil(Math.sqrt(this.currentSelection_.length))));histogram.customizeSummaryOptions({sum:false});for(const slice of this.currentSelection_){histogram.addSample(slice[selectedKey],buildDiagnostics_(slice));}
8906return histogram;},updateContents_(){const selection=this.currentSelection_;if(!selection)return;const eventsByTitle=selection.getEventsOrganizedByTitle();const numTitles=Object.keys(eventsByTitle).length;this.$.eventSummaryTable.configure({showTotals:numTitles>1,eventsByTitle,eventsHaveDuration:this.eventsHaveDuration_,eventsHaveSubRows:this.eventsHaveSubRows_});this.$.selectionSummaryTable.selection=this.currentSelection_;if(numTitles===1){this.$.radioPicker.style.display='block';this.$.histogramContainer.style.display='flex';this.$.histogramSpan.build(this.buildHistogram_(this.$.radioPicker.selectedKey));if(this.$.histogramSpan.histogram.numValues===0){this.$.histogramContainer.style.display='none';}}else{this.$.radioPicker.style.display='none';this.$.histogramContainer.style.display='none';}}});return{};});'use strict';tr.exportTo('tr.ui.analysis',function(){const FLOW_IN=0x1;const FLOW_OUT=0x2;const FLOW_IN_OUT=FLOW_IN|FLOW_OUT;function FlowClassifier(){this.numEvents_=0;this.eventsByGUID_={};}
8907FlowClassifier.prototype={getFS_(event){let fs=this.eventsByGUID_[event.guid];if(fs===undefined){this.numEvents_++;fs={state:0,event};this.eventsByGUID_[event.guid]=fs;}
8908return fs;},addInFlow(event){const fs=this.getFS_(event);fs.state|=FLOW_IN;return event;},addOutFlow(event){const fs=this.getFS_(event);fs.state|=FLOW_OUT;return event;},hasEvents(){return this.numEvents_>0;},get inFlowEvents(){const selection=new tr.model.EventSet();for(const guid in this.eventsByGUID_){const fs=this.eventsByGUID_[guid];if(fs.state===FLOW_IN){selection.push(fs.event);}}
8909return selection;},get outFlowEvents(){const selection=new tr.model.EventSet();for(const guid in this.eventsByGUID_){const fs=this.eventsByGUID_[guid];if(fs.state===FLOW_OUT){selection.push(fs.event);}}
8910return selection;},get internalFlowEvents(){const selection=new tr.model.EventSet();for(const guid in this.eventsByGUID_){const fs=this.eventsByGUID_[guid];if(fs.state===FLOW_IN_OUT){selection.push(fs.event);}}
8911return selection;}};return{FlowClassifier,};});'use strict';function*getEventInFlowEvents(event){if(!event.inFlowEvents)return;yield*event.inFlowEvents;}
8912function*getEventOutFlowEvents(event){if(!event.outFlowEvents)return;yield*event.outFlowEvents;}
8913function*getEventAncestors(event){if(!event.enumerateAllAncestors)return;yield*event.enumerateAllAncestors();}
8914function*getEventDescendents(event){if(!event.enumerateAllDescendents)return;yield*event.enumerateAllDescendents();}
8915Polymer({is:'tr-ui-a-related-events',ready(){this.eventGroups_=[];this.cancelFunctions_=[];this.$.table.tableColumns=[{title:'Event(s)',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.type;if(row.tooltip){typeEl.title=row.tooltip;}
8916return typeEl;},width:'150px'},{title:'Link',width:'100%',value(row){const linkEl=document.createElement('tr-ui-a-analysis-link');if(row.name){linkEl.setSelectionAndContent(row.selection,row.name);}else{linkEl.selection=row.selection;}
8917return linkEl;}}];},hasRelatedEvents(){return(this.eventGroups_&&this.eventGroups_.length>0);},setRelatedEvents(eventSet){this.cancelAllTasks_();this.eventGroups_=[];this.addRuntimeCallStats_(eventSet);this.addOverlappingV8ICStats_(eventSet);this.addV8GCObjectStats_(eventSet);this.addV8Slices_(eventSet);this.addConnectedFlows_(eventSet);this.addConnectedEvents_(eventSet);this.addOverlappingSamples_(eventSet);this.updateContents_();},addConnectedFlows_(eventSet){const classifier=new tr.ui.analysis.FlowClassifier();eventSet.forEach(function(slice){if(slice.inFlowEvents){slice.inFlowEvents.forEach(function(flow){classifier.addInFlow(flow);});}
8918if(slice.outFlowEvents){slice.outFlowEvents.forEach(function(flow){classifier.addOutFlow(flow);});}});if(!classifier.hasEvents())return;const addToEventGroups=function(type,flowEvent){this.eventGroups_.push({type,selection:new tr.model.EventSet(flowEvent),name:flowEvent.title});};classifier.inFlowEvents.forEach(addToEventGroups.bind(this,'Incoming flow'));classifier.outFlowEvents.forEach(addToEventGroups.bind(this,'Outgoing flow'));classifier.internalFlowEvents.forEach(addToEventGroups.bind(this,'Internal flow'));},cancelAllTasks_(){this.cancelFunctions_.forEach(function(cancelFunction){cancelFunction();});this.cancelFunctions_=[];},addConnectedEvents_(eventSet){this.cancelFunctions_.push(this.createEventsLinkIfNeeded_('Preceding events','Add all events that have led to the selected one(s), connected by '+'flow arrows or by call stack.',eventSet,function*(event){yield*getEventInFlowEvents(event);yield*getEventAncestors(event);if(event.startSlice){yield event.startSlice;}}.bind(this)));this.cancelFunctions_.push(this.createEventsLinkIfNeeded_('Following events','Add all events that have been caused by the selected one(s), '+'connected by flow arrows or by call stack.',eventSet,function*(event){yield*getEventOutFlowEvents(event);yield*getEventDescendents(event);if(event.endSlice){yield event.endSlice;}}.bind(this)));this.cancelFunctions_.push(this.createEventsLinkIfNeeded_('All connected events','Add all events connected to the selected one(s) by flow arrows or '+'by call stack.',eventSet,function*(event){yield*getEventInFlowEvents(event);yield*getEventOutFlowEvents(event);yield*getEventAncestors(event);yield*getEventDescendents(event);if(event.startSlice){yield event.startSlice;}
8919if(event.endSlice){yield event.endSlice;}}.bind(this)));},createEventsLinkIfNeeded_(title,tooltip,events,connectedFn){events=new tr.model.EventSet(events);const eventsToProcess=new Set(events);let wasChanged=false;let task;let isCanceled=false;function addEventsUntilTimeout(){if(isCanceled)return;const timeout=window.performance.now()+8;while(eventsToProcess.size>0&&window.performance.now()<=timeout){const nextEvent=tr.b.getFirstElement(eventsToProcess);eventsToProcess.delete(nextEvent);for(const eventToAdd of connectedFn(nextEvent)){if(!events.contains(eventToAdd)){events.push(eventToAdd);eventsToProcess.add(eventToAdd);wasChanged=true;}}}
8920if(eventsToProcess.size>0){const newTask=new tr.b.Task(addEventsUntilTimeout.bind(this),this);task.after(newTask);task=newTask;return;}
8921if(!wasChanged)return;this.eventGroups_.push({type:title,tooltip,selection:events});this.updateContents_();}
8922function cancelTask(){isCanceled=true;}
8923task=new tr.b.Task(addEventsUntilTimeout.bind(this),this);tr.b.Task.RunWhenIdle(task);return cancelTask;},addOverlappingSamples_(eventSet){const samples=new tr.model.EventSet();for(const slice of eventSet){if(!slice.parentContainer||!slice.parentContainer.samples){continue;}
8924const candidates=slice.parentContainer.samples;const range=tr.b.math.Range.fromExplicitRange(slice.start,slice.start+slice.duration);const filteredSamples=range.filterArray(candidates,function(value){return value.start;});for(const sample of filteredSamples){samples.push(sample);}}
8925if(samples.length>0){this.eventGroups_.push({type:'Overlapping samples',tooltip:'All samples overlapping the selected slice(s).',selection:samples});}},addV8Slices_(eventSet){const v8Slices=new tr.model.EventSet();for(const slice of eventSet){if(slice.category==='v8'){v8Slices.push(slice);}}
8926if(v8Slices.length>0){this.eventGroups_.push({type:'V8 Slices',tooltip:'All V8 slices in the selected slice(s).',selection:v8Slices});}},addRuntimeCallStats_(eventSet){const slices=eventSet.filter(function(slice){return(slice.category==='v8'||slice.category==='disabled-by-default-v8.runtime_stats')&&slice.runtimeCallStats;});if(slices.length>0){this.eventGroups_.push({type:'Runtime call stats table',tooltip:'All V8 slices containing runtime call stats table in the selected slice(s).',selection:slices});}},addV8GCObjectStats_(eventSet){const slices=new tr.model.EventSet();for(const slice of eventSet){if(slice.title==='V8.GC_Objects_Stats'){slices.push(slice);}}
8927if(slices.length>0){this.eventGroups_.push({type:'V8 GC stats table',tooltip:'All V8 GC statistics slices in the selected set.',selection:slices});}},addOverlappingV8ICStats_(eventSet){const slices=new tr.model.EventSet();for(const slice of eventSet){if(!slice.parentContainer||!slice.parentContainer.sliceGroup){continue;}
8928const sliceGroup=slice.parentContainer.sliceGroup.slices;const range=tr.b.math.Range.fromExplicitRange(slice.start,slice.start+slice.duration);const filteredSlices=range.filterArray(sliceGroup,value=>value.start);const icSlices=filteredSlices.filter(x=>x.title==='V8.ICStats');for(const icSlice of icSlices){slices.push(icSlice);}}
8929if(slices.length>0){this.eventGroups_.push({type:'Overlapping V8 IC stats',tooltip:'All V8 IC statistics overlapping the selected set.',selection:slices});}},updateContents_(){const table=this.$.table;if(this.eventGroups_===undefined){table.tableRows=[];}else{table.tableRows=this.eventGroups_.slice();}
8930table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-multi-async-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.content.selection=selection;this.$.relatedEvents.setRelatedEvents(selection);if(this.$.relatedEvents.hasRelatedEvents()){this.$.relatedEvents.style.display='';}else{this.$.relatedEvents.style.display='none';}},get relatedEventsToHighlight(){if(!this.$.content.selection)return undefined;const selection=new tr.model.EventSet();this.$.content.selection.forEach(function(asyncEvent){if(!asyncEvent.associatedEvents)return;asyncEvent.associatedEvents.forEach(function(event){selection.push(event);});});if(selection.length)return selection;return undefined;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-async-slice-sub-view',tr.model.AsyncSlice,{multi:true,title:'Async Slices',});'use strict';Polymer({is:'tr-ui-a-multi-cpu-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.$.content.eventsHaveSubRows=false;},get selection(){return this.$.content.selection;},set selection(selection){this.$.content.setSelectionWithoutErrorChecks(selection);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-cpu-slice-sub-view',tr.model.CpuSlice,{multi:true,title:'CPU Slices',});'use strict';Polymer({is:'tr-ui-a-multi-flow-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.$.content.eventsHaveDuration=false;this.$.content.eventsHaveSubRows=false;},set selection(selection){this.$.content.selection=selection;},get selection(){return this.$.content.selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-flow-event-sub-view',tr.model.FlowEvent,{multi:true,title:'Flow Events',});'use strict';Polymer({is:'tr-ui-a-multi-frame-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},set selection(selection){Polymer.dom(this).textContent='';const realView=document.createElement('tr-ui-a-multi-event-sub-view');realView.eventsHaveDuration=false;realView.eventsHaveSubRows=false;Polymer.dom(this).appendChild(realView);realView.setSelectionWithoutErrorChecks(selection);this.currentSelection_=selection;},get selection(){return this.currentSelection_;},get relatedEventsToHighlight(){if(!this.currentSelection_)return undefined;const selection=new tr.model.EventSet();this.currentSelection_.forEach(function(frameEvent){frameEvent.associatedEvents.forEach(function(event){selection.push(event);});});return selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-frame-sub-view',tr.model.Frame,{multi:true,title:'Frames',});'use strict';Polymer({is:'tr-ui-a-multi-instant-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},set selection(selection){Polymer.dom(this.$.content).textContent='';const realView=document.createElement('tr-ui-a-multi-event-sub-view');realView.eventsHaveDuration=false;realView.eventsHaveSubRows=false;Polymer.dom(this.$.content).appendChild(realView);realView.setSelectionWithoutErrorChecks(selection);this.currentSelection_=selection;},get selection(){return this.currentSelection_;}});'use strict';Polymer({is:'tr-ui-a-multi-object-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},ready(){this.$.content.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;const objectEvents=Array.from(selection).sort(tr.b.math.Range.compareByMinTimes);const timeSpanConfig={unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument};const table=this.$.content;table.tableColumns=[{title:'First',value(event){if(event instanceof tr.model.ObjectSnapshot){return tr.v.ui.createScalarSpan(event.ts,timeSpanConfig);}
8931const spanEl=document.createElement('span');Polymer.dom(spanEl).appendChild(tr.v.ui.createScalarSpan(event.creationTs,timeSpanConfig));Polymer.dom(spanEl).appendChild(tr.ui.b.createSpan({textContent:'-',marginLeft:'4px',marginRight:'4px'}));if(event.deletionTs!==Number.MAX_VALUE){Polymer.dom(spanEl).appendChild(tr.v.ui.createScalarSpan(event.deletionTs,timeSpanConfig));}
8932return spanEl;},width:'200px'},{title:'Second',value(event){const linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(event);},event.userFriendlyName);return linkEl;},width:'100%'}];table.tableRows=objectEvents;table.rebuild();}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-object-sub-view',tr.model.ObjectInstance,{multi:true,title:'Object Instances',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-object-sub-view',tr.model.ObjectSnapshot,{multi:true,title:'Object Snapshots',});'use strict';const EventSet=tr.model.EventSet;const CHART_TITLE='Power (W) by ms since vertical sync';Polymer({is:'tr-ui-a-frame-power-usage-chart',ready(){this.chart_=undefined;this.samples_=new EventSet();this.vSyncTimestamps_=[];},attached(){if(this.samples_)this.updateContents_();},get chart(){return this.chart_;},get samples(){return this.samples_;},get vSyncTimestamps(){return this.vSyncTimestamps_;},setData(samples,vSyncTimestamps){this.samples_=(samples===undefined)?new EventSet():samples;this.vSyncTimestamps_=(vSyncTimestamps===undefined)?[]:vSyncTimestamps;if(this.isAttached)this.updateContents_();},updateContents_(){this.clearChart_();const data=this.getDataForLineChart_();if(data.length===0)return;this.chart_=new tr.ui.b.LineChart();Polymer.dom(this.$.content).appendChild(this.chart_);this.chart_.chartTitle=CHART_TITLE;this.chart_.data=data;},clearChart_(){const content=this.$.content;while(Polymer.dom(content).firstChild){Polymer.dom(content).removeChild(Polymer.dom(content).firstChild);}
8933this.chart_=undefined;},getDataForLineChart_(){const sortedSamples=this.sortSamplesByTimestampAscending_(this.samples);const vSyncTimestamps=this.vSyncTimestamps.slice();let lastVSyncTimestamp=undefined;const points=[];let frameNumber=0;sortedSamples.forEach(function(sample){while(vSyncTimestamps.length>0&&vSyncTimestamps[0]<=sample.start){lastVSyncTimestamp=vSyncTimestamps.shift();frameNumber++;}
8934if(lastVSyncTimestamp===undefined)return;const point={x:sample.start-lastVSyncTimestamp};point['f'+frameNumber]=sample.powerInW;points.push(point);});return points;},sortSamplesByTimestampAscending_(samples){return samples.toArray().sort(function(smpl1,smpl2){return smpl1.start-smpl2.start;});}});'use strict';Polymer({is:'tr-ui-a-power-sample-summary-table',ready(){this.$.table.tableColumns=[{title:'Min power',width:'100px',value(row){return tr.b.Unit.byName.powerInWatts.format(row.min);}},{title:'Max power',width:'100px',value(row){return tr.b.Unit.byName.powerInWatts.format(row.max);}},{title:'Time-weighted average',width:'100px',value(row){return tr.b.Unit.byName.powerInWatts.format(row.timeWeightedAverageInW);}},{title:'Energy consumed',width:'100px',value(row){return tr.b.Unit.byName.energyInJoules.format(row.energyConsumedInJ);}},{title:'Sample count',width:'100%',value(row){return row.sampleCount;}}];this.samples=new tr.model.EventSet();},get samples(){return this.samples_;},set samples(samples){if(samples===this.samples)return;this.samples_=(samples===undefined)?new tr.model.EventSet():samples;this.updateContents_();},updateContents_(){if(this.samples.length===0){this.$.table.tableRows=[];}else{this.$.table.tableRows=[{min:this.getMin(),max:this.getMax(),timeWeightedAverageInW:this.getTimeWeightedAverageInW(),energyConsumedInJ:this.getEnergyConsumedInJ(),sampleCount:this.samples.length}];}
8935this.$.table.rebuild();},getMin(){return Math.min.apply(null,this.samples.map(function(sample){return sample.powerInW;}));},getMax(){return Math.max.apply(null,this.samples.map(function(sample){return sample.powerInW;}));},getTimeWeightedAverageInW(){const energyConsumedInJ=this.getEnergyConsumedInJ();if(energyConsumedInJ==='N/A')return'N/A';const durationInS=tr.b.convertUnit(this.samples.bounds.duration,tr.b.UnitPrefixScale.METRIC.MILLI,tr.b.UnitPrefixScale.METRIC.NONE);return energyConsumedInJ/durationInS;},getEnergyConsumedInJ(){if(this.samples.length<2)return'N/A';const bounds=this.samples.bounds;const series=tr.b.getFirstElement(this.samples).series;return series.getEnergyConsumedInJ(bounds.min,bounds.max);}});'use strict';Polymer({is:'tr-ui-a-multi-power-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},updateContents_(){const samples=this.selection;const vSyncTimestamps=(!samples?[]:tr.b.getFirstElement(samples).series.device.vSyncTimestamps);this.$.summaryTable.samples=samples;this.$.chart.setData(this.selection,vSyncTimestamps);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-power-sample-sub-view',tr.model.PowerSample,{multi:true,title:'Power Samples',});'use strict';(function(){const MultiDimensionalViewBuilder=tr.b.MultiDimensionalViewBuilder;Polymer({is:'tr-ui-a-multi-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.viewOption_=undefined;this.selection_=undefined;},ready(){const viewSelector=tr.ui.b.createSelector(this,'viewOption','tracing.ui.analysis.multi_sample_sub_view',MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW,[{label:'Top-down (Tree)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW},{label:'Top-down (Heavy)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW},{label:'Bottom-up (Heavy)',value:MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW}]);Polymer.dom(this.$.control).appendChild(viewSelector);this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;this.updateContents_();},get viewOption(){return this.viewOption_;},set viewOption(viewOption){this.viewOption_=viewOption;this.updateContents_();},createSamplingSummary_(selection,viewOption){const builder=new MultiDimensionalViewBuilder(1,1);const samples=selection.filter(event=>event instanceof tr.model.Sample);samples.forEach(function(sample){builder.addPath([sample.userFriendlyStack.reverse()],[1],MultiDimensionalViewBuilder.ValueKind.SELF);});return builder.buildView(viewOption);},processSampleRows_(rows){for(const row of rows){let title=row.title[0];let results=/(.*) (Deoptimized reason: .*)/.exec(title);if(results!==null){row.deoptReason=results[2];title=results[1];}
8936results=/(.*) url: (.*)/.exec(title);if(results!==null){row.functionName=results[1];row.url=results[2];if(row.functionName===''){row.functionName='(anonymous function)';}
8937if(row.url===''){row.url='unknown';}}else{row.functionName=title;row.url='unknown';}
8938this.processSampleRows_(row.subRows);}},updateContents_(){if(this.selection===undefined){this.$.table.tableColumns=[];this.$.table.tableRows=[];this.$.table.rebuild();return;}
8939const samplingData=this.createSamplingSummary_(this.selection,this.viewOption);const total=samplingData.values[0].total;const columns=[this.createPercentColumn_('Total',total),this.createSamplesColumn_('Total'),this.createPercentColumn_('Self',total),this.createSamplesColumn_('Self'),{title:'Function Name',value(row){if(row.deoptReason!==undefined){const spanEl=tr.ui.b.createSpan({italic:true,color:'#F44336',tooltip:row.deoptReason});spanEl.innerText=row.functionName;return spanEl;}
8940return row.functionName;},width:'150px',cmp:(a,b)=>a.functionName.localeCompare(b.functionName),showExpandButtons:true},{title:'Location',value(row){return row.url;},width:'250px',cmp:(a,b)=>a.url.localeCompare(b.url),}];this.processSampleRows_(samplingData.subRows);this.$.table.tableColumns=columns;this.$.table.sortColumnIndex=1;this.$.table.sortDescending=true;this.$.table.tableRows=samplingData.subRows;this.$.table.rebuild();},createPercentColumn_(title,samplingDataTotal){const field=title.toLowerCase();return{title:title+' percent',value(row){return tr.v.ui.createScalarSpan(row.values[0][field]/samplingDataTotal,{customContextRange:tr.b.math.Range.PERCENT_RANGE,unit:tr.b.Unit.byName.normalizedPercentage,context:{minimumFractionDigits:2,maximumFractionDigits:2},});},width:'60px',cmp:(a,b)=>a.values[0][field]-b.values[0][field]};},createSamplesColumn_(title){const field=title.toLowerCase();return{title:title+' samples',value(row){return tr.v.ui.createScalarSpan(row.values[0][field],{unit:tr.b.Unit.byName.unitlessNumber,context:{maximumFractionDigits:0},});},width:'60px',cmp:(a,b)=>a.values[0][field]-b.values[0][field]};}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-sample-sub-view',tr.model.Sample,{multi:true,title:'Samples',});})();'use strict';Polymer({is:'tr-ui-a-multi-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.selection_=undefined;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;if(tr.isExported('tr.ui.e.chrome.cc.RasterTaskSelection')){if(tr.ui.e.chrome.cc.RasterTaskSelection.supports(selection)){const ltvSelection=new tr.ui.e.chrome.cc.RasterTaskSelection(selection);const ltv=new tr.ui.e.chrome.cc.LayerTreeHostImplSnapshotView();ltv.objectSnapshot=ltvSelection.containingSnapshot;ltv.selection=ltvSelection;ltv.extraHighlightsByLayerId=ltvSelection.extraHighlightsByLayerId;Polymer.dom(this.$.content).textContent='';Polymer.dom(this.$.content).appendChild(ltv);this.requiresTallView_=true;return;}}
8941Polymer.dom(this.$.content).textContent='';const mesv=document.createElement('tr-ui-a-multi-event-sub-view');mesv.selection=selection;Polymer.dom(this.$.content).appendChild(mesv);const relatedEvents=document.createElement('tr-ui-a-related-events');relatedEvents.setRelatedEvents(selection);if(relatedEvents.hasRelatedEvents()){Polymer.dom(this.$.content).appendChild(relatedEvents);}},get requiresTallView(){if(this.$.content.children.length===0)return false;const childTagName=this.$.content.children[0].tagName;if(childTagName==='TR-UI-A-MULTI-EVENT-SUB-VIEW'){return false;}
8942return true;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-thread-slice-sub-view',tr.model.ThreadSlice,{multi:true,title:'Slices',});'use strict';Polymer({is:'tr-ui-a-multi-thread-time-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.$.content.eventsHaveSubRows=false;},get selection(){return this.$.content.selection;},set selection(selection){this.$.content.setSelectionWithoutErrorChecks(selection);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-thread-time-slice-sub-view',tr.model.ThreadTimeSlice,{multi:true,title:'Thread Timeslices',});'use strict';Polymer({is:'tr-ui-a-user-expectation-related-samples-table',ready(){this.samples_=[];this.$.table.tableColumns=[{title:'Event(s)',value(row){const typeEl=document.createElement('span');typeEl.innerText=row.type;if(row.tooltip){typeEl.title=row.tooltip;}
8943return typeEl;},width:'150px'},{title:'Link',width:'100%',value(row){const linkEl=document.createElement('tr-ui-a-analysis-link');if(row.name){linkEl.setSelectionAndContent(row.selection,row.name);}else{linkEl.selection=row.selection;}
8944return linkEl;}}];},hasRelatedSamples(){return(this.samples_&&this.samples_.length>0);},set selection(eventSet){this.samples_=[];const samples=new tr.model.EventSet;eventSet.forEach(function(ue){samples.addEventSet(ue.associatedSamples);}.bind(this));if(samples.length>0){this.samples_.push({type:'Overlapping samples',tooltip:'All samples overlapping the selected user expectation(s).',selection:samples});}
8945this.updateContents_();},updateContents_(){const table=this.$.table;if(this.samples_&&this.samples_.length>0){table.tableRows=this.samples_.slice();}else{table.tableRows=[];}
8946table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-multi-interaction-record-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},set selection(selection){this.currentSelection_=selection;this.$.realView.setSelectionWithoutErrorChecks(selection);this.currentSelection_=selection;this.$.relatedSamples.selection=selection;if(this.$.relatedSamples.hasRelatedSamples()){this.$.events.style.display='';}else{this.$.events.style.display='none';}},get selection(){return this.currentSelection_;},get relatedEventsToHighlight(){if(!this.currentSelection_)return undefined;const selection=new tr.model.EventSet();this.currentSelection_.forEach(function(ir){ir.associatedEvents.forEach(function(event){selection.push(event);});});return selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-user-expectation-sub-view',tr.model.um.UserExpectation,{multi:true,title:'User Expectations',});'use strict';Polymer({is:'tr-ui-a-single-async-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){if(selection.length!==1){throw new Error('Only supports single slices');}
8947this.$.content.setSelectionWithoutErrorChecks(selection);this.$.relatedEvents.setRelatedEvents(selection);if(this.$.relatedEvents.hasRelatedEvents()){this.$.relatedEvents.style.display='';}else{this.$.relatedEvents.style.display='none';}},getEventRows_(event){const rows=this.__proto__.__proto__.getEventRows_(event);rows.splice(0,0,{name:'ID',value:event.id});return rows;},get relatedEventsToHighlight(){if(!this.currentSelection_)return undefined;return tr.b.getOnlyElement(this.currentSelection_).associatedEvents;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-async-slice-sub-view',tr.model.AsyncSlice,{multi:false,title:'Async Slice',});'use strict';Polymer({is:'tr-ui-a-single-cpu-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){const cpuSlice=tr.b.getOnlyElement(selection);if(!(cpuSlice instanceof tr.model.CpuSlice)){throw new Error('Only supports thread time slices');}
8948this.currentSelection_=selection;const thread=cpuSlice.threadThatWasRunning;const root=Polymer.dom(this.root);if(thread){Polymer.dom(root.querySelector('#process-name')).textContent=thread.parent.userFriendlyName;Polymer.dom(root.querySelector('#thread-name')).textContent=thread.userFriendlyName;}else{root.querySelector('#process-name').parentElement.style.display='none';Polymer.dom(root.querySelector('#thread-name')).textContent=cpuSlice.title;}
8949root.querySelector('#start').setValueAndUnit(cpuSlice.start,tr.b.Unit.byName.timeStampInMs);root.querySelector('#duration').setValueAndUnit(cpuSlice.duration,tr.b.Unit.byName.timeDurationInMs);const runningThreadEl=root.querySelector('#running-thread');const timeSlice=cpuSlice.getAssociatedTimeslice();if(!timeSlice){runningThreadEl.parentElement.style.display='none';}else{const threadLink=document.createElement('tr-ui-a-analysis-link');threadLink.selection=new tr.model.EventSet(timeSlice);Polymer.dom(threadLink).textContent='Click to select';runningThreadEl.parentElement.style.display='';Polymer.dom(runningThreadEl).textContent='';Polymer.dom(runningThreadEl).appendChild(threadLink);}
8950root.querySelector('#args').object=cpuSlice.args;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-cpu-slice-sub-view',tr.model.CpuSlice,{multi:false,title:'CPU Slice',});'use strict';function createAnalysisLinkTo(event){const linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet(event),event.userFriendlyName);return linkEl;}
8951Polymer({is:'tr-ui-a-single-flow-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],listeners:{'singleEventSubView.customize-rows':'onCustomizeRows_'},set selection(selection){this.currentSelection_=selection;this.$.singleEventSubView.setSelectionWithoutErrorChecks(selection);},get selection(){return this.currentSelection_;},onCustomizeRows_(e){const event=tr.b.getOnlyElement(this.currentSelection_);const rows=e.rows;rows.unshift({name:'ID',value:event.id});rows.push({name:'From',value:createAnalysisLinkTo(event.startSlice)});rows.push({name:'To',value:createAnalysisLinkTo(event.endSlice)});}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-flow-event-sub-view',tr.model.FlowEvent,{multi:false,title:'Flow Event',});'use strict';Polymer({is:'tr-ui-a-single-frame-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.$.asv.selection=tr.b.getOnlyElement(selection).associatedAlerts;},get relatedEventsToHighlight(){if(!this.currentSelection_)return undefined;return tr.b.getOnlyElement(this.currentSelection_).associatedEvents;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-frame-sub-view',tr.model.Frame,{multi:false,title:'Frame',});'use strict';Polymer({is:'tr-ui-a-single-instant-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},set selection(selection){Polymer.dom(this.$.content).textContent='';const realView=document.createElement('tr-ui-a-single-event-sub-view');realView.setSelectionWithoutErrorChecks(selection);Polymer.dom(this.$.content).appendChild(realView);this.currentSelection_=selection;},get selection(){return this.currentSelection_;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-instant-event-sub-view',tr.model.InstantEvent,{multi:false,title:'Instant Event',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-instant-event-sub-view',tr.model.InstantEvent,{multi:true,title:'Instant Events',});'use strict';tr.exportTo('tr.ui.analysis',function(){const ObjectInstanceView=tr.ui.b.define('object-instance-view');ObjectInstanceView.prototype={__proto__:HTMLDivElement.prototype,decorate(){this.objectInstance_=undefined;},get requiresTallView(){return true;},set modelEvent(obj){this.objectInstance=obj;},get modelEvent(){return this.objectInstance;},get objectInstance(){return this.objectInstance_;},set objectInstance(i){this.objectInstance_=i;this.updateContents();},updateContents(){throw new Error('Not implemented');}};const options=new tr.b.ExtensionRegistryOptions(tr.b.TYPE_BASED_REGISTRY_MODE);options.mandatoryBaseClass=ObjectInstanceView;options.defaultMetadata={showInTrackView:true};tr.b.decorateExtensionRegistry(ObjectInstanceView,options);return{ObjectInstanceView,};});'use strict';Polymer({is:'tr-ui-a-single-object-instance-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},get requiresTallView(){if(this.$.content.children.length===0){return false;}
8952if(this.$.content.children[0]instanceof
8953tr.ui.analysis.ObjectInstanceView){return this.$.content.children[0].requiresTallView;}},get selection(){return this.currentSelection_;},set selection(selection){const instance=tr.b.getOnlyElement(selection);if(!(instance instanceof tr.model.ObjectInstance)){throw new Error('Only supports object instances');}
8954Polymer.dom(this.$.content).textContent='';this.currentSelection_=selection;const typeInfo=tr.ui.analysis.ObjectInstanceView.getTypeInfo(instance.category,instance.typeName);if(typeInfo){const customView=new typeInfo.constructor();Polymer.dom(this.$.content).appendChild(customView);customView.modelEvent=instance;}else{this.appendGenericAnalysis_(instance);}},appendGenericAnalysis_(instance){let html='';html+='<div class="title">'+
8955instance.typeName+' '+
8956instance.id+'</div>\n';html+='<table>';html+='<tr>';html+='<tr><td>creationTs:</td><td>'+
8957instance.creationTs+'</td></tr>\n';if(instance.deletionTs!==Number.MAX_VALUE){html+='<tr><td>deletionTs:</td><td>'+
8958instance.deletionTs+'</td></tr>\n';}else{html+='<tr><td>deletionTs:</td><td>not deleted</td></tr>\n';}
8959html+='<tr><td>snapshots:</td><td id="snapshots"></td></tr>\n';html+='</table>';Polymer.dom(this.$.content).innerHTML=html;const snapshotsEl=Polymer.dom(this.$.content).querySelector('#snapshots');instance.snapshots.forEach(function(snapshot){const snapshotLink=document.createElement('tr-ui-a-analysis-link');snapshotLink.selection=new tr.model.EventSet(snapshot);Polymer.dom(snapshotsEl).appendChild(snapshotLink);});}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-object-instance-sub-view',tr.model.ObjectInstance,{multi:false,title:'Object Instance',});'use strict';Polymer({is:'tr-ui-a-single-object-snapshot-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},get requiresTallView(){if(this.children.length===0){return false;}
8960if(this.children[0]instanceof tr.ui.analysis.ObjectSnapshotView){return this.children[0].requiresTallView;}},get selection(){return this.currentSelection_;},set selection(selection){const snapshot=tr.b.getOnlyElement(selection);if(!(snapshot instanceof tr.model.ObjectSnapshot)){throw new Error('Only supports object instances');}
8961Polymer.dom(this).textContent='';this.currentSelection_=selection;const typeInfo=tr.ui.analysis.ObjectSnapshotView.getTypeInfo(snapshot.objectInstance.category,snapshot.objectInstance.typeName);if(typeInfo){const customView=new typeInfo.constructor();Polymer.dom(this).appendChild(customView);customView.modelEvent=snapshot;}else{this.appendGenericAnalysis_(snapshot);}},appendGenericAnalysis_(snapshot){const instance=snapshot.objectInstance;Polymer.dom(this).textContent='';const titleEl=document.createElement('div');Polymer.dom(titleEl).classList.add('title');Polymer.dom(titleEl).appendChild(document.createTextNode('Snapshot of '));Polymer.dom(this).appendChild(titleEl);const instanceLinkEl=document.createElement('tr-ui-a-analysis-link');instanceLinkEl.selection=new tr.model.EventSet(instance);Polymer.dom(titleEl).appendChild(instanceLinkEl);Polymer.dom(titleEl).appendChild(document.createTextNode(' @ '));Polymer.dom(titleEl).appendChild(tr.v.ui.createScalarSpan(snapshot.ts,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument,inline:true,}));const tableEl=document.createElement('table');Polymer.dom(this).appendChild(tableEl);const rowEl=document.createElement('tr');Polymer.dom(tableEl).appendChild(rowEl);const labelEl=document.createElement('td');Polymer.dom(labelEl).textContent='args:';Polymer.dom(rowEl).appendChild(labelEl);const argsEl=document.createElement('td');argsEl.id='args';Polymer.dom(rowEl).appendChild(argsEl);const objectViewEl=document.createElement('tr-ui-a-generic-object-view');objectViewEl.object=snapshot.args;Polymer.dom(argsEl).appendChild(objectViewEl);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-object-snapshot-sub-view',tr.model.ObjectSnapshot,{multi:false,title:'Object Snapshot',});'use strict';Polymer({is:'tr-ui-a-power-sample-table',ready(){this.$.table.tableColumns=[{title:'Time',width:'100px',value(row){return tr.v.ui.createScalarSpan(row.start,{unit:tr.b.Unit.byName.timeStampInMs});}},{title:'Power',width:'100%',value(row){return tr.v.ui.createScalarSpan(row.powerInW,{unit:tr.b.Unit.byName.powerInWatts});}}];this.sample=undefined;},get sample(){return this.sample_;},set sample(sample){this.sample_=sample;this.updateContents_();},updateContents_(){if(this.sample===undefined){this.$.table.tableRows=[];}else{this.$.table.tableRows=[this.sample];}
8962this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-single-power-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},updateContents_(){if(this.selection.length!==1){throw new Error('Cannot pass multiple samples to sample table.');}
8963this.$.samplesTable.sample=tr.b.getOnlyElement(this.selection);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-power-sample-sub-view',tr.model.PowerSample,{multi:false,title:'Power Sample',});'use strict';Polymer({is:'tr-ui-a-single-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},ready(){this.$.content.tableColumns=[{title:'',value:row=>row.title,width:'100px'},{title:'',value:row=>row.value,width:'100%'}];this.$.content.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;if(this.currentSelection_===undefined){this.$.content.tableRows=[];return;}
8964const sample=tr.b.getOnlyElement(this.currentSelection_);const table=this.$.content;const rows=[];rows.push({title:'Title',value:sample.title});rows.push({title:'Sample time',value:tr.v.ui.createScalarSpan(sample.start,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument})});const callStackTableEl=document.createElement('tr-ui-b-table');callStackTableEl.tableRows=sample.getNodesAsArray().reverse();callStackTableEl.tableColumns=[{title:'function name',value:row=>row.functionName||'(anonymous function)'},{title:'location',value:row=>row.url}];callStackTableEl.rebuild();rows.push({title:'Call stack',value:callStackTableEl});table.tableRows=rows;table.rebuild();}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-sample-sub-view',tr.model.Sample,{multi:false,title:'Sample',});'use strict';Polymer({is:'tr-ui-a-single-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.content.selection=selection;this.$.relatedEvents.setRelatedEvents(selection);if(this.$.relatedEvents.hasRelatedEvents()){this.$.relatedEvents.style.display='';}else{this.$.relatedEvents.style.display='none';}}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-thread-slice-sub-view',tr.model.ThreadSlice,{multi:false,title:'Slice',});'use strict';Polymer({is:'tr-ui-a-single-thread-time-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){const timeSlice=tr.b.getOnlyElement(selection);if(!(timeSlice instanceof tr.model.ThreadTimeSlice)){throw new Error('Only supports thread time slices');}
8965this.currentSelection_=selection;const thread=timeSlice.thread;const root=Polymer.dom(this.root);Polymer.dom(root.querySelector('#state')).textContent=timeSlice.title;const stateColor=tr.b.ColorScheme.colorsAsStrings[timeSlice.colorId];root.querySelector('#state').style.backgroundColor=stateColor;Polymer.dom(root.querySelector('#process-name')).textContent=thread.parent.userFriendlyName;Polymer.dom(root.querySelector('#thread-name')).textContent=thread.userFriendlyName;root.querySelector('#start').setValueAndUnit(timeSlice.start,tr.b.Unit.byName.timeStampInMs);root.querySelector('#duration').setValueAndUnit(timeSlice.duration,tr.b.Unit.byName.timeDurationInMs);const onCpuEl=root.querySelector('#on-cpu');Polymer.dom(onCpuEl).textContent='';const runningInsteadEl=root.querySelector('#running-instead');if(timeSlice.cpuOnWhichThreadWasRunning){Polymer.dom(runningInsteadEl.parentElement).removeChild(runningInsteadEl);const cpuLink=document.createElement('tr-ui-a-analysis-link');cpuLink.selection=new tr.model.EventSet(timeSlice.getAssociatedCpuSlice());Polymer.dom(cpuLink).textContent=timeSlice.cpuOnWhichThreadWasRunning.userFriendlyName;Polymer.dom(onCpuEl).appendChild(cpuLink);}else{Polymer.dom(onCpuEl.parentElement).removeChild(onCpuEl);const cpuSliceThatTookCpu=timeSlice.getCpuSliceThatTookCpu();if(cpuSliceThatTookCpu){const cpuLink=document.createElement('tr-ui-a-analysis-link');cpuLink.selection=new tr.model.EventSet(cpuSliceThatTookCpu);if(cpuSliceThatTookCpu.thread){Polymer.dom(cpuLink).textContent=cpuSliceThatTookCpu.thread.userFriendlyName;}else{Polymer.dom(cpuLink).textContent=cpuSliceThatTookCpu.title;}
8966Polymer.dom(runningInsteadEl).appendChild(cpuLink);}else{Polymer.dom(runningInsteadEl.parentElement).removeChild(runningInsteadEl);}}
8967const argsEl=root.querySelector('#args');if(Object.keys(timeSlice.args).length>0){const argsView=document.createElement('tr-ui-a-generic-object-view');argsView.object=timeSlice.args;argsEl.parentElement.style.display='';Polymer.dom(argsEl).textContent='';Polymer.dom(argsEl).appendChild(argsView);}else{argsEl.parentElement.style.display='none';}}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-thread-time-slice-sub-view',tr.model.ThreadTimeSlice,{multi:false,title:'Thread Timeslice',});'use strict';Polymer({is:'tr-ui-a-single-user-expectation-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.$.realView.addEventListener('customize-rows',this.onCustomizeRows_.bind(this));this.currentSelection_=selection;this.$.realView.setSelectionWithoutErrorChecks(selection);this.$.relatedSamples.selection=selection;if(this.$.relatedSamples.hasRelatedSamples()){this.$.events.style.display='';}else{this.$.events.style.display='none';}},get relatedEventsToHighlight(){if(!this.currentSelection_)return undefined;return tr.b.getOnlyElement(this.currentSelection_).associatedEvents;},onCustomizeRows_(event){const ue=tr.b.getOnlyElement(this.selection);if(ue.rawCpuMs){event.rows.push({name:'Total CPU',value:tr.v.ui.createScalarSpan(ue.totalCpuMs,{unit:tr.b.Unit.byName.timeDurationInMs})});}}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-user-expectation-sub-view',tr.model.um.UserExpectation,{multi:false,title:'User Expectation',});'use strict';(function(){const EventRegistry=tr.model.EventRegistry;function getTabStripLabel(numEvents){if(numEvents===0){return'Nothing selected. Tap stuff.';}else if(numEvents===1){return'1 item selected.';}
8968return numEvents+' items selected.';}
8969function createSubView(subViewTypeInfo,selection){let tagName;if(selection.length===1){tagName=subViewTypeInfo.singleTagName;}else{tagName=subViewTypeInfo.multiTagName;}
8970if(tagName===undefined){throw new Error('No view registered for '+
8971subViewTypeInfo.eventConstructor.name);}
8972const subView=document.createElement(tagName);let title;if(selection.length===1){title=subViewTypeInfo.singleTitle;}else{title=subViewTypeInfo.multiTitle;}
8973title+=' ('+selection.length+')';subView.tabLabel=title;subView.selection=selection;return subView;}
8974Polymer({is:'tr-ui-a-analysis-view',ready(){this.brushingStateController_=undefined;this.lastSelection_=undefined;this.tabView_=document.createElement('tr-ui-b-tab-view');this.tabView_.addEventListener('selected-tab-change',this.onSelectedSubViewChanged_.bind(this));Polymer.dom(this).appendChild(this.tabView_);},set tallMode(value){Polymer.dom(this).classList.toggle('tall-mode',value);},get tallMode(){return Polymer.dom(this).classList.contains('tall-mode');},get tabView(){return this.tabView_;},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStateController){if(this.brushingStateController_){this.brushingStateController_.removeEventListener('change',this.onSelectionChanged_.bind(this));}
8975this.brushingStateController_=brushingStateController;if(this.brushingStateController){this.brushingStateController_.addEventListener('change',this.onSelectionChanged_.bind(this));}
8976this.onSelectionChanged_();},get selection(){return this.brushingStateController_.selection;},onSelectionChanged_(e){if(this.lastSelection_&&this.selection.equals(this.lastSelection_)){return;}
8977this.lastSelection_=this.selection;this.tallMode=false;this.tabView_.label=getTabStripLabel(this.selection.length);const eventsByBaseTypeName=this.selection.getEventsOrganizedByBaseType(true);const ASV=tr.ui.analysis.AnalysisSubView;const eventsByTagName=ASV.getEventsOrganizedByTypeInfo(this.selection);const newSubViews=[];eventsByTagName.forEach(function(events,typeInfo){newSubViews.push(createSubView(typeInfo,events));});this.tabView_.resetSubViews(newSubViews);},onSelectedSubViewChanged_(){const selectedSubView=this.tabView_.selectedSubView;if(!selectedSubView){this.tallMode=false;this.maybeChangeRelatedEvents_(undefined);return;}
8978this.tallMode=selectedSubView.requiresTallView;this.maybeChangeRelatedEvents_(selectedSubView.relatedEventsToHighlight);},maybeChangeRelatedEvents_(events){if(this.brushingStateController){this.brushingStateController.changeAnalysisViewRelatedEvents(events);}}});})();'use strict';tr.exportTo('tr.ui.b',function(){Polymer({is:'tr-ui-b-dropdown',properties:{label:{type:String,value:'',},},open(){if(this.isOpen)return;Polymer.dom(this.$.button).classList.add('open');const buttonRect=this.$.button.getBoundingClientRect();this.$.dialog.style.top=buttonRect.bottom-1+'px';this.$.dialog.style.left=buttonRect.left+'px';this.$.dialog.showModal();const dialogRect=this.$.dialog.getBoundingClientRect();if(dialogRect.right>window.innerWidth){this.$.dialog.style.left=Math.max(0,buttonRect.right-
8979dialogRect.width)+'px';}},onDialogTap_(event){if(event.detail.sourceEvent.srcElement!==this.$.dialog)return;const dialogRect=this.$.dialog.getBoundingClientRect();let inside=true;inside&=event.detail.x>=dialogRect.left;inside&=event.detail.x<dialogRect.right;inside&=event.detail.y>=dialogRect.top;inside&=event.detail.y<dialogRect.bottom;if(inside)return;event.preventDefault();this.close();},close(){if(!this.isOpen)return;this.$.dialog.close();Polymer.dom(this.$.button).classList.remove('open');this.$.button.focus();},get isOpen(){return this.$.button.classList.contains('open');}});return{};});'use strict';tr.exportTo('tr.ui.b',function(){const FaviconsByHue={blue:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAC4CAYAAABQMybHAAAlrklEQVR4Ae2dCXwdVb3H5265yc3SpEk3ukEXCqVUBLT4Wm19oFKtaN0fKijy9CMguPBarIJsIiA8qsjTh7SllAoFeVBaEARkLV1ooXtL0yRdkqZp9u3uy/v/5uY/OZm75y659+acdnLOnP385zv/+58zZ2YMinTplIAhzsoDceaT2RKUQLwHIMFqh0V2ll0kn4XA6byv9/Vw834kX19e7keRQCzhRyk6bJJYRvD1YTXuhRdeqDj77LPPtNls400mU7HRaCzFFggEVJ/iSqhsicFgKIXUKL6bvB6fz9fj9/u7Kb4bPjaK67Xb7Q0HDhw49IUvfKEd2XUb7WpxHIYvXRgJ8AELkzRso1gmKrwkBfjG7373u5Zly5ZNKS8vn2G1Ws80m83YphPI0wnQUemQFp0IzQR9tdfrxXbI5XId6ujo+PCuu+6qXbNmjYfa9NMmngDoBmt+hIe944M53AUhwqwCvXTp0qJrr732opKSkk8XFhZ+imC+gIAryAZB0QnlJuB3OJ3Ot3p6el5/6KGHttxzzz0O6pse+GEP+3AGnKE2EhgG0tAFt99++4WkoT9tsVgW0DaH4guzAeg4+uD0eDxbaXuDNPzrt9xyy3bS8G4qB8BF6OOoKr+yDDfAB0B91VVXFf72t7+9lLT05QUFBZfQoYWtnA+ux+12v0ra/W+/+tWvXlq5cqWTBjUsYR8OgDPU8KGtjR9++OHHx4wZ8+2ioqKv0X4lbfnsWh0Ox9+bmprWzpgxYxsNFBpd1Op5bcbkM+AMtgr11q1bTz/zzDP/gy4Qv02zGtPzmehIY6MZmmq6UF176NChJ+bMmXOkD3QR9khFczY+HwEXwTbV1NTMI229FCYIXSTm43gTho8uUgMwYUir3zN16tR3qAIfbXkJej4dcIxF1dbkm44ePfqZqqqqpTT7MZf2pYsgAZqN2dTS0nLP5MmTX6EsDDrDHqFU7kTnA+Aa2BMmTDBv2bLliyNHjlxCZsgFuXMYhr6nZL7saGtru/eiiy7aUF9f76UeAfKcBz2XAUffVbgJbAuB/Y3KysoldONl5tDjkrs9oBtL+1tbWwH6UwS6/mZSzg0sVwHXTJG9e/deOGXKlOWksS/MOelncYdJo2+vra396axZs7ZTN0XTJYt7Hdq1XANc1dg0DNOqVatGLl68+DZa/3E1XTwCeOn6JLCly6ncU9+mNLnBZRLOYPAHHI5H2l5/8TdHbl3SRjUx6DkztZgrgKOfDLf5xIkT36moqLiLzJG0rAFJAomsKDp1W51S74IZnSIX8DcrXV3LlK/Oe5xqZPsckGc96LkAOPpowrZ79+5ZNK31BzkzQtKI4qxvV0dJTSLJ592kHKu7QfnPxXupFmhzbFkNeTb/tGsae/bs2Va6wr/lrLPO2izhTgLQZIuaaMp1yvTNyvNbb1HomFB1ZtrAUNYqymztGMNt2rhx44T58+evohs1n0r2+AyX8mnT4KIAvZ63lA82f1/55TX1FJ21tnk2As4zJObq6urP0BTgCmlri2TFDmcEcHQDtnlz4w+Uyz+Hm0Rsm2PuPGtcNpkomtZesGBBYXNz8210d+05CXfWsBLaEQNd5I+e8JyyYettCh0zyoBrpawyWbJFg2twv/jiixPnzZu3mhZFzQ2VqIyJRwIZ0+BiZzyeTcqebVcqS350nKKzxmTJBsDRB3WWZN++fXPpps060tpVouxkODEJDAng6GIg0KI0Hv+mcsXnN9FeVsyyDLWJwnCbadXfomnTpm2UcCcGc1blNhiqlNMmblT+9soi6hdmWKC4hlSJDiXgaBsCsNDKvysnTpz4JIWLaJMupyVgKFLGjHtSefrNK2kYFtpwjIeMs6FqWIOb7kr+Yty4cX+m2+0446XLBwkESHuPrPqz8uymX9BwhhTyoQBchZseQiigdcj30grAO+SDCPlAtW4MeLikdMQdyvqt9yp0rCl1SDR5pgFX4V64cGERvdhmRWlp6XU6scjdfJNAcfF1ysqNK5Q5C2F+ZhzyTF4AqHCPGjXKSjdwHqUHfr+ab8cyW8YzZLMo0QTgcj2jfO/S7ynNzS7KxtOI0UqkJC1TGlyFm3pccPDgwfsk3Ck5drlVidX6VWXFxvvAAG0Z0+SZAJzhtjQ2Ni6ld5D8KLeOjOxtyiRgK/6R8uy7S6m+jF14phtwmEBow3L8+PGr6FnJm1MmLFlRbkqgtOxm5am3rgITtIGNtJrJ6QQcHcdPkYUuKL9MsybLKSydlICijKxcrjz+0pdJFKzJ0wZ5ugBnuM27du2aT7ffV9JUIGCXTkqAJEAsjJ2wQlm1fj7tpPWOZzoAB9yo1/zSSy/NoLdJraMwFsdLJyUgSqBQGX/GOuX+FTMoEpCDmZRr8nQBbqIHgovnzp27mtaWlImjkmEpAU0CYGPmR1crF19cTHH4hU854KmuECcMOmo9derUAyNGjLiawtJlWAJZOQ8eTQb27keUyz7xM8qS8jnyVGpwNk0s+/fv/4qEO9oRlWkDJGArvVpZ89JXKC7lMyupApzhNm/YsGH6GWec8eCAAcgdKYFYEhhz2oPK3X+ZTtlSao+nEnDzxWRL0eNmj0q7O9bRlOkhEoA9ft6cR5WPq/Y4IE+J+ZyKSjS7m56jvK+srEzeqQw5epmNyDkbXBRPT8//Kl++6EaKSok9nqwG10yTHTt2fJpWB0q4xYMlw4lLoJhu5z/y3KepYEpMlWQBV7U3mSXFNN99H71YPfEByRJSAqIEwND4yfcpFyzgqcOkGE2mMGtvy2OPPXY9vZjnTLGfMiwlMGgJWCxnKktv/QmVT3pWZbCAM9zmxx9//IzRo0fj0STppARSJ4HykTcqN//3GVRhUqZKMoCrC6no6Zy7yTSxpW5ksiYpAZKA0WhTPj73dxRKakHWYABn7W3Zs2cPvjH5eXlApATSIoGi4i8oK56/tA9ysAr2EnKDARxlzJdddlkJ3dC5N6HWZGYpgUQlMH7SvbRWpYSKsamSUA2JAs7a2/ynP/3pOvrc9eSEWpOZpQQSlYDZPFn54a/xcDoDnpAWTxRw5DfRJ7DL6HUPP060rzK/lMCgJFA+8sfKZd/CqlRc9yXEbCKZWXtbli1b9gN6EX3loDorC0kJJCoBk6lS+ebVP6BiCU8bJgI48ppxU2fs2LHXJNpHmV9KICkJVFZdo3zsY7j5w6ZKXNXFCzhrb/PDDz/8HbK9x8ZVu8wkJZAqCZjNY5Wf3vkdqo4Bj8sWjxdw5DPRt3KKTjvtNNxhkk5KIPMSqBz1E2Xq7ITekBUP4Ky9LevWrfsGae9JmR+ZbFFKgCRgLpik3HL3NygUty0eD+Cq9h4/fnwBbTdIQUsJDKkERo+9QSkr47ubMfmNlQHaG5v56aef/ndaUDVtSAcnG5cSMFumKXc/fDGYpI35jCiXeADH3KOZ7lp+Sy6HjShHmZApCWA57dgJ3wKTtIFNQB7RxQIc6abLL7+cniEesTBiLTJBSiCTEiguWah8/isjqEkAHpXhaIk4M5BuXrp06ZfoOUtcvUonJTD0EjCaipSvff9L1JGYU4bRAEeaCjh9P+fr0jwZ+uMqe9AnAZgpo0Z/nfYY8IgcR0qA9sZmeuCBBybZbLZ/66taelIC2SEBKzF5zTJMWbMdDl5DXDTAVe29aNGib5D2jpQvpEIZISWQEQkYicm5C0QtnjDg6uwJPY72tYx0WDYiJZCoBMorGXDW4iE1hNPMOBMQb1qzZs0MmvueHlJKRmS1BCZYYZoOA2exTFd+dT/eTsuzKSFaPJwkNMDPO++8+fLiMvdA+Z8JJcqPN+9RGnocoZ0PBELjFF2cbjdYIEykvq4wWehd4APb05dBari4gaWCe/p8AT+uFOdT4j7aoJTB7oAGowFurqqqmicBV5QPmgLKX3b7lVbHANmRLLPVVSjnGT6hzFRa44dHHEqIHhQThXC8+YQiqQ66K9rnvakoD1O9DPiAJvSAo8vYjMXFxWZ6U9VFA3IP052fv+5VGntzBW4+SCYl4KtQ/L3tpCBJ0+WpC/hKLgKrvb29DDj41Q4WIvUOcaZHH310lslkGqlPHI77uQd38CgZTBbSVBVKXk+CGYwjS758/ywwS1sIz/oI1uCmmTNnflKaJ7l/OmuQG3migQ9xnvg0W2gaN/2TfYDzoLQDFw5wVYOT/T1XAq7JKacDKuS2csVg1B/unB6W2nkwaiiumEs7rMEBueZEG5zpN9Gt+QKyv+douWQg5yXAkPvtHYO78MxiCZisJXNsVRML7C3HndRN5li1w/WnNPaNDz744Ll0ZpRm8Zhk1wYhAYacjPJBlM7eIgHFUFryxZvPpR6q/Io9DavBJ0yYcJY0T0Qx5U84CDnNrtjb82dQZHqZysefRQPaRltEDc4JRlr7PS1/Ri9HopeAwWRWjLYKQiF/NLnBWgpmocGZY3XYoomCBOybaPXgNKnBVfnk7R8V8qLyvIAcrBoLiqaCXdoYcvXYMeB8KmPfSIBPUVPln7yWQD/kjEEOD7fABsBVfvtGoTIdYoOPHDnSXFhYODmHhyq7noAEgpCPUPyOTiql3QBMoIbsyGo0F04uInYdbW3RTZRbb711AnXZmh3dlr3IhAQYcpooz0RzaWmDTk1r0YLrwS4GwRaJuoMGmXrjOeecI5fHQiLDzKmQF9ILXFXIGYfc8q2jZ4JdBlyFnE9ZHolx1KhR8gJzmMHNw9Ugz8U7nrijWToyZCZFtMEBu7GoqGgiD1j6w08CKuTWUsXv6s65O56GApVdlWM+cnoNbqB3D+JzEdINYwkw5DlnkxvNYJetEdVEETU4Ioy0RLZEzoEPY7r7hh6EvIQ0eQ/FZP/sCpilPgNwKG0VbgyFdzTqCXC8ZFw6KQEAoxgLS3NoPbkR7GosIyxqcBxSgwQcYpCOJWDAOnIrKUbS5AH9M5GcKUt8OiEZcK1HbIMjQiVfAq7JRgb6JADIDQR5tpuuAaMGuGaisAbXIiTgkutwEujX5L2UnJ02uSEIOHdfZVpqcBaH9GNKIKjJQ6yAmOUylYHsa+6cprBZg3MfpA3OkpB+WAkENXmxEnDbs2+e3KABrvU9RINTih56LbMMSAlAAqomL7BRQFOU2SGYgMouOqV1jGHWIrxer50+8iofV8uOQ5a1vVA1OUEecOPtWdlhkxsUH/2saE5lmufBtVifz4erCOmkBGJKIKjJ8V0ETT/GLJPODAG/X8+uOg+O0087BaHB09kJWXd+SSCoyYuUgIceaB/qeXL/AA2uci3a4JB8QGrw/AIwE6NRNbmlcMht8oBftT40ZY2xsw2OsJogAYcopEtUAqomt5Am9w6dJg8ENPNagzysBs/2W7KJCl/mz4wE8OYsg3loNLnKbNAG1+DGqFmDI1LdpA2eGRjytRX19XAEecDr6kMqcyM1BNTrR41ltCxqcAYc6yOlkxIYtASCmhyP9WZ2doVmUXhtL1hWHWtw3lccDkcb1H22L6zROiwDWSmBoCa39mnyDHSRmPV7nG36lliDs1r3t7e31+kzyX0pgcFIQNPkGbrj6be3gV287Z95Vk0U7MCpkdXV1bXyIjMoEPk3eQmokJsKglOIAD1tm6J4Wo7UMsd9PQ+wBse+CvgzzzwjAe+TjvRSIwGGnB4qS02F4WohE8W58zk94CGzKP6XX3652+VyNdN6lFHh6pFxUgKDkQAgDygWxeDzDKZ47DJeV3PvvtfpVQChJgoKs80C+8Xf09NzRJopEIt0qZQAIFfou0GpXoUIVv0uxxHqq8ov+cxzyDShmsFut9elcmCyLikBloAKuZEm71Jsi/vdKrMi4GqTbIMz8cjgw0yK1OB8SKSfagkMgDwVlZMGDzg6oJR9tIFh5lmzwdEMR/pPnjxZiwjppATSJQHVJg/QRaffm3wT9Gvg624GswPgRsXhNLh//fr1u2nRFYCXTkogbRJQbybCXEl2diXgCzh2bthNFQHwAZAz4BgEgEaijz4C29zZ2VkjzRSIRbp0SiAIOT7MgCnExDeyThS/s7uma+vaZqpANFHUbusBZ8i9ra2tWyXgqozknzRLQIMcF56JOiLc19O6lYrB1hmgvVGVCDj2VQ1Ovq+mpmaLBBwikS4TElAhx7vJE55dIWhb6rZQH6G9WYNrXRYBh/ZmDe5buXLlVj85LacMSAmkWQIa5Im0Q4x2bXkUGpzhZo7VWsIBrp4JGzZsaCc7/KDU4olIW+ZNVgL9kMe2x4P2d+dB+86X8NFP1uARAUffWIPDnvHSdOE2CTjEIl0mJRCEPA57nAj3dzXj468qr+SzDa51V9TgiGTAcTZ4yQ7fLAHXZCUDGZSABnlUm5wgba3dDFZpE00Uraf6Bx5YveNM8C5fvnzbJZdc4iwuLqYH7Yavq+ytURq70rRIKIvEGlmZAYswDjZCRBchLUJ0ULeGqYzaQL8AfEj/PA5nz8u/Zw3O2ntAC+EAR0bVnnn33Xe7Gxsb35gyZcqlxhR9mGj/oU7liWfrlPZOd5jRZGfUbK9bmUnPGIYIeEB3B8i1PyUKBHTo+vPFEYrcfpR6orYfR6NZmiUQ8Cs9XU1vbDiyEysI2f5myLVe6wFHAqSlanDyPTt37nz+9NNPTxngv/3DHqW5lV4tkGPO67ErPi+9pgw/mYAGfjyO8zJo+vL6dH2dmc6vb1/fP31/9Pn1+7HK69P15fXt9eUP+LxKR/OB5yk7flrFOfABNehtcCSKgHuvu+66t2n5bGtk7TGgvpg7uQg3BmW22BSTGa8pIwehx+s4L3wxzOXFOM4j+sjHecSwmEcMi3nEsJhHDIt5ENY75IXjMhxWI+P4E6u8Pp3bYV/fHsWDRb/f1Vq3b9XblBzxAhNFowEOte+hlYWO+vr6f6QKcDSaq06F3FQYdeUEow9fDGfLmMU+ieFI/RPziOFU5Y9UT/T4gOJ2tP/D7e7Bmz+hwcNeYKKOcIAjHiaKZqa8+uqr6+l9KYgf9g6QG/sgxwHXbxAQgyCG9fmGal/skxiO1B8xjxhOVf5I9USLV8j+7mjd/Rz1RzRPwGuIiwQ4zBScFaDas3Tp0r0dHR2HpRYPyo8hD+7Jv5mUABj0eeyHjx58Yh+1y4CDVTAb4qIBzpCjEjfNiW+Qd+775dcPeTRdI9NCf+OSlQl98M3RvAFM0sbmCVhNCHAcSah8TYuvXr16PT2MjAql65OAapPjXXzRnP4iCnk5Llw5ToMvhsPlzYU4cQxiOFLfxTxiuC+/3+/xNB9/cz3tito7rHmCIpE0ONJwRrAd7l61alXjkSNHXpBaHKLpd5hZMfELJ3FA9Buy8oESw/p8vC/mEcOcnmu+OAYxHGkcYh4xTPlx38DtaHnhZP3rjZQEDR5xehBF4eIFXDVT1q5d+whp8YhnS7DK4fdXhdyEd/FJl04J+ANef3PDpkeoDTZPkgIcfR2gxe+7776aY8eO/VNq8dDD2A95sjamLE8/eSTggRsuLj2Otn821D5fQ4lxaW8cpWgaHOnQ1pqZQmHXU0899VePxxPWoEeB4ewYchwadhzmw4V4jhPDnJ6oL9YhhuOtRywjhuMtr88n1iGGOZ8YJ4Y5PZKv+H2BthOb/0pl8F5mEfCoFkUswNEHVICLTdVMufPOOw+QFn9TanGIJtTBHjeSucIHCjkQZsfhSOmcL14/2fqSLa/vZ6z6YqXr68M+1p24nK1vHq3++wHaZfMETEaFG2XjARzaWgOcwq4XX3zxYdLiKC9dGAkw5Pqf2czso0OMkRhGXG5u9N5vpb3p/YdpAKy9AR+YjGlJxAs4a3GcPa4lS5bsOnHixGapxUkaEVwQcnqrasYdw80wowMcl/HOJN0gtLfb1bH5yMHHd1FlDDhr75QAjk6yFsdVKyB3bty48UE5owLRRHYa5JgSY8dhniZDPMeJYU5P1BfrEMOR6hHzIBzLcV8j1aePR31cRgxzPjFODPel+xWvv6N5x4OUhCWoYA8MxqW9KV9cJgryAXBocQbcdeONN+6kd4k/J9eoQDyRnQq5se+Fk3yg2UcxDvcdULUmjotcbeQULhtvffr8XC6Sj5a5TORe9KdwXq5PXz5KOn0WUHH2nnyudt/qnVSMtXfMqcH+xuMHHGVYi6sXm2jwpptuWk4PJrfLNSqiSEPDGuShSTImggTUNSdee/uxA2uXUxaGO27bm6uNxwbnvKzF8fOABp2vvfZa89atW/8oLzhZRJF9zVyJnEWmCBKgb14qPZ01f2xv3o03VsE8AXNx295cVSKAo4yoxVXIFy9e/Aw91rZLXnCySCP7Jpo+NNLnPMQvHXAYfjz/UDuXEcNcVowTw5yeal9sQwxHakfMI4bF/HhiyuPq2LV/293PUB6GO2HtjfoHA7g4o4LGnWvWrLnL6XT6pKkCkUZ3gNxAL4HnA4rcCMfrOG+k8rHS420n3nyJthcrPxgK+D2+5oa37qI+qHyRj4vLhLU3xpAo4CjDgOOMUrX4HXfcse/AgQPr6I20SJcuhgQYcvVijS++pN938RpQHD0n1h378Cms99Zrb7CXkBsM4GiAIVenDGnfccMNNzzU0tLSKE2V+OSvmiuYXZFOkwDmvD2e7saa/X99iCLxOBoAF7W3ljfewGABZ1ucpw2d7733XusTTzxxE33+xCNNlfjED3vcqELON2WGr0+WCS03cXtaTmy6qbutppUkyHAnNO+tl/xgAUc9DLmmxWnacAeB/hDdANK3I/cjSCAIebi3d0QokKfRZHcrvZ01D9XtW72DhqjX3mBtUC5ZwGGqaFqcws5LL7109dGjR9+WN4DiPx7DHXLc0HE5Wt7es/m21WCob4PiTOimTjiJJwM46gPg2PiCE2ee/Wc/+9lvyB5vkvY4SSNO12+uxFkgT7LB7vZ6uptq9678DQ3JThsYggkAppgvCg7OJQs4WkUnMH2CMw6dc9ANoJNPPvnkL8ke90p7nCQSpzPS9CFscryHbzhsEEvA7/a2NLzzy46WXSdpV+WH/KQuLFEvu1QAzrY4mypqJ+lVE9u3bdv2Z9jjEnIWd2wfkBsM+W+T9813093K6j/X7l+9nSQjwp3UhaUo5VQAjvoY8gGmysKFC1fSgqxX3G6ckNLFKwEVcu3rY/k5swK729Hb9Mqed29fSXLRmyawCAZ9YSnKOVWAo06GHDTjQgGdti9atOjXdNH5noScpJGAU00VI74+ln+OXv2gOJ0t7x3cduevaXQqJ+TztGDK4IbkUg24aI+rkNNXIrquuOKKG+kBiYNyURZEHr/LR8j99OFXt6v94KH377/R4WjtImkAcBFuMJQS7Q1Jp0NFoHNiBw0Eube2tnbT/PnzFzz3UtMIA76mJV1cEjAYcIhInLgTkuMOZonH3XW8dvdff9zZur+JhtNLGwMO8zal2hviSgfgqBduAOhki7u6u7u3NHWO+yxNidkk5EEhxfM3CHmfSHN0zQq98Fjxunta6w+v+9GphneO0Wj0cKdUc7Nc0wW4qG608AcffNBrMlvfLx0x5XMGo7lAQs6HIbbfLytNnLELZUkOrO2mF2b2nDz64rX1hzccpG7p4YbmBuApd+kCHB3lI8G+2vnOlr0dBYVV+4tKxl1MswWW/gOX8rHlXYUsq+C8ChaeZv8/vOqYvo5hb2l48+d1+9fiNrwId8rmuyMd7HQCLrYJyDXQ20/tOGUxF+6wlU1aYDQWFPGBEwvIcHgJ9MtKE2f4jFkQq9rcnu72xrp//OTIgccx181wY8477XBDBJkGXAO9o2VPm+JzbioZMXWewVRQ2n/g0C3poklgoKyyc57cTxeUXnfHCVrXfU1D7fr9NJ4e2gA4w530OpNoMuK0TAGO9ljlaJB3tVd3u1yNb5ZVzPy40Wyt7L+Y4u5JP5IE+iFnsUbKmfl4zHN7nG3VdXtWXNvU8GYd9QBgZxxujDyTgKM9OAZc9e1dDY6ejoOvl1fNnm0yFY1TaApR/QhoMK/8G0UCGuQGEmUWKHK83jhA89z0gvoPDu1cfn1b864T1H29WZIRzc1iyzTgA+CmTqj7Lkeru6156xsVoy+cQk+fn44DJyHnQxTd1yBXRRk9bzpTsSrQ7/MoLvvJN/a/d9uSno5jLdQew40bOVghmFG4Md5MA4424UJA97rtvub6f71VPupcq9lSNttgNBLj8oZQUFzR/w6UU+ZVOeD2eV2B3u7ax/a9e/PvXI7OTuqxCDcuKDMON6Q2VICjbYacJ/jpHYte/8mjr35gtVUdLCwaPYfmyunDlFKbQ1ixXBByiDRzTl0RGPBiPXd7S8Pbyw68d+/TdAz5YlK8QzkkcEMSQwk42mfI4Wugt53c3uB0nHyttHz6THo4dywOnjRZIK7ojiHPxOw4lg4EYJI4mnfW7V95ff3h9bupd9DarLlhkohTgZk9+/pElS2AA27eVOjt3fW9p4699kr5qFkmc0HZR6TJ0nfEYngDzZUYmQeZrN6ZhEnSeXj1nk2/vr2nsw5vn4LGZrj1i6cG2VLyxYYacIyAz2zW4hro9HPnO3nstZ2FhZX7Cm1j5tCDAEWkyqU2j3HctV+7FJvjWE+CWRKvt6utpeGtX+7f/vv/6zNJGG7McfPFZNpuv8cY/oDkbAAcHRIhF0FXw21N2084HfWv2UonjaHPhEwJaikJ+oAjqdvRINfFD2ZXfSILF5I+Fz2kUP/akT0rlhyv2bCX6mKNDcD1N3CgqIbc4RzPJof+YOoEJx7eioNPl+FDlHSxqdgQnj77h5+oGPeJXxQUlE3Cg7qZ+EmmdnPWYYYjGRec/nMrbnfnsbaT2+6v2f3wZqoPJghDzVOAvNwVDbLCSqbplJTNNsAxKP5hBeR4OBGfSQDkDHpRYWFFyYzzf/Gd4oqpV5JGt+IZxlRqLGorr1zwmdjEmOMZEp/X4erpqFld/f4Djzud7ZghgabGBrDZ1sYsCa/lTqwhKphOly0min6MLCT42KAV2Kbzeb1Ob9Pxf+32utteLSqZOJ4++jRJmi16Efbv95/8rDsi++pzFX3mCM1kvXPkw7X/Vbd31eskc3H6D9pbhBvHJ7mfiv7upjSUjRpcHCD6xyYLa3PW6DBbVM0+4/yffKq88iPXmq0jJuOdf/J2vyjC/nBQk/fviyHRzva6u462N+96qHrng29RHtbUrLUx9cc3bljpsEISq8yKcLYDzkIC5Aw6bHNAzva5CrnZbC6c/pHrLykbefYVZmv5NAk6iy66PwBsV8fhrrYDj1Xv+uOr9GYyBpt9ntcWbe2s1NriiHMFcPSZtTlAhzZn0AE4ww7fOuP86z45ovLcKyzWkecEL0RN0kYnwYguaGP78MJLetl8277O1j2Pffj+n96mPAAZG8BmHxobYPMdSYCdtVqb+qa5XAKcO40+49qBQYc2Z42uAk77qj919tUfqxh1wZXWosrz6cEKslxQbPhOLwZNFKz4I7D9broL2fp+e/OO1TW7H3mPBMNgi75ojgBqvpCkYG64XAQckkW/sYlmCzQ6Ty2KoBeccc53Z5eP/uiXrIWjFpjNRTaD+no0FM1/2DWo6cIRb3D1eh12l7P5jY5TH6yv27cGt9cBsQg1wtDWvIl2dk5obeq75nIVcB4AQ86gs+nCoLNmV7V8YcnY4ikzvr3ANuKMz1mLqi4k0E3q+7nVu6OoIn+cOv9NUyJ4+ACfBKG3t263d9a9XPvh2jecPSdxg4a1M4BmyBlqnvaD1s4ZcyTc0ct1wHlMetBhi7CNziYM+6qmrzrtwtHjJi/6rK1k/OfoiblpAJ1hz0XNzpoai6AANTafu/uwvafh5cajG//ZcmL7KZIJA8xwiz7SoK1ZY+c02DQO1eUL4OJ4grZH0E6HRmetDsAZetE3T5q6eHr5mPPmWQurzjcXls8i0K20VFcx4iWYeA9JFpoyA4CmJatYI0JQu7zOjr0uZ8v7HU073zlW82w1dR7aGPAC5nA+0llj8z2HnDNFaAxhXb4BzoMMUtlvo0Ojs1bXA69qdEqHby4sLLeOm7p4Vln5tAsshRXnFxSMOJseirbgAhXPjAZvmrDYgn7/jRRuPjV+EGLUxbzRBSKWqdJ7RnChGKBPftAt9AMeZ/v7XR2HdzTWPLvX6eyAycFQA2jeGHBOY23NGhuNcEMUzA/HRyo/RhM6ChF0aHbRVhe1O0POceybiovH28ZNW/SR4pJJ55oLiieZzLZJJottPFY2BoHHWnWAT1Wr0owkUn18JJYoHv9xUQiQNd/roJfnNPi89mNed++x3p5jexoPb9zV29uAu4qAlDUx+ww2fI6Dz0CL9nWkzlD23HZ6qef2aKL3HmNl84VBZ83OQEfyOR98lDWOnjB3dFnFOZOttjGTLIWlk81m20RaMlBpUEw2Ay2QoRPARg1SffQXF7F9vtpFaOEgxbSrhuhDAV57gBZ+BBSf3e9ztXq99uMeZ/dRl73pWFf7vqOn6jfBhmYoRe0rwhsuLOZlu5p9tTv5/Gc4Ac7HEWMWN4ZW9AE6Q83Q8z6fHKKvQq+r10DmjrmoZEKx1Ta6yGItK7aYy7AiUvF4u+weV1evy37K4eip7yWzAmBCi4obwwyfta7oI8xAM8TYF/NwWbHevNXWNPYQNxwBF4Uggo4wg8q+CL0IuAg350Ec18H1oi0xjH3RMXiI4zBrVwZcDyxDy1DzPudnn+tjX2x32IQhfOmCEmBZMJDwGXQxLMYBbqSxz5AjDg4+b7wPH9DBMXz6fUCKOEAs+gwv+0gTw9jHBsd+cG+Y/uUDMUyHH3XYLBsGNJIvQq3PgwbEesQGGUDRR1i/Mez6eHEf9WJfOp0EWPi6aLkbQQIsLwYZ2aLFiekRqhwAJkPK8KJMtLhIdcr4PgnwwZECSU4Cejnq91G7Po7BFVvWx+n3xbwyHIcE/h9VLWRYHWXC/QAAAABJRU5ErkJggg==',green:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAC4CAYAAABQMybHAAAltklEQVR4Ae2dCXQcxZnHR3NoNDp8SD7kU7bxFXCchBhMYoLNmhCcOBBykGw2gYTkPV6AhGXD2sTZJQcJG3jsgw3hscuCsTEsOAQW1sbY+MAHxpYtHzI+5EOy5UMStnWPZkZzab9/j75WTWt6NKO5Z6r82lVdXV1d9e/ffPq6uro7zyBDIhXIi7DyngjLyWJRKhDpCYiy2pwoztrpxSwCb+d1bayFm9f1Yu3+cj2MAgOJH2bXnNnEGiHWppW8d999d/inPvWp6YWFheNMJlOR0WgswdLT06PElFdM+xbn5eWVQDXK76TI7vP57H6/v5PyOxFjobwuh8Nx4dixYye+9rWvtaK4ZqFVNY/TiGUIoQCfsBCbcjaLNVHgJRUQG3/4wx9ali1bNmXYsGEzrFbrdLPZjGUagTyNAB2ZCLXoh3CJoD/p9XqxnOju7j7R1tZ2/LHHHqtbtWqVh47pp0X8AaAZbPmRzvnAJzPXhRBhVoBeunSp7b777ruuuLj4xoKCghsI5s8TcPnpIBT9oNwE/D6Xy7Xdbrd/8Oyzz+5+/PHHndQ2LfA5D3suA85QGwmMPLLQ+b///e/nkIW+0WKxLKBlLuUXpAPQEbTB5fF4KmnZShb+g0ceeaSKLLyb9gPgIvQRVJVdRXIN8CCo77777oI//vGPt5CV/n5+fv5NdGrhK2dDsLvd7k1k3f/n17/+9frly5e7qFM5CXsuAM5QI4a1Nh4/fvza0aNH/4PNZvs2rZfRks2h2el0/u2TTz55dcaMGXuoo7DoolXPajcmmwFnsBWoKysrJ02fPv3v6QLxH2hUY1o2E63XNxqhOUkXqq+eOHHitblz557pBV2EXW/XjM3PRsBFsE21tbXXk7VeCheELhKzsb9Rw0cXqT1wYciqP37FFVd8SBX4aMlK0LPphKMvirWm2FRfX//lESNGLKXRj3m0LoOOAjQas/Py5cuPV1RUbKQiDDrDrrNX5mRnA+Aq2OPHjzfv3r3766WlpUvIDfl85pyG1LeU3Jd9LS0tT1x33XVrzp8/76UWAfKMBz2TAUfbFbgJbAuBfUdZWdkSuvFyZepxydwW0I2lo83NzQD9rwS69mZSxnUsUwFXXZHDhw/PmTJlytNksedknPpp3GCy6FV1dXX/OGvWrCpqpui6pHGr+zct0wBXLDZ1w/TSSy+V3n777b+j+R8/pYtHAC9DrwIO9xHD5c5XDF5fS0ya0MWo3+nwvrBx47nfLLlvKypj0DNmaDFTAEc7GW5zQ0PDD4YPH/4YuSMJmQMSExVpsPPxhjsMHt/FuLWkp8dwqb3dt2zhnD2vUKXsnwPytAc9EwBHG01YDh06NIuGtf5DjoyQGmHC4XMLwmwd/Caft2fnmXr3A3d8Zf9hqgXWHEtaQ57Of9pViz179mwrXeE/MnPmzF0S7sEDGuueJnPevCuusO76sPq6R2bPHm2l+sy0gKG0NZTp2jCG27R27drx8+fPf4lu1NwQ6wnKlf0TZcFF/bwe//Z9uxw/vvfuj89Tftr65ukIOI+QmE+ePPllGgJ8UfraIloDp5MBOFoB37zxQvdPvr5gP24SsW+OsfO0CenkoqhWe8GCBQWXLl36Hd1de1vCnTas9GtIXp5h5LgJ1re3H7z2dwsWjMTUYlwrpZXLki4WXIV73bp1E66//vqVNClK3mLvh1RkGcmy4GJr3B7/zkOVXXfd86PD5yg/bVyWdAAcbVBGSY4cOTKPbtqsJqs9QhRPpqNTIBWAo4U0l+1yw1nXd29duH8nrabFKEuqXRSG20yz/hZPnTp1rYQ7OpjTqTRNUhwxtsK69t3tcxZTuzDCAsOVUiOaSsBxbAhgoZl/d02YMOF1SttokSGDFSCabeVj819/v3LOXdQNCy04xynjLFUHVuGmu5K/HDNmzHN0ux2/eBmyQoEe84gRluc2V13zS+pOSiFPBeAK3PQQQj7NQ36CZgA+Kh9EyAqqgzpBQ4h5w4aZH6URlidwrmljSix5sgFX4F60aJGNXmzzYklJyf1BqsiVrFOgqNh0/5ubJr24aFEp3M+kQ57MCwAF7pEjR1rpBs4KeuD3W1l3NtOkQ6kaRQnXfZfL/+Y3bqz7Ed3f6KZyPIwYbpe4bEuWBVfgphbn19TUPCnhjsu5y6hKCgqM33pr4+QnwQAtSbPkyQCc4bY0NjYupXeQ3JNRZ0Y2Nm4KFBab7tlSdc1SqjBpF56JBhwuEI5hOXfu3N30rOS/xk0tWVFGKjB0mPlfN1bOuRtM0AI2EuomJxJwNBx/iix0QfkNupJ+mtIySAUMpSPyn16z5fPfICnYkicM8kQBznCbq6ur59Pt9+U0FAjYZZAK4J6+aczE/BffWn/1fJIjoXc8EwE44Ea95vXr18+gt0mtpjQmx8sgFVAVIEgKJkzJX/2fq66aQZmAHMzE3ZInCnATPRBcNG/evJU0t2SI2iuZkAoIChiNeUM+O6d45cLbxxVRNv7Cxx3weFeIHwwaar148eJTQ4cO/SmlZUiyAuk4Dh5Ogs5O3wsLPrfnQSoT9zHyeFpw/FhQn+Xo0aPflHCHO6Vym6hASYnpp29v+dw3wQ4tYChuhjdegDPc5jVr1kybPHnyM2IHZFoqMJAC48Zbn/nzi1dNo3Jx9cfjCbh54cKFRfS42Qrpdw90OuV2rQLwx6/9QvGKhQsVfxyQx8WKx6MS/EgUv5vmGTw5ZMgQeadSe/aSvJ5pPrgoj73D91/zr97zEOXFxR+P1YKrrsm+fftupNmBEm7xbMl01AoUlRjvWb1u9o20Y1xclVgBV6w3uSVFNN79JL3LLuoOyR2kAqICYKhisu3JBQvG8tBhTIzGsjNbb8vLL7/8C3oxz3SxoTItFRisAhaLcfqyP435Oe0f86jKYAFnuM2vvPLK5FGjRuHRJBmkAnFToLTM8tCfnpk5mSqMyVWJBXBcWFro6Zw/0Z+Vwrj1TFYkFSAFwNQX5w/5N0rGNCFrMICz9bZ8/PHH+MbkV+UZkQokQoGiQtPX/rb+M7f0Qg5WwV5UYTCAYx/zrbfeWkw3dJ6I6miysFQgSgXGV9ieWHjrqGLajV2VqGqIFnC23ua//OUv99PnriuiOposLBWIUgGLJa9iya8q8HA6Ax6VFY8WcJQ30Sewh9DrHn4WZVtlcanAoBQYXmr62fe+NwGzUnHdFxWz0RRm621ZtmzZT+hF9GWDaq3cSSoQpQImU17ZnfeO+gntFvWwYTSAo6wZN3XKy8vvjbKNsrhUICYFykZa7r1mwUjc/GFXJaL6IgWcrbf5+eef/wH53uUR1S4LSQXipIDZklf+m99N/AFVx4BH5ItHCjjKmehbObaxY8fiDpMMUoGkK0BW/OezZxdH9YasSABn621ZvXr1HWS9Jya9Z/KAUgFSID8/b+KjT02/g5IR++KRAK5Y73HjxuXT8oBUWiqQSgVGlVseoCnZfHdzQH4HKgDrjcX8xhtv/B1NqJqays7JY0sFLPl5U59bVbEQTNLCfOoKEwngGHs0013L78npsLo6yg1JUgAMjhlb8D0wSQvYBOS6YSDAsd30/e9/n54hHrpItxa5QSqQRAWKh5gWffWbY4bSIQF4WIbDbcQvA9vNS5cuvY2es8TVqwxSgZQrYDQabHffU34bNWTAIcNwgGObAjh9P+c70j1J+XmVDehVACyOLs//Dq0y4Loc621g59301FNPTSwsLPyiVFcqkE4K2ArzvvjPv52GIWv2w0P64uEAV6z34sWL76BfjF65dOqzbEsOKQAm5/9diWjFowZcGT2hx9G+nUO6ya5mkAL0WBsDzla8X+tDWWa+uDStWrVqBo19T+u3l8xIawUsplFp3b54NY7mik/703/MxNtpeTSlnxWHk64NKuCf/exn58uLS6086b8+3Pqg4WDNHw0O5yf9Gkuf9+sX6N3twXmaVWwMkUWv+Q7eLVShHk1mv310Kg9Vrt/h/PStQoN/PlVxhBYYa7AbVCwc4PQxzxHXS8ANhkZ7jaGq8W8Gh6ed9MuM4C2ebrD7Jhp6CIJsDr481/UGw4nnqY8MeFB3tYDjF6BY8KKiIjO9qeq6oNI5urL+1L8bOt2XM673PrPf4OjwZDXk/p6e68BqV1cXAx5kxUP54MgzrVixYpbJZCrNuLOagAZnItyQwWQ2GgppXlKeEec8OwON75V+/YErZlHv2A8P6qieBTddeeWVX5LuSZBWGbnCkDs7PQa/PyO7EL7RZI5HTCj+EhXaTwt7IKpfprXgintCBU3kf8+TgIfXNlO2AnJbicVAt7izLoBR2xDLPOoYW/CgP1eiBWf6TXRrPp/877lZp0YOd4ghhyUPNUKRydJYbaa5IyYU5l8+53BRP5hjxYprf9NYNz7zzDOfpl9GSSZ3Wra9vwIMORm9rArUn5Kbfzzt09QphV+xcyEt+Pjx42dK90SUKXvSDDksedYEwnrYyIKZ1J89tOhacN5gpLnfU7Om87Ij/RRgyLPJiFlsZjALC84cK/1GBgdswLqJZg9OzabOcwdl3KcAIC8oNuMtrn2ZGZpCHyxW0xXU/H4Xmgw49xLrRgJ8Sob2VTY7CgVUyLNgnLwXcIXfXgkUpvv54KWlpeaCgoKKKHSSRTNYAQXyIrPB1eXVzOLIrE5ZrcaK0lKbuaXFCbDZYCsuCfcEmcbf/va34ym2cqaMs18BhjyTZ/3TmKB17ncngV1Y8X6AM/XGq65SPsaZ/WdV9jBIAUBuLSSfnPFgIjIoHj2pCFO7xR6oFpy7YRw5cqS8wAw69bmz0gc5cMiwQE0uKrH0G0kRfXDFQbfZbBMyrGuyuXFUQIGc3p/Q7fSRT65O6YjjERJXVX6hCewqHPNRsILAFjyP3j2Iz0XIkMMKBCA3ZdwQosloBLsqyziFogXHBiNNkS3OhrFRdE6GwSsAyPPJkrvJkmeCHVeYNeUBcPbBlc7ziko9AY6XjMsgFVDmkysXnqAjAwIN54NdlWWkRQuOLuRJwCGDDKyA0ZRnsNrM5JOn/zi5yZzHgHPz1VEUZCjkS8BVbWSiVwGGXCEkjVUxGlXA1b85bMHVDAl4Gp/BFDaNIXe7vGk7uEL+iOheK0zzKAqkkxY8hQBlwqEBeX4BJmilZ2uNRuX6UeGYW8gWnNelD85KyDikAgy5uzv9xslNRvUiU217PwtOW7TQq4VlQioABRTIrTQzNc1MeU9eD9gNacHVPzper9dBH3mVj6tJlsMqwJB7yJKnyzg5vTXAITRaYZrHwdV8n8/Xpa7IhFQgjAKAnOZhp83gSo/foGVXGQfHD1D9EcKCh+mT3CQVCFKAIfe6yZKrFAUVSdqK39cjsqtwLfrgaEiPtOBJOx9ZcyBAbs7H3JUUd8mnWPCgn5l4QalskICn+CRl6OEVyMld8brp9VkpMuU9fj+7KCrkIS14v9fpZqjostnJVYDuJJIlJ6RSYMrBrK9HAVyFG71nC45MZZE+eHKhyLajMeQ+jz/phtzvy4MPrrIMbUULzoDbs0102Z/kKgDITRZj0g253+8Huwy40mm24KoCTqezBeZezglXJZGJQSgAyA0EOSx5MgLcfp+7p0V7LLbgTL2/tbX1tLaQXJcKDEYBtuSD2Xcw+zg6u8EuflHMs+KiYAVByTx58mSdvMgMCCL/j12BpEFO9Laed9Yxx70t72ELjnUF8DfffFMC3quOjOKjAEOeyMEVfOyqevtFLeD9RlH8GzZs6Ozu7r5E81FGxqd7shapAI1mwCen5zz93sT45H5Pz6UTey52ktb9XBTor1jv3o1+u91+RropkEWGeCoAyI0EebyHV8Bqt8t7htoKuEMCjn4AcqWAw+E4jQwZpALxVkCBnG7tK5DDZ4nT4nb5wawIuNJ09sFFC+7DSIq04PE+tbI+VoAhj5dPjiHCbrsXgNNTGMEWXBwHVyFvamqq48bIWCqQCAUAeQ8ZcJoBGHP1+KF0NHvALCw4c6zUG8qC+995551DNOkq9iPH3HRZQTYrgJuJmKQVa6CvOffUfNhwiOoRXRSFXwYcx0AGCvjoI7CX2tvba6WbAllkSKQCsUKuXGB2eWsr37twidopuihKs7WAM+Te5ubmSgl4Ik+trJsVYMgHMz0E/ndXm6eS6qI3E+m7KHwsxYLTiq+2tna3BJxlkXGiFQDceDe5EiMd6UIPzLU0OneD2d4FDKtBz4L7li9fXkmzs4IKq3vJhFQgAQow5NFUTYT696w5DwsuuieK/416QgGu/BLWrFnTSn54jbTi0cgty8aqgAo5rj0HWHB7vtvhqTnyUVMrlWYLDrhDAo62YQOsNvwZLw0X7pGAkxIyJFWBgHsy8CHhf9tb3Pj4q8IrxWBXhRs1iBYc6ww4fg1e8sN3ScAhiwzJVoAhJ1dc/2YnNaq5oWsXRQBcdFHU5oo3epAJwBly79NPP73npptuchUVFRWoe+RgwnXRZmh3YBQqu4OuMQuyiX0a6GQHCuhs1D1GX7VBKVhp7APgtfvSS4dcm1bUsQVn6x105FCAo6Diz3z00UedjY2NW6dMmXKL0ag19kHtiHil9nyj4b2dVYaOLvEVFhHvnpKCXs9XDUa3m44dpF1QW7TiB23UWdHdR+cw8DlDBlCgE/S30A5h9tOpLubsaG/r6JWnJ+gNrtbmrRdO7sYMQva/GXK1nVrAsQGaoCDMvufgwYP/N2nSpLgB/sJb6w0tHWhTZgV3t4teidBNjYbkkEhPem2/uCyjpt1fu127f7LLa4+vbZ+2Pdry2vWB9tdu1+6vPV6gvN/vMzTUHv8/Ku2hBaz2gxs1hTLLqIEB995///07aPpss661QS1RhEyEG93LtxbQKxH4+7gQPdLAZRGLad5fzOMyYoxyXEZMi2XEtFhGTItlxLRYBmltQFkE3ofTSmYE/w20v3Y7H4dj7fECrorP42mu2rZhB23VvcDEnuEAh9n30MxC5/nz59+LF+A4aKaGAOT5wbxpO6M9X9jOedqyqVjntujxo21Tostrjxfheldnx3tuu91JxWHBQ15goqpQgCMfFpytuGfTpk3v0PtSkJ/zAZBbLL2QMyRiDIUYCjEtlkllWmyTmNZrk1hGTMervF49YfL99JbNpvrat6k5onsCXvsFPcDhpuBXofjhS5cuPdzW1nZKWvGAfhaGvJ+cMiPRCoBBj8t16tCOTUfoWAw4WAWz/UKoi0wUQmGGHJW4aUx8TVlZ2YP0DR9sz/kAyBG8HsgjQ7IUAOD2jvY1dDwMa0F8hjsk4HoWHO2FyVet+MqVK9+hh5Hl2YQyvQGQm/PJXQkXcKcCge9YcFrJDPFftOVDVJFWWdH2Z4Dy9PpjT92R/e9QH8EiPAwwGtI9oXxdHxzb8ItgP9z90ksvNZ45c+ZdOf8K0vQFC42sKJAzwNoYRfmkiWltOV4Xy4hp3p5psdgHMa3XD7GMmKbyALKrs/3dMx8faKQkLDgAB6MhrTflRww4fi3uV1999QWy4rq/FlSYi0GB3GLJxa4ntc9+r9d/5tjHL9BB2T2JCXA0PsiKP/nkk7Vnz559X1rx/ueVIQ9z8a+OJMsygYGmaHTAXVdnZ+f7x/bsqO0FfEC4cZbC+eDYDmutuimU7v7rX//63x6PR/dPAnbK1QDITcoQYq/fDSHwp5hjMR3I7b9d70+3Xj7XPdj6Yt1f266B6htou7a+3nW6c9lTf/Lwf9PuuJ0suidhPYqBAEdzUAEcecVN+cMf/nCMrPg2acUhTf9goYtOk5ncFT5RKII0B07rbedykcax1hfr/tp2DlTfQNu19dE6Rk4c9o5th3d+cIxW2T0Je3HJ1UQCOKy1Cjilu9etW/c8WXGuQ8YaBVTINflydXAK+H007+TUyedpb7begA9MDuhJRAo4W3H8erqXLFlS3dDQsEtacVJDJ0jIdYSJMhvW29nVuevAtvXVtCsDztY7LoCjSWzF4dgDctfatWufkSMqkEY/AHIzja5gLjMHTgcm9AfyOQ9lOM3bo43FOsS0Xj1iGaQHCtG2D/XxPmKa2yPmiWne3uP3+Zvqjj9D21y0gD0wGJH1pnIDXmSiDAIAD7rYfOihhw7Su8TflnNUFH10/zPTRafJbFZOMp9ojrETp/mEinm6lYbZEG192vLcDr042vZp69fuH247psR2tDS/XbVl/UHaj613RKMnLFEkLgqXZSuuXGzigA8//PDT9GByK/6MyKCvAEOuX0Ju0SoAprzd3a3VO9Y/TdsY7oh9b64vWsDZF8cBXZs3b75UWVn5Z3nByXLqxwHI5c0gfYWCt8B6Nzde+HPj6dN4VhDuCZiL2Pfm2qIBHPuIVlyB/Pbbb3+THmurlhecLKl+DH9cHULkYuyfI45kwX68j5jmfcU8Mc3b4x2LxxDTescRy4hpoTwezXN1dVVvfeuVN6kIwx219Ub1gwGcrbhysYkGrFq16jGXy+WTrgokDR8UyE00iZNPKIojHWngsnr7D7Q90uNEWi7a4w1QHgz5vF5f3ZEDj1ETADdfXEZtvdGFaAHHPgw4flGKFX/00UePHDt2bDW9kRbbZRhAAYYcWMslWAMDPcxgb768mm7qYL631nqDvajCYADHARhytuLOBx544NnLly83SlclMv0BuZFGV2ToU6CH4HY7nI37Nr/3LOXicTSt9e4rHGFqsICzL66Oi+/du7f5tddee5g+f+KRrkpk6pvplr4CObsbORwDKBpy9pyuqX74YkN9M60y3FGNe2uVHyzgqIchV604DRvuI9CfpRtA2uPIdR0FFMjlU1L0pQcvjZo0PHvggw37SCqt9QZrgwqxAg5XRbXilHbdcsstK+vr63fIG0CRnw+GPFf9cbpbaejqaNuxZfXylWCod+G7lmAsJYDjDOLgWPiCE788x4MPPvgb8sc/kf44qRFhCECeez45/O5up/OTqo3v/oakwuvOwBBcADDFfFFycCEWC85HRCMwfIJfHBrnpBtATa+//vqvyB/3Sn+cFIkw4Ja+URxCzHKfHGaZ/tJ76SmdX9FrIJpoVeGHYrDEw4KUHHyIB+BoJxrDrorSSHrVRNWePXuegz8uIY/8BCmQG7P/zQVgAn735aYLz+3fsq6KFBLhjunCUlQ7HoCjPoY8yFVZtGjRcpqQtdGtvLhSPKxMh1MgYMkBefZ65TRJ0NDZ1rpxy2vLl1NHta4JDCaYijnEC3A0hCHnURU02rF48eJ/oYvOvRLy6M6ViVwVoymepye64yeytI8sd1dH+94tb6z4FzDSu/CwYNzgRh/iqSAAF/1xNNhBX4nouPPOOx+iByRq5KQsSB55YMizyRXHiEm3vbNm99o3HnJ2dHSQGgBchBsMxcV6Q+lEOHtonNjAPILcW1dXt3P+/PkLPth/eGgePqclQ0QK4L3synvBs2BKMmYIuhz2c/s2rf1ZY33tJyRAFy0MONzbuFpvCJwIwFEvQhDo5It3d3Z27naYCm6mGXWFPNE9UFT+H04B/vhAgPHM9Mv9fvpglNPZfGjnpntOHzl0lvqrhTuulpv1TBTgogVX0wcOHOiix7j2Dx899is0HJYvIefTMHCc1/uFjUwckcL9EHphpv34gY/uq9nzUU0IuGG5AXjcQ6IAR0MZbI6VxjfV17UVlQw5OqR0xEKah2GRkEd+TlXIIW2GGHK86tjtcjnqjx74pwNb38dteNFyx228W0/FRAIuHhOQq6BfqD1+0WIp2Dds1KgFNCRmkz65KFX4tAp5Bvjk8LndDkfriQN7fn5g6waMdTPcGPNOONxQMtmAq6DTnasWn8e1s7R8wvVkyEv4xKFRMoRXQDUIiiGnz16n4b8eGud2d9kbqnd+cC+9bu0o9chOCwBnuHEzJyF+N9WrhmQBjgOyBVchv9xwobOro3XbqPGTrjVZLGV8MaW2TiZ0FQhATlKyqrolk78B49z0HsGT+zatua/uyMHT1AKAnXS40fNkAo7jITDgStx++aKz+cLZD8onTZ1NryEeA59c+uUBoQb6X4UcBdPAJ8dwJt5CRTMDD+xY88YvGs+caqCWad2SpFhu1i7ZgAfBTY1Q1umdz+7zp45uHXfFjCn0AstJeUYJOZ+ggWLVXUmxKcesQHqWkm6/t2zd+saKJW0Xmy5T2xlu3MjBDMGkwg3tkg04jonQD3S60vbVVh/cPmbyFGu+rXA2+eRkyGGWZBhIAdYpYMST75H30Bg3fcqlp62p4eWNry7/N3rVWju1WYQbF5RJhxu6pQpwHJsh5wsN+nit13+quupA4ZChNSVDh881mkw0wiKtOcQaKEAnCJrMoMwIpJESj6Orlaa8Ltv2v6++QeeQLybFO5QpgRtapBJwHJ8hR6yCfuFUzQX6U7d5RPn4K8kvL5cuC6QaOKiQJ8EfJ2/bgItJR3vbwb1b1v3iaOX2Q9RCWG223HBJxKHAZP/+FMHSBXDAzYsCPV18dp06eGBjecVkk7Ww6DPSZVHO14D/sbsyYMEYCuDOpNfj7mlpOL9yw6oXf996sQFvn4LFZri1k6diOFpsu6YacLSef9lsxVXQ6c+d79ShqoN05/NI0TByWYxwWWjAQPrmYc96nz7xNeWBhxRofNvpbDl7rPpX2/73f97qdUkYboxx88Vkwm6/h+28ZmM6AI4miZCLoCvp86eON9ibWzYPHVk+mlyWKXBZMC7WdyI1vZKrvdqwrLEJArAxSoJvgna0XNpctXntkqOVHx6mWtliA3DtDRwYqpQHkJJOAe3BXFr88PCmSist+OKqjZZCpK+55bYvVEy78pcFRcUT8eRL3zAZbZWhnwIAM5bAw3/dXfaz9SeO/vve99fsovrggjDUPATI011xwPj8smJpeO++6QY4mhUwzwHI8Zg5vrQKyBl0W0FJSfENt/39D0pHj73LYrVayXWR1pwE0guBGYjRMaeOkNBDtc1NDSs/XLP6FVdnJ0ZIYKmxAGz2tTFKwnO5ozsQ7ZjIkC4uiraPLBJiLLAK7NP5vG63t/bQvkMOR8emoWWjx9Fr0CZKt0UrYd96nyvHtkM/xhwudkfsra0fHtz6/j/v2/zuB6S5OPwH6y3CjfMT25+KvubGNZWOFlzsINrHLgtbc7bocFsUyz7vq9+6oXzK9PsKCgsraE6L4rb0nVSxutxOByx5aA3Yz/aRn+1yOOobT598dte6N7dTabbUbLUx9Mc3btjosEEKXXkKc9MdcJYGkDPo8M0BOfvnCuRms7lg7uJv31Q+ruJOa1HxVLzcEv65BJ0lDB0z2LiAJD/7VNOF+pcr1/5tE72uhMHmmMe1RV87La222NNMARxtZmsO0GHNGXQAzrAjtn5x0Te/VD556p0FxSVX4Y1RmIorQSdlhKCAjfFsL1lse+eRptOnXv7ovbd2UBGAjAVgcwyLDbD5jiTATlurTW1TQyYBzo1Gm3HtwKDDmrNFVwCndSW+5uavXzNu8oy7CocMuRpfVgi8hiF3hxcDLgpm/GFilMfg6OjYf+H08ZU0MrKXNGOwxVh0RwA1X0hSMjNCJgIOZdFuLKLbAovOQ4si6PlXz7959tipM28rKhm2wGzNL8TrGHLlopShxoQo3Fr3drsdXZ1tWxtO1byzf9v7uL0OiEWokYa15kX0szPCalPb1ZCpgHMHGHIGnV0XBp0tu2Lli4eNKPrc/C8vKC0v/0phybA5NI5uogldivuSbePpGAkB3JifjU+CODrbqlqamjYc2LZxq73tMm7QsHUG0Aw5Q83DfrDaGeOOMBRinOmAc1+0oPONInZfxFix9BOmXjVq+py5Nw8rG/kVmp47lV+XFvDVM8+NUS11H9R0S91xqq350oYTVZXvnzt15CKJxQAz3GKMbbDWbLEzGmwRDE5nQ8ygIwbksOhs1QE54NbG5qu+cMO0cZOmXW8bMvTqgsLiWQS7FW95hc+ersAHA+1XXmRJlrqbXqxz2NnRvv/CmZMfHtm1/ST1F9YY8ALmUDG2s8WGC5IVYFM/lJAtFpz7wzH6xbADdF4AuBZ4xaJTvrKtoLjYOuvaL80qGzPx8wVDSq622Yo/ZTSbLLhbqjwzqsxPp9JKCMiXqBGaAMQ4UMD1xU0Y8jsMmM2HJ9ZpLprH6bQfc3V07m9uPLvv8J4dh112O1wOhhpA88KA8za21myxldqpfFaFbAWcT5IIOvx00VcXrTtDznkcm4aWlRXOuGbeZ4aXjfm0xVYwMT/fOtFsLRhnwsMYyvCjUQG/76KVD62NtVIHoNWWUiAmoHFRCJAVX5pi+oKdk+zzBbe7+6zH6Trb2tz48fG9O6vbm5txVxGQsiXmmMFGzHmIGWjRvw7dGCqc6UGreqb3J1z70VcAzjFbddGVYbC1sVhW+aFUzPzMqNETJ1YUDyubaLUVVeRbrRNMFnOZyWguzAvAj9fToZ6AmwPLjxUKCk1EMltoir30OJOjhyD2+b0On8fb7O7uPtft7Kq3tzWf/eTs2fr6mmr40AylaH1FeEOlxbLsfnCstCeb/2PNs7mP2r6hz+ICeNmycwwwGWqGnde5jBgjjUWsN4/cHfPQ0lFF9PidzVpUWFRgK8KMSIPL2eXo7qLRuvZWZ3vLxS5yKwAmuwgcM8yI2eqKMdIMNEOMdbEM78t1ckzFciPkIuDimQ0CkjYwqByL8IuAY7u4jcujPqS5XkoGpbEuBhE4TrN1ZcC1wDK0DDWvc3mOuT6OxePmTDrXARdPNGvBcCLWgsvrDDEgRzmOOT9UXTgW5wM6BIZPuw5IkQeIxZjh5RjbxDTWsSBwHFjL0f9Z8BztfthuszaIwy0i1NpyOIBYj3hABlCMkdYuDLs2X1xHvViXQaMAi6/Jlqs6CrBeDDKKhcsTt+tUGQQmQ8rwYp9weXp1yvxeBfjkSEFiU0Cro3YdtWvzGFzxyNo87bpYVqYjUOD/AZrbm7Ts1rpFAAAAAElFTkSuQmCC',red:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALgAAAC4CAYAAABQMybHAAAk/0lEQVR4Ae2dCZxUxZ3Hq8/pnhkGmOEQuQS5VCTxWHEDBlyNkciakMMkxujGuOvHO24IKCae0UQlKwmyroocoqtozGpA4oFiVAQU5IaRcchwDsPczNF39/5/b+bfVL/p7ume6bur+DyqXt31r2//5//q1XvPIJRLpgQMMVYeiDGfyhanBGKdgDirzYvsLLtIPguB0/lc7+vh5vNIvr68Oo8ige6EH6Vo3iSxjODrw1rcm2++2f+MM84YV1hYONRkMhUZjcY+OAKBgOZTXDGVLTYYDH0gNYpvIa/V5/O1+v3+FopvgY+D4tra29uP7N27d98VV1zRiOy6g06DcRyGr1wYCfCEhUnK2yiWiQYvSQG+8ac//all3rx5o/v16ze+oKBgnNlsxjGWQB5LgA5MhrToh1BL0Fd4vV4c+1wu176mpqYvHnnkkf0rVqzwUJt+OuQfALrBmh/hvHc8mfkuCBlmDei5c+fab7nllguLi4svttlsXyeYzyPgrJkgKPpBuQn4LU6n88PW1tZ1ixYt2vjoo486qG964PMe9nwGnKE2EhgG0tDWBx988HzS0BdbLJbpdEymeFsmAB1DH5wej2cTHR+Qhl937733biYN76ZyAFyGPoaqcitLvgEeAvX1119ve/jhhy8nLX211Wq9lKYWtnIuuFa3272WtPv/3nPPPW8tWbLESYPKS9jzAXCGGj60tfGLL764YPDgwT+x2+3fp/MyOnLZ1Tscjj/X1NS8OH78+E9poNDoslbPaTMmlwFnsDWoN23adNq4ceN+TBeIP6FVjbG5THSksdEKTQVdqL64b9++lyZPnlzVCboMe6SiWRufi4DLYJsqKyunkraeCxOELhJzcbxxw0cXqQGYMKTVHz399NM/pgp8dOQk6Lk04RiLpq3JNx04cOAbAwYMmEurH1PoXLkIEqDVmPV1dXWPjhw58l3KwqAz7BFKZU90LgAeBHvYsGHmjRs3/mtpaekcMkPOy55pSH9PyXzZ0tDQ8NiFF1646vDhw17qESDPetCzGXD0XYObwLYQ2FeVlZXNoRsvZ6Yfl+ztAd1Y2lNfXw/QXyHQ9TeTsm5g2Qp40BTZtWvX+aNHj15AGvv8rJN+BneYNPrm/fv3/2LixImbqZuy6ZLBve7atWwDXNPYNAzT0qVLS2fNmvUA7f+4gS4eAbxynRIwHN8ozDseFQZHTW9l4m/3BBa/8nnDfT97vKqBKmPQs2ZpMVsARz8ZbvPRo0ev6d+//yNkjiRlD0hvqUh3ecsrpwtD2+GEdcMfELUNbWLewNniBaqU7XNAnvGgZwPg6KMJx44dOybSstYf1coISSOKsy4tiJLa8ySPX6wvrxN3TLpX7KJaoM1xZDTkmfynPaixJ02aVEBX+PdOmDBhg4K754D2tqTFKKacPVhsOPEnce+kSQK/IjMdYChjFWWmdozhNq1evXrYtGnTltKNmq/3doLypXyyNLgsP49XfPhOpfjZzCcEbKGMtc0zEXBeITFXVFR8g5YAn1O2toxW9+FUAI5ewDY/UC9+PvrXAjeJ2DbH2nnGuEwyUYJae/r06bba2toH6O7a6wrujGGlS0eMBjFw1ADxetMT4oHpZ2lbi3GtlFEmS6Zo8CDca9asGT516tTltClK3WLvglRsEanS4HJvXF6x/v0vxHXfWigOUXzGmCyZADj6oK2S7N69ewrdtFlJWnuALDwVjk8C6QAcPSSTpa6iTvxwwm/EejrNiFWWdJsoDLeZdv3NHDNmzGoFd3wwZ1JuMlkGjBsoVlf9TsykfmGFBYorrUo0nYCjbQjAQjv/rhs+fPjLFLbToVwWS4Boto/sL14++ri4joZhoQNznDbO0tVwEG66K/nLIUOGPEW32/GLVy43JGAeUiKeqvsv8UsaTlohTwfgGtz0EIKV9iE/RjsAH1IPIuQG1SGjCAhDWaF4qHmBeGzwYIG3EaRFk6cacA3uGTNm2OnFNs/16dPn1hChqJOck0CJTdxaeY94bsZkzfxMOeSpvADQ4B44cGAB3cBZRg/8fi/nZjNDBpSuVZRow3d4xGsjHxT/VlsrXJSPlxGjFUlIWqo0uAY39dhaXl4+X8GdkLnLqkrsFvE90uTzwQAdKdPkqQCc4bZUV1fPpXeQ3JhVM6M6mzAJ9LGJG+v/IOZShSm78Ew24DCB0Ibl0KFD19Ozkr9JmLRURVkpgdIi8Zvqx8X1YIIOsJFUMzmZgKPj+FNkoQvK79CqyQIKK6ckIE4pEQsqHxbfIVGwJk8a5MkCnOE2b9++fRrdfl9CS4GAXTklATwiYRpVJp7bfb+YRuJI6h3PZAAOuFGv+a233hpPb5NaSeHkPGJCFSuXnRIgSGwTBomVb/2nGE8jAORgJuGaPFmAm+iB4KIpU6Ysp70lJdk5BarXyZaA0ShKLh4tls+6QBRRW/gLn3DAE10hfjDoaMHx48ef6Nu37w0UVi7FEsjEdfBoImh2iMX97hR3Up6Er5EnUoPjx4L6LHv27PmugjvalKo0WQJ97eKGLx8U3wU7dIChhCneRAHOcJtXrVo1dtSoUQvlAaiwkkB3EqAngxauuk2MpXwJtccTCbj5kksuKaLHzZYpu7u76VTpegnAHr9svFh2yQTNHgfkCdHiiagEPxLN7qbnKOeXlJSoO5X62UvxebbZ4LJ4yB5/muzx2RSXEHu8txo8aJps2bLlYtodqOCWZ0uF45YA7T68cfu94mIqmBBTpbeAa9qbzJIiWu+eTy9Wj3tAqoCSgCwBIETr4/OnjwsuHfaK0d4UZu1tef7552+nF/OMkzuqwkoCPZWA1SzGvXS9uI3K93pVpaeAM9zmF154YdSgQYPwaJJySgIJk8DgvmL2C/8hRlGFvTJVegM4Liwt9HTO78k0KUzYyFRFSgIkATJVCq88S/yOgr3akNUTwFl7W3bu3IlvTH5LzYiSQDIk0KdAXEEbsi7vhBysgr24XE8ARxnzlVdeWUw3dB6LqzWVWUkgTgmMHSgeu3Ky9oFeNlXiqiFewFl7m5988slb6XPXI+NqTWVWEohTAhaTGPnMLIGH0xnwuLR4vIAjv4k+gV1Cr3u4Kc6+quxKAj2SwIA+4qbrpwjsSsV1X1zMxpOZtbdl3rx5P6cX0Zf1qLeqkJJAnBIwmUTZ/TPFz6lY3MuG8QCOvGbc1DnllFNujrOPKruSQK8kQG/Kuple0Yx942yqxFRfrICz9jY/88wz15DtfUpMtatMSgIJkoDZJE5Z9mNxDVXHgMdki8cKOPKZ6Fs59lNPPRV3mJRTEki5BIb0FbdNOj2+N2TFAjhrb8vKlSuvIu09IuUjUw0qCZAErBYx4i/XiasoGLMtHgvgmvYeOnSolY47lKSVBNIpgWH9xR0lJcG7m93y210GaG8c5ldfffVfaEPVmHQOTrWtJEAbsca8f7O4BEzSwXxGFEwsgGPt0Ux3LX+ktsNGlKNKSJEEsJ121CDxIzBJB9gE5BFdd4Aj3XT11VfTM8R9Z0SsRSUoCaRQAn0LxIyrvyb6UpMAPCrD0RLxy0C6ee7cud+m5yzV50VIGMqlXwL0/Kb9nsvEt6kn3S4ZRgMcaRrg9P2cHyjzJP0Tq3rQIQGYKSP6iR/QGQMekeNICdDeOExPPPHEiMLCwq91VK3+VxLIDAkUWcXXnrhaYMma7XDw2sVFA1zT3jNnzryKtHekfF0qVBFKAqmQABFpnDUxRIvHDbi2ekKPo30/FR1WbSgJxCuBwcVBwFmLd6kinGbGLwHxphUrVoynte+xXUqpiIyWQKBoWEb3L1GdozXxsS/9u/Z2Wl5N6aLFYaTrXRDwr371q9PUxaVePJl/3nzef4uaN28S7hNHunQ2EOgSRa/r1rkuEXild1enr6unecJVHktd9OlwaOJp1LPddEApg92QotEANw8YMGCqApwktmen8K9cIURTI8kv810BdXGI72JR73LR9+ND5jvzOx9nD80u11QhVj1DxRjwkBr0gOMXoGnwoqIiM72p6sKQ3Hl64nv0fhGoPZ5Vo8ff7P5+v2jw+Eil5S7kfQKBC8FqW1sbAx6ixRGpd4gzLVu2bKLJZCrVJ+bjebbBzXNkoTsipfRQo0HTWRybWz7BWvqHkYMn0qjYDg8ZoB5w1uCmM8888yJlnoTIKitPGHIj3R3hyc0lHwCPLbRdRB4A56EF5yoc4Igzkf09RQEelFNWBwB5f3okJhfnE2MqNZumgFk6wC4gDzoZcKbfRLfmrWR/Tw7mUoGsl0Ao5DzVueEXmUyThxcW8heUeVDanMmAIwLnxoULF55Nv4w+Wg71X85IgCE3AoEccjScPr8ZderZNCSNX3lo8ioKk28aNmzYhFz8cyYPPF/DHZAbRKPXmzNrK6B6qM0ygbxP6WCOtaUjWYNzgpH2fo/JVwDyYdxmUuH9zWZN3eXKePuYjGAWPDPH2tD0GhwZTLR7cIzS4Jp8cvY/QN6PIG/KAU0OVouMxtPBLh0MuTZ3rMFBPRzOjQT4aO1M/ZfTEmDIc8Emt5s0wDV+OydNY5oBR5ym2ktLS802m21kTs+sGlxQAoC8r4nMFZp9DQAGIct8m9EwstRuh0XCw9DGqAfceP/992MrGrYzKJcnEjgJOdjIUhcQBbcPHQx2wXRwIGyDM/XGs846S22PzdI57k23AXkJmbAnfNm5dwUAn1mkbe3+ohNwRAVYgwcBHzhwoLrA7A0pWVxWg5xe5Wo8qQCzZjQAuNRs7rKSwhocAwHsRrvdPhwnyuWnBAB5H9LkLZomzy4ZFJmNYFfjmHuu1+AGevdgMScqPz8loEGuafLsGr/ZYAC7bI3A1x6751EgwkhbZIvVGjiLJH99QF5Mmrw1SzQ5mKVFcAAOpa3BjdnjkyD1BDheMq6ckoDQNDntQsQSYjY4ghzsBllGWLbBMQaDAhxiUI4lYCLNWEzmiqbJM/zBIKvByIBz9zUNzica+QpwFofyWQIMObGe0c4kAgx4sKeswYMRCvCMnsO0dY4hb/P5M/YZT7NJ0+AsI41pXkVBJCKUicLiUX4XCQDyIhNWyYP6sEuedEZE0+DcLwU4S0L5YSXAkLdrmjxslrRFGmOxwal3bLakraOq4cyWACAv1DR5ZvWTVlHArmaJcM/YRAn+zfF6ve2cqHwlgUgSYMi7rDNTASYs1b7PH5DZ1Zjm/gXH4fP52oInKqAkEEUCgJz2YWeMRU6Xv3p2NZWO1c3gCqfS4FFmVCV1kQBD7qS3aKX7LXE+v1/W4BrXbKJwxwNKg7MolB+rBAC5jd69Ql5anS8goMGDyhqdkS8otQQFeFrnKGsb1zQ5Qa5p8jSNwm8ImihByMNq8EC6/9akSUCq2d5JAK+H0zR576rpUWkwSyuXETW4Zq9QzQFlg/dIvqpQpwQYche9vDvVb7X1BgRs8CDL6JKswbUEAry1s6/KUxLokQQAeQFtQUz1HU96FzrYZcC1vss2uBbhcDgaoO7VnvAeza0q1CmBDsiFcPlTIxJQ7aTXoetbYw3O1PsbGxv/oc+kzpUEeiKBk5q8J6XjL9Pk9YBd/KSYZ81EwQmcFllRUbFfXWR2CET933sJAHKrZq4k9w4nelrldOwnLwg3wqzBka4lvPbaawpwSEO5hEkgCHkS18kB72v1zXrAg+vgTL3/7bffbnG5XLVms3lgwkaoKsp7CQByC0nBo+nRxIvD7ffXrjve1EI1dzFR0FoQcGRobW2tUmYKxKJcIiWgQU6gJ1qRg9U2X6CK+gq4wwKOcQByLUN7e/s/EKGckkCiJQDI6fUOCd9x2O7zgVkZcK3rbIPLGtyHlRSlwRM9tao+loAMOcf1xge8TT4vAPfREaLB5XXwIOTHjh3b35sGVVklge4kAMhhqngTsC0E9dR6fGA2BG70IZwG97/xxhs7aNMVgFdOSSBpEsDNxA5zpXdWuY/MjVW1zTuoowA8BHIGHIMA0Ej00Udga5ubmyuVmQKxKJdMCQByE/ENfd6Tf6C2xR+ofPFITS31UzZRtG7rAWfIvfX19ZsU4MmcWlU3SyAIeQ8UOYCt93g3keelI0R7o34ZcJxrGpx8X2Vl5UYFOESiXCokAMgBI3lxHTDkqxyujVQU2ps1eLDLMuD4MbAG9y1ZsmSTn1wwpwooCSRZAgx5PM3Qg3L+JTX10OAMN3OsVRMOcO2XsGrVqkayw8uVFo9H3CpvbyXAkMNa6e7AQ6DNXl/5W8fqGyk7a/CIgKNvrMFhz3hpufBTBTjEolwqJQDIAXd3DrDWuj34+KvGK/lsgweLyhockQw4fg1essM3KMCDslKBFEqAIY+mxdGdynbPBvIAuGyiIElz8o0eRLB6xy/Bu2DBgk8vvfRSZ1FRkU3Lnaf/VRaVCM/xmpwffSRlBijCuUjxyBsxLUJCpMfbkB39AvD6/jn8fufjh46wBmftHdJCOMCRUbNnPvnkk5bq6uoPRo8efbmRnphOhGvbWiGO/c9fhaeuORHVpaQOt+8rwlmCb7uHyC6k7UgpUctEKBStTEijnSf6iZfzRGhCyxJvO3K96Q7T42mi2nnig21N5dhByPY3Qx7snh5wJEAmmgYn37Nt27a/nnbaaQkDfP+dTwp3dT3aySrn9HtEu9+r2YYQUCw2IgbIeRk0lOO4cOmIk12q88ttI8x9jdR/fX79eXfl9en68pHG7w34xW5nzV8pv4cOeQ08pIpwahltMuDeW2+99SPaPlsfTUuE1NjNSTbCjSEVGS2i0NihD2KFG+U4L3w5jDQ4OY7zyL6cRw7LeeSwnEcOy3nksJwHYb1DXjguw2EtMob/uiuvT+d22Ne3h3iw6Az46he37PyITiNeYKJsNMCh9j20s9Bx+PDhvyUKcDSarQ6Q2wnyaNf4nMa3nTFWjsuEcXNfYu1fsvP3RCbQwLU+598a3W4HBaHBw15gou5wgCMeGpy1uGft2rVv0OskEJ/3DpDbjCYNWoZE9iEghkIOy3nSGZb7JIcj9UnOI4cTlT9SPdHiAeZ2Z93r5MnmCaK7uEiA40eCXwWo9sydO3dXU1PTl0qLd8iPIe84U/+nUgJgsC3g+XJJ8+7d1C4DDlbBbBcX7iITmZCZIUclbloTX1VWVnYnfcMH6XnvADmcKwDZKpcqCUBN13jbVpHnpoPNE+a1SzciaXBkRF1BLb58+fI36GFkVKhcpwQ0Td7lS4xKPMmUgFv4PG+3HXmD2pC1d1jzBP2IBjh+FSgIM8W9dOnS6qqqqjfV/iuShuSwsmJTkEsSSV4Qa9+1Pseb77ZWVVMr0OBgE4yC1bAuVsA1M+XFF19cTFo84q8lbAt5EKkgT80kuwMB/7q2I4upNTZPegU4eh2ixefPn1958ODBd5QW7zqhDHm0q3+V1nMJkPIW9f72d149UVHZCXi3cGOWomlwpENbB80UCrteeeWVZz0eT8Q/CSiUr64DciwhnnQcjnbjArk5PV6fy3KL+va6q6+35fX1d1dfd+n6+vjcL/yBjx3Vz1J5Fx2yeRLVougOcPQHFeBiUzNTfvvb3+4lLf53pcUhmq4ON4IKDB2QY3Lg2JfDPHFyHMLxOq67p/X1try+v93V1126vj6cd9jezr+vaCrfS6dsnoDJqHCjbCyAQ1sHAaewa82aNc+QFkd55cJIQA85w5cKH91hiORwKtpOVhs+4nij89gzNB7W3oAPTHZrScQKOGtx/Hpcc+bM2X706NENSouTNCI4QG4lTZ5qx3AzbGif41Ldl0S0B+1d73dtWNy4ezvVx4Cz9k4I4Ogna3EY9oDcuXr16oVqRQWiiexOavKTiOEyC44vtzisRXbGcxznicfnsrHWp8/P5SL5+v531zd9/fry3aV7aOVkk+P4QsrnpAPsgcGYtDfli8lEQT4ADi3OgLtmz569jd4l/rraowLxRHY2TZPjY6kd/5CTJ1kOR0qPXHP4FK471vr0+blcJF/uc/gehMbq69eXj5buoy2xR31trz/duGMblWPtHdPqCfciFhOF87IW1y420eBdd921gB5MblR7VFhE4X2GPHyqig0ngY49J97GxU27FlA6wx2z7c11xgs42+Jo0Pnee+/Vbtq06U/qgpPFGdkH5FhdUS42CeD5qb2exj997qzFG6tgnoC5mG1vbiUewFFG1uIa5LNmzXqNHmvbri44WaSR/QLaZstLiJyLrXP4sRwox2XkMJeV4+Qwpyfal9uQw5HakfPIYTk/tHej37X9vuMbX6M8DHfc2hv19wRw1uLaxSY6sGLFikecTifegYg6lYsiAUCO1RWeUGRFOFbHeSOV7y491nZizRdve93lB0Nu+qD8O22HH6E+AG6+uIxbe2MM8QKOMgw4flGaFn/ooYd27927dyW9kRbpynUjgSDkeP+HOkJkEKBfwCF/68oXmvdgv7dee4O9uFxPAEcDDDlrcccdd9yxqK6urlqZKrHJH5BbeqRfYqs/G3NhzftEwF39ZNPORdR/PI6m195xD6ungLMtzsuGzs8++6z+pZdeuos+f0JLl8pUiWUmGHL82c73A69hcwm/5/3WQ3eVOxrw2gWGO651b73cewo46mHIg1qclg23EOiL6AaQvh11HkECgNysNDltdPKLfe6GRU837d5CotJr7x5rzN4CDlMlqMUp7Lz88suXHzhw4CN1AygC0WGi8x1y3NCp8To++lXN+uVgqPPgu5ZgLC2AY6rQOA6+4MQvr/3OO++8j+zxGmWPkzRidJq5YuiNvomxoQzLBru72e+pWdS46z7qWjsdYAgmAJhivijYM5cIiaITWD7BLw6dc9ANoGMvv/zy3WSP0zeGevzjo6ryy2H50EKQR7pNnmvx0MvugN/7vuPw3Vucx47RbGv8kA+WeFmwVxAkAnAQjM6wqaJ1kl41sfnTTz99Cva4gjz2OQLk+DBTrjswAbt7r6fhqacbdm6m8cpw9+rCUpZdIgBHfQx5iKkyY8aMJbQh6123Gz9I5WKVwElNnrurK16C+4i39d05NeuXkFz0pgkUZkL+9CcKcMwdQw6acaGATrfPnDnz13TR+ZmCnKQRh4OpYs5Rm9yjXVS2f3ZX3YZfk0g0TsjnZcGEwQ1xJxpw2R7XIKevRJy49tprZ9MDEuVqUxZEHrtjyHNpjRwrJvU+R/nDjZtn13scJ0gaAFyGGwwlRHtD0snY3obOyR00EOTe/fv3r582bdr0pmXv9MVXbpWLTQImklWHQGWRxlY203IB7kaf69CC5p037XDU4osCbXQw4DBvE6q9Mf5kAI564UJAJ1vc1dLSsnFUZctltKOuUEHeIaRY/gfkcBBotq6k+KnzJwKe+mUnym9c13roIA1FD3dCNTfkBZcswGV1Ewxv3bq1rcBk+Xycpd836c+vVUHeMQmx/M+yCgozlkIZkoe2mYrWgKf19ROVt/y55cty6pYebmhuAJ5wlyzA0VGeC/a1zm9z1jaVme17hluKL6HVAgtPXMJHloMVsqxCBJrh4+yA292+tv3Ifz7btAu34WW4E7beHUkMyQRcbhNzEpyXTY5jx+kJly2jrSXTSZPbeeLkAiocXgIsq6Aww2fLiFjY3Cf8nsbX2/bf9mzjLqx1M9xY80463BBCqgEPgr7VWdvQbvCuH28tnUo2eR+eOHRKuegSCMqKTHOY55l44F0mDQHn0eXNX9z8yomKPTSiVjoAOMONmzlJsbup3qBLFeBokJVOEPJyV2PLUW/738+2DbjAZjCV8cVUsHcqEFECgDwoyIi50pOAde46n6NiYePuW9a2HfgH9QJgpxxujD6VgKM9OJ4XzT/gOeHY7W5Yd65t0CS70TRE24nRuWrQkV39H0kCDHmmrK1gZnH7/ZjXsfWRhs23b3HUHKW+682SlGhullmqAQ+Bmzqhndd6He5PHDUfTC48ZXShwXyagpynp3ufzRUIMp0OuwLpWUq6/d72wd21G+fsdzfVUX8YbtzIwQ7BlMINeaQacLQJ1wX0Fr/b9zfnwQ/PKxhUUGKyTjIJo4Enr6OI+j+SBGQ5YcU81Qfgdga8gQpP0/O/qP/4d41eB77yK8ONC8qUww15pQtwtM2Q84VGwEsbyN9srdo60FRYPsRin2wxmOzYS4AHc5WLLoGT5kr0fIlMxY5AvL+k2e9ufK/98Lz7aje9SnPIF5PyHcq0wI2xphNwtM+Qww+CvsFRfaTa2/beuILSM+0G0ynKZIGounephJxNkhpf+7aFjTtvp5WSHdRDaG3W3DBJ5KVAzHHKXaYADrj50KCv8rS0rXFUvXtOwSBTX5P1K8pkiY0NNleSSRNu3sAkKfc0L7+j9sMH97ua8fYpaGyGW795KrbOJyFXugHHkHgu4DPkmjanP3e+Na1V2waa7buHmAsn0/ZRu7YXQ5ksUVE4adIlducKcU0mCW7euBvWOo7c/UDtxr90miQMN9a4+WIyabffow5el5gJgKNLMuQy6Fp4g+PY0cNksoyylgymz4SM7nioS9nmurkMOT0JeUh0j05ga/toiuj78OKQr/W9RY3b57x64stdVBlrbACuv4EDJZV2l2lXb+gPrivxw8OXVgvosNFhp6MQ4TvKzvnni+yn/rLUaB2BJ1/4TzKlKRdGArCVe+PY1m70uw9+7Kz+wx/rt26g+mCCMNS8BMjbXbW/vr1pM5FlMw1wjA19wgHI8SVmKx2AnEG39zfbiu8vu+CasdZ+19HHWAvM2ESqzBYSUXgHDRwv5rxC0ub3uCrI1n6w/tMXGr1OrJBAU+MA2GxrY5WE93LH2xQVTZ7LFBNFP0IWEnwc0Aps0/mcfq/3rbYDO+r9zrUjLMVDaePWCGW26EV48px//Kw5ovl4wxSbI/Ty+Y+fa97zq0WNO9aRzOXlP2hvGW7MT0aYJCdH3RHCWDPZoX9ssrA2Z40Os0XT7HMGnP/1C2yDbulrtI7E64nx7lae1EweXKr7Bq0cybGd7SI7m9a1D3zmqln0WN3nH1J+1tSstbH0xzduWOlErjhSgymKz3TAWQyAnEGHbQ7I2T7XIDebzba7+p1z6STbgGv7GwvGKNBZdNF9GWx6J/eXO5x1z/++aetaejMZg80+r2vLtnZGam15xNkCOPrM2hygQ5sz6ACcYYdf8Kuy8y86zz7g2jKj7SwFOkkkjJPBJlNv9xZH3fOP12/+iLICZBwAm31obIDNdyQBdsZqbepb0GUT4Nxp9BnXDgw6tDlrdA1wOtf828rO+afJtkHXDTLZz7XiNQxUBIXz1XwB1KASa9n0Rilx3Of4fJPz+PKF9Vs/o2gGW/ZlcwRQ84UkBbPDZSPgkKzGKfmy2QKNzkuLMujWG0rPmnRhwZBvDzbbp9sN5kLAni8XpQy1n9AG1I6At51edPnBRlf1G4sbduP2OiCWoUYY2poP2c7OCq1NfQ+6bAWcB4D+A3IGnU0XBp01u6blh5qLi27od8b0Mdb+3xxosp9PoJvwch3Anmvr6Vi/BtRegprA9tX6HJu/dDe+vbhp7wf0RincoGHtDKAZcoaal/2gtbPGHKG+dnHZDjgPSA86TBi20dmEYV/T9FMKTx00q3j0ZSOsfb5ZYrCO0UyYLNbssqbuhBpfS/jyoLvl7f9r3f/O+vajx0kmDDDDLftIg7ZmjZ3VYNM4NJcrgMvjgTbHuAA5NDprdQDO0Mu++Yf9xo2dXDB4Kmn1c/uZCibShWkBPi+CR+gy1ZSRgcbmJzxJQ0t8riafaxdp6883uWo+Xtm0r4LGDG0MeAFzOB/prLFhguQE2DQOzeUa4PK4WKsDdD4Ath54TaNTvJbWz2wr+FHfsRMnWErPG2iyndvfVHAGwW7BBSqA7/jX0QwLL1kXrYAYjg1f+LhMBNC4UCSoPfSmqL21Pufn5Z6GLS83V+xq8jphcjDUAJoPBpzTWFuzxu6ongrkkuM5yqUxyWPB+Bh0va0ua3eGnOPYNw21FRX+oHDcV06zlpxdQvtfCg2mEYVGy1CrMNpZw7Mvwy93AmG9oBlafT6GGPYzQGbfLfyOdr/nSHvAd5B28x2scp/Y+Wr7vu1HnG24qwhIWROzz2DD5zj4DLRsX0fqDmXPbqeXe3aPJnrvGXT2WavLpgyDrfflvNoP5eLiYYMmWctGDjEVj+hrtowsMliG01cayugppEK6k2qnbWCFlNGMxhh81vRsXkAbgywizUuvWWinW+QOT8DX7vL76tsCnkPNXs+Bal/rwR3u+gPrWg/DhmYoZe0rwxsuLOdl84P96BLLgdR8Apynq4O5DqWKMOAFtLIPwBlqhp3P9Xk14DvrCKmbzB3zSGtx0RBjob2fuaCoj8GKHZGiJeBub/K62qr97Y4D7tY2MisAZofyPukzzPBZ68o+wgw0Q4xzOQ+X1ddN2fLD5SPg8syGAEkJMqx6kGXA9WlcDvUhzPWiLTmMc9kxeIjjMGtXBlwPLEPLUPM552ef62NfbjdvwhC+ch0SYFkwkPD14PI5QwzokY99jg9XF1rheEAHx/DpzwEp4gCx7DO87CNNDuMcBxz7HWd5+j8LPE+HH3XYLBv40Q4Zan0+NCDXIzfIAMo+wvqDYdfHy+eoF+fK6STAwtdFq9MIEmB5McjIFi1OTo9QZQiYDCnDizLR4iLVqeI7JcCTowTSOwno5ag/R+36OAZXblkfpz+X86pwDBL4fwN/IZwMBwH5AAAAAElFTkSuQmCC',yellow:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAAC4CAYAAAChOH1KAAAlaElEQVR4Ae2dCZhUxbXHTy+zL8ywDDsSVhEVJQoCkoSIIr4kvohLxO2ZfC8an0mQrCQm+uJ7qHkv5hE/xSQaNokBogkxigaUuLDIpsiOMA4MOwyz7zPd7/yLOZfqnu7p7umeXut83+2qW7du3apTv3v63Lr31rWRkUhowOZViPc6Nutpbq/8WPVO8173sYtJ6kgDusI7yme2nYdTdIZQj0NH1vrgwYNtc+bMyb344otzCgsL87KysnLT0tKym5ub6+rr62vKy8urd+7cWfv444/XlJSUAGSB2VfoKw3HM9KBBqQzOsiSspsEXgmhCMTtDGT2TTfdNDwvL28kQzvC6XSOcDgcQ2w2Wzfenme323M5nuN2uwPql/O5OF+dy+Wq4X2rOV7Z2tpa3NLSsp9Pgv3V1dX7XnnllU/4RKnj7S5edNARl4WjRnQNBFS+njnJ4wKxHtp37NgxpG/fvlPY6l7CAI/kZTgv/YMBN1L64hPAzcAf5eUTXvax9d9x/PjxtZdcckkxH0OAF8gljNThE7acVIdbQLZzDyJuX7du3YChQ4dOycnJ+QJb5M+zFR4Qr73L1v4IW/h3amtr/3nw4MG1kyZNOsJ1FdglBOwpKakItwfQTz31VN4dd9wxnd2LL7J1/hzDPCxRSWDYD7BVf5fdmbeXLl26avbs2dXcFsCdkqCnCtwCNEL7gAEDnBs2bPh8QUHBnenp6TdyWi4vySY1TU1NKysqKl6cMGHCO0eOHGnhBuqQJ71FT3a4FczcqQgdu3btGtWvX787MzMzv8YWun+y0eyvPWzRjzY0NPzp2LFjL44ePXoP52vlRbfo/nZN6PRkhdvyoX/7299245GNe9iHvoMvBC9P6N6KQOX5gvRD9tGX8gjMovvuu6+SixRrjjCpJJngRluwAGz78uXLu0+dOvXbDPW3eL2QFyOeGihnyOevWbPm6VtvvfUsbwLcAnpSuCzJALcH1KtXr+4zduzYWbm5uf/OnZWMvrQnouGv1bD8ftu2bf937bXXnmgDPCkgT3S4lZXmDrGvX79+0EUXXTSbRz3u5fXM8Ps85Upo4FGWBbt3735q4sSJh7n1YskRJqQkKtyoN8B2vPzyyz2uueaaX2RnZ9/NN1bSE7IX4qjSfMOoqa6ubvFbb7318xkzZpRx1XDxKZY8jmoauCqJBjfqi8WB4bzNmzf/W/fu3R/j9R6Bm5o6OWyuErK1fMiKwuhfJ8VNZWUVtT/77MTHFrYNI8oIS8L444kEt7ggju3bt182bNiweXwHcXwnuy5pdwPYzrofMdiR8SaaW9wffFLc+N3RE/7xEStNrHhkCu/iXkgEuFFHBfb8+fMLb7vttkf4YvGb7II4u1g3CVm8vXEpORtfiGzdbbaWmpqW3724ou4/v/WDj8u5cMAd965KvMMt1tp56NCh24qKip7gmy99IttzyVWao3ERYekKcbnpxKmy5h/3HbVpGZcvdzzj1ooDnngUnHQOLI8++mhBZWXlC3369FlowI5tV9lt1KdPz7SFdaUTXnj00REF0kccxqWRjMdKWWBv2rTpUn7YfwnfWRwZ225NnKN3peXWtdDion0799TedfkXPvqY0+GLywWnni2m8Xiz3KgPLLbz6NGj3xgzZsw7BuyY8uH34E47jRxzUc47J/eN/wb6ixf0W1zxFC+VEWvtnDt3biE/ybagZ8+ez7CysngxEqcasNkoq6i785m6w1ctmDt3GB5xEMjjwiOIh0qgDjjJMG49hp9ae5Gt9fA47c+4r1a03BJvRbS43J/s3FN3R5ubIhebMR0Tj7XlFoudtm/fvmsuvfTSNQZsb2wSY91ptw0fMzrnrYObr7iGa5zGC9yUmBrPWMItYGOY7xZ+W/wvrIw8XowkqAa4Q/M+MzjjL0d2jL+FmxBzFyVWcOO4OLPT+AH6b/ELuAs5bp4LYSUkujDg6f37Ohee3ncVHjUWCx4TzmJxUAE7/eTJk4/06NHjKb7bGIt6JDpH8Vt/N9l7dnc8dfaTcY9wJWG0YjKSEm2oFNh80ZhRVlb2NL/D+KP47SFTs3A1UFiQ9qOakglPjx7dKyMWgEcTbgX2+PHjs3j6hCX8fMjXw1We2T/+NZCTY//65jeGLRk/vjuGdaNqwaN1NavA5salnz179jl+9evO+O+WxKxhrIYCA2mrtq71xdwLNt7P+Zp4kacLA+0W1vZoWG4BO4197McM2GH1V8LunJPtuLP84FWPcQOidpHZ1XCjfCxppaWl32Ef+6GE7R1T8bA1UJDveOjUnvHfAQ+8CBthl+uvgK6EGy6PAru4uPj23r17z/VXCZOeOhro1cs5t3T7uNu5xQJ4l7nGXQU3KqzGsfmF0+v79+8/P5oTR6YOKgnYUjfZ+vdLm7/vg7HXtwEOTroE8K6AWyy2kx9ZHTdkyJAlbY1IwJ4wVe4KDTAgacMHZy3Z9vbl47h83MkEhxEHvCvgRpnOefPmFfF49lLMU83rRowGPDRgs1POpRdlLZ33xJAi3iCAe+QJdyXSZ4sCmyuVwY+truA5RKaFW0Gzf2gaiNehQH+tqKt3vZkzaAOeRWnkRZ4m9Jc9pPRIWm6cKMrPPnz48HcN2CH1Q8pmzs6yTzux+8rvsgJkiDBiBjdScAvY8LOv4hd58UyBEaOBoDRQ1DPtEfa/r+LMEX2SMFJwoxzHE0880Yv97AXsZ6OSRowGgtIAeLl0VNaCJx4d0ot3wL9/RLiMxF8AKgKY4WcvY3dkOseNxEgDieZz62qqq29dlTNo422cFhH/O9wzBCeHgptfOHjAgK13lYmHqoHsLMf0ozvHPcD7yehJWMY3HLgtsBcvXnwB34F8ONTGmPxGA94a6FuU9vDiZy6+gNPDBjxcuNXoyA033PA4+01mLmzvnjLrIWuA36jP/dcb8h7nHcMePeks3JbV3rp167X8sVF8NMmI0UBENJCXa7/xo3fGXsuFhWW9Ows39nNed911uRdeeOEvI9IiU4jRgKaBi0Zk/vK663rDGxDAta3BRTsDt2W1n3/++Vk8jfDQ4A5lchkNBK+BNKdt6OJfD5rFewjcIV9chgq3BTZ/UGkY36wxz2cH318mZ4ga4Js7Dy1fMHpYZwHvDNzqIpI/1fEkX0Sab8+E2GEme/AasNltmdO/kP8k79Gpi8tQ4Las9rvvvjuBXxe7LvhqmpxGA53TQE6O7bp1r4+RW/PgNWj3JFS4ldXmW+zfY6vdudqavYwGQtAAOONb89/nXUK23sHCbVnt119//TKelmFqCPUzWY0GwtJAbq596j9eueQyLiSki8tQ4IbVdl555ZWzOTRmO6zuMjuHpgGbbfxlOeAOcIPDoPgLBm7LavM3H0fl5+d/KbSKmdxGA+FrID/P/qWXXxw1iksK2noHC7ey2pMnT8bQXzD7hN8aU4LRgIcGbPYpV3UDf0Fb70CgitV2LFq0aAhb7RkexzMrRgNR1ADPezJj0fyLhvAhYWzBbofuSbBwO6dOnfogX7miUCNGAzHRAA+cOP5lSt6DfPCgXJNg4HawO5LDs0XdFJMWmYMaDWgaKChw3DR5ck/MqBDwwrIjuMUlwTQN0/lzHvjuoBGjgZhqwG6ngmfnDsTbXgGtd0dwY5u6kBwwYMCt5qZNTPvUHLxNA+BwYP/0W3lVLiz9MuxvA6w2FsecOXN68fPaX2wr2wRGAzHXQF6O44tzZlsvEwur7erVEdzY5rz77rtv5s9S49anEaOBuNCA3W5L+/rt3W/mynTomnQEt3JJ+JvrmA3IiNFAXGmgX1FawC+m+YJbzLxjyZIlI/mNdtzTN2I0EFcayMqyXfbS7y4cyZWSURNw6yH+4MYOjokTJ95iLiQ99BX3K271Tx331Qy7guBy0vg8WG/FKoft4IbP4i3IpPztwsLCz3tvNOvxrYEW23iqKPs9VxKfnUlc4fncPSrvtUpYb2lygU+/frc33JZLcs899xSwS3KpxxFSdMVWv4dsle+Qzd0c9xqAGevm/AJVVBSTy+ViCDwhQQN8JLVLc1P7/bz39VXOuTye+/rK5zvNcz+U1ZG4XO5Lb5teWbBs1QHMUCXsWoV4w42yYLUd99133yQ2/dBVSoutbhc5997MmkscS4hOK2hxU1mlb7h9daj3f7r3uq99Yp3GJ67jnqktk5atopVcF3Dr0UnecKNNCu5+/fpNNv42m4PyN8jWdDTW/Rjy8TF22yPLTWeriFyWLQu5mLjeAbD26eaezMHfeQG3SLJaiwRdsK7g5icAJ+kbUjVuc+OziYkpPD0Cdc/nDk0EM9xJFedn2ybyrvizEnatknS4oQIsjlmzZvXMzs6+0MplIgmrAQHcwT0tHZxMYXaGe9QDX03vCW55kaap/vIFt33mzJlXt2VUmcxPYmsAgBfmsWkD4Nz9SbbYvnq1G7yC5Q7hRgYH35W82vjbiQ20d+11wL23JfI6OO1TSIBbXBMArsTbciu4eU4Sc1dSNJREoQKcZ9+DBY+U4F8AIv8GEleJUfrJyiTw2g5uGS0R2hXcPL79mSjVyxwmyhpwwkXJdVNFTeRGUQRwNEXiEkajedkZBF4FblUN/nHr5zDi9p/85Cd92NSzh2YkWTUAwAtgwcWkJXhD+UTKm3VLWh9uhmJYmiNwo5lY7Pw8yXDZaMLk1YAArkZRuOdhaRN5mXSxDdyCZ2FZrUgPKrj55s1QczEpKknuEIB347cRYcGFiEQMUf++3V1DubcEbtVx7Sw3v3UzLLm71LRO14AADqudyJKbaQO3ArdqjQ434naeB3CIsdyJ3M2h110Aj+QoSui16Pwe4DUnm4ZwCYphDhXcGC2Rcxahg0dKkMlIimkAgOdnu6mqzvdTg/Gujqx0G7jFiInFM0iHIME+atSo9MzMzAEqxfyknAbOAc4gMBWJdnGZke4eMOozmengmBcFuA63bdq0aYV4jDDletU02NIAAM/LOge3lZgYEceUMa2FXFWAbcEtKzaen4RHP42kugYE8M6Mg8uFqVh+6FLSfOlVtnU2v+yHcFCRG/xaPOt3KG29evUyN2989UAKpgHwXH4evKZee0A6SD0IsMgucQl9FaFvk7iEgfLr27vnucGvwK38E9lu42FAY7lFGyYkZcGz2YkFLgkg+TkOsdyqtjJaomjnZ7gN3AnQidGsosOhWXDrHZdo1iC4YwHgzEzfbglKsBm4g1NkquUSwGsb4neYEG5MTjp5WG6P0RIeBswxN3BSDd3g2gvAc/irox35wsGV1DW5UK/0DDemNlZeCI5ijQkikT91jY1GjAZ8asAX4AI7Qj3us4BOJOpl6nFfRaU77AI3Ntv00RK+gDBw+1KaSTuvgXOAu6mOZwqRuUcEOuSSuITn9+x8TC9L4hLqpTqdynIjCdbbc+6t1tbWFiQaMRroSAMAnF/MpXoA3lHGKG9rddk8+BWfG9WwNTU11fqaoSjKdTSHSwANAPCsjDYTGQf1xb9IYzPVclWU1UaVdLipoaEBG40YDQSlAR1wuYrzDlGQRZuPUmWb937+1r3L0/fnuQM9+NXhdhu4fWjfJHWoAQtwocwrtyQHC6vX7u1WvctDBkmrb7YBbstTErhVQl1dHb82asRoIDQNAHA8j+frIi+0ksLLzRe5wq/iGaMlQrq7oqLCw6yHdyizdypp4JwFd1MDzz4noyjRbD9OrMpaD8vtlqFAAO4uLy8X8qNZL3OsJNEAf6uGLfg5wKPdJMBdXuMCv4plHF/cElWX06dPV5vREqUK89NJDZwDPPouCv4tTpVTtV5tgVvRvnv37hoDt64eE++MBgB4Bs+hDGvqvaA8pIlIXPIhXdIkjx7KNskvIa4q9xyyA24Py40ViHvlypXVPNbNMzobMRoITwMW4F7FeMOJzZKmxwVa71DPg7hIczNVvba+SdwSJFszTgntbh4xKTHWW1RmwnA0AMDTYcG5kK5ccAXLIyUlfBiLY9Rb3BLEscFVW1tbghUjRgOR0IAFuOaKRKJc7zJqG2wlnObiRTwRBbfQjg0uHg781Fhu1oSRiGkAgKfxuJy3ixGpdVS0qtb9KQeKYQ4V02K5BXA3j5gUI7MRo4FIakAAj2SZelmnKuggr1scYxvg1hNaecTkoLHcUI2RSGtAAI+UxZZyUM89h1wwyviamcWzWG5sVyZ94cKFn/L3CxE3YjQQcQ0AcCfPjAMwIyVMq2vhasenXJ5iWMoVuIV2165duxp4xOSYZDCh0UCkNaADLtY3nLC+yXZs14EmfsPTuqAEz9ZoiQU3p7XW1NQY1wTaMdJlGsC7urDg4Qpc6JoGN/xtuCSw3MKyB9xi0l0nTpzYbPzucNVu9g+kAQE8lDFwlOnh0TDKJ8tsmznZ4pfjHpYb+yABGVq3bNmywbjdUImRrtYAAHeE4IML2HJC4OvIW/e3buB66pZbVbudz41MP/3pT3fziwvmNnxX96wpX2kAgHd2ZtnGFqr68QuO3eCWF59uCQ5iWe7q6uqms2fPbjWuCdRiJBoaEMBDORb4LKugLYwrvmGuw62KEcuNFQtujrccO3bsAwO30pH5iZIGBPBgR05QrWNltk0c4K33gHADcGRq2bBhw3rjd7MmjERVAwAccAcj8LfX7Wxdz3kFbvCLRYleDOIYnOEX9tWca93OnDmznmd+7aFypuiP48jjhMVIdDUQjNdQVecuK7iheSLXrJIXPO7KM6ko46wAl9fMOE0Rj0Q1YsJhC8O9mT+Vfb09Ub8EhFaFKc2taVReYRmDMEszu4eigY4Ad7HZPnyKMAQoVtvjYhLH0eHGusCNHVr27du3euDAgRGF21axm2zH1pLN3Yzjxb3YG89Qel02PzIM3bUXf9jjtSdf4i8def3s4veFW39l+StHHaODjaGW5zd/R8fw08pQy2ppddOuva2rGVPFKrdN4EYzlehuCRKwDuB5Pk/KGzlyZM/169e/z5/vi8gXFwC28x9fZrDh1ieOVNW7cBcscSqcAjWtbXRXf/l/K6/ed6rpDDcXr5fh9jtAtzrKl+XGRtDXzJa77siRI6tHjBhxUyRcE9vhV8lWe4SLTizJR3XZLtRiwMlIzDWAx/qOn6HV+04Rf1iQ4AKAV3Brgc1x6/Y74iIw71hwFjTxqMlKniBTtoUV2lyJS0c+f+GLJzc3EgcaYI+EthyilVwVAAVOhVmP2unj3LJBLLfyZe6///5NVVVVRzty7mXHZA8BeC6PJcF3M0tsdADbzF94OPq9P5OMb4NTsdweCPqDWwCHyW8uKSl5zcB9Tm95fDWSg8FSIzHRAC48SyvoNT64YpNDARvMeogvuJEBZh474axo5ikf/trM784bOacBATzYO2kmH1t5/quLxNLCCK/aSX8Fl7yI1Qav7cQf3DgLLL/7ySefLC4rK9turPd5/QHwbOODn1dIFGKw2uW1tP3/3qZiPpzub7ez2qhOMHDj7GjasWPHSy1qSBG7GYEGlAVnwI3/HR0dtLK53XWCXmLVC9hgE0Y4JLg5v9oBO8L8N82cOfM1nvah1FhvqOa85BoLfl4ZXRiD1a6sp9L7lil/G3CDS79goyr+LDe24Wyw/G5+9axh+/btf4jUsCAOkCwigEfCpzRl+PbN8ZDUzhP0h5oadbNG97d9Wm2wFQhuAVxZ729+85t/raysPGmsd/vTEoBn8dRhRiKvAWW1G+jk7OXqQlKstt9REqlBR3AjD8w+CgHcjUePHq3duXPnImO9WRs+xFhw31Y33H8jWO29J2jR0Qr1QSc8+QcewSX49CuB4IblRgHqopLDxm9/+9sr+E2dMmO9fesUY+DGgvvWTWdSYbVrmqjsxytpBfjjRS4mO/S3caxAcCOPWG8FOD9vUrVnz54XjfWGanyLAG5GUcIfRcFzJPtP0ov7jhPe6RWwA1pt9EwwcIv1Vn4379M4Z86cl9h6VxrrDRX6FgW4GQf3rZwgU2G1qxup8ud/V8N/YrXBYUCrjUMEAzfyifVWvvfGjRvLN2/e/LS5awnV+Bfc5MnCOHiE7s6lWjktTN22Unp6awmVs5aD9rWlR4KF29t6N8yYMWMFT96z07xnKar0HQLwTDOK4ls5HaTCHTlVTTvvWqR8bTyrLaMkQVltFB0s3MjrYb358yL1y5Ytm8vzm7iMewL1+BcB3PjgwfnguMPC85G4Xt5Gc3nShnrWbMhWG70RCtztrPfDDz/88f79+/9sLi79gy1bBHBZN6F/DeA2+4Ez9OdfvE4fc65OWW2UHgrcyC/WG38ROJsavv/97/+Gb8ufNdYb6ulY4H/DRUk13zmU9kKDlY109sd/pd9wFGDLhWRQIyTYXyRUuGG9cRAMC+Kg9e+9914ZX2D+mt0UXjUSSAMAPMP75b5AO6XQ9iama0sJ/XrjQSrjZotLAt7AHfgLWkKFGwUL4GrkhNfr+eJyJd+93Gbck+D0LoCHYtFSIS/uRJ6oom23v6BeIROwwVnIYKMnOgs33BPrriXHG+bNm/cIv45WY0ZPoNbAIoAHznk+By5IIXJhKnGV2JYuaXpe2R4o1PfR4/720/PocX/5O0rH6EhlA9U88096hPPp7gg4A28hWW0cqzNwYz/xvS3r/dxzzx1cvXr1L3j0hOfZCLkeKDPlBP43XBSAEcwCBQlEelz21dP0uGwPFOr76HF/++l59Li//P7S20ZHaO0++sXv31cfbvK22uAtZOks3DgQDijWG2da/V133fXm3r17l5ubO1BPcALA01PcB29mp4OnaVj+jcX0JmsNYMsIiVjt4JTplSscuGGeAbhYb1So7pZbbvnV8ePH9xr/20vTHaxaFpxNWyr41nob4WefrKG9dy6kX4EfXsQlAVfgq9NuQAS+SsKHPy829rt5gquWDydMmPCVjIyMdMzaKWI/8S5hMdJeA+r7MNyN6GwR0Zy/v/NIp+O4ckw9LsfR0/S4bA81xAx1VQ1U+8s19K1/7qVjXGYtL7Dc8oCUpg0cMTQJx3LjSDi4t3tSN3/+fPjfjxn/O7TOyGAXJQ2f0ODdsEAkPLfWtb9yLH/HD7Q9lNrhsqyBnY639tJjv39X+dlitQXssKw26hIu3ChDABf3BGdeHfvfq/jR2BVm/BsqCl4E8OD3SMycGM/ec4JW3LuYVnELADa4wb2TsN0RLkNJJOBGQTjLMBbpAfj06dOfLC4uft8ADhUFLwAcF5m6b5pMcVxAlpyl9298jp5krXiDDY7AU9gSKbhREVhwffSkjt+3rLn55pt/WFpa+rEZQQmtrwA3XJRkE4B9pJw+/trz9MPKOjVhvLc7Ao4iIpGGW/xv/L2o0ZMDBw5U8HyDD/HjscUteEDXSNAaEMCTxWrjgaiT1VT84Ev00IFTVMGKELDBiwz7RQzurrYNqqKHDh1q4tvzGyZfmHVNbsUHufz5byNBasDRZn7kvpiuOokj9LXgEJJHj/vKK/kk7Ex+7KOLlIUQdyBP19CJOa/Q/W/soSOchJERwB1RP5vLs6Qr4PZ55vHFZb2r1b1lXNHRa/muXKYB3OqDgBFfgOvg+CtAz6PHuyo/jqEvOA7WYbF5GrSKX71NDyzaQAc4SYb88O+O67SI+dlcliVdATcKB+CyyMFsH+w6WsnTAO+8pD9dx4CnGcBFNYFDAVwfBw+8V+xzAGyeKar+D+vpu798k7ZzjWCtxR3Rh/0iXtmugluvqECO0MbPD5zpmUs7RvamKQx4Rgp/S0rXUVBxAVwpkk1ivPviAPtsPVUv2Uizfvaq+jgToBarDbBhsdGcLpFowo0GqIas3kOnud0fjBlAk/nWc450Wpe0MMkKFV3BB9ddgHiLtzC27GOfmvcWPTj3DfqIuwFQY4ErolvshIab22KdnWiIasyGYqrkZwreu/ICmsivYBVIpyGzkY41IP92cpHZce7ob23icY/jVXToZ3+jB55fR59wDfCNSN1iR3xkxFcro2G55bhyhlqAf3yEanccp7WfG05j+XszRQAcf7VGAmsgHgHHyQawedqzXQ8up/949WNrVEQHO2J3IANpKZpwS10EbhV+eoYaV++lt68dRaPyM2mAAVzUFDgUwJEz1v436oBb6p+W0cZbX6CHNn1KpzkJUMPP1h+GYo/U+ifnaNdJtOHWwZZGus/UUMufPqS114+mfvkZNNxpLHjQPS6Ax9JFwRh2Hdtjnqzy9WnP0k9Ky9QNmpiCDQVGG27pNB1yxF31jeT63Xu07ooLqLx3N7oy3UFO6TjZyYS+NaAPqUbbgquhvkZq5FGwX13/ND3L/YgPnsLH9jXch76OmsQKbjRQQd0WWrAv30r7bXbaOLIPXZHppG7GTQmOBQ/AeZeuHj1B7/HEOXSikg4/vZZmzV5Ba/mwsNbiX8uoiNygQR9HVWIJtzQUjYaLYrkp6w5QOfvhb04aSn3YDx9m3BRRVcehAN7VFCk3hAfz9p6kN29fQD9Y+REd4poJ2GKx9TuPXV0ln4qJNdxotPeiQD9dTc3sprw39gI60zufxsFNkb9cny0xiUoDMtrUFTTBr1e30huo8e399D/TfkPPcj9V8oF1/1qeFRGLHbOeiTXcaLj0g1hvPXSv2EqfuG20bngRXc43fAod/H8rHRgzrcX5gS39tOlKjEI4IcDGmzPHKql43ts0i7/g+y6rQe44yoiIgC19GFNNwTWLF0FdcLJh4cf1Cd/p5Q9SqyW7ex7lLL2X7vjsILq3WyZ/vIBzWZ3ImYy01wDch3AFUOMZbJ5TpH7rYVrAs64uPVvtYan1N2hgrbGIwQr38GHtHw+WW28AlCKLnP0IW+ubyLX0A9pxqIzWXNib+vLk7oPlYtNArqvwfDwcvYgLUsu2eP9pemfOSvrBwyvpHe4HuCAyGgKwvZ/siwuwoYV4styojwieYsaCGT14dj1lxfl7YZYlz3j2drr6Xy6m2T3zqD+PqpAZNmTt+BGAiiVYgcWHC8L3H46+toOeenAZvc/7wuUAzAI01vVnRCLwP8ElRlDiFW40EXUTwAVyAG4tA3tR3oI76J4xA+mOvHTKgKtiIIfq2kswcANquCDVTdTIj0YsvXcpLSo9rcatYZ31RaDmU8Aa5Wp/0BinxDPcUA3qhwXuEwCHLw5LbgGO+MyraNCDk+nuEb1pOrsr6TyyYiBnxXiLP8ABNW6dswvStP8UrXrmPVr8x410mPfXgUYcUGOID1CLbx3CfwLvFUWJd7hFFagnrLhALq4KLjoF9IyvXkb9Zk+lmSOK6Cv8XfZMfl7cQC4a9BECatyIqW6gBob6b0+toT/+5SM1OQ5cDgEbcd0FAdRwQeIWaq6bkkSBG5VFXQVyWHFxVQC4QK7iU4ZTr4e/RLeN7kdfzcugXAU57xnOBRYfIykE1htv8yioG6lm1zH6y3/9nZat/UQ96CQgA2yJ+3JB4h5sdFYiwS1wCeDe/jjAFosOa57+2c9Q4X9/mW4Z3Zdm8J3OQszJJ3c7Uwl0AI0Fkw80sFPBU5iV7zpOL//0VVqx9VP1pTAALEAjrltq8asTwlpz3S1JRLil8gI5XBUs8MdlfFwgV8AX5lHW4zfSxCsG0vUDu9NEfnY8Xax5Ml+Awu0QK13bRE2lZ2n9llJ6g4f11pdXW4+h6hYacfjUcus8YVwQrnM7SWS40RjUXyAXn1wgB+ACucTTxw2mbj+cRlNH9aZp/QroYobcpmZ3QkFcUiJbdLHQ8Bnw0gC7Hu5jFbRzDz8Dwi/nrtlUom6VwzLLIhYa6zrUsNJiqRPCBeH6tpNEh1sa5AtyfXQFcAN6gVydAHdNoAF3j6PpQ3rQlIIcGoxRFoCubg5x5niHXYcZz3wAaIx6VNRSSXEZrV28iVYt2UBHuCkCrkCNdT0O10OsdMJDzW1Rkixw6+0R0MVd0V0WuQgV0MXKO798CRV9bRxdMbQHje3TjS7n0Za+cF0wdq7DjgPFwroDZIgCmkPAjDHpttGO4/zo6YcHy2jbnzbRlld30CnOAmB1qAVoPR1Ay4IjyMLRxJdkg1vvEbQNroq4KwI7ABeovUNsQz7nzHHU78YxdMWQnjSWn0q8LDuNemIObVyQAnbrwpQzQ3Tg9fi5rYF/BV7klLgijX9wIQiYEeKtcn7r5czJKvqo+AxtW7mdtvxxkxq+E+urwytwSyh5BGgu0XI/AlcywXIkM9zSFWLJBXSEFsQcB+BYF+glriBvS7dPGU6FUy+iwcOKaFBRPg3qlkUD89NpIFv4fmzdnQAez1OLK6POLK91bBPLq0IGFxd8AjHSsN5mlVt4/PlYVROV8qQ2paeq6DDPr3d4zW4q4WE7fAsdYAJWAVbiANk7DpiRJjAjVIflMGkFfZAqgrbqC+AF6Ahl8QU20mS7vo86WXIzyfm1K6jfZQNpQEEm5fP0w1lZaZTNw47Z7L9ns4XPZl8+i61+NsOdwQA3svWtY9+4ni1xHfvJdTw8V1fPS2Mz1Vc0UNVHpXTkT1voWE2DB5AAFFCK1RVgBWR9Xc8j+wjMEnJRyS2pBLfekzrkiCtQOdThFaB9wS0nhYRShne5so5jIy4CwCACmncolhWQCpwIJS7wAmyJ+8rrXS5nTx3RFZ46rfZsqQCohwK7Hgr4HaXpZUgcR9PjWBfo9LikIRSQBWZ93V8a0vUyJI5jpKRA6UY8NSAgeoeAGmmBQu/9UDrSvAXwQQRCPRRQA4X6PhI/V6r59al0oxZPDQisSPUVlzQ9lLx6iLi3AEiIHgqk3qHk886rCjA/7TWADjESugZ0vUncO5RSJV3W9VBAlTRZ9w6xXdIkrwkDaKAjxQfY1WwOoIFQdGvADaDMzmz+f6SMYEX4z7hMAAAAAElFTkSuQmCC'};return{FaviconsByHue,};});'use strict';Polymer({is:'tr-ui-b-info-bar-group',ready(){this.messages_=[];},clearMessages(){this.messages_=[];this.updateContents_();},addMessage(text,opt_buttons){opt_buttons=opt_buttons||[];for(let i=0;i<opt_buttons.length;i++){if(opt_buttons[i].buttonText===undefined){throw new Error('buttonText must be provided');}
8980if(opt_buttons[i].onClick===undefined){throw new Error('onClick must be provided');}}
8981this.messages_.push({text,buttons:opt_buttons||[]});this.updateContents_();},updateContents_(){Polymer.dom(this.$.messages).textContent='';this.messages_.forEach(function(message){const bar=document.createElement('tr-ui-b-info-bar');bar.message=message.text;bar.visible=true;message.buttons.forEach(function(button){bar.addButton(button.buttonText,button.onClick);},this);Polymer.dom(this.$.messages).appendChild(bar);},this);}});'use strict';Polymer({is:'tr-ui-b-toolbar-button'});'use strict';tr.exportTo('tr.ui',function(){const Task=tr.b.Task;function FindController(brushingStateController){this.brushingStateController_=brushingStateController;this.filterHits_=[];this.currentHitIndex_=-1;this.activePromise_=Promise.resolve();this.activeTask_=undefined;}
8982FindController.prototype={__proto__:Object.prototype,get model(){return this.brushingStateController_.model;},get brushingStateController(){return this.brushingStateController_;},enqueueOperation_(operation){let task;if(operation instanceof tr.b.Task){task=operation;}else{task=new tr.b.Task(operation,this);}
8983if(this.activeTask_){this.activeTask_=this.activeTask_.enqueue(task);}else{this.activeTask_=task;this.activePromise_=Task.RunWhenIdle(this.activeTask_);this.activePromise_.then(function(){this.activePromise_=undefined;this.activeTask_=undefined;}.bind(this));}},startFiltering(filterText){const sc=this.brushingStateController_;if(!sc)return;this.enqueueOperation_(function(){this.filterHits_=[];this.currentHitIndex_=-1;}.bind(this));let stateFromString;try{stateFromString=sc.uiStateFromString(filterText);}catch(e){this.enqueueOperation_(function(){const overlay=new tr.ui.b.Overlay();Polymer.dom(overlay).textContent=e.message;overlay.title='UI State Navigation Error';overlay.visible=true;});return this.activePromise_;}
8984if(stateFromString!==undefined){this.enqueueOperation_(sc.navToPosition.bind(this,stateFromString,true));}else{if(filterText.length===0){this.enqueueOperation_(sc.findTextCleared.bind(sc));}else{const filter=new tr.c.FullTextFilter(filterText);const filterHitSet=new tr.model.EventSet();this.enqueueOperation_(sc.addAllEventsMatchingFilterToSelectionAsTask(filter,filterHitSet));this.enqueueOperation_(function(){this.filterHits_=filterHitSet.toArray();sc.findTextChangedTo(filterHitSet);}.bind(this));}}
8985return this.activePromise_;},get filterHits(){return this.filterHits_;},get currentHitIndex(){return this.currentHitIndex_;},find_(dir){const firstHit=this.currentHitIndex_===-1;if(firstHit&&dir<0){this.currentHitIndex_=0;}
8986const N=this.filterHits.length;this.currentHitIndex_=(this.currentHitIndex_+dir+N)%N;if(!this.brushingStateController_)return;this.brushingStateController_.findFocusChangedTo(new tr.model.EventSet(this.filterHits[this.currentHitIndex]));},findNext(){this.find_(1);},findPrevious(){this.find_(-1);}};return{FindController,};});'use strict';tr.exportTo('tr.ui.b',function(){function TimingTool(viewport,targetElement){this.viewport_=viewport;this.onMouseMove_=this.onMouseMove_.bind(this);this.onDblClick_=this.onDblClick_.bind(this);this.targetElement_=targetElement;this.isMovingLeftEdge_=false;}
8987TimingTool.prototype={onEnterTiming(e){this.targetElement_.addEventListener('mousemove',this.onMouseMove_);this.targetElement_.addEventListener('dblclick',this.onDblClick_);},onBeginTiming(e){if(!this.isTouchPointInsideTrackBounds_(e.clientX,e.clientY)){return;}
8988const pt=this.getSnappedToEventPosition_(e);this.mouseDownAt_(pt.x,pt.y);this.updateSnapIndicators_(pt);},updateSnapIndicators_(pt){if(!pt.snapped)return;const ir=this.viewport_.interestRange;if(ir.min===pt.x){ir.leftSnapIndicator=new tr.ui.SnapIndicator(pt.y,pt.height);}
8989if(ir.max===pt.x){ir.rightSnapIndicator=new tr.ui.SnapIndicator(pt.y,pt.height);}},onUpdateTiming(e){const pt=this.getSnappedToEventPosition_(e);this.mouseMoveAt_(pt.x,pt.y,true);this.updateSnapIndicators_(pt);},onEndTiming(e){this.mouseUp_();},onExitTiming(e){this.targetElement_.removeEventListener('mousemove',this.onMouseMove_);this.targetElement_.removeEventListener('dblclick',this.onDblClick_);},onMouseMove_(e){if(e.button)return;const worldX=this.getWorldXFromEvent_(e);this.mouseMoveAt_(worldX,e.clientY,false);},onDblClick_(e){},isTouchPointInsideTrackBounds_(clientX,clientY){if(!this.viewport_||!this.viewport_.modelTrackContainer||!this.viewport_.modelTrackContainer.canvas){return false;}
8990const canvas=this.viewport_.modelTrackContainer.canvas;const canvasRect=canvas.getBoundingClientRect();if(clientX>=canvasRect.left&&clientX<=canvasRect.right&&clientY>=canvasRect.top&&clientY<=canvasRect.bottom){return true;}
8991return false;},mouseDownAt_(worldX,y){const ir=this.viewport_.interestRange;const dt=this.viewport_.currentDisplayTransform;const pixelRatio=window.devicePixelRatio||1;const nearnessThresholdWorld=dt.xViewVectorToWorld(6*pixelRatio);if(ir.isEmpty){ir.setMinAndMax(worldX,worldX);ir.rightSelected=true;this.isMovingLeftEdge_=false;return;}
8992if(Math.abs(worldX-ir.min)<nearnessThresholdWorld){ir.leftSelected=true;ir.min=worldX;this.isMovingLeftEdge_=true;return;}
8993if(Math.abs(worldX-ir.max)<nearnessThresholdWorld){ir.rightSelected=true;ir.max=worldX;this.isMovingLeftEdge_=false;return;}
8994ir.setMinAndMax(worldX,worldX);ir.rightSelected=true;this.isMovingLeftEdge_=false;},mouseMoveAt_(worldX,y,mouseDown){if(mouseDown){this.updateMovingEdge_(worldX);return;}
8995const ir=this.viewport_.interestRange;const dt=this.viewport_.currentDisplayTransform;const pixelRatio=window.devicePixelRatio||1;const nearnessThresholdWorld=dt.xViewVectorToWorld(6*pixelRatio);if(Math.abs(worldX-ir.min)<nearnessThresholdWorld){ir.leftSelected=true;ir.rightSelected=false;return;}
8996if(Math.abs(worldX-ir.max)<nearnessThresholdWorld){ir.leftSelected=false;ir.rightSelected=true;return;}
8997ir.leftSelected=false;ir.rightSelected=false;return;},updateMovingEdge_(newWorldX){const ir=this.viewport_.interestRange;let a=ir.min;let b=ir.max;if(this.isMovingLeftEdge_){a=newWorldX;}else{b=newWorldX;}
8998if(a<=b){ir.setMinAndMax(a,b);}else{ir.setMinAndMax(b,a);}
8999if(ir.min===newWorldX){this.isMovingLeftEdge_=true;ir.leftSelected=true;ir.rightSelected=false;}else{this.isMovingLeftEdge_=false;ir.leftSelected=false;ir.rightSelected=true;}},mouseUp_(){const dt=this.viewport_.currentDisplayTransform;const ir=this.viewport_.interestRange;ir.leftSelected=false;ir.rightSelected=false;const pixelRatio=window.devicePixelRatio||1;const minWidthValue=dt.xViewVectorToWorld(2*pixelRatio);if(ir.range<minWidthValue){ir.reset();}},getWorldXFromEvent_(e){const pixelRatio=window.devicePixelRatio||1;const canvas=this.viewport_.modelTrackContainer.canvas;const worldOffset=canvas.getBoundingClientRect().left;const viewX=(e.clientX-worldOffset)*pixelRatio;return this.viewport_.currentDisplayTransform.xViewToWorld(viewX);},getSnappedToEventPosition_(e){const pixelRatio=window.devicePixelRatio||1;const EVENT_SNAP_RANGE=16*pixelRatio;const modelTrackContainer=this.viewport_.modelTrackContainer;const modelTrackContainerRect=modelTrackContainer.getBoundingClientRect();const viewport=this.viewport_;const dt=viewport.currentDisplayTransform;const worldMaxDist=dt.xViewVectorToWorld(EVENT_SNAP_RANGE);const worldX=this.getWorldXFromEvent_(e);const mouseY=e.clientY;const selection=new tr.model.EventSet();modelTrackContainer.addClosestEventToSelection(worldX,worldMaxDist,mouseY,mouseY,selection);if(!selection.length){modelTrackContainer.addClosestEventToSelection(worldX,worldMaxDist,modelTrackContainerRect.top,modelTrackContainerRect.bottom,selection);}
9000let minDistX=worldMaxDist;let minDistY=Infinity;const pixWidth=dt.xViewVectorToWorld(1);const result={x:worldX,y:mouseY-modelTrackContainerRect.top,height:0,snapped:false};const eventBounds=new tr.b.math.Range();for(const event of selection){const track=viewport.trackForEvent(event);const trackRect=track.getBoundingClientRect();eventBounds.reset();event.addBoundsToRange(eventBounds);let eventX;if(Math.abs(eventBounds.min-worldX)<Math.abs(eventBounds.max-worldX)){eventX=eventBounds.min;}else{eventX=eventBounds.max;}
9001const distX=eventX-worldX;const eventY=trackRect.top;const eventHeight=trackRect.height;const distY=Math.abs(eventY+eventHeight/2-mouseY);if((distX<=minDistX||Math.abs(distX-minDistX)<pixWidth)&&distY<minDistY){minDistX=distX;minDistY=distY;result.x=eventX;result.y=eventY+
9002modelTrackContainer.scrollTop-modelTrackContainerRect.top;result.height=eventHeight;result.snapped=true;}}
9003return result;}};return{TimingTool,};});'use strict';tr.exportTo('tr.ui',function(){const kDefaultPanAnimationDurationMs=100.0;const lerp=tr.b.math.lerp;function TimelineDisplayTransformPanAnimation(deltaX,deltaY,opt_durationMs){this.deltaX=deltaX;this.deltaY=deltaY;if(opt_durationMs===undefined){this.durationMs=kDefaultPanAnimationDurationMs;}else{this.durationMs=opt_durationMs;}
9004this.startPanX=undefined;this.startPanY=undefined;this.startTimeMs=undefined;}
9005TimelineDisplayTransformPanAnimation.prototype={__proto__:tr.ui.b.Animation.prototype,get affectsPanY(){return this.deltaY!==0;},canTakeOverFor(existingAnimation){return existingAnimation instanceof TimelineDisplayTransformPanAnimation;},takeOverFor(existing,timestamp,target){const remainingDeltaXOnExisting=existing.goalPanX-target.panX;const remainingDeltaYOnExisting=existing.goalPanY-target.panY;let remainingTimeOnExisting=timestamp-(existing.startTimeMs+existing.durationMs);remainingTimeOnExisting=Math.max(remainingTimeOnExisting,0);this.deltaX+=remainingDeltaXOnExisting;this.deltaY+=remainingDeltaYOnExisting;this.durationMs+=remainingTimeOnExisting;},start(timestamp,target){this.startTimeMs=timestamp;this.startPanX=target.panX;this.startPanY=target.panY;},tick(timestamp,target){let percentDone=(timestamp-this.startTimeMs)/this.durationMs;percentDone=tr.b.math.clamp(percentDone,0,1);target.panX=lerp(percentDone,this.startPanX,this.goalPanX);if(this.affectsPanY){target.panY=lerp(percentDone,this.startPanY,this.goalPanY);}
9006return timestamp>=this.startTimeMs+this.durationMs;},get goalPanX(){return this.startPanX+this.deltaX;},get goalPanY(){return this.startPanY+this.deltaY;}};function TimelineDisplayTransformZoomToAnimation(goalFocalPointXWorld,goalFocalPointXView,goalFocalPointY,zoomInRatioX,opt_durationMs){this.goalFocalPointXWorld=goalFocalPointXWorld;this.goalFocalPointXView=goalFocalPointXView;this.goalFocalPointY=goalFocalPointY;this.zoomInRatioX=zoomInRatioX;if(opt_durationMs===undefined){this.durationMs=kDefaultPanAnimationDurationMs;}else{this.durationMs=opt_durationMs;}
9007this.startTimeMs=undefined;this.startScaleX=undefined;this.goalScaleX=undefined;this.startPanY=undefined;}
9008TimelineDisplayTransformZoomToAnimation.prototype={__proto__:tr.ui.b.Animation.prototype,get affectsPanY(){return this.startPanY!==this.goalFocalPointY;},canTakeOverFor(existingAnimation){return false;},takeOverFor(existingAnimation,timestamp,target){this.goalScaleX=target.scaleX*this.zoomInRatioX;},start(timestamp,target){this.startTimeMs=timestamp;this.startScaleX=target.scaleX;this.goalScaleX=this.zoomInRatioX*target.scaleX;this.startPanY=target.panY;},tick(timestamp,target){let percentDone=(timestamp-this.startTimeMs)/this.durationMs;percentDone=tr.b.math.clamp(percentDone,0,1);target.scaleX=lerp(percentDone,this.startScaleX,this.goalScaleX);if(this.affectsPanY){target.panY=lerp(percentDone,this.startPanY,this.goalFocalPointY);}
9009target.xPanWorldPosToViewPos(this.goalFocalPointXWorld,this.goalFocalPointXView);return timestamp>=this.startTimeMs+this.durationMs;}};return{TimelineDisplayTransformPanAnimation,TimelineDisplayTransformZoomToAnimation,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const DrawType={GENERAL_EVENT:1,INSTANT_EVENT:2,BACKGROUND:3,GRID:4,FLOW_ARROWS:5,MARKERS:6,HIGHLIGHTS:7,ANNOTATIONS:8};const MAX_OVERSIZE_MULTIPLE=3.0;const REDRAW_SLOP=(MAX_OVERSIZE_MULTIPLE-1)/2;const DrawingContainer=tr.ui.b.define('drawing-container',tr.ui.tracks.Track);DrawingContainer.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('drawing-container');this.canvas_=document.createElement('canvas');this.canvas_.className='drawing-container-canvas';this.canvas_.style.left=tr.ui.b.constants.HEADING_WIDTH+'px';Polymer.dom(this).appendChild(this.canvas_);this.ctx_=this.canvas_.getContext('2d');this.offsetY_=0;this.viewportChange_=this.viewportChange_.bind(this);this.viewport.addEventListener('change',this.viewportChange_);window.addEventListener('resize',this.windowResized_.bind(this));this.addEventListener('scroll',this.scrollChanged_.bind(this));},get canvas(){return this.canvas_;},context(){return this.ctx_;},viewportChange_(){this.invalidate();},windowResized_(){this.invalidate();},scrollChanged_(){if(this.updateOffsetY_()){this.invalidate();}},invalidate(){if(this.rafPending_)return;this.rafPending_=true;tr.b.requestPreAnimationFrame(this.preDraw_,this);},preDraw_(){this.rafPending_=false;this.updateCanvasSizeIfNeeded_();tr.b.requestAnimationFrameInThisFrameIfPossible(this.draw_,this);},draw_(){this.ctx_.clearRect(0,0,this.canvas_.width,this.canvas_.height);const typesToDraw=[DrawType.BACKGROUND,DrawType.HIGHLIGHTS,DrawType.GRID,DrawType.INSTANT_EVENT,DrawType.GENERAL_EVENT,DrawType.MARKERS,DrawType.ANNOTATIONS,DrawType.FLOW_ARROWS];for(const idx in typesToDraw){for(let i=0;i<this.children.length;++i){if(!(this.children[i]instanceof tr.ui.tracks.Track)){continue;}
9010this.children[i].drawTrack(typesToDraw[idx]);}}
9011const pixelRatio=window.devicePixelRatio||1;const bounds=this.canvas_.getBoundingClientRect();const dt=this.viewport.currentDisplayTransform;const viewLWorld=dt.xViewToWorld(0);const viewRWorld=dt.xViewToWorld(bounds.width*pixelRatio);const viewHeight=bounds.height*pixelRatio;this.viewport.drawGridLines(this.ctx_,viewLWorld,viewRWorld,viewHeight);},updateOffsetY_(){const maxYDelta=window.innerHeight*REDRAW_SLOP;let newOffset=this.scrollTop-maxYDelta;if(Math.abs(newOffset-this.offsetY_)<=maxYDelta)return false;const maxOffset=this.scrollHeight-
9012this.canvas_.getBoundingClientRect().height;newOffset=Math.max(0,Math.min(newOffset,maxOffset));if(newOffset!==this.offsetY_){this.offsetY_=newOffset;return true;}
9013return false;},updateCanvasSizeIfNeeded_(){const visibleChildTracks=Array.from(this.children).filter(this.visibleFilter_);if(visibleChildTracks.length===0){return;}
9014const thisBounds=this.getBoundingClientRect();const firstChildTrackBounds=visibleChildTracks[0].getBoundingClientRect();const lastChildTrackBounds=visibleChildTracks[visibleChildTracks.length-1].getBoundingClientRect();const innerWidth=firstChildTrackBounds.width-
9015tr.ui.b.constants.HEADING_WIDTH;const innerHeight=Math.min(lastChildTrackBounds.bottom-firstChildTrackBounds.top,Math.floor(window.innerHeight*MAX_OVERSIZE_MULTIPLE));const pixelRatio=window.devicePixelRatio||1;if(this.canvas_.width!==innerWidth*pixelRatio){this.canvas_.width=innerWidth*pixelRatio;this.canvas_.style.width=innerWidth+'px';}
9016if(this.canvas_.height!==innerHeight*pixelRatio){this.canvas_.height=innerHeight*pixelRatio;this.canvas_.style.height=innerHeight+'px';}
9017if(this.canvas_.top!==this.offsetY_){this.canvas_.top=this.offsetY_;this.canvas_.style.top=this.offsetY_+'px';}},visibleFilter_(element){if(!(element instanceof tr.ui.tracks.Track))return false;return window.getComputedStyle(element).display!=='none';},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){for(let i=0;i<this.children.length;++i){if(!(this.children[i]instanceof tr.ui.tracks.Track)){continue;}
9018const trackClientRect=this.children[i].getBoundingClientRect();const a=Math.max(loY,trackClientRect.top);const b=Math.min(hiY,trackClientRect.bottom);if(a<=b){this.children[i].addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection);}}
9019tr.ui.tracks.Track.prototype.addClosestEventToSelection.apply(this,arguments);},addEventsToTrackMap(eventToTrackMap){for(let i=0;i<this.children.length;++i){if(!(this.children[i]instanceof tr.ui.tracks.Track)){continue;}
9020this.children[i].addEventsToTrackMap(eventToTrackMap);}}};return{DrawingContainer,DrawType,};});'use strict';tr.exportTo('tr.model',function(){const SelectableItem=tr.model.SelectableItem;const SelectionState=tr.model.SelectionState;function ProxySelectableItem(modelItem){SelectableItem.call(this,modelItem);}
9021ProxySelectableItem.prototype={__proto__:SelectableItem.prototype,get selectionState(){const modelItem=this.modelItem_;if(modelItem===undefined){return SelectionState.NONE;}
9022return modelItem.selectionState;}};return{ProxySelectableItem,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const EventPresenter=tr.ui.b.EventPresenter;const SelectionState=tr.model.SelectionState;const LetterDotTrack=tr.ui.b.define('letter-dot-track',tr.ui.tracks.Track);LetterDotTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('letter-dot-track');this.items_=undefined;this.heading_=document.createElement('tr-ui-b-heading');Polymer.dom(this).appendChild(this.heading_);},set heading(heading){this.heading_.heading=heading;},get heading(){return this.heading_.heading;},set tooltip(tooltip){this.heading_.tooltip=tooltip;},get items(){return this.items_;},set items(items){this.items_=items;this.invalidateDrawingContainer();},get height(){return window.getComputedStyle(this).height;},set height(height){this.style.height=height;},get dumpRadiusView(){return 7*(window.devicePixelRatio||1);},draw(type,viewLWorld,viewRWorld,viewHeight){if(this.items_===undefined)return;switch(type){case tr.ui.tracks.DrawType.GENERAL_EVENT:this.drawLetterDots_(viewLWorld,viewRWorld);break;}},drawLetterDots_(viewLWorld,viewRWorld){const ctx=this.context();const pixelRatio=window.devicePixelRatio||1;const bounds=this.getBoundingClientRect();const height=bounds.height*pixelRatio;const halfHeight=height*0.5;const twoPi=Math.PI*2;const dt=this.viewport.currentDisplayTransform;const dumpRadiusView=this.dumpRadiusView;const itemRadiusWorld=dt.xViewVectorToWorld(height);const items=this.items_;const loI=tr.b.findLowIndexInSortedArray(items,function(item){return item.start;},viewLWorld);const oldFont=ctx.font;ctx.font='400 '+Math.floor(9*pixelRatio)+'px Arial';ctx.strokeStyle='rgb(0,0,0)';ctx.textBaseline='middle';ctx.textAlign='center';const drawItems=function(selected){for(let i=loI;i<items.length;++i){const item=items[i];const x=item.start;if(x-itemRadiusWorld>viewRWorld)break;if(item.selected!==selected)continue;const xView=dt.xWorldToView(x);ctx.fillStyle=EventPresenter.getSelectableItemColorAsString(item);ctx.beginPath();ctx.arc(xView,halfHeight,dumpRadiusView+0.5,0,twoPi);ctx.fill();if(item.selected){ctx.lineWidth=3;ctx.strokeStyle='rgb(100,100,0)';ctx.stroke();ctx.beginPath();ctx.arc(xView,halfHeight,dumpRadiusView,0,twoPi);ctx.lineWidth=1.5;ctx.strokeStyle='rgb(255,255,0)';ctx.stroke();}else{ctx.lineWidth=1;ctx.strokeStyle='rgb(0,0,0)';ctx.stroke();}
9023ctx.fillStyle='rgb(255, 255, 255)';ctx.fillText(item.dotLetter,xView,halfHeight);}};drawItems(false);drawItems(true);ctx.lineWidth=1;ctx.font=oldFont;},addEventsToTrackMap(eventToTrackMap){if(this.items_===undefined)return;this.items_.forEach(function(item){item.addToTrackMap(eventToTrackMap,this);},this);},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){if(this.items_===undefined)return;const itemRadiusWorld=viewPixWidthWorld*this.dumpRadiusView;tr.b.iterateOverIntersectingIntervals(this.items_,function(x){return x.start-itemRadiusWorld;},function(x){return 2*itemRadiusWorld;},loWX,hiWX,function(item){item.addToSelection(selection);}.bind(this));},addEventNearToProvidedEventToSelection(event,offset,selection){if(this.items_===undefined)return;const index=this.items_.findIndex(item=>item.modelItem===event);if(index===-1)return false;const newIndex=index+offset;if(newIndex>=0&&newIndex<this.items_.length){this.items_[newIndex].addToSelection(selection);return true;}
9024return false;},addAllEventsMatchingFilterToSelection(filter,selection){},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){if(this.items_===undefined)return;const item=tr.b.findClosestElementInSortedArray(this.items_,function(x){return x.start;},worldX,worldMaxDist);if(!item)return;item.addToSelection(selection);}};function LetterDot(modelItem,dotLetter,colorId,start){tr.model.ProxySelectableItem.call(this,modelItem);this.dotLetter=dotLetter;this.colorId=colorId;this.start=start;}
9025LetterDot.prototype={__proto__:tr.model.ProxySelectableItem.prototype};return{LetterDotTrack,LetterDot,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const AlertTrack=tr.ui.b.define('alert-track',tr.ui.tracks.LetterDotTrack);AlertTrack.prototype={__proto__:tr.ui.tracks.LetterDotTrack.prototype,decorate(viewport){tr.ui.tracks.LetterDotTrack.prototype.decorate.call(this,viewport);this.heading='Alerts';this.alerts_=undefined;},get alerts(){return this.alerts_;},set alerts(alerts){this.alerts_=alerts;if(alerts===undefined){this.items=undefined;return;}
9026this.items=this.alerts_.map(function(alert){return new tr.ui.tracks.LetterDot(alert,String.fromCharCode(9888),alert.colorId,alert.start);});}};return{AlertTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const Task=tr.b.Task;const ContainerTrack=tr.ui.b.define('container-track',tr.ui.tracks.Track);ContainerTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);},detach(){Polymer.dom(this).textContent='';},get tracks_(){const tracks=[];for(let i=0;i<this.children.length;i++){if(this.children[i]instanceof tr.ui.tracks.Track){tracks.push(this.children[i]);}}
9027return tracks;},drawTrack(type){this.tracks_.forEach(function(track){track.drawTrack(type);});},addIntersectingEventsInRangeToSelection(loVX,hiVX,loY,hiY,selection){for(let i=0;i<this.tracks_.length;i++){const trackClientRect=this.tracks_[i].getBoundingClientRect();const a=Math.max(loY,trackClientRect.top);const b=Math.min(hiY,trackClientRect.bottom);if(a<=b){this.tracks_[i].addIntersectingEventsInRangeToSelection(loVX,hiVX,loY,hiY,selection);}}
9028tr.ui.tracks.Track.prototype.addIntersectingEventsInRangeToSelection.apply(this,arguments);},addEventsToTrackMap(eventToTrackMap){for(const track of this.tracks_){track.addEventsToTrackMap(eventToTrackMap);}},addAllEventsMatchingFilterToSelection(filter,selection){for(let i=0;i<this.tracks_.length;i++){this.tracks_[i].addAllEventsMatchingFilterToSelection(filter,selection);}},addAllEventsMatchingFilterToSelectionAsTask(filter,selection){const task=new Task();for(let i=0;i<this.tracks_.length;i++){task.subTask(function(i){return function(){this.tracks_[i].addAllEventsMatchingFilterToSelection(filter,selection);};}(i),this);}
9029return task;},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){for(let i=0;i<this.tracks_.length;i++){const trackClientRect=this.tracks_[i].getBoundingClientRect();const a=Math.max(loY,trackClientRect.top);const b=Math.min(hiY,trackClientRect.bottom);if(a<=b){this.tracks_[i].addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection);}}
9030tr.ui.tracks.Track.prototype.addClosestEventToSelection.apply(this,arguments);},addContainersToTrackMap(containerToTrackMap){this.tracks_.forEach(function(track){track.addContainersToTrackMap(containerToTrackMap);});},clearTracks_(){this.tracks_.forEach(function(track){Polymer.dom(this).removeChild(track);},this);}};return{ContainerTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){function ChartPoint(modelItem,x,y,opt_yBase){tr.model.ProxySelectableItem.call(this,modelItem);this.x=x;this.y=y;this.dotLetter=undefined;this.yBase=opt_yBase;}
9031ChartPoint.prototype={__proto__:tr.model.ProxySelectableItem.prototype,};return{ChartPoint,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ColorScheme=tr.b.ColorScheme;const EventPresenter=tr.ui.b.EventPresenter;const SelectionState=tr.model.SelectionState;const ChartSeriesType={LINE:0,AREA:1};const DEFAULT_RENDERING_CONFIG={chartType:ChartSeriesType.LINE,selectedPointSize:4,unselectedPointSize:3,solidSelectedDots:false,colorId:0,lineWidth:1,skipDistance:1,unselectedPointDensityTransparent:0.10,unselectedPointDensityOpaque:0.05,backgroundOpacity:0.5,stepGraph:true};const LAST_POINT_WIDTH=16;const DOT_LETTER_RADIUS_PX=7;const DOT_LETTER_RADIUS_PADDING_PX=0.5;const DOT_LETTER_SELECTED_OUTLINE_WIDTH_PX=3;const DOT_LETTER_SELECTED_OUTLINE_DETAIL_WIDTH_PX=1.5;const DOT_LETTER_UNSELECTED_OUTLINE_WIDTH_PX=1;const DOT_LETTER_FONT_WEIGHT=400;const DOT_LETTER_FONT_SIZE_PX=9;const DOT_LETTER_FONT='Arial';const ChartSeriesComponent={BACKGROUND:0,LINE:1,DOTS:2};function ChartSeries(points,seriesYAxis,opt_renderingConfig){this.points=points;this.seriesYAxis=seriesYAxis;this.useRenderingConfig_(opt_renderingConfig);}
9032ChartSeries.prototype={useRenderingConfig_(opt_renderingConfig){const config=opt_renderingConfig||{};for(const[key,defaultValue]of
9033Object.entries(DEFAULT_RENDERING_CONFIG)){let value=config[key];if(value===undefined){value=defaultValue;}
9034this[key+'_']=value;}
9035this.topPadding=this.bottomPadding=Math.max(this.selectedPointSize_,this.unselectedPointSize_)/2;},get range(){const range=new tr.b.math.Range();this.points.forEach(function(point){range.addValue(point.y);},this);return range;},draw(ctx,transform,highDetails){if(this.points===undefined||this.points.length===0){return;}
9036if(this.chartType_===ChartSeriesType.AREA){this.drawComponent_(ctx,transform,ChartSeriesComponent.BACKGROUND,highDetails);}
9037if(this.chartType_===ChartSeriesType.LINE||highDetails){this.drawComponent_(ctx,transform,ChartSeriesComponent.LINE,highDetails);}
9038this.drawComponent_(ctx,transform,ChartSeriesComponent.DOTS,highDetails);},drawComponent_(ctx,transform,component,highDetails){let extraPixels=0;if(component===ChartSeriesComponent.DOTS){extraPixels=Math.max(this.selectedPointSize_,this.unselectedPointSize_);}
9039const pixelRatio=transform.pixelRatio;const leftViewX=transform.leftViewX-extraPixels*pixelRatio;const rightViewX=transform.rightViewX+extraPixels*pixelRatio;const leftTimestamp=transform.leftTimestamp-extraPixels;const rightTimestamp=transform.rightTimestamp+extraPixels;const firstVisibleIndex=tr.b.findLowIndexInSortedArray(this.points,function(point){return point.x;},leftTimestamp);let lastVisibleIndex=tr.b.findLowIndexInSortedArray(this.points,function(point){return point.x;},rightTimestamp);if(lastVisibleIndex>=this.points.length||this.points[lastVisibleIndex].x>rightTimestamp){lastVisibleIndex--;}
9040const viewSkipDistance=this.skipDistance_*pixelRatio;let selectedCircleRadius;let letterDotRadius;let squareSize;let squareHalfSize;let squareOpacity;let unselectedSeriesColor;let currentStateSeriesColor;ctx.save();ctx.font=DOT_LETTER_FONT_WEIGHT+' '+
9041Math.floor(DOT_LETTER_FONT_SIZE_PX*pixelRatio)+'px '+
9042DOT_LETTER_FONT;ctx.textBaseline='middle';ctx.textAlign='center';switch(component){case ChartSeriesComponent.DOTS:{selectedCircleRadius=(this.selectedPointSize_/2)*pixelRatio;letterDotRadius=Math.max(selectedCircleRadius,DOT_LETTER_RADIUS_PX*pixelRatio);squareSize=this.unselectedPointSize_*pixelRatio;squareHalfSize=squareSize/2;unselectedSeriesColor=EventPresenter.getCounterSeriesColor(this.colorId_,SelectionState.NONE);if(!highDetails){squareOpacity=0;break;}
9043const visibleIndexRange=lastVisibleIndex-firstVisibleIndex;if(visibleIndexRange<=0){squareOpacity=1;break;}
9044const visibleViewXRange=transform.worldXToViewX(this.points[lastVisibleIndex].x)-
9045transform.worldXToViewX(this.points[firstVisibleIndex].x);if(visibleViewXRange===0){squareOpacity=1;break;}
9046const density=visibleIndexRange/visibleViewXRange;const clampedDensity=tr.b.math.clamp(density,this.unselectedPointDensityOpaque_,this.unselectedPointDensityTransparent_);const densityRange=this.unselectedPointDensityTransparent_-
9047this.unselectedPointDensityOpaque_;squareOpacity=(this.unselectedPointDensityTransparent_-clampedDensity)/densityRange;break;}
9048case ChartSeriesComponent.LINE:ctx.strokeStyle=EventPresenter.getCounterSeriesColor(this.colorId_,SelectionState.NONE);ctx.lineWidth=this.lineWidth_*pixelRatio;break;case ChartSeriesComponent.BACKGROUND:break;default:throw new Error('Invalid component: '+component);}
9049let previousViewX=undefined;let previousViewY=undefined;let previousViewYBase=undefined;let lastSelectionState=undefined;let baseSteps=undefined;const startIndex=Math.max(firstVisibleIndex-1,0);let currentViewX;for(let i=startIndex;i<this.points.length;i++){const currentPoint=this.points[i];currentViewX=transform.worldXToViewX(currentPoint.x);if(currentViewX>rightViewX){if(previousViewX!==undefined){previousViewX=currentViewX=rightViewX;if(component===ChartSeriesComponent.BACKGROUND||component===ChartSeriesComponent.LINE){ctx.lineTo(currentViewX,previousViewY);}}
9050break;}
9051if(i+1<this.points.length){const nextPoint=this.points[i+1];const nextViewX=transform.worldXToViewX(nextPoint.x);if(previousViewX!==undefined&&nextViewX-previousViewX<=viewSkipDistance&&nextViewX<rightViewX){continue;}
9052if(currentViewX<leftViewX){currentViewX=leftViewX;}}
9053if(previousViewX!==undefined&&currentViewX-previousViewX<viewSkipDistance){currentViewX=previousViewX+viewSkipDistance;}
9054const currentViewY=Math.round(transform.worldYToViewY(currentPoint.y));let currentViewYBase;if(currentPoint.yBase===undefined){currentViewYBase=transform.outerBottomViewY;}else{currentViewYBase=Math.round(transform.worldYToViewY(currentPoint.yBase));}
9055const currentSelectionState=currentPoint.selectionState;if(currentSelectionState!==lastSelectionState){const opacity=currentSelectionState===SelectionState.SELECTED?1:squareOpacity;currentStateSeriesColor=EventPresenter.getCounterSeriesColor(this.colorId_,currentSelectionState,opacity);}
9056switch(component){case ChartSeriesComponent.DOTS:if(currentPoint.dotLetter){ctx.fillStyle=unselectedSeriesColor;ctx.strokeStyle=ColorScheme.getColorForReservedNameAsString('black');ctx.beginPath();ctx.arc(currentViewX,currentViewY,letterDotRadius+DOT_LETTER_RADIUS_PADDING_PX,0,2*Math.PI);ctx.fill();if(currentSelectionState===SelectionState.SELECTED){ctx.lineWidth=DOT_LETTER_SELECTED_OUTLINE_WIDTH_PX;ctx.strokeStyle=ColorScheme.getColorForReservedNameAsString('olive');ctx.stroke();ctx.beginPath();ctx.arc(currentViewX,currentViewY,letterDotRadius,0,2*Math.PI);ctx.lineWidth=DOT_LETTER_SELECTED_OUTLINE_DETAIL_WIDTH_PX;ctx.strokeStyle=ColorScheme.getColorForReservedNameAsString('yellow');ctx.stroke();}else{ctx.lineWidth=DOT_LETTER_UNSELECTED_OUTLINE_WIDTH_PX;ctx.strokeStyle=ColorScheme.getColorForReservedNameAsString('black');ctx.stroke();}
9057ctx.fillStyle=ColorScheme.getColorForReservedNameAsString('white');ctx.fillText(currentPoint.dotLetter,currentViewX,currentViewY);}else{ctx.strokeStyle=unselectedSeriesColor;ctx.lineWidth=pixelRatio;if(currentSelectionState===SelectionState.SELECTED){if(this.solidSelectedDots_){ctx.fillStyle=ctx.strokeStyle;}else{ctx.fillStyle=currentStateSeriesColor;}
9058ctx.beginPath();ctx.arc(currentViewX,currentViewY,selectedCircleRadius,0,2*Math.PI);ctx.fill();ctx.stroke();}else if(squareOpacity>0){ctx.fillStyle=currentStateSeriesColor;ctx.fillRect(currentViewX-squareHalfSize,currentViewY-squareHalfSize,squareSize,squareSize);}}
9059break;case ChartSeriesComponent.LINE:if(previousViewX===undefined){ctx.beginPath();ctx.moveTo(currentViewX,currentViewY);}else if(this.stepGraph_){ctx.lineTo(currentViewX,previousViewY);}
9060ctx.lineTo(currentViewX,currentViewY);break;case ChartSeriesComponent.BACKGROUND:if(previousViewX!==undefined&&this.stepGraph_){ctx.lineTo(currentViewX,previousViewY);}else{ctx.lineTo(currentViewX,currentViewY);}
9061if(currentSelectionState!==lastSelectionState){if(previousViewX!==undefined){let previousBaseStepViewX=currentViewX;for(let j=baseSteps.length-1;j>=0;j--){const baseStep=baseSteps[j];const baseStepViewX=baseStep.viewX;const baseStepViewY=baseStep.viewY;ctx.lineTo(previousBaseStepViewX,baseStepViewY);ctx.lineTo(baseStepViewX,baseStepViewY);previousBaseStepViewX=baseStepViewX;}
9062ctx.closePath();ctx.fill();}
9063ctx.beginPath();ctx.fillStyle=EventPresenter.getCounterSeriesColor(this.colorId_,currentSelectionState,this.backgroundOpacity_);ctx.moveTo(currentViewX,currentViewYBase);baseSteps=[];}
9064if(currentViewYBase!==previousViewYBase||currentSelectionState!==lastSelectionState){baseSteps.push({viewX:currentViewX,viewY:currentViewYBase});}
9065ctx.lineTo(currentViewX,currentViewY);break;default:throw new Error('Not reachable');}
9066previousViewX=currentViewX;previousViewY=currentViewY;previousViewYBase=currentViewYBase;lastSelectionState=currentSelectionState;}
9067if(previousViewX!==undefined){switch(component){case ChartSeriesComponent.DOTS:break;case ChartSeriesComponent.LINE:ctx.stroke();break;case ChartSeriesComponent.BACKGROUND:{let previousBaseStepViewX=currentViewX;for(let j=baseSteps.length-1;j>=0;j--){const baseStep=baseSteps[j];const baseStepViewX=baseStep.viewX;const baseStepViewY=baseStep.viewY;ctx.lineTo(previousBaseStepViewX,baseStepViewY);ctx.lineTo(baseStepViewX,baseStepViewY);previousBaseStepViewX=baseStepViewX;}
9068ctx.closePath();ctx.fill();break;}
9069default:throw new Error('Not reachable');}}
9070ctx.restore();},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){const points=this.points;function getPointWidth(point,i){if(i===points.length-1){return LAST_POINT_WIDTH*viewPixWidthWorld;}
9071const nextPoint=points[i+1];return nextPoint.x-point.x;}
9072function selectPoint(point){point.addToSelection(selection);}
9073tr.b.iterateOverIntersectingIntervals(this.points,function(point){return point.x;},getPointWidth,loWX,hiWX,selectPoint);},addEventNearToProvidedEventToSelection(event,offset,selection){if(this.points===undefined)return false;const index=this.points.findIndex(point=>point.modelItem===event);if(index===-1)return false;const newIndex=index+offset;if(newIndex<0||newIndex>=this.points.length)return false;this.points[newIndex].addToSelection(selection);return true;},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){if(this.points===undefined)return;const item=tr.b.findClosestElementInSortedArray(this.points,function(point){return point.x;},worldX,worldMaxDist);if(!item)return;item.addToSelection(selection);}};return{ChartSeries,ChartSeriesType,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ColorScheme=tr.b.ColorScheme;const IDEAL_MAJOR_MARK_HEIGHT_PX=30;const AXIS_LABLE_MARGIN_PX=10;const AXIS_LABLE_FONT_SIZE_PX=9;const AXIS_LABLE_FONT='Arial';function ChartSeriesYAxis(opt_min,opt_max){this.guid_=tr.b.GUID.allocateSimple();this.bounds=new tr.b.math.Range();if(opt_min!==undefined)this.bounds.addValue(opt_min);if(opt_max!==undefined)this.bounds.addValue(opt_max);}
9074ChartSeriesYAxis.prototype={get guid(){return this.guid_;},valueToUnitRange(value){if(this.bounds.isEmpty){throw new Error('Chart series y-axis bounds are empty');}
9075const bounds=this.bounds;if(bounds.range===0)return 0;return(value-bounds.min)/bounds.range;},unitRangeToValue(unitRange){if(this.bounds.isEmpty){throw new Error('Chart series y-axis bounds are empty');}
9076return unitRange*this.bounds.range+this.bounds.min;},autoSetFromSeries(series,opt_config){const range=new tr.b.math.Range();series.forEach(function(s){range.addRange(s.range);},this);this.autoSetFromRange(range,opt_config);},autoSetFromRange(range,opt_config){if(range.isEmpty)return;const bounds=this.bounds;if(bounds.isEmpty){bounds.addRange(range);return;}
9077if(!opt_config)return;const useRangeMin=(opt_config.expandMin&&range.min<bounds.min||opt_config.shrinkMin&&range.min>bounds.min);const useRangeMax=(opt_config.expandMax&&range.max>bounds.max||opt_config.shrinkMax&&range.max<bounds.max);if(!useRangeMin&&!useRangeMax)return;if(useRangeMin&&useRangeMax){bounds.min=range.min;bounds.max=range.max;return;}
9078if(useRangeMin){bounds.min=Math.min(range.min,bounds.max);}else{bounds.max=Math.max(range.max,bounds.min);}},majorMarkHeightWorld_(transform,pixelRatio){const idealMajorMarkHeightPx=IDEAL_MAJOR_MARK_HEIGHT_PX*pixelRatio;const idealMajorMarkHeightWorld=transform.vectorToWorldDistance(idealMajorMarkHeightPx);return tr.b.math.preferredNumberLargerThanMin(idealMajorMarkHeightWorld);},draw(ctx,transform,showYAxisLabels,showYGridLines){if(!showYAxisLabels&&!showYGridLines)return;const pixelRatio=transform.pixelRatio;const viewTop=transform.outerTopViewY;const worldTop=transform.viewYToWorldY(viewTop);const viewBottom=transform.outerBottomViewY;const viewHeight=viewBottom-viewTop;const viewLeft=transform.leftViewX;const viewRight=transform.rightViewX;const labelLeft=transform.leftYLabel;ctx.save();ctx.lineWidth=pixelRatio;ctx.fillStyle=ColorScheme.getColorForReservedNameAsString('black');ctx.textAlign='left';ctx.textBaseline='center';ctx.font=(AXIS_LABLE_FONT_SIZE_PX*pixelRatio)+'px '+AXIS_LABLE_FONT;ctx.beginPath();ctx.strokeStyle=ColorScheme.getColorForReservedNameAsString('black');tr.ui.b.drawLine(ctx,viewLeft,viewTop,viewLeft,viewBottom,viewLeft);ctx.stroke();ctx.closePath();ctx.beginPath();ctx.strokeStyle=ColorScheme.getColorForReservedNameAsString('grey');const majorMarkHeight=this.majorMarkHeightWorld_(transform,pixelRatio);const maxMajorMark=Math.max(transform.viewYToWorldY(viewTop),Math.abs(transform.viewYToWorldY(viewBottom)));for(let curWorldY=0;curWorldY<=maxMajorMark;curWorldY+=majorMarkHeight){const roundedUnitValue=Math.floor(curWorldY*1000000)/1000000;const curViewYPositive=transform.worldYToViewY(curWorldY);if(curViewYPositive>=viewTop){if(showYAxisLabels){ctx.fillText(roundedUnitValue,viewLeft+AXIS_LABLE_MARGIN_PX,curViewYPositive-AXIS_LABLE_MARGIN_PX);}
9079if(showYGridLines){tr.ui.b.drawLine(ctx,viewLeft,curViewYPositive,viewRight,curViewYPositive);}}
9080const curViewYNegative=transform.worldYToViewY(-1*curWorldY);if(curViewYNegative<=viewBottom){if(showYAxisLabels){ctx.fillText(roundedUnitValue,viewLeft+AXIS_LABLE_MARGIN_PX,curViewYNegative-AXIS_LABLE_MARGIN_PX);}
9081if(showYGridLines){tr.ui.b.drawLine(ctx,viewLeft,curViewYNegative,viewRight,curViewYNegative);}}}
9082ctx.stroke();ctx.restore();}};return{ChartSeriesYAxis,};});'use strict';tr.exportTo('tr.ui.tracks',function(){function ChartTransform(displayTransform,axis,trackWidth,trackHeight,topPadding,bottomPadding,pixelRatio){this.pixelRatio=pixelRatio;this.leftViewX=0;this.rightViewX=trackWidth;this.leftTimestamp=displayTransform.xViewToWorld(this.leftViewX);this.rightTimestamp=displayTransform.xViewToWorld(this.rightViewX);this.displayTransform_=displayTransform;this.outerTopViewY=0;this.innerTopViewY=topPadding;this.innerBottomViewY=trackHeight-bottomPadding;this.outerBottomViewY=trackHeight;this.axis_=axis;this.innerHeight_=this.innerBottomViewY-this.innerTopViewY;}
9083ChartTransform.prototype={worldXToViewX(worldX){return this.displayTransform_.xWorldToView(worldX);},viewXToWorldX(viewX){return this.displayTransform_.xViewToWorld(viewX);},vectorToWorldDistance(viewY){return this.axis_.bounds.range*Math.abs(viewY/this.innerHeight_);},viewYToWorldY(viewY){return this.axis_.unitRangeToValue(1-(viewY-this.innerTopViewY)/this.innerHeight_);},worldYToViewY(worldY){const innerHeightCoefficient=1-this.axis_.valueToUnitRange(worldY);return innerHeightCoefficient*this.innerHeight_+this.innerTopViewY;}};return{ChartTransform,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ChartTrack=tr.ui.b.define('chart-track',tr.ui.tracks.Track);ChartTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('chart-track');this.series_=undefined;this.axes_=undefined;this.axisGuidToAxisData_=undefined;this.topPadding_=undefined;this.bottomPadding_=undefined;this.showYAxisLabels_=undefined;this.showGridLines_=undefined;this.heading_=document.createElement('tr-ui-b-heading');Polymer.dom(this).appendChild(this.heading_);},set heading(heading){this.heading_.heading=heading;},get heading(){return this.heading_.heading;},set tooltip(tooltip){this.heading_.tooltip=tooltip;},get series(){return this.series_;},set series(series){this.series_=series;this.calculateAxisDataAndPadding_();this.invalidateDrawingContainer();},get height(){return window.getComputedStyle(this).height;},set height(height){this.style.height=height;this.invalidateDrawingContainer();},get showYAxisLabels(){return this.showYAxisLabels_;},set showYAxisLabels(showYAxisLabels){this.showYAxisLabels_=showYAxisLabels;this.invalidateDrawingContainer();},get showGridLines(){return this.showGridLines_;},set showGridLines(showGridLines){this.showGridLines_=showGridLines;this.invalidateDrawingContainer();},get hasVisibleContent(){return!!this.series&&this.series.length>0;},calculateAxisDataAndPadding_(){if(!this.series_){this.axes_=undefined;this.axisGuidToAxisData_=undefined;this.topPadding_=undefined;this.bottomPadding_=undefined;return;}
9084const axisGuidToAxisData={};let topPadding=0;let bottomPadding=0;this.series_.forEach(function(series){const seriesYAxis=series.seriesYAxis;const axisGuid=seriesYAxis.guid;if(!(axisGuid in axisGuidToAxisData)){axisGuidToAxisData[axisGuid]={axis:seriesYAxis,series:[]};if(!this.axes_)this.axes_=[];this.axes_.push(seriesYAxis);}
9085axisGuidToAxisData[axisGuid].series.push(series);topPadding=Math.max(topPadding,series.topPadding);bottomPadding=Math.max(bottomPadding,series.bottomPadding);},this);this.axisGuidToAxisData_=axisGuidToAxisData;this.topPadding_=topPadding;this.bottomPadding_=bottomPadding;},draw(type,viewLWorld,viewRWorld,viewHeight){switch(type){case tr.ui.tracks.DrawType.GENERAL_EVENT:this.drawChart_(viewLWorld,viewRWorld);break;}},drawChart_(viewLWorld,viewRWorld){if(!this.series_)return;const ctx=this.context();const displayTransform=this.viewport.currentDisplayTransform;const pixelRatio=window.devicePixelRatio||1;const bounds=this.getBoundingClientRect();const highDetails=this.viewport.highDetails;const width=bounds.width*pixelRatio;const height=bounds.height*pixelRatio;const topPadding=this.topPadding_*pixelRatio;const bottomPadding=this.bottomPadding_*pixelRatio;ctx.save();ctx.beginPath();ctx.rect(0,0,width,height);ctx.clip();if(this.axes_){if((this.showGridLines_||this.showYAxisLabels_)&&this.axes_.length>1){throw new Error('Only one axis allowed when showing grid lines.');}
9086for(const yAxis of this.axes_){const chartTransform=new tr.ui.tracks.ChartTransform(displayTransform,yAxis,width,height,topPadding,bottomPadding,pixelRatio);yAxis.draw(ctx,chartTransform,this.showYAxisLabels_,this.showGridLines_);}}
9087for(const series of this.series){const chartTransform=new tr.ui.tracks.ChartTransform(displayTransform,series.seriesYAxis,width,height,topPadding,bottomPadding,pixelRatio);series.draw(ctx,chartTransform,highDetails);}
9088ctx.restore();},addEventsToTrackMap(eventToTrackMap){this.series_.forEach(function(series){series.points.forEach(function(point){point.addToTrackMap(eventToTrackMap,this);},this);},this);},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){this.series_.forEach(function(series){series.addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection);},this);},addEventNearToProvidedEventToSelection(event,offset,selection){let foundItem=false;this.series_.forEach(function(series){foundItem=foundItem||series.addEventNearToProvidedEventToSelection(event,offset,selection);},this);return foundItem;},addAllEventsMatchingFilterToSelection(filter,selection){},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){this.series_.forEach(function(series){series.addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection);},this);},autoSetAllAxes(opt_config){for(const axisData of Object.values(this.axisGuidToAxisData_)){const seriesYAxis=axisData.axis;const series=axisData.series;seriesYAxis.autoSetFromSeries(series,opt_config);}},autoSetAxis(seriesYAxis,opt_config){const series=this.axisGuidToAxisData_[seriesYAxis.guid].series;seriesYAxis.autoSetFromSeries(series,opt_config);}};return{ChartTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ColorScheme=tr.b.ColorScheme;const ChartTrack=tr.ui.tracks.ChartTrack;const CpuUsageTrack=tr.ui.b.define('cpu-usage-track',ChartTrack);CpuUsageTrack.prototype={__proto__:ChartTrack.prototype,decorate(viewport){ChartTrack.prototype.decorate.call(this,viewport);this.classList.add('cpu-usage-track');this.heading='CPU usage';this.cpuUsageSeries_=undefined;},initialize(model){if(model!==undefined){this.cpuUsageSeries_=model.device.cpuUsageSeries;}else{this.cpuUsageSeries_=undefined;}
9089this.series=this.buildChartSeries_();this.autoSetAllAxes({expandMax:true});},get hasVisibleContent(){return!!this.cpuUsageSeries_&&this.cpuUsageSeries_.samples.length>0;},addContainersToTrackMap(containerToTrackMap){containerToTrackMap.addContainer(this.series_,this);},buildChartSeries_(yAxis,color){if(!this.hasVisibleContent)return[];yAxis=new tr.ui.tracks.ChartSeriesYAxis(0,undefined);const usageSamples=this.cpuUsageSeries_.samples;const pts=new Array(usageSamples.length+1);for(let i=0;i<usageSamples.length;i++){pts[i]=new tr.ui.tracks.ChartPoint(undefined,usageSamples[i].start,usageSamples[i].usage);}
9090pts[usageSamples.length]=new tr.ui.tracks.ChartPoint(undefined,usageSamples[usageSamples.length-1].start,0);const renderingConfig={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId:color};return[new tr.ui.tracks.ChartSeries(pts,yAxis,renderingConfig)];},};return{CpuUsageTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ColorScheme=tr.b.ColorScheme;const ChartTrack=tr.ui.tracks.ChartTrack;const PowerSeriesTrack=tr.ui.b.define('power-series-track',ChartTrack);PowerSeriesTrack.prototype={__proto__:ChartTrack.prototype,decorate(viewport){ChartTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('power-series-track');this.heading='Power';this.powerSeries_=undefined;},set powerSeries(powerSeries){this.powerSeries_=powerSeries;this.series=this.buildChartSeries_();this.autoSetAllAxes({expandMax:true});},get hasVisibleContent(){return(this.powerSeries_&&this.powerSeries_.samples.length>0);},addContainersToTrackMap(containerToTrackMap){containerToTrackMap.addContainer(this.powerSeries_,this);},buildChartSeries_(){if(!this.hasVisibleContent)return[];const seriesYAxis=new tr.ui.tracks.ChartSeriesYAxis(0,undefined);const pts=this.powerSeries_.samples.map(function(smpl){return new tr.ui.tracks.ChartPoint(smpl,smpl.start,smpl.powerInW);});const renderingConfig={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId:ColorScheme.getColorIdForGeneralPurposeString(this.heading)};return[new tr.ui.tracks.ChartSeries(pts,seriesYAxis,renderingConfig)];}};return{PowerSeriesTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const SpacingTrack=tr.ui.b.define('spacing-track',tr.ui.tracks.Track);SpacingTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('spacing-track');this.heading_=document.createElement('tr-ui-b-heading');Polymer.dom(this).appendChild(this.heading_);},addAllEventsMatchingFilterToSelection(filter,selection){}};return{SpacingTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ContainerTrack=tr.ui.tracks.ContainerTrack;const DeviceTrack=tr.ui.b.define('device-track',ContainerTrack);DeviceTrack.prototype={__proto__:ContainerTrack.prototype,decorate(viewport){ContainerTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('device-track');this.device_=undefined;this.powerSeriesTrack_=undefined;},get device(){return this.device_;},set device(device){this.device_=device;this.updateContents_();},get powerSeriesTrack(){return this.powerSeriesTrack_;},get hasVisibleContent(){return(this.powerSeriesTrack_&&this.powerSeriesTrack_.hasVisibleContent);},addContainersToTrackMap(containerToTrackMap){tr.ui.tracks.ContainerTrack.prototype.addContainersToTrackMap.call(this,containerToTrackMap);containerToTrackMap.addContainer(this.device,this);},addEventsToTrackMap(eventToTrackMap){this.tracks_.forEach(function(track){track.addEventsToTrackMap(eventToTrackMap);});},appendPowerSeriesTrack_(){this.powerSeriesTrack_=new tr.ui.tracks.PowerSeriesTrack(this.viewport);this.powerSeriesTrack_.powerSeries=this.device.powerSeries;if(this.powerSeriesTrack_.hasVisibleContent){Polymer.dom(this).appendChild(this.powerSeriesTrack_);Polymer.dom(this).appendChild(new tr.ui.tracks.SpacingTrack(this.viewport));}},updateContents_(){this.clearTracks_();this.appendPowerSeriesTrack_();}};return{DeviceTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ColorScheme=tr.b.ColorScheme;const DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;const BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;const LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;const DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;const SYSTEM_MEMORY_CHART_RENDERING_CONFIG={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId:ColorScheme.getColorIdForGeneralPurposeString('systemMemory'),backgroundOpacity:0.8};const SYSTEM_MEMORY_SERIES_NAMES=['Used (KB)','Swapped (KB)'];function extractGlobalMemoryDumpUsedSizes(globalMemoryDump,addSize){for(const[pid,pmd]of
9091Object.entries(globalMemoryDump.processMemoryDumps)){const mostRecentVmRegions=pmd.mostRecentVmRegions;if(mostRecentVmRegions===undefined)continue;addSize(pid,mostRecentVmRegions.byteStats.proportionalResident||0,pmd.process.userFriendlyName);}}
9092function extractProcessMemoryDumpAllocatorSizes(processMemoryDump,addSize){const allocatorDumps=processMemoryDump.memoryAllocatorDumps;if(allocatorDumps===undefined)return;allocatorDumps.forEach(function(allocatorDump){if(allocatorDump.fullName==='tracing')return;const allocatorSize=allocatorDump.numerics[DISPLAYED_SIZE_NUMERIC_NAME];if(allocatorSize===undefined)return;const allocatorSizeValue=allocatorSize.value;if(allocatorSizeValue===undefined)return;addSize(allocatorDump.fullName,allocatorSizeValue);});}
9093function extractGlobalMemoryDumpAllocatorSizes(globalMemoryDump,addSize){for(const pmd of Object.values(globalMemoryDump.processMemoryDumps)){extractProcessMemoryDumpAllocatorSizes(pmd,addSize);}}
9094function buildMemoryChartSeries(memoryDumps,dumpSizeExtractor){const dumpCount=memoryDumps.length;const idToTimestampToPoint={};const idToName={};memoryDumps.forEach(function(dump,index){dumpSizeExtractor(dump,function addSize(id,size,opt_name){let timestampToPoint=idToTimestampToPoint[id];if(timestampToPoint===undefined){idToTimestampToPoint[id]=timestampToPoint=new Array(dumpCount);for(let i=0;i<dumpCount;i++){const modelItem=memoryDumps[i];timestampToPoint[i]=new tr.ui.tracks.ChartPoint(modelItem,modelItem.start,0);}}
9095timestampToPoint[index].y+=size;if(opt_name!==undefined)idToName[id]=opt_name;});});const ids=Object.keys(idToTimestampToPoint);if(ids.length===0)return undefined;ids.sort();for(let i=0;i<dumpCount;i++){let baseSize=0;for(let j=ids.length-1;j>=0;j--){const point=idToTimestampToPoint[ids[j]][i];point.yBase=baseSize;point.y+=baseSize;baseSize=point.y;}}
9096const seriesYAxis=new tr.ui.tracks.ChartSeriesYAxis(0);const series=ids.map(function(id){const colorId=ColorScheme.getColorIdForGeneralPurposeString(idToName[id]||id);const renderingConfig={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId,backgroundOpacity:0.8};return new tr.ui.tracks.ChartSeries(idToTimestampToPoint[id],seriesYAxis,renderingConfig);});series.reverse();return series;}
9097function buildMemoryLetterDots(memoryDumps){const backgroundMemoryColorId=ColorScheme.getColorIdForReservedName('background_memory_dump');const lightMemoryColorId=ColorScheme.getColorIdForReservedName('light_memory_dump');const detailedMemoryColorId=ColorScheme.getColorIdForReservedName('detailed_memory_dump');return memoryDumps.map(function(memoryDump){let memoryColorId;switch(memoryDump.levelOfDetail){case BACKGROUND:memoryColorId=backgroundMemoryColorId;break;case DETAILED:memoryColorId=detailedMemoryColorId;break;case LIGHT:default:memoryColorId=lightMemoryColorId;}
9098return new tr.ui.tracks.LetterDot(memoryDump,'M',memoryColorId,memoryDump.start);});}
9099function buildGlobalUsedMemoryChartSeries(globalMemoryDumps){return buildMemoryChartSeries(globalMemoryDumps,extractGlobalMemoryDumpUsedSizes);}
9100function buildProcessAllocatedMemoryChartSeries(processMemoryDumps){return buildMemoryChartSeries(processMemoryDumps,extractProcessMemoryDumpAllocatorSizes);}
9101function buildGlobalAllocatedMemoryChartSeries(globalMemoryDumps){return buildMemoryChartSeries(globalMemoryDumps,extractGlobalMemoryDumpAllocatorSizes);}
9102function buildSystemMemoryChartSeries(model){if(model.kernel.counters===undefined)return;const memoryCounter=model.kernel.counters['global.SystemMemory'];if(memoryCounter===undefined)return;const tracks=[];for(const name of SYSTEM_MEMORY_SERIES_NAMES){const series=memoryCounter.series.find(series=>series.name===name);if(series===undefined||series.samples.length===0)return;const chartPoints=[];const valueRange=new tr.b.math.Range();for(const sample of series.samples){chartPoints.push(new tr.ui.tracks.ChartPoint(sample,sample.timestamp,sample.value,0));valueRange.addValue(sample.value);}
9103const baseLine=Math.max(0,valueRange.min-valueRange.range);const axisY=new tr.ui.tracks.ChartSeriesYAxis(baseLine,valueRange.max);const chartSeries=[new tr.ui.tracks.ChartSeries(chartPoints,axisY,SYSTEM_MEMORY_CHART_RENDERING_CONFIG)];tracks.push({name:'System Memory '+name,series:chartSeries});}
9104return tracks;}
9105return{buildMemoryLetterDots,buildGlobalUsedMemoryChartSeries,buildProcessAllocatedMemoryChartSeries,buildGlobalAllocatedMemoryChartSeries,buildSystemMemoryChartSeries,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const USED_MEMORY_TRACK_HEIGHT=50;const ALLOCATED_MEMORY_TRACK_HEIGHT=50;const GlobalMemoryDumpTrack=tr.ui.b.define('global-memory-dump-track',tr.ui.tracks.ContainerTrack);GlobalMemoryDumpTrack.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);this.memoryDumps_=undefined;},get memoryDumps(){return this.memoryDumps_;},set memoryDumps(memoryDumps){this.memoryDumps_=memoryDumps;this.updateContents_();},updateContents_(){this.clearTracks_();if(!this.memoryDumps_||!this.memoryDumps_.length)return;this.appendDumpDotsTrack_();this.appendUsedMemoryTrack_();this.appendAllocatedMemoryTrack_();},appendDumpDotsTrack_(){const items=tr.ui.tracks.buildMemoryLetterDots(this.memoryDumps_);if(!items)return;const track=new tr.ui.tracks.LetterDotTrack(this.viewport);track.heading='Memory Dumps';track.items=items;Polymer.dom(this).appendChild(track);},appendUsedMemoryTrack_(){const tracks=[];const perProcessSeries=tr.ui.tracks.buildGlobalUsedMemoryChartSeries(this.memoryDumps_);if(perProcessSeries!==undefined){tracks.push({name:'Memory per process',series:perProcessSeries});}else{tracks.push.apply(tracks,tr.ui.tracks.buildSystemMemoryChartSeries(this.memoryDumps_[0].model));}
9106for(const{name,series}of tracks){const track=new tr.ui.tracks.ChartTrack(this.viewport);track.heading=name;track.height=USED_MEMORY_TRACK_HEIGHT+'px';track.series=series;track.autoSetAllAxes({expandMax:true});Polymer.dom(this).appendChild(track);}},appendAllocatedMemoryTrack_(){const series=tr.ui.tracks.buildGlobalAllocatedMemoryChartSeries(this.memoryDumps_);if(!series)return;const track=new tr.ui.tracks.ChartTrack(this.viewport);track.heading='Memory per component';track.height=ALLOCATED_MEMORY_TRACK_HEIGHT+'px';track.series=series;track.autoSetAllAxes({expandMax:true});Polymer.dom(this).appendChild(track);}};return{GlobalMemoryDumpTrack,};});'use strict';tr.exportTo('tr.ui.b',function(){function FastRectRenderer(ctx,xMin,xMax,minRectSize,maxMergeDist,palette){this.ctx_=ctx;this.xMin_=xMin;this.xMax_=xMax;this.minRectSize_=minRectSize;this.maxMergeDist_=maxMergeDist;this.palette_=palette;}
9107FastRectRenderer.prototype={y_:0,h_:0,merging_:false,mergeStartX_:0,mergeCurRight_:0,mergedColorId_:0,mergedAlpha_:0,setYandH(y,h){if(this.y_===y&&this.h_===h){return;}
9108this.flush();this.y_=y;this.h_=h;},fillRect(x,w,colorId,alpha){const r=x+w;if(w<this.minRectSize_){if(r-this.mergeStartX_>this.maxMergeDist_){this.flush();}
9109if(!this.merging_){this.merging_=true;this.mergeStartX_=x;this.mergeCurRight_=r;this.mergedColorId_=colorId;this.mergedAlpha_=alpha;}else{this.mergeCurRight_=r;if(this.mergedAlpha_<alpha||(this.mergedAlpha_===alpha&&this.mergedColorId_<colorId)){this.mergedAlpha_=alpha;this.mergedColorId_=colorId;}}}else{if(this.merging_){this.flush();}
9110this.ctx_.fillStyle=this.palette_[colorId];this.ctx_.globalAlpha=alpha;const xLeft=Math.max(x,this.xMin_);const xRight=Math.min(r,this.xMax_);if(xLeft<xRight){this.ctx_.fillRect(xLeft,this.y_,xRight-xLeft,this.h_);}}},flush(){if(this.merging_){this.ctx_.fillStyle=this.palette_[this.mergedColorId_];this.ctx_.globalAlpha=this.mergedAlpha_;const xLeft=Math.max(this.mergeStartX_,this.xMin_);const xRight=Math.min(this.mergeCurRight_,this.xMax_);if(xLeft<xRight){this.ctx_.fillRect(xLeft,this.y_,xRight-xLeft,this.h_);}
9111this.merging_=false;}}};return{FastRectRenderer,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const RectTrack=tr.ui.b.define('rect-track',tr.ui.tracks.Track);RectTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('rect-track');this.asyncStyle_=false;this.rects_=null;this.heading_=document.createElement('tr-ui-b-heading');Polymer.dom(this).appendChild(this.heading_);},set heading(heading){this.heading_.heading=heading;},get heading(){return this.heading_.heading;},set tooltip(tooltip){this.heading_.tooltip=tooltip;},set selectionGenerator(generator){this.heading_.selectionGenerator=generator;},set expanded(expanded){this.heading_.expanded=!!expanded;},set arrowVisible(arrowVisible){this.heading_.arrowVisible=!!arrowVisible;},get expanded(){return this.heading_.expanded;},get asyncStyle(){return this.asyncStyle_;},set asyncStyle(v){this.asyncStyle_=!!v;},get rects(){return this.rects_;},set rects(rects){this.rects_=rects||[];this.invalidateDrawingContainer();},get height(){return window.getComputedStyle(this).height;},set height(height){this.style.height=height;this.invalidateDrawingContainer();},get hasVisibleContent(){return this.rects_.length>0;},draw(type,viewLWorld,viewRWorld,viewHeight){switch(type){case tr.ui.tracks.DrawType.GENERAL_EVENT:this.drawRects_(viewLWorld,viewRWorld);break;}},drawRects_(viewLWorld,viewRWorld){const ctx=this.context();ctx.save();const bounds=this.getBoundingClientRect();tr.ui.b.drawSlices(ctx,this.viewport.currentDisplayTransform,viewLWorld,viewRWorld,bounds.height,this.rects_,this.asyncStyle_);ctx.restore();if(bounds.height<=6)return;let fontSize;let yOffset;if(bounds.height<15){fontSize=6;yOffset=1.0;}else{fontSize=10;yOffset=2.5;}
9112tr.ui.b.drawLabels(ctx,this.viewport.currentDisplayTransform,viewLWorld,viewRWorld,this.rects_,this.asyncStyle_,fontSize,yOffset);},addEventsToTrackMap(eventToTrackMap){if(this.rects_===undefined||this.rects_===null){return;}
9113this.rects_.forEach(function(rect){rect.addToTrackMap(eventToTrackMap,this);},this);},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){function onRect(rect){rect.addToSelection(selection);}
9114onRect=onRect.bind(this);const instantEventWidth=2*viewPixWidthWorld;tr.b.iterateOverIntersectingIntervals(this.rects_,function(x){return x.start;},function(x){return x.duration===0?x.duration+instantEventWidth:x.duration;},loWX,hiWX,onRect);},addEventNearToProvidedEventToSelection(event,offset,selection){const index=this.rects_.findIndex(rect=>rect.modelItem===event);if(index===-1)return false;const newIndex=index+offset;if(newIndex<0||newIndex>=this.rects_.length)return false;this.rects_[newIndex].addToSelection(selection);return true;},addAllEventsMatchingFilterToSelection(filter,selection){for(let i=0;i<this.rects_.length;++i){const modelItem=this.rects_[i].modelItem;if(!modelItem)continue;if(filter.matchSlice(modelItem)){selection.push(modelItem);}}},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){const rect=tr.b.findClosestIntervalInSortedIntervals(this.rects_,function(x){return x.start;},function(x){return x.end;},worldX,worldMaxDist);if(!rect)return;rect.addToSelection(selection);}};function Rect(modelItem,title,colorId,start,duration){tr.model.ProxySelectableItem.call(this,modelItem);this.title=title;this.colorId=colorId;this.start=start;this.duration=duration;this.end=start+duration;}
9115Rect.prototype={__proto__:tr.model.ProxySelectableItem.prototype};return{RectTrack,Rect,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const SliceTrack=tr.ui.b.define('slice-track',tr.ui.tracks.RectTrack);SliceTrack.prototype={__proto__:tr.ui.tracks.RectTrack.prototype,decorate(viewport){tr.ui.tracks.RectTrack.prototype.decorate.call(this,viewport);},get slices(){return this.rects;},set slices(slices){this.rects=slices;}};return{SliceTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const CpuTrack=tr.ui.b.define('cpu-track',tr.ui.tracks.ContainerTrack);CpuTrack.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('cpu-track');this.detailedMode_=true;},get cpu(){return this.cpu_;},set cpu(cpu){this.cpu_=cpu;this.updateContents_();},get detailedMode(){return this.detailedMode_;},set detailedMode(detailedMode){this.detailedMode_=detailedMode;this.updateContents_();},get tooltip(){return this.tooltip_;},set tooltip(value){this.tooltip_=value;this.updateContents_();},get hasVisibleContent(){if(this.cpu_===undefined)return false;const cpu=this.cpu_;if(cpu.slices.length)return true;if(cpu.samples&&cpu.samples.length)return true;if(Object.keys(cpu.counters).length>0)return true;return false;},updateContents_(){this.detach();if(!this.cpu_)return;const slices=this.cpu_.slices;if(slices.length){const track=new tr.ui.tracks.SliceTrack(this.viewport);track.slices=slices;track.heading=this.cpu_.userFriendlyName+':';Polymer.dom(this).appendChild(track);}
9116if(this.detailedMode_){this.appendSamplesTracks_();for(const counterName in this.cpu_.counters){const counter=this.cpu_.counters[counterName];const track=new tr.ui.tracks.CounterTrack(this.viewport);track.heading=this.cpu_.userFriendlyName+' '+
9117counter.name+':';track.counter=counter;Polymer.dom(this).appendChild(track);}}},appendSamplesTracks_(){const samples=this.cpu_.samples;if(samples===undefined||samples.length===0){return;}
9118const samplesByTitle={};samples.forEach(function(sample){if(samplesByTitle[sample.title]===undefined){samplesByTitle[sample.title]=[];}
9119samplesByTitle[sample.title].push(sample);});const sampleTitles=Object.keys(samplesByTitle);sampleTitles.sort();sampleTitles.forEach(function(sampleTitle){const samples=samplesByTitle[sampleTitle];const samplesTrack=new tr.ui.tracks.SliceTrack(this.viewport);samplesTrack.group=this.cpu_;samplesTrack.slices=samples;samplesTrack.heading=this.cpu_.userFriendlyName+': '+
9120sampleTitle;samplesTrack.tooltip=this.cpu_.userFriendlyDetails;samplesTrack.selectionGenerator=function(){const selection=new tr.model.EventSet();for(let i=0;i<samplesTrack.slices.length;i++){selection.push(samplesTrack.slices[i]);}
9121return selection;};Polymer.dom(this).appendChild(samplesTrack);},this);}};return{CpuTrack,};});'use strict';tr.exportTo('tr.model',function(){const Settings=tr.b.Settings;function ModelSettings(model){this.model=model;this.objectsByKey_=[];this.nonuniqueKeys_=[];this.buildObjectsByKeyMap_();this.removeNonuniqueKeysFromSettings_();this.ephemeralSettingsByGUID_={};}
9122ModelSettings.prototype={buildObjectsByKeyMap_(){const objects=[];this.model.iterateAllPersistableObjects(function(o){objects.push(o);});const objectsByKey={};const NONUNIQUE_KEY='nonuniqueKey';for(let i=0;i<objects.length;i++){const object=objects[i];const objectKey=object.getSettingsKey();if(!objectKey)continue;if(objectsByKey[objectKey]===undefined){objectsByKey[objectKey]=object;continue;}
9123objectsByKey[objectKey]=NONUNIQUE_KEY;}
9124const nonuniqueKeys={};Object.keys(objectsByKey).forEach(function(objectKey){if(objectsByKey[objectKey]!==NONUNIQUE_KEY){return;}
9125delete objectsByKey[objectKey];nonuniqueKeys[objectKey]=true;});this.nonuniqueKeys=nonuniqueKeys;this.objectsByKey_=objectsByKey;},removeNonuniqueKeysFromSettings_(){const settings=Settings.get('trace_model_settings',{});let settingsChanged=false;Object.keys(settings).forEach(function(objectKey){if(!this.nonuniqueKeys[objectKey]){return;}
9126settingsChanged=true;delete settings[objectKey];},this);if(settingsChanged){Settings.set('trace_model_settings',settings);}},hasUniqueSettingKey(object){const objectKey=object.getSettingsKey();if(!objectKey)return false;return this.objectsByKey_[objectKey]!==undefined;},getSettingFor(object,objectLevelKey,defaultValue){const objectKey=object.getSettingsKey();if(!objectKey||!this.objectsByKey_[objectKey]){const settings=this.getEphemeralSettingsFor_(object);const ephemeralValue=settings[objectLevelKey];if(ephemeralValue!==undefined){return ephemeralValue;}
9127return defaultValue;}
9128const settings=Settings.get('trace_model_settings',{});if(!settings[objectKey]){settings[objectKey]={};}
9129const value=settings[objectKey][objectLevelKey];if(value!==undefined){return value;}
9130return defaultValue;},setSettingFor(object,objectLevelKey,value){const objectKey=object.getSettingsKey();if(!objectKey||!this.objectsByKey_[objectKey]){this.getEphemeralSettingsFor_(object)[objectLevelKey]=value;return;}
9131const settings=Settings.get('trace_model_settings',{});if(!settings[objectKey]){settings[objectKey]={};}
9132if(settings[objectKey][objectLevelKey]===value){return;}
9133settings[objectKey][objectLevelKey]=value;Settings.set('trace_model_settings',settings);},getEphemeralSettingsFor_(object){if(object.guid===undefined){throw new Error('Only objects with GUIDs can be persisted');}
9134if(this.ephemeralSettingsByGUID_[object.guid]===undefined){this.ephemeralSettingsByGUID_[object.guid]={};}
9135return this.ephemeralSettingsByGUID_[object.guid];}};return{ModelSettings,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const CounterTrack=tr.ui.b.define('counter-track',tr.ui.tracks.ChartTrack);CounterTrack.prototype={__proto__:tr.ui.tracks.ChartTrack.prototype,decorate(viewport){tr.ui.tracks.ChartTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('counter-track');},get counter(){return this.chart;},set counter(counter){this.heading=counter.name+': ';this.series=CounterTrack.buildChartSeriesFromCounter(counter);this.autoSetAllAxes({expandMax:true});},getModelEventFromItem(chartValue){return chartValue;}};CounterTrack.buildChartSeriesFromCounter=function(counter){const numSeries=counter.series.length;const totals=counter.totals;const seriesYAxis=new tr.ui.tracks.ChartSeriesYAxis(0,undefined);const chartSeries=counter.series.map(function(series,seriesIndex){const chartPoints=series.samples.map(function(sample,sampleIndex){const total=totals[sampleIndex*numSeries+seriesIndex];return new tr.ui.tracks.ChartPoint(sample,sample.timestamp,total);});const renderingConfig={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId:series.color};return new tr.ui.tracks.ChartSeries(chartPoints,seriesYAxis,renderingConfig);});chartSeries.reverse();return chartSeries;};return{CounterTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const startCompare=function(x,y){return x.start-y.start;};const FrameTrack=tr.ui.b.define('frame-track',tr.ui.tracks.LetterDotTrack);FrameTrack.prototype={__proto__:tr.ui.tracks.LetterDotTrack.prototype,decorate(viewport){tr.ui.tracks.LetterDotTrack.prototype.decorate.call(this,viewport);this.heading='Frames';this.frames_=undefined;this.items=undefined;},get frames(){return this.frames_;},set frames(frames){this.frames_=frames;if(frames===undefined)return;this.frames_=this.frames_.slice();this.frames_.sort(startCompare);this.items=this.frames_.map(function(frame){return new FrameDot(frame);});}};function FrameDot(frame){tr.ui.tracks.LetterDot.call(this,frame,'F',frame.colorId,frame.start);}
9136FrameDot.prototype={__proto__:tr.ui.tracks.LetterDot.prototype};return{FrameTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const MultiRowTrack=tr.ui.b.define('multi-row-track',tr.ui.tracks.ContainerTrack);MultiRowTrack.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);this.tooltip_='';this.heading_='';this.groupingSource_=undefined;this.itemsToGroup_=undefined;this.defaultToCollapsedWhenSubRowCountMoreThan=1;this.currentSubRowsWithHeadings_=undefined;this.expanded_=true;},get itemsToGroup(){return this.itemsToGroup_;},setItemsToGroup(itemsToGroup,opt_groupingSource){this.itemsToGroup_=itemsToGroup;this.groupingSource_=opt_groupingSource;this.currentSubRowsWithHeadings_=undefined;this.updateContents_();this.updateExpandedStateFromGroupingSource_();},setPrebuiltSubRows(groupingSource,subRowsWithHeadings){this.itemsToGroup_=undefined;this.groupingSource_=groupingSource;this.currentSubRowsWithHeadings_=subRowsWithHeadings;this.updateContents_();this.updateExpandedStateFromGroupingSource_();},get heading(){return this.heading_;},set heading(h){this.heading_=h;this.updateHeadingAndTooltip_();},get tooltip(){return this.tooltip_;},set tooltip(t){this.tooltip_=t;this.updateHeadingAndTooltip_();},get subRows(){return this.currentSubRowsWithHeadings_.map(elem=>elem.row);},get hasVisibleContent(){return this.children.length>0;},get expanded(){return this.expanded_;},set expanded(expanded){if(this.expanded_===expanded)return;this.expanded_=expanded;this.expandedStateChanged_();},onHeadingClicked_(e){if(this.subRows.length<=1)return;this.expanded=!this.expanded;if(this.groupingSource_){const modelSettings=new tr.model.ModelSettings(this.groupingSource_.model);modelSettings.setSettingFor(this.groupingSource_,'expanded',this.expanded);}
9137e.stopPropagation();},updateExpandedStateFromGroupingSource_(){if(this.groupingSource_){const numSubRows=this.subRows.length;const modelSettings=new tr.model.ModelSettings(this.groupingSource_.model);if(numSubRows>1){let defaultExpanded;if(numSubRows>this.defaultToCollapsedWhenSubRowCountMoreThan){defaultExpanded=false;}else{defaultExpanded=true;}
9138this.expanded=modelSettings.getSettingFor(this.groupingSource_,'expanded',defaultExpanded);}else{this.expanded=undefined;}}},expandedStateChanged_(){const minH=Math.max(2,Math.ceil(18/this.children.length));const h=(this.expanded_?18:minH)+'px';for(let i=0;i<this.children.length;i++){this.children[i].height=h;if(i===0){this.children[i].arrowVisible=true;}
9139this.children[i].expanded=this.expanded;}
9140if(this.children.length===1){this.children[0].expanded=true;this.children[0].arrowVisible=false;}},updateContents_(){tr.ui.tracks.ContainerTrack.prototype.updateContents_.call(this);this.detach();if(this.currentSubRowsWithHeadings_===undefined){if(this.itemsToGroup_===undefined){return;}
9141const subRows=this.buildSubRows_(this.itemsToGroup_);this.currentSubRowsWithHeadings_=subRows.map(row=>{return{row,heading:undefined};});}
9142if(this.currentSubRowsWithHeadings_===undefined||this.currentSubRowsWithHeadings_.length===0){return;}
9143const addSubTrackEx=(items,opt_heading)=>{const track=this.addSubTrack_(items);if(opt_heading!==undefined){track.heading=opt_heading;}
9144track.addEventListener('heading-clicked',this.onHeadingClicked_.bind(this));};if(this.currentSubRowsWithHeadings_[0].heading!==undefined&&this.currentSubRowsWithHeadings_[0].heading!==this.heading_){addSubTrackEx([]);}
9145for(const subRowWithHeading of this.currentSubRowsWithHeadings_){const subRow=subRowWithHeading.row;if(subRow.length===0){continue;}
9146addSubTrackEx(subRow,subRowWithHeading.heading);}
9147this.updateHeadingAndTooltip_();this.expandedStateChanged_();},updateHeadingAndTooltip_(){if(!Polymer.dom(this).firstChild)return;Polymer.dom(this).firstChild.heading=this.heading_;Polymer.dom(this).firstChild.tooltip=this.tooltip_;},buildSubRows_(itemsToGroup){throw new Error('Not implemented');},addSubTrack_(subRowItems){throw new Error('Not implemented');},areArrayContentsSame_(a,b){if(!a||!b)return false;if(!a.length||!b.length)return false;if(a.length!==b.length)return false;for(let i=0;i<a.length;++i){if(a[i]!==b[i])return false;}
9148return true;}};return{MultiRowTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ObjectInstanceGroupTrack=tr.ui.b.define('object-instance-group-track',tr.ui.tracks.MultiRowTrack);ObjectInstanceGroupTrack.prototype={__proto__:tr.ui.tracks.MultiRowTrack.prototype,decorate(viewport){tr.ui.tracks.MultiRowTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('object-instance-group-track');this.objectInstances_=undefined;},get objectInstances(){return this.itemsToGroup;},set objectInstances(objectInstances){this.setItemsToGroup(objectInstances);},addSubTrack_(objectInstances){const hasMultipleRows=this.subRows.length>1;const track=new tr.ui.tracks.ObjectInstanceTrack(this.viewport);track.objectInstances=objectInstances;Polymer.dom(this).appendChild(track);return track;},buildSubRows_(objectInstances){objectInstances.sort(function(x,y){return x.creationTs-y.creationTs;});const subRows=[];for(let i=0;i<objectInstances.length;i++){const objectInstance=objectInstances[i];let found=false;for(let j=0;j<subRows.length;j++){const subRow=subRows[j];const lastItemInSubRow=subRow[subRow.length-1];if(objectInstance.creationTs>=lastItemInSubRow.deletionTs){found=true;subRow.push(objectInstance);break;}}
9149if(!found){subRows.push([objectInstance]);}}
9150return subRows;},updateHeadingAndTooltip_(){}};return{ObjectInstanceGroupTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const AsyncSliceGroupTrack=tr.ui.b.define('async-slice-group-track',tr.ui.tracks.MultiRowTrack);AsyncSliceGroupTrack.prototype={__proto__:tr.ui.tracks.MultiRowTrack.prototype,decorate(viewport){tr.ui.tracks.MultiRowTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('async-slice-group-track');this.group_=undefined;},addSubTrack_(slices){const track=new tr.ui.tracks.SliceTrack(this.viewport);track.slices=slices;Polymer.dom(this).appendChild(track);track.asyncStyle=true;return track;},get group(){return this.group_;},set group(group){this.group_=group;this.buildAndSetSubRows_();},get eventContainer(){return this.group;},addContainersToTrackMap(containerToTrackMap){tr.ui.tracks.MultiRowTrack.prototype.addContainersToTrackMap.apply(this,arguments);containerToTrackMap.addContainer(this.group,this);},buildAndSetSubRows_(){if(this.group_.viewSubGroups.length<=1){const rows=groupAsyncSlicesIntoSubRows(this.group_.slices);const rowsWithHeadings=rows.map(row=>{return{row,heading:undefined};});this.setPrebuiltSubRows(this.group_,rowsWithHeadings);return;}
9151const rowsWithHeadings=[];for(const subGroup of this.group_.viewSubGroups){const subGroupRows=groupAsyncSlicesIntoSubRows(subGroup.slices);if(subGroupRows.length===0){continue;}
9152for(let i=0;i<subGroupRows.length;i++){rowsWithHeadings.push({row:subGroupRows[i],heading:(i===0?subGroup.title:'')});}}
9153this.setPrebuiltSubRows(this.group_,rowsWithHeadings);}};function stripSlice_(slice){if(slice.subSlices!==undefined&&slice.subSlices.length===1){const subSlice=slice.subSlices[0];if(tr.b.math.approximately(subSlice.start,slice.start,1)&&tr.b.math.approximately(subSlice.duration,slice.duration,1)){return subSlice;}}
9154return slice;}
9155function makeLevelSubRows_(slices){const rows=[];const putSlice=(slice,level)=>{while(rows.length<=level){rows.push([]);}
9156rows[level].push(slice);};const putSliceRecursively=(slice,level)=>{putSlice(slice,level);if(slice.subSlices!==undefined){for(const subSlice of slice.subSlices){putSliceRecursively(subSlice,level+1);}}};for(const slice of slices){putSliceRecursively(stripSlice_(slice),0);}
9157return rows;}
9158function groupAsyncSlicesIntoSubRows(slices,opt_skipSort){if(!opt_skipSort){slices.sort((x,y)=>x.start-y.start);}
9159const rows=[];let slicesLeft=slices;while(slicesLeft.length!==0){const fit=[];const unfit=[];let levelEndTime=-1;for(const slice of slicesLeft){if(slice.start>=levelEndTime){levelEndTime=slice.end;fit.push(slice);}else{unfit.push(slice);}}
9160rows.push(...makeLevelSubRows_(fit));slicesLeft=unfit;}
9161return rows;}
9162return{AsyncSliceGroupTrack,groupAsyncSlicesIntoSubRows,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const SampleTrack=tr.ui.b.define('sample-track',tr.ui.tracks.RectTrack);SampleTrack.prototype={__proto__:tr.ui.tracks.RectTrack.prototype,decorate(viewport){tr.ui.tracks.RectTrack.prototype.decorate.call(this,viewport);},get samples(){return this.rects;},set samples(samples){this.rects=samples;}};return{SampleTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const SliceGroupTrack=tr.ui.b.define('slice-group-track',tr.ui.tracks.MultiRowTrack);SliceGroupTrack.prototype={__proto__:tr.ui.tracks.MultiRowTrack.prototype,decorate(viewport){tr.ui.tracks.MultiRowTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('slice-group-track');this.group_=undefined;this.defaultToCollapsedWhenSubRowCountMoreThan=100;},addSubTrack_(slices){const track=new tr.ui.tracks.SliceTrack(this.viewport);track.slices=slices;Polymer.dom(this).appendChild(track);return track;},get group(){return this.group_;},set group(group){this.group_=group;this.setItemsToGroup(this.group_.slices,this.group_);},get eventContainer(){return this.group;},addContainersToTrackMap(containerToTrackMap){tr.ui.tracks.MultiRowTrack.prototype.addContainersToTrackMap.apply(this,arguments);containerToTrackMap.addContainer(this.group,this);},buildSubRows_(slices){const precisionUnit=this.group.model.intrinsicTimeUnit;if(!slices.length)return[];const ops=[];for(let i=0;i<slices.length;i++){if(slices[i].subSlices){slices[i].subSlices.splice(0,slices[i].subSlices.length);}
9163ops.push(i);}
9164ops.sort(function(ix,iy){const x=slices[ix];const y=slices[iy];if(x.start!==y.start)return x.start-y.start;return ix-iy;});const subRows=[[]];this.badSlices_=[];for(let i=0;i<ops.length;i++){const op=ops[i];const slice=slices[op];let inserted=false;for(let j=subRows.length-1;j>=0;j--){if(subRows[j].length===0)continue;const insertedSlice=subRows[j][subRows[j].length-1];if(slice.start<insertedSlice.start){this.badSlices_.push(slice);inserted=true;}
9165if(insertedSlice.bounds(slice,precisionUnit)){while(subRows.length<=j+1){subRows.push([]);}
9166subRows[j+1].push(slice);if(insertedSlice.subSlices){insertedSlice.subSlices.push(slice);}
9167inserted=true;break;}}
9168if(inserted)continue;subRows[0].push(slice);}
9169return subRows;}};return{SliceGroupTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ThreadTrack=tr.ui.b.define('thread-track',tr.ui.tracks.ContainerTrack);ThreadTrack.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('thread-track');this.heading_=document.createElement('tr-ui-b-heading');},get thread(){return this.thread_;},set thread(thread){this.thread_=thread;this.updateContents_();},get hasVisibleContent(){return this.tracks_.length>0;},get hasSlices(){return this.thread_.asyncSliceGroup.length>0||this.thread_.sliceGroup.length>0;},get hasTimeSlices(){return this.thread_.timeSlices;},get eventContainer(){return this.thread;},addContainersToTrackMap(containerToTrackMap){tr.ui.tracks.ContainerTrack.prototype.addContainersToTrackMap.apply(this,arguments);containerToTrackMap.addContainer(this.thread,this);},updateContents_(){this.detach();if(!this.thread_)return;this.heading_.heading=this.thread_.userFriendlyName;this.heading_.tooltip=this.thread_.userFriendlyDetails;if(this.thread_.asyncSliceGroup.length){this.appendAsyncSliceTracks_();}
9170this.appendThreadSamplesTracks_();let needsHeading=false;if(this.thread_.timeSlices){const timeSlicesTrack=new tr.ui.tracks.SliceTrack(this.viewport);timeSlicesTrack.heading='';timeSlicesTrack.height=tr.ui.b.THIN_SLICE_HEIGHT+'px';timeSlicesTrack.slices=this.thread_.timeSlices;if(timeSlicesTrack.hasVisibleContent){needsHeading=true;Polymer.dom(this).appendChild(timeSlicesTrack);}}
9171if(this.thread_.sliceGroup.length){const track=new tr.ui.tracks.SliceGroupTrack(this.viewport);track.heading=this.thread_.userFriendlyName;track.tooltip=this.thread_.userFriendlyDetails;track.group=this.thread_.sliceGroup;if(track.hasVisibleContent){needsHeading=false;Polymer.dom(this).appendChild(track);}}
9172if(needsHeading){Polymer.dom(this).appendChild(this.heading_);}},appendAsyncSliceTracks_(){const subGroups=this.thread_.asyncSliceGroup.viewSubGroups;subGroups.forEach(function(subGroup){const asyncTrack=new tr.ui.tracks.AsyncSliceGroupTrack(this.viewport);asyncTrack.group=subGroup;asyncTrack.heading=subGroup.title;if(asyncTrack.hasVisibleContent){Polymer.dom(this).appendChild(asyncTrack);}},this);},appendThreadSamplesTracks_(){const threadSamples=this.thread_.samples;if(threadSamples===undefined||threadSamples.length===0){return;}
9173const samplesByTitle={};threadSamples.forEach(function(sample){if(samplesByTitle[sample.title]===undefined){samplesByTitle[sample.title]=[];}
9174samplesByTitle[sample.title].push(sample);});const sampleTitles=Object.keys(samplesByTitle);sampleTitles.sort();sampleTitles.forEach(function(sampleTitle){const samples=samplesByTitle[sampleTitle];const samplesTrack=new tr.ui.tracks.SampleTrack(this.viewport);samplesTrack.group=this.thread_;samplesTrack.samples=samples;samplesTrack.heading=this.thread_.userFriendlyName+': '+
9175sampleTitle;samplesTrack.tooltip=this.thread_.userFriendlyDetails;samplesTrack.selectionGenerator=function(){const selection=new tr.model.EventSet();for(let i=0;i<samplesTrack.samples.length;i++){selection.push(samplesTrack.samples[i]);}
9176return selection;};Polymer.dom(this).appendChild(samplesTrack);},this);},collapsedDidChange(collapsed){if(collapsed){let h=parseInt(this.tracks[0].height);for(let i=0;i<this.tracks.length;++i){if(h>2){this.tracks[i].height=Math.floor(h)+'px';}else{this.tracks[i].style.display='none';}
9177h=h*0.5;}}else{for(let i=0;i<this.tracks.length;++i){this.tracks[i].height=this.tracks[0].height;this.tracks[i].style.display='';}}}};return{ThreadTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const OtherThreadsTrack=tr.ui.b.define('other-threads-track',tr.ui.tracks.OtherThreadsTrack);const SpacingTrack=tr.ui.tracks.SpacingTrack;OtherThreadsTrack.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);this.header_=document.createElement('tr-ui-b-heading');this.header_.addEventListener('click',this.onHeaderClick_.bind(this));this.header_.heading='Other Threads';this.header_.tooltip='Threads with only scheduling information';this.header_.arrowVisible=true;this.threads_=[];this.expanded=false;this.collapsible_=true;},set threads(threads){this.threads_=threads;this.updateContents_();},set collapsible(collapsible){this.collapsible_=collapsible;this.updateContents_();},onHeaderClick_(e){e.stopPropagation();e.preventDefault();this.expanded=!this.expanded;},get expanded(){return this.header_.expanded;},set expanded(expanded){expanded=!!expanded;if(this.expanded===expanded)return;this.header_.expanded=expanded;this.viewport_.dispatchChangeEvent();this.updateContents_();},updateContents_(){this.detach();if(this.collapsible_){Polymer.dom(this).appendChild(this.header_);}
9178if(this.expanded||!this.collapsible_){for(const thread of this.threads_){const track=new tr.ui.tracks.ThreadTrack(this.viewport);track.thread=thread;if(!track.hasVisibleContent)return;Polymer.dom(this).appendChild(track);Polymer.dom(this).appendChild(new SpacingTrack(this.viewport));}}}};return{OtherThreadsTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ColorScheme=tr.b.ColorScheme;const ProcessSummaryTrack=tr.ui.b.define('process-summary-track',tr.ui.tracks.RectTrack);ProcessSummaryTrack.buildRectsFromProcess=function(process){if(!process)return[];const ops=[];const pushOp=function(isStart,time,slice){ops.push({isStart,time,slice});};for(const tid in process.threads){const sliceGroup=process.threads[tid].sliceGroup;sliceGroup.topLevelSlices.forEach(function(slice){pushOp(true,slice.start,undefined);pushOp(false,slice.end,undefined);});sliceGroup.slices.forEach(function(slice){if(slice.important){pushOp(true,slice.start,slice);pushOp(false,slice.end,slice);}});}
9179ops.sort(function(a,b){return a.time-b.time;});const rects=[];const genericColorId=ColorScheme.getColorIdForReservedName('generic_work');const pushRect=function(start,end,slice){rects.push(new tr.ui.tracks.Rect(slice,slice?slice.title:'',slice?slice.colorId:genericColorId,start,end-start));};let depth=0;let currentSlice=undefined;let lastStart=undefined;ops.forEach(function(op){depth+=op.isStart?1:-1;if(currentSlice){if(!op.isStart&&op.slice===currentSlice){pushRect(lastStart,op.time,currentSlice);lastStart=depth>=1?op.time:undefined;currentSlice=undefined;}}else{if(op.isStart){if(depth===1){lastStart=op.time;currentSlice=op.slice;}else if(op.slice){if(op.time!==lastStart){pushRect(lastStart,op.time,undefined);lastStart=op.time;}
9180currentSlice=op.slice;}}else{if(depth===0){pushRect(lastStart,op.time,undefined);lastStart=undefined;}}}});return rects;};ProcessSummaryTrack.prototype={__proto__:tr.ui.tracks.RectTrack.prototype,decorate(viewport){tr.ui.tracks.RectTrack.prototype.decorate.call(this,viewport);},get process(){return this.process_;},set process(process){this.process_=process;this.rects=ProcessSummaryTrack.buildRectsFromProcess(process);}};return{ProcessSummaryTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ObjectSnapshotView=tr.ui.analysis.ObjectSnapshotView;const ObjectInstanceView=tr.ui.analysis.ObjectInstanceView;const SpacingTrack=tr.ui.tracks.SpacingTrack;const ProcessTrackBase=tr.ui.b.define('process-track-base',tr.ui.tracks.ContainerTrack);ProcessTrackBase.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);this.processBase_=undefined;Polymer.dom(this).classList.add('process-track-base');Polymer.dom(this).classList.add('expanded');this.processNameEl_=tr.ui.b.createSpan();Polymer.dom(this.processNameEl_).classList.add('process-track-name');this.headerEl_=tr.ui.b.createDiv({className:'process-track-header'});Polymer.dom(this.headerEl_).appendChild(this.processNameEl_);this.headerEl_.addEventListener('click',this.onHeaderClick_.bind(this));Polymer.dom(this).appendChild(this.headerEl_);},get processBase(){return this.processBase_;},set processBase(processBase){this.processBase_=processBase;if(this.processBase_){const modelSettings=new tr.model.ModelSettings(this.processBase_.model);const defaultValue=this.processBase_.important;this.expanded=modelSettings.getSettingFor(this.processBase_,'expanded',defaultValue);}
9181this.updateContents_();},get expanded(){return Polymer.dom(this).classList.contains('expanded');},set expanded(expanded){expanded=!!expanded;if(this.expanded===expanded)return;Polymer.dom(this).classList.toggle('expanded');this.viewport_.dispatchChangeEvent();if(!this.processBase_)return;const modelSettings=new tr.model.ModelSettings(this.processBase_.model);modelSettings.setSettingFor(this.processBase_,'expanded',expanded);this.updateContents_();this.viewport.rebuildEventToTrackMap();this.viewport.rebuildContainerToTrackMap();},get hasVisibleContent(){if(this.expanded){return this.children.length>1;}
9182return true;},onHeaderClick_(e){e.stopPropagation();e.preventDefault();this.expanded=!this.expanded;},updateContents_(){this.clearTracks_();if(!this.processBase_)return;Polymer.dom(this.processNameEl_).textContent=this.processBase_.userFriendlyName;this.headerEl_.title=this.processBase_.userFriendlyDetails;this.willAppendTracks_();if(this.expanded){this.appendMemoryDumpTrack_();this.appendObjectInstanceTracks_();this.appendCounterTracks_();this.appendFrameTrack_();this.appendThreadTracks_();}else{this.appendSummaryTrack_();}
9183this.didAppendTracks_();},willAppendTracks_(){},didAppendTracks_(){},appendMemoryDumpTrack_(){},appendSummaryTrack_(){const track=new tr.ui.tracks.ProcessSummaryTrack(this.viewport);track.process=this.process;if(!track.hasVisibleContent)return;Polymer.dom(this).appendChild(track);},appendFrameTrack_(){const frames=this.process?this.process.frames:undefined;if(!frames||!frames.length)return;const track=new tr.ui.tracks.FrameTrack(this.viewport);track.frames=frames;Polymer.dom(this).appendChild(track);},appendObjectInstanceTracks_(){const instancesByTypeName=this.processBase_.objects.getAllInstancesByTypeName();const instanceTypeNames=Object.keys(instancesByTypeName);instanceTypeNames.sort();let didAppendAtLeastOneTrack=false;instanceTypeNames.forEach(function(typeName){const allInstances=instancesByTypeName[typeName];let instanceViewInfo=ObjectInstanceView.getTypeInfo(undefined,typeName);let snapshotViewInfo=ObjectSnapshotView.getTypeInfo(undefined,typeName);if(instanceViewInfo&&!instanceViewInfo.metadata.showInTrackView){instanceViewInfo=undefined;}
9184if(snapshotViewInfo&&!snapshotViewInfo.metadata.showInTrackView){snapshotViewInfo=undefined;}
9185const hasViewInfo=instanceViewInfo||snapshotViewInfo;const visibleInstances=[];for(let i=0;i<allInstances.length;i++){const instance=allInstances[i];if(instance.snapshots.length===0)continue;if(instance.hasImplicitSnapshots&&!hasViewInfo)continue;visibleInstances.push(instance);}
9186if(visibleInstances.length===0)return;let trackConstructor=tr.ui.tracks.ObjectInstanceTrack.getConstructor(undefined,typeName);if(!trackConstructor){snapshotViewInfo=ObjectSnapshotView.getTypeInfo(undefined,typeName);if(snapshotViewInfo&&snapshotViewInfo.metadata.showInstances){trackConstructor=tr.ui.tracks.ObjectInstanceGroupTrack;}else{trackConstructor=tr.ui.tracks.ObjectInstanceTrack;}}
9187const track=new trackConstructor(this.viewport);track.objectInstances=visibleInstances;Polymer.dom(this).appendChild(track);didAppendAtLeastOneTrack=true;},this);if(didAppendAtLeastOneTrack){Polymer.dom(this).appendChild(new SpacingTrack(this.viewport));}},appendCounterTracks_(){const counters=Object.values(this.processBase.counters);counters.sort(tr.model.Counter.compare);counters.forEach(function(counter){const track=new tr.ui.tracks.CounterTrack(this.viewport);track.counter=counter;Polymer.dom(this).appendChild(track);Polymer.dom(this).appendChild(new SpacingTrack(this.viewport));}.bind(this));},appendThreadTracks_(){const threads=Object.values(this.processBase.threads);threads.sort(tr.model.Thread.compare);const otherThreads=[];let hasVisibleThreads=false;threads.forEach(function(thread){const track=new tr.ui.tracks.ThreadTrack(this.viewport);track.thread=thread;if(!track.hasVisibleContent)return;if(track.hasSlices){hasVisibleThreads=true;Polymer.dom(this).appendChild(track);Polymer.dom(this).appendChild(new SpacingTrack(this.viewport));}else if(track.hasTimeSlices){otherThreads.push(thread);}}.bind(this));if(otherThreads.length>0){const track=new tr.ui.tracks.OtherThreadsTrack(this.viewport);track.threads=otherThreads;track.collapsible=otherThreads.length>1&&hasVisibleThreads;Polymer.dom(this).appendChild(track);}}};return{ProcessTrackBase,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const Cpu=tr.model.Cpu;const CpuTrack=tr.ui.tracks.cpu_track;const ProcessTrackBase=tr.ui.tracks.ProcessTrackBase;const SpacingTrack=tr.ui.tracks.SpacingTrack;const KernelTrack=tr.ui.b.define('kernel-track',ProcessTrackBase);KernelTrack.prototype={__proto__:ProcessTrackBase.prototype,decorate(viewport){ProcessTrackBase.prototype.decorate.call(this,viewport);},set kernel(kernel){this.processBase=kernel;},get kernel(){return this.processBase;},get eventContainer(){return this.kernel;},get hasVisibleContent(){return this.children.length>1;},addContainersToTrackMap(containerToTrackMap){tr.ui.tracks.ProcessTrackBase.prototype.addContainersToTrackMap.call(this,containerToTrackMap);containerToTrackMap.addContainer(this.kernel,this);},willAppendTracks_(){const cpus=Object.values(this.kernel.cpus);cpus.sort(tr.model.Cpu.compare);let didAppendAtLeastOneTrack=false;for(let i=0;i<cpus.length;++i){const cpu=cpus[i];const track=new tr.ui.tracks.CpuTrack(this.viewport);track.detailedMode=this.expanded;track.cpu=cpu;if(!track.hasVisibleContent)continue;Polymer.dom(this).appendChild(track);didAppendAtLeastOneTrack=true;}
9188if(didAppendAtLeastOneTrack){Polymer.dom(this).appendChild(new SpacingTrack(this.viewport));}}};return{KernelTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const InteractionTrack=tr.ui.b.define('interaction-track',tr.ui.tracks.MultiRowTrack);InteractionTrack.prototype={__proto__:tr.ui.tracks.MultiRowTrack.prototype,decorate(viewport){tr.ui.tracks.MultiRowTrack.prototype.decorate.call(this,viewport);this.heading='Interactions';this.subRows_=[];},set model(model){this.setItemsToGroup(model.userModel.expectations,{guid:tr.b.GUID.allocateSimple(),model,getSettingsKey(){return undefined;}});},buildSubRows_(slices){if(this.subRows_.length){return this.subRows_;}
9189this.subRows_.push(...tr.ui.tracks.groupAsyncSlicesIntoSubRows(slices,true));return this.subRows_;},addSubTrack_(slices){const track=new tr.ui.tracks.SliceTrack(this.viewport);track.slices=slices;Polymer.dom(this).appendChild(track);return track;}};return{InteractionTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ColorScheme=tr.b.ColorScheme;const LetterDotTrack=tr.ui.tracks.LetterDotTrack;const MemoryTrack=tr.ui.b.define('memory-track',LetterDotTrack);MemoryTrack.prototype={__proto__:LetterDotTrack.prototype,decorate(viewport){LetterDotTrack.prototype.decorate.call(this,viewport);this.classList.add('memory-track');this.heading='Memory Events';this.lowMemoryEvents_=undefined;},initialize(model){if(model!==undefined){this.lowMemoryEvents_=model.device.lowMemoryEvents;}else{this.lowMemoryEvents_=undefined;}
9190if(this.hasVisibleContent){this.items=this.buildMemoryLetterDots_(this.lowMemoryEvents_);}},get hasVisibleContent(){return!!this.lowMemoryEvents_&&this.lowMemoryEvents_.length!==0;},buildMemoryLetterDots_(memoryEvents){return memoryEvents.map(memoryEvent=>new tr.ui.tracks.LetterDot(memoryEvent,'K',ColorScheme.getColorIdForReservedName('background_memory_dump'),memoryEvent.start));},};return{MemoryTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ALLOCATED_MEMORY_TRACK_HEIGHT=50;const ProcessMemoryDumpTrack=tr.ui.b.define('process-memory-dump-track',tr.ui.tracks.ContainerTrack);ProcessMemoryDumpTrack.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);this.memoryDumps_=undefined;},get memoryDumps(){return this.memoryDumps_;},set memoryDumps(memoryDumps){this.memoryDumps_=memoryDumps;this.updateContents_();},updateContents_(){this.clearTracks_();if(!this.memoryDumps_||!this.memoryDumps_.length)return;this.appendAllocatedMemoryTrack_();},appendAllocatedMemoryTrack_(){const series=tr.ui.tracks.buildProcessAllocatedMemoryChartSeries(this.memoryDumps_);if(!series)return;const track=new tr.ui.tracks.ChartTrack(this.viewport);track.heading='Memory per component';track.height=ALLOCATED_MEMORY_TRACK_HEIGHT+'px';track.series=series;track.autoSetAllAxes({expandMax:true});Polymer.dom(this).appendChild(track);}};return{ProcessMemoryDumpTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const ProcessTrackBase=tr.ui.tracks.ProcessTrackBase;const ProcessTrack=tr.ui.b.define('process-track',ProcessTrackBase);ProcessTrack.prototype={__proto__:ProcessTrackBase.prototype,decorate(viewport){tr.ui.tracks.ProcessTrackBase.prototype.decorate.call(this,viewport);},drawTrack(type){switch(type){case tr.ui.tracks.DrawType.INSTANT_EVENT:{if(!this.processBase.instantEvents||this.processBase.instantEvents.length===0){break;}
9191const ctx=this.context();const pixelRatio=window.devicePixelRatio||1;const bounds=this.getBoundingClientRect();const canvasBounds=ctx.canvas.getBoundingClientRect();ctx.save();ctx.translate(0,pixelRatio*(bounds.top-canvasBounds.top));const dt=this.viewport.currentDisplayTransform;const viewLWorld=dt.xViewToWorld(0);const viewRWorld=dt.xViewToWorld(canvasBounds.width*pixelRatio);tr.ui.b.drawInstantSlicesAsLines(ctx,this.viewport.currentDisplayTransform,viewLWorld,viewRWorld,bounds.height,this.processBase.instantEvents,2);ctx.restore();break;}
9192case tr.ui.tracks.DrawType.BACKGROUND:this.drawBackground_();return;}
9193tr.ui.tracks.ContainerTrack.prototype.drawTrack.call(this,type);},drawBackground_(){const ctx=this.context();const canvasBounds=ctx.canvas.getBoundingClientRect();const pixelRatio=window.devicePixelRatio||1;let draw=false;ctx.fillStyle='#eee';for(let i=0;i<this.children.length;++i){if(!(this.children[i]instanceof tr.ui.tracks.Track)||(this.children[i]instanceof tr.ui.tracks.SpacingTrack)){continue;}
9194draw=!draw;if(!draw)continue;const bounds=this.children[i].getBoundingClientRect();ctx.fillRect(0,pixelRatio*(bounds.top-canvasBounds.top),ctx.canvas.width,pixelRatio*bounds.height);}},set process(process){this.processBase=process;},get process(){return this.processBase;},get eventContainer(){return this.process;},addContainersToTrackMap(containerToTrackMap){tr.ui.tracks.ProcessTrackBase.prototype.addContainersToTrackMap.apply(this,arguments);containerToTrackMap.addContainer(this.process,this);},appendMemoryDumpTrack_(){const processMemoryDumps=this.process.memoryDumps;if(processMemoryDumps.length){const pmdt=new tr.ui.tracks.ProcessMemoryDumpTrack(this.viewport_);pmdt.memoryDumps=processMemoryDumps;Polymer.dom(this).appendChild(pmdt);}},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){function onPickHit(instantEvent){selection.push(instantEvent);}
9195const instantEventWidth=2*viewPixWidthWorld;tr.b.iterateOverIntersectingIntervals(this.processBase.instantEvents,function(x){return x.start;},function(x){return x.duration+instantEventWidth;},loWX,hiWX,onPickHit.bind(this));tr.ui.tracks.ContainerTrack.prototype.addIntersectingEventsInRangeToSelectionInWorldSpace.apply(this,arguments);},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){this.addClosestInstantEventToSelection(this.processBase.instantEvents,worldX,worldMaxDist,selection);tr.ui.tracks.ContainerTrack.prototype.addClosestEventToSelection.apply(this,arguments);}};return{ProcessTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const SelectionState=tr.model.SelectionState;const ColorScheme=tr.b.ColorScheme;const EventPresenter=tr.ui.b.EventPresenter;const ModelTrack=tr.ui.b.define('model-track',tr.ui.tracks.ContainerTrack);ModelTrack.VSYNC_HIGHLIGHT_ALPHA=0.1;ModelTrack.VSYNC_DENSITY_TRANSPARENT=0.20;ModelTrack.VSYNC_DENSITY_OPAQUE=0.10;ModelTrack.VSYNC_DENSITY_RANGE=ModelTrack.VSYNC_DENSITY_TRANSPARENT-ModelTrack.VSYNC_DENSITY_OPAQUE;ModelTrack.generateStripes_=function(times,minTime,maxTime){if(times.length===0)return[];const lowIndex=tr.b.findLowIndexInSortedArray(times,(x=>x),minTime);let highIndex=lowIndex-1;while(times[highIndex+1]<=maxTime){highIndex++;}
9196const stripes=[];for(let i=lowIndex-(lowIndex%2);i<=highIndex;i+=2){const left=i<lowIndex?minTime:times[i];const right=i+1>highIndex?maxTime:times[i+1];stripes.push(tr.b.math.Range.fromExplicitRange(left,right));}
9197return stripes;};ModelTrack.prototype={__proto__:tr.ui.tracks.ContainerTrack.prototype,decorate(viewport){tr.ui.tracks.ContainerTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('model-track');this.upperMode_=false;this.annotationViews_=[];this.vSyncTimes_=[];},get upperMode(){return this.upperMode_;},set upperMode(upperMode){this.upperMode_=upperMode;this.updateContents_();},detach(){tr.ui.tracks.ContainerTrack.prototype.detach.call(this);},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();this.model_.addEventListener('annotationChange',this.updateAnnotations_.bind(this));},get hasVisibleContent(){return this.children.length>0;},updateContents_(){Polymer.dom(this).textContent='';if(!this.model_)return;if(this.upperMode_){this.updateContentsForUpperMode_();}else{this.updateContentsForLowerMode_();}},updateContentsForUpperMode_(){},updateContentsForLowerMode_(){if(this.model_.userModel.expectations.length>1){const mrt=new tr.ui.tracks.InteractionTrack(this.viewport_);mrt.model=this.model_;Polymer.dom(this).appendChild(mrt);}
9198if(this.model_.alerts.length){const at=new tr.ui.tracks.AlertTrack(this.viewport_);at.alerts=this.model_.alerts;Polymer.dom(this).appendChild(at);}
9199if(this.model_.globalMemoryDumps.length){const gmdt=new tr.ui.tracks.GlobalMemoryDumpTrack(this.viewport_);gmdt.memoryDumps=this.model_.globalMemoryDumps;Polymer.dom(this).appendChild(gmdt);}
9200this.appendDeviceTrack_();this.appendCpuUsageTrack_();this.appendMemoryTrack_();this.appendKernelTrack_();const processes=this.model_.getAllProcesses();processes.sort(tr.model.Process.compare);for(let i=0;i<processes.length;++i){const process=processes[i];const track=new tr.ui.tracks.ProcessTrack(this.viewport);track.process=process;if(!track.hasVisibleContent)continue;Polymer.dom(this).appendChild(track);}
9201this.viewport_.rebuildEventToTrackMap();this.viewport_.rebuildContainerToTrackMap();this.vSyncTimes_=this.model_.device.vSyncTimestamps;this.updateAnnotations_();},getContentBounds(){return this.model.bounds;},addAnnotation(annotation){this.model.addAnnotation(annotation);},removeAnnotation(annotation){this.model.removeAnnotation(annotation);},updateAnnotations_(){this.annotationViews_=[];const annotations=this.model_.getAllAnnotations();for(let i=0;i<annotations.length;i++){this.annotationViews_.push(annotations[i].getOrCreateView(this.viewport_));}
9202this.invalidateDrawingContainer();},addEventsToTrackMap(eventToTrackMap){if(!this.model_)return;const tracks=this.children;for(let i=0;i<tracks.length;++i){tracks[i].addEventsToTrackMap(eventToTrackMap);}
9203if(this.instantEvents===undefined)return;const vp=this.viewport_;this.instantEvents.forEach(function(ev){eventToTrackMap.addEvent(ev,this);}.bind(this));},appendDeviceTrack_(){const device=this.model.device;const track=new tr.ui.tracks.DeviceTrack(this.viewport);track.device=this.model.device;if(!track.hasVisibleContent)return;Polymer.dom(this).appendChild(track);},appendKernelTrack_(){const kernel=this.model.kernel;const track=new tr.ui.tracks.KernelTrack(this.viewport);track.kernel=this.model.kernel;if(!track.hasVisibleContent)return;Polymer.dom(this).appendChild(track);},appendCpuUsageTrack_(){const track=new tr.ui.tracks.CpuUsageTrack(this.viewport);track.initialize(this.model);if(!track.hasVisibleContent)return;this.appendChild(track);},appendMemoryTrack_(){const track=new tr.ui.tracks.MemoryTrack(this.viewport);track.initialize(this.model);if(!track.hasVisibleContent)return;Polymer.dom(this).appendChild(track);},drawTrack(type){const ctx=this.context();if(!this.model_)return;const pixelRatio=window.devicePixelRatio||1;const bounds=this.getBoundingClientRect();const canvasBounds=ctx.canvas.getBoundingClientRect();ctx.save();ctx.translate(0,pixelRatio*(bounds.top-canvasBounds.top));const dt=this.viewport.currentDisplayTransform;const viewLWorld=dt.xViewToWorld(0);const viewRWorld=dt.xViewToWorld(canvasBounds.width*pixelRatio);const viewHeight=bounds.height*pixelRatio;switch(type){case tr.ui.tracks.DrawType.GRID:this.viewport.drawMajorMarkLines(ctx,viewHeight);ctx.restore();return;case tr.ui.tracks.DrawType.FLOW_ARROWS:if(this.model_.flowIntervalTree.size===0){ctx.restore();return;}
9204this.drawFlowArrows_(viewLWorld,viewRWorld);ctx.restore();return;case tr.ui.tracks.DrawType.INSTANT_EVENT:if(!this.model_.instantEvents||this.model_.instantEvents.length===0){break;}
9205tr.ui.b.drawInstantSlicesAsLines(ctx,this.viewport.currentDisplayTransform,viewLWorld,viewRWorld,bounds.height,this.model_.instantEvents,4);break;case tr.ui.tracks.DrawType.MARKERS:if(!this.viewport.interestRange.isEmpty){this.viewport.interestRange.draw(ctx,viewLWorld,viewRWorld,viewHeight);this.viewport.interestRange.drawIndicators(ctx,viewLWorld,viewRWorld);}
9206ctx.restore();return;case tr.ui.tracks.DrawType.HIGHLIGHTS:this.drawVSyncHighlight(ctx,dt,viewLWorld,viewRWorld,viewHeight);ctx.restore();return;case tr.ui.tracks.DrawType.ANNOTATIONS:for(let i=0;i<this.annotationViews_.length;i++){this.annotationViews_[i].draw(ctx);}
9207ctx.restore();return;}
9208ctx.restore();tr.ui.tracks.ContainerTrack.prototype.drawTrack.call(this,type);},drawFlowArrows_(viewLWorld,viewRWorld){const ctx=this.context();ctx.strokeStyle='rgba(0, 0, 0, 0.4)';ctx.fillStyle='rgba(0, 0, 0, 0.4)';ctx.lineWidth=1;const events=this.model_.flowIntervalTree.findIntersection(viewLWorld,viewRWorld);const onlyHighlighted=!this.viewport.showFlowEvents;const canvasBounds=ctx.canvas.getBoundingClientRect();for(let i=0;i<events.length;++i){if(onlyHighlighted&&events[i].selectionState!==SelectionState.SELECTED&&events[i].selectionState!==SelectionState.HIGHLIGHTED){continue;}
9209this.drawFlowArrow_(ctx,events[i],canvasBounds);}},drawFlowArrow_(ctx,flowEvent,canvasBounds){const dt=this.viewport.currentDisplayTransform;const pixelRatio=window.devicePixelRatio||1;const startTrack=this.viewport.trackForEvent(flowEvent.startSlice);const endTrack=this.viewport.trackForEvent(flowEvent.endSlice);if(startTrack===undefined||endTrack===undefined)return;const startBounds=startTrack.getBoundingClientRect();const endBounds=endTrack.getBoundingClientRect();if(flowEvent.selectionState===SelectionState.SELECTED){ctx.shadowBlur=1;ctx.shadowColor='red';ctx.shadowOffsety=2;ctx.strokeStyle=tr.b.ColorScheme.colorsAsStrings[tr.b.ColorScheme.getVariantColorId(flowEvent.colorId,tr.b.ColorScheme.properties.brightenedOffsets[0])];}else if(flowEvent.selectionState===SelectionState.HIGHLIGHTED){ctx.shadowBlur=1;ctx.shadowColor='red';ctx.shadowOffsety=2;ctx.strokeStyle=tr.b.ColorScheme.colorsAsStrings[tr.b.ColorScheme.getVariantColorId(flowEvent.colorId,tr.b.ColorScheme.properties.brightenedOffsets[0])];}else if(flowEvent.selectionState===SelectionState.DIMMED){ctx.shadowBlur=0;ctx.shadowOffsetX=0;ctx.strokeStyle=tr.b.ColorScheme.colorsAsStrings[flowEvent.colorId];}else{let hasBoost=false;const startSlice=flowEvent.startSlice;hasBoost|=startSlice.selectionState===SelectionState.SELECTED;hasBoost|=startSlice.selectionState===SelectionState.HIGHLIGHTED;const endSlice=flowEvent.endSlice;hasBoost|=endSlice.selectionState===SelectionState.SELECTED;hasBoost|=endSlice.selectionState===SelectionState.HIGHLIGHTED;if(hasBoost){ctx.shadowBlur=1;ctx.shadowColor='rgba(255, 0, 0, 0.4)';ctx.shadowOffsety=2;ctx.strokeStyle=tr.b.ColorScheme.colorsAsStrings[tr.b.ColorScheme.getVariantColorId(flowEvent.colorId,tr.b.ColorScheme.properties.brightenedOffsets[0])];}else{ctx.shadowBlur=0;ctx.shadowOffsetX=0;ctx.strokeStyle=tr.b.ColorScheme.colorsAsStrings[flowEvent.colorId];}}
9210const startSize=startBounds.left+startBounds.top+
9211startBounds.bottom+startBounds.right;const endSize=endBounds.left+endBounds.top+
9212endBounds.bottom+endBounds.right;if(startSize===0&&endSize===0)return;const startY=this.calculateTrackY_(startTrack,canvasBounds);const endY=this.calculateTrackY_(endTrack,canvasBounds);const pixelStartY=pixelRatio*startY;const pixelEndY=pixelRatio*endY;const startXView=dt.xWorldToView(flowEvent.start);const endXView=dt.xWorldToView(flowEvent.end);const midXView=(startXView+endXView)/2;ctx.beginPath();ctx.moveTo(startXView,pixelStartY);ctx.bezierCurveTo(midXView,pixelStartY,midXView,pixelEndY,endXView,pixelEndY);ctx.stroke();const arrowWidth=5*pixelRatio;const distance=endXView-startXView;if(distance<=(2*arrowWidth))return;const tipX=endXView;const tipY=pixelEndY;const arrowHeight=(endBounds.height/4)*pixelRatio;tr.ui.b.drawTriangle(ctx,tipX,tipY,tipX-arrowWidth,tipY-arrowHeight,tipX-arrowWidth,tipY+arrowHeight);ctx.fill();},drawVSyncHighlight(ctx,dt,viewLWorld,viewRWorld,viewHeight){if(!this.viewport_.highlightVSync){return;}
9213const stripes=ModelTrack.generateStripes_(this.vSyncTimes_,viewLWorld,viewRWorld);if(stripes.length===0){return;}
9214const vSyncHighlightColor=new tr.b.Color(ColorScheme.getColorForReservedNameAsString('vsync_highlight_color'));const stripeRange=stripes[stripes.length-1].max-stripes[0].min;const stripeDensity=stripeRange?stripes.length/(dt.scaleX*stripeRange):0;const clampedStripeDensity=tr.b.math.clamp(stripeDensity,ModelTrack.VSYNC_DENSITY_OPAQUE,ModelTrack.VSYNC_DENSITY_TRANSPARENT);const opacity=(ModelTrack.VSYNC_DENSITY_TRANSPARENT-clampedStripeDensity)/ModelTrack.VSYNC_DENSITY_RANGE;if(opacity===0){return;}
9215ctx.fillStyle=vSyncHighlightColor.toStringWithAlphaOverride(ModelTrack.VSYNC_HIGHLIGHT_ALPHA*opacity);for(let i=0;i<stripes.length;i++){const xLeftView=dt.xWorldToView(stripes[i].min);const xRightView=dt.xWorldToView(stripes[i].max);ctx.fillRect(xLeftView,0,xRightView-xLeftView,viewHeight);}},calculateTrackY_(track,canvasBounds){const bounds=track.getBoundingClientRect();const size=bounds.left+bounds.top+bounds.bottom+bounds.right;if(size===0){return this.calculateTrackY_(Polymer.dom(track).parentNode,canvasBounds);}
9216return bounds.top-canvasBounds.top+(bounds.height/2);},addIntersectingEventsInRangeToSelectionInWorldSpace(loWX,hiWX,viewPixWidthWorld,selection){function onPickHit(instantEvent){selection.push(instantEvent);}
9217const instantEventWidth=3*viewPixWidthWorld;tr.b.iterateOverIntersectingIntervals(this.model_.instantEvents,function(x){return x.start;},function(x){return x.duration+instantEventWidth;},loWX,hiWX,onPickHit.bind(this));tr.ui.tracks.ContainerTrack.prototype.addIntersectingEventsInRangeToSelectionInWorldSpace.apply(this,arguments);},addClosestEventToSelection(worldX,worldMaxDist,loY,hiY,selection){this.addClosestInstantEventToSelection(this.model_.instantEvents,worldX,worldMaxDist,selection);tr.ui.tracks.ContainerTrack.prototype.addClosestEventToSelection.apply(this,arguments);}};return{ModelTrack,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const XAxisTrack=tr.ui.b.define('x-axis-track',tr.ui.tracks.Track);XAxisTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('x-axis-track');this.strings_secs_=[];this.strings_msecs_=[];this.strings_usecs_=[];this.strings_nsecs_=[];this.viewportChange_=this.viewportChange_.bind(this);viewport.addEventListener('change',this.viewportChange_);const heading=document.createElement('tr-ui-b-heading');heading.arrowVisible=false;Polymer.dom(this).appendChild(heading);},detach(){tr.ui.tracks.Track.prototype.detach.call(this);this.viewport.removeEventListener('change',this.viewportChange_);},viewportChange_(){if(this.viewport.interestRange.isEmpty){Polymer.dom(this).classList.remove('tall-mode');}else{Polymer.dom(this).classList.add('tall-mode');}},draw(type,viewLWorld,viewRWorld,viewHeight){switch(type){case tr.ui.tracks.DrawType.GRID:this.drawGrid_(viewLWorld,viewRWorld);break;case tr.ui.tracks.DrawType.MARKERS:this.drawMarkers_(viewLWorld,viewRWorld);break;}},drawGrid_(viewLWorld,viewRWorld){const ctx=this.context();const pixelRatio=window.devicePixelRatio||1;const canvasBounds=ctx.canvas.getBoundingClientRect();const trackBounds=this.getBoundingClientRect();const width=canvasBounds.width*pixelRatio;const height=trackBounds.height*pixelRatio;const hasInterestRange=!this.viewport.interestRange.isEmpty;const xAxisHeightPx=hasInterestRange?(height*2)/5:height;const vp=this.viewport;const dt=vp.currentDisplayTransform;vp.updateMajorMarkData(viewLWorld,viewRWorld);const majorMarkDistanceWorld=vp.majorMarkWorldPositions.length>1?vp.majorMarkWorldPositions[1]-vp.majorMarkWorldPositions[0]:0;const numTicksPerMajor=5;const minorMarkDistanceWorld=majorMarkDistanceWorld/numTicksPerMajor;const minorMarkDistancePx=dt.xWorldVectorToView(minorMarkDistanceWorld);const minorTickHeight=Math.floor(xAxisHeightPx*0.25);ctx.save();ctx.lineWidth=Math.round(pixelRatio);const crispLineCorrection=(ctx.lineWidth%2)/2;ctx.translate(crispLineCorrection,-crispLineCorrection);ctx.fillStyle='rgb(0, 0, 0)';ctx.strokeStyle='rgb(0, 0, 0)';ctx.textAlign='left';ctx.textBaseline='top';ctx.font=(9*pixelRatio)+'px sans-serif';const tickLabels=[];ctx.beginPath();for(let i=0;i<vp.majorMarkWorldPositions.length;i++){const curXWorld=vp.majorMarkWorldPositions[i];const curXView=dt.xWorldToView(curXWorld);const displayText=vp.majorMarkUnit.format(curXWorld,{deltaValue:majorMarkDistanceWorld});ctx.fillText(displayText,curXView+(2*pixelRatio),0);tr.ui.b.drawLine(ctx,curXView,0,curXView,xAxisHeightPx);if(minorMarkDistancePx){for(let j=1;j<numTicksPerMajor;++j){const xView=Math.floor(curXView+minorMarkDistancePx*j);tr.ui.b.drawLine(ctx,xView,xAxisHeightPx-minorTickHeight,xView,xAxisHeightPx);}}}
9218ctx.strokeStyle='rgb(0, 0, 0)';tr.ui.b.drawLine(ctx,0,height,width,height);ctx.stroke();if(!hasInterestRange)return;tr.ui.b.drawLine(ctx,0,xAxisHeightPx,width,xAxisHeightPx);ctx.stroke();let displayDistance;const displayTextColor='rgb(0,0,0)';const arrowSpacing=10*pixelRatio;const arrowColor='rgb(128,121,121)';const arrowPosY=xAxisHeightPx*1.75;const arrowWidthView=3*pixelRatio;const arrowLengthView=10*pixelRatio;const spaceForArrowsView=2*(arrowWidthView+arrowSpacing);ctx.textBaseline='middle';ctx.font=(14*pixelRatio)+'px sans-serif';const textPosY=arrowPosY;const interestRange=vp.interestRange;if(interestRange.range===0){const markerWorld=interestRange.min;const markerView=dt.xWorldToView(markerWorld);const textToDraw=vp.majorMarkUnit.format(markerWorld);let textLeftView=markerView+4*pixelRatio;const textWidthView=ctx.measureText(textToDraw).width;if(textLeftView+textWidthView>width){textLeftView=markerView-4*pixelRatio-textWidthView;}
9219ctx.fillStyle=displayTextColor;ctx.fillText(textToDraw,textLeftView,textPosY);return;}
9220const leftMarker=interestRange.min;const rightMarker=interestRange.max;const leftMarkerView=dt.xWorldToView(leftMarker);const rightMarkerView=dt.xWorldToView(rightMarker);const distanceBetweenMarkers=interestRange.range;const distanceBetweenMarkersView=dt.xWorldVectorToView(distanceBetweenMarkers);const positionInMiddleOfMarkersView=leftMarkerView+(distanceBetweenMarkersView/2);const textToDraw=vp.majorMarkUnit.format(distanceBetweenMarkers);const textWidthView=ctx.measureText(textToDraw).width;const spaceForArrowsAndTextView=textWidthView+spaceForArrowsView+arrowSpacing;let textLeftView=positionInMiddleOfMarkersView-textWidthView/2;const textRightView=textLeftView+textWidthView;if(spaceForArrowsAndTextView>distanceBetweenMarkersView){textLeftView=rightMarkerView+2*arrowSpacing;if(textLeftView+textWidthView>width){textLeftView=leftMarkerView-2*arrowSpacing-textWidthView;}
9221ctx.fillStyle=displayTextColor;ctx.fillText(textToDraw,textLeftView,textPosY);ctx.strokeStyle=arrowColor;ctx.beginPath();tr.ui.b.drawLine(ctx,leftMarkerView,arrowPosY,rightMarkerView,arrowPosY);ctx.stroke();ctx.fillStyle=arrowColor;tr.ui.b.drawArrow(ctx,leftMarkerView-1.5*arrowSpacing,arrowPosY,leftMarkerView,arrowPosY,arrowLengthView,arrowWidthView);tr.ui.b.drawArrow(ctx,rightMarkerView+1.5*arrowSpacing,arrowPosY,rightMarkerView,arrowPosY,arrowLengthView,arrowWidthView);}else if(spaceForArrowsView<=distanceBetweenMarkersView){let leftArrowStart;let rightArrowStart;if(spaceForArrowsAndTextView<=distanceBetweenMarkersView){ctx.fillStyle=displayTextColor;ctx.fillText(textToDraw,textLeftView,textPosY);leftArrowStart=textLeftView-arrowSpacing;rightArrowStart=textRightView+arrowSpacing;}else{leftArrowStart=positionInMiddleOfMarkersView;rightArrowStart=positionInMiddleOfMarkersView;}
9222ctx.strokeStyle=arrowColor;ctx.fillStyle=arrowColor;tr.ui.b.drawArrow(ctx,leftArrowStart,arrowPosY,leftMarkerView,arrowPosY,arrowLengthView,arrowWidthView);tr.ui.b.drawArrow(ctx,rightArrowStart,arrowPosY,rightMarkerView,arrowPosY,arrowLengthView,arrowWidthView);}
9223ctx.restore();},drawMarkers_(viewLWorld,viewRWorld){const pixelRatio=window.devicePixelRatio||1;const trackBounds=this.getBoundingClientRect();const viewHeight=trackBounds.height*pixelRatio;if(!this.viewport.interestRange.isEmpty){this.viewport.interestRange.draw(this.context(),viewLWorld,viewRWorld,viewHeight);}},addIntersectingEventsInRangeToSelection(loVX,hiVX,loY,hiY,selection){},addAllEventsMatchingFilterToSelection(filter,selection){}};return{XAxisTrack,};});'use strict';Polymer({is:'tr-ui-timeline-track-view',ready(){this.displayTransform_=new tr.ui.TimelineDisplayTransform();this.model_=undefined;this.timelineView_=undefined;this.pollIfViewportAttachedInterval_=undefined;this.viewport_=new tr.ui.TimelineViewport(this);this.viewportDisplayTransformAtMouseDown_=undefined;this.brushingStateController_=undefined;this.rulerTrackContainer_=new tr.ui.tracks.DrawingContainer(this.viewport_);Polymer.dom(this).appendChild(this.rulerTrackContainer_);this.rulerTrackContainer_.invalidate();this.rulerTrackContainer_.style.overflowY='hidden';this.rulerTrackContainer_.style.flexShrink='0';this.rulerTrack_=new tr.ui.tracks.XAxisTrack(this.viewport_);Polymer.dom(this.rulerTrackContainer_).appendChild(this.rulerTrack_);this.upperModelTrack_=new tr.ui.tracks.ModelTrack(this.viewport_);this.upperModelTrack_.upperMode=true;Polymer.dom(this.rulerTrackContainer_).appendChild(this.upperModelTrack_);this.modelTrackContainer_=new tr.ui.tracks.DrawingContainer(this.viewport_);Polymer.dom(this).appendChild(this.modelTrackContainer_);this.modelTrackContainer_.style.display='block';this.modelTrackContainer_.style.flexGrow='1';this.modelTrackContainer_.invalidate();this.viewport_.modelTrackContainer=this.modelTrackContainer_;this.modelTrack_=new tr.ui.tracks.ModelTrack(this.viewport_);Polymer.dom(this.modelTrackContainer_).appendChild(this.modelTrack_);this.timingTool_=new tr.ui.b.TimingTool(this.viewport_,this);this.initMouseModeSelector();this.hideDragBox_();this.initHintText_();this.onSelectionChanged_=this.onSelectionChanged_.bind(this);this.onDblClick_=this.onDblClick_.bind(this);this.addEventListener('dblclick',this.onDblClick_);this.onMouseWheel_=this.onMouseWheel_.bind(this);this.addEventListener('mousewheel',this.onMouseWheel_);this.onMouseDown_=this.onMouseDown_.bind(this);this.addEventListener('mousedown',this.onMouseDown_);this.onMouseMove_=this.onMouseMove_.bind(this);this.addEventListener('mousemove',this.onMouseMove_);this.onTouchStart_=this.onTouchStart_.bind(this);this.addEventListener('touchstart',this.onTouchStart_);this.onTouchMove_=this.onTouchMove_.bind(this);this.addEventListener('touchmove',this.onTouchMove_);this.onTouchEnd_=this.onTouchEnd_.bind(this);this.addEventListener('touchend',this.onTouchEnd_);this.addHotKeys_();this.mouseViewPosAtMouseDown_={x:0,y:0};this.lastMouseViewPos_={x:0,y:0};this.lastTouchViewPositions_=[];this.alert_=undefined;this.isPanningAndScanning_=false;this.isZooming_=false;},initMouseModeSelector(){this.mouseModeSelector_=document.createElement('tr-ui-b-mouse-mode-selector');this.mouseModeSelector_.targetElement=this;Polymer.dom(this).appendChild(this.mouseModeSelector_);this.mouseModeSelector_.addEventListener('beginpan',this.onBeginPanScan_.bind(this));this.mouseModeSelector_.addEventListener('updatepan',this.onUpdatePanScan_.bind(this));this.mouseModeSelector_.addEventListener('endpan',this.onEndPanScan_.bind(this));this.mouseModeSelector_.addEventListener('beginselection',this.onBeginSelection_.bind(this));this.mouseModeSelector_.addEventListener('updateselection',this.onUpdateSelection_.bind(this));this.mouseModeSelector_.addEventListener('endselection',this.onEndSelection_.bind(this));this.mouseModeSelector_.addEventListener('beginzoom',this.onBeginZoom_.bind(this));this.mouseModeSelector_.addEventListener('updatezoom',this.onUpdateZoom_.bind(this));this.mouseModeSelector_.addEventListener('endzoom',this.onEndZoom_.bind(this));this.mouseModeSelector_.addEventListener('entertiming',this.timingTool_.onEnterTiming.bind(this.timingTool_));this.mouseModeSelector_.addEventListener('begintiming',this.timingTool_.onBeginTiming.bind(this.timingTool_));this.mouseModeSelector_.addEventListener('updatetiming',this.timingTool_.onUpdateTiming.bind(this.timingTool_));this.mouseModeSelector_.addEventListener('endtiming',this.timingTool_.onEndTiming.bind(this.timingTool_));this.mouseModeSelector_.addEventListener('exittiming',this.timingTool_.onExitTiming.bind(this.timingTool_));const m=tr.ui.b.MOUSE_SELECTOR_MODE;this.mouseModeSelector_.supportedModeMask=m.SELECTION|m.PANSCAN|m.ZOOM|m.TIMING;this.mouseModeSelector_.settingsKey='timelineTrackView.mouseModeSelector';this.mouseModeSelector_.setKeyCodeForMode(m.PANSCAN,'2'.charCodeAt(0));this.mouseModeSelector_.setKeyCodeForMode(m.SELECTION,'1'.charCodeAt(0));this.mouseModeSelector_.setKeyCodeForMode(m.ZOOM,'3'.charCodeAt(0));this.mouseModeSelector_.setKeyCodeForMode(m.TIMING,'4'.charCodeAt(0));this.mouseModeSelector_.setModifierForAlternateMode(m.SELECTION,tr.ui.b.MODIFIER.SHIFT);this.mouseModeSelector_.setModifierForAlternateMode(m.PANSCAN,tr.ui.b.MODIFIER.SPACE);},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStateController){if(this.brushingStateController_){this.brushingStateController_.removeEventListener('change',this.onSelectionChanged_);}
9224this.brushingStateController_=brushingStateController;if(this.brushingStateController_){this.brushingStateController_.addEventListener('change',this.onSelectionChanged_);}},set timelineView(view){this.timelineView_=view;},onSelectionChanged_(){this.showHintText_('Press \'m\' to mark current selection');this.viewport_.dispatchChangeEvent();},set selection(selection){throw new Error('DO NOT CALL THIS');},set highlight(highlight){throw new Error('DO NOT CALL THIS');},detach(){this.modelTrack_.detach();this.upperModelTrack_.detach();if(this.pollIfViewportAttachedInterval_){window.clearInterval(this.pollIfViewportAttachedInterval_);this.pollIfViewportAttachedInterval_=undefined;}
9225this.viewport_.detach();},get viewport(){return this.viewport_;},get model(){return this.model_;},set model(model){if(!model){throw new Error('Model cannot be undefined');}
9226const modelInstanceChanged=this.model_!==model;this.model_=model;this.modelTrack_.model=model;this.upperModelTrack_.model=model;if(modelInstanceChanged){this.pollIfViewportAttachedInterval_=window.setInterval(this.pollIfViewportAttached_.bind(this),250);}},get hasVisibleContent(){return this.modelTrack_.hasVisibleContent||this.upperModelTrack_.hasVisibleContent;},pollIfViewportAttached_(){if(!this.viewport_.isAttachedToDocumentOrInTestMode||this.viewport_.clientWidth===0){return;}
9227window.addEventListener('resize',this.viewport_.dispatchChangeEvent);window.clearInterval(this.pollIfViewportAttachedInterval_);this.pollIfViewportAttachedInterval_=undefined;this.setInitialViewport_();},setInitialViewport_(){this.modelTrackContainer_.updateCanvasSizeIfNeeded_();const w=this.modelTrackContainer_.canvas.width;let min;let range;if(this.model_.bounds.isEmpty){min=0;range=1000;}else if(this.model_.bounds.range===0){min=this.model_.bounds.min;range=1000;}else{min=this.model_.bounds.min;range=this.model_.bounds.range;}
9228const boost=range*0.15;this.displayTransform_.set(this.viewport_.currentDisplayTransform);this.displayTransform_.xSetWorldBounds(min-boost,min+range+boost,w);this.viewport_.setDisplayTransformImmediately(this.displayTransform_);},addAllEventsMatchingFilterToSelectionAsTask(filter,selection){const modelTrack=this.modelTrack_;const firstT=modelTrack.addAllEventsMatchingFilterToSelectionAsTask(filter,selection);const lastT=firstT.after(function(){this.upperModelTrack_.addAllEventsMatchingFilterToSelection(filter,selection);},this);return firstT;},onMouseMove_(e){if(this.isZooming_)return;this.storeLastMousePos_(e);},onTouchStart_(e){this.storeLastTouchPositions_(e);this.focusElements_();},onTouchMove_(e){e.preventDefault();this.onUpdateTransformForTouch_(e);},onTouchEnd_(e){this.storeLastTouchPositions_(e);this.focusElements_();},addHotKeys_(){this.addKeyDownHotKeys_();this.addKeyPressHotKeys_();},addKeyPressHotKey(dict){dict.eventType='keypress';dict.useCapture=false;dict.thisArg=this;const binding=new tr.ui.b.HotKey(dict);this.$.hotkey_controller.addHotKey(binding);},addKeyPressHotKeys_(){this.addKeyPressHotKey({keyCodes:['w'.charCodeAt(0),','.charCodeAt(0)],callback(e){this.zoomBy_(1.5,true);e.stopPropagation();}});this.addKeyPressHotKey({keyCodes:['s'.charCodeAt(0),'o'.charCodeAt(0)],callback(e){this.zoomBy_(1/1.5,true);e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'g'.charCodeAt(0),callback(e){this.onGridToggle_(true);e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'G'.charCodeAt(0),callback(e){this.onGridToggle_(false);e.stopPropagation();}});this.addKeyPressHotKey({keyCodes:['W'.charCodeAt(0),'<'.charCodeAt(0)],callback(e){this.zoomBy_(10,true);e.stopPropagation();}});this.addKeyPressHotKey({keyCodes:['S'.charCodeAt(0),'O'.charCodeAt(0)],callback(e){this.zoomBy_(1/10,true);e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'a'.charCodeAt(0),callback(e){this.queueSmoothPan_(this.viewWidth_*0.3,0);e.stopPropagation();}});this.addKeyPressHotKey({keyCodes:['d'.charCodeAt(0),'e'.charCodeAt(0)],callback(e){this.queueSmoothPan_(this.viewWidth_*-0.3,0);e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'A'.charCodeAt(0),callback(e){this.queueSmoothPan_(viewWidth*0.5,0);e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'D'.charCodeAt(0),callback(e){this.queueSmoothPan_(viewWidth*-0.5,0);e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'0'.charCodeAt(0),callback(e){this.setInitialViewport_();e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'f'.charCodeAt(0),callback(e){this.zoomToSelection();e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'m'.charCodeAt(0),callback(e){this.setCurrentSelectionAsInterestRange_();e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'p'.charCodeAt(0),callback(e){this.selectPowerSamplesInCurrentTimeRange_();e.stopPropagation();}});this.addKeyPressHotKey({keyCode:'h'.charCodeAt(0),callback(e){this.toggleHighDetails_();e.stopPropagation();}});},get viewWidth_(){return this.modelTrackContainer_.canvas.clientWidth;},addKeyDownHotKeys_(){const addBinding=function(dict){dict.eventType='keydown';dict.useCapture=false;dict.thisArg=this;const binding=new tr.ui.b.HotKey(dict);this.$.hotkey_controller.addHotKey(binding);}.bind(this);addBinding({keyCode:37,callback(e){const curSel=this.brushingStateController_.selection;const sel=this.viewport.getShiftedSelection(curSel,-1);if(sel){this.brushingStateController.changeSelectionFromTimeline(sel);this.panToSelection();}else{this.queueSmoothPan_(this.viewWidth_*0.3,0);}
9229e.preventDefault();e.stopPropagation();}});addBinding({keyCode:39,callback(e){const curSel=this.brushingStateController_.selection;const sel=this.viewport.getShiftedSelection(curSel,1);if(sel){this.brushingStateController.changeSelectionFromTimeline(sel);this.panToSelection();}else{this.queueSmoothPan_(-this.viewWidth_*0.3,0);}
9230e.preventDefault();e.stopPropagation();}});},onDblClick_(e){if(this.mouseModeSelector_.mode!==tr.ui.b.MOUSE_SELECTOR_MODE.SELECTION){return;}
9231const curSelection=this.brushingStateController_.selection;if(!curSelection.length||!tr.b.getOnlyElement(curSelection).title){return;}
9232const selection=new tr.model.EventSet();const filter=new tr.c.ExactTitleFilter(tr.b.getOnlyElement(curSelection).title);this.modelTrack_.addAllEventsMatchingFilterToSelection(filter,selection);this.brushingStateController.changeSelectionFromTimeline(selection);},onMouseWheel_(e){if(!e.altKey)return;const delta=e.wheelDelta/120;const zoomScale=Math.pow(1.5,delta);this.zoomBy_(zoomScale);e.preventDefault();},onMouseDown_(e){if(this.mouseModeSelector_.mode!==tr.ui.b.MOUSE_SELECTOR_MODE.SELECTION){return;}
9233if(e.target!==this.rulerTrack_)return;this.dragBeginEvent_=undefined;if(this.xNavStringMarker_){this.model.removeAnnotation(this.xNavStringMarker_);this.xNavStringMarker_=undefined;}
9234const dt=this.viewport_.currentDisplayTransform;tr.ui.b.trackMouseMovesUntilMouseUp(function(e){if(e.target===this.rulerTrack_)return;const relativePosition=this.extractRelativeMousePosition_(e);const loc=tr.model.Location.fromViewCoordinates(this.viewport_,relativePosition.x,relativePosition.y);if(!loc)return;if(this.guideLineAnnotation_===undefined){this.guideLineAnnotation_=new tr.model.XMarkerAnnotation(loc.xWorld);this.model.addAnnotation(this.guideLineAnnotation_);}else{this.guideLineAnnotation_.timestamp=loc.xWorld;this.modelTrackContainer_.invalidate();}
9235const state=new tr.ui.b.UIState(loc,this.viewport_.currentDisplayTransform.scaleX);this.timelineView_.setFindCtlText(state.toUserFriendlyString(this.viewport_));}.bind(this),undefined,function onKeyUpDuringDrag(){if(this.dragBeginEvent_){this.setDragBoxPosition_(this.dragBoxXStart_,this.dragBoxYStart_,this.dragBoxXEnd_,this.dragBoxYEnd_);}}.bind(this));},queueSmoothPan_(viewDeltaX,deltaY){const deltaX=this.viewport_.currentDisplayTransform.xViewVectorToWorld(viewDeltaX);const animation=new tr.ui.TimelineDisplayTransformPanAnimation(deltaX,deltaY);this.viewport_.queueDisplayTransformAnimation(animation);},zoomBy_(scale,smooth){if(scale<=0){return;}
9236smooth=!!smooth;const vp=this.viewport_;const pixelRatio=window.devicePixelRatio||1;const goalFocalPointXView=this.lastMouseViewPos_.x*pixelRatio;const goalFocalPointXWorld=vp.currentDisplayTransform.xViewToWorld(goalFocalPointXView);if(smooth){const animation=new tr.ui.TimelineDisplayTransformZoomToAnimation(goalFocalPointXWorld,goalFocalPointXView,vp.currentDisplayTransform.panY,scale);vp.queueDisplayTransformAnimation(animation);}else{this.displayTransform_.set(vp.currentDisplayTransform);this.displayTransform_.scaleX*=scale;this.displayTransform_.xPanWorldPosToViewPos(goalFocalPointXWorld,goalFocalPointXView,this.viewWidth_);vp.setDisplayTransformImmediately(this.displayTransform_);}},zoomToSelection(){if(!this.brushingStateController.selectionOfInterest.length)return;const bounds=this.brushingStateController.selectionOfInterest.bounds;if(!bounds.range)return;const worldCenter=bounds.center;const viewCenter=this.modelTrackContainer_.canvas.width/2;const adjustedWorldRange=bounds.range*1.25;const newScale=this.modelTrackContainer_.canvas.width/adjustedWorldRange;const zoomInRatio=newScale/this.viewport_.currentDisplayTransform.scaleX;const animation=new tr.ui.TimelineDisplayTransformZoomToAnimation(worldCenter,viewCenter,this.viewport_.currentDisplayTransform.panY,zoomInRatio);this.viewport_.queueDisplayTransformAnimation(animation);},panToSelection(){if(!this.brushingStateController.selectionOfInterest.length)return;const bounds=this.brushingStateController.selectionOfInterest.bounds;const worldCenter=bounds.center;const viewWidth=this.viewWidth_;const dt=this.viewport_.currentDisplayTransform;if(false&&!bounds.range){if(dt.xWorldToView(bounds.center)<0||dt.xWorldToView(bounds.center)>viewWidth){this.displayTransform_.set(dt);this.displayTransform_.xPanWorldPosToViewPos(worldCenter,'center',viewWidth);const deltaX=this.displayTransform_.panX-dt.panX;const animation=new tr.ui.TimelineDisplayTransformPanAnimation(deltaX,0);this.viewport_.queueDisplayTransformAnimation(animation);}
9237return;}
9238this.displayTransform_.set(dt);this.displayTransform_.xPanWorldBoundsIntoView(bounds.min,bounds.max,viewWidth);const deltaX=this.displayTransform_.panX-dt.panX;const animation=new tr.ui.TimelineDisplayTransformPanAnimation(deltaX,0);this.viewport_.queueDisplayTransformAnimation(animation);},navToPosition(uiState,showNavLine){const location=uiState.location;const scaleX=uiState.scaleX;const track=location.getContainingTrack(this.viewport_);const worldCenter=location.xWorld;const viewCenter=this.modelTrackContainer_.canvas.width/5;const zoomInRatio=scaleX/this.viewport_.currentDisplayTransform.scaleX;track.scrollIntoViewIfNeeded();const animation=new tr.ui.TimelineDisplayTransformZoomToAnimation(worldCenter,viewCenter,this.viewport_.currentDisplayTransform.panY,zoomInRatio);this.viewport_.queueDisplayTransformAnimation(animation);if(!showNavLine)return;if(this.xNavStringMarker_){this.model.removeAnnotation(this.xNavStringMarker_);}
9239this.xNavStringMarker_=new tr.model.XMarkerAnnotation(worldCenter);this.model.addAnnotation(this.xNavStringMarker_);},selectPowerSamplesInCurrentTimeRange_(){const selectionBounds=this.brushingStateController_.selection.bounds;if(this.model.device.powerSeries&&!selectionBounds.empty){const events=this.model.device.powerSeries.getSamplesWithinRange(selectionBounds.min,selectionBounds.max);const selection=new tr.model.EventSet(events);this.brushingStateController_.changeSelectionFromTimeline(selection);}},setCurrentSelectionAsInterestRange_(){const selectionBounds=this.brushingStateController_.selection.bounds;if(selectionBounds.empty){this.viewport_.interestRange.reset();return;}
9240if(this.viewport_.interestRange.min===selectionBounds.min&&this.viewport_.interestRange.max===selectionBounds.max){this.viewport_.interestRange.reset();}else{this.viewport_.interestRange.set(selectionBounds);}},toggleHighDetails_(){this.viewport_.highDetails=!this.viewport_.highDetails;},hideDragBox_(){this.$.drag_box.style.left='-1000px';this.$.drag_box.style.top='-1000px';this.$.drag_box.style.width=0;this.$.drag_box.style.height=0;},setDragBoxPosition_(xStart,yStart,xEnd,yEnd){const loY=Math.min(yStart,yEnd);const hiY=Math.max(yStart,yEnd);const loX=Math.min(xStart,xEnd);const hiX=Math.max(xStart,xEnd);const modelTrackRect=this.modelTrack_.getBoundingClientRect();const dragRect={left:loX,top:loY,width:hiX-loX,height:hiY-loY};dragRect.right=dragRect.left+dragRect.width;dragRect.bottom=dragRect.top+dragRect.height;const modelTrackContainerRect=this.modelTrackContainer_.getBoundingClientRect();const clipRect={left:modelTrackContainerRect.left,top:modelTrackContainerRect.top,right:modelTrackContainerRect.right,bottom:modelTrackContainerRect.bottom};const headingWidth=window.getComputedStyle(Polymer.dom(this).querySelector('tr-ui-b-heading')).width;const trackTitleWidth=parseInt(headingWidth);clipRect.left=clipRect.left+trackTitleWidth;const intersectRect_=function(r1,r2){if(r2.left>r1.right||r2.right<r1.left||r2.top>r1.bottom||r2.bottom<r1.top){return false;}
9241const results={};results.left=Math.max(r1.left,r2.left);results.top=Math.max(r1.top,r2.top);results.right=Math.min(r1.right,r2.right);results.bottom=Math.min(r1.bottom,r2.bottom);results.width=results.right-results.left;results.height=results.bottom-results.top;return results;};const finalDragBox=intersectRect_(clipRect,dragRect);this.$.drag_box.style.left=finalDragBox.left+'px';this.$.drag_box.style.width=finalDragBox.width+'px';this.$.drag_box.style.top=finalDragBox.top+'px';this.$.drag_box.style.height=finalDragBox.height+'px';this.$.drag_box.style.whiteSpace='nowrap';const pixelRatio=window.devicePixelRatio||1;const canv=this.modelTrackContainer_.canvas;const dt=this.viewport_.currentDisplayTransform;const loWX=dt.xViewToWorld((loX-canv.offsetLeft)*pixelRatio);const hiWX=dt.xViewToWorld((hiX-canv.offsetLeft)*pixelRatio);Polymer.dom(this.$.drag_box).textContent=tr.b.Unit.byName.timeDurationInMs.format(hiWX-loWX);const e=new tr.b.Event('selectionChanging');e.loWX=loWX;e.hiWX=hiWX;this.dispatchEvent(e);},onGridToggle_(left){const selection=this.brushingStateController_.selection;const tb=left?selection.bounds.min:selection.bounds.max;if(this.viewport_.gridEnabled&&this.viewport_.gridSide===left&&this.viewport_.gridInitialTimebase===tb){this.viewport_.gridside=undefined;this.viewport_.gridEnabled=false;this.viewport_.gridInitialTimebase=undefined;return;}
9242const numIntervalsSinceStart=Math.ceil((tb-this.model_.bounds.min)/this.viewport_.gridStep_);this.viewport_.gridEnabled=true;this.viewport_.gridSide=left;this.viewport_.gridInitialTimebase=tb;this.viewport_.gridTimebase=tb-
9243(numIntervalsSinceStart+1)*this.viewport_.gridStep_;},storeLastMousePos_(e){this.lastMouseViewPos_=this.extractRelativeMousePosition_(e);},storeLastTouchPositions_(e){this.lastTouchViewPositions_=this.extractRelativeTouchPositions_(e);},extractRelativeMousePosition_(e){const canv=this.modelTrackContainer_.canvas;return{x:e.clientX-canv.offsetLeft,y:e.clientY-canv.offsetTop};},extractRelativeTouchPositions_(e){const canv=this.modelTrackContainer_.canvas;const touches=[];for(let i=0;i<e.touches.length;++i){touches.push({x:e.touches[i].clientX-canv.offsetLeft,y:e.touches[i].clientY-canv.offsetTop});}
9244return touches;},storeInitialMouseDownPos_(e){const position=this.extractRelativeMousePosition_(e);this.mouseViewPosAtMouseDown_.x=position.x;this.mouseViewPosAtMouseDown_.y=position.y;},focusElements_(){this.$.hotkey_controller.childRequestsGeneralFocus(this);},storeInitialInteractionPositionsAndFocus_(e){this.storeInitialMouseDownPos_(e);this.storeLastMousePos_(e);this.focusElements_();},onBeginPanScan_(e){const vp=this.viewport_;this.viewportDisplayTransformAtMouseDown_=vp.currentDisplayTransform.clone();this.isPanningAndScanning_=true;this.storeInitialInteractionPositionsAndFocus_(e);e.preventDefault();},onUpdatePanScan_(e){if(!this.isPanningAndScanning_)return;const viewWidth=this.viewWidth_;const pixelRatio=window.devicePixelRatio||1;const xDeltaView=pixelRatio*(this.lastMouseViewPos_.x-
9245this.mouseViewPosAtMouseDown_.x);const yDelta=this.lastMouseViewPos_.y-
9246this.mouseViewPosAtMouseDown_.y;this.displayTransform_.set(this.viewportDisplayTransformAtMouseDown_);this.displayTransform_.incrementPanXInViewUnits(xDeltaView);this.displayTransform_.panY-=yDelta;this.viewport_.setDisplayTransformImmediately(this.displayTransform_);e.preventDefault();e.stopPropagation();this.storeLastMousePos_(e);},onEndPanScan_(e){this.isPanningAndScanning_=false;this.storeLastMousePos_(e);if(!e.isClick){e.preventDefault();}},onBeginSelection_(e){const canv=this.modelTrackContainer_.canvas;const rect=this.modelTrack_.getBoundingClientRect();const canvRect=canv.getBoundingClientRect();const inside=rect&&e.clientX>=rect.left&&e.clientX<rect.right&&e.clientY>=rect.top&&e.clientY<rect.bottom&&e.clientX>=canvRect.left&&e.clientX<canvRect.right;if(!inside)return;this.dragBeginEvent_=e;this.storeInitialInteractionPositionsAndFocus_(e);e.preventDefault();},onUpdateSelection_(e){if(!this.dragBeginEvent_)return;this.dragBoxXStart_=this.dragBeginEvent_.clientX;this.dragBoxXEnd_=e.clientX;this.dragBoxYStart_=this.dragBeginEvent_.clientY;this.dragBoxYEnd_=e.clientY;this.setDragBoxPosition_(this.dragBoxXStart_,this.dragBoxYStart_,this.dragBoxXEnd_,this.dragBoxYEnd_);},onEndSelection_(e){e.preventDefault();if(!this.dragBeginEvent_)return;this.hideDragBox_();const eDown=this.dragBeginEvent_;this.dragBeginEvent_=undefined;const loY=Math.min(eDown.clientY,e.clientY);const hiY=Math.max(eDown.clientY,e.clientY);const loX=Math.min(eDown.clientX,e.clientX);const hiX=Math.max(eDown.clientX,e.clientX);const canv=this.modelTrackContainer_.canvas;const worldOffset=canv.getBoundingClientRect().left;const loVX=loX-worldOffset;const hiVX=hiX-worldOffset;const selection=new tr.model.EventSet();if(eDown.appendSelection){const previousSelection=this.brushingStateController_.selection;if(previousSelection!==undefined){selection.addEventSet(previousSelection);}}
9247this.modelTrack_.addIntersectingEventsInRangeToSelection(loVX,hiVX,loY,hiY,selection);this.brushingStateController_.changeSelectionFromTimeline(selection);},onBeginZoom_(e){this.isZooming_=true;this.storeInitialInteractionPositionsAndFocus_(e);e.preventDefault();},onUpdateZoom_(e){if(!this.isZooming_)return;const newPosition=this.extractRelativeMousePosition_(e);const zoomScaleValue=1+(this.lastMouseViewPos_.y-
9248newPosition.y)*0.01;this.zoomBy_(zoomScaleValue,false);this.storeLastMousePos_(e);},onEndZoom_(e){this.isZooming_=false;if(!e.isClick){e.preventDefault();}},computeTouchCenter_(positions){let xSum=0;let ySum=0;for(let i=0;i<positions.length;++i){xSum+=positions[i].x;ySum+=positions[i].y;}
9249return{x:xSum/positions.length,y:ySum/positions.length};},computeTouchSpan_(positions){let xMin=Number.MAX_VALUE;let yMin=Number.MAX_VALUE;let xMax=Number.MIN_VALUE;let yMax=Number.MIN_VALUE;for(let i=0;i<positions.length;++i){xMin=Math.min(xMin,positions[i].x);yMin=Math.min(yMin,positions[i].y);xMax=Math.max(xMax,positions[i].x);yMax=Math.max(yMax,positions[i].y);}
9250return Math.sqrt((xMin-xMax)*(xMin-xMax)+
9251(yMin-yMax)*(yMin-yMax));},onUpdateTransformForTouch_(e){const newPositions=this.extractRelativeTouchPositions_(e);const currentPositions=this.lastTouchViewPositions_;const newCenter=this.computeTouchCenter_(newPositions);const currentCenter=this.computeTouchCenter_(currentPositions);const newSpan=this.computeTouchSpan_(newPositions);const currentSpan=this.computeTouchSpan_(currentPositions);const vp=this.viewport_;const viewWidth=this.viewWidth_;const pixelRatio=window.devicePixelRatio||1;const xDelta=pixelRatio*(newCenter.x-currentCenter.x);const yDelta=newCenter.y-currentCenter.y;const zoomScaleValue=currentSpan>10?newSpan/currentSpan:1;const viewFocus=pixelRatio*newCenter.x;const worldFocus=vp.currentDisplayTransform.xViewToWorld(viewFocus);this.displayTransform_.set(vp.currentDisplayTransform);this.displayTransform_.scaleX*=zoomScaleValue;this.displayTransform_.xPanWorldPosToViewPos(worldFocus,viewFocus,viewWidth);this.displayTransform_.incrementPanXInViewUnits(xDelta);this.displayTransform_.panY-=yDelta;vp.setDisplayTransformImmediately(this.displayTransform_);this.storeLastTouchPositions_(e);},initHintText_(){this.$.hint_text.style.display='none';this.pendingHintTextClearTimeout_=undefined;},showHintText_(text){if(this.pendingHintTextClearTimeout_){window.clearTimeout(this.pendingHintTextClearTimeout_);this.pendingHintTextClearTimeout_=undefined;}
9252this.pendingHintTextClearTimeout_=setTimeout(this.hideHintText_.bind(this),1000);Polymer.dom(this.$.hint_text).textContent=text;this.$.hint_text.style.display='';},hideHintText_(){this.pendingHintTextClearTimeout_=undefined;this.$.hint_text.style.display='none';}});'use strict';Polymer({is:'tr-ui-find-control',filterKeyDown(e){if(e.keyCode===27){const hkc=tr.b.getHotkeyControllerForElement(this);if(hkc){hkc.childRequestsBlur(this);}else{this.blur();}
9253e.preventDefault();e.stopPropagation();return;}else if(e.keyCode===13){if(e.shiftKey){this.findPrevious();}else{this.findNext();}}},filterBlur(e){this.updateHitCountEl();},filterFocus(e){this.$.filter.select();},filterMouseUp(e){e.preventDefault();},get controller(){return this.controller_;},set controller(c){this.controller_=c;this.updateHitCountEl();},focus(){this.$.filter.focus();},get hasFocus(){return this===document.activeElement;},filterTextChanged(){Polymer.dom(this.$.hitCount).textContent='';this.$.spinner.style.visibility='visible';this.$.spinner.style.animation='spin 1s linear infinite';this.controller.startFiltering(this.$.filter.value).then(function(){this.$.spinner.style.visibility='hidden';this.$.spinner.style.animation='';this.updateHitCountEl();}.bind(this));},findNext(){if(this.controller){this.controller.findNext();}
9254this.updateHitCountEl();},findPrevious(){if(this.controller){this.controller.findPrevious();}
9255this.updateHitCountEl();},updateHitCountEl(){if(!this.controller||this.$.filter.value.length===0){Polymer.dom(this.$.hitCount).textContent='';return;}
9256const n=this.controller.filterHits.length;const i=n===0?-1:this.controller.currentHitIndex;Polymer.dom(this.$.hitCount).textContent=(i+1)+' of '+n;},setText(string){this.$.filter.value=string;}});'use strict';tr.exportTo('tr.e.tquery',function(){function Context(){this.event=undefined;this.ancestors=[];}
9257Context.prototype={push(event){const ctx=new Context();ctx.ancestors=this.ancestors.slice();ctx.ancestors.push(event);return ctx;},pop(event){const ctx=new Context();ctx.event=this.ancestors[this.ancestors.length-1];ctx.ancestors=this.ancestors.slice(0,this.ancestors.length-1);return ctx;}};return{Context,};});'use strict';tr.exportTo('tr.e.tquery',function(){function Filter(){tr.c.ScriptingObject.call(this);}
9258Filter.normalizeFilterExpression=function(filterExpression){if(filterExpression instanceof String||typeof(filterExpression)==='string'||filterExpression instanceof RegExp){const filter=new tr.e.tquery.FilterHasTitle(filterExpression);return filter;}
9259return filterExpression;};Filter.prototype={__proto__:tr.c.ScriptingObject.prototype,evaluate(context){throw new Error('Not implemented');},matchValue_(value,expected){if(expected instanceof RegExp){return expected.test(value);}else if(expected instanceof Function){return expected(value);}
9260return value===expected;}};return{Filter,};});'use strict';tr.exportTo('tr.e.tquery',function(){function FilterAllOf(opt_subExpressions){tr.e.tquery.Filter.call(this);this.subExpressions=opt_subExpressions||[];}
9261FilterAllOf.prototype={__proto__:tr.e.tquery.Filter.prototype,set subExpressions(exprs){this.subExpressions_=[];for(let i=0;i<exprs.length;i++){this.subExpressions_.push(tr.e.tquery.Filter.normalizeFilterExpression(exprs[i]));}},get subExpressions(){return this.subExpressions_;},evaluate(context){if(!this.subExpressions.length)return true;for(let i=0;i<this.subExpressions.length;i++){if(!this.subExpressions[i].evaluate(context)){return false;}}
9262return true;}};tr.c.ScriptingObjectRegistry.register(function(){const exprs=[];for(let i=0;i<arguments.length;i++){exprs.push(arguments[i]);}
9263return new FilterAllOf(exprs);},{name:'allOf'});return{FilterAllOf,};});'use strict';tr.exportTo('tr.e.tquery',function(){function FilterNot(subExpression){tr.e.tquery.Filter.call(this);this.subExpression=subExpression;}
9264FilterNot.prototype={__proto__:tr.e.tquery.Filter.prototype,set subExpression(expr){this.subExpression_=tr.e.tquery.Filter.normalizeFilterExpression(expr);},get subExpression(){return this.subExpression_;},evaluate(context){return!this.subExpression.evaluate(context);}};tr.c.ScriptingObjectRegistry.register(function(){const exprs=Array.prototype.slice.call(arguments);if(exprs.length!==1){throw new Error('not() must have exactly one subexpression');}
9265return new FilterNot(exprs[0]);},{name:'not'});return{FilterNot,};});'use strict';tr.exportTo('tr.e.tquery',function(){function FilterAnyOf(opt_subExpressions){tr.e.tquery.Filter.call(this);this.subExpressions=opt_subExpressions||[];}
9266FilterAnyOf.prototype={__proto__:tr.e.tquery.Filter.prototype,set subExpressions(exprs){this.subExpressions_=[];for(let i=0;i<exprs.length;i++){this.subExpressions_.push(tr.e.tquery.Filter.normalizeFilterExpression(exprs[i]));}},get subExpressions(){return this.subExpressions_;},evaluate(context){if(!this.subExpressions.length)return true;for(let i=0;i<this.subExpressions.length;i++){if(this.subExpressions[i].evaluate(context))return true;}
9267return false;}};tr.c.ScriptingObjectRegistry.register(function(){const exprs=Array.prototype.slice.call(arguments);return new FilterAnyOf(exprs);},{name:'anyOf'});tr.c.ScriptingObjectRegistry.register(function(){const exprs=Array.prototype.slice.call(arguments);return new tr.e.tquery.FilterNot(new FilterAnyOf(exprs));},{name:'noneOf'});return{FilterAnyOf,};});'use strict';tr.exportTo('tr.e.tquery',function(){function FilterHasAncestor(opt_subExpression){this.subExpression=opt_subExpression;}
9268FilterHasAncestor.prototype={__proto__:tr.e.tquery.Filter.prototype,set subExpression(expr){this.subExpression_=tr.e.tquery.Filter.normalizeFilterExpression(expr);},get subExpression(){return this.subExpression_;},evaluate(context){if(!this.subExpression){return context.ancestors.length>0;}
9269while(context.ancestors.length){context=context.pop();if(this.subExpression.evaluate(context))return true;}
9270return false;}};tr.c.ScriptingObjectRegistry.register(function(subExpression){return new FilterHasAncestor(subExpression);},{name:'hasAncestor'});return{FilterHasAncestor,};});'use strict';tr.exportTo('tr.e.tquery',function(){function FilterHasDuration(minValueOrExpected,opt_maxValue){if(minValueOrExpected!==undefined&&opt_maxValue!==undefined){this.minValue=minValueOrExpected;this.maxValue=opt_maxValue;}else{this.expected=minValueOrExpected;}}
9271FilterHasDuration.prototype={__proto__:tr.e.tquery.Filter.prototype,evaluate(context){if(context.event.duration===undefined)return false;if(this.minValue!==undefined&&this.maxValue!==undefined){return context.event.duration>=this.minValue&&context.event.duration<=this.maxValue;}
9272return this.matchValue_(context.event.duration,this.expected);}};tr.c.ScriptingObjectRegistry.register(function(minValueOrExpected,opt_maxValue){return new FilterHasDuration(minValueOrExpected,opt_maxValue);},{name:'hasDuration'});return{FilterHasDuration,};});'use strict';tr.exportTo('tr.e.tquery',function(){function FilterHasTitle(expected){tr.e.tquery.Filter.call(this);this.expected=expected;}
9273FilterHasTitle.prototype={__proto__:tr.e.tquery.Filter.prototype,evaluate(context){return this.matchValue_(context.event.title,this.expected);}};tr.c.ScriptingObjectRegistry.register(function(expected){const filter=new tr.e.tquery.FilterHasTitle(expected);return filter;},{name:'hasTitle'});return{FilterHasTitle,};});'use strict';tr.exportTo('tr.e.tquery',function(){function FilterIsTopLevel(opt_subExpression){this.subExpression=opt_subExpression;}
9274FilterIsTopLevel.prototype={__proto__:tr.e.tquery.Filter.prototype,set subExpression(expr){this.subExpression_=tr.e.tquery.Filter.normalizeFilterExpression(expr);},get subExpression(){return this.subExpression_;},evaluate(context){if(context.ancestors.length>0)return false;if(!this.subExpression)return true;return this.subExpression.evaluate(context);}};tr.c.ScriptingObjectRegistry.register(function(subExpression){return new FilterIsTopLevel(subExpression);},{name:'isTopLevel'});return{FilterIsTopLevel,};});'use strict';tr.exportTo('tr.e.tquery',function(){function addEventTreeToSelection(selection,event){selection.push(event);if(!event.subSlices)return;event.subSlices.forEach(addEventTreeToSelection.bind(undefined,selection));}
9275function TQuery(model){tr.c.ScriptingObject.call(this);this.model_=model;this.parent_=undefined;this.filterExpression_=undefined;this.selection_=undefined;}
9276TQuery.prototype={__proto__:tr.c.ScriptingObject.prototype,onModelChanged(model){this.model_=model;this.selection_=undefined;},get brushingStateController(){return this.brushingStateController_;},filter(filterExpression){const result=new TQuery(this.model_);result.parent_=this;result.filterExpression_=tr.e.tquery.Filter.normalizeFilterExpression(filterExpression);return result;},createFilterTaskGraph_(){const nodes=[this];while(nodes[nodes.length-1].parent_){nodes.push(nodes[nodes.length-1].parent_);}
9277const rootTask=new tr.b.Task();let lastTask=rootTask;let node;for(let i=nodes.length-1;i>=0;i--){node=nodes[i];if(node.selection_!==undefined)continue;node.selection_=new tr.model.EventSet();if(node.parent_===undefined){lastTask=lastTask.after(this.selectEverythingAsTask_(node.selection_));}else{const prevNode=nodes[i+1];lastTask=this.createFilterTaskForNode_(lastTask,node,prevNode);}}
9278return{rootTask,lastTask,lastNode:node};},createFilterTaskForNode_(lastTask,node,prevNode){return lastTask.after(function(){node.evaluateFilterExpression_(prevNode.selection_,node.selection_);},this);},evaluateFilterExpression_(inputSelection,outputSelection){const seenEvents={};inputSelection.forEach(function(event){const context=new tr.e.tquery.Context();context.event=event;this.evaluateFilterExpressionForEvent_(context,inputSelection,outputSelection,seenEvents);}.bind(this));},evaluateFilterExpressionForEvent_(context,inputSelection,outputSelection,seenEvents){const event=context.event;if(inputSelection.contains(event)&&!seenEvents[event.guid]){seenEvents[event.guid]=true;if(!this.filterExpression_||this.filterExpression_.evaluate(context)){outputSelection.push(event);}}
9279if(!event.subSlices)return;context=context.push(event);for(let i=0;i<event.subSlices.length;i++){context.event=event.subSlices[i];this.evaluateFilterExpressionForEvent_(context,inputSelection,outputSelection,seenEvents);}},selectEverythingAsTask_(selection){const filterTask=new tr.b.Task();for(const container of this.model_.getDescendantEventContainers()){filterTask.subTask(()=>{for(const event of container.childEvents()){addEventTreeToSelection(selection,event);}},this);}
9280return filterTask;},ready(){return new Promise(function(resolve,reject){const graph=this.createFilterTaskGraph_();graph.lastTask=graph.lastTask.after(function(){resolve(this.selection_);},this);tr.b.Task.RunWhenIdle(graph.rootTask);}.bind(this));},get selection(){if(this.selection_===undefined){const graph=this.createFilterTaskGraph_();tr.b.Task.RunSynchronously(graph.rootTask);}
9281return this.selection_;}};tr.c.ScriptingObjectRegistry.register(new TQuery(),{name:'$t'});return{TQuery,};});'use strict';Polymer({is:'tr-ui-scripting-control',isEnterKey_(event){return event.keyCode!==229&&(event.key==='Enter'||event.keyIdentifier==='Enter');},setFocus_(focused){const promptEl=this.$.prompt;if(focused){promptEl.focus();Polymer.dom(this.$.root).classList.add('focused');if(promptEl.value.length>0){const sel=window.getSelection();sel.collapse(Polymer.dom(promptEl).firstChild,promptEl.value.length);}}else{promptEl.blur();Polymer.dom(this.$.root).classList.remove('focused');const parent=promptEl.parentElement;const nextEl=Polymer.dom(promptEl).nextSibling;promptEl.remove();Polymer.dom(parent).insertBefore(promptEl,nextEl);}},onConsoleFocus(e){e.stopPropagation();this.setFocus_(true);},onConsoleBlur(e){e.stopPropagation();this.setFocus_(false);},promptKeyDown(e){e.stopPropagation();if(!this.isEnterKey_(e))return;e.preventDefault();const promptEl=this.$.prompt;const command=promptEl.value;if(command.length===0)return;promptEl.value='';this.addLine_(String.fromCharCode(187)+' '+command);let result;try{result=this.controller_.executeCommand(command);}catch(e){result=e.stack||e.stackTrace;}
9282if(result instanceof tr.e.tquery.TQuery){result.ready().then(function(selection){this.addLine_(selection.length+' matches');this.controller_.brushingStateController.showScriptControlSelection(selection);}.bind(this));}else{this.addLine_(result);}
9283promptEl.scrollIntoView();},addLine_(line){const historyEl=this.$.history;if(historyEl.innerText.length!==0){historyEl.innerText+='\n';}
9284historyEl.innerText+=line;},promptKeyPress(e){e.stopPropagation();},toggleVisibility(){const root=this.$.root;if(!this.visible){Polymer.dom(root).classList.remove('hidden');this.setFocus_(true);}else{Polymer.dom(root).classList.add('hidden');this.setFocus_(false);}},get hasFocus(){return this===document.activeElement;},get visible(){const root=this.$.root;return!Polymer.dom(root).classList.contains('hidden');},get controller(){return this.controller_;},set controller(c){this.controller_=c;}});'use strict';Polymer({is:'tr-ui-side-panel-container',ready(){this.activePanelContainer_=this.$.active_panel_container;this.tabStrip_=this.$.tab_strip;this.dragHandle_=this.$.side_panel_drag_handle;this.dragHandle_.horizontal=false;this.dragHandle_.target=this.activePanelContainer_;this.rangeOfInterest_=new tr.b.math.Range();this.brushingStateController_=undefined;this.onSelectionChanged_=this.onSelectionChanged_.bind(this);this.onModelChanged_=this.onModelChanged_.bind(this);},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStateController){if(this.brushingStateController){this.brushingStateController_.removeEventListener('change',this.onSelectionChanged_);this.brushingStateController_.removeEventListener('model-changed',this.onModelChanged_);}
9285this.brushingStateController_=brushingStateController;if(this.brushingStateController){this.brushingStateController_.addEventListener('change',this.onSelectionChanged_);this.brushingStateController_.addEventListener('model-changed',this.onModelChanged_);if(this.model){this.onModelChanged_();}}},onSelectionChanged_(){if(this.activePanel){this.activePanel.selection=this.selection;}},get model(){return this.brushingStateController_.model;},onModelChanged_(){this.activePanelType_=undefined;this.updateContents_();},get expanded(){this.hasAttribute('expanded');},get activePanel(){return this.activePanelContainer_.children[0];},get activePanelType(){return this.activePanelType_;},set activePanelType(panelType){if(this.model===undefined){throw new Error('Cannot activate panel without a model');}
9286let panel=undefined;if(panelType){panel=document.createElement(panelType);}
9287if(panel!==undefined&&!panel.supportsModel(this.model)){throw new Error('Cannot activate panel: does not support this model');}
9288if(this.activePanelType){Polymer.dom(this.getLabelElementForPanelType_(this.activePanelType)).removeAttribute('selected');}
9289if(this.activePanelType){this.getLabelElementForPanelType_(this.activePanelType).removeAttribute('selected');}
9290if(this.activePanel){this.activePanelContainer_.removeChild(this.activePanel);}
9291if(panelType===undefined){Polymer.dom(this).removeAttribute('expanded');this.activePanelType_=undefined;return;}
9292Polymer.dom(this.getLabelElementForPanelType_(panelType)).setAttribute('selected',true);Polymer.dom(this).setAttribute('expanded',true);Polymer.dom(this.activePanelContainer_).appendChild(panel);panel.rangeOfInterest=this.rangeOfInterest_;panel.selection=this.selection_;panel.model=this.model;this.activePanelType_=panelType;},getPanelTypeForConstructor_(constructor){for(let i=0;i<this.tabStrip_.children.length;i++){if(this.tabStrip_.children[i].panelType.constructor===constructor){return this.tabStrip_.children[i].panelType;}}},getLabelElementForPanelType_(panelType){for(let i=0;i<this.tabStrip_.children.length;i++){if(this.tabStrip_.children[i].panelType===panelType){return this.tabStrip_.children[i];}}
9293return undefined;},updateContents_(){const previouslyActivePanelType=this.activePanelType;Polymer.dom(this.tabStrip_).textContent='';const supportedPanelTypes=[];const panelTypeInfos=tr.ui.side_panel.SidePanelRegistry.getAllRegisteredTypeInfos();const unsupportedLabelEls=[];for(const panelTypeInfo of panelTypeInfos){const labelEl=document.createElement('tab-strip-label');const panel=panelTypeInfo.constructor();const panelType=panel.tagName;Polymer.dom(labelEl).textContent=panel.textLabel;labelEl.panelType=panelType;const supported=panel.supportsModel(this.model);if(this.model&&supported.supported){supportedPanelTypes.push(panelType);Polymer.dom(labelEl).setAttribute('enabled',true);labelEl.addEventListener('click',function(panelType){this.activePanelType=this.activePanelType===panelType?undefined:panelType;}.bind(this,panelType));Polymer.dom(this.tabStrip_).appendChild(labelEl);}else{if(this.activePanel){this.activePanelContainer_.removeChild(this.activePanel);}
9294this.removeAttribute('expanded');unsupportedLabelEls.push(labelEl);}}
9295for(const labelEl of unsupportedLabelEls){Polymer.dom(this.tabStrip_).appendChild(labelEl);}
9296if(previouslyActivePanelType&&supportedPanelTypes.includes(previouslyActivePanelType)){this.activePanelType=previouslyActivePanelType;Polymer.dom(this).setAttribute('expanded',true);}else{if(this.activePanel){Polymer.dom(this.activePanelContainer_).removeChild(this.activePanel);}
9297Polymer.dom(this).removeAttribute('expanded');}},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(range){if(range===undefined){throw new Error('Must not be undefined');}
9298this.rangeOfInterest_=range;if(this.activePanel){this.activePanel.rangeOfInterest=range;}}});'use strict';Polymer({is:'tr-ui-timeline-view-help-overlay',ready(){const mod=tr.isMac?'cmd ':'ctrl';const spans=Polymer.dom(this.root).querySelectorAll('span.mod');for(let i=0;i<spans.length;i++){Polymer.dom(spans[i]).textContent=mod;}}});'use strict';Polymer({is:'tr-ui-timeline-view-metadata-overlay',created(){this.metadata_=undefined;},ready(){this.$.table.tableColumns=[{title:'name',value:d=>d.name,},{title:'value',value:d=>{const gov=document.createElement('tr-ui-a-generic-object-view');gov.object=d.value;return gov;},}];},get metadata(){return this.metadata_;},set metadata(metadata){this.metadata_=metadata;this.$.table.tableRows=this.metadata_;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-v-ui-preferred-display-unit',ready(){this.preferredTimeDisplayMode_=undefined;},attached(){tr.b.Unit.didPreferredTimeDisplayUnitChange();},detached(){tr.b.Unit.didPreferredTimeDisplayUnitChange();},get preferredTimeDisplayMode(){return this.preferredTimeDisplayMode_;},set preferredTimeDisplayMode(v){if(this.preferredTimeDisplayMode_===v)return;this.preferredTimeDisplayMode_=v;tr.b.Unit.didPreferredTimeDisplayUnitChange();}});'use strict';Polymer({is:'tr-ui-timeline-view',created(){this.trackViewContainer_=undefined;this.queuedModel_=undefined;this.builtPromise_=undefined;this.doneBuilding_=undefined;},attached(){this.async(function(){this.trackViewContainer_=Polymer.dom(this).querySelector('#track_view_container');if(!this.trackViewContainer_){throw new Error('missing trackviewContainer');}
9299if(this.queuedModel_)this.updateContents_();});},ready(){this.tabIndex=0;this.titleEl_=this.$.title;this.leftControlsEl_=this.$.left_controls;this.rightControlsEl_=this.$.right_controls;this.collapsingControlsEl_=this.$.collapsing_controls;this.sidePanelContainer_=this.$.side_panel_container;this.brushingStateController_=new tr.c.BrushingStateController(this);this.findCtl_=this.$.view_find_control;this.findCtl_.controller=new tr.ui.FindController(this.brushingStateController_);this.scriptingCtl_=document.createElement('tr-ui-scripting-control');this.scriptingCtl_.controller=new tr.c.ScriptingController(this.brushingStateController_);this.sidePanelContainer_.brushingStateController=this.brushingStateController_;if(window.tr.metrics&&window.tr.metrics.sh&&window.tr.metrics.sh.SystemHealthMetric){this.railScoreSpan_=document.createElement('tr-metrics-ui-sh-system-health-span');Polymer.dom(this.rightControls).appendChild(this.railScoreSpan_);}else{this.railScoreSpan_=undefined;}
9300this.optionsDropdown_=this.$.view_options_dropdown;Polymer.dom(this.optionsDropdown_.iconElement).textContent='View Options';this.showFlowEvents_=false;Polymer.dom(this.optionsDropdown_).appendChild(tr.ui.b.createCheckBox(this,'showFlowEvents','tr.ui.TimelineView.showFlowEvents',false,'Flow events'));this.highlightVSync_=false;this.highlightVSyncCheckbox_=tr.ui.b.createCheckBox(this,'highlightVSync','tr.ui.TimelineView.highlightVSync',false,'Highlight VSync');Polymer.dom(this.optionsDropdown_).appendChild(this.highlightVSyncCheckbox_);this.initMetadataButton_();this.initConsoleButton_();this.initHelpButton_();Polymer.dom(this.collapsingControls).appendChild(this.scriptingCtl_);this.dragEl_=this.$.drag_handle;this.analysisEl_=this.$.analysis;this.analysisEl_.brushingStateController=this.brushingStateController_;this.addEventListener('requestSelectionChange',function(e){const sc=this.brushingStateController_;sc.changeSelectionFromRequestSelectionChangeEvent(e.selection);}.bind(this));this.onViewportChanged_=this.onViewportChanged_.bind(this);this.bindKeyListeners_();this.dragEl_.target=this.analysisEl_;},get globalMode(){return this.hotkeyController.globalMode;},set globalMode(globalMode){globalMode=!!globalMode;this.brushingStateController_.historyEnabled=globalMode;this.hotkeyController.globalMode=globalMode;},get hotkeyController(){return this.$.hkc;},updateDocumentFavicon(){let hue;if(!this.model){hue='blue';}else{hue=this.model.faviconHue;}
9301let faviconData=tr.ui.b.FaviconsByHue[hue];if(faviconData===undefined){faviconData=tr.ui.b.FaviconsByHue.blue;}
9302let link=Polymer.dom(document.head).querySelector('link[rel="shortcut icon"]');if(!link){link=document.createElement('link');link.rel='shortcut icon';Polymer.dom(document.head).appendChild(link);}
9303link.href=faviconData;},get showFlowEvents(){return this.showFlowEvents_;},set showFlowEvents(showFlowEvents){this.showFlowEvents_=showFlowEvents;if(!this.trackView_)return;this.trackView_.viewport.showFlowEvents=showFlowEvents;},get highlightVSync(){return this.highlightVSync_;},set highlightVSync(highlightVSync){this.highlightVSync_=highlightVSync;if(!this.trackView_)return;this.trackView_.viewport.highlightVSync=highlightVSync;},initHelpButton_(){const helpButtonEl=this.$.view_help_button;const dlg=new tr.ui.b.Overlay();dlg.title='Chrome Tracing Help';dlg.visible=false;dlg.appendChild(document.createElement('tr-ui-timeline-view-help-overlay'));function onClick(e){dlg.visible=!dlg.visible;e.stopPropagation();}
9304helpButtonEl.addEventListener('click',onClick.bind(this));},initConsoleButton_(){const toggleEl=this.$.view_console_button;function onClick(e){this.scriptingCtl_.toggleVisibility();e.stopPropagation();return false;}
9305toggleEl.addEventListener('click',onClick.bind(this));},initMetadataButton_(){const showEl=this.$.view_metadata_button;function onClick(e){const dlg=new tr.ui.b.Overlay();dlg.title='Metadata for trace';const metadataOverlay=document.createElement('tr-ui-timeline-view-metadata-overlay');metadataOverlay.metadata=this.model.metadata;Polymer.dom(dlg).appendChild(metadataOverlay);dlg.visible=true;e.stopPropagation();return false;}
9306showEl.addEventListener('click',onClick.bind(this));this.updateMetadataButtonVisibility_();},updateMetadataButtonVisibility_(){const showEl=this.$.view_metadata_button;showEl.style.display=(this.model&&this.model.metadata.length)?'':'none';},get leftControls(){return this.leftControlsEl_;},get rightControls(){return this.rightControlsEl_;},get collapsingControls(){return this.collapsingControlsEl_;},get viewTitle(){return Polymer.dom(this.titleEl_).textContent.substring(Polymer.dom(this.titleEl_).textContent.length-2);},set viewTitle(text){if(text===undefined){Polymer.dom(this.titleEl_).textContent='';this.titleEl_.hidden=true;return;}
9307this.titleEl_.hidden=false;Polymer.dom(this.titleEl_).textContent=text;},get model(){if(this.trackView_){return this.trackView_.model;}
9308return undefined;},set model(model){this.build(model);},async build(model){this.queuedModel_=model;this.builtPromise_=new Promise((resolve,reject)=>{this.doneBuilding_=resolve;});if(this.trackViewContainer_)await this.updateContents_();},get builtPromise(){return this.builtPromise_;},async updateContents_(){if(this.trackViewContainer_===undefined){throw new Error('timeline-view.updateContents_ requires trackViewContainer_');}
9309const model=this.queuedModel_;this.queuedModel_=undefined;const modelInstanceChanged=model!==this.model;const modelValid=model&&!model.bounds.isEmpty;const importWarningsEl=Polymer.dom(this.root).querySelector('#import-warnings');Polymer.dom(importWarningsEl).textContent='';if(modelInstanceChanged){if(this.railScoreSpan_){this.railScoreSpan_.model=undefined;}
9310Polymer.dom(this.trackViewContainer_).textContent='';if(this.trackView_){this.trackView_.viewport.removeEventListener('change',this.onViewportChanged_);this.trackView_.brushingStateController=undefined;this.trackView_.detach();this.trackView_=undefined;}
9311this.brushingStateController_.modelWillChange();}
9312if(modelValid&&!this.trackView_){this.trackView_=document.createElement('tr-ui-timeline-track-view');this.trackView_.timelineView=this;this.trackView.brushingStateController=this.brushingStateController_;Polymer.dom(this.trackViewContainer_).appendChild(this.trackView_);this.trackView_.viewport.addEventListener('change',this.onViewportChanged_);}
9313if(modelValid){this.trackView_.model=model;this.trackView_.viewport.showFlowEvents=this.showFlowEvents;this.trackView_.viewport.highlightVSync=this.highlightVSync;if(this.railScoreSpan_){this.railScoreSpan_.model=model;}
9314this.$.display_unit.preferredTimeDisplayMode=model.intrinsicTimeUnit;}
9315if(model){for(const warning of model.importWarningsThatShouldBeShownToUser){importWarningsEl.addMessage(`Import Warning: ${warning.type}: ${warning.message}`,[{buttonText:'Dismiss',onClick(event,infobar){infobar.visible=false;}}]);}}
9316if(modelInstanceChanged){this.updateMetadataButtonVisibility_();this.brushingStateController_.modelDidChange();this.onViewportChanged_();}
9317this.doneBuilding_();},get brushingStateController(){return this.brushingStateController_;},get trackView(){return this.trackView_;},get settings(){if(!this.settings_){this.settings_=new tr.b.Settings();}
9318return this.settings_;},set focusElement(value){throw new Error('This is deprecated. Please set globalMode to true.');},bindKeyListeners_(){const hkc=this.hotkeyController;hkc.addHotKey(new tr.ui.b.HotKey({eventType:'keypress',keyCode:'`'.charCodeAt(0),useCapture:true,thisArg:this,callback(e){this.scriptingCtl_.toggleVisibility();if(!this.scriptingCtl_.hasFocus){this.focus();}
9319e.stopPropagation();}}));hkc.addHotKey(new tr.ui.b.HotKey({eventType:'keypress',keyCode:'/'.charCodeAt(0),useCapture:true,thisArg:this,callback(e){if(this.scriptingCtl_.hasFocus)return;if(this.findCtl_.hasFocus){this.focus();}else{this.findCtl_.focus();}
9320e.preventDefault();e.stopPropagation();}}));hkc.addHotKey(new tr.ui.b.HotKey({eventType:'keypress',keyCode:'?'.charCodeAt(0),useCapture:false,thisArg:this,callback(e){this.$.view_help_button.click();e.stopPropagation();}}));hkc.addHotKey(new tr.ui.b.HotKey({eventType:'keypress',keyCode:'v'.charCodeAt(0),useCapture:false,thisArg:this,callback(e){this.toggleHighlightVSync_();e.stopPropagation();}}));},onViewportChanged_(e){const spc=this.sidePanelContainer_;if(!this.trackView_){spc.rangeOfInterest.reset();return;}
9321const vr=this.trackView_.viewport.interestRange.asRangeObject();if(!spc.rangeOfInterest.equals(vr)){spc.rangeOfInterest=vr;}
9322if(this.railScoreSpan_&&this.model){this.railScoreSpan_.model=this.model;}},toggleHighlightVSync_(){this.highlightVSyncCheckbox_.checked=!this.highlightVSyncCheckbox_.checked;},setFindCtlText(string){this.findCtl_.setText(string);}});'use strict';tr.exportTo('tr.ui.b',function(){function Row(title,data,groupingKeyFuncs,rowStatsConstructor){this.title=title;this.data_=data;if(groupingKeyFuncs===undefined){groupingKeyFuncs=[];}
9323this.groupingKeyFuncs_=groupingKeyFuncs;this.rowStatsConstructor_=rowStatsConstructor;this.subRowsBuilt_=false;this.subRows_=undefined;this.rowStats_=undefined;}
9324Row.prototype={getCurrentGroupingKeyFunc_(){if(this.groupingKeyFuncs_.length===0)return undefined;return this.groupingKeyFuncs_[0];},get data(){return this.data_;},get rowStats(){if(this.rowStats_===undefined){this.rowStats_=new this.rowStatsConstructor_(this);}
9325return this.rowStats_;},rebuildSubRowsIfNeeded_(){if(this.subRowsBuilt_)return;this.subRowsBuilt_=true;const groupingKeyFunc=this.getCurrentGroupingKeyFunc_();if(groupingKeyFunc===undefined){this.subRows_=undefined;return;}
9326const dataByKey={};let hasValues=false;this.data_.forEach(function(datum){const key=groupingKeyFunc(datum);hasValues=hasValues||(key!==undefined);if(dataByKey[key]===undefined){dataByKey[key]=[];}
9327dataByKey[key].push(datum);});if(!hasValues){this.subRows_=undefined;return;}
9328this.subRows_=[];for(const key in dataByKey){const row=new Row(key,dataByKey[key],this.groupingKeyFuncs_.slice(1),this.rowStatsConstructor_);this.subRows_.push(row);}},get isExpanded(){return(this.subRows&&(this.subRows.length>0)&&(this.subRows.length<5));},get subRows(){this.rebuildSubRowsIfNeeded_();return this.subRows_;}};Polymer({is:'tr-ui-b-grouping-table',created(){this.dataToGroup_=undefined;this.groupBy_=undefined;this.rowStatsConstructor_=undefined;},get tableColumns(){return this.$.table.tableColumns;},set tableColumns(tableColumns){this.$.table.tableColumns=tableColumns;},get tableRows(){return this.$.table.tableRows;},get sortColumnIndex(){return this.$.table.sortColumnIndex;},set sortColumnIndex(sortColumnIndex){this.$.table.sortColumnIndex=sortColumnIndex;},get sortDescending(){return this.$.table.sortDescending;},set sortDescending(sortDescending){this.$.table.sortDescending=sortDescending;},get selectionMode(){return this.$.table.selectionMode;},set selectionMode(selectionMode){this.$.table.selectionMode=selectionMode;},get rowHighlightStyle(){return this.$.table.rowHighlightStyle;},set rowHighlightStyle(rowHighlightStyle){this.$.table.rowHighlightStyle=rowHighlightStyle;},get cellHighlightStyle(){return this.$.table.cellHighlightStyle;},set cellHighlightStyle(cellHighlightStyle){this.$.table.cellHighlightStyle=cellHighlightStyle;},get selectedColumnIndex(){return this.$.table.selectedColumnIndex;},set selectedColumnIndex(selectedColumnIndex){this.$.table.selectedColumnIndex=selectedColumnIndex;},get selectedTableRow(){return this.$.table.selectedTableRow;},set selectedTableRow(selectedTableRow){this.$.table.selectedTableRow=selectedTableRow;},get groupBy(){return this.groupBy_;},set groupBy(groupBy){this.groupBy_=groupBy;this.updateContents_();},get dataToGroup(){return this.dataToGroup_;},set dataToGroup(dataToGroup){this.dataToGroup_=dataToGroup;this.updateContents_();},get rowStatsConstructor(){return this.rowStatsConstructor_;},set rowStatsConstructor(rowStatsConstructor){this.rowStatsConstructor_=rowStatsConstructor;this.updateContents_();},rebuild(){this.$.table.rebuild();},updateContents_(){const groupBy=this.groupBy_||[];const dataToGroup=this.dataToGroup_||[];const rowStatsConstructor=this.rowStatsConstructor_||function(){};const superRow=new Row('',dataToGroup,groupBy,rowStatsConstructor);this.$.table.tableRows=superRow.subRows||[];}});return{};});'use strict';tr.exportTo('tr.ui.b',function(){const THIS_DOC=document.currentScript.ownerDocument;Polymer({is:'tr-ui-b-grouping-table-groupby-picker-group',created(){this.picker_=undefined;this.group_=undefined;},get picker(){return this.picker_;},set picker(picker){this.picker_=picker;},get group(){return this.group_;},set group(g){this.group_=g;this.$.label.textContent=g.label;},get enabled(){return this.$.enabled.checked;},set enabled(enabled){this.$.enabled.checked=enabled;if(!this.enabled){this.$.left.style.display='none';this.$.right.style.display='none';}},set isFirst(isFirst){this.$.left.style.display=(!this.enabled||isFirst)?'none':'inline';},set isLast(isLast){this.$.right.style.display=(!this.enabled||isLast)?'none':'inline';},moveLeft_(){this.picker.moveLeft_(this);},moveRight_(){this.picker.moveRight_(this);},onEnableChanged_(){if(!this.enabled){this.$.left.style.display='none';this.$.right.style.display='none';}
9329this.picker.onEnableChanged_(this);}});Polymer({is:'tr-ui-b-grouping-table-groupby-picker',created(){this.settingsKey_=undefined;},get settingsKey(){return this.settingsKey_;},set settingsKey(settingsKey){this.settingsKey_=settingsKey;if(this.$.container.children.length){this.restoreSetting_();}},restoreSetting_(){if(this.settingsKey_===undefined)return;this.currentGroupKeys=tr.b.Settings.get(this.settingsKey_,this.currentGroupKeys);},get possibleGroups(){return[...this.$.container.children].map(groupEl=>groupEl.group);},set possibleGroups(possibleGroups){Polymer.dom(this.$.container).textContent='';for(let i=0;i<possibleGroups.length;++i){const groupEl=document.createElement('tr-ui-b-grouping-table-groupby-picker-group');groupEl.picker=this;groupEl.group=possibleGroups[i];Polymer.dom(this.$.container).appendChild(groupEl);}
9330this.restoreSetting_();this.updateFirstLast_();},updateFirstLast_(){const groupEls=this.$.container.children;const enabledGroupEls=[...groupEls].filter(el=>el.enabled);for(let i=0;i<enabledGroupEls.length;++i){enabledGroupEls[i].isFirst=i===0;enabledGroupEls[i].isLast=i===enabledGroupEls.length-1;}},get currentGroupKeys(){return this.currentGroups.map(group=>group.key);},get currentGroups(){const groups=[];for(const groupEl of this.$.container.children){if(groupEl.enabled){groups.push(groupEl.group);}}
9331return groups;},set currentGroupKeys(newKeys){if(!tr.b.compareArrays(this.currentGroupKeys,newKeys,(x,y)=>x.localeCompare(y))){return;}
9332const possibleGroups=new Map();for(const group of this.possibleGroups){possibleGroups.set(group.key,group);}
9333const groupEls=this.$.container.children;let i=0;for(i=0;i<newKeys.length;++i){const group=possibleGroups.get(newKeys[i]);if(group===undefined){newKeys.splice(i,1);--i;continue;}
9334groupEls[i].group=group;groupEls[i].enabled=true;possibleGroups.delete(newKeys[i]);}
9335for(const group of possibleGroups.values()){groupEls[i].group=group;groupEls[i].enabled=false;++i;}
9336this.updateFirstLast_();this.onCurrentGroupsChanged_();},moveLeft_(groupEl){const reference=groupEl.previousSibling;Polymer.dom(this.$.container).removeChild(groupEl);Polymer.dom(this.$.container).insertBefore(groupEl,reference);this.updateFirstLast_();if(groupEl.enabled){this.onCurrentGroupsChanged_();}},moveRight_(groupEl){const reference=groupEl.nextSibling.nextSibling;Polymer.dom(this.$.container).removeChild(groupEl);if(reference){Polymer.dom(this.$.container).insertBefore(groupEl,reference);}else{Polymer.dom(this.$.container).appendChild(groupEl);}
9337this.updateFirstLast_();if(groupEl.enabled){this.onCurrentGroupsChanged_();}},onCurrentGroupsChanged_(){this.dispatchEvent(new tr.b.Event('current-groups-changed'));tr.b.Settings.set(this.settingsKey_,this.currentGroupKeys);},onEnableChanged_(groupEl){this.updateFirstLast_();this.onCurrentGroupsChanged_();}});return{};});'use strict';(function(){Polymer({is:'tr-ui-sp-file-size-stats-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready(){this.model_=undefined;this.selection_=new tr.model.EventSet();this.$.picker.settingsKey='tr-ui-sp-file-size-stats-side-panel-picker';this.$.picker.possibleGroups=[{key:'phase',label:'Event Type',dataFn(eventStat){return eventStat.phase;}},{key:'category',label:'Category',dataFn(eventStat){return eventStat.category;}},{key:'title',label:'Title',dataFn(eventStat){return eventStat.title;}}];if(this.$.picker.currentGroupKeys.length===0){this.$.picker.currentGroupKeys=['phase','title'];}
9338this.$.picker.addEventListener('current-groups-changed',this.updateContents_.bind(this));},get textLabel(){return'File Size Stats';},supportsModel(m){if(!m){return{supported:false,reason:'No stats were collected for this file.'};}
9339if(m.stats.allTraceEventStats.length===0){return{supported:false,reason:'No stats were collected for this file.'};}
9340return{supported:true};},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;},createColumns_(stats){const columns=[{title:'Title',value(row){const titleEl=document.createElement('span');Polymer.dom(titleEl).textContent=row.title;titleEl.style.textOverflow='ellipsis';return titleEl;},cmp(a,b){return a.title.localeCompare(b.title);},width:'400px'},{title:'Num Events',align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,value(row){return row.rowStats.numEvents;},cmp(a,b){return a.rowStats.numEvents-b.rowStats.numEvents;},width:'80px'}];if(stats&&stats.hasEventSizesinBytes){columns.push({title:'Bytes',value(row){const value=new tr.b.Scalar(tr.b.Unit.byName.sizeInBytes,row.rowStats.totalEventSizeinBytes);const spanEl=tr.v.ui.createScalarSpan(value);return spanEl;},cmp(a,b){return a.rowStats.totalEventSizeinBytes-
9341b.rowStats.totalEventSizeinBytes;},width:'80px'});}
9342return columns;},updateContents_(){const table=this.$.table;const columns=this.createColumns_(this.model.stats);table.rowStatsConstructor=function ModelStatsRowStats(row){const sum=tr.b.math.Statistics.sum(row.data,function(x){return x.numEvents;});const totalEventSizeinBytes=tr.b.math.Statistics.sum(row.data,x=>x.totalEventSizeinBytes);return{numEvents:sum,totalEventSizeinBytes};};table.tableColumns=columns;table.sortColumnIndex=1;table.sortDescending=true;table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;table.groupBy=this.$.picker.currentGroups.map(function(group){return group.dataFn;});if(!this.model){table.dataToGroup=[];}else{table.dataToGroup=this.model.stats.allTraceEventStats;}
9343this.$.table.rebuild();}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-sp-file-size-stats-side-panel');});})();'use strict';tr.exportTo('tr.mre',function(){function Failure(job,functionHandleString,traceCanonicalUrl,failureTypeName,description,stack){this.job=job;this.functionHandleString=functionHandleString;this.traceCanonicalUrl=traceCanonicalUrl;this.failureTypeName=failureTypeName;this.description=description;this.stack=stack;}
9344Failure.prototype={asDict(){return{function_handle_string:this.functionHandleString,trace_canonical_url:this.traceCanonicalUrl,type:this.failureTypeName,description:this.description,stack:this.stack};}};Failure.fromDict=function(failureDict){return new Failure(undefined,failureDict.function_handle_string,failureDict.trace_canonical_url,failureDict.type,failureDict.description,failureDict.stack);};return{Failure,};});'use strict';tr.exportTo('tr.mre',function(){const FunctionRegistry={allFunctions_:[],allFunctionsByName_:{},get allFunctions(){return this.allFunctions_;},get allFunctionsByName(){return this.allFunctionsByName_;}};FunctionRegistry.getFunction=function(name){return this.allFunctionsByName_[name];};FunctionRegistry.register=function(func){if(func.name===''){throw new Error('Registered functions must not be anonymous');}
9345if(this.allFunctionsByName[func.name]!==undefined){throw new Error('Function named '+func.name+'is already registered.');}
9346this.allFunctionsByName[func.name]=func;this.allFunctions.push(func);};function ModuleToLoad(href,filename){if((href!==undefined)?(filename!==undefined):(filename===undefined)){throw new Error('ModuleToLoad must specify exactly one of href or '+'filename');}
9347this.href=href;this.filename=filename;}
9348ModuleToLoad.prototype={asDict(){if(this.href!==undefined){return{'href':this.href};}
9349return{'filename':this.filename};},toString(){if(this.href!==undefined){return'ModuleToLoad(href="'+this.href+'")';}
9350return'ModuleToLoad(filename="'+this.filename+'")';}};ModuleToLoad.fromDict=function(moduleDict){return new ModuleToLoad(moduleDict.href,moduleDict.filename);};function FunctionHandle(modulesToLoad,functionName,opt_options){if(!(modulesToLoad instanceof Array)){throw new Error('modulesToLoad in FunctionHandle must be an array');}
9351if(typeof(functionName)!=='string'){throw new Error('functionName in FunctionHandle must be a string');}
9352this.modulesToLoad=modulesToLoad;this.functionName=functionName;this.options_=opt_options;}
9353FunctionHandle.prototype={get options(){return this.options_;},asDict(){return{'modules_to_load':this.modulesToLoad.map(function(m){return m.asDict();}),'function_name':this.functionName,'options':this.options_};},asUserFriendlyString(){const parts=this.modulesToLoad.map(mtl=>mtl.filename);parts.push(this.functionName);parts.push(JSON.stringify(this.options_));return parts.join(',');},hasHrefs(){for(const module in this.modulesToLoad){if(this.modulesToLoad[module].href!==undefined){return true;}}
9354return false;},load(){if(this.hasHrefs()){const err=new Error('FunctionHandle named '+this.functionName+' specifies hrefs, which cannot be loaded.');err.name='FunctionLoadingError';throw err;}
9355for(const module in this.modulesToLoad){const filename=this.modulesToLoad[module].filename;try{HTMLImportsLoader.loadHTMLFile(filename);}catch(err){err.name='FunctionLoadingError';throw err;}}
9356const func=FunctionRegistry.getFunction(this.functionName);if(func===undefined){const err=new Error('No registered function named '+this.functionName);err.name='FunctionNotDefinedError';throw err;}
9357return func;},toString(){const modulesToLoadStr=this.modulesToLoad.map(function(module){return module.toString();});return'FunctionHandle(modulesToLoad=['+modulesToLoadStr+'], '+'functionName="'+this.functionName+'", options="'+
9358JSON.stringify(this.options_)+'")';}};FunctionHandle.loadFromFilename_=function(filename){try{const numFunctionsBefore=FunctionRegistry.allFunctions.length;HTMLImportsLoader.loadHTMLFile(filename);}catch(err){err.name='FunctionLoadingError';throw err;}
9359const numFunctionsNow=FunctionRegistry.allFunctions.length;if(numFunctionsNow!==(numFunctionsBefore+1)){const err=new Error(filename+' didn\'t call FunctionRegistry.register');err.name='FunctionNotDefinedError';throw err;}
9360return FunctionRegistry.allFunctions[numFunctionsNow-1];};FunctionHandle.fromDict=function(handleDict){const options=handleDict.options;let modulesToLoad;if(handleDict.modules_to_load!==undefined){modulesToLoad=handleDict.modules_to_load.map(function(module){return ModuleToLoad.fromDict(module);});}
9361return new FunctionHandle(modulesToLoad,handleDict.function_name,options);};return{FunctionHandle,ModuleToLoad,FunctionRegistry,};});'use strict';tr.exportTo('tr.metrics',function(){function runMetrics(model,options,addFailureCb){if(options===undefined){throw new Error('Options are required.');}
9362const metricNames=options.metrics;if(!metricNames){throw new Error('Metric names should be specified.');}
9363const categories=getTraceCategories(model);const histograms=new tr.v.HistogramSet();for(const metricName of metricNames){const metric=tr.metrics.MetricRegistry.findTypeInfoWithName(metricName);if(metric===undefined){throw new Error(`"${metricName}" is not a registered metric.`);}
9364validateTraceCategories(metric.metadata.requiredCategories,categories);try{metric.constructor(histograms,model,options);}catch(e){const err=tr.b.normalizeException(e);addFailureCb(new tr.mre.Failure(undefined,'metricMapFunction',model.canonicalUrl,err.typeName,err.message,err.stack));}}
9365validateDiagnosticNames(histograms);return histograms;}
9366function getTraceCategories(model){for(const metadata of model.metadata){let config;if(metadata.name==='TraceConfig'&&metadata.value){config=metadata.value;}
9367if(metadata.name==='metadata'&&metadata.value&&metadata.value['trace-config']&&metadata.value['trace-config']!=='__stripped__'){config=JSON.parse(metadata.value['trace-config']);}
9368if(config){return{excluded:config.excluded_categories||[],included:config.included_categories||[],};}}}
9369function validateTraceCategories(requiredCategories,categories){if(!requiredCategories)return;if(!categories)throw new Error('Missing trace config metadata');for(const cat of requiredCategories){const isDisabledByDefault=(cat.indexOf('disabled-by-default')===0);let missing=false;if(isDisabledByDefault){if(!categories.included.includes(cat)){missing=true;}}else if(categories.excluded.includes(cat)){missing=true;}
9370if(missing){throw new Error(`Trace is missing required category "${cat}"`);}}}
9371function validateDiagnosticNames(histograms){for(const hist of histograms){for(const name of hist.diagnostics.keys()){if(tr.v.d.RESERVED_NAMES_SET.has(name)){throw new Error(`Illegal diagnostic name "${name}" on Histogram "${hist.name}"`);}}}}
9372function addTelemetryInfo(histograms,model){for(const metadata of model.metadata){if(!metadata.value||!metadata.value.telemetry)continue;const traceUrls=metadata.value.telemetry[tr.v.d.RESERVED_NAMES.TRACE_URLS];if(traceUrls&&model.canonicalUrl!==traceUrls[0]){throw new Error(`canonicalUrl "${model.canonicalUrl}" != `+`traceUrl "${traceUrls[0]}"`);}
9373for(const[name,value]of Object.entries(metadata.value.telemetry)){const type=tr.v.d.RESERVED_NAMES_TO_TYPES.get(name);if(type===undefined){throw new Error(`Unexpected telemetry.${name}`);}
9374histograms.addSharedDiagnosticToAllHistograms(name,new type(value));}}}
9375function metricMapFunction(result,model,options){const histograms=runMetrics(model,options,result.addFailure.bind(result));addTelemetryInfo(histograms,model);result.addPair('histograms',histograms.asDicts());const scalarDicts=[];for(const value of histograms){for(const[statName,scalar]of value.statisticsScalars){scalarDicts.push({name:value.name+'_'+statName,numeric:scalar.asDict(),description:value.description,});}}
9376result.addPair('scalars',scalarDicts);}
9377tr.mre.FunctionRegistry.register(metricMapFunction);return{metricMapFunction,runMetrics,};});'use strict';tr.exportTo('tr.mre',function(){class MreResult{constructor(failures,pairs){if(failures===undefined){failures=[];}
9378if(pairs===undefined){pairs={};}
9379this.failures=failures;this.pairs=pairs;}
9380addFailure(failure){this.failures.push(failure);}
9381addPair(key,value){if(key in this.pairs){throw new Error('Key '+key+' already exists in result.');}
9382this.pairs[key]=value;}
9383asDict(){const d={pairs:this.pairs};if(this.failures){d.failures=this.failures.map(function(f){return f.asDict();});}
9384return d;}
9385hadFailures(){return this.failures.length>0;}
9386static fromDict(resultDict){const failures=(resultDict.failures!==undefined)?resultDict.failures.map(tr.mre.Failure.fromDict):undefined;const pairs=resultDict.pairs;return new MreResult(failures,pairs);}}
9387return{MreResult,};});'use strict';tr.exportTo('tr.ui',function(){class NullBrushingStateController extends tr.c.BrushingStateController{constructor(){super(undefined);this.parentController=undefined;}
9388dispatchChangeEvent_(){if(this.parentController)this.parentController.dispatchChangeEvent_();}
9389get model(){if(!this.parentController)return undefined;return this.parentController.model;}
9390get trackView(){if(!this.parentController)return undefined;return this.parentController.trackView;}
9391get viewport(){if(!this.parentController)return undefined;return this.parentController.viewport;}
9392get historyEnabled(){if(!this.parentController)return undefined;return this.parentController.historyEnabled;}
9393set historyEnabled(historyEnabled){if(this.parentController){this.parentController.historyEnabled=historyEnabled;}}
9394modelWillChange(){if(this.parentController)this.parentController.modelWillChange();}
9395modelDidChange(){if(this.parentController)this.parentController.modelDidChange();}
9396onUserInitiatedSelectionChange_(){if(this.parentController){this.parentController.onUserInitiatedSelectionChange_();}}
9397onPopState_(e){if(this.parentController)this.parentController.onPopState_(e);}
9398get selection(){if(!this.parentController)return undefined;return this.parentController.selection;}
9399get findMatches(){if(!this.parentController)return undefined;return this.parentController.findMatches;}
9400get selectionOfInterest(){if(!this.parentController)return undefined;return this.parentController.selectionOfInterest;}
9401get currentBrushingState(){if(!this.parentController)return undefined;return this.parentController.currentBrushingState;}
9402set currentBrushingState(newBrushingState){if(this.parentController){this.parentController.currentBrushingState=newBrushingState;}}
9403addAllEventsMatchingFilterToSelectionAsTask(filter,selection){if(this.parentController){this.parentController.addAllEventsMatchingFilterToSelectionAsTask(filter,selection);}}
9404findTextChangedTo(allPossibleMatches){if(this.parentController){this.parentController.findTextChangedTo(allPossibleMatches);}}
9405findFocusChangedTo(currentFocus){if(this.parentController){this.parentController.findFocusChangedTo(currentFocus);}}
9406findTextCleared(){if(this.parentController){this.parentController.findTextCleared();}}
9407uiStateFromString(string){if(this.parentController){this.parentController.uiStateFromString(string);}}
9408navToPosition(uiState,showNavLine){if(this.parentController){this.parentController.navToPosition(uiState,showNavLine);}}
9409changeSelectionFromTimeline(selection){if(this.parentController){this.parentController.changeSelectionFromTimeline(selection);}}
9410showScriptControlSelection(selection){if(this.parentController){this.parentController.showScriptControlSelection(selection);}}
9411changeSelectionFromRequestSelectionChangeEvent(selection){if(this.parentController){this.parentController.changeSelectionFromRequestSelectionChangeEvent(selection);}}
9412changeAnalysisViewRelatedEvents(eventSet){if(this.parentController&&(eventSet instanceof tr.model.EventSet)){this.parentController.changeAnalysisViewRelatedEvents(eventSet);}}
9413changeAnalysisLinkHoveredEvents(eventSet){if(this.parentController&&(eventSet instanceof tr.model.EventSet)){this.parentController.changeAnalysisLinkHoveredEvents(eventSet);}}
9414getViewSpecificBrushingState(viewId){if(this.parentController){this.parentController.getViewSpecificBrushingState(viewId);}}
9415changeViewSpecificBrushingState(viewId,newState){if(this.parentController){this.parentController.changeViewSpecificBrushingState(viewId,newState);}}}
9416return{NullBrushingStateController,};});'use strict';tr.exportTo('tr.v',function(){const IGNORE_GROUPING_KEYS=['name','storyTags',];class CSVBuilder{constructor(histograms){this.histograms_=histograms;this.table_=[];this.statisticsNames_=new Set();this.groupings_=[];}
9417build(){this.prepare_();this.buildHeader_();this.buildTable_();}
9418prepare_(){for(const[key,grouping]of tr.v.HistogramGrouping.BY_KEY){if(IGNORE_GROUPING_KEYS.includes(key))continue;this.groupings_.push(grouping);}
9419this.groupings_.push(new tr.v.GenericSetGrouping(tr.v.d.RESERVED_NAMES.TRACE_URLS));this.groupings_.sort((a,b)=>a.key.localeCompare(b.key));for(const hist of this.histograms_){for(const name of hist.statisticsNames){this.statisticsNames_.add(name);}}
9420this.statisticsNames_=Array.from(this.statisticsNames_);this.statisticsNames_.sort();}
9421buildHeader_(){const header=['name','unit'];for(const name of this.statisticsNames_){header.push(name);}
9422for(const grouping of this.groupings_){header.push(grouping.key);}
9423this.table_.push(header);}
9424buildTable_(){for(const hist of this.histograms_){const row=[hist.name,hist.unit.unitString];this.table_.push(row);for(const name of this.statisticsNames_){const stat=hist.getStatisticScalar(name);if(stat){row.push(stat.value);}else{row.push('');}}
9425for(const grouping of this.groupings_){row.push(grouping.callback(hist));}}}
9426toString(){let str='';for(const row of this.table_){for(let i=0;i<row.length;++i){if(i>0){str+=',';}
9427let cell=''+row[i];cell=cell.replace(/\n/g,' ');if(cell.indexOf(',')>=0||cell.indexOf('"')>=0){cell='"'+cell.replace(/"/g,'""')+'"';}
9428str+=cell;}
9429str+='\n';}
9430return str;}}
9431return{CSVBuilder,};});'use strict';tr.exportTo('tr.v',function(){const getDisplayLabel=tr.v.HistogramGrouping.DISPLAY_LABEL.callback;const DEFAULT_POSSIBLE_GROUPS=[];DEFAULT_POSSIBLE_GROUPS.push(new tr.v.HistogramGrouping(tr.v.HistogramGrouping.HISTOGRAM_NAME.key,h=>h.shortName||h.name));const EXCLUDED_GROUPING_KEYS=[tr.v.HistogramGrouping.HISTOGRAM_NAME.key,tr.v.HistogramGrouping.DISPLAY_LABEL.key,];for(const group of tr.v.HistogramGrouping.BY_KEY.values()){if(EXCLUDED_GROUPING_KEYS.includes(group.key))continue;DEFAULT_POSSIBLE_GROUPS.push(group);}
9432class HistogramParameterCollector{constructor(){this.statisticNames_=new Set(['avg']);this.labelsToStartTimes_=new Map();this.keysToGroupings_=new Map(DEFAULT_POSSIBLE_GROUPS.map(g=>[g.key,g]));this.keysToValues_=new Map(DEFAULT_POSSIBLE_GROUPS.map(g=>[g.key,new Set()]));this.keysToValues_.delete(tr.v.HistogramGrouping.HISTOGRAM_NAME.key);}
9433process(histograms){const allStoryTags=new Set();let maxSampleCount=0;for(const hist of histograms){maxSampleCount=Math.max(maxSampleCount,hist.numValues);for(const statName of hist.statisticsNames){this.statisticNames_.add(statName);}
9434let startTime=hist.diagnostics.get(tr.v.d.RESERVED_NAMES.BENCHMARK_START);if(startTime!==undefined)startTime=startTime.minDate.getTime();const displayLabel=getDisplayLabel(hist);if(this.labelsToStartTimes_.has(displayLabel)){startTime=Math.min(startTime,this.labelsToStartTimes_.get(displayLabel));}
9435this.labelsToStartTimes_.set(displayLabel,startTime);for(const[groupingKey,values]of this.keysToValues_){const grouping=this.keysToGroupings_.get(groupingKey);const value=grouping.callback(hist);if(!value)continue;values.add(value);if(values.size>1){this.keysToValues_.delete(groupingKey);}}
9436const storyTags=hist.diagnostics.get(tr.v.d.RESERVED_NAMES.STORY_TAGS);for(const tag of(storyTags||[])){allStoryTags.add(tag);}}
9437tr.b.Timing.instant('HistogramParameterCollector','maxSampleCount',maxSampleCount);for(const tagGrouping of tr.v.HistogramGrouping.buildFromTags(allStoryTags,tr.v.d.RESERVED_NAMES.STORY_TAGS)){const values=new Set();for(const hist of histograms){values.add(tagGrouping.callback(hist));}
9438if(values.size>1){this.keysToGroupings_.set(tagGrouping.key,tagGrouping);this.keysToValues_.set(tagGrouping.key,values);}}}
9439get statisticNames(){return Array.from(this.statisticNames_);}
9440get labels(){const displayLabels=Array.from(this.labelsToStartTimes_.keys());displayLabels.sort((x,y)=>this.labelsToStartTimes_.get(x)-this.labelsToStartTimes_.get(y));return displayLabels;}
9441get possibleGroupings(){for(const[key,values]of this.keysToValues_){if(values.size>=2)continue;this.keysToGroupings_.delete(key);}
9442return Array.from(this.keysToGroupings_.values());}}
9443return{HistogramParameterCollector,};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-histogram-set-controls-export',exportRawCsv_(){this.export_(false,'csv');},exportRawJson_(){this.export_(false,'json');},exportMergedCsv_(){this.export_(true,'csv');},exportMergedJson_(){this.export_(true,'json');},export_(merged,format){tr.b.dispatchSimpleEvent(this,'export',true,true,{merged,format});},});return{};});'use strict';tr.exportTo('tr.v.ui',function(){const ALPHA_OPTIONS=[];for(let i=1;i<10;++i)ALPHA_OPTIONS.push(i*1e-3);for(let i=1;i<10;++i)ALPHA_OPTIONS.push(i*1e-2);ALPHA_OPTIONS.push(0.1);Polymer({is:'tr-v-ui-histogram-set-controls',properties:{searchQuery:{type:String,value:'',observer:'onUserChange_',},showAll:{type:Boolean,value:false,observer:'onUserChange_',},referenceDisplayLabel:{type:String,value:'',observer:'onUserChange_',},displayStatisticName:{type:String,value:'',observer:'onUserChange_',},alphaString:{type:String,computed:'getAlphaString_(alphaIndex)',},alphaIndex:{type:Number,value:9,observer:'onUserChange_',},},created(){this.viewState_=undefined;this.rowListener_=this.onRowViewStateUpdate_.bind(this);this.baseStatisticNames_=[];this.isInOnViewStateUpdate_=false;},ready(){this.$.picker.addEventListener('current-groups-changed',this.onGroupsChanged_.bind(this));},get viewState(){return this.viewState_;},set viewState(vs){if(this.viewState_){throw new Error('viewState must be set exactly once.');}
9444this.viewState_=vs;this.viewState.addUpdateListener(this.onViewStateUpdate_.bind(this));},async onUserChange_(){if(!this.viewState)return;if(this.isInOnViewStateUpdate_)return;const marks=[];if(this.searchQuery!==this.viewState.searchQuery){marks.push(tr.b.Timing.mark('histogram-set-controls','search'));}
9445if(this.showAll!==this.viewState.showAll){marks.push(tr.b.Timing.mark('histogram-set-controls','showAll'));}
9446if(this.referenceDisplayLabel!==this.viewState.referenceDisplayLabel){marks.push(tr.b.Timing.mark('histogram-set-controls','referenceColumn'));}
9447if(this.displayStatisticName!==this.viewState.displayStatisticName){marks.push(tr.b.Timing.mark('histogram-set-controls','statistic'));}
9448if(parseInt(this.alphaIndex)!==this.getAlphaIndexFromViewState_()){marks.push(tr.b.Timing.mark('histogram-set-controls','alpha'));}
9449this.$.clear_search.style.visibility=this.searchQuery?'visible':'hidden';let displayStatisticName=this.displayStatisticName;if(this.viewState.referenceDisplayLabel===''&&this.referenceDisplayLabel!==''&&this.baseStatisticNames.length){displayStatisticName=`%${tr.v.DELTA}${this.displayStatisticName}`;}
9450if(this.referenceDisplayLabel===''&&this.viewState.referenceDisplayLabel!==''&&this.baseStatisticNames.length){const deltaIndex=displayStatisticName.indexOf(tr.v.DELTA);if(deltaIndex>=0){displayStatisticName=displayStatisticName.slice(deltaIndex+1);}else if(!this.baseStatisticNames.includes(displayStatisticName)){displayStatisticName='avg';}}
9451await this.viewState.update({searchQuery:this.searchQuery,showAll:this.showAll,referenceDisplayLabel:this.referenceDisplayLabel,displayStatisticName,alpha:ALPHA_OPTIONS[this.alphaIndex],});if(this.referenceDisplayLabel&&this.statisticNames.length===this.baseStatisticNames.length){this.statisticNames=this.baseStatisticNames.concat(tr.v.Histogram.getDeltaStatisticsNames(this.baseStatisticNames));}else if(!this.referenceDisplayLabel&&this.statisticNames.length>this.baseStatisticNames.length){this.statisticNames=this.baseStatisticNames;}
9452for(const mark of marks)mark.end();},onViewStateUpdate_(event){this.isInOnViewStateUpdate_=true;if(event.delta.searchQuery){this.searchQuery=this.viewState.searchQuery;}
9453if(event.delta.showAll)this.showAll=this.viewState.showAll;if(event.delta.displayStatisticName){this.displayStatisticName=this.viewState.displayStatisticName;}
9454if(event.delta.referenceDisplayLabel){this.referenceDisplayLabel=this.viewState.referenceDisplayLabel;this.$.alpha.style.display=this.referenceDisplayLabel?'inline':'';}
9455if(event.delta.groupings){this.$.picker.currentGroupKeys=this.viewState.groupings.map(g=>g.key);}
9456if(event.delta.tableRowStates){for(const row of tr.v.ui.HistogramSetTableRowState.walkAll(this.viewState.tableRowStates.values())){row.addUpdateListener(this.rowListener_);}
9457const anyShowing=this.anyOverviewCharts_;this.$.hide_overview.style.display=anyShowing?'inline':'none';this.$.show_overview.style.display=anyShowing?'none':'inline';}
9458if(event.delta.alpha){this.alphaIndex=this.getAlphaIndexFromViewState_();}
9459this.isInOnViewStateUpdate_=false;this.onUserChange_();},onRowViewStateUpdate_(event){if(event.delta.isOverviewed){const anyShowing=event.delta.isOverviewed.current||this.anyOverviewCharts_;this.$.hide_overview.style.display=anyShowing?'inline':'none';this.$.show_overview.style.display=anyShowing?'none':'inline';}
9460if(event.delta.subRows){for(const subRow of event.delta.subRows.previous){subRow.removeUpdateListener(this.rowListener_);}
9461for(const subRow of event.delta.subRows.current){subRow.addUpdateListener(this.rowListener_);}}},onGroupsChanged_(){if(this.$.picker.currentGroups.length===0&&this.$.picker.possibleGroups.length>0){this.$.picker.currentGroupKeys=[this.$.picker.possibleGroups[0].key];}
9462this.viewState.groupings=this.$.picker.currentGroups;},set showAllEnabled(enable){if(!enable)this.$.show_all.checked=true;this.$.show_all.disabled=!enable;},set possibleGroupings(groupings){this.$.picker.possibleGroups=groupings;this.$.picker.style.display=(groupings.length<2)?'none':'block';this.onGroupsChanged_();},set displayLabels(labels){this.$.reference_display_label.style.display=(labels.length<2)?'none':'inline';while(this.$.reference_display_label.children.length>1){this.$.reference_display_label.removeChild(this.$.reference_display_label.lastChild);}
9463for(const displayLabel of labels){const option=document.createElement('option');option.textContent=displayLabel;option.value=displayLabel;this.$.reference_display_label.appendChild(option);}
9464if(labels.includes(this.viewState.referenceDisplayLabel)){this.referenceDisplayLabel=this.viewState.referenceDisplayLabel;}else{this.viewState.referenceDisplayLabel='';}},get baseStatisticNames(){return this.baseStatisticNames_;},set baseStatisticNames(names){this.baseStatisticNames_=names;this.statisticNames=names;},get statisticNames(){return Array.from(this.$.statistic.options).map(o=>o.value);},set statisticNames(names){this.$.statistic.style.display=(names.length<2)?'none':'inline';while(this.$.statistic.children.length){this.$.statistic.removeChild(this.$.statistic.lastChild);}
9465for(const name of names){const option=document.createElement('option');option.textContent=name;this.$.statistic.appendChild(option);}
9466if(names.includes(this.viewState.displayStatisticName)){this.displayStatisticName=this.viewState.displayStatisticName;this.$.statistic.value=this.displayStatisticName;}else{this.viewState.displayStatisticName=names[0]||'';}},get anyOverviewCharts_(){for(const row of tr.v.ui.HistogramSetTableRowState.walkAll(this.viewState.tableRowStates.values())){if(row.isOverviewed)return true;}
9467return false;},async toggleOverviewLineCharts_(){const showOverviews=!this.anyOverviewCharts_;const mark=tr.b.Timing.mark('histogram-set-controls',(showOverviews?'show':'hide')+'OverviewCharts');for(const row of tr.v.ui.HistogramSetTableRowState.walkAll(this.viewState.tableRowStates.values())){await row.update({isOverviewed:showOverviews});}
9468this.$.hide_overview.style.display=showOverviews?'inline':'none';this.$.show_overview.style.display=showOverviews?'none':'inline';await tr.b.animationFrame();mark.end();},set helpHref(href){this.$.help.href=href;this.$.help.style.display='inline';},set feedbackHref(href){this.$.feedback.href=href;this.$.feedback.style.display='inline';},clearSearch_(){this.set('searchQuery','');this.$.search.focus();},getAlphaString_(alphaIndex){return(''+ALPHA_OPTIONS[alphaIndex]).substr(0,5);},openAlphaSlider_(){const alphaButtonRect=this.$.alpha.getBoundingClientRect();this.$.alpha_slider_container.style.display='flex';this.$.alpha_slider_container.style.top=alphaButtonRect.bottom+'px';this.$.alpha_slider_container.style.left=alphaButtonRect.left+'px';this.$.alpha_slider.focus();},closeAlphaSlider_(){this.$.alpha_slider_container.style.display='';},updateAlpha_(){this.alphaIndex=this.$.alpha_slider.value;},getAlphaIndexFromViewState_(){for(let i=0;i<ALPHA_OPTIONS.length;++i){if(ALPHA_OPTIONS[i]>=this.viewState.alpha)return i;}
9469return ALPHA_OPTIONS.length-1;},});return{};});'use strict';tr.exportTo('tr.v',function(){function deleteMergedToDiagnostics(histogramArrayMap){for(const[name,histograms]of histogramArrayMap){if(histograms instanceof Array){for(const histogram of histograms){histogram.diagnostics.delete(tr.v.d.RESERVED_NAMES.MERGED_TO);}}else if(histograms instanceof Map){deleteMergedToDiagnostics(histograms);}}}
9470class HistogramSetHierarchy{constructor(name){this.name=name;this.description='';this.depth=0;this.subRows=[];this.columns=new Map();this.mergeRelationshipsForColumn_=new Map();}*walk(){yield this;for(const row of this.subRows)yield*row.walk();}
9471static*walkAll(rootRows){for(const rootRow of rootRows)yield*rootRow.walk();}
9472static build(histogramArrayMap){const rootRows=[];HistogramSetHierarchy.buildInternal_(histogramArrayMap,[],rootRows);const histograms=new tr.v.HistogramSet();for(const row of HistogramSetHierarchy.walkAll(rootRows)){for(const hist of row.columns.values()){if(!(hist instanceof tr.v.Histogram))continue;histograms.addHistogram(hist);}}
9473histograms.deduplicateDiagnostics();for(const row of HistogramSetHierarchy.walkAll(rootRows)){for(const[name,hist]of row.columns){if(!(hist instanceof tr.v.Histogram))continue;if(!row.mergeRelationshipsForColumn_.get(name))continue;hist.diagnostics.mergeRelationships(hist);}}
9474deleteMergedToDiagnostics(histogramArrayMap);for(const row of HistogramSetHierarchy.walkAll(rootRows)){row.maybeRebin_();}
9475return rootRows;}
9476maybeRebin_(){const dataRange=new tr.b.math.Range();for(const hist of this.columns.values()){if(!(hist instanceof tr.v.Histogram))continue;if(hist.allBins.length>1)return;if(hist.numValues===0)continue;dataRange.addValue(hist.min);dataRange.addValue(hist.max);}
9477dataRange.addValue(tr.b.math.lesserWholeNumber(dataRange.min));dataRange.addValue(tr.b.math.greaterWholeNumber(dataRange.max));if(dataRange.min===dataRange.max)return;const boundaries=tr.v.HistogramBinBoundaries.createLinear(dataRange.min,dataRange.max,tr.v.DEFAULT_REBINNED_COUNT);for(const[name,hist]of this.columns){if(!(hist instanceof tr.v.Histogram))continue;this.columns.set(name,hist.rebin(boundaries));}}
9478static mergeHistogramDownHierarchy_(histogram,hierarchy,columnName){let groupingPath=undefined;for(const row of hierarchy){if(groupingPath!==undefined){groupingPath.push(row.name);}else if(row.name===histogram.name){groupingPath=[];}
9479if(!row.description){row.description=histogram.description;}
9480const existing=row.columns.get(columnName);if(existing===undefined){const clone=histogram.clone();if(groupingPath!==undefined){new tr.v.d.GroupingPath(groupingPath).addToHistogram(clone);}
9481row.columns.set(columnName,clone);row.mergeRelationshipsForColumn_.set(columnName,true);continue;}
9482if(existing instanceof tr.v.HistogramSet){existing.addHistogram(histogram);continue;}
9483if(!existing.canAddHistogram(histogram)){const unmergeableHistograms=new tr.v.HistogramSet([histogram]);const mergedFrom=existing.diagnostics.get(tr.v.d.RESERVED_NAMES.MERGED_FROM);if(mergedFrom!==undefined){for(const[unusedName,origHist]of mergedFrom){unmergeableHistograms.addHistogram(origHist);}}
9484row.columns.set(columnName,unmergeableHistograms);continue;}
9485if(existing.name!==histogram.name){row.mergeRelationshipsForColumn_.set(name,false);}
9486existing.addHistogram(histogram);}}
9487static buildInternal_(histogramArrayMap,hierarchy,rootRows){for(const[name,histograms]of histogramArrayMap){if(histograms instanceof Array){for(const histogram of histograms){HistogramSetHierarchy.mergeHistogramDownHierarchy_(histogram,hierarchy,name);}}else if(histograms instanceof Map){const row=new HistogramSetHierarchy(name);row.depth=hierarchy.length;hierarchy.push(row);HistogramSetHierarchy.buildInternal_(histograms,hierarchy,rootRows);hierarchy.pop();if(hierarchy.length===0){rootRows.push(row);}else{const parentRow=hierarchy[hierarchy.length-1];parentRow.subRows.push(row);}}}}
9488static filter(rows,histograms){const results=[];for(const row of rows){let filteredSubRows=[];if(row.subRows.length>0){filteredSubRows=HistogramSetHierarchy.filter(row.subRows,histograms);if(filteredSubRows.length===0)continue;}else{let found=false;for(const testHist of row.columns.values()){if(testHist instanceof tr.v.HistogramSet){for(const origHist of testHist){if(histograms.lookupHistogram(origHist.guid)!==undefined){found=true;break;}}
9489if(found)break;continue;}
9490if(!(testHist instanceof tr.v.Histogram)){throw new Error('Cells can only contain Histogram or HistogramSet');}
9491if(histograms.lookupHistogram(testHist.guid)!==undefined){found=true;break;}
9492const mergedFrom=testHist.diagnostics.get(tr.v.d.RESERVED_NAMES.MERGED_FROM);if(mergedFrom!==undefined){for(const[unusedName,origHist]of mergedFrom){if(histograms.lookupHistogram(origHist.guid)!==undefined){found=true;break;}}}
9493if(found)break;}
9494if(!found)continue;}
9495const clone=new HistogramSetHierarchy(row.name);clone.description=row.description;clone.depth=row.depth;clone.subRows=filteredSubRows;clone.columns=row.columns;results.push(clone);}
9496return results;}}
9497return{HistogramSetHierarchy,};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-histogram-set-table-cell',created(){this.viewState_=undefined;this.rootListener_=this.onRootStateUpdate_.bind(this);this.row_=undefined;this.displayLabel_='';this.histogram_=undefined;this.histogramSpan_=undefined;this.overviewChart_=undefined;this.mwuResult_=undefined;},ready(){this.addEventListener('click',this.onClick_.bind(this));},attached(){if(this.row){this.row.rootViewState.addUpdateListener(this.rootListener_);}},detached(){this.row.rootViewState.removeUpdateListener(this.rootListener_);},updateMwu_(){const referenceHistogram=this.referenceHistogram;this.mwuResult_=undefined;if(!(this.histogram instanceof tr.v.Histogram))return;if(!this.histogram.canCompare(referenceHistogram))return;this.mwuResult_=tr.b.math.Statistics.mwu(this.histogram.sampleValues,referenceHistogram.sampleValues,this.row.rootViewState.alpha);},build(row,displayLabel,viewState){this.row_=row;this.displayLabel_=displayLabel;this.viewState_=viewState;this.histogram_=this.row.columns.get(displayLabel);if(this.viewState){this.viewState.addUpdateListener(this.onViewStateUpdate_.bind(this));}
9498this.row.viewState.addUpdateListener(this.onRowStateUpdate_.bind(this));if(this.isAttached){this.row.rootViewState.addUpdateListener(this.rootListener_);}
9499this.updateMwu_();this.updateContents_();},updateSignificance_(){if(!this.mwuResult_)return;this.$.scalar.significance=this.mwuResult_.significance;},get viewState(){return this.viewState_;},get row(){return this.row_;},get histogram(){return this.histogram_;},get referenceHistogram(){const referenceDisplayLabel=this.row.rootViewState.referenceDisplayLabel;if(!referenceDisplayLabel)return undefined;if(referenceDisplayLabel===this.displayLabel_)return undefined;return this.row.columns.get(referenceDisplayLabel);},get isHistogramOpen(){return(this.histogramSpan_!==undefined)&&(this.$.histogram.style.display==='block');},set isHistogramOpen(open){if(!(this.histogram instanceof tr.v.Histogram)||(this.histogram.numValues===0)){return;}
9500this.$.scalar.style.display=open?'none':'flex';this.$.open_histogram.style.display=open?'none':'block';this.$.close_histogram.style.display=open?'block':'none';this.$.histogram.style.display=open?'block':'none';if(open&&this.histogramSpan_===undefined){this.histogramSpan_=document.createElement('tr-v-ui-histogram-span');this.histogramSpan_.viewState=this.viewState;this.histogramSpan_.rowState=this.row.viewState;this.histogramSpan_.rootState=this.row.rootViewState;this.histogramSpan_.build(this.histogram,this.referenceHistogram);this.$.histogram.appendChild(this.histogramSpan_);}
9501this.viewState.isOpen=open;},onViewStateUpdate_(event){if(event.delta.isOpen){this.isHistogramOpen=this.viewState.isOpen;}},onRowStateUpdate_(event){if(event.delta.isOverviewed===undefined)return;if(this.row.viewState.isOverviewed){this.showOverview();}else{this.hideOverview();}},onRootStateUpdate_(event){if(event.delta.referenceDisplayLabel&&this.histogramSpan_){this.histogramSpan_.build(this.histogram,this.referenceHistogram);}
9502if(event.delta.displayStatisticName||event.delta.referenceDisplayLabel){this.updateMwu_();this.updateContents_();}else if(event.delta.alpha&&this.mwuResult_){this.mwuResult_.compare(this.row.rootViewState.alpha);this.updateSignificance_();}
9503if(this.row.viewState.isOverviewed&&(event.delta.sortColumnIndex||event.delta.sortDescending||event.delta.displayStatisticName||event.delta.referenceDisplayLabel)){if(this.overviewChart_!==undefined){this.$.overview_container.removeChild(this.overviewChart_);this.overviewChart_=undefined;}
9504this.showOverview();}},onClick_(event){event.stopPropagation();},openHistogram_(){this.isHistogramOpen=true;tr.b.Timing.instant('histogram-set-table-cell','open');},closeHistogram_(){this.isHistogramOpen=false;tr.b.Timing.instant('histogram-set-table-cell','close');},updateContents_(){const isOpen=this.isHistogramOpen;this.$.empty.style.display='none';this.$.unmergeable.style.display='none';this.$.scalar.style.display='none';this.$.histogram.style.display='none';this.$.close_histogram.style.display='none';this.$.open_histogram.style.visibility='hidden';if(!this.histogram){this.$.missing.style.display='block';return;}
9505this.$.missing.style.display='none';if(this.histogram instanceof tr.v.HistogramSet){this.$.unmergeable.style.display='block';return;}
9506if(!(this.histogram instanceof tr.v.Histogram)){throw new Error('Invalid Histogram: '+this.histogram);}
9507if(this.histogram.numValues===0){this.$.empty.style.display='block';return;}
9508this.$.open_histogram.style.display='block';this.$.open_histogram.style.visibility='visible';this.$.scalar.style.display='flex';this.updateSignificance_();const referenceHistogram=this.referenceHistogram;const statName=this.histogram.getAvailableStatisticName(this.row.rootViewState.displayStatisticName,referenceHistogram);const statisticScalar=this.histogram.getStatisticScalar(statName,referenceHistogram);this.$.scalar.setValueAndUnit(statisticScalar.value,statisticScalar.unit);this.isHistogramOpen=isOpen;},showOverview(){this.$.overview_container.style.display='block';if(this.overviewChart_!==undefined)return;this.row.sortSubRows();let referenceDisplayLabel=this.row.rootViewState.referenceDisplayLabel;if(referenceDisplayLabel===this.displayLabel_){referenceDisplayLabel=undefined;}
9509const displayStatisticName=this.row.rootViewState.displayStatisticName;const data=[];let unit;for(const subRow of this.row.subRows){const subHist=subRow.columns.get(this.displayLabel_);if(!(subHist instanceof tr.v.Histogram))continue;if(unit===undefined){unit=subHist.unit;}else if(unit!==subHist.unit){data.splice(0);break;}
9510const refHist=subRow.columns.get(referenceDisplayLabel);const statName=subHist.getAvailableStatisticName(displayStatisticName,refHist);const statScalar=subHist.getStatisticScalar(statName,refHist);if(statScalar!==undefined){data.push({x:subRow.name,y:statScalar.value,});}}
9511if(data.length<2)return;this.overviewChart_=new tr.ui.b.NameLineChart();this.$.overview_container.appendChild(this.overviewChart_);this.overviewChart_.displayXInHover=true;this.overviewChart_.hideLegend=true;this.overviewChart_.unit=unit;this.overviewChart_.overrideDataRange=this.row.overviewDataRange;this.overviewChart_.data=data;},hideOverview(){this.$.overview_container.style.display='none';}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){const NAME_COLUMN_WIDTH_PX=300;Polymer({is:'tr-v-ui-histogram-set-table-name-cell',created(){this.row_=undefined;this.overviewChart_=undefined;this.cellListener_=this.onCellStateUpdate_.bind(this);this.rootListener_=this.onRootStateUpdate_.bind(this);},attached(){if(this.row){this.row.rootViewState.addUpdateListener(this.rootListener_);}},detached(){this.row.rootViewState.removeUpdateListener(this.rootListener_);},get row(){return this.row_;},build(row){if(this.row_!==undefined){throw new Error('row must be set exactly once.');}
9512this.row_=row;this.row.viewState.addUpdateListener(this.onRowStateUpdate_.bind(this));this.constrainWidth=this.row.rootViewState.constrainNameColumn;if(this.isAttached){this.row.rootViewState.addUpdateListener(this.rootListener_);}
9513for(const cellState of this.row.viewState.cells.values()){cellState.addUpdateListener(this.cellListener_);}
9514Polymer.dom(this.$.name).textContent=this.row.name;this.title=this.row.name;if(this.row.description){this.title+='\n'+this.row.description;}
9515if(this.row.overviewDataRange.isEmpty||this.row.overviewDataRange.min===this.row.overviewDataRange.max){this.$.show_overview.style.display='none';}
9516let histogramCount=0;for(const cell of this.row.columns.values()){if(cell instanceof tr.v.Histogram&&cell.numValues>0){++histogramCount;}}
9517if(histogramCount<=1){this.$.open_histograms.style.display='none';}},set constrainWidth(constrain){this.$.name.style.maxWidth=constrain?(this.nameWidthPx+'px'):'none';},get nameWidthPx(){return NAME_COLUMN_WIDTH_PX-(16*this.row.depth);},get isOverflowing(){return this.$.name.style.maxWidth!=='none'&&this.$.name.getBoundingClientRect().width===this.nameWidthPx;},get isOverviewed(){return this.$.overview_container.style.display==='block';},set isOverviewed(isOverviewed){if(isOverviewed===this.isOverviewed)return;if(isOverviewed){this.showOverview_();}else{this.hideOverview_();}},hideOverview_(opt_event){this.$.overview_container.style.display='none';this.$.hide_overview.style.display='none';this.$.show_overview.style.display='block';if(opt_event!==undefined){opt_event.stopPropagation();tr.b.Timing.instant('histogram-set-table-name-cell','hideOverview');this.row.viewState.isOverviewed=this.isOverviewed;}},showOverview_(opt_event){if(opt_event!==undefined){opt_event.stopPropagation();tr.b.Timing.instant('histogram-set-table-name-cell','showOverview');this.row.viewState.isOverviewed=true;}
9518this.$.overview_container.style.display='block';this.$.hide_overview.style.display='block';this.$.show_overview.style.display='none';if(this.overviewChart_===undefined){const displayStatisticName=this.row.rootViewState.displayStatisticName;const data=[];let unit;for(const[displayLabel,hist]of this.row.sortedColumns()){if(!(hist instanceof tr.v.Histogram))continue;if(unit===undefined){unit=hist.unit;}else if(unit!==hist.unit){data.splice(0);break;}
9519const statName=hist.getAvailableStatisticName(displayStatisticName);const statScalar=hist.getStatisticScalar(statName);if(statScalar!==undefined){data.push({x:displayLabel,y:statScalar.value,});}}
9520if(data.length<2){return;}
9521this.overviewChart_=new tr.ui.b.NameLineChart();this.$.overview_container.appendChild(this.overviewChart_);this.overviewChart_.displayXInHover=true;this.overviewChart_.hideLegend=true;this.overviewChart_.unit=unit;this.overviewChart_.overrideDataRange=this.row.overviewDataRange;this.overviewChart_.data=data;}},openHistograms_(event){event.stopPropagation();tr.b.Timing.instant('histogram-set-table-name-cell','openHistograms');for(const cell of this.row.cells.values()){cell.isHistogramOpen=true;}
9522this.$.close_histograms.style.display='block';this.$.open_histograms.style.display='none';},closeHistograms_(event){event.stopPropagation();tr.b.Timing.instant('histogram-set-table-name-cell','closeHistograms');for(const cell of this.row.cells.values()){cell.isHistogramOpen=false;}
9523this.$.open_histograms.style.display='block';this.$.close_histograms.style.display='none';},onRootStateUpdate_(event){if(event.delta.constrainNameColumn){this.constrainWidth=this.row.rootViewState.constrainNameColumn;}
9524if(this.row.viewState.isOverviewed&&event.delta.displayStatisticName){this.row.resetOverviewDataRange();if(this.overviewChart_!==undefined){this.$.overview_container.removeChild(this.overviewChart_);this.overviewChart_=undefined;}
9525this.showOverview_();}},onRowStateUpdate_(event){if(event.delta.isOverviewed){this.isOverviewed=this.row.viewState.isOverviewed;}},onCellStateUpdate_(event){if(!event.delta.isOpen)return;let cellCount=0;let openCellCount=0;for(const cell of this.row.cells.values()){if(!(cell.histogram instanceof tr.v.Histogram)||(cell.histogram.numValues===0)){continue;}
9526++cellCount;if(cell.isHistogramOpen)++openCellCount;}
9527if(cellCount<=1)return;const mostlyOpen=openCellCount>(cellCount/2);this.$.open_histograms.style.display=mostlyOpen?'none':'block';this.$.close_histograms.style.display=mostlyOpen?'block':'none';}});return{NAME_COLUMN_WIDTH_PX,};});'use strict';tr.exportTo('tr.v.ui',function(){class HistogramSetTableRow{constructor(hierarchy,baseTable,rootViewState){this.hierarchy_=hierarchy;this.baseTable_=baseTable;this.rootViewState_=rootViewState;this.viewState_=new tr.v.ui.HistogramSetTableRowState();this.viewState_.addUpdateListener(this.onViewStateUpdate_.bind(this));this.overviewDataRange_=undefined;this.nameCell_=undefined;this.cells_=new Map();this.subRows_=[];for(const subHierarchy of hierarchy.subRows){const subRow=new HistogramSetTableRow(subHierarchy,baseTable,rootViewState);this.subRows_.push(subRow);this.viewState.subRows.set(subRow.name,subRow.viewState);}
9528for(const columnName of this.columns.keys()){this.viewState.cells.set(columnName,new tr.v.ui.HistogramSetTableCellState());}}
9529get name(){return this.hierarchy_.name;}
9530get depth(){return this.hierarchy_.depth;}
9531get description(){return this.hierarchy_.description;}
9532get columns(){return this.hierarchy_.columns;}*sortedColumns(){for(const col of this.baseTable_.tableColumns){yield[col.displayLabel,this.hierarchy_.columns.get(col.displayLabel),];}}
9533get overviewDataRange(){if(this.overviewDataRange_===undefined){this.overviewDataRange_=new tr.b.math.Range();const displayStatisticName=this.rootViewState.displayStatisticName;const referenceDisplayLabel=this.rootViewState.referenceDisplayLabel;for(const[displayLabel,hist]of this.columns){if(hist instanceof tr.v.Histogram){const statName=hist.getAvailableStatisticName(displayStatisticName);const statScalar=hist.getStatisticScalar(statName);if(statScalar!==undefined){this.overviewDataRange_.addValue(statScalar.value);}}
9534for(const subRow of this.subRows){const subHist=subRow.columns.get(displayLabel);if(!(subHist instanceof tr.v.Histogram))continue;const refHist=subRow.columns.get(referenceDisplayLabel);const statName=subHist.getAvailableStatisticName(displayStatisticName,refHist);const statScalar=subHist.getStatisticScalar(statName,refHist);if(statScalar!==undefined){this.overviewDataRange_.addValue(statScalar.value);}}}}
9535return this.overviewDataRange_;}
9536resetOverviewDataRange(){this.overviewDataRange_=undefined;}
9537get rootViewState(){return this.rootViewState_;}
9538get cells(){return this.cells_;}
9539get subRows(){return this.subRows_;}
9540get viewState(){return this.viewState_;}*walk(){yield this;for(const row of this.subRows)yield*row.walk();}
9541static*walkAll(rootRows){for(const rootRow of rootRows)yield*rootRow.walk();}
9542get nameCell(){if(this.nameCell_===undefined){this.nameCell_=document.createElement('tr-v-ui-histogram-set-table-name-cell');this.nameCell_.build(this);}
9543return this.nameCell_;}
9544getCell(columnName){if(this.cells.has(columnName))return this.cells.get(columnName);const cell=document.createElement('tr-v-ui-histogram-set-table-cell');cell.build(this,columnName,this.viewState.cells.get(columnName));this.cells.set(columnName,cell);return cell;}
9545compareNames(other){return this.name.localeCompare(other.name);}
9546compareCells(other,displayLabel){const cellA=this.columns.get(displayLabel);const cellB=other.columns.get(displayLabel);if(!(cellA instanceof tr.v.Histogram)||!(cellB instanceof tr.v.Histogram)){return undefined;}
9547let referenceCellA;let referenceCellB;const referenceDisplayLabel=this.rootViewState.referenceDisplayLabel;if(referenceDisplayLabel&&referenceDisplayLabel!==displayLabel){referenceCellA=this.columns.get(referenceDisplayLabel);referenceCellB=other.columns.get(referenceDisplayLabel);}
9548const statisticA=cellA.getAvailableStatisticName(this.rootViewState.displayStatisticName,referenceCellA);const statisticB=cellB.getAvailableStatisticName(this.rootViewState.displayStatisticName,referenceCellB);const scalarA=cellA.getStatisticScalar(statisticA,referenceCellA);const scalarB=cellB.getStatisticScalar(statisticB,referenceCellB);const valueA=scalarA?scalarA.value:undefined;const valueB=scalarB?scalarB.value:undefined;return valueA-valueB;}
9549onViewStateUpdate_(event){if(event.delta.isExpanded){this.baseTable_.setExpandedForTableRow(this,this.viewState.isExpanded);}
9550if(event.delta.subRows){throw new Error('HistogramSetTableRow.subRows must not be reassigned.');}
9551if(event.delta.cells){for(const[displayLabel,cell]of this.cells){if(cell.viewState!==this.viewState.cells.get(displayLabel)){throw new Error('Only HistogramSetTableRow may update cells');}}}}
9552async restoreState(vs){await this.viewState.update({isExpanded:vs.isExpanded,isOverviewed:vs.isOverviewed,});for(const[displayLabel,cell]of this.cells){const previousState=vs.cells.get(displayLabel);if(!previousState)continue;await cell.viewState.updateFromViewState(previousState);}
9553for(const row of this.subRows){const previousState=vs.subRows.get(row.name);if(!previousState)continue;await row.restoreState(previousState);}}
9554sortSubRows(){const sortColumn=this.baseTable_.tableColumns[this.rootViewState_.sortColumnIndex];if(sortColumn===undefined)return;this.subRows_.sort(sortColumn.cmp);if(this.rootViewState_.sortDescending){this.subRows_.reverse();}}}
9555return{HistogramSetTableRow,};});'use strict';tr.exportTo('tr.v.ui',function(){const MIDLINE_HORIZONTAL_ELLIPSIS=String.fromCharCode(0x22ef);function escapeRegExp(str){return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,'\\$&');}
9556Polymer({is:'tr-v-ui-histogram-set-table',created(){this.viewState_=undefined;this.progress_=()=>Promise.resolve();this.nameColumnTitle_=undefined;this.displayLabels_=[];this.histograms_=undefined;this.sourceHistograms_=undefined;this.groupedHistograms_=undefined;this.hierarchies_=undefined;this.tableRows_=undefined;this.sortColumnChangedListener_=e=>this.onSortColumnChanged_(e);},ready(){this.$.table.zebra=true;this.addEventListener('sort-column-changed',this.sortColumnChangedListener_);this.addEventListener('requestSelectionChange',this.onRequestSelectionChange_.bind(this));this.addEventListener('row-expanded-changed',this.onRowExpandedChanged_.bind(this));},get viewState(){return this.viewState_;},set viewState(vs){if(this.viewState_){throw new Error('viewState must be set exactly once.');}
9557this.viewState_=vs;this.viewState.addUpdateListener(this.onViewStateUpdate_.bind(this));},get histograms(){return this.histograms_;},async build(histograms,sourceHistograms,displayLabels,opt_progress){this.histograms_=histograms;this.sourceHistograms_=sourceHistograms;this.groupedHistograms_=undefined;this.displayLabels_=displayLabels;if(opt_progress!==undefined)this.progress_=opt_progress;if(histograms.length===0){throw new Error('histogram-set-table requires non-empty HistogramSet.');}
9558await this.progress_('Building columns...');this.$.table.tableColumns=[{title:this.buildNameColumnTitle_(),value:row=>row.nameCell,cmp:(a,b)=>a.compareNames(b),}].concat(displayLabels.map(l=>this.buildColumn_(l)));tr.b.Timing.instant('histogram-set-table','columnCount',this.$.table.tableColumns.length);await this.updateContents_();this.fire('display-ready');this.progress_=()=>Promise.resolve();this.checkNameColumnOverflow_(tr.v.ui.HistogramSetTableRow.walkAll(this.$.table.tableRows));},buildNameColumnTitle_(){this.nameColumnTitle_=document.createElement('span');this.nameColumnTitle_.style.display='inline-flex';const nameEl=document.createElement('span');nameEl.textContent='Name';this.nameColumnTitle_.appendChild(nameEl);const toggleWidthEl=document.createElement('span');toggleWidthEl.style.fontWeight='bold';toggleWidthEl.style.background='#bbb';toggleWidthEl.style.color='#333';toggleWidthEl.style.padding='0px 3px';toggleWidthEl.style.marginRight='8px';toggleWidthEl.style.display='none';toggleWidthEl.textContent=MIDLINE_HORIZONTAL_ELLIPSIS;toggleWidthEl.addEventListener('click',this.toggleNameColumnWidth_.bind(this));this.nameColumnTitle_.appendChild(toggleWidthEl);return this.nameColumnTitle_;},toggleNameColumnWidth_(opt_event){this.viewState.update({constrainNameColumn:!this.viewState.constrainNameColumn,});if(opt_event!==undefined){opt_event.stopPropagation();opt_event.preventDefault();tr.b.Timing.instant('histogram-set-table','nameColumn'+
9559(this.viewState.constrainNameColumn?'Constrained':'Unconstrained'));}},buildColumn_(displayLabel){const title=document.createElement('span');title.textContent=displayLabel;title.style.whiteSpace='pre';return{displayLabel,title,value:row=>row.getCell(displayLabel),cmp:(rowA,rowB)=>rowA.compareCells(rowB,displayLabel),};},async updateContents_(){if(this.groupedHistograms_===undefined){await this.progress_('Grouping Histograms...');this.groupHistograms_();}
9560if(this.hierarchies_===undefined){await this.progress_('Merging Histograms...');this.hierarchies_=tr.v.HistogramSetHierarchy.build(this.groupedHistograms_);this.tableRows_=undefined;}
9561const tableRowsDirty=this.tableRows_===undefined;const previousRowStates=this.viewState.tableRowStates;if(tableRowsDirty){await this.progress_('Filtering rows...');let filteredHistograms=this.viewState.showAll?this.histograms:this.sourceHistograms_;if(this.viewState.searchQuery){let query=undefined;try{query=new RegExp(this.viewState.searchQuery);}catch(e){}
9562if(query!==undefined){filteredHistograms=new tr.v.HistogramSet([...filteredHistograms].filter(hist=>hist.name.match(query)));if(filteredHistograms.length===0&&!this.viewState.showAll){await this.viewState.update({showAll:true});return;}}}
9563const filteredHierarchies=tr.v.HistogramSetHierarchy.filter(this.hierarchies_,filteredHistograms);this.tableRows_=filteredHierarchies.map(hierarchy=>new tr.v.ui.HistogramSetTableRow(hierarchy,this.$.table,this.viewState));tr.b.Timing.instant('histogram-set-table','rootRowCount',this.tableRows_.length);const namesToRowStates=new Map();for(const row of this.tableRows_){namesToRowStates.set(row.name,row.viewState);}
9564await this.viewState.update({tableRowStates:namesToRowStates});}
9565await this.progress_('Configuring table...');this.nameColumnTitle_.children[1].style.filter=this.viewState.constrainNameColumn?'invert(100%)':'';const referenceDisplayLabelIndex=this.displayLabels_.indexOf(this.viewState.referenceDisplayLabel);this.$.table.selectedTableColumnIndex=(referenceDisplayLabelIndex<0)?undefined:(1+referenceDisplayLabelIndex);this.removeEventListener('sort-column-changed',this.sortColumnChangedListener_);this.$.table.sortColumnIndex=this.viewState.sortColumnIndex;this.$.table.sortDescending=this.viewState.sortDescending;this.addEventListener('sort-column-changed',this.sortColumnChangedListener_);if(tableRowsDirty){await this.progress_('Building DOM...');this.$.table.tableRows=this.tableRows_;for(const row of this.tableRows_){const previousState=previousRowStates.get(row.name);if(!previousState)continue;await row.restoreState(previousState);}}
9566this.$.table.rebuild();},async onRowExpandedChanged_(event){event.row.viewState.isExpanded=this.$.table.getExpandedForTableRow(event.row);tr.b.Timing.instant('histogram-set-table','row'+(event.row.viewState.isExpanded?'Expanded':'Collapsed'));if(this.nameColumnTitle_.children[1].style.display==='block')return;await tr.b.animationFrame();this.checkNameColumnOverflow_(event.row.subRows);},checkNameColumnOverflow_(rows){for(const row of rows){if(!row.nameCell.isOverflowing)continue;const[nameSpan,dots]=this.nameColumnTitle_.children;dots.style.display='block';const labelWidthPx=tr.v.ui.NAME_COLUMN_WIDTH_PX-
9567dots.getBoundingClientRect().width;nameSpan.style.width=labelWidthPx+'px';return;}},groupHistograms_(){const groupings=this.viewState.groupings.slice();groupings.push(tr.v.HistogramGrouping.DISPLAY_LABEL);function canSkipGrouping(grouping,groupedHistograms){if(groupedHistograms.size>1)return false;if(grouping.key===groupings[0].key)return false;if(grouping.key===tr.v.HistogramGrouping.DISPLAY_LABEL.key){return false;}
9568return true;}
9569this.groupedHistograms_=this.histograms.groupHistogramsRecursively(groupings,canSkipGrouping);this.hierarchies_=undefined;},async onViewStateUpdate_(event){if(this.histograms_===undefined)return;if(event.delta.groupings!==undefined){this.groupedHistograms_=undefined;}
9570if(event.delta.searchQuery!==undefined||event.delta.showAll!==undefined){this.tableRows_=undefined;}
9571if(event.delta.displayStatistic!==undefined&&this.$.table.sortColumnIndex>0){this.$.table.sortColumnIndex=undefined;}
9572if(event.delta.referenceDisplayLabel!==undefined||event.delta.displayStatisticName!==undefined){this.$.table.tableRows=this.$.table.tableRows;}
9573if(event.delta.tableRowStates){if(this.tableRows_.length!==this.viewState.tableRowStates.size){throw new Error('Only histogram-set-table may update tableRowStates');}
9574for(const row of this.tableRows_){if(this.viewState.tableRowStates.get(row.name)!==row.viewState){throw new Error('Only histogram-set-table may update tableRowStates');}}}
9575await this.updateContents_();},onSortColumnChanged_(event){tr.b.Timing.instant('histogram-set-table','sortColumn');this.viewState.update({sortColumnIndex:event.sortColumnIndex,sortDescending:event.sortDescending,});},onRequestSelectionChange_(event){if(event.selection instanceof tr.model.EventSet)return;event.stopPropagation();tr.b.Timing.instant('histogram-set-table','selectHistogramNames');let histogramNames=event.selection;histogramNames.sort();histogramNames=histogramNames.map(escapeRegExp).join('|');this.viewState.update({showAll:true,searchQuery:`^(${histogramNames})$`,});},get leafHistograms(){const histograms=new tr.v.HistogramSet();for(const row of
9576tr.v.ui.HistogramSetTableRow.walkAll(this.$.table.tableRows)){if(row.subRows.length)continue;for(const hist of row.columns.values()){if(!(hist instanceof tr.v.Histogram))continue;histograms.addHistogram(hist);}}
9577return histograms;}});return{MIDLINE_HORIZONTAL_ELLIPSIS,};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-histogram-set-view',listeners:{export:'onExport_',},created(){this.brushingStateController_=new tr.ui.NullBrushingStateController();this.viewState_=new tr.v.ui.HistogramSetViewState();},ready(){this.$.table.viewState=this.viewState;this.$.controls.viewState=this.viewState;},attached(){this.brushingStateController.parentController=tr.c.BrushingStateController.getControllerForElement(this.parentNode);},get brushingStateController(){return this.brushingStateController_;},get viewState(){return this.viewState_;},get histograms(){return this.$.table.histograms;},async build(histograms,opt_options){const options=opt_options||{};const progress=options.progress||(()=>Promise.resolve());if(options.helpHref)this.$.controls.helpHref=options.helpHref;if(options.feedbackHref){this.$.controls.feedbackHref=options.feedbackHref;}
9578if(histograms===undefined||histograms.length===0){this.$.container.style.display='none';this.$.zero.style.display='block';this.style.display='block';return;}
9579this.$.zero.style.display='none';this.$.container.style.display='block';this.$.container.style.maxHeight=(window.innerHeight-16)+'px';const buildMark=tr.b.Timing.mark('histogram-set-view','build');await progress('Finding important Histograms...');const sourceHistogramsMark=tr.b.Timing.mark('histogram-set-view','sourceHistograms');const sourceHistograms=histograms.sourceHistograms;sourceHistogramsMark.end();this.$.controls.showAllEnabled=(sourceHistograms.length!==histograms.length);await progress('Collecting parameters...');const collectParametersMark=tr.b.Timing.mark('histogram-set-view','collectParameters');const parameterCollector=new tr.v.HistogramParameterCollector();parameterCollector.process(histograms);this.$.controls.baseStatisticNames=parameterCollector.statisticNames;this.$.controls.possibleGroupings=parameterCollector.possibleGroupings;const displayLabels=parameterCollector.labels;this.$.controls.displayLabels=displayLabels;collectParametersMark.end();await this.$.table.build(histograms,sourceHistograms,displayLabels,progress);buildMark.end();},onExport_(event){const mark=tr.b.Timing.mark('histogram-set-view','export'+
9580(event.merged?'Merged':'Raw')+event.format.toUpperCase());const histograms=event.merged?this.$.table.leafHistograms:this.histograms;let blob;if(event.format==='csv'){const csv=new tr.v.CSVBuilder(histograms);csv.build();blob=new window.Blob([csv.toString()],{type:'text/csv'});}else if(event.format==='json'){blob=new window.Blob([JSON.stringify(histograms.asDicts())],{type:'text/json'});}else{throw new Error(`Unable to export format "${event.format}"`);}
9581const path=window.location.pathname.split('/');const basename=path[path.length-1].split('.')[0]||'histograms';const anchor=document.createElement('a');anchor.download=`${basename}.${event.format}`;anchor.href=window.URL.createObjectURL(blob);anchor.click();mark.end();},});return{};});'use strict';tr.exportTo('tr.ui',function(){Polymer({is:'tr-ui-sp-metrics-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready(){this.model_=undefined;this.rangeOfInterest_=undefined;this.metricLatenciesMs_=[];this.metrics_=[];tr.metrics.MetricRegistry.getAllRegisteredTypeInfos().forEach(function(m){if(m.constructor.name==='sampleMetric')return;this.metrics_.push({label:m.constructor.name,value:m.constructor.name});},this);this.metrics_.sort((x,y)=>x.label.localeCompare(y.label));this.settingsKey_='metrics-side-panel-metric-name';this.currentMetricName_='responsivenessMetric';const metricSelector=tr.ui.b.createSelector(this,'currentMetricName_',this.settingsKey_,this.currentMetricName_,this.metrics_);Polymer.dom(this.$.top_left_controls).appendChild(metricSelector);metricSelector.addEventListener('change',this.onMetricChange_.bind(this));this.currentMetricTypeInfo_=tr.metrics.MetricRegistry.findTypeInfoWithName(this.currentMetricName_);this.recomputeButton_=tr.ui.b.createButton('Recompute',this.onRecompute_,this);Polymer.dom(this.$.top_left_controls).appendChild(this.recomputeButton_);this.$.results.addEventListener('display-ready',()=>{this.$.results.style.display='';});},async build(model){this.model_=model;await this.updateContents_();},get metricLatencyMs(){return tr.b.math.Statistics.mean(this.metricLatenciesMs_);},onMetricChange_(){this.currentMetricTypeInfo_=tr.metrics.MetricRegistry.findTypeInfoWithName(this.currentMetricName_);this.metricLatenciesMs_=[];this.updateContents_();},onRecompute_(){this.updateContents_();},get textLabel(){return'Metrics';},supportsModel(m){if(!m){return{supported:false,reason:'No model available'};}
9582return{supported:true};},get model(){return this.model_;},set model(model){this.build(model);},get selection(){},set selection(_){},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(range){this.rangeOfInterest_=range;if(this.currentMetricTypeInfo_&&this.currentMetricTypeInfo_.metadata.supportsRangeOfInterest){if((this.metricLatencyMs===undefined)||(this.metricLatencyMs<100)){this.updateContents_();}else{this.recomputeButton_.style.background='red';}}},async updateContents_(){Polymer.dom(this.$.error).textContent='';this.$.results.style.display='none';if(!this.model_){Polymer.dom(this.$.error).textContent='Missing model';return;}
9583const options={metrics:[this.currentMetricName_]};if(this.currentMetricTypeInfo_&&this.currentMetricTypeInfo_.metadata.supportsRangeOfInterest&&this.rangeOfInterest&&!this.rangeOfInterest.isEmpty){options.rangeOfInterest=this.rangeOfInterest;}
9584const startDate=new Date();const addFailureCb=failure=>{Polymer.dom(this.$.error).textContent=failure.description;};const histograms=tr.metrics.runMetrics(this.model_,options,addFailureCb);this.metricLatenciesMs_.push(new Date()-startDate);while(this.metricLatenciesMs_.length>20){this.metricLatenciesMs_.shift();}
9585this.recomputeButton_.style.background='';await this.$.results.build(histograms);}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-sp-metrics-side-panel');});return{};});'use strict';Polymer({is:'tr-ui-e-s-alerts-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready(){this.rangeOfInterest_=new tr.b.math.Range();this.selection_=undefined;},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},set selection(selection){},set rangeOfInterest(rangeOfInterest){},selectAlertsOfType(alertTypeString){const alertsOfType=this.model_.alerts.filter(function(alert){return alert.title===alertTypeString;});const event=new tr.model.RequestSelectionChangeEvent();event.selection=new tr.model.EventSet(alertsOfType);this.dispatchEvent(event);},alertsByType_(alerts){const alertsByType={};alerts.forEach(function(alert){if(!alertsByType[alert.title]){alertsByType[alert.title]=[];}
9586alertsByType[alert.title].push(alert);});return alertsByType;},alertsTableRows_(alertsByType){return Object.keys(alertsByType).map(function(key){return{alertType:key,count:alertsByType[key].length};});},alertsTableColumns_(){return[{title:'Alert type',value(row){return row.alertType;},width:'180px'},{title:'Count',width:'100%',value(row){return row.count;}}];},createAlertsTable_(alerts){const alertsByType=this.alertsByType_(alerts);const table=document.createElement('tr-ui-b-table');table.tableColumns=this.alertsTableColumns_();table.tableRows=this.alertsTableRows_(alertsByType);table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;table.addEventListener('selection-changed',function(e){const row=table.selectedTableRow;if(row){this.selectAlertsOfType(row.alertType);}}.bind(this));return table;},updateContents_(){Polymer.dom(this.$.result_area).textContent='';if(this.model_===undefined)return;const panel=this.createAlertsTable_(this.model_.alerts);Polymer.dom(this.$.result_area).appendChild(panel);},supportsModel(m){if(m===undefined){return{supported:false,reason:'Unknown tracing model'};}else if(m.alerts.length===0){return{supported:false,reason:'No alerts in tracing model'};}
9587return{supported:true};},get textLabel(){return'Alerts';}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-alerts-side-panel');});
9588</script>
9589<!--CATAPULT_REV=NO_AUTO_UPDATE-->
9590</head>
9591<body>
9592  <tr-ui-timeline-view>
9593    <track-view-container id='track_view_container'></track-view-container>
9594  </tr-ui-timeline-view>
9595
9596  <script>
9597  'use strict';
9598  var timelineViewEl;
9599
9600  function onLoad() {
9601    timelineViewEl = document.querySelector('tr-ui-timeline-view');
9602    timelineViewEl.globalMode = true;
9603
9604    var traceDataEls = document.body.querySelectorAll('.trace-data');
9605    var traces = [];
9606    for (var i = 0; i < traceDataEls.length; i++) {
9607      var traceText = traceDataEls[i].textContent;
9608      // Remove the leading newline.
9609      traceText = traceText.substring(1);
9610      traces.push(traceText);
9611    }
9612
9613    var m = new tr.Model();
9614    var i = new tr.importer.Import(m);
9615    var p = i.importTracesWithProgressDialog(traces);
9616    p.then(
9617      function() {
9618        timelineViewEl.model = m;
9619        timelineViewEl.updateDocumentFavicon();
9620        timelineViewEl.globalMode = true;
9621        timelineViewEl.viewTitle = 'Android System Trace';
9622      },
9623      function(err) {
9624        var overlay = new tr.ui.b.Overlay();
9625        overlay.textContent = tr.b.normalizeException(err).message;
9626        overlay.title = 'Import error';
9627        overlay.visible = true;
9628      });
9629  }
9630  window.addEventListener('load', onLoad);
9631  </script>
9632<!-- BEGIN TRACE -->
9633  <script class="trace-data" type="application/text">
9634PROCESS DUMP
9635USER           PID  PPID     VSZ    RSS WCHAN  PC S NAME                        COMM
9636root             1     0   28100   4968 SyS_epoll_wait 0 S init                 init
9637root             2     0       0      0 kthreadd 0 S [kthreadd]                 2
9638root             3     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/0]     3
9639root             5     2       0      0 worker_thread 0 S [kworker/0:0H]        5
9640root             6     2       0      0 diag_socket_read 0 S [kworker/u16:0]    6
9641root             7     2       0      0 rcu_gp_kthread 0 S [rcu_preempt]        7
9642root             8     2       0      0 rcu_gp_kthread 0 S [rcu_sched]          8
9643root             9     2       0      0 rcu_gp_kthread 0 S [rcu_bh]             9
9644root            10     2       0      0 rcu_nocb_kthread 0 S [rcuop/0]          1
9645root            11     2       0      0 rcu_nocb_kthread 0 S [rcuos/0]          1
9646root            12     2       0      0 rcu_nocb_kthread 0 S [rcuob/0]          1
9647root            13     2       0      0 smpboot_thread_fn 0 S [migration/0]     1
9648root            14     2       0      0 rescuer_thread 0 S [lru-add-drain]      1
9649root            15     2       0      0 smpboot_thread_fn 0 S [cpuhp/0]         1
9650root            16     2       0      0 smpboot_thread_fn 0 S [cpuhp/1]         1
9651root            17     2       0      0 smpboot_thread_fn 0 S [migration/1]     1
9652root            18     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/1]     1
9653root            20     2       0      0 worker_thread 0 S [kworker/1:0H]        2
9654root            21     2       0      0 rcu_nocb_kthread 0 S [rcuop/1]          2
9655root            22     2       0      0 rcu_nocb_kthread 0 S [rcuos/1]          2
9656root            23     2       0      0 rcu_nocb_kthread 0 S [rcuob/1]          2
9657root            24     2       0      0 smpboot_thread_fn 0 S [cpuhp/2]         2
9658root            25     2       0      0 smpboot_thread_fn 0 S [migration/2]     2
9659root            26     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/2]     2
9660root            28     2       0      0 worker_thread 0 S [kworker/2:0H]        2
9661root            29     2       0      0 rcu_nocb_kthread 0 S [rcuop/2]          2
9662root            30     2       0      0 rcu_nocb_kthread 0 S [rcuos/2]          3
9663root            31     2       0      0 rcu_nocb_kthread 0 S [rcuob/2]          3
9664root            32     2       0      0 smpboot_thread_fn 0 S [cpuhp/3]         3
9665root            33     2       0      0 smpboot_thread_fn 0 S [migration/3]     3
9666root            34     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/3]     3
9667root            36     2       0      0 worker_thread 0 S [kworker/3:0H]        3
9668root            37     2       0      0 rcu_nocb_kthread 0 S [rcuop/3]          3
9669root            38     2       0      0 rcu_nocb_kthread 0 S [rcuos/3]          3
9670root            39     2       0      0 rcu_nocb_kthread 0 S [rcuob/3]          3
9671root            40     2       0      0 smpboot_thread_fn 0 S [cpuhp/4]         4
9672root            41     2       0      0 smpboot_thread_fn 0 S [migration/4]     4
9673root            42     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/4]     4
9674root            44     2       0      0 worker_thread 0 S [kworker/4:0H]        4
9675root            45     2       0      0 rcu_nocb_kthread 0 S [rcuop/4]          4
9676root            46     2       0      0 rcu_nocb_kthread 0 S [rcuos/4]          4
9677root            47     2       0      0 rcu_nocb_kthread 0 S [rcuob/4]          4
9678root            48     2       0      0 smpboot_thread_fn 0 S [cpuhp/5]         4
9679root            49     2       0      0 smpboot_thread_fn 0 S [migration/5]     4
9680root            50     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/5]     5
9681root            52     2       0      0 worker_thread 0 S [kworker/5:0H]        5
9682root            53     2       0      0 rcu_nocb_kthread 0 S [rcuop/5]          5
9683root            54     2       0      0 rcu_nocb_kthread 0 S [rcuos/5]          5
9684root            55     2       0      0 rcu_nocb_kthread 0 S [rcuob/5]          5
9685root            56     2       0      0 smpboot_thread_fn 0 S [cpuhp/6]         5
9686root            57     2       0      0 smpboot_thread_fn 0 S [migration/6]     5
9687root            58     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/6]     5
9688root            60     2       0      0 worker_thread 0 S [kworker/6:0H]        6
9689root            61     2       0      0 rcu_nocb_kthread 0 S [rcuop/6]          6
9690root            62     2       0      0 rcu_nocb_kthread 0 S [rcuos/6]          6
9691root            63     2       0      0 rcu_nocb_kthread 0 S [rcuob/6]          6
9692root            64     2       0      0 smpboot_thread_fn 0 S [cpuhp/7]         6
9693root            65     2       0      0 smpboot_thread_fn 0 S [migration/7]     6
9694root            66     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/7]     6
9695root            68     2       0      0 worker_thread 0 S [kworker/7:0H]        6
9696root            69     2       0      0 rcu_nocb_kthread 0 S [rcuop/7]          6
9697root            70     2       0      0 rcu_nocb_kthread 0 S [rcuos/7]          7
9698root            71     2       0      0 rcu_nocb_kthread 0 S [rcuob/7]          7
9699root            72     2       0      0 rescuer_thread 0 S [netns]              7
9700root            75     2       0      0 rescuer_thread 0 S [ipa_usb_wq]         7
9701root            77     2       0      0 watchdog_kthread 0 S [msm_watchdog]     7
9702root            78     2       0      0 kthread_worker_fn 0 S [smem_native_sps] 7
9703root            79     2       0      0 kthread_worker_fn 0 S [spss_mailbox_gl] 7
9704root            80     2       0      0 kthread_worker_fn 0 S [qmp_aop]         8
9705root            81     2       0      0 kthread_worker_fn 0 S [smem_native_mps] 8
9706root            82     2       0      0 kthread_worker_fn 0 S [mpss_smem_glink] 8
9707root            83     2       0      0 kthread_worker_fn 0 S [smem_native_lpa] 8
9708root            84     2       0      0 kthread_worker_fn 0 S [lpass_smem_glin] 8
9709root            85     2       0      0 kthread_worker_fn 0 S [smem_native_dsp] 8
9710root            86     2       0      0 kthread_worker_fn 0 S [dsps_smem_glink] 8
9711root            87     2       0      0 kthread_worker_fn 0 S [smem_native_cds] 8
9712root            88     2       0      0 kthread_worker_fn 0 S [cdsp_smem_glink] 8
9713root            89     2       0      0 watchdog 0 S [khungtaskd]               8
9714root            90     2       0      0 oom_reaper 0 S [oom_reaper]             9
9715root            91     2       0      0 rescuer_thread 0 S [writeback]          9
9716root            92     2       0      0 kcompactd 0 S [kcompactd0]              9
9717root            93     2       0      0 rescuer_thread 0 S [crypto]             9
9718root            94     2       0      0 rescuer_thread 0 S [bioset]             9
9719root            95     2       0      0 rescuer_thread 0 S [kblockd]            9
9720root            96     2       0      0 irq_thread 0 S [irq/159-arm-smm]        9
9721root            97     2       0      0 irq_thread 0 S [irq/160-arm-smm]        9
9722root            98     2       0      0 irq_thread 0 S [irq/169-arm-smm]        9
9723root           100     2       0      0 irq_thread 0 S [irq/124-tsens-u]        1
9724root           101     2       0      0 irq_thread 0 S [irq/125-tsens-c]        1
9725root           102     2       0      0 irq_thread 0 S [irq/126-tsens-u]        1
9726root           103     2       0      0 irq_thread 0 S [irq/127-tsens-c]        1
9727root           104     2       0      0 rescuer_thread 0 S [edac-poller]        1
9728root           105     2       0      0 ion_heap_deferred_free 0 S [system]     1
9729root           106     2       0      0 ion_heap_deferred_free 0 S [easel_mem]  1
9730root           107     2       0      0 rescuer_thread 0 S [ipa_power_mgmt]     1
9731root           108     2       0      0 rescuer_thread 0 S [transport_power]    1
9732root           109     2       0      0 rescuer_thread 0 S [ipa_rm_wq]          1
9733root           110     2       0      0 rescuer_thread 0 S [devfreq_wq]         1
9734root           111     2       0      0 rescuer_thread 0 S [governor_msm_ad]    1
9735root           112     2       0      0 rescuer_thread 0 S [cfg80211]           1
9736root           113     2       0      0 irq_thread 0 S [irq/540-ibb-sc-]        1
9737root           114     2       0      0 irq_thread 0 S [irq/541-lab-sc-]        1
9738root           116     2       0      0 irq_thread 0 S [irq/74-qpnp_wle]        1
9739root           117     2       0      0 irq_thread 0 S [irq/75-qpnp_wle]        1
9740root           143     2       0      0 kswapd  0 S [kswapd0]                   1
9741root           144     2       0      0 rescuer_thread 0 S [vmstat]             1
9742root           145     2       0      0 ecryptfs_threadfn 0 S [ecryptfs-kthrea] 1
9743root           180     2       0      0 irq_thread 0 S [irq/173-arm-smm]        1
9744root           181     2       0      0 irq_thread 0 S [irq/174-arm-smm]        1
9745root           182     2       0      0 irq_thread 0 S [irq/90-eud_irq]         1
9746root           183     2       0      0 rescuer_thread 0 S [glink_ssr_wq]       1
9747root           184     2       0      0 rescuer_thread 0 S [glink_lbsrv]        1
9748root           185     2       0      0 kthread_worker_fn 0 S [spi_wdsp]        1
9749root           186     2       0      0 kthread_worker_fn 0 S [wdsp_spi_glink_] 1
9750root           187     2       0      0 rescuer_thread 0 S [glink_xprt_wq]      1
9751root           188     2       0      0 rescuer_thread 0 S [IPCRTR_mpss_sme]    1
9752root           189     2       0      0 rescuer_thread 0 S [IPCRTR_lpass_sm]    1
9753root           190     2       0      0 rescuer_thread 0 S [IPCRTR_dsps_sme]    1
9754root           191     2       0      0 rescuer_thread 0 S [IPCRTR_cdsp_sme]    1
9755root           192     2       0      0 rescuer_thread 0 S [glink_pkt_wq]       1
9756root           193     2       0      0 irq_thread 0 S [irq/175-arm-smm]        1
9757root           194     2       0      0 rescuer_thread 0 S [qmi_svc_event_w]    1
9758root           195     2       0      0 rescuer_thread 0 S [msm_ipc_router]     1
9759root           197     2       0      0 rescuer_thread 0 S [servloc_wq]         1
9760root           198     2       0      0 irq_thread 0 S [irq/176-arm-smm]        1
9761root           199     2       0      0 irq_thread 0 S [irq/177-arm-smm]        1
9762root           200     2       0      0 add_hwgenerator_randomness 0 S [hwrng]  2
9763root           202     2       0      0 rescuer_thread 0 S [diag_real_time_]    2
9764root           203     2       0      0 rescuer_thread 0 S [diag_wq]            2
9765root           204     2       0      0 rescuer_thread 0 S [DIAG_USB_diag]      2
9766root           205     2       0      0 rescuer_thread 0 S [diag_cntl_wq]       2
9767root           206     2       0      0 rescuer_thread 0 S [diag_dci_wq]        2
9768root           207     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9769root           208     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9770root           209     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9771root           210     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9772root           211     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9773root           212     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9774root           213     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9775root           214     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9776root           215     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9777root           216     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9778root           217     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9779root           218     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9780root           219     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9781root           220     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9782root           221     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9783root           222     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9784root           223     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9785root           224     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9786root           225     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9787root           226     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9788root           227     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
9789root           228     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
9790root           229     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
9791root           230     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
9792root           231     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
9793root           232     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
9794root           233     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
9795root           234     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
9796root           235     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
9797root           236     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
9798root           237     2       0      0 rescuer_thread 0 S [DIAG_CNTL_SOCKE]    2
9799root           238     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9800root           239     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9801root           240     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9802root           241     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9803root           242     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9804root           243     2       0      0 diag_socket_read 0 S [kworker/u16:1]    2
9805root           244     2       0      0 rescuer_thread 0 S [kgsl-workqueue]     2
9806root           245     2       0      0 rescuer_thread 0 S [kgsl-mementry]      2
9807root           246     2       0      0 kthread_worker_fn 0 S [kgsl_worker_thr] 2
9808root           247     2       0      0 irq_thread 0 S [irq/161-arm-smm]        2
9809root           248     2       0      0 irq_thread 0 S [irq/162-arm-smm]        2
9810root           250     2       0      0 irq_thread 0 S [irq/170-arm-smm]        2
9811root           251     2       0      0 irq_thread 0 S [irq/163-arm-smm]        2
9812root           252     2       0      0 irq_thread 0 S [irq/178-arm-smm]        2
9813root           253     2       0      0 kthread_worker_fn 0 S [crtc_commit:111] 2
9814root           254     2       0      0 kthread_worker_fn 0 S [crtc_event:111]  2
9815root           255     2       0      0 kthread_worker_fn 0 S [crtc_commit:163] 2
9816root           256     2       0      0 kthread_worker_fn 0 S [crtc_event:163]  2
9817root           257     2       0      0 kthread_worker_fn 0 S [pp_event]        2
9818root           258     2       0      0 rescuer_thread 0 S [kgsl-events]        2
9819root           259     2       0      0 rescuer_thread 0 S [kgsl_devfreq_wq]    2
9820root           260     2       0      0 rescuer_thread 0 S [bioset]             2
9821root           261     2       0      0 rescuer_thread 0 S [bioset]             2
9822root           262     2       0      0 rescuer_thread 0 S [bioset]             2
9823root           263     2       0      0 rescuer_thread 0 S [bioset]             2
9824root           264     2       0      0 rescuer_thread 0 S [bioset]             2
9825root           265     2       0      0 rescuer_thread 0 S [bioset]             2
9826root           266     2       0      0 rescuer_thread 0 S [bioset]             2
9827root           267     2       0      0 rescuer_thread 0 S [bioset]             2
9828root           268     2       0      0 rescuer_thread 0 S [bioset]             2
9829root           269     2       0      0 rescuer_thread 0 S [bioset]             2
9830root           270     2       0      0 rescuer_thread 0 S [bioset]             2
9831root           271     2       0      0 rescuer_thread 0 S [bioset]             2
9832root           272     2       0      0 rescuer_thread 0 S [bioset]             2
9833root           273     2       0      0 rescuer_thread 0 S [bioset]             2
9834root           274     2       0      0 rescuer_thread 0 S [bioset]             2
9835root           275     2       0      0 rescuer_thread 0 S [bioset]             2
9836root           276     2       0      0 rescuer_thread 0 S [bioset]             2
9837root           277     2       0      0 rescuer_thread 0 S [bioset]             2
9838root           278     2       0      0 rescuer_thread 0 S [bioset]             2
9839root           279     2       0      0 rescuer_thread 0 S [bioset]             2
9840root           280     2       0      0 rescuer_thread 0 S [bioset]             2
9841root           281     2       0      0 rescuer_thread 0 S [bioset]             2
9842root           282     2       0      0 rescuer_thread 0 S [bioset]             2
9843root           283     2       0      0 rescuer_thread 0 S [bioset]             2
9844root           284     2       0      0 rescuer_thread 0 S [bioset]             2
9845root           285     2       0      0 rescuer_thread 0 S [memory_wq]          2
9846root           286     2       0      0 irq_thread 0 S [irq/179-arm-smm]        2
9847root           287     2       0      0 irq_thread 0 S [irq/180-arm-smm]        2
9848root           288     2       0      0 irq_thread 0 S [irq/181-arm-smm]        2
9849root           289     2       0      0 rescuer_thread 0 S [qcrypto_seq_res]    2
9850root           290     2       0      0 irq_thread 0 S [irq/182-arm-smm]        2
9851root           311     2       0      0 scsi_error_handler 0 S [scsi_eh_0]      3
9852root           312     2       0      0 rescuer_thread 0 S [scsi_tmf_0]         3
9853root           313     2       0      0 rescuer_thread 0 S [ufs_pm_qos_0]       3
9854root           314     2       0      0 rescuer_thread 0 S [ufs_clk_gating_]    3
9855root           315     2       0      0 rescuer_thread 0 S [ufs_mgc_hibern8]    3
9856root           316     2       0      0 rescuer_thread 0 S [ice-set-key]        3
9857root           317     2       0      0 kthread_worker_fn 0 S [spi10]           3
9858root           318     2       0      0 kthread_worker_fn 0 S [spi32766]        3
9859root           319     2       0      0 kthread_worker_fn 0 S [spi0]            3
9860root           320     2       0      0 kthread_worker_fn 0 S [spi32765]        3
9861root           321     2       0      0 rescuer_thread 0 S [bond0]              3
9862root           322     2       0      0 rescuer_thread 0 S [sharedmem_qmi_w]    3
9863root           323     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    3
9864root           324     2       0      0 diag_socket_read 0 S [kworker/u16:2]    3
9865root           325     2       0      0 diag_socket_read 0 S [kworker/u16:3]    3
9866root           330     2       0      0 rescuer_thread 0 S [uether]             3
9867root           331     2       0      0 rescuer_thread 0 S [k_ipa_usb]          3
9868root           334     2       0      0 irq_thread 0 S [irq/377-soc:fp_]        3
9869root           336     2       0      0 rescuer_thread 0 S [bioset]             3
9870root           337     2       0      0 irq_thread 0 S [irq/29-i2c_pmic]        3
9871root           338     2       0      0 rescuer_thread 0 S [bioset]             3
9872root           339     2       0      0 rescuer_thread 0 S [bioset]             3
9873root           340     2       0      0 rescuer_thread 0 S [bioset]             3
9874root           342     2       0      0 rescuer_thread 0 S [msm_vidc_worker]    3
9875root           343     2       0      0 rescuer_thread 0 S [pm_workerq_venu]    3
9876root           344     2       0      0 irq_thread 0 S [irq/183-arm-smm]        3
9877root           345     2       0      0 irq_thread 0 S [irq/184-arm-smm]        3
9878root           346     2       0      0 rescuer_thread 0 S [bioset]             3
9879root           347     2       0      0 irq_thread 0 S [irq/185-arm-smm]        3
9880root           348     2       0      0 rescuer_thread 0 S [bioset]             3
9881root           349     2       0      0 irq_thread 0 S [irq/186-arm-smm]        3
9882root           350     2       0      0 rescuer_thread 0 S [bioset]             3
9883root           351     2       0      0 rescuer_thread 0 S [bioset]             3
9884root           352     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_0] 3
9885root           353     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_1] 3
9886root           354     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_0]   3
9887root           355     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_1]   3
9888root           356     2       0      0 rescuer_thread 0 S [bioset]             3
9889root           357     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_0]  3
9890root           358     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_1]  3
9891root           359     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_2]  3
9892root           360     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_3]  3
9893root           361     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_4]  3
9894root           362     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_5]  3
9895root           363     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_6]  3
9896root           364     2       0      0 diag_socket_read 0 S [kworker/u16:4]    3
9897root           365     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_7]  3
9898root           366     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_8]  3
9899root           367     2       0      0 diag_socket_read 0 S [kworker/u16:5]    3
9900root           368     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_9]  3
9901root           369     2       0      0 diag_socket_read 0 S [kworker/u16:6]    3
9902root           370     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_10] 3
9903root           371     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_11] 3
9904root           372     2       0      0 diag_socket_read 0 S [kworker/u16:7]    3
9905root           373     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_12] 3
9906root           374     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_13] 3
9907root           375     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_14] 3
9908root           376     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_15] 3
9909root           377     2       0      0 rescuer_thread 0 S [cam-cpas]           3
9910root           378     2       0      0 rescuer_thread 0 S [qcom,cam_virtua]    3
9911root           379     2       0      0 irq_thread 0 S [irq/187-arm-smm]        3
9912root           380     2       0      0 rescuer_thread 0 S [qcom,cam170-cpa]    3
9913root           381     2       0      0 irq_thread 0 S [irq/188-arm-smm]        3
9914root           382     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
9915root           383     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
9916root           384     2       0      0 irq_thread 0 S [irq/189-arm-smm]        3
9917root           385     2       0      0 irq_thread 0 S [irq/190-arm-smm]        3
9918root           386     2       0      0 irq_thread 0 S [irq/191-arm-smm]        3
9919root           387     2       0      0 irq_thread 0 S [irq/192-arm-smm]        3
9920root           388     2       0      0 irq_thread 0 S [irq/711-chg-err]        3
9921root           389     2       0      0 irq_thread 0 S [irq/712-chg-sta]        3
9922root           390     2       0      0 irq_thread 0 S [irq/716-otg-fai]        3
9923root           391     2       0      0 irq_thread 0 S [irq/717-otg-ove]        3
9924root           392     2       0      0 irq_thread 0 S [irq/718-otg-oc-]        3
9925root           393     2       0      0 irq_thread 0 S [irq/719-testmod]        3
9926root           394     2       0      0 irq_thread 0 S [irq/720-bat-tem]        3
9927root           395     2       0      0 irq_thread 0 S [irq/721-bat-ocp]        3
9928root           396     2       0      0 irq_thread 0 S [irq/722-bat-ov]         3
9929root           397     2       0      0 irq_thread 0 S [irq/723-bat-low]        3
9930root           398     2       0      0 irq_thread 0 S [irq/724-bat-the]        3
9931root           399     2       0      0 irq_thread 0 S [irq/725-bat-ter]        3
9932root           400     2       0      0 irq_thread 0 S [irq/726-usbin-c]        4
9933root           401     2       0      0 irq_thread 0 S [irq/727-usbin-l]        4
9934root           402     2       0      0 irq_thread 0 S [irq/728-usbin-u]        4
9935root           403     2       0      0 irq_thread 0 S [irq/729-usbin-o]        4
9936root           404     2       0      0 irq_thread 0 S [irq/730-usbin-p]        4
9937root           405     2       0      0 irq_thread 0 S [irq/731-usbin-s]        4
9938root           406     2       0      0 irq_thread 0 S [irq/732-usbin-i]        4
9939root           407     2       0      0 irq_thread 0 S [irq/733-type-c-]        4
9940root           408     2       0      0 irq_thread 0 S [irq/734-dcin-co]        4
9941root           409     2       0      0 irq_thread 0 S [irq/735-dcin-lt]        4
9942root           410     2       0      0 irq_thread 0 S [irq/736-dcin-uv]        4
9943root           411     2       0      0 irq_thread 0 S [irq/737-dcin-ov]        4
9944root           412     2       0      0 irq_thread 0 S [irq/738-dcin-pl]        4
9945root           413     2       0      0 irq_thread 0 S [irq/739-div2-en]        4
9946root           414     2       0      0 irq_thread 0 S [irq/740-dcin-ic]        4
9947root           415     2       0      0 irq_thread 0 S [irq/742-wdog-ba]        4
9948root           416     2       0      0 irq_thread 0 S [irq/743-aicl-fa]        4
9949root           417     2       0      0 irq_thread 0 S [irq/744-aicl-do]        4
9950root           418     2       0      0 irq_thread 0 S [irq/745-high-du]        4
9951root           419     2       0      0 irq_thread 0 S [irq/746-input-c]        4
9952root           420     2       0      0 irq_thread 0 S [irq/747-tempera]        4
9953root           421     2       0      0 irq_thread 0 S [irq/748-switche]        4
9954root           422     2       0      0 irq_thread 0 S [irq/380-p9221-i]        4
9955root           423     2       0      0 irq_thread 0 S [irq/292-p9221-i]        4
9956root           424     2       0      0 irq_thread 0 S [irq/69-bcl-high]        4
9957root           425     2       0      0 irq_thread 0 S [irq/71-bcl-low-]        4
9958root           426     2       0      0 irq_thread 0 S [irq/542-limits_]        4
9959root           427     2       0      0 irq_thread 0 S [irq/543-limits_]        4
9960root           428     2       0      0 rescuer_thread 0 S [qmi_tmd_wq]         4
9961root           429     2       0      0 rescuer_thread 0 S [dm_bufio_cache]     4
9962root           430     2       0      0 irq_thread 0 S [irq/98-KRYO3XX ]        4
9963root           431     2       0      0 irq_thread 0 S [irq/370-s2mpb04]        4
9964root           432     2       0      0 irq_thread 0 S [irq/286-s2mpb04]        4
9965root           433     2       0      0 irq_thread 0 S [irq/51-vendor:e]        4
9966root           434     2       0      0 irq_thread 0 S [irq/193-arm-smm]        4
9967root           435     2       0      0 rescuer_thread 0 S [uaudio_svc]         4
9968root           436     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    4
9969root           437     2       0      0 rescuer_thread 0 S [apr_driver]         4
9970root           438     2       0      0 rescuer_thread 0 S [ipv6_addrconf]      4
9971root           439     2       0      0 irq_thread 0 S [irq/879-adsp]           4
9972root           441     2       0      0 rescuer_thread 0 S [sysmon_wq]          4
9973root           442     2       0      0 irq_thread 0 S [irq/911-slpi]           4
9974root           443     2       0      0 irq_thread 0 S [irq/943-cdsp]           4
9975root           444     2       0      0 irq_thread 0 S [irq/847-modem]          4
9976root           452     2       0      0 irq_thread 0 S [irq/38-sig-tx]          4
9977root           453     2       0      0 irq_thread 0 S [irq/57-sig-rx]          4
9978root           454     2       0      0 rescuer_thread 0 S [usbpd0]             4
9979root           455     2       0      0 rescuer_thread 0 S [usbpd0]             4
9980root           456     2       0      0 irq_thread 0 S [irq/1039-soc-up]        4
9981root           457     2       0      0 irq_thread 0 S [irq/1040-soc-re]        4
9982root           458     2       0      0 irq_thread 0 S [irq/1041-bsoc-d]        4
9983root           459     2       0      0 irq_thread 0 S [irq/1042-msoc-d]        4
9984root           460     2       0      0 irq_thread 0 S [irq/1043-msoc-l]        4
9985root           461     2       0      0 irq_thread 0 S [irq/1044-msoc-e]        4
9986root           462     2       0      0 irq_thread 0 S [irq/1045-msoc-h]        4
9987root           463     2       0      0 irq_thread 0 S [irq/1046-msoc-f]        4
9988root           464     2       0      0 irq_thread 0 S [irq/1047-vbatt-]        4
9989root           465     2       0      0 irq_thread 0 S [irq/1048-vbatt-]        4
9990root           466     2       0      0 irq_thread 0 S [irq/1049-esr-de]        4
9991root           467     2       0      0 irq_thread 0 S [irq/1050-batt-m]        4
9992root           468     2       0      0 irq_thread 0 S [irq/1051-batt-t]        4
9993root           469     2       0      0 irq_thread 0 S [irq/1052-ima-rd]        4
9994root           470     2       0      0 irq_thread 0 S [irq/1053-mem-xc]        4
9995root           471     2       0      0 irq_thread 0 S [irq/1054-dma-gr]        4
9996root           472     2       0      0 irq_thread 0 S [irq/36-qcom,tem]        4
9997root           473     2       0      0 irq_thread 0 S [irq/535-pwr_eve]        4
9998root           474     2       0      0 irq_thread 0 S [irq/534-dp_hs_p]        4
9999root           475     2       0      0 irq_thread 0 S [irq/537-dm_hs_p]        4
10000root           476     2       0      0 irq_thread 0 S [irq/536-ss_phy_]        4
10001root           477     2       0      0 irq_thread 0 S [irq/194-arm-smm]        4
10002root           478     2       0      0 rescuer_thread 0 S [usb_bam_wq]         4
10003root           480     2       0      0 try_core_ctl 0 S [core_ctl/0]           4
10004root           481     2       0      0 try_core_ctl 0 S [core_ctl/4]           4
10005root           491     2       0      0 rescuer_thread 0 S [rq_stats]           4
10006root           492     2       0      0 irq_thread 0 S [irq/195-arm-smm]        4
10007root           493     2       0      0 irq_thread 0 S [irq/196-arm-smm]        4
10008root           494     2       0      0 irq_thread 0 S [irq/197-arm-smm]        4
10009root           495     2       0      0 irq_thread 0 S [irq/198-arm-smm]        4
10010root           496     2       0      0 irq_thread 0 S [irq/199-arm-smm]        4
10011root           497     2       0      0 irq_thread 0 S [irq/200-arm-smm]        4
10012root           498     2       0      0 irq_thread 0 S [irq/201-arm-smm]        4
10013root           499     2       0      0 irq_thread 0 S [irq/202-arm-smm]        4
10014root           500     2       0      0 irq_thread 0 S [irq/203-arm-smm]        5
10015root           501     2       0      0 irq_thread 0 S [irq/204-arm-smm]        5
10016root           502     2       0      0 irq_thread 0 S [irq/205-arm-smm]        5
10017root           503     2       0      0 kthread_worker_fn 0 S [set_state_work]  5
10018root           504     2       0      0 rescuer_thread 0 S [sb-1]               5
10019root           505     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread1] 5
10020root           506     2       0      0 irq_thread 0 S [irq/308-mnh-rea]        5
10021root           507     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl1]  5
10022root           508     2       0      0 rescuer_thread 0 S [sb-3]               5
10023root           509     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread3] 5
10024root           510     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl3]  5
10025root           511     2       0      0 rescuer_thread 0 S [tbn_event_proce]    5
10026root           512     2       0      0 irq_thread 0 S [irq/78-qpnp_fla]        5
10027root           513     2       0      0 irq_thread 0 S [irq/77-qpnp_fla]        5
10028root           514     2       0      0 irq_thread 0 S [irq/76-qpnp_fla]        5
10029root           515     2       0      0 irq_thread 0 S [irq/1056-mnh_pc]        5
10030root           516     2       0      0 irq_thread 0 S [irq/1057-mnh_pc]        5
10031root           517     2       0      0 irq_thread 0 S [irq/1058-mnh_pc]        5
10032root           518     2       0      0 irq_thread 0 S [irq/1059-mnh_pc]        5
10033root           519     2       0      0 irq_thread 0 S [irq/1060-mnh_pc]        5
10034root           520     2       0      0 irq_thread 0 S [irq/1063-mnh_pc]        5
10035root           521     2       0      0 irq_thread 0 S [irq/1064-mnh_pc]        5
10036root           522     2       0      0 irq_thread 0 S [irq/206-arm-smm]        5
10037root           524     2       0      0 worker_thread 0 S [kworker/4:1H]        5
10038root           525     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10039root           526     2       0      0 irq_thread 0 S [irq/318-max1720]        5
10040root           530     2       0      0 worker_thread 0 S [kworker/5:1H]        5
10041root           531     2       0      0 worker_thread 0 S [kworker/0:1H]        5
10042root           533     2       0      0 worker_thread 0 S [kworker/1:1H]        5
10043root           535     2       0      0 kjournald2 0 S [jbd2/sdf2-8]            5
10044root           536     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10045root           537     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10046root           538     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10047root           539     2       0      0 worker_thread 0 S [kworker/6:1H]        5
10048root           540     1   11724   3272 do_sys_poll 0 S init                    init
10049root           541     1   11080   2880 do_sys_poll 0 S init                    init
10050root           542     1   13384   3288 do_sys_poll 0 S ueventd                 init
10051root           544     2       0      0 worker_thread 0 S [kworker/7:1H]        5
10052root           546     2       0      0 irq_thread 0 S [irq/381-fts]            5
10053logd           555     1   30408  13716 SyS_rt_sigsuspend 0 S logd              logd
10054system         556     1   15876   3680 do_wait 0 S qseecomd                    qseecomd
10055system         557     1   17460   3660 binder_ioctl 0 S android.hardware.keyprimary@4.0-service-qti android.hardware.keyprimary@4.0-service-qti
10056root           559     2       0      0 kthread_worker_fn 0 S [sugov:0]         5
10057root           560     2       0      0 kthread_worker_fn 0 S [sugov:4]         5
10058root           565     2       0      0 kauditd_thread 0 S [kauditd]            5
10059root           567     1 2124376   5728 binder_ioctl 0 S vold                   vold
10060system         568     1 2114160   4780 binder_ioctl 0 S hwservicemanager       hwservicemanager
10061root           575     2       0      0 kjournald2 0 S [jbd2/sda20-8]           5
10062system         576   556   29756   2332 SyS_rt_sigsuspend 0 S qseecomd          qseecomd
10063root           580     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10064system         587     1   10416   2464 binder_ioctl 0 S servicemanager         servicemanager
10065system         588     1   11188   2556 binder_ioctl 0 S vndservicemanager      vndservicemanager
10066root           590     1   12516   3088 binder_ioctl 0 S android.hardware.boot@1.0-service android.hardware.boot@1.0-service
10067system         591     1   13968   3292 binder_ioctl 0 S android.hardware.gatekeeper@1.0-service-qti android.hardware.gatekeeper@1.0-service-qti
10068hsm            592     1 2127108   6116 binder_ioctl 0 S android.hardware.keyprimary@4.0-service.citadel android.hardware.keyprimary@4.0-service.citadel
10069hsm            593     1   16388   2880 binder_ioctl 0 S citadeld               citadeld
10070system         595     1   20052   4528 do_sys_poll 0 S sscrpcd                 sscrpcd
10071system         598     1 2142956  14468 binder_ioctl 0 S android.hardware.graphics.composer@2.2-service android.hardware.graphics.composer@2.2-service
10072system         599     1   16816   3124 binder_ioctl 0 S android.hardware.configstore@1.1-service android.hardware.configstore@1.1-service
10073root           625     2       0      0 irq_thread 0 S [irq/164-arm-smm]        6
10074root           645     2       0      0 rescuer_thread 0 S [cds_recovery_wo]    6
10075root           646     2       0      0 wlan_logging_thread 0 S [wlan_logging_th] 6
10076root           651     2       0      0 rescuer_thread 0 S [dsps_IPCRTR]        6
10077root           652     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
10078root           653     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
10079root           658     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
10080root           665     2       0      0 irq_thread 0 S [irq/371-cs35l36]        6
10081root           666     2       0      0 irq_thread 0 S [irq/296-cs35l36]        6
10082root           673     2       0      0 rescuer_thread 0 S [kdmflush]           6
10083root           674     2       0      0 rescuer_thread 0 S [bioset]             6
10084root           677     2       0      0 issue_flush_thread 0 S [f2fs_flush-253:] 6
10085root           678     2       0      0 issue_discard_thread 0 S [f2fs_discard-25] 6
10086root           679     2       0      0 gc_thread_func 0 S [f2fs_gc-253:0]      6
10087system         681     1   20836   2940 futex_wait_queue_me 0 S time_daemon     time_daemon
10088root           697     2       0      0 worker_thread 0 S [kworker/3:1H]        6
10089root           707     2       0      0 irq_thread 0 S [irq/207-arm-smm]        7
10090root           708     2       0      0 irq_thread 0 S [irq/208-arm-smm]        7
10091root           709     2       0      0 irq_thread 0 S [irq/209-arm-smm]        7
10092root           712     2       0      0 rescuer_thread 0 S [ipa_interrupt_w]    7
10093root           713     2       0      0 rescuer_thread 0 S [ipawq36]            7
10094root           714     2       0      0 rescuer_thread 0 S [iparepwq36]         7
10095root           715     2       0      0 rescuer_thread 0 S [ipawq33]            7
10096root           716     2       0      0 rescuer_thread 0 S [iparepwq33]         7
10097root           717     2       0      0 rescuer_thread 0 S [ipawq32]            7
10098root           718     2       0      0 rescuer_thread 0 S [iparepwq32]         7
10099root           719     2       0      0 rescuer_thread 0 S [ipa_ut_dbgfs]       7
10100root           720     2       0      0 rescuer_thread 0 S [ipa_A7_svc]         7
10101root           722     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    7
10102root           723     2       0      0 rescuer_thread 0 S [clnt_req]           7
10103root           724     2       0      0 rescuer_thread 0 S [clnt_req]           7
10104root           725     2       0      0 rescuer_thread 0 S [clnt_resp]          7
10105root           750     2       0      0 rescuer_thread 0 S [at_usb0]            7
10106root           751     2       0      0 rescuer_thread 0 S [at_usb1]            7
10107root           752     2       0      0 rescuer_thread 0 S [qdss]               7
10108system         753     1   12472   3212 binder_ioctl 0 S android.hidl.allocator@1.0-service android.hidl.allocator@1.0-service
10109vendor_pixelstats_system 754 1 12544 3236 binder_ioctl 0 S hardware.google.pixelstats@1.0-service hardware.google.pixelstats@1.0-service
10110system         755     1 2120564   4896 binder_ioctl 0 S vr_hwc                 vr_hwc
10111system         756     1 2120204   5756 binder_ioctl 0 S android.hardware.neuralnetworks@1.0-service-paintbox android.hardware.neuralnetworks@1.0-service-paintbox
10112audioserver    757     1   47928  14868 binder_ioctl 0 S android.hardware.audio@2.0-service android.hardware.audio@2.0-service
10113hsm            758     1   18672   5464 binder_ioctl 0 S android.hardware.authsecret@1.0-service.citadel android.hardware.authsecret@1.0-service.citadel
10114bluetooth      759     1   25884   4128 binder_ioctl 0 S android.hardware.bluetooth@1.0-service-qti android.hardware.bluetooth@1.0-service-qti
10115cameraserver   760     1 2224040  32104 binder_ioctl 0 S android.hardware.camera.provider@2.4-service_64 android.hardware.camera.provider@2.4-service_64
10116media          761     1   11312   3088 binder_ioctl 0 S android.hardware.cas@1.0-service android.hardware.cas@1.0-service
10117system         763     1 2112736   3128 binder_ioctl 0 S android.hardware.contexthub@1.0-service android.hardware.contexthub@1.0-service
10118media          764     1   19516   4136 binder_ioctl 0 S android.hardware.drm@1.0-service android.hardware.drm@1.0-service
10119media          765     1   19668   4296 binder_ioctl 0 S android.hardware.drm@1.1-service.clearkey android.hardware.drm@1.1-service.clearkey
10120media          766     1   23804   5072 binder_ioctl 0 S android.hardware.drm@1.1-service.widevine android.hardware.drm@1.1-service.widevine
10121gps            767     1   42972   7584 binder_ioctl 0 S android.hardware.gnss@1.1-service-qti android.hardware.gnss@1.1-service-qti
10122system         769     1   12348   3088 binder_ioctl 0 S android.hardware.light@2.0-service android.hardware.light@2.0-service
10123system         770     1   12332   3148 binder_ioctl 0 S android.hardware.memtrack@1.0-service android.hardware.memtrack@1.0-service
10124system         771     1  216784   5272 binder_ioctl 0 S android.hardware.neuralnetworks@1.1-service-qti android.hardware.neuralnetworks@1.1-service-qti
10125nfc            772     1   20752   3816 binder_ioctl 0 S android.hardware.nfc@1.1-service android.hardware.nfc@1.1-service
10126hsm            773     1   17640   5264 binder_ioctl 0 S android.hardware.oemlock@1.0-service.citadel android.hardware.oemlock@1.0-service.citadel
10127secure_element 775     1   14180   3760 binder_ioctl 0 S android.hardware.secure_element@1.0-service android.hardware.secure_element@1.0-service
10128hsm            782     1   17624   5252 binder_ioctl 0 S android.hardware.weaver@1.0-service.citadel android.hardware.weaver@1.0-service.citadel
10129wifi           783     1   22948   9104 binder_ioctl 0 S android.hardware.wifi@1.0-service android.hardware.wifi@1.0-service
10130radio          784     1   21824   3728 binder_ioctl 0 S vendor.google.radioext@1.0-service vendor.google.radioext@1.0-service
10131system         785     1   12380   2980 binder_ioctl 0 S vendor.google.wireless_charger@1.0-service-vendor vendor.google.wireless_charger@1.0-service-vendor
10132system         786     1   19640   3816 binder_ioctl 0 S vendor.qti.hardware.display.allocator@1.0-service vendor.qti.hardware.display.allocator@1.0-service
10133nobody         787     1   13536   3624 binder_ioctl 0 S vendor.qti.hardware.tui_comm@1.0-service-qti vendor.qti.hardware.tui_comm@1.0-service-qti
10134mediacodec     788     1   23392   8344 binder_ioctl 0 S vendor.qti.media.c2@1.0-service vendor.qti.media.c2@1.0-service
10135system         789     1   25164   3144 do_sigtimedwait 0 S pm-service          pm-service
10136system         790     1   17792   4540 hrtimer_nanosleep 0 S sensors.qti       sensors.qti
10137root           796     2       0      0 rescuer_thread 0 S [cdsp_IPCRTR]        7
10138nobody         800     1   18492   2220 do_select 0 S rmt_storage               rmt_storage
10139vendor_rfs     801     1   12220   2392 do_sys_poll 0 S tftp_server             tftp_server
10140system         802     1   15460   2716 hrtimer_nanosleep 0 S pd-mapper         pd-mapper
10141root           805     1   10056   2392 do_sys_poll 0 S msm_irqbalance          msm_irqbalance
10142audioserver    806     1  100080  14480 binder_ioctl 0 S audioserver            audioserver
10143system         807     1 2113012   4812 SyS_epoll_wait 0 S bufferhubd           bufferhubd
10144lmkd           808     1    9204   1780 SyS_epoll_wait 0 S lmkd                 lmkd
10145system         810     1 2109736   3300 SyS_epoll_wait 0 S performanced         performanced
10146system         811     1 2116668   4004 binder_ioctl 0 S thermalserviced        thermalserviced
10147system         812     1 2113496   3148 binder_ioctl 0 S virtual_touchpad       virtual_touchpad
10148u0_a16         817 23897 3678572  52092 SyS_epoll_wait 0 S com.google.android.carrier app_process64
10149root           820     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
10150root           821     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
10151root           827     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
10152root           834     2       0      0 rescuer_thread 0 S [adsp]               8
10153root           837     2       0      0 rescuer_thread 0 S [modem]              8
10154root           842     1   17692   2752 do_sys_poll 0 S subsystem_ramdump       subsystem_ramdump
10155graphics       843     1   19956   4408 do_sys_poll 0 S mm-pp-dpps              mm-pp-dpps
10156shell          844     1   18008   2780 hrtimer_nanosleep 0 S diag_mdlog        diag_mdlog
10157root           847     1   79208   3640 SyS_rt_sigsuspend 0 S thermal-engine    thermal-engine
10158media          848     1   14452   2676 do_sys_poll 0 S adsprpcd                adsprpcd
10159system         849     1   14584   2212 do_sys_poll 0 S cdsprpcd                cdsprpcd
10160root           850     2       0      0 worker_thread 0 S [kworker/2:1H]        8
10161system         853     1   15460   2692 do_select 0 S imsqmidaemon              imsqmidaemon
10162root           854     2       0      0 rescuer_thread 0 S [lpass_IPCRTR]       8
10163radio          855     1 2143196   6548 SyS_epoll_wait 0 S cnd                  cnd
10164radio          856     1  128632   8660 __skb_wait_for_more_packets 0 S netmgrd netmgrd
10165radio          857     1   13584   2196 futex_wait_queue_me 0 S port-bridge     port-bridge
10166radio          858     1   20872   4004 futex_wait_queue_me 0 S ipacm           ipacm
10167radio          859     1   20460   2992 do_select 0 S qti                       qti
10168cameraserver   862     1   32436   8684 binder_ioctl 0 S cameraserver           cameraserver
10169drm            869     1   19796   6828 binder_ioctl 0 S drmserver              drmserver
10170incidentd      870     1 2115856   3936 SyS_epoll_wait 0 S incidentd            incidentd
10171root           873     1 2125020   5280 binder_ioctl 0 S installd               installd
10172keystore       878     1 2119272   5648 binder_ioctl 0 S keystore               keystore
10173media          881     1 2126584   4988 binder_ioctl 0 S mediadrmserver         mediadrmserver
10174mediaex        882     1 2168764  12272 binder_ioctl 0 S media.extractor        mediaextractor
10175media          883     1 2138916   8200 binder_ioctl 0 S media.metrics          mediametrics
10176media          884     1   56664  12108 binder_ioctl 0 S mediaserver            mediaserver
10177statsd         887     1 203499360 33776 SyS_epoll_wait 0 S statsd              statsd
10178u0_a33         911 23897 3681944  56340 SyS_epoll_wait 0 S com.google.android.apps.gcs app_process64
10179root           921     1 2121856   5108 binder_ioctl 0 S storaged               storaged
10180wifi           923     1 2114444   4836 SyS_epoll_wait 0 S wificond             wificond
10181mediacodec     925     1   44976  12108 binder_ioctl 0 S media.codec            android.hardware.media.omx@1.0-service
10182root           928     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
10183nobody         929     1   18276   3872 binder_ioctl 0 S easelmanagerd          easelmanagerd
10184root           930     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
10185root           931     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
10186radio          933     1  114924  21176 binder_ioctl 0 S qcrild                 qcrild
10187root           949     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
10188root           952     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
10189system         956     1   26540   3812 do_sys_poll 0 S cnss-daemon             cnss-daemon
10190root           958     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
10191gps            959     1   14592   2492 futex_wait_queue_me 0 S loc_launcher    loc_launcher
10192root           960     2       0      0 diag_socket_read 0 S [kworker/u16:8]    9
10193system         961     1   19932   4172 do_sys_poll 0 S chre                    chre
10194system         963     1 2115032   4732 binder_ioctl 0 S gatekeeperd            gatekeeperd
10195root           964     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
10196root           968     2       0      0 irq_thread 0 S [irq/210-arm-smm]        9
10197root           970     2       0      0 irq_thread 0 S [irq/211-arm-smm]        9
10198root           974     2       0      0 irq_thread 0 S [irq/212-arm-smm]        9
10199root           975     1 2115372   3628 binder_ioctl 0 S perfprofd              perfprofd
10200tombstoned     977     1    9096   1716 SyS_epoll_wait 0 S tombstoned           tombstoned
10201root           994     1 2117956   6092 SyS_epoll_wait 0 S update_engine        update_engine
10202system         997     1   17728   3732 binder_ioctl 0 S android.hardware.biometrics.fingerprint@2.1-service.fpc android.hardware.biometrics.fingerprint@2.1-service.fpc
10203root          1000     2       0      0 irq_thread 0 S [irq/310-wcd9xxx]        1
10204gps           1004   959 2132144   3868 futex_wait_queue_me 0 S lowi-server     lowi-server
10205gps           1005   959   24740   5112 __skb_wait_for_more_packets 0 S xtra-daemon xtra-daemon
10206root          1007     1   31096   3312 do_sys_poll 0 S adbd                    adbd
10207system        1017     1 2137596   5104 do_select 0 S imsdatadaemon             imsdatadaemon
10208root          1056     2       0      0 rescuer_thread 0 S [qmi_wq]             1
10209root          1059     2       0      0 diag_socket_read 0 S [kworker/u16:9]    1
10210root          1061     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
10211root          1115     2       0      0 rescuer_thread 0 S [wdsp_glink_wq]      1
10212root          1235     2       0      0 rescuer_thread 0 S [mpss_IPCRTR]        1
10213root          1236     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10214root          1238     2       0      0 worker_thread 0 S [kworker/u16:13]      1
10215root          1239     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10216root          1273     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10217root          1277     2       0      0 diag_socket_read 0 S [kworker/u16:14]   1
10218root          1280     2       0      0 diag_socket_read 0 S [kworker/u16:17]   1
10219root          1281     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10220root          1284     2       0      0 worker_thread 0 S [kworker/u16:18]      1
10221root          1624     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10222root          1931     2       0      0 rescuer_thread 0 S [ipawq34]            1
10223root          1932     2       0      0 rescuer_thread 0 S [iparepwq34]         1
10224root          1934     2       0      0 rescuer_thread 0 S [ipawq35]            1
10225root          1935     2       0      0 rescuer_thread 0 S [iparepwq35]         1
10226system        1955     1   31896   5792 binder_ioctl 0 S ims_rtp_daemon         ims_rtp_daemon
10227system        1956     1   29500   5236 binder_ioctl 0 S imsrcsd                imsrcsd
10228system        2074     1   16432   2860 hrtimer_nanosleep 0 S pm-proxy          pm-proxy
10229root          2670     2       0      0 cds_mc_thread 0 S [cds_mc_thread]       2
10230root          2671     2       0      0 cds_ol_rx_thread 0 S [cds_ol_rx_threa]  2
10231root          2674     2       0      0 rescuer_thread 0 S [wmi_rx_event_wo]    2
10232wifi          2697     1 2125972   6028 do_select 0 S wpa_supplicant            wpa_supplicant
10233root         10004     2       0      0 worker_thread 0 S [kworker/7:1]         1
10234u0_a21       12524 23897 3680104  48640 SyS_epoll_wait 0 S com.google.android.apps.tips app_process64
10235u0_a68       12540 23897 3676536  48968 SyS_epoll_wait 0 S com.google.android.partnersetup app_process64
10236root         12567     2       0      0 worker_thread 0 S [kworker/5:1]         1
10237root         12662     2       0      0 worker_thread 0 S [kworker/3:1]         1
10238root         12892     2       0      0 worker_thread 0 S [kworker/7:0]         1
10239u0_a26       12973 23897 3674836  50512 SyS_epoll_wait 0 S com.android.providers.calendar app_process64
10240root         13450     2       0      0 worker_thread 0 S [kworker/0:0]         1
10241root         13633     2       0      0 worker_thread 0 S [kworker/1:0]         1
10242root         13636     2       0      0 worker_thread 0 S [kworker/2:2]         1
10243root         13644     2       0      0 worker_thread 0 S [kworker/3:0]         1
10244root         13647     2       0      0 worker_thread 0 S [kworker/6:2]         1
10245root         13648     2       0      0 worker_thread 0 S [kworker/2:1]         1
10246root         13650     2       0      0 worker_thread 0 S [kworker/1:2]         1
10247root         13651     2       0      0 worker_thread 0 S [kworker/0:1]         1
10248root         13652     2       0      0 worker_thread 0 S [kworker/3:2]         1
10249root         13660     2       0      0 worker_thread 0 S [kworker/2:0]         1
10250root         13678     2       0      0 worker_thread 0 S [kworker/1:1]         1
10251root         13679     2       0      0 worker_thread 0 S [kworker/0:2]         1
10252root         13694  1007    8736   1720 SyS_rt_sigsuspend 0 S sh                sh
10253root         13696 13694    8736    720 SyS_rt_sigsuspend 0 S sh                sh
10254root         13697 13696   10488   2128 0       0 R ps                          toybox
10255root         18284     2       0      0 worker_thread 0 R [kworker/u17:1]       1
10256root         18474     2       0      0 rescuer_thread 0 S [dsi_err_workq]      1
10257root         18488     2       0      0 worker_thread 0 S [kworker/u16:15]      1
10258root         21469     2       0      0 worker_thread 0 S [kworker/6:0]         2
10259root         23076     2       0      0 worker_thread 0 S [kworker/u17:2]       2
10260root         23403     2       0      0 worker_thread 0 S [kworker/4:2]         2
10261root         23868     2       0      0 worker_thread 0 S [kworker/u16:10]      2
10262root         23895     1 2132536   5408 binder_ioctl 0 S netd                   netd
10263system       23896     1 2173536  26960 SyS_epoll_wait 0 S surfaceflinger       surfaceflinger
10264root         23897     1 4254080  81796 do_sys_poll 0 S zygote64                app_process64
10265root         23898     1 1583880  73676 do_sys_poll 0 S zygote                  app_process32
10266root         23899 23895    9268   2088 pipe_read 0 S iptables-restore          iptables
10267root         23900 23895    9280   2244 pipe_read 0 S ip6tables-restore         ip6tables
10268system       23968 23897 4908764 358672 SyS_epoll_wait 0 S system_server        app_process64
10269system       24047     1   31376   6436 binder_ioctl 0 S android.hardware.sensors@1.0-service android.hardware.sensors@1.0-service
10270bluetooth    24119 23897 3729960  65540 SyS_epoll_wait 0 S com.android.bluetooth app_process64
10271u0_a90       24133 23897 3745152  92808 SyS_epoll_wait 0 S com.google.android.inputmethod.latin app_process64
10272u0_a22       24151 23897 3842680 142624 SyS_epoll_wait 0 S com.android.systemui app_process64
10273webview_zygote 24180 23898 1591712 30456 do_sys_poll 0 S webview_zygote         app_process32
10274radio        24249 23897 3683856  51324 SyS_epoll_wait 0 S .dataservices        app_process64
10275root         24254     2       0      0 worker_thread 0 S [kworker/5:0]         2
10276radio        24263 23897 3678680  49380 SyS_epoll_wait 0 S com.qualcomm.qti.telephonyservice app_process64
10277root         24269     2       0      0 worker_thread 0 S [kworker/4:0]         2
10278radio        24280 23897 3675684  46168 SyS_epoll_wait 0 S com.google.android.grilservice app_process64
10279radio        24290 23897 3725476  74876 SyS_epoll_wait 0 S com.android.phone    app_process64
10280u0_a59       24382 23897 3683284  53904 SyS_epoll_wait 0 S com.google.android.ext.services app_process64
10281root         24613     2       0      0 irq_thread 0 S [irq/79-1436400.]        2
10282root         24617     2       0      0 irq_thread 0 S [irq/80-114a000.]        2
10283nfc          24655 23897 3731376  63632 SyS_epoll_wait 0 S com.android.nfc      app_process64
10284secure_element 24670 23897 3676592 46188 SyS_epoll_wait 0 S com.android.se      app_process64
10285radio        24691 23897 3678484  51080 SyS_epoll_wait 0 S com.android.ims.rcsservice app_process64
10286system       24703 23897 3677228  45744 SyS_epoll_wait 0 S com.google.SSRestartDetector app_process64
10287u0_a72       24726 23897 3679068  46996 SyS_epoll_wait 0 S com.qualcomm.qti.services.secureui:sui_service app_process64
10288u0_a6        24741 23897 3798848 117888 SyS_epoll_wait 0 S com.google.android.gms.persistent app_process64
10289u0_a148      24754 23897 3695616  63956 SyS_epoll_wait 0 S com.google.android.projection.gearhead:shared app_process64
10290u0_a34       24772 23897 3683408  53996 SyS_epoll_wait 0 S com.google.android.apps.dreamliner app_process64
10291u0_a39       24795 23897 3697696  64844 SyS_epoll_wait 0 S com.google.android.setupwizard app_process64
10292u0_a15       24808 23898 1019852  52928 SyS_epoll_wait 0 S com.google.android.as app_process32
10293u0_a25       24827 23897 3770092 115656 SyS_epoll_wait 0 S com.google.android.apps.nexuslauncher app_process64
10294u0_a6        24894 23897 3691304  53568 SyS_epoll_wait 0 S com.google.process.gservices app_process64
10295u0_a6        25017 23897 3955424 111364 SyS_epoll_wait 0 S com.google.android.gms app_process64
10296u0_a46       25035 23897 3678376  51720 SyS_epoll_wait 0 S com.google.modemservice app_process64
10297u0_a69       25053 23898 1080388  76100 SyS_epoll_wait 0 S com.android.vending  app_process32
10298radio        25099 23897 3677608  46892 SyS_epoll_wait 0 S com.qualcomm.qcrilmsgtunnel app_process64
10299system       25623 23897 3676980  46196 SyS_epoll_wait 0 S com.qti.diagservices app_process64
10300root         25995     2       0      0 worker_thread 0 S [kworker/u16:16]      2
10301root         25996     2       0      0 diag_socket_read 0 S [kworker/u16:20]   2
10302u0_a92       27538 23897 3678696  46048 SyS_epoll_wait 0 S com.qualcomm.telephony app_process64
10303u0_a23       28152 23897 3687080  58260 SyS_epoll_wait 0 S com.google.android.apps.turbo:aab app_process64
10304u0_a146      30159 23897 3681704  47160 SyS_epoll_wait 0 S com.android.ramdump  app_process64
10305USER           PID   TID CMD
10306root             1     1 init
10307root             2     2 kthreadd
10308root             3     3 ksoftirqd/0
10309root             5     5 kworker/0:0H
10310root             6     6 kworker/u16:0
10311root             7     7 rcu_preempt
10312root             8     8 rcu_sched
10313root             9     9 rcu_bh
10314root            10    10 rcuop/0
10315root            11    11 rcuos/0
10316root            12    12 rcuob/0
10317root            13    13 migration/0
10318root            14    14 lru-add-drain
10319root            15    15 cpuhp/0
10320root            16    16 cpuhp/1
10321root            17    17 migration/1
10322root            18    18 ksoftirqd/1
10323root            20    20 kworker/1:0H
10324root            21    21 rcuop/1
10325root            22    22 rcuos/1
10326root            23    23 rcuob/1
10327root            24    24 cpuhp/2
10328root            25    25 migration/2
10329root            26    26 ksoftirqd/2
10330root            28    28 kworker/2:0H
10331root            29    29 rcuop/2
10332root            30    30 rcuos/2
10333root            31    31 rcuob/2
10334root            32    32 cpuhp/3
10335root            33    33 migration/3
10336root            34    34 ksoftirqd/3
10337root            36    36 kworker/3:0H
10338root            37    37 rcuop/3
10339root            38    38 rcuos/3
10340root            39    39 rcuob/3
10341root            40    40 cpuhp/4
10342root            41    41 migration/4
10343root            42    42 ksoftirqd/4
10344root            44    44 kworker/4:0H
10345root            45    45 rcuop/4
10346root            46    46 rcuos/4
10347root            47    47 rcuob/4
10348root            48    48 cpuhp/5
10349root            49    49 migration/5
10350root            50    50 ksoftirqd/5
10351root            52    52 kworker/5:0H
10352root            53    53 rcuop/5
10353root            54    54 rcuos/5
10354root            55    55 rcuob/5
10355root            56    56 cpuhp/6
10356root            57    57 migration/6
10357root            58    58 ksoftirqd/6
10358root            60    60 kworker/6:0H
10359root            61    61 rcuop/6
10360root            62    62 rcuos/6
10361root            63    63 rcuob/6
10362root            64    64 cpuhp/7
10363root            65    65 migration/7
10364root            66    66 ksoftirqd/7
10365root            68    68 kworker/7:0H
10366root            69    69 rcuop/7
10367root            70    70 rcuos/7
10368root            71    71 rcuob/7
10369root            72    72 netns
10370root            75    75 ipa_usb_wq
10371root            77    77 msm_watchdog
10372root            78    78 smem_native_sps
10373root            79    79 spss_mailbox_gl
10374root            80    80 qmp_aop
10375root            81    81 smem_native_mps
10376root            82    82 mpss_smem_glink
10377root            83    83 smem_native_lpa
10378root            84    84 lpass_smem_glin
10379root            85    85 smem_native_dsp
10380root            86    86 dsps_smem_glink
10381root            87    87 smem_native_cds
10382root            88    88 cdsp_smem_glink
10383root            89    89 khungtaskd
10384root            90    90 oom_reaper
10385root            91    91 writeback
10386root            92    92 kcompactd0
10387root            93    93 crypto
10388root            94    94 bioset
10389root            95    95 kblockd
10390root            96    96 irq/159-arm-smm
10391root            97    97 irq/160-arm-smm
10392root            98    98 irq/169-arm-smm
10393root           100   100 irq/124-tsens-u
10394root           101   101 irq/125-tsens-c
10395root           102   102 irq/126-tsens-u
10396root           103   103 irq/127-tsens-c
10397root           104   104 edac-poller
10398root           105   105 system
10399root           106   106 easel_mem
10400root           107   107 ipa_power_mgmt
10401root           108   108 transport_power
10402root           109   109 ipa_rm_wq
10403root           110   110 devfreq_wq
10404root           111   111 governor_msm_ad
10405root           112   112 cfg80211
10406root           113   113 irq/540-ibb-sc-
10407root           114   114 irq/541-lab-sc-
10408root           116   116 irq/74-qpnp_wle
10409root           117   117 irq/75-qpnp_wle
10410root           143   143 kswapd0
10411root           144   144 vmstat
10412root           145   145 ecryptfs-kthrea
10413root           180   180 irq/173-arm-smm
10414root           181   181 irq/174-arm-smm
10415root           182   182 irq/90-eud_irq
10416root           183   183 glink_ssr_wq
10417root           184   184 glink_lbsrv
10418root           185   185 spi_wdsp
10419root           186   186 wdsp_spi_glink_
10420root           187   187 glink_xprt_wq
10421root           188   188 IPCRTR_mpss_sme
10422root           189   189 IPCRTR_lpass_sm
10423root           190   190 IPCRTR_dsps_sme
10424root           191   191 IPCRTR_cdsp_sme
10425root           192   192 glink_pkt_wq
10426root           193   193 irq/175-arm-smm
10427root           194   194 qmi_svc_event_w
10428root           195   195 msm_ipc_router
10429root           197   197 servloc_wq
10430root           198   198 irq/176-arm-smm
10431root           199   199 irq/177-arm-smm
10432root           200   200 hwrng
10433root           202   202 diag_real_time_
10434root           203   203 diag_wq
10435root           204   204 DIAG_USB_diag
10436root           205   205 diag_cntl_wq
10437root           206   206 diag_dci_wq
10438root           207   207 DIAG_SOCKMODEM_
10439root           208   208 DIAG_SOCKMODEM_
10440root           209   209 DIAG_SOCKMODEM_
10441root           210   210 DIAG_SOCKMODEM_
10442root           211   211 DIAG_SOCKMODEM_
10443root           212   212 DIAG_SOCKLPASS_
10444root           213   213 DIAG_SOCKLPASS_
10445root           214   214 DIAG_SOCKLPASS_
10446root           215   215 DIAG_SOCKLPASS_
10447root           216   216 DIAG_SOCKLPASS_
10448root           217   217 DIAG_SOCKWCNSS_
10449root           218   218 DIAG_SOCKWCNSS_
10450root           219   219 DIAG_SOCKWCNSS_
10451root           220   220 DIAG_SOCKWCNSS_
10452root           221   221 DIAG_SOCKWCNSS_
10453root           222   222 DIAG_SOCKSENSOR
10454root           223   223 DIAG_SOCKSENSOR
10455root           224   224 DIAG_SOCKSENSOR
10456root           225   225 DIAG_SOCKSENSOR
10457root           226   226 DIAG_SOCKSENSOR
10458root           227   227 DIAG_SOCKDIAG_C
10459root           228   228 DIAG_SOCKDIAG_D
10460root           229   229 DIAG_SOCKDIAG_C
10461root           230   230 DIAG_SOCKDIAG_D
10462root           231   231 DIAG_SOCKDIAG_D
10463root           232   232 DIAG_SOCKCDSP_C
10464root           233   233 DIAG_SOCKCDSP_D
10465root           234   234 DIAG_SOCKCDSP_C
10466root           235   235 DIAG_SOCKCDSP_D
10467root           236   236 DIAG_SOCKCDSP_D
10468root           237   237 DIAG_CNTL_SOCKE
10469root           238   238 DIAG_GLINK_DIAG
10470root           239   239 DIAG_GLINK_DIAG
10471root           240   240 DIAG_GLINK_DIAG
10472root           241   241 DIAG_GLINK_DIAG
10473root           242   242 DIAG_GLINK_DIAG
10474root           243   243 kworker/u16:1
10475root           244   244 kgsl-workqueue
10476root           245   245 kgsl-mementry
10477root           246   246 kgsl_worker_thr
10478root           247   247 irq/161-arm-smm
10479root           248   248 irq/162-arm-smm
10480root           250   250 irq/170-arm-smm
10481root           251   251 irq/163-arm-smm
10482root           252   252 irq/178-arm-smm
10483root           253   253 crtc_commit:111
10484root           254   254 crtc_event:111
10485root           255   255 crtc_commit:163
10486root           256   256 crtc_event:163
10487root           257   257 pp_event
10488root           258   258 kgsl-events
10489root           259   259 kgsl_devfreq_wq
10490root           260   260 bioset
10491root           261   261 bioset
10492root           262   262 bioset
10493root           263   263 bioset
10494root           264   264 bioset
10495root           265   265 bioset
10496root           266   266 bioset
10497root           267   267 bioset
10498root           268   268 bioset
10499root           269   269 bioset
10500root           270   270 bioset
10501root           271   271 bioset
10502root           272   272 bioset
10503root           273   273 bioset
10504root           274   274 bioset
10505root           275   275 bioset
10506root           276   276 bioset
10507root           277   277 bioset
10508root           278   278 bioset
10509root           279   279 bioset
10510root           280   280 bioset
10511root           281   281 bioset
10512root           282   282 bioset
10513root           283   283 bioset
10514root           284   284 bioset
10515root           285   285 memory_wq
10516root           286   286 irq/179-arm-smm
10517root           287   287 irq/180-arm-smm
10518root           288   288 irq/181-arm-smm
10519root           289   289 qcrypto_seq_res
10520root           290   290 irq/182-arm-smm
10521root           311   311 scsi_eh_0
10522root           312   312 scsi_tmf_0
10523root           313   313 ufs_pm_qos_0
10524root           314   314 ufs_clk_gating_
10525root           315   315 ufs_mgc_hibern8
10526root           316   316 ice-set-key
10527root           317   317 spi10
10528root           318   318 spi32766
10529root           319   319 spi0
10530root           320   320 spi32765
10531root           321   321 bond0
10532root           322   322 sharedmem_qmi_w
10533root           323   323 qmi_hndl0000000
10534root           324   324 kworker/u16:2
10535root           325   325 kworker/u16:3
10536root           330   330 uether
10537root           331   331 k_ipa_usb
10538root           334   334 irq/377-soc:fp_
10539root           336   336 bioset
10540root           337   337 irq/29-i2c_pmic
10541root           338   338 bioset
10542root           339   339 bioset
10543root           340   340 bioset
10544root           342   342 msm_vidc_worker
10545root           343   343 pm_workerq_venu
10546root           344   344 irq/183-arm-smm
10547root           345   345 irq/184-arm-smm
10548root           346   346 bioset
10549root           347   347 irq/185-arm-smm
10550root           348   348 bioset
10551root           349   349 irq/186-arm-smm
10552root           350   350 bioset
10553root           351   351 bioset
10554root           352   352 rot_commitq_0_0
10555root           353   353 rot_commitq_0_1
10556root           354   354 rot_doneq_0_0
10557root           355   355 rot_doneq_0_1
10558root           356   356 bioset
10559root           357   357 rot_fenceq_0_0
10560root           358   358 rot_fenceq_0_1
10561root           359   359 rot_fenceq_0_2
10562root           360   360 rot_fenceq_0_3
10563root           361   361 rot_fenceq_0_4
10564root           362   362 rot_fenceq_0_5
10565root           363   363 rot_fenceq_0_6
10566root           364   364 kworker/u16:4
10567root           365   365 rot_fenceq_0_7
10568root           366   366 rot_fenceq_0_8
10569root           367   367 kworker/u16:5
10570root           368   368 rot_fenceq_0_9
10571root           369   369 kworker/u16:6
10572root           370   370 rot_fenceq_0_10
10573root           371   371 rot_fenceq_0_11
10574root           372   372 kworker/u16:7
10575root           373   373 rot_fenceq_0_12
10576root           374   374 rot_fenceq_0_13
10577root           375   375 rot_fenceq_0_14
10578root           376   376 rot_fenceq_0_15
10579root           377   377 cam-cpas
10580root           378   378 qcom,cam_virtua
10581root           379   379 irq/187-arm-smm
10582root           380   380 qcom,cam170-cpa
10583root           381   381 irq/188-arm-smm
10584root           382   382 cam_cci_wq
10585root           383   383 cam_cci_wq
10586root           384   384 irq/189-arm-smm
10587root           385   385 irq/190-arm-smm
10588root           386   386 irq/191-arm-smm
10589root           387   387 irq/192-arm-smm
10590root           388   388 irq/711-chg-err
10591root           389   389 irq/712-chg-sta
10592root           390   390 irq/716-otg-fai
10593root           391   391 irq/717-otg-ove
10594root           392   392 irq/718-otg-oc-
10595root           393   393 irq/719-testmod
10596root           394   394 irq/720-bat-tem
10597root           395   395 irq/721-bat-ocp
10598root           396   396 irq/722-bat-ov
10599root           397   397 irq/723-bat-low
10600root           398   398 irq/724-bat-the
10601root           399   399 irq/725-bat-ter
10602root           400   400 irq/726-usbin-c
10603root           401   401 irq/727-usbin-l
10604root           402   402 irq/728-usbin-u
10605root           403   403 irq/729-usbin-o
10606root           404   404 irq/730-usbin-p
10607root           405   405 irq/731-usbin-s
10608root           406   406 irq/732-usbin-i
10609root           407   407 irq/733-type-c-
10610root           408   408 irq/734-dcin-co
10611root           409   409 irq/735-dcin-lt
10612root           410   410 irq/736-dcin-uv
10613root           411   411 irq/737-dcin-ov
10614root           412   412 irq/738-dcin-pl
10615root           413   413 irq/739-div2-en
10616root           414   414 irq/740-dcin-ic
10617root           415   415 irq/742-wdog-ba
10618root           416   416 irq/743-aicl-fa
10619root           417   417 irq/744-aicl-do
10620root           418   418 irq/745-high-du
10621root           419   419 irq/746-input-c
10622root           420   420 irq/747-tempera
10623root           421   421 irq/748-switche
10624root           422   422 irq/380-p9221-i
10625root           423   423 irq/292-p9221-i
10626root           424   424 irq/69-bcl-high
10627root           425   425 irq/71-bcl-low-
10628root           426   426 irq/542-limits_
10629root           427   427 irq/543-limits_
10630root           428   428 qmi_tmd_wq
10631root           429   429 dm_bufio_cache
10632root           430   430 irq/98-KRYO3XX
10633root           431   431 irq/370-s2mpb04
10634root           432   432 irq/286-s2mpb04
10635root           433   433 irq/51-vendor:e
10636root           434   434 irq/193-arm-smm
10637root           435   435 uaudio_svc
10638root           436   436 qmi_hndl0000000
10639root           437   437 apr_driver
10640root           438   438 ipv6_addrconf
10641root           439   439 irq/879-adsp
10642root           441   441 sysmon_wq
10643root           442   442 irq/911-slpi
10644root           443   443 irq/943-cdsp
10645root           444   444 irq/847-modem
10646root           452   452 irq/38-sig-tx
10647root           453   453 irq/57-sig-rx
10648root           454   454 usbpd0
10649root           455   455 usbpd0
10650root           456   456 irq/1039-soc-up
10651root           457   457 irq/1040-soc-re
10652root           458   458 irq/1041-bsoc-d
10653root           459   459 irq/1042-msoc-d
10654root           460   460 irq/1043-msoc-l
10655root           461   461 irq/1044-msoc-e
10656root           462   462 irq/1045-msoc-h
10657root           463   463 irq/1046-msoc-f
10658root           464   464 irq/1047-vbatt-
10659root           465   465 irq/1048-vbatt-
10660root           466   466 irq/1049-esr-de
10661root           467   467 irq/1050-batt-m
10662root           468   468 irq/1051-batt-t
10663root           469   469 irq/1052-ima-rd
10664root           470   470 irq/1053-mem-xc
10665root           471   471 irq/1054-dma-gr
10666root           472   472 irq/36-qcom,tem
10667root           473   473 irq/535-pwr_eve
10668root           474   474 irq/534-dp_hs_p
10669root           475   475 irq/537-dm_hs_p
10670root           476   476 irq/536-ss_phy_
10671root           477   477 irq/194-arm-smm
10672root           478   478 usb_bam_wq
10673root           480   480 core_ctl/0
10674root           481   481 core_ctl/4
10675root           491   491 rq_stats
10676root           492   492 irq/195-arm-smm
10677root           493   493 irq/196-arm-smm
10678root           494   494 irq/197-arm-smm
10679root           495   495 irq/198-arm-smm
10680root           496   496 irq/199-arm-smm
10681root           497   497 irq/200-arm-smm
10682root           498   498 irq/201-arm-smm
10683root           499   499 irq/202-arm-smm
10684root           500   500 irq/203-arm-smm
10685root           501   501 irq/204-arm-smm
10686root           502   502 irq/205-arm-smm
10687root           503   503 set_state_work
10688root           504   504 sb-1
10689root           505   505 ngd_rx_thread1
10690root           506   506 irq/308-mnh-rea
10691root           507   507 ngd_notify_sl1
10692root           508   508 sb-3
10693root           509   509 ngd_rx_thread3
10694root           510   510 ngd_notify_sl3
10695root           511   511 tbn_event_proce
10696root           512   512 irq/78-qpnp_fla
10697root           513   513 irq/77-qpnp_fla
10698root           514   514 irq/76-qpnp_fla
10699root           515   515 irq/1056-mnh_pc
10700root           516   516 irq/1057-mnh_pc
10701root           517   517 irq/1058-mnh_pc
10702root           518   518 irq/1059-mnh_pc
10703root           519   519 irq/1060-mnh_pc
10704root           520   520 irq/1063-mnh_pc
10705root           521   521 irq/1064-mnh_pc
10706root           522   522 irq/206-arm-smm
10707root           524   524 kworker/4:1H
10708root           525   525 ext4-rsv-conver
10709root           526   526 irq/318-max1720
10710root           530   530 kworker/5:1H
10711root           531   531 kworker/0:1H
10712root           533   533 kworker/1:1H
10713root           535   535 jbd2/sdf2-8
10714root           536   536 ext4-rsv-conver
10715root           537   537 ext4-rsv-conver
10716root           538   538 ext4-rsv-conver
10717root           539   539 kworker/6:1H
10718root           540   540 init
10719root           541   541 init
10720root           542   542 ueventd
10721root           544   544 kworker/7:1H
10722root           546   546 irq/381-fts
10723logd           555   555 logd
10724logd           555   561 logd.daemon
10725logd           555   562 logd.reader
10726logd           555   563 logd.writer
10727logd           555   564 logd.control
10728logd           555   573 logd.klogd
10729logd           555   574 logd.auditd
10730system         556   556 qseecomd
10731system         557   557 keyprimary@4.0-s
10732system         557   602 HwBinder:557_1
10733root           559   559 sugov:0
10734root           560   560 sugov:4
10735root           565   565 kauditd
10736root           567   567 Binder:567_2
10737root           567   669 Binder:567_1
10738root           567   670 Binder:567_2
10739root           567   671 Binder:567_3
10740root           567   676 Binder:567_4
10741root           567 10646 Binder:567_5
10742root           567 14458 Binder:567_6
10743system         568   568 hwservicemanage
10744root           575   575 jbd2/sda20-8
10745system         576   576 qseecomd
10746system         576   577 qseecomd
10747system         576   578 qseecomd
10748system         576   579 qseecomd
10749system         576   581 qseecomd
10750system         576   582 qseecomd
10751system         576   583 qseecomd
10752system         576   584 qseecomd
10753system         576   585 qseecomd
10754system         576   586 qseecomd
10755root           580   580 ext4-rsv-conver
10756system         587   587 servicemanager
10757system         588   588 vndservicemanag
10758root           590   590 boot@1.0-servic
10759system         591   591 gatekeeper@1.0-
10760hsm            592   592 keyprimary@4.0-s
10761hsm            593   593 citadeld
10762hsm            593   603 citadeld
10763hsm            593   604 Binder:593_1
10764system         595   595 sscrpcd
10765system         595   655 sscrpcd
10766system         595   657 sscrpcd
10767system         598   598 composer@2.2-se
10768system         598   606 Binder:598_1
10769system         598   608 Binder:598_2
10770system         598   615 HWC_UeventThrea
10771system         598   624 SDM_EventThread
10772system         598   628 composer@2.2-se
10773system         598   629 HwBinder:598_1
10774system         598   630 HwBinder:598_2
10775system         598   633 HwBinder:598_3
10776system         599   599 configstore@1.1
10777system         599   616 HwBinder:599_1
10778system         599  1146 HwBinder:599_2
10779root           625   625 irq/164-arm-smm
10780root           645   645 cds_recovery_wo
10781root           646   646 wlan_logging_th
10782root           651   651 dsps_IPCRTR
10783root           652   652 qmi_hndl0000000
10784root           653   653 qmi_hndl0000000
10785root           658   658 qmi_hndl0000000
10786root           665   665 irq/371-cs35l36
10787root           666   666 irq/296-cs35l36
10788root           673   673 kdmflush
10789root           674   674 bioset
10790root           677   677 f2fs_flush-253:
10791root           678   678 f2fs_discard-25
10792root           679   679 f2fs_gc-253:0
10793system         681   681 time_daemon
10794system         681   686 time_daemon
10795system         681   687 time_daemon
10796system         681   688 time_daemon
10797system         681   690 time_daemon
10798system         681  1276 time_daemon
10799root           697   697 kworker/3:1H
10800root           707   707 irq/207-arm-smm
10801root           708   708 irq/208-arm-smm
10802root           709   709 irq/209-arm-smm
10803root           712   712 ipa_interrupt_w
10804root           713   713 ipawq36
10805root           714   714 iparepwq36
10806root           715   715 ipawq33
10807root           716   716 iparepwq33
10808root           717   717 ipawq32
10809root           718   718 iparepwq32
10810root           719   719 ipa_ut_dbgfs
10811root           720   720 ipa_A7_svc
10812root           722   722 qmi_hndl0000000
10813root           723   723 clnt_req
10814root           724   724 clnt_req
10815root           725   725 clnt_resp
10816root           750   750 at_usb0
10817root           751   751 at_usb1
10818root           752   752 qdss
10819system         753   753 allocator@1.0-s
10820vendor_pixelstats_system 754 754 pixelstats@1.0-
10821system         755   755 vr_hwc
10822system         755   791 Binder:755_1
10823system         755   792 HwBinder:755_1
10824system         755   793 Binder:755_2
10825system         756   756 neuralnetworks@
10826system         756   794 neuralnetworks@
10827system         756   795 neuralnetworks@
10828system         756 13857 HwBinder:756_1
10829audioserver    757   757 audio@2.0-servi
10830audioserver    757   797 Binder:757_1
10831audioserver    757   809 Binder:757_2
10832audioserver    757  1114 audio@2.0-servi
10833audioserver    757  1116 audio@2.0-servi
10834audioserver    757  1118 audio@2.0-servi
10835audioserver    757  1119 audio@2.0-servi
10836audioserver    757  1120 HwBinder:757_1
10837audioserver    757  1182 HwBinder:757_1
10838audioserver    757  1183 HwBinder:757_2
10839audioserver    757  1195 HwBinder:757_3
10840audioserver    757  1343 HwBinder:757_4
10841audioserver    757  1793 HwBinder:757_5
10842audioserver    757  6167 HwBinder:757_6
10843audioserver    757  9911 writer
10844audioserver    757 24445 HwBinder:757_7
10845hsm            758   758 authsecret@1.0-
10846bluetooth      759   759 bluetooth@1.0-s
10847bluetooth      759 24421 POSIX timer 30
10848bluetooth      759 24456 POSIX timer 31
10849bluetooth      759 24508 bluetooth@1.0-s
10850bluetooth      759 24509 bluetooth@1.0-s
10851bluetooth      759 24510 POSIX timer 32
10852bluetooth      759 24514 POSIX timer 33
10853bluetooth      759 24515 POSIX timer 34
10854bluetooth      759 24520 POSIX timer 35
10855cameraserver   760   760 provider@2.4-se
10856cameraserver   760   830 provider@2.4-se
10857cameraserver   760   860 SyncManager_0
10858cameraserver   760   861 provider@2.4-se
10859cameraserver   760  1219 provider@2.4-se
10860cameraserver   760  1220 provider@2.4-se
10861cameraserver   760  1221 provider@2.4-se
10862cameraserver   760  1222 provider@2.4-se
10863cameraserver   760  1223 provider@2.4-se
10864cameraserver   760  1224 HwBinder:760_1
10865media          761   761 cas@1.0-service
10866media          761  1145 HwBinder:761_1
10867nobody         762   762 confirmationui@
10868system         763   763 contexthub@1.0-
10869system         763   779 contexthub@1.0-
10870media          764   764 drm@1.0-service
10871media          764  1147 HwBinder:764_1
10872media          764  1150 HwBinder:764_2
10873media          765   765 drm@1.1-service
10874media          765  1148 HwBinder:765_1
10875media          766   766 drm@1.1-service
10876media          766  1149 HwBinder:766_1
10877media          766  1151 HwBinder:766_2
10878gps            767   767 gnss@1.1-servic
10879gps            767  1569 Loc_hal
10880gps            767  1584 Loc_hal
10881gps            767  1585 LocIpc-
10882gps            767  1586 LocTime
10883gps            767  1589 LocTime
10884gps            767  1594 Loc_hal
10885gps            767  1643 Loc_hal
10886gps            767  1662 Binder:767_1
10887gps            767  1663 Binder:767_2
10888gps            767  1668 Loc_hal
10889gps            767  1674 Loc_hal
10890gps            767  1675 Loc_hal
10891gps            767  1677 Loc_hal
10892gps            767  1688 Loc_hal
10893system         768   768 health@2.0-serv
10894system         769   769 light@2.0-servi
10895system         770   770 memtrack@1.0-se
10896system         771   771 neuralnetworks@
10897system         771 13851 HwBinder:771_1
10898system         771 13852 neuralnetworks@
10899system         771 13853 HwBinder:771_2
10900system         771 13855 neuralnetworks@
10901system         771 13856 neuralnetworks@
10902system         771 17214 HwBinder:771_3
10903system         771 20182 HwBinder:771_4
10904system         771 23065 HwBinder:771_5
10905system         771 25942 HwBinder:771_6
10906system         771 28761 HwBinder:771_7
10907system         771  2859 HwBinder:771_8
10908nfc            772   772 nfc@1.1-service
10909nfc            772 24928 POSIX timer 10
10910nfc            772 24951 nfc@1.1-service
10911nfc            772 24952 nfc@1.1-service
10912nfc            772 24953 POSIX timer 11
10913nfc            772 24954 nfc@1.1-service
10914hsm            773   773 oemlock@1.0-ser
10915root           774   774 power@1.2-servi
10916root           774  2085 NodeLooperThrea
10917root           774  2087 power@1.2-servi
10918secure_element 775   775 secure_element@
10919system         777   777 thermal@1.1-ser
10920system         777   798 thermal@1.1-ser
10921root           778   778 usb@1.1-service
10922root           778   892 HwBinder:778_1
10923root           778  1010 HwBinder:778_1
10924root           778  1379 HwBinder:778_1
10925system         780   780 vibrator@1.2-se
10926system         781   781 vr@1.0-service.
10927hsm            782   782 weaver@1.0-serv
10928wifi           783   783 wifi@1.0-servic
10929wifi           783 24400 wifi@1.0-servic
10930radio          784   784 radioext@1.0-se
10931radio          784   804 radioext@1.0-se
10932radio          784  1328 radioext@1.0-se
10933system         785   785 wireless_charge
10934system         786   786 vendor.qti.hard
10935system         786   813 HwBinder:786_1
10936system         786   816 HwBinder:786_2
10937system         786 22869 HwBinder:786_3
10938nobody         787   787 tui_comm@1.0-se
10939mediacodec     788   788 vendor.qti.medi
10940mediacodec     788   865 Binder:788_1
10941mediacodec     788   868 Binder:788_2
10942mediacodec     788  1526 HwBinder:788_1
10943mediacodec     788  1527 HwBinder:788_2
10944mediacodec     788  6779 HwBinder:788_3
10945system         789   789 pm-service
10946system         789   822 POSIX timer 0
10947system         789   823 POSIX timer 1
10948system         789   824 POSIX timer 2
10949system         789   825 pm-service
10950system         789   826 Binder:789_1
10951system         789   829 Binder:789_2
10952system         789  1096 Binder:789_3
10953system         789  1097 Binder:789_4
10954system         790   790 sensors.qti
10955system         790   840 sensors.qti
10956system         790   841 sensors.qti
10957root           796   796 cdsp_IPCRTR
10958nobody         800   800 rmt_storage
10959nobody         800  1240 rmt_storage
10960nobody         800  1241 rmt_storage
10961nobody         800  1243 rmt_storage
10962nobody         800  1246 rmt_storage
10963vendor_rfs     801   801 tftp_server
10964system         802   802 pd-mapper
10965system         802   819 pd-mapper
10966root           805   805 msm_irqbalance
10967audioserver    806   806 audioserver
10968audioserver    806  1121 HwBinder:806_1
10969audioserver    806  1123 HwBinder:806_2
10970audioserver    806  1129 ApmTone
10971audioserver    806  1130 ApmAudio
10972audioserver    806  1131 ApmOutput
10973audioserver    806  1138 Binder:806_1
10974audioserver    806  1139 Binder:806_2
10975audioserver    806  1184 FastMixer
10976audioserver    806  1185 AudioOut_D
10977audioserver    806  1186 FastMixer
10978audioserver    806  1187 AudioOut_15
10979audioserver    806  1188 AudioOut_1D
10980audioserver    806  1189 FastMixer
10981audioserver    806  1190 AudioOut_25
10982audioserver    806  1191 AudioOut_2D
10983audioserver    806  1192 FastMixer
10984audioserver    806  1193 AudioOut_35
10985audioserver    806  1296 soundTrigger cb
10986audioserver    806  1339 TimeCheckThread
10987audioserver    806  1452 Binder:806_3
10988audioserver    806  2366 Binder:806_4
10989audioserver    806  3284 Binder:806_5
10990audioserver    806  3849 Binder:806_6
10991audioserver    806  5594 Binder:806_7
10992audioserver    806  9941 Binder:806_8
10993audioserver    806 18521 Binder:806_9
10994audioserver    806 23589 Binder:806_A
10995system         807   807 bufferhubd
10996lmkd           808   808 lmkd
10997system         810   810 performanced
10998system         811   811 thermalserviced
10999system         811   851 HwBinder:811_1
11000system         811   852 HwBinder:811_2
11001system         812   812 Binder:812_2
11002system         812   838 Binder:812_1
11003u0_a16         817   817 android.carrier
11004u0_a16         817   833 Jit thread pool
11005u0_a16         817   835 Signal Catcher
11006u0_a16         817   836 ADB-JDWP Connec
11007u0_a16         817   839 ReferenceQueueD
11008u0_a16         817   845 FinalizerDaemon
11009u0_a16         817   846 FinalizerWatchd
11010u0_a16         817   863 HeapTaskDaemon
11011u0_a16         817   867 Binder:817_1
11012u0_a16         817   874 Binder:817_2
11013u0_a16         817   875 Binder:817_3
11014u0_a16         817   888 Profile Saver
11015u0_a16         817  1039 Binder:817_4
11016u0_a16         817  1041 queued-work-loo
11017root           820   820 qmi_hndl0000000
11018root           821   821 qmi_hndl0000000
11019root           827   827 qmi_hndl0000000
11020root           834   834 adsp
11021root           837   837 modem
11022root           842   842 subsystem_ramdu
11023root           842   864 subsystem_ramdu
11024root           842   866 subsystem_ramdu
11025root           842  1237 subsystem_ramdu
11026graphics       843   843 mm-pp-dpps
11027graphics       843   912 HwBinder:843_1
11028graphics       843  1318 ABA_THREAD
11029shell          844   844 diag_mdlog
11030shell          844  1024 diag_mdlog
11031shell          844  1055 diag_mdlog
11032shell          844  1057 diag_mdlog
11033shell          844  1058 diag_mdlog
11034root           847   847 thermal-engine
11035root           847   876 thermal-engine
11036root           847   880 thermal-engine
11037root           847   889 thermal-engine
11038root           847   890 thermal-engine
11039root           847   891 thermal-engine
11040root           847   893 thermal-engine
11041root           847   894 thermal-engine
11042root           847   895 thermal-engine
11043root           847   896 thermal-engine
11044root           847   897 thermal-engine
11045root           847   898 thermal-engine
11046root           847   899 thermal-engine
11047root           847   902 thermal-engine
11048root           847   903 thermal-engine
11049root           847   905 thermal-engine
11050root           847   906 thermal-engine
11051root           847   907 thermal-engine
11052root           847   908 thermal-engine
11053root           847   909 thermal-engine
11054root           847   910 thermal-engine
11055root           847   915 thermal-engine
11056root           847   916 thermal-engine
11057root           847   918 thermal-engine
11058root           847   919 thermal-engine
11059root           847   920 thermal-engine
11060root           847   922 thermal-engine
11061root           847   926 thermal-engine
11062root           847   927 thermal-engine
11063root           847   934 thermal-engine
11064root           847   938 thermal-engine
11065root           847   942 thermal-engine
11066root           847   944 thermal-engine
11067root           847   947 thermal-engine
11068root           847   948 thermal-engine
11069root           847   950 thermal-engine
11070root           847   953 thermal-engine
11071root           847   955 thermal-engine
11072root           847   957 thermal-engine
11073root           847   962 thermal-engine
11074root           847   966 thermal-engine
11075root           847   967 thermal-engine
11076root           847   969 thermal-engine
11077root           847   971 thermal-engine
11078root           847   973 thermal-engine
11079root           847   976 thermal-engine
11080root           847   978 thermal-engine
11081root           847   979 thermal-engine
11082root           847   980 thermal-engine
11083root           847   981 thermal-engine
11084root           847   982 thermal-engine
11085root           847  1274 thermal-engine
11086root           847  1275 thermal-engine
11087media          848   848 adsprpcd
11088media          848   871 adsprpcd
11089media          848   872 adsprpcd
11090system         849   849 cdsprpcd
11091system         849   900 cdsprpcd
11092system         849   901 cdsprpcd
11093root           850   850 kworker/2:1H
11094system         853   853 imsqmidaemon
11095system         853   917 imsqmidaemon
11096root           854   854 lpass_IPCRTR
11097radio          855   855 cnd
11098radio          855   972 cnd
11099radio          855   983 HwBinder:855_1
11100radio          855   984 cnd
11101radio          855  1340 cnd
11102radio          855  1356 cnd
11103radio          855  1358 cnd
11104radio          855  1359 cnd
11105radio          855  1360 cnd
11106radio          855  1362 cnd
11107radio          855  1363 cnd
11108radio          855  1364 cnd
11109radio          856   856 netmgrd
11110root           856   998 netmgrd
11111radio          856  1001 netmgrd
11112radio          856  1029 HwBinder:856_1
11113radio          856  1068 netmgrd
11114radio          856  1069 netmgrd
11115radio          856  1070 netmgrd
11116radio          856  1071 netmgrd
11117radio          856  1072 netmgrd
11118radio          856  1341 netmgrd
11119radio          856  1924 netmgrd
11120radio          856  1925 netmgrd
11121radio          856  1927 netmgrd
11122radio          856  1928 netmgrd
11123radio          856  1929 netmgrd
11124radio          856  1947 netmgrd
11125radio          856  1948 netmgrd
11126radio          856  1949 netmgrd
11127radio          856  1950 netmgrd
11128radio          856  1977 netmgrd
11129radio          856  1978 netmgrd
11130radio          856  1979 netmgrd
11131radio          856  1980 netmgrd
11132radio          856  1993 netmgrd
11133radio          856  1994 netmgrd
11134radio          856  1996 netmgrd
11135radio          856  1997 netmgrd
11136radio          856  2005 netmgrd
11137radio          856  2006 netmgrd
11138radio          856  2007 netmgrd
11139radio          856  2008 netmgrd
11140radio          856  2020 netmgrd
11141radio          856  2021 netmgrd
11142radio          856  2022 netmgrd
11143radio          856  2023 netmgrd
11144radio          856  2033 netmgrd
11145radio          856  2034 netmgrd
11146radio          856  2035 netmgrd
11147radio          856  2036 netmgrd
11148radio          856  2050 netmgrd
11149radio          856  2051 netmgrd
11150radio          856  2052 netmgrd
11151radio          856  2054 netmgrd
11152radio          856  2091 netmgrd
11153radio          856  2093 netmgrd
11154radio          856  2097 netmgrd
11155radio          856  2103 netmgrd
11156radio          856  2106 netmgrd
11157radio          856  2108 netmgrd
11158radio          856  2109 netmgrd
11159radio          856  2110 netmgrd
11160radio          856  2127 netmgrd
11161radio          856  2131 netmgrd
11162radio          856  2133 netmgrd
11163radio          856  2137 netmgrd
11164radio          856  2142 netmgrd
11165radio          856  2143 netmgrd
11166radio          856  2144 netmgrd
11167radio          856  2145 netmgrd
11168radio          856  2155 netmgrd
11169radio          856  2157 netmgrd
11170radio          856  2158 netmgrd
11171radio          856  2161 netmgrd
11172radio          856  2165 netmgrd
11173radio          856  2167 netmgrd
11174radio          856  2168 netmgrd
11175radio          856  2169 netmgrd
11176radio          856  2174 netmgrd
11177radio          856  2178 netmgrd
11178radio          856  2179 netmgrd
11179radio          856  2180 netmgrd
11180radio          856  2187 netmgrd
11181radio          856  2188 netmgrd
11182radio          856  2189 netmgrd
11183radio          856  2191 netmgrd
11184radio          856  2202 netmgrd
11185radio          856  2204 netmgrd
11186radio          856  2214 netmgrd
11187radio          856  2215 netmgrd
11188radio          856  2236 netmgrd
11189radio          856  2241 netmgrd
11190radio          856  2242 netmgrd
11191radio          856  2248 netmgrd
11192radio          856  2271 netmgrd
11193radio          856  2278 netmgrd
11194radio          856  2287 netmgrd
11195radio          856  2288 netmgrd
11196radio          856  2308 netmgrd
11197radio          856  2311 netmgrd
11198radio          856  2312 netmgrd
11199radio          856  2314 netmgrd
11200radio          856 24008 netmgrd
11201radio          857   857 port-bridge
11202radio          857   885 port-bridge
11203radio          857   886 port-bridge
11204radio          858   858 ipacm
11205radio          858   935 HwBinder:858_1
11206radio          858   939 ipacm
11207radio          858   940 netlink socket
11208radio          858   941 ipa driver ntfy
11209radio          859   859 qti
11210radio          859   904 qti
11211radio          859  3031 qti
11212radio          859  3032 qti
11213radio          859  3033 qti
11214cameraserver   862   862 cameraserver
11215cameraserver   862   986 HwBinder:862_1
11216cameraserver   862   990 HwBinder:862_2
11217cameraserver   862  1225 HwBinder:862_3
11218cameraserver   862  1295 Binder:862_1
11219cameraserver   862  1454 Binder:862_2
11220cameraserver   862  2255 Binder:862_3
11221cameraserver   862  5596 Binder:862_4
11222cameraserver   862 14531 Binder:862_5
11223drm            869   869 drmserver
11224drm            869  1054 Binder:869_1
11225drm            869  6079 Binder:869_2
11226incidentd      870   870 Binder:870_2
11227incidentd      870   943 Binder:870_1
11228incidentd      870   965 Binder:870_3
11229root           873   873 Binder:873_2
11230root           873   954 Binder:873_1
11231root           873  1270 Binder:873_3
11232root           873  1298 Binder:873_4
11233root           873  1299 Binder:873_5
11234root           873  5766 Binder:873_6
11235root           873  5782 Binder:873_7
11236root           873 13935 Binder:873_8
11237root           873 24063 Binder:873_9
11238root           873 24072 Binder:873_A
11239root           873 29013 Binder:873_B
11240keystore       878   878 keystore
11241keystore       878   995 HwBinder:878_1
11242media          881   881 mediadrmserver
11243media          881  1042 Binder:881_1
11244mediaex        882   882 mediaextractor
11245mediaex        882  1077 Binder:882_1
11246mediaex        882  1467 Binder:882_2
11247mediaex        882  1810 Binder:882_3
11248mediaex        882 13752 Binder:882_4
11249media          883   883 mediametrics
11250media          883  1065 Binder:883_1
11251media          883 13749 Binder:883_2
11252media          883 13750 Binder:883_3
11253media          884   884 mediaserver
11254media          884  1074 Binder:884_1
11255media          884  1528 HwBinder:884_1
11256media          884  1702 Binder:884_2
11257media          884  1703 Binder:884_3
11258media          884 23520 CCodecWatchdog
11259media          884 23522 Binder:884_4
11260statsd         887   887 Binder:887_2
11261statsd         887  1037 Binder:887_1
11262statsd         887  1044 statsd.writer
11263statsd         887  1045 Binder:887_3
11264u0_a33         911   911 ndroid.apps.gcs
11265u0_a33         911   936 Jit thread pool
11266u0_a33         911   937 Signal Catcher
11267u0_a33         911   945 ADB-JDWP Connec
11268u0_a33         911   946 ReferenceQueueD
11269u0_a33         911   951 FinalizerDaemon
11270u0_a33         911   985 FinalizerWatchd
11271u0_a33         911   987 HeapTaskDaemon
11272u0_a33         911   988 Binder:911_1
11273u0_a33         911   991 Binder:911_2
11274u0_a33         911   996 Binder:911_3
11275u0_a33         911  1014 Profile Saver
11276u0_a33         911  1053 queued-work-loo
11277u0_a33         911  1080 GAC_Executor[0]
11278u0_a33         911  1081 GoogleApiHandle
11279u0_a33         911  1082 GAC_Executor[1]
11280u0_a33         911  5559 Binder:911_4
11281root           921   921 storaged
11282root           921  1002 storaged
11283root           921  1034 Binder:921_1
11284root           921  1303 HwBinder:921_1
11285root           921  1144 Binder:921_2
11286wifi           923   923 wificond
11287mediacodec     925   925 omx@1.0-service
11288mediacodec     925  1036 Binder:925_1
11289mediacodec     925  1046 Binder:925_2
11290mediacodec     925  1047 HwBinder:925_1
11291mediacodec     925  1048 HwBinder:925_2
11292mediacodec     925  1697 HwBinder:925_3
11293mediacodec     925  1761 HwBinder:925_4
11294mediacodec     925  2788 HwBinder:925_5
11295mediacodec     925  5595 HwBinder:925_6
11296mediacodec     925  9940 HwBinder:925_7
11297mediacodec     925 13751 HwBinder:925_8
11298mediacodec     925 18520 HwBinder:925_9
11299mediacodec     925 23889 HwBinder:925_A
11300root           928   928 msm_slim_qmi_cl
11301nobody         929   929 easelmanagerd
11302nobody         929   992 easelmanagerd
11303nobody         929   993 easelmanagerd
11304root           930   930 msm_slim_qmi_cl
11305root           931   931 qmi_hndl0000000
11306radio          933   933 main
11307radio          933  1088 qcrild
11308radio          933  1089 DispatcherModul
11309radio          933  1091 DispatcherModul
11310radio          933  1095 qcrild
11311radio          933  1233 Binder:933_1
11312radio          933  1234 Binder:933_2
11313radio          933  1248 file_observer
11314radio          933  1249 rild
11315radio          933  1250 HwBinder:933_1
11316radio          933  1253 main
11317radio          933  1255 GstkModule-Loop
11318radio          933  1256 UimModule-Loope
11319radio          933  1257 SecureElementMo
11320radio          933  1258 RadioConfigModu
11321radio          933  1259 VoiceModemEndPo
11322radio          933  1260 UimModemEndPoin
11323radio          933  1261 CatModemEndPoin
11324radio          933  1262 UimHttpModemEnd
11325radio          933  1263 NasModemEndPoin
11326radio          933  1264 SmsModemEndPoin
11327radio          933  1265 ImsaModemEndPoi
11328radio          933  1266 ImssModemEndPoi
11329radio          933  1267 PbmModemEndPoin
11330radio          933  1268 DispatcherModul
11331radio          933  1269 DispatcherModul
11332radio          933  1342 VoiceModemEndPo
11333radio          933  1344 PbmModemEndPoin
11334radio          933  1345 CatModemEndPoin
11335radio          933  1346 NasModemEndPoin
11336radio          933  1347 DispatcherModul
11337radio          933  1348 UimHttpModemEnd
11338radio          933  1349 UimModemEndPoin
11339radio          933  1351 SmsModemEndPoin
11340radio          933  1353 DispatcherModul
11341radio          933  1355 DispatcherModul
11342radio          933  1365 DispatcherModul
11343radio          933  1370 DispatcherModul
11344radio          933  1373 DispatcherModul
11345radio          933  1375 DispatcherModul
11346radio          933  1376 DispatcherModul
11347radio          933  1377 AuthModemEndPoi
11348radio          933  1378 PdcModemEndPoin
11349radio          933  1380 UimRemoteModemE
11350radio          933  1381 VsModemEndPoint
11351radio          933  1382 AuthModemEndPoi
11352radio          933  1383 PdcModemEndPoin
11353radio          933  1385 VsModemEndPoint
11354radio          933  1388 DispatcherModul
11355radio          933  1391 pil_monitor
11356radio          933  1394 DispatcherModul
11357radio          933  1395 qmi_cb
11358radio          933  1396 qcrild
11359radio          933  1397 qcrild
11360radio          933  1957 ImsaModemEndPoi
11361radio          933  1958 ImssModemEndPoi
11362root           949   949 qmi_hndl0000000
11363root           952   952 qmi_hndl0000000
11364system         956   956 cnss-daemon
11365system         956  1011 cnss-daemon
11366system         956  1030 Binder:956_1
11367system         956  1033 cnss-daemon
11368system         956  1035 Binder:956_2
11369system         956  1040 Binder:956_3
11370system         956  1625 cnss-daemon
11371system         956  2685 cnss-daemon
11372root           958   958 qmi_hndl0000000
11373gps            959   959 loc_launcher
11374gps            959   999 loc_launcher
11375gps            959  1003 loc_sig_hndlr
11376root           960   960 kworker/u16:8
11377system         961   961 chre
11378system         961  1012 chre
11379system         961  1013 chre
11380system         961  1049 chre
11381system         961  1050 chre
11382system         961  1170 chre
11383system         961  1171 chre
11384system         963   963 gatekeeperd
11385root           964   964 qmi_hndl0000000
11386root           968   968 irq/210-arm-smm
11387root           970   970 irq/211-arm-smm
11388root           974   974 irq/212-arm-smm
11389root           975   975 Binder:975_2
11390root           975  1031 Binder:975_1
11391tombstoned     977   977 tombstoned
11392root           994   994 update_engine
11393system         997   997 fingerprint@2.1
11394system         997  1100 fingerprint@2.1
11395system         997  1101 fingerprint@2.1
11396root          1000  1000 irq/310-wcd9xxx
11397gps           1004  1004 lowi-server
11398gps           1004  1020 lowi-server
11399gps           1004  1021 lowi-server
11400gps           1004  1022 lowi-server
11401gps           1004  1023 lowi-server
11402gps           1004  2750 lowi-server
11403gps           1004  2751 lowi-server
11404gps           1004  2753 lowi-server
11405gps           1004 24398 lowi-server
11406gps           1005  1005 xtra-daemon
11407gps           1005  1016 pcid-lo
11408gps           1005  1026 pcid-lo
11409gps           1005  1027 LocTime
11410gps           1005  1028 LocTime
11411gps           1005  1369 pcid-lo
11412root          1007  1007 adbd
11413root          1007  1015 usb ffs open
11414root          1007 23484 adbd
11415root          1007 23485 adbd
11416root          1007 13695 shell svc 13694
11417system        1017  1017 imsdatadaemon
11418system        1017  1063 imsdatadaemon
11419system        1017  1959 imsdatadaemon
11420system        1017  1960 imsdatadaemon
11421system        1017  1961 imsdatadaemon
11422system        1017  1962 imsdatadaemon
11423system        1017  1963 imsdatadaemon
11424system        1017  1965 imsdatadaemon
11425system        1017  2343 imsdatadaemon
11426system        1017  2344 imsdatadaemon
11427system        1017  2345 imsdatadaemon
11428root          1056  1056 qmi_wq
11429root          1059  1059 kworker/u16:9
11430root          1061  1061 qmi_hndl0000000
11431root          1115  1115 wdsp_glink_wq
11432root          1235  1235 mpss_IPCRTR
11433root          1236  1236 qmi_hndl0000001
11434root          1238  1238 kworker/u16:13
11435root          1239  1239 qmi_hndl0000001
11436root          1273  1273 qmi_hndl0000001
11437root          1277  1277 kworker/u16:14
11438root          1280  1280 kworker/u16:17
11439root          1281  1281 qmi_hndl0000001
11440root          1284  1284 kworker/u16:18
11441root          1624  1624 qmi_hndl0000001
11442root          1931  1931 ipawq34
11443root          1932  1932 iparepwq34
11444root          1934  1934 ipawq35
11445root          1935  1935 iparepwq35
11446system        1955  1955 ims_rtp_daemon
11447system        1955  1967 ims_rtp_daemon
11448system        1955  1968 ims_rtp_daemon
11449system        1955  1969 ims_rtp_daemon
11450system        1955  1970 ims_rtp_daemon
11451system        1955  1972 HwBinder:1955_1
11452system        1956  1956 imsrcsd
11453system        1956  3135 imsrcsd
11454system        1956  3136 imsrcsd
11455system        1956  3137 imsrcsd
11456system        1956  3138 imsrcsd
11457system        1956  3139 imsrcsd
11458system        2074  2074 pm-proxy
11459system        2074  2099 Binder:2074_1
11460system        2074  2100 Binder:2074_2
11461root          2670  2670 cds_mc_thread
11462root          2671  2671 cds_ol_rx_threa
11463root          2674  2674 wmi_rx_event_wo
11464wifi          2697  2697 wpa_supplicant
11465root         10004 10004 kworker/7:1
11466u0_a21       12524 12524 droid.apps.tips
11467u0_a21       12524 12530 Jit thread pool
11468u0_a21       12524 12531 Signal Catcher
11469u0_a21       12524 12532 ADB-JDWP Connec
11470u0_a21       12524 12533 ReferenceQueueD
11471u0_a21       12524 12534 FinalizerDaemon
11472u0_a21       12524 12535 FinalizerWatchd
11473u0_a21       12524 12536 HeapTaskDaemon
11474u0_a21       12524 12537 Binder:12524_1
11475u0_a21       12524 12539 Binder:12524_2
11476u0_a21       12524 12550 Binder:12524_3
11477u0_a21       12524 12556 Profile Saver
11478u0_a21       12524 12560 queued-work-loo
11479u0_a21       12524 12562 tips-smartspace
11480u0_a21       12524 12588 Binder:12524_4
11481u0_a68       12540 12540 id.partnersetup
11482u0_a68       12540 12544 Jit thread pool
11483u0_a68       12540 12545 Signal Catcher
11484u0_a68       12540 12546 ADB-JDWP Connec
11485u0_a68       12540 12548 ReferenceQueueD
11486u0_a68       12540 12549 FinalizerDaemon
11487u0_a68       12540 12551 FinalizerWatchd
11488u0_a68       12540 12552 HeapTaskDaemon
11489u0_a68       12540 12553 Binder:12540_1
11490u0_a68       12540 12554 Binder:12540_2
11491u0_a68       12540 12555 Binder:12540_3
11492u0_a68       12540 12557 Profile Saver
11493u0_a68       12540 12564 queued-work-loo
11494u0_a68       12540 12565 Binder:12540_4
11495root         12567 12567 kworker/5:1
11496root         12662 12662 kworker/3:1
11497root         12892 12892 kworker/7:0
11498u0_a26       12973 12973 viders.calendar
11499u0_a26       12973 12978 Jit thread pool
11500u0_a26       12973 12979 Signal Catcher
11501u0_a26       12973 12980 ADB-JDWP Connec
11502u0_a26       12973 12981 ReferenceQueueD
11503u0_a26       12973 12982 FinalizerDaemon
11504u0_a26       12973 12983 FinalizerWatchd
11505u0_a26       12973 12984 HeapTaskDaemon
11506u0_a26       12973 12985 Binder:12973_1
11507u0_a26       12973 12986 Binder:12973_2
11508u0_a26       12973 12987 Binder:12973_3
11509u0_a26       12973 12988 Profile Saver
11510u0_a26       12973 12992 queued-work-loo
11511root         13450 13450 kworker/0:0
11512root         13633 13633 kworker/1:0
11513root         13636 13636 kworker/2:2
11514root         13644 13644 kworker/3:0
11515root         13647 13647 kworker/6:2
11516root         13648 13648 kworker/2:1
11517root         13650 13650 kworker/1:2
11518root         13651 13651 kworker/0:1
11519root         13652 13652 kworker/3:2
11520root         13660 13660 kworker/2:0
11521root         13678 13678 kworker/1:1
11522root         13679 13679 kworker/0:2
11523root         13694 13694 sh
11524root         13696 13696 sh
11525root         13698 13698 ps
11526root         18284 18284 kworker/u17:1
11527root         18474 18474 dsi_err_workq
11528root         18488 18488 kworker/u16:15
11529root         21469 21469 kworker/6:0
11530root         23076 23076 kworker/u17:2
11531root         23403 23403 kworker/4:2
11532root         23868 23868 kworker/u16:10
11533root         23895 23895 Binder:23895_2
11534root         23895 23901 netd
11535root         23895 23907 netd
11536root         23895 23908 netd
11537root         23895 23909 netd
11538root         23895 23910 netd
11539root         23895 23911 netd
11540root         23895 23912 netd
11541root         23895 23913 netd
11542root         23895 23914 netd
11543root         23895 23915 netd
11544root         23895 23916 Binder:23895_1
11545root         23895 23917 Binder:23895_2
11546root         23895 23918 Binder:23895_3
11547root         23895 23919 HwBinder:23895_
11548system       23896 23896 surfaceflinger
11549system       23896 23902 Binder:23896_1
11550system       23896 23903 Binder:23896_2
11551system       23896 23904 DispSync
11552system       23896 23905 appEventThread
11553system       23896 23906 sfEventThread
11554system       23896 23923 HwBinder:23896_
11555system       23896 23927 VrEvent
11556system       23896 23928 VrHwcPost
11557system       23896 23929 VrDispatch
11558system       23896 23930 surfaceflinger
11559system       23896 23986 Binder:23896_3
11560system       23896 24423 Binder:23896_4
11561system       23896 25989 Binder:23896_5
11562root         23897 23897 main
11563root         23897 13132 ReferenceQueueD
11564root         23897 13133 FinalizerDaemon
11565root         23897 13134 FinalizerWatchd
11566root         23897 13135 HeapTaskDaemon
11567root         23898 23898 main
11568root         23898 27987 ReferenceQueueD
11569root         23898 27988 FinalizerDaemon
11570root         23898 27989 FinalizerWatchd
11571root         23898 27990 HeapTaskDaemon
11572root         23899 23899 iptables-restor
11573root         23900 23900 ip6tables-resto
11574system       23968 23968 system_server
11575system       23968 23970 Signal Catcher
11576system       23968 23971 ADB-JDWP Connec
11577system       23968 23972 ReferenceQueueD
11578system       23968 23973 FinalizerDaemon
11579system       23968 23974 FinalizerWatchd
11580system       23968 23975 HeapTaskDaemon
11581system       23968 23981 Binder:23968_1
11582system       23968 23982 Binder:23968_2
11583system       23968 23992 android.bg
11584system       23968 23993 ActivityManager
11585system       23968 23994 android.ui
11586system       23968 23995 ActivityManager
11587system       23968 23996 ActivityManager
11588system       23968 23998 batterystats-wo
11589system       23968 24000 FileObserver
11590system       23968 24001 android.fg
11591system       23968 24002 android.io
11592system       23968 24003 android.display
11593system       23968 24005 CpuTracker
11594system       23968 24006 PowerManagerSer
11595system       23968 24007 BatteryStats_wa
11596system       23968 24009 PackageManager
11597system       23968 24010 PackageManager
11598system       23968 24040 PackageInstalle
11599system       23968 24041 android.anim
11600system       23968 24042 android.anim.lf
11601system       23968 24045 HwBinder:23968_
11602system       23968 24048 HealthServiceRe
11603system       23968 24054 AccountManagerS
11604system       23968 24058 SettingsProvide
11605system       23968 24061 AlarmManager
11606system       23968 24068 SensorEventAckR
11607system       23968 24069 SensorService
11608system       23968 24070 window_tracing
11609system       23968 24073 InputDispatcher
11610system       23968 24074 InputReader
11611system       23968 24075 NetworkWatchlis
11612system       23968 24076 StorageManagerS
11613system       23968 24078 NetdConnector
11614system       23968 24080 NetworkStats
11615system       23968 24081 NetworkPolicy
11616system       23968 24082 tworkPolicy.uid
11617system       23968 24083 WifiService
11618system       23968 24084 WifiStateMachin
11619system       23968 24085 WifiScanningSer
11620system       23968 24086 WifiP2pService
11621system       23968 24087 ConnectivitySer
11622system       23968 24088 roid.pacmanager
11623system       23968 24089 NsdService
11624system       23968 24090 mDnsConnector
11625system       23968 24091 notification-sq
11626system       23968 24092 ranker
11627system       23968 24093 onProviders.ECP
11628system       23968 24094 DeviceStorageMo
11629system       23968 24095 AudioService
11630system       23968 24096 Binder:23968_3
11631system       23968 24097 Binder:23968_4
11632system       23968 24098 UEventObserver
11633system       23968 24100 HwBinder:23968_
11634system       23968 24101 HwBinder:23968_
11635system       23968 24102 ConnectivityThr
11636system       23968 24103 pool-3-thread-1
11637system       23968 24104 GraphicsStats-d
11638system       23968 24105 SliceManagerSer
11639system       23968 24106 CameraService_p
11640system       23968 24107 SyncHandler-0
11641system       23968 24110 wifiRttService
11642system       23968 24111 wifiAwareServic
11643system       23968 24112 EthernetService
11644system       23968 24113 TaskSnapshotPer
11645system       23968 24114 PhotonicModulat
11646system       23968 24117 LazyTaskWriterT
11647system       23968 24118 SyncManager
11648system       23968 24131 UsbService host
11649system       23968 24132 Thread-3
11650system       23968 24142 SoundPool
11651system       23968 24147 SoundPoolThread
11652system       23968 24161 NetworkStatsObs
11653system       23968 24186 CCodecWatchdog
11654system       23968 24196 watchdog
11655system       23968 24200 EmergencyAfford
11656system       23968 24233 Binder:23968_5
11657system       23968 24235 Binder:23968_6
11658system       23968 24238 Binder:23968_7
11659system       23968 24246 NetworkTimeUpda
11660system       23968 24293 BluetoothRouteM
11661system       23968 24306 AudioPortEventH
11662system       23968 24328 HwBinder:23968_
11663system       23968 24345 uteStateMachine
11664system       23968 24350 CallAudioModeSt
11665system       23968 24351 ConnectionSvrFo
11666system       23968 24413 queued-work-loo
11667system       23968 24426 IpClient.wlan0
11668system       23968 24584 UsbDebuggingMan
11669system       23968 24648 backup
11670system       23968 24659 Binder:23968_8
11671system       23968 24687 Binder:23968_9
11672system       23968 24688 Binder:23968_A
11673system       23968 24689 Binder:23968_B
11674system       23968 25014 Binder:23968_C
11675system       23968 25025 HwBinder:23968_
11676system       23968 25663 AsyncQueryWorke
11677system       23968 25817 Binder:23968_D
11678system       23968 25856 Binder:23968_E
11679system       23968 25953 Binder:23968_F
11680system       23968 26548 Binder:23968_10
11681system       23968 26674 Binder:23968_11
11682system       23968 27537 Binder:23968_12
11683system       23968 27744 Binder:23968_13
11684system       23968 27763 Binder:23968_14
11685system       23968 27905 RenderThread
11686system       23968  1092 Binder:23968_15
11687system       23968  9973 GrallocUploadTh
11688system       23968  9976 AudioTrack
11689system       23968 12589 Binder:23968_16
11690system       24047 24047 sensors@1.0-ser
11691system       24047 24049 sensors@1.0-ser
11692system       24047 24053 sensors@1.0-ser
11693system       24047 24056 sensors@1.0-ser
11694system       24047 24057 HwBinder:24047_
11695system       24047 24064 sensors@1.0-ser
11696system       24047 24065 sensors@1.0-ser
11697system       24047 24066 sensors@1.0-ser
11698system       24047 24115 HwBinder:24047_
11699system       24047 24116 HwBinder:24047_
11700bluetooth    24119 24119 droid.bluetooth
11701bluetooth    24119 24124 Jit thread pool
11702bluetooth    24119 24125 Signal Catcher
11703bluetooth    24119 24126 ADB-JDWP Connec
11704bluetooth    24119 24127 ReferenceQueueD
11705bluetooth    24119 24128 FinalizerDaemon
11706bluetooth    24119 24129 FinalizerWatchd
11707bluetooth    24119 24130 HeapTaskDaemon
11708bluetooth    24119 24135 Binder:24119_1
11709bluetooth    24119 24139 Binder:24119_2
11710bluetooth    24119 24159 Binder:24119_3
11711bluetooth    24119 24171 Profile Saver
11712bluetooth    24119 24219 AdapterState
11713bluetooth    24119 24224 stack_manager
11714bluetooth    24119 24225 POSIX timer 0
11715bluetooth    24119 24226 POSIX timer 1
11716bluetooth    24119 24227 alarm_default_c
11717bluetooth    24119 24228 alarm_dispatche
11718bluetooth    24119 24229 BT Service Call
11719bluetooth    24119 24236 BluetoothActive
11720bluetooth    24119 24240 AudioPortEventH
11721bluetooth    24119 24380 BondStateMachin
11722bluetooth    24119 24408 BluetoothAdvert
11723bluetooth    24119 24410 BluetoothScanMa
11724bluetooth    24119 24415 queued-work-loo
11725bluetooth    24119 24418 hci_thread
11726bluetooth    24119 24420 HwBinder:24119_
11727bluetooth    24119 24511 bt_workqueue
11728bluetooth    24119 24512 btu message loo
11729bluetooth    24119 24521 BT Service Call
11730bluetooth    24119 24522 btif_sock
11731bluetooth    24119 24523 Binder:24119_4
11732bluetooth    24119 24524 Binder:24119_5
11733bluetooth    24119 24525 e.StateMachines
11734bluetooth    24119 24526 e.StateMachines
11735bluetooth    24119 24527 btif_a2dp_sourc
11736bluetooth    24119 24528 BluetoothHdpHan
11737bluetooth    24119 24529 droid.bluetooth
11738bluetooth    24119 24530 BluetoothMapHan
11739bluetooth    24119 24534 PbapHandlerThre
11740bluetooth    24119 24536 e.StateMachines
11741bluetooth    24119 24537 Thread-3
11742bluetooth    24119 24538 uipc-main
11743bluetooth    24119 24539 Thread-4
11744bluetooth    24119 24543 SapAcceptThread
11745bluetooth    24119 24545 Thread-6
11746bluetooth    24119 24546 Thread-7
11747bluetooth    24119 24547 Thread-8
11748bluetooth    24119 24548 Thread-9
11749bluetooth    24119 24661 Binder:24119_6
11750u0_a90       24133 24133 putmethod.latin
11751u0_a90       24133 24140 Jit thread pool
11752u0_a90       24133 24141 Signal Catcher
11753u0_a90       24133 24143 ADB-JDWP Connec
11754u0_a90       24133 24144 ReferenceQueueD
11755u0_a90       24133 24145 FinalizerDaemon
11756u0_a90       24133 24146 FinalizerWatchd
11757u0_a90       24133 24148 HeapTaskDaemon
11758u0_a90       24133 24149 Binder:24133_1
11759u0_a90       24133 24157 Binder:24133_2
11760u0_a90       24133 24162 Binder:24133_3
11761u0_a90       24133 24179 Profile Saver
11762u0_a90       24133 24217 queued-work-loo
11763u0_a90       24133 24218 ExUtils-P11-1
11764u0_a90       24133 24237 ExUtils-P9-1
11765u0_a90       24133 24431 Binder:24133_4
11766u0_a90       24133 24732 GoogleApiHandle
11767u0_a90       24133 24832 GAC_Executor[0]
11768u0_a90       24133 24844 MetricsManager
11769u0_a90       24133 24998 AnrDetector
11770u0_a90       24133 25008 NativeLogger-1
11771u0_a90       24133 25013 DwldManWrapper
11772u0_a90       24133 25070 ExUtils-P10-1
11773u0_a90       24133 25121 sp-control-1
11774u0_a90       24133 25129 GAC_Executor[1]
11775u0_a90       24133 25145 Primes-1
11776u0_a90       24133 25161 ExUtils-P1-1
11777u0_a90       24133 25162 Primes-2
11778u0_a90       24133 25451 Binder:24133_5
11779u0_a90       24133 25555 Binder:24133_6
11780u0_a90       24133 25998 DecoderWrapper
11781u0_a90       24133 12580 Binder:24133_7
11782u0_a22       24151 24151 ndroid.systemui
11783u0_a22       24151 24160 Jit thread pool
11784u0_a22       24151 24163 Signal Catcher
11785u0_a22       24151 24164 ADB-JDWP Connec
11786u0_a22       24151 24165 ReferenceQueueD
11787u0_a22       24151 24166 FinalizerDaemon
11788u0_a22       24151 24167 FinalizerWatchd
11789u0_a22       24151 24168 HeapTaskDaemon
11790u0_a22       24151 24169 Binder:24151_1
11791u0_a22       24151 24170 Binder:24151_2
11792u0_a22       24151 24177 Binder:24151_3
11793u0_a22       24151 24178 Profile Saver
11794u0_a22       24151 24247 smartspace-back
11795u0_a22       24151 24340 pool-1-thread-1
11796u0_a22       24151 24348 SoundPool
11797u0_a22       24151 24349 SoundPoolThread
11798u0_a22       24151 24359 Recents-HighRes
11799u0_a22       24151 24360 Recents-TaskRes
11800u0_a22       24151 24367 CCodecWatchdog
11801u0_a22       24151 24368 HwBinder:24151_
11802u0_a22       24151 24369 recents.fg
11803u0_a22       24151 24376 Binder:24151_4
11804u0_a22       24151 24390 async_sensor
11805u0_a22       24151 24406 Binder:24151_5
11806u0_a22       24151 24424 VolumeDialogCon
11807u0_a22       24151 24428 SysUiBg
11808u0_a22       24151 24436 queued-work-loo
11809u0_a22       24151 24437 RenderThread
11810u0_a22       24151 24438 ConnectivityThr
11811u0_a22       24151 24439 WifiTracker{876
11812u0_a22       24151 24449 TimeTick
11813u0_a22       24151 24457 FlashlightContr
11814u0_a22       24151 24486 Keyboard
11815u0_a22       24151 24488 Binder:24151_6
11816u0_a22       24151 24494 pool-3-thread-1
11817u0_a22       24151 24502 pool-5-thread-1
11818u0_a22       24151 24503 GrallocUploadTh
11819u0_a22       24151 24504 hwuiTask1
11820u0_a22       24151 24505 Thread-2
11821u0_a22       24151 25987 AudioTrack
11822webview_zygote 24180 24180 webview_zygote
11823webview_zygote 24180 24192 ReferenceQueueD
11824webview_zygote 24180 24193 FinalizerDaemon
11825webview_zygote 24180 24194 FinalizerWatchd
11826webview_zygote 24180 24195 HeapTaskDaemon
11827radio        24249 24249 .dataservices
11828radio        24249 24255 Jit thread pool
11829radio        24249 24256 Signal Catcher
11830radio        24249 24257 ADB-JDWP Connec
11831radio        24249 24258 ReferenceQueueD
11832radio        24249 24259 FinalizerDaemon
11833radio        24249 24260 FinalizerWatchd
11834radio        24249 24261 HeapTaskDaemon
11835radio        24249 24262 Binder:24249_1
11836radio        24249 24270 Binder:24249_2
11837radio        24249 24291 Profile Saver
11838radio        24249 24307 cneservice_thre
11839radio        24249 24323 CNEReceiver
11840radio        24249 24336 ConnectivityThr
11841radio        24249 24339 MainEventThread
11842radio        24249 24344 HwBinder:24249_
11843radio        24249 25165 Binder:24249_3
11844radio        24249 25166 MainEventThread
11845radio        24249 25176 queued-work-loo
11846root         24254 24254 kworker/5:0
11847radio        24263 24263 elephonyservice
11848radio        24263 24271 Jit thread pool
11849radio        24263 24272 Signal Catcher
11850radio        24263 24273 ADB-JDWP Connec
11851radio        24263 24274 ReferenceQueueD
11852radio        24263 24275 FinalizerDaemon
11853radio        24263 24276 FinalizerWatchd
11854radio        24263 24277 HeapTaskDaemon
11855radio        24263 24278 Binder:24263_1
11856radio        24263 24279 Binder:24263_2
11857radio        24263 24286 Binder:24263_3
11858radio        24263 24311 Profile Saver
11859radio        24263 25158 HwBinder:24263_
11860radio        24263 25159 AudioPortEventH
11861radio        24263 25160 queued-work-loo
11862root         24269 24269 kworker/4:0
11863radio        24280 24280 oid.grilservice
11864radio        24280 24288 Jit thread pool
11865radio        24280 24292 Signal Catcher
11866radio        24280 24299 ADB-JDWP Connec
11867radio        24280 24300 ReferenceQueueD
11868radio        24280 24301 FinalizerDaemon
11869radio        24280 24302 FinalizerWatchd
11870radio        24280 24303 HeapTaskDaemon
11871radio        24280 24304 Binder:24280_1
11872radio        24280 24308 Binder:24280_2
11873radio        24280 24326 Profile Saver
11874radio        24280 25107 Binder:24280_3
11875radio        24280 25117 HwBinder:24280_
11876radio        24290 24290 m.android.phone
11877radio        24290 24305 Jit thread pool
11878radio        24290 24310 Signal Catcher
11879radio        24290 24315 ADB-JDWP Connec
11880radio        24290 24316 ReferenceQueueD
11881radio        24290 24317 FinalizerDaemon
11882radio        24290 24318 FinalizerWatchd
11883radio        24290 24319 HeapTaskDaemon
11884radio        24290 24320 Binder:24290_1
11885radio        24290 24325 Binder:24290_2
11886radio        24290 24343 Profile Saver
11887radio        24290 24373 HwBinder:24290_
11888radio        24290 24377 EuiccConnector
11889radio        24290 24379 android.bg
11890radio        24290 24387 queued-work-loo
11891radio        24290 24399 GsmCellBroadcas
11892radio        24290 24402 GsmInboundSmsHa
11893radio        24290 24409 CellBroadcastHa
11894radio        24290 24411 CdmaInboundSmsH
11895radio        24290 24414 CdmaServiceCate
11896radio        24290 24429 Binder:24290_3
11897radio        24290 24432 LocaleTracker
11898radio        24290 24435 DcHandlerThread
11899radio        24290 24441 Binder:24290_4
11900radio        24290 24446 Binder:24290_5
11901radio        24290 24448 ImsServiceContr
11902radio        24290 24450 NetworkService
11903radio        24290 24455 DataService
11904radio        24290 24459 org.codeaurora.
11905radio        24290 24460 ImsConfigImplHa
11906radio        24290 24461 ImsSmsImpl
11907radio        24290 24462 CellularNetwork
11908radio        24290 24463 CellularDataSer
11909radio        24290 24468 ConnectivityThr
11910radio        24290 24471 Binder:24290_6
11911radio        24290 24501 Binder:24290_7
11912radio        24290 25668 ervice.Executor
11913u0_a59       24382 24382 id.ext.services
11914u0_a59       24382 24389 Jit thread pool
11915u0_a59       24382 24391 Signal Catcher
11916u0_a59       24382 24392 ADB-JDWP Connec
11917u0_a59       24382 24393 ReferenceQueueD
11918u0_a59       24382 24394 FinalizerDaemon
11919u0_a59       24382 24395 FinalizerWatchd
11920u0_a59       24382 24396 HeapTaskDaemon
11921u0_a59       24382 24397 Binder:24382_1
11922u0_a59       24382 24401 Binder:24382_2
11923u0_a59       24382 24403 Binder:24382_3
11924u0_a59       24382 24405 Binder:24382_4
11925u0_a59       24382 24416 Profile Saver
11926u0_a59       24382 24582 queued-work-loo
11927root         24613 24613 irq/79-1436400.
11928root         24617 24617 irq/80-114a000.
11929nfc          24655 24655 com.android.nfc
11930nfc          24655 24662 Jit thread pool
11931nfc          24655 24663 Signal Catcher
11932nfc          24655 24664 ADB-JDWP Connec
11933nfc          24655 24665 ReferenceQueueD
11934nfc          24655 24666 FinalizerDaemon
11935nfc          24655 24667 FinalizerWatchd
11936nfc          24655 24668 HeapTaskDaemon
11937nfc          24655 24669 Binder:24655_1
11938nfc          24655 24675 Binder:24655_2
11939nfc          24655 24692 Binder:24655_3
11940nfc          24655 24714 Profile Saver
11941nfc          24655 24915 AsyncTask #1
11942nfc          24655 24926 AsyncTask #1
11943nfc          24655 24927 HwBinder:24655_
11944nfc          24655 25000 Thread-2
11945nfc          24655 25001 Thread-3
11946nfc          24655 25002 Thread-4
11947nfc          24655 25003 SoundPool
11948nfc          24655 25004 SoundPoolThread
11949nfc          24655 25015 CCodecWatchdog
11950nfc          24655 25074 Binder:24655_4
11951nfc          24655 26061 Binder:24655_5
11952secure_element 24670 24670 com.android.se
11953secure_element 24670 24676 Jit thread pool
11954secure_element 24670 24677 Signal Catcher
11955secure_element 24670 24678 ADB-JDWP Connec
11956secure_element 24670 24679 ReferenceQueueD
11957secure_element 24670 24680 FinalizerDaemon
11958secure_element 24670 24681 FinalizerWatchd
11959secure_element 24670 24683 HeapTaskDaemon
11960secure_element 24670 24685 Binder:24670_1
11961secure_element 24670 24686 Binder:24670_2
11962secure_element 24670 24695 Binder:24670_3
11963secure_element 24670 24710 Profile Saver
11964secure_element 24670 24742 HwBinder:24670_
11965secure_element 24670 24749 queued-work-loo
11966radio        24691 24691 .ims.rcsservice
11967radio        24691 24701 Jit thread pool
11968radio        24691 24702 Signal Catcher
11969radio        24691 24704 ADB-JDWP Connec
11970radio        24691 24712 ReferenceQueueD
11971radio        24691 24715 FinalizerDaemon
11972radio        24691 24721 FinalizerWatchd
11973radio        24691 24722 HeapTaskDaemon
11974radio        24691 24723 Binder:24691_1
11975radio        24691 24724 Binder:24691_2
11976radio        24691 24753 Profile Saver
11977radio        24691 24783 Binder:24691_3
11978radio        24691 24786 Listener
11979radio        24691 24839 queued-work-loo
11980radio        24691 25522 EABServiceHandl
11981radio        24691 25882 Binder:24691_4
11982system       24703 24703 RestartDetector
11983system       24703 24711 Jit thread pool
11984system       24703 24713 Signal Catcher
11985system       24703 24716 ADB-JDWP Connec
11986system       24703 24717 ReferenceQueueD
11987system       24703 24718 FinalizerDaemon
11988system       24703 24719 FinalizerWatchd
11989system       24703 24725 HeapTaskDaemon
11990system       24703 24740 Binder:24703_1
11991system       24703 24747 Binder:24703_2
11992system       24703 24768 Profile Saver
11993system       24703 25947 Binder:24703_3
11994system       24703 25948 FileObserver
11995system       24703 25958 queued-work-loo
11996u0_a72       24726 24726 eui:sui_service
11997u0_a72       24726 24731 Jit thread pool
11998u0_a72       24726 24733 Signal Catcher
11999u0_a72       24726 24734 ADB-JDWP Connec
12000u0_a72       24726 24735 ReferenceQueueD
12001u0_a72       24726 24736 FinalizerDaemon
12002u0_a72       24726 24737 FinalizerWatchd
12003u0_a72       24726 24738 HeapTaskDaemon
12004u0_a72       24726 24739 Binder:24726_1
12005u0_a72       24726 24748 Binder:24726_2
12006u0_a72       24726 24751 Binder:24726_3
12007u0_a72       24726 24766 Profile Saver
12008u0_a72       24726 25402 Thread-2
12009u0_a72       24726 25403 queued-work-loo
12010u0_a72       24726 25406 HwBinder:24726_
12011u0_a72       24726 25539 Thread-2
12012u0_a6        24741 24741 .gms.persistent
12013u0_a6        24741 24750 Jit thread pool
12014u0_a6        24741 24752 Signal Catcher
12015u0_a6        24741 24759 ADB-JDWP Connec
12016u0_a6        24741 24760 ReferenceQueueD
12017u0_a6        24741 24761 FinalizerDaemon
12018u0_a6        24741 24762 FinalizerWatchd
12019u0_a6        24741 24763 HeapTaskDaemon
12020u0_a6        24741 24764 Binder:24741_1
12021u0_a6        24741 24767 Binder:24741_2
12022u0_a6        24741 24769 Binder:24741_3
12023u0_a6        24741 24834 Profile Saver
12024u0_a6        24741 25011 FileObserver
12025u0_a6        24741 25016 GlobalDispatchi
12026u0_a6        24741 25141 Binder:24741_4
12027u0_a6        24741 25144 Binder:24741_5
12028u0_a6        24741 25193 GoogleApiHandle
12029u0_a6        24741 25211 GlobalScheduler
12030u0_a6        24741 25239 ConnectivityThr
12031u0_a6        24741 25266 queued-work-loo
12032u0_a6        24741 25269 highpool[0]
12033u0_a6        24741 25276 highpool[1]
12034u0_a6        24741 25289 lowpool[0]
12035u0_a6        24741 25294 Binder:24741_6
12036u0_a6        24741 25296 lowpool[3]
12037u0_a6        24741 25302 Binder:24741_7
12038u0_a6        24741 25303 Binder:24741_8
12039u0_a6        24741 25320 lowpool[4]
12040u0_a6        24741 25344 Binder:24741_9
12041u0_a6        24741 25382 GAC_Executor[0]
12042u0_a6        24741 25385 highpool[2]
12043u0_a6        24741 25386 highpool[3]
12044u0_a6        24741 25391 FlpThread
12045u0_a6        24741 25487 GAC_Executor[1]
12046u0_a6        24741 25511 GeofencerStateM
12047u0_a6        24741 25512 RealContextHub
12048u0_a6        24741 25517 Thread-4
12049u0_a6        24741 25518 Thread-5
12050u0_a6        24741 25519 Thread-6
12051u0_a6        24741 25520 Thread-7
12052u0_a6        24741 25521 Thread-8
12053u0_a6        24741 25525 GoogleLocationS
12054u0_a6        24741 25548 Places
12055u0_a6        24741 25591 MSMuxTR-0
12056u0_a6        24741 26056 netscheduler-qu
12057u0_a6        24741 26166 Binder:24741_A
12058u0_a6        24741 26167 Binder:24741_B
12059u0_a6        24741 27059 NearbyMessages
12060u0_a6        24741 27109 NearbyDirectMai
12061u0_a6        24741 27168 lowpool[8]
12062u0_a6        24741 28229 Binder:24741_C
12063u0_a148      24754 24754 gearhead:shared
12064u0_a148      24754 24765 Jit thread pool
12065u0_a148      24754 24770 Signal Catcher
12066u0_a148      24754 24771 ADB-JDWP Connec
12067u0_a148      24754 24775 ReferenceQueueD
12068u0_a148      24754 24776 FinalizerDaemon
12069u0_a148      24754 24777 FinalizerWatchd
12070u0_a148      24754 24778 HeapTaskDaemon
12071u0_a148      24754 24780 Binder:24754_1
12072u0_a148      24754 24784 Binder:24754_2
12073u0_a148      24754 24793 Binder:24754_3
12074u0_a148      24754 24836 Profile Saver
12075u0_a148      24754 24972 GoogleApiHandle
12076u0_a148      24754 25208 FileObserver
12077u0_a148      24754 25209 ConnectivityThr
12078u0_a148      24754 25235 queued-work-loo
12079u0_a148      24754 25238 GAC_Executor[0]
12080u0_a148      24754 25438 GAC_Executor[1]
12081u0_a148      24754 25449 Binder:24754_4
12082u0_a148      24754 27819 Binder:24754_5
12083u0_a34       24772 24772 apps.dreamliner
12084u0_a34       24772 24782 Jit thread pool
12085u0_a34       24772 24785 Signal Catcher
12086u0_a34       24772 24787 ADB-JDWP Connec
12087u0_a34       24772 24788 ReferenceQueueD
12088u0_a34       24772 24789 FinalizerDaemon
12089u0_a34       24772 24790 FinalizerWatchd
12090u0_a34       24772 24791 HeapTaskDaemon
12091u0_a34       24772 24792 Binder:24772_1
12092u0_a34       24772 24814 Binder:24772_2
12093u0_a34       24772 24825 Binder:24772_3
12094u0_a34       24772 24835 Profile Saver
12095u0_a39       24795 24795 oid.setupwizard
12096u0_a39       24795 24801 Jit thread pool
12097u0_a39       24795 24802 Signal Catcher
12098u0_a39       24795 24803 ADB-JDWP Connec
12099u0_a39       24795 24804 ReferenceQueueD
12100u0_a39       24795 24805 FinalizerDaemon
12101u0_a39       24795 24806 FinalizerWatchd
12102u0_a39       24795 24807 HeapTaskDaemon
12103u0_a39       24795 24809 Binder:24795_1
12104u0_a39       24795 24815 Binder:24795_2
12105u0_a39       24795 24826 Binder:24795_3
12106u0_a39       24795 24856 Profile Saver
12107u0_a39       24795 24987 queued-work-loo
12108u0_a39       24795 24990 GoogleApiHandle
12109u0_a39       24795 24994 ConnectivityThr
12110u0_a39       24795 24995 WifiTracker{910
12111u0_a39       24795 25377 pool-1-thread-1
12112u0_a39       24795 25446 Binder:24795_4
12113u0_a39       24795 29514 Binder:24795_5
12114u0_a15       24808 24808 ogle.android.as
12115u0_a15       24808 24816 Jit thread pool
12116u0_a15       24808 24817 Signal Catcher
12117u0_a15       24808 24818 ADB-JDWP Connec
12118u0_a15       24808 24819 ReferenceQueueD
12119u0_a15       24808 24820 FinalizerDaemon
12120u0_a15       24808 24821 FinalizerWatchd
12121u0_a15       24808 24822 HeapTaskDaemon
12122u0_a15       24808 24823 Binder:24808_1
12123u0_a15       24808 24837 Binder:24808_2
12124u0_a15       24808 24842 Profile Saver
12125u0_a15       24808 24937 GoogleApiHandle
12126u0_a15       24808 25445 Binder:24808_3
12127u0_a15       24808  9970 aiai-bg-0
12128u0_a15       24808  9974 GAC_Executor[0]
12129u0_a15       24808  9975 GAC_Executor[1]
12130u0_a25       24827 24827 s.nexuslauncher
12131u0_a25       24827 24838 Jit thread pool
12132u0_a25       24827 24841 Signal Catcher
12133u0_a25       24827 24845 ADB-JDWP Connec
12134u0_a25       24827 24846 ReferenceQueueD
12135u0_a25       24827 24847 FinalizerDaemon
12136u0_a25       24827 24848 FinalizerWatchd
12137u0_a25       24827 24849 HeapTaskDaemon
12138u0_a25       24827 24850 Binder:24827_1
12139u0_a25       24827 24857 Binder:24827_2
12140u0_a25       24827 24863 Binder:24827_3
12141u0_a25       24827 24890 Profile Saver
12142u0_a25       24827 24943 launcher-loader
12143u0_a25       24827 24985 GAC_Executor[0]
12144u0_a25       24827 24986 GoogleApiHandle
12145u0_a25       24827 25108 UiThreadHelper
12146u0_a25       24827 25109 pool-1-thread-1
12147u0_a25       24827 25113 Recents-HighRes
12148u0_a25       24827 25114 Recents-TaskRes
12149u0_a25       24827 25116 pool-3-thread-1
12150u0_a25       24827 25147 qsb-experiments
12151u0_a25       24827 25154 magnifier pixel
12152u0_a25       24827 25155 search-thread
12153u0_a25       24827 25168 smartspace-load
12154u0_a25       24827 25194 RenderThread
12155u0_a25       24827 25198 remote-ui
12156u0_a25       24827 25201 reflection-thre
12157u0_a25       24827 25202 reflection-plac
12158u0_a25       24827 25203 queued-work-loo
12159u0_a25       24827 25216 GAC_Executor[1]
12160u0_a25       24827 25243 GrallocUploadTh
12161u0_a25       24827 25554 Binder:24827_4
12162u0_a25       24827 27853 hwuiTask1
12163u0_a25       24827  5558 Binder:24827_5
12164u0_a25       24827  9968 pool-3-thread-2
12165u0_a25       24827 12577 Binder:24827_6
12166u0_a6        24894 24894 ocess.gservices
12167u0_a6        24894 24907 Jit thread pool
12168u0_a6        24894 24913 Signal Catcher
12169u0_a6        24894 24919 ADB-JDWP Connec
12170u0_a6        24894 24920 ReferenceQueueD
12171u0_a6        24894 24921 FinalizerDaemon
12172u0_a6        24894 24922 FinalizerWatchd
12173u0_a6        24894 24923 HeapTaskDaemon
12174u0_a6        24894 24924 Binder:24894_1
12175u0_a6        24894 24936 Binder:24894_2
12176u0_a6        24894 24945 Profile Saver
12177u0_a6        24894 24962 Binder:24894_3
12178u0_a6        24894 24979 Binder:24894_4
12179u0_a6        24894 24997 Binder:24894_5
12180u0_a6        24894 25005 Binder:24894_6
12181u0_a6        24894 25205 Binder:24894_7
12182u0_a6        24894 25434 Binder:24894_8
12183u0_a6        24894 25439 Binder:24894_9
12184u0_a6        24894 25442 Binder:24894_A
12185u0_a6        24894 25464 Binder:24894_B
12186u0_a6        24894 25499 Binder:24894_C
12187u0_a6        24894 25502 Binder:24894_D
12188u0_a6        24894 25527 Binder:24894_E
12189u0_a6        24894 25553 Binder:24894_F
12190u0_a6        24894 25716 Binder:24894_10
12191u0_a6        25017 25017 gle.android.gms
12192u0_a6        25017 25026 Jit thread pool
12193u0_a6        25017 25027 Signal Catcher
12194u0_a6        25017 25028 ADB-JDWP Connec
12195u0_a6        25017 25029 ReferenceQueueD
12196u0_a6        25017 25030 FinalizerDaemon
12197u0_a6        25017 25031 FinalizerWatchd
12198u0_a6        25017 25032 HeapTaskDaemon
12199u0_a6        25017 25033 Binder:25017_1
12200u0_a6        25017 25043 Binder:25017_2
12201u0_a6        25017 25075 Profile Saver
12202u0_a6        25017 25169 FileObserver
12203u0_a6        25017 25199 GlobalDispatchi
12204u0_a6        25017 25236 Binder:25017_3
12205u0_a6        25017 25261 GoogleApiHandle
12206u0_a6        25017 25286 GlobalScheduler
12207u0_a6        25017 25409 Binder:25017_4
12208u0_a6        25017 25430 Binder:25017_5
12209u0_a6        25017 25436 lowpool[1]
12210u0_a6        25017 25440 lowpool[3]
12211u0_a6        25017 25452 Binder:25017_6
12212u0_a6        25017 25457 queued-work-loo
12213u0_a6        25017 25693 highpool[0]
12214u0_a6        25017 25862 Thread-5
12215u0_a6        25017 25863 Thread-6
12216u0_a6        25017 25864 Thread-7
12217u0_a6        25017 25865 Thread-8
12218u0_a6        25017 25866 Thread-9
12219u0_a6        25017 26802 Binder:25017_7
12220u0_a6        25017 26820 highpool[1]
12221u0_a6        25017 26838 highpool[2]
12222u0_a6        25017 26840 GAC_Executor[0]
12223u0_a6        25017 26841 GAC_Executor[1]
12224u0_a6        25017 26842 Binder:25017_8
12225u0_a6        25017 26870 highpool[3]
12226u0_a6        25017 26883 AdWorker(Defaul
12227u0_a6        25017 26921 AdWorker(Defaul
12228u0_a6        25017 26930 Binder:25017_9
12229u0_a6        25017 26993 ConnectivityThr
12230u0_a6        25017 27066 Binder:25017_A
12231u0_a6        25017 27076 Binder:25017_B
12232u0_a6        25017 27923 Binder:25017_C
12233u0_a6        25017 27933 Binder:25017_D
12234u0_a6        25017 28134 lowpool[4]
12235u0_a6        25017 28186 lowpool[5]
12236u0_a6        25017   612 Binder:25017_E
12237u0_a6        25017 12583 Binder:25017_F
12238u0_a6        25017 12948 Binder:25017_10
12239u0_a46       25035 25035 le.modemservice
12240u0_a46       25035 25042 Jit thread pool
12241u0_a46       25035 25045 Signal Catcher
12242u0_a46       25035 25046 ADB-JDWP Connec
12243u0_a46       25035 25047 ReferenceQueueD
12244u0_a46       25035 25048 FinalizerDaemon
12245u0_a46       25035 25049 FinalizerWatchd
12246u0_a46       25035 25050 HeapTaskDaemon
12247u0_a46       25035 25051 Binder:25035_1
12248u0_a46       25035 25054 Binder:25035_2
12249u0_a46       25035 25068 Profile Saver
12250u0_a46       25035 25076 Binder:25035_3
12251u0_a46       25035 25095 StateService
12252u0_a46       25035 25110 queued-work-loo
12253u0_a46       25035 25112 ConnectivityThr
12254u0_a46       25035 25148 Binder:25035_4
12255u0_a69       25053 25053 android.vending
12256u0_a69       25053 25060 Jit thread pool
12257u0_a69       25053 25061 Signal Catcher
12258u0_a69       25053 25062 ADB-JDWP Connec
12259u0_a69       25053 25063 ReferenceQueueD
12260u0_a69       25053 25064 FinalizerDaemon
12261u0_a69       25053 25065 FinalizerWatchd
12262u0_a69       25053 25066 HeapTaskDaemon
12263u0_a69       25053 25067 Binder:25053_1
12264u0_a69       25053 25073 Binder:25053_2
12265u0_a69       25053 25119 Profile Saver
12266u0_a69       25053 25245 queued-work-loo
12267u0_a69       25053 25274 FinskyApp
12268u0_a69       25053 25293 ndroid.play.b.g
12269u0_a69       25053 25346 Thread-3
12270u0_a69       25053 25347 Thread-4
12271u0_a69       25053 25348 Thread-5
12272u0_a69       25053 25352 libraries-threa
12273u0_a69       25053 25368 download-manage
12274u0_a69       25053 25378 NetworkQualityQ
12275u0_a69       25053 25389 ConnectivityThr
12276u0_a69       25053 25397 Thread-6
12277u0_a69       25053 25398 Thread-7
12278u0_a69       25053 25399 Thread-8
12279u0_a69       25053 25400 Thread-9
12280u0_a69       25053 25401 Thread-10
12281u0_a69       25053 25426 tentative-gc-ru
12282u0_a69       25053 25443 Db-scheduler
12283u0_a69       25053 25458 LibrariesImpl
12284u0_a69       25053 25459 PackageInstalle
12285u0_a69       25053 25472 WriteThroughIns
12286u0_a69       25053 25574 Binder:25053_3
12287u0_a69       25053 25583 Db-user_languag
12288u0_a69       25053 25606 GearheadStateMo
12289u0_a69       25053 25609 wear-nodes-cont
12290u0_a69       25053 25611 RefQueueWorker@
12291u0_a69       25053 25612 GAC_Executor[0]
12292u0_a69       25053 25621 GoogleApiHandle
12293u0_a69       25053 25660 GAC_Executor[1]
12294u0_a69       25053 25678 Binder:25053_4
12295u0_a69       25053 25713 RefQueueWorker@
12296u0_a69       25053 25736 RefQueueWorker@
12297u0_a69       25053 26169 Binder:25053_5
12298u0_a69       25053 26171 Binder:25053_6
12299u0_a69       25053 26646 RefQueueWorker@
12300u0_a69       25053 26653 RefQueueWorker@
12301u0_a69       25053 26734 BackgroundThrea
12302u0_a69       25053 27702 Timer-0
12303u0_a69       25053 29466 RefQueueWorker@
12304u0_a69       25053 29470 PaiConfigResolv
12305u0_a69       25053 29471 RefQueueWorker@
12306u0_a69       25053 29472 RefQueueWorker@
12307radio        25099 25099 .qcrilmsgtunnel
12308radio        25099 25111 Jit thread pool
12309radio        25099 25118 Signal Catcher
12310radio        25099 25123 ADB-JDWP Connec
12311radio        25099 25124 ReferenceQueueD
12312radio        25099 25125 FinalizerDaemon
12313radio        25099 25126 FinalizerWatchd
12314radio        25099 25127 HeapTaskDaemon
12315radio        25099 25128 Binder:25099_1
12316radio        25099 25130 Binder:25099_2
12317radio        25099 25131 Binder:25099_3
12318radio        25099 25138 Profile Saver
12319radio        25099 25140 Binder:25099_4
12320radio        25099 25153 HwBinder:25099_
12321radio        25099 25157 queued-work-loo
12322system       25623 25623 ti.diagservices
12323system       25623 25642 Jit thread pool
12324system       25623 25645 Signal Catcher
12325system       25623 25648 ADB-JDWP Connec
12326system       25623 25649 ReferenceQueueD
12327system       25623 25650 FinalizerDaemon
12328system       25623 25651 FinalizerWatchd
12329system       25623 25652 HeapTaskDaemon
12330system       25623 25653 Binder:25623_1
12331system       25623 25655 Binder:25623_2
12332system       25623 25657 Profile Saver
12333system       25623 25661 Binder:25623_3
12334system       25623 25662 ti.diagservices
12335system       25623 25672 queued-work-loo
12336root         25995 25995 kworker/u16:16
12337root         25996 25996 kworker/u16:20
12338u0_a92       27538 27538 lcomm.telephony
12339u0_a92       27538 27543 Jit thread pool
12340u0_a92       27538 27544 Signal Catcher
12341u0_a92       27538 27545 ADB-JDWP Connec
12342u0_a92       27538 27546 ReferenceQueueD
12343u0_a92       27538 27547 FinalizerDaemon
12344u0_a92       27538 27548 FinalizerWatchd
12345u0_a92       27538 27549 HeapTaskDaemon
12346u0_a92       27538 27550 Binder:27538_1
12347u0_a92       27538 27551 Binder:27538_2
12348u0_a92       27538 27552 Binder:27538_3
12349u0_a92       27538 27555 Profile Saver
12350u0_a92       27538 27556 Thread-2
12351u0_a92       27538 27557 CTSA Inject Thr
12352u0_a92       27538 27562 HwBinder:27538_
12353u0_a92       27538 27564 queued-work-loo
12354u0_a23       28152 28152 .apps.turbo:aab
12355u0_a23       28152 28159 Jit thread pool
12356u0_a23       28152 28160 Signal Catcher
12357u0_a23       28152 28161 ADB-JDWP Connec
12358u0_a23       28152 28162 ReferenceQueueD
12359u0_a23       28152 28163 FinalizerDaemon
12360u0_a23       28152 28164 FinalizerWatchd
12361u0_a23       28152 28165 HeapTaskDaemon
12362u0_a23       28152 28166 Binder:28152_1
12363u0_a23       28152 28168 Binder:28152_2
12364u0_a23       28152 28171 Binder:28152_3
12365u0_a23       28152 28183 Profile Saver
12366u0_a23       28152 28493 Binder:28152_4
12367u0_a23       28152 28494 Binder:28152_5
12368u0_a23       28152 29720 GoogleApiHandle
12369u0_a23       28152  7773 Binder:28152_6
12370u0_a23       28152 12724 GAC_Executor[0]
12371u0_a23       28152 12725 GAC_Executor[1]
12372u0_a23       28152 12726 queued-work-loo
12373u0_a146      30159 30159 android.ramdump
12374u0_a146      30159 30166 Jit thread pool
12375u0_a146      30159 30167 Signal Catcher
12376u0_a146      30159 30168 ADB-JDWP Connec
12377u0_a146      30159 30169 ReferenceQueueD
12378u0_a146      30159 30170 FinalizerDaemon
12379u0_a146      30159 30171 FinalizerWatchd
12380u0_a146      30159 30172 HeapTaskDaemon
12381u0_a146      30159 30173 Binder:30159_1
12382u0_a146      30159 30174 Binder:30159_2
12383u0_a146      30159 30177 Binder:30159_3
12384u0_a146      30159 30180 Profile Saver
12385u0_a146      30159 30184 Binder:30159_4
12386u0_a146      30159 30185 queued-work-loo
12387USER           PID  PPID     VSZ    RSS WCHAN  PC S NAME                        COMM
12388root             1     0   28100   4968 SyS_epoll_wait 0 S init                 init
12389root             2     0       0      0 kthreadd 0 S [kthreadd]                 2
12390root             3     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/0]     3
12391root             5     2       0      0 worker_thread 0 S [kworker/0:0H]        5
12392root             6     2       0      0 diag_socket_read 0 S [kworker/u16:0]    6
12393root             7     2       0      0 rcu_gp_kthread 0 S [rcu_preempt]        7
12394root             8     2       0      0 rcu_gp_kthread 0 S [rcu_sched]          8
12395root             9     2       0      0 rcu_gp_kthread 0 S [rcu_bh]             9
12396root            10     2       0      0 rcu_nocb_kthread 0 S [rcuop/0]          1
12397root            11     2       0      0 rcu_nocb_kthread 0 S [rcuos/0]          1
12398root            12     2       0      0 rcu_nocb_kthread 0 S [rcuob/0]          1
12399root            13     2       0      0 smpboot_thread_fn 0 S [migration/0]     1
12400root            14     2       0      0 rescuer_thread 0 S [lru-add-drain]      1
12401root            15     2       0      0 smpboot_thread_fn 0 S [cpuhp/0]         1
12402root            16     2       0      0 smpboot_thread_fn 0 S [cpuhp/1]         1
12403root            17     2       0      0 smpboot_thread_fn 0 S [migration/1]     1
12404root            18     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/1]     1
12405root            20     2       0      0 worker_thread 0 S [kworker/1:0H]        2
12406root            21     2       0      0 rcu_nocb_kthread 0 S [rcuop/1]          2
12407root            22     2       0      0 rcu_nocb_kthread 0 S [rcuos/1]          2
12408root            23     2       0      0 rcu_nocb_kthread 0 S [rcuob/1]          2
12409root            24     2       0      0 smpboot_thread_fn 0 S [cpuhp/2]         2
12410root            25     2       0      0 smpboot_thread_fn 0 S [migration/2]     2
12411root            26     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/2]     2
12412root            28     2       0      0 worker_thread 0 S [kworker/2:0H]        2
12413root            29     2       0      0 rcu_nocb_kthread 0 S [rcuop/2]          2
12414root            30     2       0      0 rcu_nocb_kthread 0 S [rcuos/2]          3
12415root            31     2       0      0 rcu_nocb_kthread 0 S [rcuob/2]          3
12416root            32     2       0      0 smpboot_thread_fn 0 S [cpuhp/3]         3
12417root            33     2       0      0 smpboot_thread_fn 0 S [migration/3]     3
12418root            34     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/3]     3
12419root            36     2       0      0 worker_thread 0 S [kworker/3:0H]        3
12420root            37     2       0      0 rcu_nocb_kthread 0 S [rcuop/3]          3
12421root            38     2       0      0 rcu_nocb_kthread 0 S [rcuos/3]          3
12422root            39     2       0      0 rcu_nocb_kthread 0 S [rcuob/3]          3
12423root            40     2       0      0 smpboot_thread_fn 0 S [cpuhp/4]         4
12424root            41     2       0      0 smpboot_thread_fn 0 S [migration/4]     4
12425root            42     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/4]     4
12426root            44     2       0      0 worker_thread 0 S [kworker/4:0H]        4
12427root            45     2       0      0 rcu_nocb_kthread 0 S [rcuop/4]          4
12428root            46     2       0      0 rcu_nocb_kthread 0 S [rcuos/4]          4
12429root            47     2       0      0 rcu_nocb_kthread 0 S [rcuob/4]          4
12430root            48     2       0      0 smpboot_thread_fn 0 S [cpuhp/5]         4
12431root            49     2       0      0 smpboot_thread_fn 0 S [migration/5]     4
12432root            50     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/5]     5
12433root            52     2       0      0 worker_thread 0 S [kworker/5:0H]        5
12434root            53     2       0      0 rcu_nocb_kthread 0 S [rcuop/5]          5
12435root            54     2       0      0 rcu_nocb_kthread 0 S [rcuos/5]          5
12436root            55     2       0      0 rcu_nocb_kthread 0 S [rcuob/5]          5
12437root            56     2       0      0 smpboot_thread_fn 0 S [cpuhp/6]         5
12438root            57     2       0      0 smpboot_thread_fn 0 S [migration/6]     5
12439root            58     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/6]     5
12440root            60     2       0      0 worker_thread 0 S [kworker/6:0H]        6
12441root            61     2       0      0 rcu_nocb_kthread 0 S [rcuop/6]          6
12442root            62     2       0      0 rcu_nocb_kthread 0 S [rcuos/6]          6
12443root            63     2       0      0 rcu_nocb_kthread 0 S [rcuob/6]          6
12444root            64     2       0      0 smpboot_thread_fn 0 S [cpuhp/7]         6
12445root            65     2       0      0 smpboot_thread_fn 0 S [migration/7]     6
12446root            66     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/7]     6
12447root            68     2       0      0 worker_thread 0 S [kworker/7:0H]        6
12448root            69     2       0      0 rcu_nocb_kthread 0 S [rcuop/7]          6
12449root            70     2       0      0 rcu_nocb_kthread 0 S [rcuos/7]          7
12450root            71     2       0      0 rcu_nocb_kthread 0 S [rcuob/7]          7
12451root            72     2       0      0 rescuer_thread 0 S [netns]              7
12452root            75     2       0      0 rescuer_thread 0 S [ipa_usb_wq]         7
12453root            77     2       0      0 watchdog_kthread 0 S [msm_watchdog]     7
12454root            78     2       0      0 kthread_worker_fn 0 S [smem_native_sps] 7
12455root            79     2       0      0 kthread_worker_fn 0 S [spss_mailbox_gl] 7
12456root            80     2       0      0 kthread_worker_fn 0 S [qmp_aop]         8
12457root            81     2       0      0 kthread_worker_fn 0 S [smem_native_mps] 8
12458root            82     2       0      0 kthread_worker_fn 0 S [mpss_smem_glink] 8
12459root            83     2       0      0 kthread_worker_fn 0 S [smem_native_lpa] 8
12460root            84     2       0      0 kthread_worker_fn 0 S [lpass_smem_glin] 8
12461root            85     2       0      0 kthread_worker_fn 0 S [smem_native_dsp] 8
12462root            86     2       0      0 kthread_worker_fn 0 S [dsps_smem_glink] 8
12463root            87     2       0      0 kthread_worker_fn 0 S [smem_native_cds] 8
12464root            88     2       0      0 kthread_worker_fn 0 S [cdsp_smem_glink] 8
12465root            89     2       0      0 watchdog 0 S [khungtaskd]               8
12466root            90     2       0      0 oom_reaper 0 S [oom_reaper]             9
12467root            91     2       0      0 rescuer_thread 0 S [writeback]          9
12468root            92     2       0      0 kcompactd 0 S [kcompactd0]              9
12469root            93     2       0      0 rescuer_thread 0 S [crypto]             9
12470root            94     2       0      0 rescuer_thread 0 S [bioset]             9
12471root            95     2       0      0 rescuer_thread 0 S [kblockd]            9
12472root            96     2       0      0 irq_thread 0 S [irq/159-arm-smm]        9
12473root            97     2       0      0 irq_thread 0 S [irq/160-arm-smm]        9
12474root            98     2       0      0 irq_thread 0 S [irq/169-arm-smm]        9
12475root           100     2       0      0 irq_thread 0 S [irq/124-tsens-u]        1
12476root           101     2       0      0 irq_thread 0 S [irq/125-tsens-c]        1
12477root           102     2       0      0 irq_thread 0 S [irq/126-tsens-u]        1
12478root           103     2       0      0 irq_thread 0 S [irq/127-tsens-c]        1
12479root           104     2       0      0 rescuer_thread 0 S [edac-poller]        1
12480root           105     2       0      0 ion_heap_deferred_free 0 S [system]     1
12481root           106     2       0      0 ion_heap_deferred_free 0 S [easel_mem]  1
12482root           107     2       0      0 rescuer_thread 0 S [ipa_power_mgmt]     1
12483root           108     2       0      0 rescuer_thread 0 S [transport_power]    1
12484root           109     2       0      0 rescuer_thread 0 S [ipa_rm_wq]          1
12485root           110     2       0      0 rescuer_thread 0 S [devfreq_wq]         1
12486root           111     2       0      0 rescuer_thread 0 S [governor_msm_ad]    1
12487root           112     2       0      0 rescuer_thread 0 S [cfg80211]           1
12488root           113     2       0      0 irq_thread 0 S [irq/540-ibb-sc-]        1
12489root           114     2       0      0 irq_thread 0 S [irq/541-lab-sc-]        1
12490root           116     2       0      0 irq_thread 0 S [irq/74-qpnp_wle]        1
12491root           117     2       0      0 irq_thread 0 S [irq/75-qpnp_wle]        1
12492root           143     2       0      0 kswapd  0 S [kswapd0]                   1
12493root           144     2       0      0 rescuer_thread 0 S [vmstat]             1
12494root           145     2       0      0 ecryptfs_threadfn 0 S [ecryptfs-kthrea] 1
12495root           180     2       0      0 irq_thread 0 S [irq/173-arm-smm]        1
12496root           181     2       0      0 irq_thread 0 S [irq/174-arm-smm]        1
12497root           182     2       0      0 irq_thread 0 S [irq/90-eud_irq]         1
12498root           183     2       0      0 rescuer_thread 0 S [glink_ssr_wq]       1
12499root           184     2       0      0 rescuer_thread 0 S [glink_lbsrv]        1
12500root           185     2       0      0 kthread_worker_fn 0 S [spi_wdsp]        1
12501root           186     2       0      0 kthread_worker_fn 0 S [wdsp_spi_glink_] 1
12502root           187     2       0      0 rescuer_thread 0 S [glink_xprt_wq]      1
12503root           188     2       0      0 rescuer_thread 0 S [IPCRTR_mpss_sme]    1
12504root           189     2       0      0 rescuer_thread 0 S [IPCRTR_lpass_sm]    1
12505root           190     2       0      0 rescuer_thread 0 S [IPCRTR_dsps_sme]    1
12506root           191     2       0      0 rescuer_thread 0 S [IPCRTR_cdsp_sme]    1
12507root           192     2       0      0 rescuer_thread 0 S [glink_pkt_wq]       1
12508root           193     2       0      0 irq_thread 0 S [irq/175-arm-smm]        1
12509root           194     2       0      0 rescuer_thread 0 S [qmi_svc_event_w]    1
12510root           195     2       0      0 rescuer_thread 0 S [msm_ipc_router]     1
12511root           197     2       0      0 rescuer_thread 0 S [servloc_wq]         1
12512root           198     2       0      0 irq_thread 0 S [irq/176-arm-smm]        1
12513root           199     2       0      0 irq_thread 0 S [irq/177-arm-smm]        1
12514root           200     2       0      0 add_hwgenerator_randomness 0 S [hwrng]  2
12515root           202     2       0      0 rescuer_thread 0 S [diag_real_time_]    2
12516root           203     2       0      0 rescuer_thread 0 S [diag_wq]            2
12517root           204     2       0      0 rescuer_thread 0 S [DIAG_USB_diag]      2
12518root           205     2       0      0 rescuer_thread 0 S [diag_cntl_wq]       2
12519root           206     2       0      0 rescuer_thread 0 S [diag_dci_wq]        2
12520root           207     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12521root           208     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12522root           209     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12523root           210     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12524root           211     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12525root           212     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12526root           213     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12527root           214     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12528root           215     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12529root           216     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12530root           217     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12531root           218     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12532root           219     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12533root           220     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12534root           221     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12535root           222     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12536root           223     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12537root           224     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12538root           225     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12539root           226     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12540root           227     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
12541root           228     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
12542root           229     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
12543root           230     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
12544root           231     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
12545root           232     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
12546root           233     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
12547root           234     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
12548root           235     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
12549root           236     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
12550root           237     2       0      0 rescuer_thread 0 S [DIAG_CNTL_SOCKE]    2
12551root           238     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12552root           239     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12553root           240     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12554root           241     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12555root           242     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12556root           243     2       0      0 diag_socket_read 0 S [kworker/u16:1]    2
12557root           244     2       0      0 rescuer_thread 0 S [kgsl-workqueue]     2
12558root           245     2       0      0 rescuer_thread 0 S [kgsl-mementry]      2
12559root           246     2       0      0 kthread_worker_fn 0 S [kgsl_worker_thr] 2
12560root           247     2       0      0 irq_thread 0 S [irq/161-arm-smm]        2
12561root           248     2       0      0 irq_thread 0 S [irq/162-arm-smm]        2
12562root           250     2       0      0 irq_thread 0 S [irq/170-arm-smm]        2
12563root           251     2       0      0 irq_thread 0 S [irq/163-arm-smm]        2
12564root           252     2       0      0 irq_thread 0 S [irq/178-arm-smm]        2
12565root           253     2       0      0 kthread_worker_fn 0 S [crtc_commit:111] 2
12566root           254     2       0      0 kthread_worker_fn 0 S [crtc_event:111]  2
12567root           255     2       0      0 kthread_worker_fn 0 S [crtc_commit:163] 2
12568root           256     2       0      0 kthread_worker_fn 0 S [crtc_event:163]  2
12569root           257     2       0      0 kthread_worker_fn 0 S [pp_event]        2
12570root           258     2       0      0 rescuer_thread 0 S [kgsl-events]        2
12571root           259     2       0      0 rescuer_thread 0 S [kgsl_devfreq_wq]    2
12572root           260     2       0      0 rescuer_thread 0 S [bioset]             2
12573root           261     2       0      0 rescuer_thread 0 S [bioset]             2
12574root           262     2       0      0 rescuer_thread 0 S [bioset]             2
12575root           263     2       0      0 rescuer_thread 0 S [bioset]             2
12576root           264     2       0      0 rescuer_thread 0 S [bioset]             2
12577root           265     2       0      0 rescuer_thread 0 S [bioset]             2
12578root           266     2       0      0 rescuer_thread 0 S [bioset]             2
12579root           267     2       0      0 rescuer_thread 0 S [bioset]             2
12580root           268     2       0      0 rescuer_thread 0 S [bioset]             2
12581root           269     2       0      0 rescuer_thread 0 S [bioset]             2
12582root           270     2       0      0 rescuer_thread 0 S [bioset]             2
12583root           271     2       0      0 rescuer_thread 0 S [bioset]             2
12584root           272     2       0      0 rescuer_thread 0 S [bioset]             2
12585root           273     2       0      0 rescuer_thread 0 S [bioset]             2
12586root           274     2       0      0 rescuer_thread 0 S [bioset]             2
12587root           275     2       0      0 rescuer_thread 0 S [bioset]             2
12588root           276     2       0      0 rescuer_thread 0 S [bioset]             2
12589root           277     2       0      0 rescuer_thread 0 S [bioset]             2
12590root           278     2       0      0 rescuer_thread 0 S [bioset]             2
12591root           279     2       0      0 rescuer_thread 0 S [bioset]             2
12592root           280     2       0      0 rescuer_thread 0 S [bioset]             2
12593root           281     2       0      0 rescuer_thread 0 S [bioset]             2
12594root           282     2       0      0 rescuer_thread 0 S [bioset]             2
12595root           283     2       0      0 rescuer_thread 0 S [bioset]             2
12596root           284     2       0      0 rescuer_thread 0 S [bioset]             2
12597root           285     2       0      0 rescuer_thread 0 S [memory_wq]          2
12598root           286     2       0      0 irq_thread 0 S [irq/179-arm-smm]        2
12599root           287     2       0      0 irq_thread 0 S [irq/180-arm-smm]        2
12600root           288     2       0      0 irq_thread 0 S [irq/181-arm-smm]        2
12601root           289     2       0      0 rescuer_thread 0 S [qcrypto_seq_res]    2
12602root           290     2       0      0 irq_thread 0 S [irq/182-arm-smm]        2
12603root           311     2       0      0 scsi_error_handler 0 S [scsi_eh_0]      3
12604root           312     2       0      0 rescuer_thread 0 S [scsi_tmf_0]         3
12605root           313     2       0      0 rescuer_thread 0 S [ufs_pm_qos_0]       3
12606root           314     2       0      0 rescuer_thread 0 S [ufs_clk_gating_]    3
12607root           315     2       0      0 rescuer_thread 0 S [ufs_mgc_hibern8]    3
12608root           316     2       0      0 rescuer_thread 0 S [ice-set-key]        3
12609root           317     2       0      0 kthread_worker_fn 0 S [spi10]           3
12610root           318     2       0      0 kthread_worker_fn 0 S [spi32766]        3
12611root           319     2       0      0 kthread_worker_fn 0 S [spi0]            3
12612root           320     2       0      0 kthread_worker_fn 0 S [spi32765]        3
12613root           321     2       0      0 rescuer_thread 0 S [bond0]              3
12614root           322     2       0      0 rescuer_thread 0 S [sharedmem_qmi_w]    3
12615root           323     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    3
12616root           324     2       0      0 diag_socket_read 0 S [kworker/u16:2]    3
12617root           325     2       0      0 diag_socket_read 0 S [kworker/u16:3]    3
12618root           330     2       0      0 rescuer_thread 0 S [uether]             3
12619root           331     2       0      0 rescuer_thread 0 S [k_ipa_usb]          3
12620root           334     2       0      0 irq_thread 0 S [irq/377-soc:fp_]        3
12621root           336     2       0      0 rescuer_thread 0 S [bioset]             3
12622root           337     2       0      0 irq_thread 0 S [irq/29-i2c_pmic]        3
12623root           338     2       0      0 rescuer_thread 0 S [bioset]             3
12624root           339     2       0      0 rescuer_thread 0 S [bioset]             3
12625root           340     2       0      0 rescuer_thread 0 S [bioset]             3
12626root           342     2       0      0 rescuer_thread 0 S [msm_vidc_worker]    3
12627root           343     2       0      0 rescuer_thread 0 S [pm_workerq_venu]    3
12628root           344     2       0      0 irq_thread 0 S [irq/183-arm-smm]        3
12629root           345     2       0      0 irq_thread 0 S [irq/184-arm-smm]        3
12630root           346     2       0      0 rescuer_thread 0 S [bioset]             3
12631root           347     2       0      0 irq_thread 0 S [irq/185-arm-smm]        3
12632root           348     2       0      0 rescuer_thread 0 S [bioset]             3
12633root           349     2       0      0 irq_thread 0 S [irq/186-arm-smm]        3
12634root           350     2       0      0 rescuer_thread 0 S [bioset]             3
12635root           351     2       0      0 rescuer_thread 0 S [bioset]             3
12636root           352     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_0] 3
12637root           353     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_1] 3
12638root           354     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_0]   3
12639root           355     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_1]   3
12640root           356     2       0      0 rescuer_thread 0 S [bioset]             3
12641root           357     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_0]  3
12642root           358     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_1]  3
12643root           359     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_2]  3
12644root           360     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_3]  3
12645root           361     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_4]  3
12646root           362     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_5]  3
12647root           363     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_6]  3
12648root           364     2       0      0 diag_socket_read 0 S [kworker/u16:4]    3
12649root           365     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_7]  3
12650root           366     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_8]  3
12651root           367     2       0      0 diag_socket_read 0 S [kworker/u16:5]    3
12652root           368     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_9]  3
12653root           369     2       0      0 diag_socket_read 0 S [kworker/u16:6]    3
12654root           370     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_10] 3
12655root           371     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_11] 3
12656root           372     2       0      0 diag_socket_read 0 S [kworker/u16:7]    3
12657root           373     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_12] 3
12658root           374     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_13] 3
12659root           375     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_14] 3
12660root           376     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_15] 3
12661root           377     2       0      0 rescuer_thread 0 S [cam-cpas]           3
12662root           378     2       0      0 rescuer_thread 0 S [qcom,cam_virtua]    3
12663root           379     2       0      0 irq_thread 0 S [irq/187-arm-smm]        3
12664root           380     2       0      0 rescuer_thread 0 S [qcom,cam170-cpa]    3
12665root           381     2       0      0 irq_thread 0 S [irq/188-arm-smm]        3
12666root           382     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
12667root           383     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
12668root           384     2       0      0 irq_thread 0 S [irq/189-arm-smm]        3
12669root           385     2       0      0 irq_thread 0 S [irq/190-arm-smm]        3
12670root           386     2       0      0 irq_thread 0 S [irq/191-arm-smm]        3
12671root           387     2       0      0 irq_thread 0 S [irq/192-arm-smm]        3
12672root           388     2       0      0 irq_thread 0 S [irq/711-chg-err]        3
12673root           389     2       0      0 irq_thread 0 S [irq/712-chg-sta]        3
12674root           390     2       0      0 irq_thread 0 S [irq/716-otg-fai]        3
12675root           391     2       0      0 irq_thread 0 S [irq/717-otg-ove]        3
12676root           392     2       0      0 irq_thread 0 S [irq/718-otg-oc-]        3
12677root           393     2       0      0 irq_thread 0 S [irq/719-testmod]        3
12678root           394     2       0      0 irq_thread 0 S [irq/720-bat-tem]        3
12679root           395     2       0      0 irq_thread 0 S [irq/721-bat-ocp]        3
12680root           396     2       0      0 irq_thread 0 S [irq/722-bat-ov]         3
12681root           397     2       0      0 irq_thread 0 S [irq/723-bat-low]        3
12682root           398     2       0      0 irq_thread 0 S [irq/724-bat-the]        3
12683root           399     2       0      0 irq_thread 0 S [irq/725-bat-ter]        3
12684root           400     2       0      0 irq_thread 0 S [irq/726-usbin-c]        4
12685root           401     2       0      0 irq_thread 0 S [irq/727-usbin-l]        4
12686root           402     2       0      0 irq_thread 0 S [irq/728-usbin-u]        4
12687root           403     2       0      0 irq_thread 0 S [irq/729-usbin-o]        4
12688root           404     2       0      0 irq_thread 0 S [irq/730-usbin-p]        4
12689root           405     2       0      0 irq_thread 0 S [irq/731-usbin-s]        4
12690root           406     2       0      0 irq_thread 0 S [irq/732-usbin-i]        4
12691root           407     2       0      0 irq_thread 0 S [irq/733-type-c-]        4
12692root           408     2       0      0 irq_thread 0 S [irq/734-dcin-co]        4
12693root           409     2       0      0 irq_thread 0 S [irq/735-dcin-lt]        4
12694root           410     2       0      0 irq_thread 0 S [irq/736-dcin-uv]        4
12695root           411     2       0      0 irq_thread 0 S [irq/737-dcin-ov]        4
12696root           412     2       0      0 irq_thread 0 S [irq/738-dcin-pl]        4
12697root           413     2       0      0 irq_thread 0 S [irq/739-div2-en]        4
12698root           414     2       0      0 irq_thread 0 S [irq/740-dcin-ic]        4
12699root           415     2       0      0 irq_thread 0 S [irq/742-wdog-ba]        4
12700root           416     2       0      0 irq_thread 0 S [irq/743-aicl-fa]        4
12701root           417     2       0      0 irq_thread 0 S [irq/744-aicl-do]        4
12702root           418     2       0      0 irq_thread 0 S [irq/745-high-du]        4
12703root           419     2       0      0 irq_thread 0 S [irq/746-input-c]        4
12704root           420     2       0      0 irq_thread 0 S [irq/747-tempera]        4
12705root           421     2       0      0 irq_thread 0 S [irq/748-switche]        4
12706root           422     2       0      0 irq_thread 0 S [irq/380-p9221-i]        4
12707root           423     2       0      0 irq_thread 0 S [irq/292-p9221-i]        4
12708root           424     2       0      0 irq_thread 0 S [irq/69-bcl-high]        4
12709root           425     2       0      0 irq_thread 0 S [irq/71-bcl-low-]        4
12710root           426     2       0      0 irq_thread 0 S [irq/542-limits_]        4
12711root           427     2       0      0 irq_thread 0 S [irq/543-limits_]        4
12712root           428     2       0      0 rescuer_thread 0 S [qmi_tmd_wq]         4
12713root           429     2       0      0 rescuer_thread 0 S [dm_bufio_cache]     4
12714root           430     2       0      0 irq_thread 0 S [irq/98-KRYO3XX ]        4
12715root           431     2       0      0 irq_thread 0 S [irq/370-s2mpb04]        4
12716root           432     2       0      0 irq_thread 0 S [irq/286-s2mpb04]        4
12717root           433     2       0      0 irq_thread 0 S [irq/51-vendor:e]        4
12718root           434     2       0      0 irq_thread 0 S [irq/193-arm-smm]        4
12719root           435     2       0      0 rescuer_thread 0 S [uaudio_svc]         4
12720root           436     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    4
12721root           437     2       0      0 rescuer_thread 0 S [apr_driver]         4
12722root           438     2       0      0 rescuer_thread 0 S [ipv6_addrconf]      4
12723root           439     2       0      0 irq_thread 0 S [irq/879-adsp]           4
12724root           441     2       0      0 rescuer_thread 0 S [sysmon_wq]          4
12725root           442     2       0      0 irq_thread 0 S [irq/911-slpi]           4
12726root           443     2       0      0 irq_thread 0 S [irq/943-cdsp]           4
12727root           444     2       0      0 irq_thread 0 S [irq/847-modem]          4
12728root           452     2       0      0 irq_thread 0 S [irq/38-sig-tx]          4
12729root           453     2       0      0 irq_thread 0 S [irq/57-sig-rx]          4
12730root           454     2       0      0 rescuer_thread 0 S [usbpd0]             4
12731root           455     2       0      0 rescuer_thread 0 S [usbpd0]             4
12732root           456     2       0      0 irq_thread 0 S [irq/1039-soc-up]        4
12733root           457     2       0      0 irq_thread 0 S [irq/1040-soc-re]        4
12734root           458     2       0      0 irq_thread 0 S [irq/1041-bsoc-d]        4
12735root           459     2       0      0 irq_thread 0 S [irq/1042-msoc-d]        4
12736root           460     2       0      0 irq_thread 0 S [irq/1043-msoc-l]        4
12737root           461     2       0      0 irq_thread 0 S [irq/1044-msoc-e]        4
12738root           462     2       0      0 irq_thread 0 S [irq/1045-msoc-h]        4
12739root           463     2       0      0 irq_thread 0 S [irq/1046-msoc-f]        4
12740root           464     2       0      0 irq_thread 0 S [irq/1047-vbatt-]        4
12741root           465     2       0      0 irq_thread 0 S [irq/1048-vbatt-]        4
12742root           466     2       0      0 irq_thread 0 S [irq/1049-esr-de]        4
12743root           467     2       0      0 irq_thread 0 S [irq/1050-batt-m]        4
12744root           468     2       0      0 irq_thread 0 S [irq/1051-batt-t]        4
12745root           469     2       0      0 irq_thread 0 S [irq/1052-ima-rd]        4
12746root           470     2       0      0 irq_thread 0 S [irq/1053-mem-xc]        4
12747root           471     2       0      0 irq_thread 0 S [irq/1054-dma-gr]        4
12748root           472     2       0      0 irq_thread 0 S [irq/36-qcom,tem]        4
12749root           473     2       0      0 irq_thread 0 S [irq/535-pwr_eve]        4
12750root           474     2       0      0 irq_thread 0 S [irq/534-dp_hs_p]        4
12751root           475     2       0      0 irq_thread 0 S [irq/537-dm_hs_p]        4
12752root           476     2       0      0 irq_thread 0 S [irq/536-ss_phy_]        4
12753root           477     2       0      0 irq_thread 0 S [irq/194-arm-smm]        4
12754root           478     2       0      0 rescuer_thread 0 S [usb_bam_wq]         4
12755root           480     2       0      0 try_core_ctl 0 S [core_ctl/0]           4
12756root           481     2       0      0 try_core_ctl 0 S [core_ctl/4]           4
12757root           491     2       0      0 rescuer_thread 0 S [rq_stats]           4
12758root           492     2       0      0 irq_thread 0 S [irq/195-arm-smm]        4
12759root           493     2       0      0 irq_thread 0 S [irq/196-arm-smm]        4
12760root           494     2       0      0 irq_thread 0 S [irq/197-arm-smm]        4
12761root           495     2       0      0 irq_thread 0 S [irq/198-arm-smm]        4
12762root           496     2       0      0 irq_thread 0 S [irq/199-arm-smm]        4
12763root           497     2       0      0 irq_thread 0 S [irq/200-arm-smm]        4
12764root           498     2       0      0 irq_thread 0 S [irq/201-arm-smm]        4
12765root           499     2       0      0 irq_thread 0 S [irq/202-arm-smm]        4
12766root           500     2       0      0 irq_thread 0 S [irq/203-arm-smm]        5
12767root           501     2       0      0 irq_thread 0 S [irq/204-arm-smm]        5
12768root           502     2       0      0 irq_thread 0 S [irq/205-arm-smm]        5
12769root           503     2       0      0 kthread_worker_fn 0 S [set_state_work]  5
12770root           504     2       0      0 rescuer_thread 0 S [sb-1]               5
12771root           505     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread1] 5
12772root           506     2       0      0 irq_thread 0 S [irq/308-mnh-rea]        5
12773root           507     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl1]  5
12774root           508     2       0      0 rescuer_thread 0 S [sb-3]               5
12775root           509     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread3] 5
12776root           510     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl3]  5
12777root           511     2       0      0 rescuer_thread 0 S [tbn_event_proce]    5
12778root           512     2       0      0 irq_thread 0 S [irq/78-qpnp_fla]        5
12779root           513     2       0      0 irq_thread 0 S [irq/77-qpnp_fla]        5
12780root           514     2       0      0 irq_thread 0 S [irq/76-qpnp_fla]        5
12781root           515     2       0      0 irq_thread 0 S [irq/1056-mnh_pc]        5
12782root           516     2       0      0 irq_thread 0 S [irq/1057-mnh_pc]        5
12783root           517     2       0      0 irq_thread 0 S [irq/1058-mnh_pc]        5
12784root           518     2       0      0 irq_thread 0 S [irq/1059-mnh_pc]        5
12785root           519     2       0      0 irq_thread 0 S [irq/1060-mnh_pc]        5
12786root           520     2       0      0 irq_thread 0 S [irq/1063-mnh_pc]        5
12787root           521     2       0      0 irq_thread 0 S [irq/1064-mnh_pc]        5
12788root           522     2       0      0 irq_thread 0 S [irq/206-arm-smm]        5
12789root           524     2       0      0 worker_thread 0 S [kworker/4:1H]        5
12790root           525     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
12791root           526     2       0      0 irq_thread 0 S [irq/318-max1720]        5
12792root           530     2       0      0 worker_thread 0 S [kworker/5:1H]        5
12793root           531     2       0      0 worker_thread 0 S [kworker/0:1H]        5
12794root           533     2       0      0 worker_thread 0 S [kworker/1:1H]        5
12795root           535     2       0      0 kjournald2 0 S [jbd2/sdf2-8]            5
12796root           536     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
12797root           537     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
12798root           538     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
12799root           539     2       0      0 worker_thread 0 S [kworker/6:1H]        5
12800root           540     1   11724   3272 do_sys_poll 0 S init                    init
12801root           541     1   11080   2880 do_sys_poll 0 S init                    init
12802root           542     1   13384   3288 do_sys_poll 0 S ueventd                 init
12803root           544     2       0      0 worker_thread 0 S [kworker/7:1H]        5
12804root           546     2       0      0 irq_thread 0 S [irq/381-fts]            5
12805logd           555     1   30408  13708 SyS_rt_sigsuspend 0 S logd              logd
12806system         556     1   15876   3680 do_wait 0 S qseecomd                    qseecomd
12807system         557     1   17460   3664 binder_ioctl 0 S android.hardware.keyprimary@4.0-service-qti android.hardware.keyprimary@4.0-service-qti
12808root           559     2       0      0 kthread_worker_fn 0 S [sugov:0]         5
12809root           560     2       0      0 kthread_worker_fn 0 S [sugov:4]         5
12810root           565     2       0      0 kauditd_thread 0 S [kauditd]            5
12811root           567     1 2124376   5728 binder_ioctl 0 S vold                   vold
12812system         568     1 2114160   4780 binder_ioctl 0 S hwservicemanager       hwservicemanager
12813root           575     2       0      0 kjournald2 0 S [jbd2/sda20-8]           5
12814system         576   556   29756   2332 SyS_rt_sigsuspend 0 S qseecomd          qseecomd
12815root           580     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
12816system         587     1   10416   2464 binder_ioctl 0 S servicemanager         servicemanager
12817system         588     1   11188   2556 binder_ioctl 0 S vndservicemanager      vndservicemanager
12818root           590     1   12516   3092 binder_ioctl 0 S android.hardware.boot@1.0-service android.hardware.boot@1.0-service
12819system         591     1   13968   3296 binder_ioctl 0 S android.hardware.gatekeeper@1.0-service-qti android.hardware.gatekeeper@1.0-service-qti
12820hsm            592     1 2127108   6120 binder_ioctl 0 S android.hardware.keyprimary@4.0-service.citadel android.hardware.keyprimary@4.0-service.citadel
12821hsm            593     1   16388   2880 binder_ioctl 0 S citadeld               citadeld
12822system         595     1   20052   4528 do_sys_poll 0 S sscrpcd                 sscrpcd
12823system         598     1 2142956  14468 binder_ioctl 0 S android.hardware.graphics.composer@2.2-service android.hardware.graphics.composer@2.2-service
12824system         599     1   16816   3128 binder_ioctl 0 S android.hardware.configstore@1.1-service android.hardware.configstore@1.1-service
12825root           625     2       0      0 irq_thread 0 S [irq/164-arm-smm]        6
12826root           645     2       0      0 rescuer_thread 0 S [cds_recovery_wo]    6
12827root           646     2       0      0 wlan_logging_thread 0 S [wlan_logging_th] 6
12828root           651     2       0      0 rescuer_thread 0 S [dsps_IPCRTR]        6
12829root           652     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
12830root           653     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
12831root           658     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
12832root           665     2       0      0 irq_thread 0 S [irq/371-cs35l36]        6
12833root           666     2       0      0 irq_thread 0 S [irq/296-cs35l36]        6
12834root           673     2       0      0 rescuer_thread 0 S [kdmflush]           6
12835root           674     2       0      0 rescuer_thread 0 S [bioset]             6
12836root           677     2       0      0 issue_flush_thread 0 S [f2fs_flush-253:] 6
12837root           678     2       0      0 issue_discard_thread 0 S [f2fs_discard-25] 6
12838root           679     2       0      0 gc_thread_func 0 S [f2fs_gc-253:0]      6
12839system         681     1   20836   2940 futex_wait_queue_me 0 S time_daemon     time_daemon
12840root           697     2       0      0 worker_thread 0 S [kworker/3:1H]        6
12841root           707     2       0      0 irq_thread 0 S [irq/207-arm-smm]        7
12842root           708     2       0      0 irq_thread 0 S [irq/208-arm-smm]        7
12843root           709     2       0      0 irq_thread 0 S [irq/209-arm-smm]        7
12844root           712     2       0      0 rescuer_thread 0 S [ipa_interrupt_w]    7
12845root           713     2       0      0 rescuer_thread 0 S [ipawq36]            7
12846root           714     2       0      0 rescuer_thread 0 S [iparepwq36]         7
12847root           715     2       0      0 rescuer_thread 0 S [ipawq33]            7
12848root           716     2       0      0 rescuer_thread 0 S [iparepwq33]         7
12849root           717     2       0      0 rescuer_thread 0 S [ipawq32]            7
12850root           718     2       0      0 rescuer_thread 0 S [iparepwq32]         7
12851root           719     2       0      0 rescuer_thread 0 S [ipa_ut_dbgfs]       7
12852root           720     2       0      0 rescuer_thread 0 S [ipa_A7_svc]         7
12853root           722     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    7
12854root           723     2       0      0 rescuer_thread 0 S [clnt_req]           7
12855root           724     2       0      0 rescuer_thread 0 S [clnt_req]           7
12856root           725     2       0      0 rescuer_thread 0 S [clnt_resp]          7
12857root           750     2       0      0 rescuer_thread 0 S [at_usb0]            7
12858root           751     2       0      0 rescuer_thread 0 S [at_usb1]            7
12859root           752     2       0      0 rescuer_thread 0 S [qdss]               7
12860system         753     1   12472   3212 binder_ioctl 0 S android.hidl.allocator@1.0-service android.hidl.allocator@1.0-service
12861vendor_pixelstats_system 754 1 12544 3236 binder_ioctl 0 S hardware.google.pixelstats@1.0-service hardware.google.pixelstats@1.0-service
12862system         755     1 2120564   4900 binder_ioctl 0 S vr_hwc                 vr_hwc
12863system         756     1 2120204   5756 binder_ioctl 0 S android.hardware.neuralnetworks@1.0-service-paintbox android.hardware.neuralnetworks@1.0-service-paintbox
12864audioserver    757     1   47928  14872 binder_ioctl 0 S android.hardware.audio@2.0-service android.hardware.audio@2.0-service
12865hsm            758     1   18672   5468 binder_ioctl 0 S android.hardware.authsecret@1.0-service.citadel android.hardware.authsecret@1.0-service.citadel
12866bluetooth      759     1   25884   4128 binder_ioctl 0 S android.hardware.bluetooth@1.0-service-qti android.hardware.bluetooth@1.0-service-qti
12867cameraserver   760     1 2224040  32108 binder_ioctl 0 S android.hardware.camera.provider@2.4-service_64 android.hardware.camera.provider@2.4-service_64
12868media          761     1   11312   3092 binder_ioctl 0 S android.hardware.cas@1.0-service android.hardware.cas@1.0-service
12869system         763     1 2112736   3128 binder_ioctl 0 S android.hardware.contexthub@1.0-service android.hardware.contexthub@1.0-service
12870media          764     1   19516   4140 binder_ioctl 0 S android.hardware.drm@1.0-service android.hardware.drm@1.0-service
12871media          765     1   19668   4300 binder_ioctl 0 S android.hardware.drm@1.1-service.clearkey android.hardware.drm@1.1-service.clearkey
12872media          766     1   23804   5076 binder_ioctl 0 S android.hardware.drm@1.1-service.widevine android.hardware.drm@1.1-service.widevine
12873gps            767     1   42972   7584 binder_ioctl 0 S android.hardware.gnss@1.1-service-qti android.hardware.gnss@1.1-service-qti
12874system         769     1   12348   3092 binder_ioctl 0 S android.hardware.light@2.0-service android.hardware.light@2.0-service
12875system         770     1   12332   3148 binder_ioctl 0 S android.hardware.memtrack@1.0-service android.hardware.memtrack@1.0-service
12876system         771     1  216784   5268 binder_ioctl 0 S android.hardware.neuralnetworks@1.1-service-qti android.hardware.neuralnetworks@1.1-service-qti
12877nfc            772     1   20752   3816 binder_ioctl 0 S android.hardware.nfc@1.1-service android.hardware.nfc@1.1-service
12878hsm            773     1   17640   5268 binder_ioctl 0 S android.hardware.oemlock@1.0-service.citadel android.hardware.oemlock@1.0-service.citadel
12879secure_element 775     1   14180   3760 binder_ioctl 0 S android.hardware.secure_element@1.0-service android.hardware.secure_element@1.0-service
12880hsm            782     1   17624   5256 binder_ioctl 0 S android.hardware.weaver@1.0-service.citadel android.hardware.weaver@1.0-service.citadel
12881wifi           783     1   22948   9104 binder_ioctl 0 S android.hardware.wifi@1.0-service android.hardware.wifi@1.0-service
12882radio          784     1   21824   3728 binder_ioctl 0 S vendor.google.radioext@1.0-service vendor.google.radioext@1.0-service
12883system         785     1   12380   2980 binder_ioctl 0 S vendor.google.wireless_charger@1.0-service-vendor vendor.google.wireless_charger@1.0-service-vendor
12884system         786     1   19640   3820 binder_ioctl 0 S vendor.qti.hardware.display.allocator@1.0-service vendor.qti.hardware.display.allocator@1.0-service
12885nobody         787     1   13536   3624 binder_ioctl 0 S vendor.qti.hardware.tui_comm@1.0-service-qti vendor.qti.hardware.tui_comm@1.0-service-qti
12886mediacodec     788     1   23392   8348 binder_ioctl 0 S vendor.qti.media.c2@1.0-service vendor.qti.media.c2@1.0-service
12887system         789     1   25164   3144 do_sigtimedwait 0 S pm-service          pm-service
12888system         790     1   17792   4540 hrtimer_nanosleep 0 S sensors.qti       sensors.qti
12889root           796     2       0      0 rescuer_thread 0 S [cdsp_IPCRTR]        7
12890nobody         800     1   18492   2220 do_select 0 S rmt_storage               rmt_storage
12891vendor_rfs     801     1   12220   2392 do_sys_poll 0 S tftp_server             tftp_server
12892system         802     1   15460   2716 hrtimer_nanosleep 0 S pd-mapper         pd-mapper
12893root           805     1   10056   2392 do_sys_poll 0 S msm_irqbalance          msm_irqbalance
12894audioserver    806     1  100080  14480 binder_ioctl 0 S audioserver            audioserver
12895system         807     1 2113012   4812 SyS_epoll_wait 0 S bufferhubd           bufferhubd
12896lmkd           808     1    9204   1780 SyS_epoll_wait 0 S lmkd                 lmkd
12897system         810     1 2109736   3300 SyS_epoll_wait 0 S performanced         performanced
12898system         811     1 2116668   4004 binder_ioctl 0 S thermalserviced        thermalserviced
12899system         812     1 2113496   3148 binder_ioctl 0 S virtual_touchpad       virtual_touchpad
12900u0_a16         817 23897 3678572  52092 SyS_epoll_wait 0 S com.google.android.carrier app_process64
12901root           820     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
12902root           821     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
12903root           827     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
12904root           834     2       0      0 rescuer_thread 0 S [adsp]               8
12905root           837     2       0      0 rescuer_thread 0 S [modem]              8
12906root           842     1   17692   2752 do_sys_poll 0 S subsystem_ramdump       subsystem_ramdump
12907graphics       843     1   19956   4408 do_sys_poll 0 S mm-pp-dpps              mm-pp-dpps
12908shell          844     1   18008   2780 hrtimer_nanosleep 0 S diag_mdlog        diag_mdlog
12909root           847     1   79208   3640 SyS_rt_sigsuspend 0 S thermal-engine    thermal-engine
12910media          848     1   14452   2676 do_sys_poll 0 S adsprpcd                adsprpcd
12911system         849     1   14584   2212 do_sys_poll 0 S cdsprpcd                cdsprpcd
12912root           850     2       0      0 worker_thread 0 S [kworker/2:1H]        8
12913system         853     1   15460   2692 do_select 0 S imsqmidaemon              imsqmidaemon
12914root           854     2       0      0 rescuer_thread 0 S [lpass_IPCRTR]       8
12915radio          855     1 2143196   6548 SyS_epoll_wait 0 S cnd                  cnd
12916radio          856     1  128632   8660 __skb_wait_for_more_packets 0 S netmgrd netmgrd
12917radio          857     1   13584   2196 futex_wait_queue_me 0 S port-bridge     port-bridge
12918radio          858     1   20872   4004 futex_wait_queue_me 0 S ipacm           ipacm
12919radio          859     1   20460   2992 do_select 0 S qti                       qti
12920cameraserver   862     1   32436   8680 binder_ioctl 0 S cameraserver           cameraserver
12921drm            869     1   19796   6828 binder_ioctl 0 S drmserver              drmserver
12922incidentd      870     1 2115856   3936 SyS_epoll_wait 0 S incidentd            incidentd
12923root           873     1 2125020   5280 binder_ioctl 0 S installd               installd
12924keystore       878     1 2119272   5648 binder_ioctl 0 S keystore               keystore
12925media          881     1 2126584   4988 binder_ioctl 0 S mediadrmserver         mediadrmserver
12926mediaex        882     1 2168764  12272 binder_ioctl 0 S media.extractor        mediaextractor
12927media          883     1 2138916   8200 binder_ioctl 0 S media.metrics          mediametrics
12928media          884     1   56664  12108 binder_ioctl 0 S mediaserver            mediaserver
12929statsd         887     1 203499360 33776 SyS_epoll_wait 0 S statsd              statsd
12930u0_a33         911 23897 3681944  56340 SyS_epoll_wait 0 S com.google.android.apps.gcs app_process64
12931root           921     1 2121856   5108 binder_ioctl 0 S storaged               storaged
12932wifi           923     1 2114444   4836 SyS_epoll_wait 0 S wificond             wificond
12933mediacodec     925     1   44976  12108 binder_ioctl 0 S media.codec            android.hardware.media.omx@1.0-service
12934root           928     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
12935nobody         929     1   18276   3872 binder_ioctl 0 S easelmanagerd          easelmanagerd
12936root           930     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
12937root           931     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
12938radio          933     1  114924  21176 binder_ioctl 0 S qcrild                 qcrild
12939root           949     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
12940root           952     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
12941system         956     1   26540   3812 do_sys_poll 0 S cnss-daemon             cnss-daemon
12942root           958     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
12943gps            959     1   14592   2492 futex_wait_queue_me 0 S loc_launcher    loc_launcher
12944root           960     2       0      0 diag_socket_read 0 S [kworker/u16:8]    9
12945system         961     1   19932   4172 do_sys_poll 0 S chre                    chre
12946system         963     1 2115032   4732 binder_ioctl 0 S gatekeeperd            gatekeeperd
12947root           964     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
12948root           968     2       0      0 irq_thread 0 S [irq/210-arm-smm]        9
12949root           970     2       0      0 irq_thread 0 S [irq/211-arm-smm]        9
12950root           974     2       0      0 irq_thread 0 S [irq/212-arm-smm]        9
12951root           975     1 2115372   3628 binder_ioctl 0 S perfprofd              perfprofd
12952tombstoned     977     1    9096   1716 SyS_epoll_wait 0 S tombstoned           tombstoned
12953root           994     1 2117956   6092 SyS_epoll_wait 0 S update_engine        update_engine
12954system         997     1   17728   3736 binder_ioctl 0 S android.hardware.biometrics.fingerprint@2.1-service.fpc android.hardware.biometrics.fingerprint@2.1-service.fpc
12955root          1000     2       0      0 irq_thread 0 S [irq/310-wcd9xxx]        1
12956gps           1004   959 2132144   3868 futex_wait_queue_me 0 S lowi-server     lowi-server
12957gps           1005   959   24740   5112 __skb_wait_for_more_packets 0 S xtra-daemon xtra-daemon
12958root          1007     1   31096   3100 0       0 R adbd                        adbd
12959system        1017     1 2137596   5104 do_select 0 S imsdatadaemon             imsdatadaemon
12960root          1056     2       0      0 rescuer_thread 0 S [qmi_wq]             1
12961root          1059     2       0      0 diag_socket_read 0 S [kworker/u16:9]    1
12962root          1061     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
12963root          1115     2       0      0 rescuer_thread 0 S [wdsp_glink_wq]      1
12964root          1235     2       0      0 rescuer_thread 0 S [mpss_IPCRTR]        1
12965root          1236     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
12966root          1238     2       0      0 worker_thread 0 S [kworker/u16:13]      1
12967root          1239     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
12968root          1273     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
12969root          1277     2       0      0 diag_socket_read 0 S [kworker/u16:14]   1
12970root          1280     2       0      0 diag_socket_read 0 S [kworker/u16:17]   1
12971root          1281     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
12972root          1284     2       0      0 worker_thread 0 S [kworker/u16:18]      1
12973root          1624     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
12974root          1931     2       0      0 rescuer_thread 0 S [ipawq34]            1
12975root          1932     2       0      0 rescuer_thread 0 S [iparepwq34]         1
12976root          1934     2       0      0 rescuer_thread 0 S [ipawq35]            1
12977root          1935     2       0      0 rescuer_thread 0 S [iparepwq35]         1
12978system        1955     1   31896   5792 binder_ioctl 0 S ims_rtp_daemon         ims_rtp_daemon
12979system        1956     1   29500   5236 binder_ioctl 0 S imsrcsd                imsrcsd
12980system        2074     1   16432   2860 hrtimer_nanosleep 0 S pm-proxy          pm-proxy
12981root          2670     2       0      0 cds_mc_thread 0 S [cds_mc_thread]       2
12982root          2671     2       0      0 cds_ol_rx_thread 0 S [cds_ol_rx_threa]  2
12983root          2674     2       0      0 rescuer_thread 0 S [wmi_rx_event_wo]    2
12984wifi          2697     1 2125972   6032 do_select 0 S wpa_supplicant            wpa_supplicant
12985root         10004     2       0      0 worker_thread 0 S [kworker/7:1]         1
12986u0_a21       12524 23897 3680104  48640 SyS_epoll_wait 0 S com.google.android.apps.tips app_process64
12987u0_a68       12540 23897 3676536  48968 SyS_epoll_wait 0 S com.google.android.partnersetup app_process64
12988root         12567     2       0      0 worker_thread 0 S [kworker/5:1]         1
12989root         12662     2       0      0 worker_thread 0 S [kworker/3:1]         1
12990root         12892     2       0      0 worker_thread 0 S [kworker/7:0]         1
12991u0_a26       12973 23897 3674836  50508 SyS_epoll_wait 0 S com.android.providers.calendar app_process64
12992root         13450     2       0      0 worker_thread 0 S [kworker/0:0]         1
12993root         13633     2       0      0 worker_thread 0 S [kworker/1:0]         1
12994root         13636     2       0      0 worker_thread 0 S [kworker/2:2]         1
12995root         13644     2       0      0 worker_thread 0 S [kworker/3:0]         1
12996root         13647     2       0      0 worker_thread 0 S [kworker/6:2]         1
12997root         13648     2       0      0 worker_thread 0 S [kworker/2:1]         1
12998root         13650     2       0      0 worker_thread 0 S [kworker/1:2]         1
12999root         13651     2       0      0 worker_thread 0 S [kworker/0:1]         1
13000root         13652     2       0      0 worker_thread 0 S [kworker/3:2]         1
13001root         13660     2       0      0 worker_thread 0 S [kworker/2:0]         1
13002root         13678     2       0      0 worker_thread 0 S [kworker/1:1]         1
13003root         13679     2       0      0 worker_thread 0 S [kworker/0:2]         1
13004root         13722  1007    8736   1720 SyS_rt_sigsuspend 0 S sh                sh
13005root         13724 13722    8736    720 SyS_rt_sigsuspend 0 S sh                sh
13006root         13725 13724   10488   2128 0       0 R ps                          toybox
13007root         18284     2       0      0 worker_thread 0 S [kworker/u17:1]       1
13008root         18474     2       0      0 rescuer_thread 0 S [dsi_err_workq]      1
13009root         18488     2       0      0 worker_thread 0 S [kworker/u16:15]      1
13010root         21469     2       0      0 worker_thread 0 S [kworker/6:0]         2
13011root         23076     2       0      0 worker_thread 0 S [kworker/u17:2]       2
13012root         23403     2       0      0 worker_thread 0 S [kworker/4:2]         2
13013root         23868     2       0      0 worker_thread 0 S [kworker/u16:10]      2
13014root         23895     1 2132536   5408 binder_ioctl 0 S netd                   netd
13015system       23896     1 2173536  26960 SyS_epoll_wait 0 S surfaceflinger       surfaceflinger
13016root         23897     1 4254080  81796 do_sys_poll 0 S zygote64                app_process64
13017root         23898     1 1583880  73676 do_sys_poll 0 S zygote                  app_process32
13018root         23899 23895    9268   2088 pipe_read 0 S iptables-restore          iptables
13019root         23900 23895    9280   2244 pipe_read 0 S ip6tables-restore         ip6tables
13020system       23968 23897 4908764 358912 SyS_epoll_wait 0 S system_server        app_process64
13021system       24047     1   31376   6436 binder_ioctl 0 S android.hardware.sensors@1.0-service android.hardware.sensors@1.0-service
13022bluetooth    24119 23897 3729960  65540 SyS_epoll_wait 0 S com.android.bluetooth app_process64
13023u0_a90       24133 23897 3745152  92808 SyS_epoll_wait 0 S com.google.android.inputmethod.latin app_process64
13024u0_a22       24151 23897 3842680 142620 SyS_epoll_wait 0 S com.android.systemui app_process64
13025webview_zygote 24180 23898 1591712 30456 do_sys_poll 0 S webview_zygote         app_process32
13026radio        24249 23897 3683856  51324 SyS_epoll_wait 0 S .dataservices        app_process64
13027root         24254     2       0      0 worker_thread 0 S [kworker/5:0]         2
13028radio        24263 23897 3678680  49380 SyS_epoll_wait 0 S com.qualcomm.qti.telephonyservice app_process64
13029root         24269     2       0      0 worker_thread 0 S [kworker/4:0]         2
13030radio        24280 23897 3675684  46168 SyS_epoll_wait 0 S com.google.android.grilservice app_process64
13031radio        24290 23897 3725476  74872 SyS_epoll_wait 0 S com.android.phone    app_process64
13032u0_a59       24382 23897 3683284  53896 SyS_epoll_wait 0 S com.google.android.ext.services app_process64
13033root         24613     2       0      0 irq_thread 0 S [irq/79-1436400.]        2
13034root         24617     2       0      0 irq_thread 0 S [irq/80-114a000.]        2
13035nfc          24655 23897 3731376  63632 SyS_epoll_wait 0 S com.android.nfc      app_process64
13036secure_element 24670 23897 3676592 46184 SyS_epoll_wait 0 S com.android.se      app_process64
13037radio        24691 23897 3678484  51080 SyS_epoll_wait 0 S com.android.ims.rcsservice app_process64
13038system       24703 23897 3677228  45744 SyS_epoll_wait 0 S com.google.SSRestartDetector app_process64
13039u0_a72       24726 23897 3679068  46996 SyS_epoll_wait 0 S com.qualcomm.qti.services.secureui:sui_service app_process64
13040u0_a6        24741 23897 3798848 117756 SyS_epoll_wait 0 S com.google.android.gms.persistent app_process64
13041u0_a148      24754 23897 3695616  63948 SyS_epoll_wait 0 S com.google.android.projection.gearhead:shared app_process64
13042u0_a34       24772 23897 3683408  53992 SyS_epoll_wait 0 S com.google.android.apps.dreamliner app_process64
13043u0_a39       24795 23897 3697696  64840 SyS_epoll_wait 0 S com.google.android.setupwizard app_process64
13044u0_a15       24808 23898 1019852  52920 SyS_epoll_wait 0 S com.google.android.as app_process32
13045u0_a25       24827 23897 3770092 115648 SyS_epoll_wait 0 S com.google.android.apps.nexuslauncher app_process64
13046u0_a6        24894 23897 3691304  53568 SyS_epoll_wait 0 S com.google.process.gservices app_process64
13047u0_a6        25017 23897 3955424 111364 SyS_epoll_wait 0 S com.google.android.gms app_process64
13048u0_a46       25035 23897 3678376  51720 SyS_epoll_wait 0 S com.google.modemservice app_process64
13049u0_a69       25053 23898 1080388  76100 SyS_epoll_wait 0 S com.android.vending  app_process32
13050radio        25099 23897 3677608  46892 SyS_epoll_wait 0 S com.qualcomm.qcrilmsgtunnel app_process64
13051system       25623 23897 3676980  46196 SyS_epoll_wait 0 S com.qti.diagservices app_process64
13052root         25995     2       0      0 worker_thread 0 S [kworker/u16:16]      2
13053root         25996     2       0      0 diag_socket_read 0 S [kworker/u16:20]   2
13054u0_a92       27538 23897 3678696  46044 SyS_epoll_wait 0 S com.qualcomm.telephony app_process64
13055u0_a23       28152 23897 3687080  58248 SyS_epoll_wait 0 S com.google.android.apps.turbo:aab app_process64
13056u0_a146      30159 23897 3681704  47160 SyS_epoll_wait 0 S com.android.ramdump  app_process64
13057USER           PID   TID CMD
13058root             1     1 init
13059root             2     2 kthreadd
13060root             3     3 ksoftirqd/0
13061root             5     5 kworker/0:0H
13062root             6     6 kworker/u16:0
13063root             7     7 rcu_preempt
13064root             8     8 rcu_sched
13065root             9     9 rcu_bh
13066root            10    10 rcuop/0
13067root            11    11 rcuos/0
13068root            12    12 rcuob/0
13069root            13    13 migration/0
13070root            14    14 lru-add-drain
13071root            15    15 cpuhp/0
13072root            16    16 cpuhp/1
13073root            17    17 migration/1
13074root            18    18 ksoftirqd/1
13075root            20    20 kworker/1:0H
13076root            21    21 rcuop/1
13077root            22    22 rcuos/1
13078root            23    23 rcuob/1
13079root            24    24 cpuhp/2
13080root            25    25 migration/2
13081root            26    26 ksoftirqd/2
13082root            28    28 kworker/2:0H
13083root            29    29 rcuop/2
13084root            30    30 rcuos/2
13085root            31    31 rcuob/2
13086root            32    32 cpuhp/3
13087root            33    33 migration/3
13088root            34    34 ksoftirqd/3
13089root            36    36 kworker/3:0H
13090root            37    37 rcuop/3
13091root            38    38 rcuos/3
13092root            39    39 rcuob/3
13093root            40    40 cpuhp/4
13094root            41    41 migration/4
13095root            42    42 ksoftirqd/4
13096root            44    44 kworker/4:0H
13097root            45    45 rcuop/4
13098root            46    46 rcuos/4
13099root            47    47 rcuob/4
13100root            48    48 cpuhp/5
13101root            49    49 migration/5
13102root            50    50 ksoftirqd/5
13103root            52    52 kworker/5:0H
13104root            53    53 rcuop/5
13105root            54    54 rcuos/5
13106root            55    55 rcuob/5
13107root            56    56 cpuhp/6
13108root            57    57 migration/6
13109root            58    58 ksoftirqd/6
13110root            60    60 kworker/6:0H
13111root            61    61 rcuop/6
13112root            62    62 rcuos/6
13113root            63    63 rcuob/6
13114root            64    64 cpuhp/7
13115root            65    65 migration/7
13116root            66    66 ksoftirqd/7
13117root            68    68 kworker/7:0H
13118root            69    69 rcuop/7
13119root            70    70 rcuos/7
13120root            71    71 rcuob/7
13121root            72    72 netns
13122root            75    75 ipa_usb_wq
13123root            77    77 msm_watchdog
13124root            78    78 smem_native_sps
13125root            79    79 spss_mailbox_gl
13126root            80    80 qmp_aop
13127root            81    81 smem_native_mps
13128root            82    82 mpss_smem_glink
13129root            83    83 smem_native_lpa
13130root            84    84 lpass_smem_glin
13131root            85    85 smem_native_dsp
13132root            86    86 dsps_smem_glink
13133root            87    87 smem_native_cds
13134root            88    88 cdsp_smem_glink
13135root            89    89 khungtaskd
13136root            90    90 oom_reaper
13137root            91    91 writeback
13138root            92    92 kcompactd0
13139root            93    93 crypto
13140root            94    94 bioset
13141root            95    95 kblockd
13142root            96    96 irq/159-arm-smm
13143root            97    97 irq/160-arm-smm
13144root            98    98 irq/169-arm-smm
13145root           100   100 irq/124-tsens-u
13146root           101   101 irq/125-tsens-c
13147root           102   102 irq/126-tsens-u
13148root           103   103 irq/127-tsens-c
13149root           104   104 edac-poller
13150root           105   105 system
13151root           106   106 easel_mem
13152root           107   107 ipa_power_mgmt
13153root           108   108 transport_power
13154root           109   109 ipa_rm_wq
13155root           110   110 devfreq_wq
13156root           111   111 governor_msm_ad
13157root           112   112 cfg80211
13158root           113   113 irq/540-ibb-sc-
13159root           114   114 irq/541-lab-sc-
13160root           116   116 irq/74-qpnp_wle
13161root           117   117 irq/75-qpnp_wle
13162root           143   143 kswapd0
13163root           144   144 vmstat
13164root           145   145 ecryptfs-kthrea
13165root           180   180 irq/173-arm-smm
13166root           181   181 irq/174-arm-smm
13167root           182   182 irq/90-eud_irq
13168root           183   183 glink_ssr_wq
13169root           184   184 glink_lbsrv
13170root           185   185 spi_wdsp
13171root           186   186 wdsp_spi_glink_
13172root           187   187 glink_xprt_wq
13173root           188   188 IPCRTR_mpss_sme
13174root           189   189 IPCRTR_lpass_sm
13175root           190   190 IPCRTR_dsps_sme
13176root           191   191 IPCRTR_cdsp_sme
13177root           192   192 glink_pkt_wq
13178root           193   193 irq/175-arm-smm
13179root           194   194 qmi_svc_event_w
13180root           195   195 msm_ipc_router
13181root           197   197 servloc_wq
13182root           198   198 irq/176-arm-smm
13183root           199   199 irq/177-arm-smm
13184root           200   200 hwrng
13185root           202   202 diag_real_time_
13186root           203   203 diag_wq
13187root           204   204 DIAG_USB_diag
13188root           205   205 diag_cntl_wq
13189root           206   206 diag_dci_wq
13190root           207   207 DIAG_SOCKMODEM_
13191root           208   208 DIAG_SOCKMODEM_
13192root           209   209 DIAG_SOCKMODEM_
13193root           210   210 DIAG_SOCKMODEM_
13194root           211   211 DIAG_SOCKMODEM_
13195root           212   212 DIAG_SOCKLPASS_
13196root           213   213 DIAG_SOCKLPASS_
13197root           214   214 DIAG_SOCKLPASS_
13198root           215   215 DIAG_SOCKLPASS_
13199root           216   216 DIAG_SOCKLPASS_
13200root           217   217 DIAG_SOCKWCNSS_
13201root           218   218 DIAG_SOCKWCNSS_
13202root           219   219 DIAG_SOCKWCNSS_
13203root           220   220 DIAG_SOCKWCNSS_
13204root           221   221 DIAG_SOCKWCNSS_
13205root           222   222 DIAG_SOCKSENSOR
13206root           223   223 DIAG_SOCKSENSOR
13207root           224   224 DIAG_SOCKSENSOR
13208root           225   225 DIAG_SOCKSENSOR
13209root           226   226 DIAG_SOCKSENSOR
13210root           227   227 DIAG_SOCKDIAG_C
13211root           228   228 DIAG_SOCKDIAG_D
13212root           229   229 DIAG_SOCKDIAG_C
13213root           230   230 DIAG_SOCKDIAG_D
13214root           231   231 DIAG_SOCKDIAG_D
13215root           232   232 DIAG_SOCKCDSP_C
13216root           233   233 DIAG_SOCKCDSP_D
13217root           234   234 DIAG_SOCKCDSP_C
13218root           235   235 DIAG_SOCKCDSP_D
13219root           236   236 DIAG_SOCKCDSP_D
13220root           237   237 DIAG_CNTL_SOCKE
13221root           238   238 DIAG_GLINK_DIAG
13222root           239   239 DIAG_GLINK_DIAG
13223root           240   240 DIAG_GLINK_DIAG
13224root           241   241 DIAG_GLINK_DIAG
13225root           242   242 DIAG_GLINK_DIAG
13226root           243   243 kworker/u16:1
13227root           244   244 kgsl-workqueue
13228root           245   245 kgsl-mementry
13229root           246   246 kgsl_worker_thr
13230root           247   247 irq/161-arm-smm
13231root           248   248 irq/162-arm-smm
13232root           250   250 irq/170-arm-smm
13233root           251   251 irq/163-arm-smm
13234root           252   252 irq/178-arm-smm
13235root           253   253 crtc_commit:111
13236root           254   254 crtc_event:111
13237root           255   255 crtc_commit:163
13238root           256   256 crtc_event:163
13239root           257   257 pp_event
13240root           258   258 kgsl-events
13241root           259   259 kgsl_devfreq_wq
13242root           260   260 bioset
13243root           261   261 bioset
13244root           262   262 bioset
13245root           263   263 bioset
13246root           264   264 bioset
13247root           265   265 bioset
13248root           266   266 bioset
13249root           267   267 bioset
13250root           268   268 bioset
13251root           269   269 bioset
13252root           270   270 bioset
13253root           271   271 bioset
13254root           272   272 bioset
13255root           273   273 bioset
13256root           274   274 bioset
13257root           275   275 bioset
13258root           276   276 bioset
13259root           277   277 bioset
13260root           278   278 bioset
13261root           279   279 bioset
13262root           280   280 bioset
13263root           281   281 bioset
13264root           282   282 bioset
13265root           283   283 bioset
13266root           284   284 bioset
13267root           285   285 memory_wq
13268root           286   286 irq/179-arm-smm
13269root           287   287 irq/180-arm-smm
13270root           288   288 irq/181-arm-smm
13271root           289   289 qcrypto_seq_res
13272root           290   290 irq/182-arm-smm
13273root           311   311 scsi_eh_0
13274root           312   312 scsi_tmf_0
13275root           313   313 ufs_pm_qos_0
13276root           314   314 ufs_clk_gating_
13277root           315   315 ufs_mgc_hibern8
13278root           316   316 ice-set-key
13279root           317   317 spi10
13280root           318   318 spi32766
13281root           319   319 spi0
13282root           320   320 spi32765
13283root           321   321 bond0
13284root           322   322 sharedmem_qmi_w
13285root           323   323 qmi_hndl0000000
13286root           324   324 kworker/u16:2
13287root           325   325 kworker/u16:3
13288root           330   330 uether
13289root           331   331 k_ipa_usb
13290root           334   334 irq/377-soc:fp_
13291root           336   336 bioset
13292root           337   337 irq/29-i2c_pmic
13293root           338   338 bioset
13294root           339   339 bioset
13295root           340   340 bioset
13296root           342   342 msm_vidc_worker
13297root           343   343 pm_workerq_venu
13298root           344   344 irq/183-arm-smm
13299root           345   345 irq/184-arm-smm
13300root           346   346 bioset
13301root           347   347 irq/185-arm-smm
13302root           348   348 bioset
13303root           349   349 irq/186-arm-smm
13304root           350   350 bioset
13305root           351   351 bioset
13306root           352   352 rot_commitq_0_0
13307root           353   353 rot_commitq_0_1
13308root           354   354 rot_doneq_0_0
13309root           355   355 rot_doneq_0_1
13310root           356   356 bioset
13311root           357   357 rot_fenceq_0_0
13312root           358   358 rot_fenceq_0_1
13313root           359   359 rot_fenceq_0_2
13314root           360   360 rot_fenceq_0_3
13315root           361   361 rot_fenceq_0_4
13316root           362   362 rot_fenceq_0_5
13317root           363   363 rot_fenceq_0_6
13318root           364   364 kworker/u16:4
13319root           365   365 rot_fenceq_0_7
13320root           366   366 rot_fenceq_0_8
13321root           367   367 kworker/u16:5
13322root           368   368 rot_fenceq_0_9
13323root           369   369 kworker/u16:6
13324root           370   370 rot_fenceq_0_10
13325root           371   371 rot_fenceq_0_11
13326root           372   372 kworker/u16:7
13327root           373   373 rot_fenceq_0_12
13328root           374   374 rot_fenceq_0_13
13329root           375   375 rot_fenceq_0_14
13330root           376   376 rot_fenceq_0_15
13331root           377   377 cam-cpas
13332root           378   378 qcom,cam_virtua
13333root           379   379 irq/187-arm-smm
13334root           380   380 qcom,cam170-cpa
13335root           381   381 irq/188-arm-smm
13336root           382   382 cam_cci_wq
13337root           383   383 cam_cci_wq
13338root           384   384 irq/189-arm-smm
13339root           385   385 irq/190-arm-smm
13340root           386   386 irq/191-arm-smm
13341root           387   387 irq/192-arm-smm
13342root           388   388 irq/711-chg-err
13343root           389   389 irq/712-chg-sta
13344root           390   390 irq/716-otg-fai
13345root           391   391 irq/717-otg-ove
13346root           392   392 irq/718-otg-oc-
13347root           393   393 irq/719-testmod
13348root           394   394 irq/720-bat-tem
13349root           395   395 irq/721-bat-ocp
13350root           396   396 irq/722-bat-ov
13351root           397   397 irq/723-bat-low
13352root           398   398 irq/724-bat-the
13353root           399   399 irq/725-bat-ter
13354root           400   400 irq/726-usbin-c
13355root           401   401 irq/727-usbin-l
13356root           402   402 irq/728-usbin-u
13357root           403   403 irq/729-usbin-o
13358root           404   404 irq/730-usbin-p
13359root           405   405 irq/731-usbin-s
13360root           406   406 irq/732-usbin-i
13361root           407   407 irq/733-type-c-
13362root           408   408 irq/734-dcin-co
13363root           409   409 irq/735-dcin-lt
13364root           410   410 irq/736-dcin-uv
13365root           411   411 irq/737-dcin-ov
13366root           412   412 irq/738-dcin-pl
13367root           413   413 irq/739-div2-en
13368root           414   414 irq/740-dcin-ic
13369root           415   415 irq/742-wdog-ba
13370root           416   416 irq/743-aicl-fa
13371root           417   417 irq/744-aicl-do
13372root           418   418 irq/745-high-du
13373root           419   419 irq/746-input-c
13374root           420   420 irq/747-tempera
13375root           421   421 irq/748-switche
13376root           422   422 irq/380-p9221-i
13377root           423   423 irq/292-p9221-i
13378root           424   424 irq/69-bcl-high
13379root           425   425 irq/71-bcl-low-
13380root           426   426 irq/542-limits_
13381root           427   427 irq/543-limits_
13382root           428   428 qmi_tmd_wq
13383root           429   429 dm_bufio_cache
13384root           430   430 irq/98-KRYO3XX
13385root           431   431 irq/370-s2mpb04
13386root           432   432 irq/286-s2mpb04
13387root           433   433 irq/51-vendor:e
13388root           434   434 irq/193-arm-smm
13389root           435   435 uaudio_svc
13390root           436   436 qmi_hndl0000000
13391root           437   437 apr_driver
13392root           438   438 ipv6_addrconf
13393root           439   439 irq/879-adsp
13394root           441   441 sysmon_wq
13395root           442   442 irq/911-slpi
13396root           443   443 irq/943-cdsp
13397root           444   444 irq/847-modem
13398root           452   452 irq/38-sig-tx
13399root           453   453 irq/57-sig-rx
13400root           454   454 usbpd0
13401root           455   455 usbpd0
13402root           456   456 irq/1039-soc-up
13403root           457   457 irq/1040-soc-re
13404root           458   458 irq/1041-bsoc-d
13405root           459   459 irq/1042-msoc-d
13406root           460   460 irq/1043-msoc-l
13407root           461   461 irq/1044-msoc-e
13408root           462   462 irq/1045-msoc-h
13409root           463   463 irq/1046-msoc-f
13410root           464   464 irq/1047-vbatt-
13411root           465   465 irq/1048-vbatt-
13412root           466   466 irq/1049-esr-de
13413root           467   467 irq/1050-batt-m
13414root           468   468 irq/1051-batt-t
13415root           469   469 irq/1052-ima-rd
13416root           470   470 irq/1053-mem-xc
13417root           471   471 irq/1054-dma-gr
13418root           472   472 irq/36-qcom,tem
13419root           473   473 irq/535-pwr_eve
13420root           474   474 irq/534-dp_hs_p
13421root           475   475 irq/537-dm_hs_p
13422root           476   476 irq/536-ss_phy_
13423root           477   477 irq/194-arm-smm
13424root           478   478 usb_bam_wq
13425root           480   480 core_ctl/0
13426root           481   481 core_ctl/4
13427root           491   491 rq_stats
13428root           492   492 irq/195-arm-smm
13429root           493   493 irq/196-arm-smm
13430root           494   494 irq/197-arm-smm
13431root           495   495 irq/198-arm-smm
13432root           496   496 irq/199-arm-smm
13433root           497   497 irq/200-arm-smm
13434root           498   498 irq/201-arm-smm
13435root           499   499 irq/202-arm-smm
13436root           500   500 irq/203-arm-smm
13437root           501   501 irq/204-arm-smm
13438root           502   502 irq/205-arm-smm
13439root           503   503 set_state_work
13440root           504   504 sb-1
13441root           505   505 ngd_rx_thread1
13442root           506   506 irq/308-mnh-rea
13443root           507   507 ngd_notify_sl1
13444root           508   508 sb-3
13445root           509   509 ngd_rx_thread3
13446root           510   510 ngd_notify_sl3
13447root           511   511 tbn_event_proce
13448root           512   512 irq/78-qpnp_fla
13449root           513   513 irq/77-qpnp_fla
13450root           514   514 irq/76-qpnp_fla
13451root           515   515 irq/1056-mnh_pc
13452root           516   516 irq/1057-mnh_pc
13453root           517   517 irq/1058-mnh_pc
13454root           518   518 irq/1059-mnh_pc
13455root           519   519 irq/1060-mnh_pc
13456root           520   520 irq/1063-mnh_pc
13457root           521   521 irq/1064-mnh_pc
13458root           522   522 irq/206-arm-smm
13459root           524   524 kworker/4:1H
13460root           525   525 ext4-rsv-conver
13461root           526   526 irq/318-max1720
13462root           530   530 kworker/5:1H
13463root           531   531 kworker/0:1H
13464root           533   533 kworker/1:1H
13465root           535   535 jbd2/sdf2-8
13466root           536   536 ext4-rsv-conver
13467root           537   537 ext4-rsv-conver
13468root           538   538 ext4-rsv-conver
13469root           539   539 kworker/6:1H
13470root           540   540 init
13471root           541   541 init
13472root           542   542 ueventd
13473root           544   544 kworker/7:1H
13474root           546   546 irq/381-fts
13475logd           555   555 logd
13476logd           555   561 logd.daemon
13477logd           555   562 logd.reader
13478logd           555   563 logd.writer
13479logd           555   564 logd.control
13480logd           555   573 logd.klogd
13481logd           555   574 logd.auditd
13482system         556   556 qseecomd
13483system         557   557 keyprimary@4.0-s
13484system         557   602 HwBinder:557_1
13485root           559   559 sugov:0
13486root           560   560 sugov:4
13487root           565   565 kauditd
13488root           567   567 Binder:567_2
13489root           567   669 Binder:567_1
13490root           567   670 Binder:567_2
13491root           567   671 Binder:567_3
13492root           567   676 Binder:567_4
13493root           567 10646 Binder:567_5
13494root           567 14458 Binder:567_6
13495system         568   568 hwservicemanage
13496root           575   575 jbd2/sda20-8
13497system         576   576 qseecomd
13498system         576   577 qseecomd
13499system         576   578 qseecomd
13500system         576   579 qseecomd
13501system         576   581 qseecomd
13502system         576   582 qseecomd
13503system         576   583 qseecomd
13504system         576   584 qseecomd
13505system         576   585 qseecomd
13506system         576   586 qseecomd
13507root           580   580 ext4-rsv-conver
13508system         587   587 servicemanager
13509system         588   588 vndservicemanag
13510root           590   590 boot@1.0-servic
13511system         591   591 gatekeeper@1.0-
13512hsm            592   592 keyprimary@4.0-s
13513hsm            593   593 citadeld
13514hsm            593   603 citadeld
13515hsm            593   604 Binder:593_1
13516system         595   595 sscrpcd
13517system         595   655 sscrpcd
13518system         595   657 sscrpcd
13519system         598   598 composer@2.2-se
13520system         598   606 Binder:598_1
13521system         598   608 Binder:598_2
13522system         598   615 HWC_UeventThrea
13523system         598   624 SDM_EventThread
13524system         598   628 composer@2.2-se
13525system         598   629 HwBinder:598_1
13526system         598   630 HwBinder:598_2
13527system         598   633 HwBinder:598_3
13528system         599   599 configstore@1.1
13529system         599   616 HwBinder:599_1
13530system         599  1146 HwBinder:599_2
13531root           625   625 irq/164-arm-smm
13532root           645   645 cds_recovery_wo
13533root           646   646 wlan_logging_th
13534root           651   651 dsps_IPCRTR
13535root           652   652 qmi_hndl0000000
13536root           653   653 qmi_hndl0000000
13537root           658   658 qmi_hndl0000000
13538root           665   665 irq/371-cs35l36
13539root           666   666 irq/296-cs35l36
13540root           673   673 kdmflush
13541root           674   674 bioset
13542root           677   677 f2fs_flush-253:
13543root           678   678 f2fs_discard-25
13544root           679   679 f2fs_gc-253:0
13545system         681   681 time_daemon
13546system         681   686 time_daemon
13547system         681   687 time_daemon
13548system         681   688 time_daemon
13549system         681   690 time_daemon
13550system         681  1276 time_daemon
13551root           697   697 kworker/3:1H
13552root           707   707 irq/207-arm-smm
13553root           708   708 irq/208-arm-smm
13554root           709   709 irq/209-arm-smm
13555root           712   712 ipa_interrupt_w
13556root           713   713 ipawq36
13557root           714   714 iparepwq36
13558root           715   715 ipawq33
13559root           716   716 iparepwq33
13560root           717   717 ipawq32
13561root           718   718 iparepwq32
13562root           719   719 ipa_ut_dbgfs
13563root           720   720 ipa_A7_svc
13564root           722   722 qmi_hndl0000000
13565root           723   723 clnt_req
13566root           724   724 clnt_req
13567root           725   725 clnt_resp
13568root           750   750 at_usb0
13569root           751   751 at_usb1
13570root           752   752 qdss
13571system         753   753 allocator@1.0-s
13572vendor_pixelstats_system 754 754 pixelstats@1.0-
13573system         755   755 vr_hwc
13574system         755   791 Binder:755_1
13575system         755   792 HwBinder:755_1
13576system         755   793 Binder:755_2
13577system         756   756 neuralnetworks@
13578system         756   794 neuralnetworks@
13579system         756   795 neuralnetworks@
13580system         756 13857 HwBinder:756_1
13581audioserver    757   757 audio@2.0-servi
13582audioserver    757   797 Binder:757_1
13583audioserver    757   809 Binder:757_2
13584audioserver    757  1114 audio@2.0-servi
13585audioserver    757  1116 audio@2.0-servi
13586audioserver    757  1118 audio@2.0-servi
13587audioserver    757  1119 audio@2.0-servi
13588audioserver    757  1120 HwBinder:757_1
13589audioserver    757  1182 HwBinder:757_1
13590audioserver    757  1183 HwBinder:757_2
13591audioserver    757  1195 HwBinder:757_3
13592audioserver    757  1343 HwBinder:757_4
13593audioserver    757  1793 HwBinder:757_5
13594audioserver    757  6167 HwBinder:757_6
13595audioserver    757  9911 writer
13596audioserver    757 24445 HwBinder:757_7
13597hsm            758   758 authsecret@1.0-
13598bluetooth      759   759 bluetooth@1.0-s
13599bluetooth      759 24421 POSIX timer 30
13600bluetooth      759 24456 POSIX timer 31
13601bluetooth      759 24508 bluetooth@1.0-s
13602bluetooth      759 24509 bluetooth@1.0-s
13603bluetooth      759 24510 POSIX timer 32
13604bluetooth      759 24514 POSIX timer 33
13605bluetooth      759 24515 POSIX timer 34
13606bluetooth      759 24520 POSIX timer 35
13607cameraserver   760   760 provider@2.4-se
13608cameraserver   760   830 provider@2.4-se
13609cameraserver   760   860 SyncManager_0
13610cameraserver   760   861 provider@2.4-se
13611cameraserver   760  1219 provider@2.4-se
13612cameraserver   760  1220 provider@2.4-se
13613cameraserver   760  1221 provider@2.4-se
13614cameraserver   760  1222 provider@2.4-se
13615cameraserver   760  1223 provider@2.4-se
13616cameraserver   760  1224 HwBinder:760_1
13617media          761   761 cas@1.0-service
13618media          761  1145 HwBinder:761_1
13619nobody         762   762 confirmationui@
13620system         763   763 contexthub@1.0-
13621system         763   779 contexthub@1.0-
13622media          764   764 drm@1.0-service
13623media          764  1147 HwBinder:764_1
13624media          764  1150 HwBinder:764_2
13625media          765   765 drm@1.1-service
13626media          765  1148 HwBinder:765_1
13627media          766   766 drm@1.1-service
13628media          766  1149 HwBinder:766_1
13629media          766  1151 HwBinder:766_2
13630gps            767   767 gnss@1.1-servic
13631gps            767  1569 Loc_hal
13632gps            767  1584 Loc_hal
13633gps            767  1585 LocIpc-
13634gps            767  1586 LocTime
13635gps            767  1589 LocTime
13636gps            767  1594 Loc_hal
13637gps            767  1643 Loc_hal
13638gps            767  1662 Binder:767_1
13639gps            767  1663 Binder:767_2
13640gps            767  1668 Loc_hal
13641gps            767  1674 Loc_hal
13642gps            767  1675 Loc_hal
13643gps            767  1677 Loc_hal
13644gps            767  1688 Loc_hal
13645system         768   768 health@2.0-serv
13646system         769   769 light@2.0-servi
13647system         770   770 memtrack@1.0-se
13648system         771   771 neuralnetworks@
13649system         771 13851 HwBinder:771_1
13650system         771 13852 neuralnetworks@
13651system         771 13853 HwBinder:771_2
13652system         771 13855 neuralnetworks@
13653system         771 13856 neuralnetworks@
13654system         771 17214 HwBinder:771_3
13655system         771 20182 HwBinder:771_4
13656system         771 23065 HwBinder:771_5
13657system         771 25942 HwBinder:771_6
13658system         771 28761 HwBinder:771_7
13659system         771  2859 HwBinder:771_8
13660nfc            772   772 nfc@1.1-service
13661nfc            772 24928 POSIX timer 10
13662nfc            772 24951 nfc@1.1-service
13663nfc            772 24952 nfc@1.1-service
13664nfc            772 24953 POSIX timer 11
13665nfc            772 24954 nfc@1.1-service
13666hsm            773   773 oemlock@1.0-ser
13667root           774   774 power@1.2-servi
13668root           774  2085 NodeLooperThrea
13669root           774  2087 power@1.2-servi
13670secure_element 775   775 secure_element@
13671system         777   777 thermal@1.1-ser
13672system         777   798 thermal@1.1-ser
13673root           778   778 usb@1.1-service
13674root           778   892 HwBinder:778_1
13675root           778  1010 HwBinder:778_1
13676root           778  1379 HwBinder:778_1
13677system         780   780 vibrator@1.2-se
13678system         781   781 vr@1.0-service.
13679hsm            782   782 weaver@1.0-serv
13680wifi           783   783 wifi@1.0-servic
13681wifi           783 24400 wifi@1.0-servic
13682radio          784   784 radioext@1.0-se
13683radio          784   804 radioext@1.0-se
13684radio          784  1328 radioext@1.0-se
13685system         785   785 wireless_charge
13686system         786   786 vendor.qti.hard
13687system         786   813 HwBinder:786_1
13688system         786   816 HwBinder:786_2
13689system         786 22869 HwBinder:786_3
13690nobody         787   787 tui_comm@1.0-se
13691mediacodec     788   788 vendor.qti.medi
13692mediacodec     788   865 Binder:788_1
13693mediacodec     788   868 Binder:788_2
13694mediacodec     788  1526 HwBinder:788_1
13695mediacodec     788  1527 HwBinder:788_2
13696mediacodec     788  6779 HwBinder:788_3
13697system         789   789 pm-service
13698system         789   822 POSIX timer 0
13699system         789   823 POSIX timer 1
13700system         789   824 POSIX timer 2
13701system         789   825 pm-service
13702system         789   826 Binder:789_1
13703system         789   829 Binder:789_2
13704system         789  1096 Binder:789_3
13705system         789  1097 Binder:789_4
13706system         790   790 sensors.qti
13707system         790   840 sensors.qti
13708system         790   841 sensors.qti
13709root           796   796 cdsp_IPCRTR
13710nobody         800   800 rmt_storage
13711nobody         800  1240 rmt_storage
13712nobody         800  1241 rmt_storage
13713nobody         800  1243 rmt_storage
13714nobody         800  1246 rmt_storage
13715vendor_rfs     801   801 tftp_server
13716system         802   802 pd-mapper
13717system         802   819 pd-mapper
13718root           805   805 msm_irqbalance
13719audioserver    806   806 audioserver
13720audioserver    806  1121 HwBinder:806_1
13721audioserver    806  1123 HwBinder:806_2
13722audioserver    806  1129 ApmTone
13723audioserver    806  1130 ApmAudio
13724audioserver    806  1131 ApmOutput
13725audioserver    806  1138 Binder:806_1
13726audioserver    806  1139 Binder:806_2
13727audioserver    806  1184 FastMixer
13728audioserver    806  1185 AudioOut_D
13729audioserver    806  1186 FastMixer
13730audioserver    806  1187 AudioOut_15
13731audioserver    806  1188 AudioOut_1D
13732audioserver    806  1189 FastMixer
13733audioserver    806  1190 AudioOut_25
13734audioserver    806  1191 AudioOut_2D
13735audioserver    806  1192 FastMixer
13736audioserver    806  1193 AudioOut_35
13737audioserver    806  1296 soundTrigger cb
13738audioserver    806  1339 TimeCheckThread
13739audioserver    806  1452 Binder:806_3
13740audioserver    806  2366 Binder:806_4
13741audioserver    806  3284 Binder:806_5
13742audioserver    806  3849 Binder:806_6
13743audioserver    806  5594 Binder:806_7
13744audioserver    806  9941 Binder:806_8
13745audioserver    806 18521 Binder:806_9
13746audioserver    806 23589 Binder:806_A
13747system         807   807 bufferhubd
13748lmkd           808   808 lmkd
13749system         810   810 performanced
13750system         811   811 thermalserviced
13751system         811   851 HwBinder:811_1
13752system         811   852 HwBinder:811_2
13753system         812   812 Binder:812_2
13754system         812   838 Binder:812_1
13755u0_a16         817   817 android.carrier
13756u0_a16         817   833 Jit thread pool
13757u0_a16         817   835 Signal Catcher
13758u0_a16         817   836 ADB-JDWP Connec
13759u0_a16         817   839 ReferenceQueueD
13760u0_a16         817   845 FinalizerDaemon
13761u0_a16         817   846 FinalizerWatchd
13762u0_a16         817   863 HeapTaskDaemon
13763u0_a16         817   867 Binder:817_1
13764u0_a16         817   874 Binder:817_2
13765u0_a16         817   875 Binder:817_3
13766u0_a16         817   888 Profile Saver
13767u0_a16         817  1039 Binder:817_4
13768u0_a16         817  1041 queued-work-loo
13769root           820   820 qmi_hndl0000000
13770root           821   821 qmi_hndl0000000
13771root           827   827 qmi_hndl0000000
13772root           834   834 adsp
13773root           837   837 modem
13774root           842   842 subsystem_ramdu
13775root           842   864 subsystem_ramdu
13776root           842   866 subsystem_ramdu
13777root           842  1237 subsystem_ramdu
13778graphics       843   843 mm-pp-dpps
13779graphics       843   912 HwBinder:843_1
13780graphics       843  1318 ABA_THREAD
13781shell          844   844 diag_mdlog
13782shell          844  1024 diag_mdlog
13783shell          844  1055 diag_mdlog
13784shell          844  1057 diag_mdlog
13785shell          844  1058 diag_mdlog
13786root           847   847 thermal-engine
13787root           847   876 thermal-engine
13788root           847   880 thermal-engine
13789root           847   889 thermal-engine
13790root           847   890 thermal-engine
13791root           847   891 thermal-engine
13792root           847   893 thermal-engine
13793root           847   894 thermal-engine
13794root           847   895 thermal-engine
13795root           847   896 thermal-engine
13796root           847   897 thermal-engine
13797root           847   898 thermal-engine
13798root           847   899 thermal-engine
13799root           847   902 thermal-engine
13800root           847   903 thermal-engine
13801root           847   905 thermal-engine
13802root           847   906 thermal-engine
13803root           847   907 thermal-engine
13804root           847   908 thermal-engine
13805root           847   909 thermal-engine
13806root           847   910 thermal-engine
13807root           847   915 thermal-engine
13808root           847   916 thermal-engine
13809root           847   918 thermal-engine
13810root           847   919 thermal-engine
13811root           847   920 thermal-engine
13812root           847   922 thermal-engine
13813root           847   926 thermal-engine
13814root           847   927 thermal-engine
13815root           847   934 thermal-engine
13816root           847   938 thermal-engine
13817root           847   942 thermal-engine
13818root           847   944 thermal-engine
13819root           847   947 thermal-engine
13820root           847   948 thermal-engine
13821root           847   950 thermal-engine
13822root           847   953 thermal-engine
13823root           847   955 thermal-engine
13824root           847   957 thermal-engine
13825root           847   962 thermal-engine
13826root           847   966 thermal-engine
13827root           847   967 thermal-engine
13828root           847   969 thermal-engine
13829root           847   971 thermal-engine
13830root           847   973 thermal-engine
13831root           847   976 thermal-engine
13832root           847   978 thermal-engine
13833root           847   979 thermal-engine
13834root           847   980 thermal-engine
13835root           847   981 thermal-engine
13836root           847   982 thermal-engine
13837root           847  1274 thermal-engine
13838root           847  1275 thermal-engine
13839media          848   848 adsprpcd
13840media          848   871 adsprpcd
13841media          848   872 adsprpcd
13842system         849   849 cdsprpcd
13843system         849   900 cdsprpcd
13844system         849   901 cdsprpcd
13845root           850   850 kworker/2:1H
13846system         853   853 imsqmidaemon
13847system         853   917 imsqmidaemon
13848root           854   854 lpass_IPCRTR
13849radio          855   855 cnd
13850radio          855   972 cnd
13851radio          855   983 HwBinder:855_1
13852radio          855   984 cnd
13853radio          855  1340 cnd
13854radio          855  1356 cnd
13855radio          855  1358 cnd
13856radio          855  1359 cnd
13857radio          855  1360 cnd
13858radio          855  1362 cnd
13859radio          855  1363 cnd
13860radio          855  1364 cnd
13861radio          856   856 netmgrd
13862root           856   998 netmgrd
13863radio          856  1001 netmgrd
13864radio          856  1029 HwBinder:856_1
13865radio          856  1068 netmgrd
13866radio          856  1069 netmgrd
13867radio          856  1070 netmgrd
13868radio          856  1071 netmgrd
13869radio          856  1072 netmgrd
13870radio          856  1341 netmgrd
13871radio          856  1924 netmgrd
13872radio          856  1925 netmgrd
13873radio          856  1927 netmgrd
13874radio          856  1928 netmgrd
13875radio          856  1929 netmgrd
13876radio          856  1947 netmgrd
13877radio          856  1948 netmgrd
13878radio          856  1949 netmgrd
13879radio          856  1950 netmgrd
13880radio          856  1977 netmgrd
13881radio          856  1978 netmgrd
13882radio          856  1979 netmgrd
13883radio          856  1980 netmgrd
13884radio          856  1993 netmgrd
13885radio          856  1994 netmgrd
13886radio          856  1996 netmgrd
13887radio          856  1997 netmgrd
13888radio          856  2005 netmgrd
13889radio          856  2006 netmgrd
13890radio          856  2007 netmgrd
13891radio          856  2008 netmgrd
13892radio          856  2020 netmgrd
13893radio          856  2021 netmgrd
13894radio          856  2022 netmgrd
13895radio          856  2023 netmgrd
13896radio          856  2033 netmgrd
13897radio          856  2034 netmgrd
13898radio          856  2035 netmgrd
13899radio          856  2036 netmgrd
13900radio          856  2050 netmgrd
13901radio          856  2051 netmgrd
13902radio          856  2052 netmgrd
13903radio          856  2054 netmgrd
13904radio          856  2091 netmgrd
13905radio          856  2093 netmgrd
13906radio          856  2097 netmgrd
13907radio          856  2103 netmgrd
13908radio          856  2106 netmgrd
13909radio          856  2108 netmgrd
13910radio          856  2109 netmgrd
13911radio          856  2110 netmgrd
13912radio          856  2127 netmgrd
13913radio          856  2131 netmgrd
13914radio          856  2133 netmgrd
13915radio          856  2137 netmgrd
13916radio          856  2142 netmgrd
13917radio          856  2143 netmgrd
13918radio          856  2144 netmgrd
13919radio          856  2145 netmgrd
13920radio          856  2155 netmgrd
13921radio          856  2157 netmgrd
13922radio          856  2158 netmgrd
13923radio          856  2161 netmgrd
13924radio          856  2165 netmgrd
13925radio          856  2167 netmgrd
13926radio          856  2168 netmgrd
13927radio          856  2169 netmgrd
13928radio          856  2174 netmgrd
13929radio          856  2178 netmgrd
13930radio          856  2179 netmgrd
13931radio          856  2180 netmgrd
13932radio          856  2187 netmgrd
13933radio          856  2188 netmgrd
13934radio          856  2189 netmgrd
13935radio          856  2191 netmgrd
13936radio          856  2202 netmgrd
13937radio          856  2204 netmgrd
13938radio          856  2214 netmgrd
13939radio          856  2215 netmgrd
13940radio          856  2236 netmgrd
13941radio          856  2241 netmgrd
13942radio          856  2242 netmgrd
13943radio          856  2248 netmgrd
13944radio          856  2271 netmgrd
13945radio          856  2278 netmgrd
13946radio          856  2287 netmgrd
13947radio          856  2288 netmgrd
13948radio          856  2308 netmgrd
13949radio          856  2311 netmgrd
13950radio          856  2312 netmgrd
13951radio          856  2314 netmgrd
13952radio          856 24008 netmgrd
13953radio          857   857 port-bridge
13954radio          857   885 port-bridge
13955radio          857   886 port-bridge
13956radio          858   858 ipacm
13957radio          858   935 HwBinder:858_1
13958radio          858   939 ipacm
13959radio          858   940 netlink socket
13960radio          858   941 ipa driver ntfy
13961radio          859   859 qti
13962radio          859   904 qti
13963radio          859  3031 qti
13964radio          859  3032 qti
13965radio          859  3033 qti
13966cameraserver   862   862 cameraserver
13967cameraserver   862   986 HwBinder:862_1
13968cameraserver   862   990 HwBinder:862_2
13969cameraserver   862  1225 HwBinder:862_3
13970cameraserver   862  1295 Binder:862_1
13971cameraserver   862  1454 Binder:862_2
13972cameraserver   862  2255 Binder:862_3
13973cameraserver   862  5596 Binder:862_4
13974cameraserver   862 14531 Binder:862_5
13975drm            869   869 drmserver
13976drm            869  1054 Binder:869_1
13977drm            869  6079 Binder:869_2
13978incidentd      870   870 Binder:870_2
13979incidentd      870   943 Binder:870_1
13980incidentd      870   965 Binder:870_3
13981root           873   873 Binder:873_2
13982root           873   954 Binder:873_1
13983root           873  1270 Binder:873_3
13984root           873  1298 Binder:873_4
13985root           873  1299 Binder:873_5
13986root           873  5766 Binder:873_6
13987root           873  5782 Binder:873_7
13988root           873 13935 Binder:873_8
13989root           873 24063 Binder:873_9
13990root           873 24072 Binder:873_A
13991root           873 29013 Binder:873_B
13992keystore       878   878 keystore
13993keystore       878   995 HwBinder:878_1
13994media          881   881 mediadrmserver
13995media          881  1042 Binder:881_1
13996mediaex        882   882 mediaextractor
13997mediaex        882  1077 Binder:882_1
13998mediaex        882  1467 Binder:882_2
13999mediaex        882  1810 Binder:882_3
14000mediaex        882 13752 Binder:882_4
14001media          883   883 mediametrics
14002media          883  1065 Binder:883_1
14003media          883 13749 Binder:883_2
14004media          883 13750 Binder:883_3
14005media          884   884 mediaserver
14006media          884  1074 Binder:884_1
14007media          884  1528 HwBinder:884_1
14008media          884  1702 Binder:884_2
14009media          884  1703 Binder:884_3
14010media          884 23520 CCodecWatchdog
14011media          884 23522 Binder:884_4
14012statsd         887   887 Binder:887_2
14013statsd         887  1037 Binder:887_1
14014statsd         887  1044 statsd.writer
14015statsd         887  1045 Binder:887_3
14016u0_a33         911   911 ndroid.apps.gcs
14017u0_a33         911   936 Jit thread pool
14018u0_a33         911   937 Signal Catcher
14019u0_a33         911   945 ADB-JDWP Connec
14020u0_a33         911   946 ReferenceQueueD
14021u0_a33         911   951 FinalizerDaemon
14022u0_a33         911   985 FinalizerWatchd
14023u0_a33         911   987 HeapTaskDaemon
14024u0_a33         911   988 Binder:911_1
14025u0_a33         911   991 Binder:911_2
14026u0_a33         911   996 Binder:911_3
14027u0_a33         911  1014 Profile Saver
14028u0_a33         911  1053 queued-work-loo
14029u0_a33         911  1080 GAC_Executor[0]
14030u0_a33         911  1081 GoogleApiHandle
14031u0_a33         911  1082 GAC_Executor[1]
14032u0_a33         911  5559 Binder:911_4
14033root           921   921 storaged
14034root           921  1002 storaged
14035root           921  1034 Binder:921_1
14036root           921  1303 HwBinder:921_1
14037root           921  1144 Binder:921_2
14038wifi           923   923 wificond
14039mediacodec     925   925 omx@1.0-service
14040mediacodec     925  1036 Binder:925_1
14041mediacodec     925  1046 Binder:925_2
14042mediacodec     925  1047 HwBinder:925_1
14043mediacodec     925  1048 HwBinder:925_2
14044mediacodec     925  1697 HwBinder:925_3
14045mediacodec     925  1761 HwBinder:925_4
14046mediacodec     925  2788 HwBinder:925_5
14047mediacodec     925  5595 HwBinder:925_6
14048mediacodec     925  9940 HwBinder:925_7
14049mediacodec     925 13751 HwBinder:925_8
14050mediacodec     925 18520 HwBinder:925_9
14051mediacodec     925 23889 HwBinder:925_A
14052root           928   928 msm_slim_qmi_cl
14053nobody         929   929 easelmanagerd
14054nobody         929   992 easelmanagerd
14055nobody         929   993 easelmanagerd
14056root           930   930 msm_slim_qmi_cl
14057root           931   931 qmi_hndl0000000
14058radio          933   933 main
14059radio          933  1088 qcrild
14060radio          933  1089 DispatcherModul
14061radio          933  1091 DispatcherModul
14062radio          933  1095 qcrild
14063radio          933  1233 Binder:933_1
14064radio          933  1234 Binder:933_2
14065radio          933  1248 file_observer
14066radio          933  1249 rild
14067radio          933  1250 HwBinder:933_1
14068radio          933  1253 main
14069radio          933  1255 GstkModule-Loop
14070radio          933  1256 UimModule-Loope
14071radio          933  1257 SecureElementMo
14072radio          933  1258 RadioConfigModu
14073radio          933  1259 VoiceModemEndPo
14074radio          933  1260 UimModemEndPoin
14075radio          933  1261 CatModemEndPoin
14076radio          933  1262 UimHttpModemEnd
14077radio          933  1263 NasModemEndPoin
14078radio          933  1264 SmsModemEndPoin
14079radio          933  1265 ImsaModemEndPoi
14080radio          933  1266 ImssModemEndPoi
14081radio          933  1267 PbmModemEndPoin
14082radio          933  1268 DispatcherModul
14083radio          933  1269 DispatcherModul
14084radio          933  1342 VoiceModemEndPo
14085radio          933  1344 PbmModemEndPoin
14086radio          933  1345 CatModemEndPoin
14087radio          933  1346 NasModemEndPoin
14088radio          933  1347 DispatcherModul
14089radio          933  1348 UimHttpModemEnd
14090radio          933  1349 UimModemEndPoin
14091radio          933  1351 SmsModemEndPoin
14092radio          933  1353 DispatcherModul
14093radio          933  1355 DispatcherModul
14094radio          933  1365 DispatcherModul
14095radio          933  1370 DispatcherModul
14096radio          933  1373 DispatcherModul
14097radio          933  1375 DispatcherModul
14098radio          933  1376 DispatcherModul
14099radio          933  1377 AuthModemEndPoi
14100radio          933  1378 PdcModemEndPoin
14101radio          933  1380 UimRemoteModemE
14102radio          933  1381 VsModemEndPoint
14103radio          933  1382 AuthModemEndPoi
14104radio          933  1383 PdcModemEndPoin
14105radio          933  1385 VsModemEndPoint
14106radio          933  1388 DispatcherModul
14107radio          933  1391 pil_monitor
14108radio          933  1394 DispatcherModul
14109radio          933  1395 qmi_cb
14110radio          933  1396 qcrild
14111radio          933  1397 qcrild
14112radio          933  1957 ImsaModemEndPoi
14113radio          933  1958 ImssModemEndPoi
14114root           949   949 qmi_hndl0000000
14115root           952   952 qmi_hndl0000000
14116system         956   956 cnss-daemon
14117system         956  1011 cnss-daemon
14118system         956  1030 Binder:956_1
14119system         956  1033 cnss-daemon
14120system         956  1035 Binder:956_2
14121system         956  1040 Binder:956_3
14122system         956  1625 cnss-daemon
14123system         956  2685 cnss-daemon
14124root           958   958 qmi_hndl0000000
14125gps            959   959 loc_launcher
14126gps            959   999 loc_launcher
14127gps            959  1003 loc_sig_hndlr
14128root           960   960 kworker/u16:8
14129system         961   961 chre
14130system         961  1012 chre
14131system         961  1013 chre
14132system         961  1049 chre
14133system         961  1050 chre
14134system         961  1170 chre
14135system         961  1171 chre
14136system         963   963 gatekeeperd
14137root           964   964 qmi_hndl0000000
14138root           968   968 irq/210-arm-smm
14139root           970   970 irq/211-arm-smm
14140root           974   974 irq/212-arm-smm
14141root           975   975 Binder:975_2
14142root           975  1031 Binder:975_1
14143tombstoned     977   977 tombstoned
14144root           994   994 update_engine
14145system         997   997 fingerprint@2.1
14146system         997  1100 fingerprint@2.1
14147system         997  1101 fingerprint@2.1
14148root          1000  1000 irq/310-wcd9xxx
14149gps           1004  1004 lowi-server
14150gps           1004  1020 lowi-server
14151gps           1004  1021 lowi-server
14152gps           1004  1022 lowi-server
14153gps           1004  1023 lowi-server
14154gps           1004  2750 lowi-server
14155gps           1004  2751 lowi-server
14156gps           1004  2753 lowi-server
14157gps           1004 24398 lowi-server
14158gps           1005  1005 xtra-daemon
14159gps           1005  1016 pcid-lo
14160gps           1005  1026 pcid-lo
14161gps           1005  1027 LocTime
14162gps           1005  1028 LocTime
14163gps           1005  1369 pcid-lo
14164root          1007  1007 adbd
14165root          1007  1015 usb ffs open
14166root          1007 23484 adbd
14167root          1007 23485 adbd
14168root          1007 13723 shell svc 13722
14169system        1017  1017 imsdatadaemon
14170system        1017  1063 imsdatadaemon
14171system        1017  1959 imsdatadaemon
14172system        1017  1960 imsdatadaemon
14173system        1017  1961 imsdatadaemon
14174system        1017  1962 imsdatadaemon
14175system        1017  1963 imsdatadaemon
14176system        1017  1965 imsdatadaemon
14177system        1017  2343 imsdatadaemon
14178system        1017  2344 imsdatadaemon
14179system        1017  2345 imsdatadaemon
14180root          1056  1056 qmi_wq
14181root          1059  1059 kworker/u16:9
14182root          1061  1061 qmi_hndl0000000
14183root          1115  1115 wdsp_glink_wq
14184root          1235  1235 mpss_IPCRTR
14185root          1236  1236 qmi_hndl0000001
14186root          1238  1238 kworker/u16:13
14187root          1239  1239 qmi_hndl0000001
14188root          1273  1273 qmi_hndl0000001
14189root          1277  1277 kworker/u16:14
14190root          1280  1280 kworker/u16:17
14191root          1281  1281 qmi_hndl0000001
14192root          1284  1284 kworker/u16:18
14193root          1624  1624 qmi_hndl0000001
14194root          1931  1931 ipawq34
14195root          1932  1932 iparepwq34
14196root          1934  1934 ipawq35
14197root          1935  1935 iparepwq35
14198system        1955  1955 ims_rtp_daemon
14199system        1955  1967 ims_rtp_daemon
14200system        1955  1968 ims_rtp_daemon
14201system        1955  1969 ims_rtp_daemon
14202system        1955  1970 ims_rtp_daemon
14203system        1955  1972 HwBinder:1955_1
14204system        1956  1956 imsrcsd
14205system        1956  3135 imsrcsd
14206system        1956  3136 imsrcsd
14207system        1956  3137 imsrcsd
14208system        1956  3138 imsrcsd
14209system        1956  3139 imsrcsd
14210system        2074  2074 pm-proxy
14211system        2074  2099 Binder:2074_1
14212system        2074  2100 Binder:2074_2
14213root          2670  2670 cds_mc_thread
14214root          2671  2671 cds_ol_rx_threa
14215root          2674  2674 wmi_rx_event_wo
14216wifi          2697  2697 wpa_supplicant
14217root         10004 10004 kworker/7:1
14218u0_a21       12524 12524 droid.apps.tips
14219u0_a21       12524 12530 Jit thread pool
14220u0_a21       12524 12531 Signal Catcher
14221u0_a21       12524 12532 ADB-JDWP Connec
14222u0_a21       12524 12533 ReferenceQueueD
14223u0_a21       12524 12534 FinalizerDaemon
14224u0_a21       12524 12535 FinalizerWatchd
14225u0_a21       12524 12536 HeapTaskDaemon
14226u0_a21       12524 12537 Binder:12524_1
14227u0_a21       12524 12539 Binder:12524_2
14228u0_a21       12524 12550 Binder:12524_3
14229u0_a21       12524 12556 Profile Saver
14230u0_a21       12524 12560 queued-work-loo
14231u0_a21       12524 12562 tips-smartspace
14232u0_a21       12524 12588 Binder:12524_4
14233u0_a68       12540 12540 id.partnersetup
14234u0_a68       12540 12544 Jit thread pool
14235u0_a68       12540 12545 Signal Catcher
14236u0_a68       12540 12546 ADB-JDWP Connec
14237u0_a68       12540 12548 ReferenceQueueD
14238u0_a68       12540 12549 FinalizerDaemon
14239u0_a68       12540 12551 FinalizerWatchd
14240u0_a68       12540 12552 HeapTaskDaemon
14241u0_a68       12540 12553 Binder:12540_1
14242u0_a68       12540 12554 Binder:12540_2
14243u0_a68       12540 12555 Binder:12540_3
14244u0_a68       12540 12557 Profile Saver
14245u0_a68       12540 12564 queued-work-loo
14246u0_a68       12540 12565 Binder:12540_4
14247root         12567 12567 kworker/5:1
14248root         12662 12662 kworker/3:1
14249root         12892 12892 kworker/7:0
14250u0_a26       12973 12973 viders.calendar
14251u0_a26       12973 12978 Jit thread pool
14252u0_a26       12973 12979 Signal Catcher
14253u0_a26       12973 12980 ADB-JDWP Connec
14254u0_a26       12973 12981 ReferenceQueueD
14255u0_a26       12973 12982 FinalizerDaemon
14256u0_a26       12973 12983 FinalizerWatchd
14257u0_a26       12973 12984 HeapTaskDaemon
14258u0_a26       12973 12985 Binder:12973_1
14259u0_a26       12973 12986 Binder:12973_2
14260u0_a26       12973 12987 Binder:12973_3
14261u0_a26       12973 12988 Profile Saver
14262u0_a26       12973 12992 queued-work-loo
14263root         13450 13450 kworker/0:0
14264root         13633 13633 kworker/1:0
14265root         13636 13636 kworker/2:2
14266root         13644 13644 kworker/3:0
14267root         13647 13647 kworker/6:2
14268root         13648 13648 kworker/2:1
14269root         13650 13650 kworker/1:2
14270root         13651 13651 kworker/0:1
14271root         13652 13652 kworker/3:2
14272root         13660 13660 kworker/2:0
14273root         13678 13678 kworker/1:1
14274root         13679 13679 kworker/0:2
14275root         13722 13722 sh
14276root         13724 13724 sh
14277root         13726 13726 ps
14278root         18284 18284 kworker/u17:1
14279root         18474 18474 dsi_err_workq
14280root         18488 18488 kworker/u16:15
14281root         21469 21469 kworker/6:0
14282root         23076 23076 kworker/u17:2
14283root         23403 23403 kworker/4:2
14284root         23868 23868 kworker/u16:10
14285root         23895 23895 Binder:23895_2
14286root         23895 23901 netd
14287root         23895 23907 netd
14288root         23895 23908 netd
14289root         23895 23909 netd
14290root         23895 23910 netd
14291root         23895 23911 netd
14292root         23895 23912 netd
14293root         23895 23913 netd
14294root         23895 23914 netd
14295root         23895 23915 netd
14296root         23895 23916 Binder:23895_1
14297root         23895 23917 Binder:23895_2
14298root         23895 23918 Binder:23895_3
14299root         23895 23919 HwBinder:23895_
14300system       23896 23896 surfaceflinger
14301system       23896 23902 Binder:23896_1
14302system       23896 23903 Binder:23896_2
14303system       23896 23904 DispSync
14304system       23896 23905 appEventThread
14305system       23896 23906 sfEventThread
14306system       23896 23923 HwBinder:23896_
14307system       23896 23927 VrEvent
14308system       23896 23928 VrHwcPost
14309system       23896 23929 VrDispatch
14310system       23896 23930 surfaceflinger
14311system       23896 23986 Binder:23896_3
14312system       23896 24423 Binder:23896_4
14313system       23896 25989 Binder:23896_5
14314root         23897 23897 main
14315root         23897 13132 ReferenceQueueD
14316root         23897 13133 FinalizerDaemon
14317root         23897 13134 FinalizerWatchd
14318root         23897 13135 HeapTaskDaemon
14319root         23898 23898 main
14320root         23898 27987 ReferenceQueueD
14321root         23898 27988 FinalizerDaemon
14322root         23898 27989 FinalizerWatchd
14323root         23898 27990 HeapTaskDaemon
14324root         23899 23899 iptables-restor
14325root         23900 23900 ip6tables-resto
14326system       23968 23968 system_server
14327system       23968 23970 Signal Catcher
14328system       23968 23971 ADB-JDWP Connec
14329system       23968 23972 ReferenceQueueD
14330system       23968 23973 FinalizerDaemon
14331system       23968 23974 FinalizerWatchd
14332system       23968 23975 HeapTaskDaemon
14333system       23968 23981 Binder:23968_1
14334system       23968 23982 Binder:23968_2
14335system       23968 23992 android.bg
14336system       23968 23993 ActivityManager
14337system       23968 23994 android.ui
14338system       23968 23995 ActivityManager
14339system       23968 23996 ActivityManager
14340system       23968 23998 batterystats-wo
14341system       23968 24000 FileObserver
14342system       23968 24001 android.fg
14343system       23968 24002 android.io
14344system       23968 24003 android.display
14345system       23968 24005 CpuTracker
14346system       23968 24006 PowerManagerSer
14347system       23968 24007 BatteryStats_wa
14348system       23968 24009 PackageManager
14349system       23968 24010 PackageManager
14350system       23968 24040 PackageInstalle
14351system       23968 24041 android.anim
14352system       23968 24042 android.anim.lf
14353system       23968 24045 HwBinder:23968_
14354system       23968 24048 HealthServiceRe
14355system       23968 24054 AccountManagerS
14356system       23968 24058 SettingsProvide
14357system       23968 24061 AlarmManager
14358system       23968 24068 SensorEventAckR
14359system       23968 24069 SensorService
14360system       23968 24070 window_tracing
14361system       23968 24073 InputDispatcher
14362system       23968 24074 InputReader
14363system       23968 24075 NetworkWatchlis
14364system       23968 24076 StorageManagerS
14365system       23968 24078 NetdConnector
14366system       23968 24080 NetworkStats
14367system       23968 24081 NetworkPolicy
14368system       23968 24082 tworkPolicy.uid
14369system       23968 24083 WifiService
14370system       23968 24084 WifiStateMachin
14371system       23968 24085 WifiScanningSer
14372system       23968 24086 WifiP2pService
14373system       23968 24087 ConnectivitySer
14374system       23968 24088 roid.pacmanager
14375system       23968 24089 NsdService
14376system       23968 24090 mDnsConnector
14377system       23968 24091 notification-sq
14378system       23968 24092 ranker
14379system       23968 24093 onProviders.ECP
14380system       23968 24094 DeviceStorageMo
14381system       23968 24095 AudioService
14382system       23968 24096 Binder:23968_3
14383system       23968 24097 Binder:23968_4
14384system       23968 24098 UEventObserver
14385system       23968 24100 HwBinder:23968_
14386system       23968 24101 HwBinder:23968_
14387system       23968 24102 ConnectivityThr
14388system       23968 24103 pool-3-thread-1
14389system       23968 24104 GraphicsStats-d
14390system       23968 24105 SliceManagerSer
14391system       23968 24106 CameraService_p
14392system       23968 24107 SyncHandler-0
14393system       23968 24110 wifiRttService
14394system       23968 24111 wifiAwareServic
14395system       23968 24112 EthernetService
14396system       23968 24113 TaskSnapshotPer
14397system       23968 24114 PhotonicModulat
14398system       23968 24117 LazyTaskWriterT
14399system       23968 24118 SyncManager
14400system       23968 24131 UsbService host
14401system       23968 24132 Thread-3
14402system       23968 24142 SoundPool
14403system       23968 24147 SoundPoolThread
14404system       23968 24161 NetworkStatsObs
14405system       23968 24186 CCodecWatchdog
14406system       23968 24196 watchdog
14407system       23968 24200 EmergencyAfford
14408system       23968 24233 Binder:23968_5
14409system       23968 24235 Binder:23968_6
14410system       23968 24238 Binder:23968_7
14411system       23968 24246 NetworkTimeUpda
14412system       23968 24293 BluetoothRouteM
14413system       23968 24306 AudioPortEventH
14414system       23968 24328 HwBinder:23968_
14415system       23968 24345 uteStateMachine
14416system       23968 24350 CallAudioModeSt
14417system       23968 24351 ConnectionSvrFo
14418system       23968 24413 queued-work-loo
14419system       23968 24426 IpClient.wlan0
14420system       23968 24584 UsbDebuggingMan
14421system       23968 24648 backup
14422system       23968 24659 Binder:23968_8
14423system       23968 24687 Binder:23968_9
14424system       23968 24688 Binder:23968_A
14425system       23968 24689 Binder:23968_B
14426system       23968 25014 Binder:23968_C
14427system       23968 25025 HwBinder:23968_
14428system       23968 25663 AsyncQueryWorke
14429system       23968 25817 Binder:23968_D
14430system       23968 25856 Binder:23968_E
14431system       23968 25953 Binder:23968_F
14432system       23968 26548 Binder:23968_10
14433system       23968 26674 Binder:23968_11
14434system       23968 27537 Binder:23968_12
14435system       23968 27744 Binder:23968_13
14436system       23968 27763 Binder:23968_14
14437system       23968 27905 RenderThread
14438system       23968  1092 Binder:23968_15
14439system       23968  9973 GrallocUploadTh
14440system       23968  9976 AudioTrack
14441system       23968 12589 Binder:23968_16
14442system       24047 24047 sensors@1.0-ser
14443system       24047 24049 sensors@1.0-ser
14444system       24047 24053 sensors@1.0-ser
14445system       24047 24056 sensors@1.0-ser
14446system       24047 24057 HwBinder:24047_
14447system       24047 24064 sensors@1.0-ser
14448system       24047 24065 sensors@1.0-ser
14449system       24047 24066 sensors@1.0-ser
14450system       24047 24115 HwBinder:24047_
14451system       24047 24116 HwBinder:24047_
14452bluetooth    24119 24119 droid.bluetooth
14453bluetooth    24119 24124 Jit thread pool
14454bluetooth    24119 24125 Signal Catcher
14455bluetooth    24119 24126 ADB-JDWP Connec
14456bluetooth    24119 24127 ReferenceQueueD
14457bluetooth    24119 24128 FinalizerDaemon
14458bluetooth    24119 24129 FinalizerWatchd
14459bluetooth    24119 24130 HeapTaskDaemon
14460bluetooth    24119 24135 Binder:24119_1
14461bluetooth    24119 24139 Binder:24119_2
14462bluetooth    24119 24159 Binder:24119_3
14463bluetooth    24119 24171 Profile Saver
14464bluetooth    24119 24219 AdapterState
14465bluetooth    24119 24224 stack_manager
14466bluetooth    24119 24225 POSIX timer 0
14467bluetooth    24119 24226 POSIX timer 1
14468bluetooth    24119 24227 alarm_default_c
14469bluetooth    24119 24228 alarm_dispatche
14470bluetooth    24119 24229 BT Service Call
14471bluetooth    24119 24236 BluetoothActive
14472bluetooth    24119 24240 AudioPortEventH
14473bluetooth    24119 24380 BondStateMachin
14474bluetooth    24119 24408 BluetoothAdvert
14475bluetooth    24119 24410 BluetoothScanMa
14476bluetooth    24119 24415 queued-work-loo
14477bluetooth    24119 24418 hci_thread
14478bluetooth    24119 24420 HwBinder:24119_
14479bluetooth    24119 24511 bt_workqueue
14480bluetooth    24119 24512 btu message loo
14481bluetooth    24119 24521 BT Service Call
14482bluetooth    24119 24522 btif_sock
14483bluetooth    24119 24523 Binder:24119_4
14484bluetooth    24119 24524 Binder:24119_5
14485bluetooth    24119 24525 e.StateMachines
14486bluetooth    24119 24526 e.StateMachines
14487bluetooth    24119 24527 btif_a2dp_sourc
14488bluetooth    24119 24528 BluetoothHdpHan
14489bluetooth    24119 24529 droid.bluetooth
14490bluetooth    24119 24530 BluetoothMapHan
14491bluetooth    24119 24534 PbapHandlerThre
14492bluetooth    24119 24536 e.StateMachines
14493bluetooth    24119 24537 Thread-3
14494bluetooth    24119 24538 uipc-main
14495bluetooth    24119 24539 Thread-4
14496bluetooth    24119 24543 SapAcceptThread
14497bluetooth    24119 24545 Thread-6
14498bluetooth    24119 24546 Thread-7
14499bluetooth    24119 24547 Thread-8
14500bluetooth    24119 24548 Thread-9
14501bluetooth    24119 24661 Binder:24119_6
14502u0_a90       24133 24133 putmethod.latin
14503u0_a90       24133 24140 Jit thread pool
14504u0_a90       24133 24141 Signal Catcher
14505u0_a90       24133 24143 ADB-JDWP Connec
14506u0_a90       24133 24144 ReferenceQueueD
14507u0_a90       24133 24145 FinalizerDaemon
14508u0_a90       24133 24146 FinalizerWatchd
14509u0_a90       24133 24148 HeapTaskDaemon
14510u0_a90       24133 24149 Binder:24133_1
14511u0_a90       24133 24157 Binder:24133_2
14512u0_a90       24133 24162 Binder:24133_3
14513u0_a90       24133 24179 Profile Saver
14514u0_a90       24133 24217 queued-work-loo
14515u0_a90       24133 24218 ExUtils-P11-1
14516u0_a90       24133 24237 ExUtils-P9-1
14517u0_a90       24133 24431 Binder:24133_4
14518u0_a90       24133 24732 GoogleApiHandle
14519u0_a90       24133 24832 GAC_Executor[0]
14520u0_a90       24133 24844 MetricsManager
14521u0_a90       24133 24998 AnrDetector
14522u0_a90       24133 25008 NativeLogger-1
14523u0_a90       24133 25013 DwldManWrapper
14524u0_a90       24133 25070 ExUtils-P10-1
14525u0_a90       24133 25121 sp-control-1
14526u0_a90       24133 25129 GAC_Executor[1]
14527u0_a90       24133 25145 Primes-1
14528u0_a90       24133 25161 ExUtils-P1-1
14529u0_a90       24133 25162 Primes-2
14530u0_a90       24133 25451 Binder:24133_5
14531u0_a90       24133 25555 Binder:24133_6
14532u0_a90       24133 25998 DecoderWrapper
14533u0_a90       24133 12580 Binder:24133_7
14534u0_a22       24151 24151 ndroid.systemui
14535u0_a22       24151 24160 Jit thread pool
14536u0_a22       24151 24163 Signal Catcher
14537u0_a22       24151 24164 ADB-JDWP Connec
14538u0_a22       24151 24165 ReferenceQueueD
14539u0_a22       24151 24166 FinalizerDaemon
14540u0_a22       24151 24167 FinalizerWatchd
14541u0_a22       24151 24168 HeapTaskDaemon
14542u0_a22       24151 24169 Binder:24151_1
14543u0_a22       24151 24170 Binder:24151_2
14544u0_a22       24151 24177 Binder:24151_3
14545u0_a22       24151 24178 Profile Saver
14546u0_a22       24151 24247 smartspace-back
14547u0_a22       24151 24340 pool-1-thread-1
14548u0_a22       24151 24348 SoundPool
14549u0_a22       24151 24349 SoundPoolThread
14550u0_a22       24151 24359 Recents-HighRes
14551u0_a22       24151 24360 Recents-TaskRes
14552u0_a22       24151 24367 CCodecWatchdog
14553u0_a22       24151 24368 HwBinder:24151_
14554u0_a22       24151 24369 recents.fg
14555u0_a22       24151 24376 Binder:24151_4
14556u0_a22       24151 24390 async_sensor
14557u0_a22       24151 24406 Binder:24151_5
14558u0_a22       24151 24424 VolumeDialogCon
14559u0_a22       24151 24428 SysUiBg
14560u0_a22       24151 24436 queued-work-loo
14561u0_a22       24151 24437 RenderThread
14562u0_a22       24151 24438 ConnectivityThr
14563u0_a22       24151 24439 WifiTracker{876
14564u0_a22       24151 24449 TimeTick
14565u0_a22       24151 24457 FlashlightContr
14566u0_a22       24151 24486 Keyboard
14567u0_a22       24151 24488 Binder:24151_6
14568u0_a22       24151 24494 pool-3-thread-1
14569u0_a22       24151 24502 pool-5-thread-1
14570u0_a22       24151 24503 GrallocUploadTh
14571u0_a22       24151 24504 hwuiTask1
14572u0_a22       24151 24505 Thread-2
14573u0_a22       24151 25987 AudioTrack
14574webview_zygote 24180 24180 webview_zygote
14575webview_zygote 24180 24192 ReferenceQueueD
14576webview_zygote 24180 24193 FinalizerDaemon
14577webview_zygote 24180 24194 FinalizerWatchd
14578webview_zygote 24180 24195 HeapTaskDaemon
14579radio        24249 24249 .dataservices
14580radio        24249 24255 Jit thread pool
14581radio        24249 24256 Signal Catcher
14582radio        24249 24257 ADB-JDWP Connec
14583radio        24249 24258 ReferenceQueueD
14584radio        24249 24259 FinalizerDaemon
14585radio        24249 24260 FinalizerWatchd
14586radio        24249 24261 HeapTaskDaemon
14587radio        24249 24262 Binder:24249_1
14588radio        24249 24270 Binder:24249_2
14589radio        24249 24291 Profile Saver
14590radio        24249 24307 cneservice_thre
14591radio        24249 24323 CNEReceiver
14592radio        24249 24336 ConnectivityThr
14593radio        24249 24339 MainEventThread
14594radio        24249 24344 HwBinder:24249_
14595radio        24249 25165 Binder:24249_3
14596radio        24249 25166 MainEventThread
14597radio        24249 25176 queued-work-loo
14598root         24254 24254 kworker/5:0
14599radio        24263 24263 elephonyservice
14600radio        24263 24271 Jit thread pool
14601radio        24263 24272 Signal Catcher
14602radio        24263 24273 ADB-JDWP Connec
14603radio        24263 24274 ReferenceQueueD
14604radio        24263 24275 FinalizerDaemon
14605radio        24263 24276 FinalizerWatchd
14606radio        24263 24277 HeapTaskDaemon
14607radio        24263 24278 Binder:24263_1
14608radio        24263 24279 Binder:24263_2
14609radio        24263 24286 Binder:24263_3
14610radio        24263 24311 Profile Saver
14611radio        24263 25158 HwBinder:24263_
14612radio        24263 25159 AudioPortEventH
14613radio        24263 25160 queued-work-loo
14614root         24269 24269 kworker/4:0
14615radio        24280 24280 oid.grilservice
14616radio        24280 24288 Jit thread pool
14617radio        24280 24292 Signal Catcher
14618radio        24280 24299 ADB-JDWP Connec
14619radio        24280 24300 ReferenceQueueD
14620radio        24280 24301 FinalizerDaemon
14621radio        24280 24302 FinalizerWatchd
14622radio        24280 24303 HeapTaskDaemon
14623radio        24280 24304 Binder:24280_1
14624radio        24280 24308 Binder:24280_2
14625radio        24280 24326 Profile Saver
14626radio        24280 25107 Binder:24280_3
14627radio        24280 25117 HwBinder:24280_
14628radio        24290 24290 m.android.phone
14629radio        24290 24305 Jit thread pool
14630radio        24290 24310 Signal Catcher
14631radio        24290 24315 ADB-JDWP Connec
14632radio        24290 24316 ReferenceQueueD
14633radio        24290 24317 FinalizerDaemon
14634radio        24290 24318 FinalizerWatchd
14635radio        24290 24319 HeapTaskDaemon
14636radio        24290 24320 Binder:24290_1
14637radio        24290 24325 Binder:24290_2
14638radio        24290 24343 Profile Saver
14639radio        24290 24373 HwBinder:24290_
14640radio        24290 24377 EuiccConnector
14641radio        24290 24379 android.bg
14642radio        24290 24387 queued-work-loo
14643radio        24290 24399 GsmCellBroadcas
14644radio        24290 24402 GsmInboundSmsHa
14645radio        24290 24409 CellBroadcastHa
14646radio        24290 24411 CdmaInboundSmsH
14647radio        24290 24414 CdmaServiceCate
14648radio        24290 24429 Binder:24290_3
14649radio        24290 24432 LocaleTracker
14650radio        24290 24435 DcHandlerThread
14651radio        24290 24441 Binder:24290_4
14652radio        24290 24446 Binder:24290_5
14653radio        24290 24448 ImsServiceContr
14654radio        24290 24450 NetworkService
14655radio        24290 24455 DataService
14656radio        24290 24459 org.codeaurora.
14657radio        24290 24460 ImsConfigImplHa
14658radio        24290 24461 ImsSmsImpl
14659radio        24290 24462 CellularNetwork
14660radio        24290 24463 CellularDataSer
14661radio        24290 24468 ConnectivityThr
14662radio        24290 24471 Binder:24290_6
14663radio        24290 24501 Binder:24290_7
14664radio        24290 25668 ervice.Executor
14665u0_a59       24382 24382 id.ext.services
14666u0_a59       24382 24389 Jit thread pool
14667u0_a59       24382 24391 Signal Catcher
14668u0_a59       24382 24392 ADB-JDWP Connec
14669u0_a59       24382 24393 ReferenceQueueD
14670u0_a59       24382 24394 FinalizerDaemon
14671u0_a59       24382 24395 FinalizerWatchd
14672u0_a59       24382 24396 HeapTaskDaemon
14673u0_a59       24382 24397 Binder:24382_1
14674u0_a59       24382 24401 Binder:24382_2
14675u0_a59       24382 24403 Binder:24382_3
14676u0_a59       24382 24405 Binder:24382_4
14677u0_a59       24382 24416 Profile Saver
14678u0_a59       24382 24582 queued-work-loo
14679root         24613 24613 irq/79-1436400.
14680root         24617 24617 irq/80-114a000.
14681nfc          24655 24655 com.android.nfc
14682nfc          24655 24662 Jit thread pool
14683nfc          24655 24663 Signal Catcher
14684nfc          24655 24664 ADB-JDWP Connec
14685nfc          24655 24665 ReferenceQueueD
14686nfc          24655 24666 FinalizerDaemon
14687nfc          24655 24667 FinalizerWatchd
14688nfc          24655 24668 HeapTaskDaemon
14689nfc          24655 24669 Binder:24655_1
14690nfc          24655 24675 Binder:24655_2
14691nfc          24655 24692 Binder:24655_3
14692nfc          24655 24714 Profile Saver
14693nfc          24655 24915 AsyncTask #1
14694nfc          24655 24926 AsyncTask #1
14695nfc          24655 24927 HwBinder:24655_
14696nfc          24655 25000 Thread-2
14697nfc          24655 25001 Thread-3
14698nfc          24655 25002 Thread-4
14699nfc          24655 25003 SoundPool
14700nfc          24655 25004 SoundPoolThread
14701nfc          24655 25015 CCodecWatchdog
14702nfc          24655 25074 Binder:24655_4
14703nfc          24655 26061 Binder:24655_5
14704secure_element 24670 24670 com.android.se
14705secure_element 24670 24676 Jit thread pool
14706secure_element 24670 24677 Signal Catcher
14707secure_element 24670 24678 ADB-JDWP Connec
14708secure_element 24670 24679 ReferenceQueueD
14709secure_element 24670 24680 FinalizerDaemon
14710secure_element 24670 24681 FinalizerWatchd
14711secure_element 24670 24683 HeapTaskDaemon
14712secure_element 24670 24685 Binder:24670_1
14713secure_element 24670 24686 Binder:24670_2
14714secure_element 24670 24695 Binder:24670_3
14715secure_element 24670 24710 Profile Saver
14716secure_element 24670 24742 HwBinder:24670_
14717secure_element 24670 24749 queued-work-loo
14718radio        24691 24691 .ims.rcsservice
14719radio        24691 24701 Jit thread pool
14720radio        24691 24702 Signal Catcher
14721radio        24691 24704 ADB-JDWP Connec
14722radio        24691 24712 ReferenceQueueD
14723radio        24691 24715 FinalizerDaemon
14724radio        24691 24721 FinalizerWatchd
14725radio        24691 24722 HeapTaskDaemon
14726radio        24691 24723 Binder:24691_1
14727radio        24691 24724 Binder:24691_2
14728radio        24691 24753 Profile Saver
14729radio        24691 24783 Binder:24691_3
14730radio        24691 24786 Listener
14731radio        24691 24839 queued-work-loo
14732radio        24691 25522 EABServiceHandl
14733radio        24691 25882 Binder:24691_4
14734system       24703 24703 RestartDetector
14735system       24703 24711 Jit thread pool
14736system       24703 24713 Signal Catcher
14737system       24703 24716 ADB-JDWP Connec
14738system       24703 24717 ReferenceQueueD
14739system       24703 24718 FinalizerDaemon
14740system       24703 24719 FinalizerWatchd
14741system       24703 24725 HeapTaskDaemon
14742system       24703 24740 Binder:24703_1
14743system       24703 24747 Binder:24703_2
14744system       24703 24768 Profile Saver
14745system       24703 25947 Binder:24703_3
14746system       24703 25948 FileObserver
14747system       24703 25958 queued-work-loo
14748u0_a72       24726 24726 eui:sui_service
14749u0_a72       24726 24731 Jit thread pool
14750u0_a72       24726 24733 Signal Catcher
14751u0_a72       24726 24734 ADB-JDWP Connec
14752u0_a72       24726 24735 ReferenceQueueD
14753u0_a72       24726 24736 FinalizerDaemon
14754u0_a72       24726 24737 FinalizerWatchd
14755u0_a72       24726 24738 HeapTaskDaemon
14756u0_a72       24726 24739 Binder:24726_1
14757u0_a72       24726 24748 Binder:24726_2
14758u0_a72       24726 24751 Binder:24726_3
14759u0_a72       24726 24766 Profile Saver
14760u0_a72       24726 25402 Thread-2
14761u0_a72       24726 25403 queued-work-loo
14762u0_a72       24726 25406 HwBinder:24726_
14763u0_a72       24726 25539 Thread-2
14764u0_a6        24741 24741 .gms.persistent
14765u0_a6        24741 24750 Jit thread pool
14766u0_a6        24741 24752 Signal Catcher
14767u0_a6        24741 24759 ADB-JDWP Connec
14768u0_a6        24741 24760 ReferenceQueueD
14769u0_a6        24741 24761 FinalizerDaemon
14770u0_a6        24741 24762 FinalizerWatchd
14771u0_a6        24741 24763 HeapTaskDaemon
14772u0_a6        24741 24764 Binder:24741_1
14773u0_a6        24741 24767 Binder:24741_2
14774u0_a6        24741 24769 Binder:24741_3
14775u0_a6        24741 24834 Profile Saver
14776u0_a6        24741 25011 FileObserver
14777u0_a6        24741 25016 GlobalDispatchi
14778u0_a6        24741 25141 Binder:24741_4
14779u0_a6        24741 25144 Binder:24741_5
14780u0_a6        24741 25193 GoogleApiHandle
14781u0_a6        24741 25211 GlobalScheduler
14782u0_a6        24741 25239 ConnectivityThr
14783u0_a6        24741 25266 queued-work-loo
14784u0_a6        24741 25269 highpool[0]
14785u0_a6        24741 25276 highpool[1]
14786u0_a6        24741 25289 lowpool[0]
14787u0_a6        24741 25294 Binder:24741_6
14788u0_a6        24741 25296 lowpool[3]
14789u0_a6        24741 25302 Binder:24741_7
14790u0_a6        24741 25303 Binder:24741_8
14791u0_a6        24741 25320 lowpool[4]
14792u0_a6        24741 25344 Binder:24741_9
14793u0_a6        24741 25382 GAC_Executor[0]
14794u0_a6        24741 25385 highpool[2]
14795u0_a6        24741 25386 highpool[3]
14796u0_a6        24741 25391 FlpThread
14797u0_a6        24741 25487 GAC_Executor[1]
14798u0_a6        24741 25511 GeofencerStateM
14799u0_a6        24741 25512 RealContextHub
14800u0_a6        24741 25517 Thread-4
14801u0_a6        24741 25518 Thread-5
14802u0_a6        24741 25519 Thread-6
14803u0_a6        24741 25520 Thread-7
14804u0_a6        24741 25521 Thread-8
14805u0_a6        24741 25525 GoogleLocationS
14806u0_a6        24741 25548 Places
14807u0_a6        24741 25591 MSMuxTR-0
14808u0_a6        24741 26056 netscheduler-qu
14809u0_a6        24741 26166 Binder:24741_A
14810u0_a6        24741 26167 Binder:24741_B
14811u0_a6        24741 27059 NearbyMessages
14812u0_a6        24741 27109 NearbyDirectMai
14813u0_a6        24741 27168 lowpool[8]
14814u0_a6        24741 28229 Binder:24741_C
14815u0_a148      24754 24754 gearhead:shared
14816u0_a148      24754 24765 Jit thread pool
14817u0_a148      24754 24770 Signal Catcher
14818u0_a148      24754 24771 ADB-JDWP Connec
14819u0_a148      24754 24775 ReferenceQueueD
14820u0_a148      24754 24776 FinalizerDaemon
14821u0_a148      24754 24777 FinalizerWatchd
14822u0_a148      24754 24778 HeapTaskDaemon
14823u0_a148      24754 24780 Binder:24754_1
14824u0_a148      24754 24784 Binder:24754_2
14825u0_a148      24754 24793 Binder:24754_3
14826u0_a148      24754 24836 Profile Saver
14827u0_a148      24754 24972 GoogleApiHandle
14828u0_a148      24754 25208 FileObserver
14829u0_a148      24754 25209 ConnectivityThr
14830u0_a148      24754 25235 queued-work-loo
14831u0_a148      24754 25238 GAC_Executor[0]
14832u0_a148      24754 25438 GAC_Executor[1]
14833u0_a148      24754 25449 Binder:24754_4
14834u0_a148      24754 27819 Binder:24754_5
14835u0_a34       24772 24772 apps.dreamliner
14836u0_a34       24772 24782 Jit thread pool
14837u0_a34       24772 24785 Signal Catcher
14838u0_a34       24772 24787 ADB-JDWP Connec
14839u0_a34       24772 24788 ReferenceQueueD
14840u0_a34       24772 24789 FinalizerDaemon
14841u0_a34       24772 24790 FinalizerWatchd
14842u0_a34       24772 24791 HeapTaskDaemon
14843u0_a34       24772 24792 Binder:24772_1
14844u0_a34       24772 24814 Binder:24772_2
14845u0_a34       24772 24825 Binder:24772_3
14846u0_a34       24772 24835 Profile Saver
14847u0_a39       24795 24795 oid.setupwizard
14848u0_a39       24795 24801 Jit thread pool
14849u0_a39       24795 24802 Signal Catcher
14850u0_a39       24795 24803 ADB-JDWP Connec
14851u0_a39       24795 24804 ReferenceQueueD
14852u0_a39       24795 24805 FinalizerDaemon
14853u0_a39       24795 24806 FinalizerWatchd
14854u0_a39       24795 24807 HeapTaskDaemon
14855u0_a39       24795 24809 Binder:24795_1
14856u0_a39       24795 24815 Binder:24795_2
14857u0_a39       24795 24826 Binder:24795_3
14858u0_a39       24795 24856 Profile Saver
14859u0_a39       24795 24987 queued-work-loo
14860u0_a39       24795 24990 GoogleApiHandle
14861u0_a39       24795 24994 ConnectivityThr
14862u0_a39       24795 24995 WifiTracker{910
14863u0_a39       24795 25377 pool-1-thread-1
14864u0_a39       24795 25446 Binder:24795_4
14865u0_a39       24795 29514 Binder:24795_5
14866u0_a15       24808 24808 ogle.android.as
14867u0_a15       24808 24816 Jit thread pool
14868u0_a15       24808 24817 Signal Catcher
14869u0_a15       24808 24818 ADB-JDWP Connec
14870u0_a15       24808 24819 ReferenceQueueD
14871u0_a15       24808 24820 FinalizerDaemon
14872u0_a15       24808 24821 FinalizerWatchd
14873u0_a15       24808 24822 HeapTaskDaemon
14874u0_a15       24808 24823 Binder:24808_1
14875u0_a15       24808 24837 Binder:24808_2
14876u0_a15       24808 24842 Profile Saver
14877u0_a15       24808 24937 GoogleApiHandle
14878u0_a15       24808 25445 Binder:24808_3
14879u0_a15       24808  9970 aiai-bg-0
14880u0_a15       24808  9974 GAC_Executor[0]
14881u0_a15       24808  9975 GAC_Executor[1]
14882u0_a25       24827 24827 s.nexuslauncher
14883u0_a25       24827 24838 Jit thread pool
14884u0_a25       24827 24841 Signal Catcher
14885u0_a25       24827 24845 ADB-JDWP Connec
14886u0_a25       24827 24846 ReferenceQueueD
14887u0_a25       24827 24847 FinalizerDaemon
14888u0_a25       24827 24848 FinalizerWatchd
14889u0_a25       24827 24849 HeapTaskDaemon
14890u0_a25       24827 24850 Binder:24827_1
14891u0_a25       24827 24857 Binder:24827_2
14892u0_a25       24827 24863 Binder:24827_3
14893u0_a25       24827 24890 Profile Saver
14894u0_a25       24827 24943 launcher-loader
14895u0_a25       24827 24985 GAC_Executor[0]
14896u0_a25       24827 24986 GoogleApiHandle
14897u0_a25       24827 25108 UiThreadHelper
14898u0_a25       24827 25109 pool-1-thread-1
14899u0_a25       24827 25113 Recents-HighRes
14900u0_a25       24827 25114 Recents-TaskRes
14901u0_a25       24827 25116 pool-3-thread-1
14902u0_a25       24827 25147 qsb-experiments
14903u0_a25       24827 25154 magnifier pixel
14904u0_a25       24827 25155 search-thread
14905u0_a25       24827 25168 smartspace-load
14906u0_a25       24827 25194 RenderThread
14907u0_a25       24827 25198 remote-ui
14908u0_a25       24827 25201 reflection-thre
14909u0_a25       24827 25202 reflection-plac
14910u0_a25       24827 25203 queued-work-loo
14911u0_a25       24827 25216 GAC_Executor[1]
14912u0_a25       24827 25243 GrallocUploadTh
14913u0_a25       24827 25554 Binder:24827_4
14914u0_a25       24827 27853 hwuiTask1
14915u0_a25       24827  5558 Binder:24827_5
14916u0_a25       24827  9968 pool-3-thread-2
14917u0_a25       24827 12577 Binder:24827_6
14918u0_a6        24894 24894 ocess.gservices
14919u0_a6        24894 24907 Jit thread pool
14920u0_a6        24894 24913 Signal Catcher
14921u0_a6        24894 24919 ADB-JDWP Connec
14922u0_a6        24894 24920 ReferenceQueueD
14923u0_a6        24894 24921 FinalizerDaemon
14924u0_a6        24894 24922 FinalizerWatchd
14925u0_a6        24894 24923 HeapTaskDaemon
14926u0_a6        24894 24924 Binder:24894_1
14927u0_a6        24894 24936 Binder:24894_2
14928u0_a6        24894 24945 Profile Saver
14929u0_a6        24894 24962 Binder:24894_3
14930u0_a6        24894 24979 Binder:24894_4
14931u0_a6        24894 24997 Binder:24894_5
14932u0_a6        24894 25005 Binder:24894_6
14933u0_a6        24894 25205 Binder:24894_7
14934u0_a6        24894 25434 Binder:24894_8
14935u0_a6        24894 25439 Binder:24894_9
14936u0_a6        24894 25442 Binder:24894_A
14937u0_a6        24894 25464 Binder:24894_B
14938u0_a6        24894 25499 Binder:24894_C
14939u0_a6        24894 25502 Binder:24894_D
14940u0_a6        24894 25527 Binder:24894_E
14941u0_a6        24894 25553 Binder:24894_F
14942u0_a6        24894 25716 Binder:24894_10
14943u0_a6        25017 25017 gle.android.gms
14944u0_a6        25017 25026 Jit thread pool
14945u0_a6        25017 25027 Signal Catcher
14946u0_a6        25017 25028 ADB-JDWP Connec
14947u0_a6        25017 25029 ReferenceQueueD
14948u0_a6        25017 25030 FinalizerDaemon
14949u0_a6        25017 25031 FinalizerWatchd
14950u0_a6        25017 25032 HeapTaskDaemon
14951u0_a6        25017 25033 Binder:25017_1
14952u0_a6        25017 25043 Binder:25017_2
14953u0_a6        25017 25075 Profile Saver
14954u0_a6        25017 25169 FileObserver
14955u0_a6        25017 25199 GlobalDispatchi
14956u0_a6        25017 25236 Binder:25017_3
14957u0_a6        25017 25261 GoogleApiHandle
14958u0_a6        25017 25286 GlobalScheduler
14959u0_a6        25017 25409 Binder:25017_4
14960u0_a6        25017 25430 Binder:25017_5
14961u0_a6        25017 25436 lowpool[1]
14962u0_a6        25017 25440 lowpool[3]
14963u0_a6        25017 25452 Binder:25017_6
14964u0_a6        25017 25457 queued-work-loo
14965u0_a6        25017 25693 highpool[0]
14966u0_a6        25017 25862 Thread-5
14967u0_a6        25017 25863 Thread-6
14968u0_a6        25017 25864 Thread-7
14969u0_a6        25017 25865 Thread-8
14970u0_a6        25017 25866 Thread-9
14971u0_a6        25017 26802 Binder:25017_7
14972u0_a6        25017 26820 highpool[1]
14973u0_a6        25017 26838 highpool[2]
14974u0_a6        25017 26840 GAC_Executor[0]
14975u0_a6        25017 26841 GAC_Executor[1]
14976u0_a6        25017 26842 Binder:25017_8
14977u0_a6        25017 26870 highpool[3]
14978u0_a6        25017 26883 AdWorker(Defaul
14979u0_a6        25017 26921 AdWorker(Defaul
14980u0_a6        25017 26930 Binder:25017_9
14981u0_a6        25017 26993 ConnectivityThr
14982u0_a6        25017 27066 Binder:25017_A
14983u0_a6        25017 27076 Binder:25017_B
14984u0_a6        25017 27923 Binder:25017_C
14985u0_a6        25017 27933 Binder:25017_D
14986u0_a6        25017 28134 lowpool[4]
14987u0_a6        25017 28186 lowpool[5]
14988u0_a6        25017   612 Binder:25017_E
14989u0_a6        25017 12583 Binder:25017_F
14990u0_a6        25017 12948 Binder:25017_10
14991u0_a46       25035 25035 le.modemservice
14992u0_a46       25035 25042 Jit thread pool
14993u0_a46       25035 25045 Signal Catcher
14994u0_a46       25035 25046 ADB-JDWP Connec
14995u0_a46       25035 25047 ReferenceQueueD
14996u0_a46       25035 25048 FinalizerDaemon
14997u0_a46       25035 25049 FinalizerWatchd
14998u0_a46       25035 25050 HeapTaskDaemon
14999u0_a46       25035 25051 Binder:25035_1
15000u0_a46       25035 25054 Binder:25035_2
15001u0_a46       25035 25068 Profile Saver
15002u0_a46       25035 25076 Binder:25035_3
15003u0_a46       25035 25095 StateService
15004u0_a46       25035 25110 queued-work-loo
15005u0_a46       25035 25112 ConnectivityThr
15006u0_a46       25035 25148 Binder:25035_4
15007u0_a69       25053 25053 android.vending
15008u0_a69       25053 25060 Jit thread pool
15009u0_a69       25053 25061 Signal Catcher
15010u0_a69       25053 25062 ADB-JDWP Connec
15011u0_a69       25053 25063 ReferenceQueueD
15012u0_a69       25053 25064 FinalizerDaemon
15013u0_a69       25053 25065 FinalizerWatchd
15014u0_a69       25053 25066 HeapTaskDaemon
15015u0_a69       25053 25067 Binder:25053_1
15016u0_a69       25053 25073 Binder:25053_2
15017u0_a69       25053 25119 Profile Saver
15018u0_a69       25053 25245 queued-work-loo
15019u0_a69       25053 25274 FinskyApp
15020u0_a69       25053 25293 ndroid.play.b.g
15021u0_a69       25053 25346 Thread-3
15022u0_a69       25053 25347 Thread-4
15023u0_a69       25053 25348 Thread-5
15024u0_a69       25053 25352 libraries-threa
15025u0_a69       25053 25368 download-manage
15026u0_a69       25053 25378 NetworkQualityQ
15027u0_a69       25053 25389 ConnectivityThr
15028u0_a69       25053 25397 Thread-6
15029u0_a69       25053 25398 Thread-7
15030u0_a69       25053 25399 Thread-8
15031u0_a69       25053 25400 Thread-9
15032u0_a69       25053 25401 Thread-10
15033u0_a69       25053 25426 tentative-gc-ru
15034u0_a69       25053 25443 Db-scheduler
15035u0_a69       25053 25458 LibrariesImpl
15036u0_a69       25053 25459 PackageInstalle
15037u0_a69       25053 25472 WriteThroughIns
15038u0_a69       25053 25574 Binder:25053_3
15039u0_a69       25053 25583 Db-user_languag
15040u0_a69       25053 25606 GearheadStateMo
15041u0_a69       25053 25609 wear-nodes-cont
15042u0_a69       25053 25611 RefQueueWorker@
15043u0_a69       25053 25612 GAC_Executor[0]
15044u0_a69       25053 25621 GoogleApiHandle
15045u0_a69       25053 25660 GAC_Executor[1]
15046u0_a69       25053 25678 Binder:25053_4
15047u0_a69       25053 25713 RefQueueWorker@
15048u0_a69       25053 25736 RefQueueWorker@
15049u0_a69       25053 26169 Binder:25053_5
15050u0_a69       25053 26171 Binder:25053_6
15051u0_a69       25053 26646 RefQueueWorker@
15052u0_a69       25053 26653 RefQueueWorker@
15053u0_a69       25053 26734 BackgroundThrea
15054u0_a69       25053 27702 Timer-0
15055u0_a69       25053 29466 RefQueueWorker@
15056u0_a69       25053 29470 PaiConfigResolv
15057u0_a69       25053 29471 RefQueueWorker@
15058u0_a69       25053 29472 RefQueueWorker@
15059radio        25099 25099 .qcrilmsgtunnel
15060radio        25099 25111 Jit thread pool
15061radio        25099 25118 Signal Catcher
15062radio        25099 25123 ADB-JDWP Connec
15063radio        25099 25124 ReferenceQueueD
15064radio        25099 25125 FinalizerDaemon
15065radio        25099 25126 FinalizerWatchd
15066radio        25099 25127 HeapTaskDaemon
15067radio        25099 25128 Binder:25099_1
15068radio        25099 25130 Binder:25099_2
15069radio        25099 25131 Binder:25099_3
15070radio        25099 25138 Profile Saver
15071radio        25099 25140 Binder:25099_4
15072radio        25099 25153 HwBinder:25099_
15073radio        25099 25157 queued-work-loo
15074system       25623 25623 ti.diagservices
15075system       25623 25642 Jit thread pool
15076system       25623 25645 Signal Catcher
15077system       25623 25648 ADB-JDWP Connec
15078system       25623 25649 ReferenceQueueD
15079system       25623 25650 FinalizerDaemon
15080system       25623 25651 FinalizerWatchd
15081system       25623 25652 HeapTaskDaemon
15082system       25623 25653 Binder:25623_1
15083system       25623 25655 Binder:25623_2
15084system       25623 25657 Profile Saver
15085system       25623 25661 Binder:25623_3
15086system       25623 25662 ti.diagservices
15087system       25623 25672 queued-work-loo
15088root         25995 25995 kworker/u16:16
15089root         25996 25996 kworker/u16:20
15090u0_a92       27538 27538 lcomm.telephony
15091u0_a92       27538 27543 Jit thread pool
15092u0_a92       27538 27544 Signal Catcher
15093u0_a92       27538 27545 ADB-JDWP Connec
15094u0_a92       27538 27546 ReferenceQueueD
15095u0_a92       27538 27547 FinalizerDaemon
15096u0_a92       27538 27548 FinalizerWatchd
15097u0_a92       27538 27549 HeapTaskDaemon
15098u0_a92       27538 27550 Binder:27538_1
15099u0_a92       27538 27551 Binder:27538_2
15100u0_a92       27538 27552 Binder:27538_3
15101u0_a92       27538 27555 Profile Saver
15102u0_a92       27538 27556 Thread-2
15103u0_a92       27538 27557 CTSA Inject Thr
15104u0_a92       27538 27562 HwBinder:27538_
15105u0_a92       27538 27564 queued-work-loo
15106u0_a23       28152 28152 .apps.turbo:aab
15107u0_a23       28152 28159 Jit thread pool
15108u0_a23       28152 28160 Signal Catcher
15109u0_a23       28152 28161 ADB-JDWP Connec
15110u0_a23       28152 28162 ReferenceQueueD
15111u0_a23       28152 28163 FinalizerDaemon
15112u0_a23       28152 28164 FinalizerWatchd
15113u0_a23       28152 28165 HeapTaskDaemon
15114u0_a23       28152 28166 Binder:28152_1
15115u0_a23       28152 28168 Binder:28152_2
15116u0_a23       28152 28171 Binder:28152_3
15117u0_a23       28152 28183 Profile Saver
15118u0_a23       28152 28493 Binder:28152_4
15119u0_a23       28152 28494 Binder:28152_5
15120u0_a23       28152 29720 GoogleApiHandle
15121u0_a23       28152  7773 Binder:28152_6
15122u0_a23       28152 12724 GAC_Executor[0]
15123u0_a23       28152 12725 GAC_Executor[1]
15124u0_a23       28152 12726 queued-work-loo
15125u0_a146      30159 30159 android.ramdump
15126u0_a146      30159 30166 Jit thread pool
15127u0_a146      30159 30167 Signal Catcher
15128u0_a146      30159 30168 ADB-JDWP Connec
15129u0_a146      30159 30169 ReferenceQueueD
15130u0_a146      30159 30170 FinalizerDaemon
15131u0_a146      30159 30171 FinalizerWatchd
15132u0_a146      30159 30172 HeapTaskDaemon
15133u0_a146      30159 30173 Binder:30159_1
15134u0_a146      30159 30174 Binder:30159_2
15135u0_a146      30159 30177 Binder:30159_3
15136u0_a146      30159 30180 Profile Saver
15137u0_a146      30159 30184 Binder:30159_4
15138u0_a146      30159 30185 queued-work-loo
15139  </script>
15140  <script class="trace-data" type="application/text">
15141# tracer: nop
15142#
15143# entries-in-buffer/entries-written: 46634/46634   #P:8
15144#
15145#                                      _-----=> irqs-off
15146#                                     / _----=> need-resched
15147#                                    | / _---=> hardirq/softirq
15148#                                    || / _--=> preempt-depth
15149#                                    ||| /     delay
15150#           TASK-PID    TGID   CPU#  ||||    TIMESTAMP  FUNCTION
15151#              | |        |      |   ||||       |         |
15152          atrace-13704 (13704) [001] ...1 29471.648291: tracing_mark_write: trace_event_clock_sync: parent_ts=29471.648438
15153          atrace-13704 (13704) [001] ...1 29471.648302: tracing_mark_write: trace_event_clock_sync: realtime_ts=1529517843269
15154          atrace-13704 (13704) [001] d..2 29471.650153: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15155          atrace-13704 (13704) [001] dn.3 29471.650162: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15156          atrace-13704 (13704) [001] d..2 29471.650169: sched_switch: prev_comm=atrace prev_pid=13704 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15157     kworker/1:1-13678 (13678) [001] d..2 29471.650183: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13704 next_prio=120
15158          atrace-13704 (13704) [001] d..2 29471.650185: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15159          atrace-13704 (13704) [001] dn.3 29471.650189: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15160          atrace-13704 (13704) [001] d..2 29471.650194: sched_switch: prev_comm=atrace prev_pid=13704 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15161     kworker/1:1-13678 (13678) [001] d..2 29471.650200: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13704 next_prio=120
15162          atrace-13704 (13704) [001] d..2 29471.650220: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15163          atrace-13704 (13704) [001] dn.3 29471.650225: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15164          atrace-13704 (13704) [001] d..2 29471.650229: sched_switch: prev_comm=atrace prev_pid=13704 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15165     kworker/1:1-13678 (13678) [001] d..2 29471.650305: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13704 next_prio=120
15166          atrace-13704 (13704) [001] d..2 29471.650356: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15167          atrace-13704 (13704) [001] dn.3 29471.650363: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15168          atrace-13704 (13704) [001] d..2 29471.650368: sched_switch: prev_comm=atrace prev_pid=13704 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15169          <idle>-0     (-----) [000] d.s2 29471.650413: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15170     kworker/1:1-13678 (13678) [001] d..2 29471.650424: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13704 next_prio=120
15171          <idle>-0     (-----) [000] dns3 29471.650425: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15172          <idle>-0     (-----) [000] dns2 29471.650427: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
15173          <idle>-0     (-----) [000] dns3 29471.650451: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15174          atrace-13704 (13704) [001] d..2 29471.650457: sched_switch: prev_comm=atrace prev_pid=13704 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15175          <idle>-0     (-----) [000] dns3 29471.650462: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15176     rcu_preempt-7     (    7) [001] d..2 29471.650472: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
15177          <idle>-0     (-----) [000] dns4 29471.650481: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15178          <idle>-0     (-----) [000] .n.1 29471.650493: cpu_idle: state=4294967295 cpu_id=0
15179          <idle>-0     (-----) [000] d..2 29471.650500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
15180     rcu_preempt-7     (    7) [001] d..3 29471.650506: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
15181       rcu_sched-8     (    8) [000] d..2 29471.650508: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
15182       rcu_sched-8     (    8) [000] d..3 29471.650517: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
15183     rcu_preempt-7     (    7) [001] d..2 29471.650518: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13704 next_prio=120
15184       rcu_sched-8     (    8) [000] d..2 29471.650524: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15185  kworker/u16:10-23868 (23868) [000] .... 29471.650604: clk_set_rate: l3_cluster0_vote_clk 1305600000
15186  kworker/u16:10-23868 (23868) [000] .... 29471.650609: clk_set_rate: l3_clk 1305600000
15187          atrace-13704 (13704) [001] d..3 29471.650655: sched_waking: comm=sh pid=13702 prio=120 target_cpu=000
15188          atrace-13704 (13704) [001] dn.4 29471.650683: sched_wakeup: comm=sh pid=13702 prio=120 target_cpu=001
15189          atrace-13704 (13704) [001] d..2 29471.650694: sched_switch: prev_comm=atrace prev_pid=13704 prev_prio=120 prev_state=R+ ==> next_comm=sh next_pid=13702 next_prio=120
15190  kworker/u16:10-23868 (23868) [000] d..2 29471.650770: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
15191         rcuop/0-10    (   10) [000] d..2 29471.650775: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15192         rcuop/0-10    (   10) [000] d..3 29471.650800: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
15193         rcuop/0-10    (   10) [000] d..2 29471.651079: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
15194         rcuos/2-30    (   30) [000] d..2 29471.651085: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15195         rcuos/2-30    (   30) [000] d..3 29471.651094: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15196         rcuos/2-30    (   30) [000] d..2 29471.651100: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
15197         rcuop/1-21    (   21) [000] d..2 29471.651148: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
15198       rcu_sched-8     (    8) [000] d..2 29471.651170: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13704 next_prio=120
15199          atrace-13704 (13704) [000] d..2 29471.651184: sched_switch: prev_comm=atrace prev_pid=13704 prev_prio=120 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
15200          <idle>-0     (-----) [000] d..1 29471.651197: cpu_idle: state=0 cpu_id=0
15201              sh-13702 (13702) [001] d..2 29471.651215: sched_waking: comm=shell svc 13702 pid=13703 prio=120 target_cpu=002
15202              sh-13702 (13702) [001] d..3 29471.651232: sched_wakeup: comm=shell svc 13702 pid=13703 prio=120 target_cpu=001
15203              sh-13702 (13702) [001] d..2 29471.652092: sched_switch: prev_comm=sh prev_pid=13702 prev_prio=120 prev_state=x ==> next_comm=shell svc 13702 next_pid=13703 next_prio=120
15204 shell svc 13702-13703 ( 1007) [001] d..2 29471.652128: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
15205 shell svc 13702-13703 ( 1007) [001] d..3 29471.652136: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
15206 shell svc 13702-13703 ( 1007) [001] d..2 29471.652452: sched_switch: prev_comm=shell svc 13702 prev_pid=13703 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=1007 next_prio=120
15207            adbd-1007  ( 1007) [001] d..1 29471.652535: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
15208            adbd-1007  ( 1007) [001] d..2 29471.652561: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15209            adbd-1007  ( 1007) [001] d..2 29471.652631: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
15210            adbd-23485 ( 1007) [001] d..2 29471.652704: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15211          <idle>-0     (-----) [000] d.h3 29471.652713: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15212          <idle>-0     (-----) [001] d..1 29471.652718: cpu_idle: state=0 cpu_id=1
15213          <idle>-0     (-----) [000] dnh4 29471.652723: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15214          <idle>-0     (-----) [000] .n.1 29471.652730: cpu_idle: state=4294967295 cpu_id=0
15215          <idle>-0     (-----) [000] d..2 29471.652738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
15216   kworker/u17:1-18284 (18284) [000] d..2 29471.652752: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15217   kworker/u17:1-18284 (18284) [000] d..3 29471.652759: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15218   kworker/u17:1-18284 (18284) [000] d..2 29471.652777: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15219     kworker/0:0-13450 (13450) [000] d..2 29471.652785: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
15220     kworker/0:0-13450 (13450) [000] d..3 29471.652795: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15221          <idle>-0     (-----) [001] .n.1 29471.652799: cpu_idle: state=4294967295 cpu_id=1
15222          <idle>-0     (-----) [001] d..2 29471.652807: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15223     kworker/0:0-13450 (13450) [000] d..2 29471.652810: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15224          <idle>-0     (-----) [000] d..1 29471.652817: cpu_idle: state=0 cpu_id=0
15225            adbd-23485 ( 1007) [001] d..2 29471.652858: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15226          <idle>-0     (-----) [001] d..1 29471.652864: cpu_idle: state=0 cpu_id=1
15227          <idle>-0     (-----) [000] d.h3 29471.652872: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15228          <idle>-0     (-----) [000] dnh4 29471.652878: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15229          <idle>-0     (-----) [000] .n.1 29471.652883: cpu_idle: state=4294967295 cpu_id=0
15230          <idle>-0     (-----) [000] d..2 29471.652889: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
15231   kworker/u17:1-18284 (18284) [000] d..2 29471.652897: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15232   kworker/u17:1-18284 (18284) [000] d..3 29471.652903: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15233   kworker/u17:1-18284 (18284) [000] d..2 29471.652920: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15234     kworker/0:0-13450 (13450) [000] d..2 29471.652926: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
15235     kworker/0:0-13450 (13450) [000] d..3 29471.652934: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15236          <idle>-0     (-----) [001] .n.1 29471.652939: cpu_idle: state=4294967295 cpu_id=1
15237          <idle>-0     (-----) [001] d..2 29471.652946: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15238     kworker/0:0-13450 (13450) [000] d..2 29471.652949: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15239          <idle>-0     (-----) [000] d..1 29471.652955: cpu_idle: state=0 cpu_id=0
15240            adbd-23485 ( 1007) [001] d..2 29471.652998: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15241          <idle>-0     (-----) [001] d..1 29471.653004: cpu_idle: state=0 cpu_id=1
15242          <idle>-0     (-----) [000] d.h3 29471.653023: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15243          <idle>-0     (-----) [000] dnh4 29471.653029: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15244          <idle>-0     (-----) [000] .n.1 29471.653034: cpu_idle: state=4294967295 cpu_id=0
15245          <idle>-0     (-----) [000] d..2 29471.653040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
15246   kworker/u17:1-18284 (18284) [000] d..2 29471.653048: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15247   kworker/u17:1-18284 (18284) [000] d..3 29471.653053: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15248   kworker/u17:1-18284 (18284) [000] d..2 29471.653071: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15249     kworker/0:0-13450 (13450) [000] d.h4 29471.653086: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15250     kworker/0:0-13450 (13450) [000] dnh5 29471.653094: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15251     kworker/0:0-13450 (13450) [000] d..2 29471.653102: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
15252   kworker/u17:1-18284 (18284) [000] d..2 29471.653126: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15253     kworker/0:0-13450 (13450) [000] d..2 29471.653132: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
15254     kworker/0:0-13450 (13450) [000] d..3 29471.653142: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15255          <idle>-0     (-----) [001] .n.1 29471.653146: cpu_idle: state=4294967295 cpu_id=1
15256          <idle>-0     (-----) [001] d..2 29471.653153: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15257     kworker/0:0-13450 (13450) [000] d..2 29471.653155: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
15258            adbd-23485 ( 1007) [001] d..2 29471.653170: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15259          <idle>-0     (-----) [001] d..1 29471.653176: cpu_idle: state=0 cpu_id=1
15260     kworker/0:0-13450 (13450) [000] d..3 29471.653178: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
15261     kworker/0:0-13450 (13450) [000] d..2 29471.653191: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
15262            adbd-23484 ( 1007) [000] d..2 29471.653210: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
15263            adbd-23484 ( 1007) [000] d..3 29471.653220: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
15264            adbd-23484 ( 1007) [000] d..2 29471.653278: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
15265            adbd-1007  ( 1007) [000] d.h4 29471.653296: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15266            adbd-1007  ( 1007) [000] dnh5 29471.653305: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15267            adbd-1007  ( 1007) [000] d..2 29471.653313: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
15268   kworker/u17:1-18284 (18284) [000] d..2 29471.653320: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15269   kworker/u17:1-18284 (18284) [000] d..3 29471.653326: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15270   kworker/u17:1-18284 (18284) [000] d..2 29471.653343: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15271     kworker/0:0-13450 (13450) [000] d..2 29471.653349: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
15272     kworker/0:0-13450 (13450) [000] d..3 29471.653357: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
15273     kworker/0:0-13450 (13450) [000] d..2 29471.653365: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
15274            adbd-23484 ( 1007) [000] d..2 29471.653416: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
15275            adbd-1007  ( 1007) [000] d..1 29471.653457: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
15276            adbd-1007  ( 1007) [000] d..2 29471.653468: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15277          <idle>-0     (-----) [001] .n.1 29471.653473: cpu_idle: state=4294967295 cpu_id=1
15278          <idle>-0     (-----) [001] d..2 29471.653479: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15279            adbd-1007  ( 1007) [000] d..2 29471.653506: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15280          <idle>-0     (-----) [000] d..1 29471.653514: cpu_idle: state=0 cpu_id=0
15281          <idle>-0     (-----) [003] ...1 29471.653517: cpu_idle: state=4294967295 cpu_id=3
15282          <idle>-0     (-----) [003] d..1 29471.653522: cpu_idle: state=2 cpu_id=3
15283            adbd-23485 ( 1007) [001] d..2 29471.653527: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15284          <idle>-0     (-----) [001] d..1 29471.653533: cpu_idle: state=0 cpu_id=1
15285          <idle>-0     (-----) [000] d.h3 29471.653540: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15286          <idle>-0     (-----) [000] dnh4 29471.653546: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
15287          <idle>-0     (-----) [000] .n.1 29471.653552: cpu_idle: state=4294967295 cpu_id=0
15288          <idle>-0     (-----) [000] d..2 29471.653559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
15289   kworker/u17:1-18284 (18284) [000] d..2 29471.653570: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15290   kworker/u17:1-18284 (18284) [000] d..3 29471.653576: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15291   kworker/u17:1-18284 (18284) [000] d..2 29471.653592: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15292     kworker/0:0-13450 (13450) [000] d..2 29471.653598: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
15293     kworker/0:0-13450 (13450) [000] d..3 29471.653607: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
15294          <idle>-0     (-----) [001] .n.1 29471.653612: cpu_idle: state=4294967295 cpu_id=1
15295          <idle>-0     (-----) [001] d..2 29471.653618: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
15296     kworker/0:0-13450 (13450) [000] d..2 29471.653622: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15297          <idle>-0     (-----) [000] d..1 29471.653628: cpu_idle: state=0 cpu_id=0
15298            adbd-23485 ( 1007) [001] d..2 29471.653633: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15299          <idle>-0     (-----) [001] d..1 29471.653639: cpu_idle: state=0 cpu_id=1
15300          <idle>-0     (-----) [001] d.s2 29471.657076: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15301          <idle>-0     (-----) [000] d.s2 29471.657077: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15302          <idle>-0     (-----) [000] dns3 29471.657140: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15303          <idle>-0     (-----) [001] dns3 29471.657141: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15304          <idle>-0     (-----) [000] .n.1 29471.657148: cpu_idle: state=4294967295 cpu_id=0
15305          <idle>-0     (-----) [001] .n.1 29471.657153: cpu_idle: state=4294967295 cpu_id=1
15306          <idle>-0     (-----) [000] d..2 29471.657155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
15307          <idle>-0     (-----) [001] d..2 29471.657160: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15308<...>-143 ( 143) [002] d.H3 29471.657165: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15309       rcu_sched-8     (    8) [000] d..2 29471.657176: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15310     rcu_preempt-7     (    7) [001] d..2 29471.657178: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15311          <idle>-0     (-----) [000] d..1 29471.657183: cpu_idle: state=0 cpu_id=0
15312          <idle>-0     (-----) [001] d..1 29471.657185: cpu_idle: state=0 cpu_id=1
15313<...>-143 ( 143) [002] d.H3 29471.657189: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15314<...>-143 ( 143) [002] d.H4 29471.657215: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15315          <idle>-0     (-----) [000] .n.1 29471.657218: cpu_idle: state=4294967295 cpu_id=0
15316<...>-143 ( 143) [002] d.s3 29471.657220: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15317          <idle>-0     (-----) [000] d..2 29471.657228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15318<...>-143 ( 143) [002] d.s4 29471.657233: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15319         sugov:0-559   (  559) [000] .... 29471.657263: clk_set_rate: pwrcl_clk 1766400000
15320         sugov:0-559   (  559) [000] d..2 29471.657357: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15321  kworker/u16:10-23868 (23868) [000] d..2 29471.657389: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
15322          <idle>-0     (-----) [000] d..1 29471.657396: cpu_idle: state=0 cpu_id=0
15323          <idle>-0     (-----) [003] d.s3 29471.657719: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15324          <idle>-0     (-----) [003] d.s4 29471.657732: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15325          <idle>-0     (-----) [000] .n.1 29471.657737: cpu_idle: state=4294967295 cpu_id=0
15326          <idle>-0     (-----) [003] ...1 29471.657741: cpu_idle: state=4294967295 cpu_id=3
15327          <idle>-0     (-----) [000] d..2 29471.657743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15328          <idle>-0     (-----) [003] d..1 29471.657747: cpu_idle: state=0 cpu_id=3
15329         sugov:0-559   (  559) [000] .... 29471.657755: clk_set_rate: cpu3_pwrcl_clk 1612800000
15330         sugov:0-559   (  559) [000] .... 29471.657765: clk_set_rate: cpu2_pwrcl_clk 1612800000
15331         sugov:0-559   (  559) [000] .... 29471.657771: clk_set_rate: cpu1_pwrcl_clk 1612800000
15332         sugov:0-559   (  559) [000] .... 29471.657778: clk_set_rate: cpu0_pwrcl_clk 1766400000
15333         sugov:0-559   (  559) [000] d..1 29471.657785: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15334         sugov:0-559   (  559) [000] d..2 29471.657794: sched_blocked_reason: pid=23868 iowait=0 caller=clk_get_rate+0x214/0x218
15335         sugov:0-559   (  559) [000] d..2 29471.657799: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15336         sugov:0-559   (  559) [000] .... 29471.657803: cpu_frequency: state=1766400 cpu_id=0
15337          <idle>-0     (-----) [006] dnh2 29471.657982: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15338          <idle>-0     (-----) [006] .n.1 29471.657990: cpu_idle: state=4294967295 cpu_id=6
15339         sugov:0-559   (  559) [000] d..2 29471.657997: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15340          <idle>-0     (-----) [006] d..2 29471.658001: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15341  kworker/u16:10-23868 (23868) [000] d..2 29471.658015: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15342          <idle>-0     (-----) [000] d..1 29471.658022: cpu_idle: state=0 cpu_id=0
15343         sugov:4-560   (  560) [006] d..2 29471.658025: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
15344          <idle>-0     (-----) [003] d.s3 29471.658029: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15345          <idle>-0     (-----) [006] d..1 29471.658037: cpu_idle: state=2 cpu_id=6
15346          <idle>-0     (-----) [003] d.s4 29471.658038: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15347          <idle>-0     (-----) [000] .n.1 29471.658043: cpu_idle: state=4294967295 cpu_id=0
15348          <idle>-0     (-----) [003] ...1 29471.658044: cpu_idle: state=4294967295 cpu_id=3
15349          <idle>-0     (-----) [003] d..1 29471.658047: cpu_idle: state=0 cpu_id=3
15350          <idle>-0     (-----) [000] d..2 29471.658049: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15351         sugov:0-559   (  559) [000] .... 29471.658059: cpu_frequency: state=1766400 cpu_id=1
15352         sugov:0-559   (  559) [000] .... 29471.658062: cpu_frequency: state=1766400 cpu_id=2
15353         sugov:0-559   (  559) [000] .... 29471.658065: cpu_frequency: state=1766400 cpu_id=3
15354         sugov:0-559   (  559) [000] d..2 29471.658078: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15355          <idle>-0     (-----) [000] d..1 29471.658083: cpu_idle: state=0 cpu_id=0
15356<...>-143 ( 143) [002] d.s2 29471.660409: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15357<...>-143 ( 143) [002] d.s3 29471.660423: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15358          <idle>-0     (-----) [000] .n.1 29471.660427: cpu_idle: state=4294967295 cpu_id=0
15359          <idle>-0     (-----) [000] d..2 29471.660434: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15360  kworker/u16:10-23868 (23868) [000] d..2 29471.660538: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15361          <idle>-0     (-----) [000] d..1 29471.660542: cpu_idle: state=0 cpu_id=0
15362<...>-143 ( 143) [002] d..2 29471.660648: sched_switch: prev_comm=kswapd0 prev_pid=143 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15363          <idle>-0     (-----) [002] d..1 29471.660669: cpu_idle: state=0 cpu_id=2
15364          <idle>-0     (-----) [000] d.s2 29471.663739: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
15365          <idle>-0     (-----) [001] d.s2 29471.663740: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15366          <idle>-0     (-----) [000] dns3 29471.663748: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
15367          <idle>-0     (-----) [001] dns3 29471.663749: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15368          <idle>-0     (-----) [001] .n.1 29471.663754: cpu_idle: state=4294967295 cpu_id=1
15369          <idle>-0     (-----) [000] .n.1 29471.663759: cpu_idle: state=4294967295 cpu_id=0
15370          <idle>-0     (-----) [001] d..2 29471.663760: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15371     rcu_preempt-7     (    7) [001] d..2 29471.663764: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15372          <idle>-0     (-----) [000] d..2 29471.663765: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
15373       rcu_sched-8     (    8) [000] d..2 29471.663769: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
15374       rcu_sched-8     (    8) [000] d..3 29471.663780: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
15375     rcu_preempt-7     (    7) [001] d..3 29471.663790: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
15376       rcu_sched-8     (    8) [000] d..2 29471.663796: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
15377     rcu_preempt-7     (    7) [001] d..2 29471.663814: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15378          <idle>-0     (-----) [001] d..1 29471.663822: cpu_idle: state=2 cpu_id=1
15379         rcuop/2-29    (   29) [000] d..2 29471.663917: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
15380         rcuos/2-30    (   30) [000] d..2 29471.663930: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15381          <idle>-0     (-----) [000] d..1 29471.663938: cpu_idle: state=0 cpu_id=0
15382          <idle>-0     (-----) [002] ...1 29471.666672: cpu_idle: state=4294967295 cpu_id=2
15383          <idle>-0     (-----) [002] d..1 29471.666675: cpu_idle: state=2 cpu_id=2
15384          <idle>-0     (-----) [001] d.s2 29471.670592: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15385          <idle>-0     (-----) [001] dns3 29471.670604: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15386          <idle>-0     (-----) [001] dns3 29471.670606: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15387          <idle>-0     (-----) [001] dns4 29471.670624: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15388          <idle>-0     (-----) [001] dns3 29471.670630: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15389          <idle>-0     (-----) [001] dns4 29471.670637: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15390          <idle>-0     (-----) [001] .n.1 29471.670644: cpu_idle: state=4294967295 cpu_id=1
15391          <idle>-0     (-----) [001] d..2 29471.670653: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15392     kworker/1:1-13678 (13678) [001] d..2 29471.670715: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15393     rcu_preempt-7     (    7) [001] d..2 29471.670721: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
15394     rcu_preempt-7     (    7) [001] d..3 29471.670740: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15395     rcu_preempt-7     (    7) [001] d..2 29471.670748: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
15396         rcuop/0-10    (   10) [001] d..2 29471.670756: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
15397         rcuop/0-10    (   10) [001] d..3 29471.670775: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15398         rcuop/0-10    (   10) [001] d..2 29471.670933: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
15399         rcuop/1-21    (   21) [001] d..2 29471.671032: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15400  kworker/u16:10-23868 (23868) [001] .... 29471.671063: clk_set_rate: l3_cluster0_vote_clk 300000000
15401  kworker/u16:10-23868 (23868) [001] .... 29471.671068: clk_set_rate: l3_clk 300000000
15402  kworker/u16:10-23868 (23868) [001] d..2 29471.671284: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
15403          <idle>-0     (-----) [001] d..1 29471.671299: cpu_idle: state=0 cpu_id=1
15404          <idle>-0     (-----) [003] d.s3 29471.671302: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15405          <idle>-0     (-----) [003] d.s4 29471.671313: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15406          <idle>-0     (-----) [003] d.s4 29471.671323: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15407          <idle>-0     (-----) [003] ...1 29471.671329: cpu_idle: state=4294967295 cpu_id=3
15408          <idle>-0     (-----) [001] .n.1 29471.671330: cpu_idle: state=4294967295 cpu_id=1
15409          <idle>-0     (-----) [003] d..1 29471.671334: cpu_idle: state=0 cpu_id=3
15410          <idle>-0     (-----) [001] d..2 29471.671340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15411  kworker/u16:10-23868 (23868) [001] d..2 29471.671380: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15412          <idle>-0     (-----) [001] d..1 29471.671388: cpu_idle: state=0 cpu_id=1
15413          <idle>-0     (-----) [001] d.H3 29471.677150: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15414          <idle>-0     (-----) [001] d.H3 29471.677165: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15415          <idle>-0     (-----) [001] d.H4 29471.677177: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15416          <idle>-0     (-----) [000] .n.1 29471.677183: cpu_idle: state=4294967295 cpu_id=0
15417          <idle>-0     (-----) [001] d.s2 29471.677184: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15418          <idle>-0     (-----) [000] d..2 29471.677194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15419          <idle>-0     (-----) [001] dns3 29471.677198: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15420          <idle>-0     (-----) [001] dns3 29471.677204: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15421         sugov:0-559   (  559) [000] d..2 29471.677221: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15422          <idle>-0     (-----) [000] d..1 29471.677229: cpu_idle: state=0 cpu_id=0
15423          <idle>-0     (-----) [001] dns4 29471.677235: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15424          <idle>-0     (-----) [000] .n.1 29471.677240: cpu_idle: state=4294967295 cpu_id=0
15425          <idle>-0     (-----) [000] d..2 29471.677248: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15426          <idle>-0     (-----) [001] .n.1 29471.677252: cpu_idle: state=4294967295 cpu_id=1
15427          <idle>-0     (-----) [001] d..2 29471.677264: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15428     rcu_preempt-7     (    7) [001] d..2 29471.677286: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15429          <idle>-0     (-----) [001] d..1 29471.677296: cpu_idle: state=2 cpu_id=1
15430          <idle>-0     (-----) [003] ...1 29471.677337: cpu_idle: state=4294967295 cpu_id=3
15431          <idle>-0     (-----) [003] d..1 29471.677340: cpu_idle: state=2 cpu_id=3
15432  kworker/u16:10-23868 (23868) [000] d..2 29471.677425: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
15433          <idle>-0     (-----) [000] d..1 29471.677437: cpu_idle: state=0 cpu_id=0
15434          <idle>-0     (-----) [003] d.s3 29471.677659: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15435          <idle>-0     (-----) [003] d.s4 29471.677692: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15436          <idle>-0     (-----) [003] dns4 29471.677699: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15437          <idle>-0     (-----) [003] .n.1 29471.677707: cpu_idle: state=4294967295 cpu_id=3
15438          <idle>-0     (-----) [003] d..2 29471.677725: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15439  kworker/u16:10-23868 (23868) [003] d..2 29471.677765: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15440          <idle>-0     (-----) [003] d..1 29471.677780: cpu_idle: state=0 cpu_id=3
15441          <idle>-0     (-----) [006] dnh2 29471.678030: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15442          <idle>-0     (-----) [006] .n.1 29471.678041: cpu_idle: state=4294967295 cpu_id=6
15443          <idle>-0     (-----) [006] d..2 29471.678054: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15444         sugov:4-560   (  560) [006] d..2 29471.678079: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
15445          <idle>-0     (-----) [006] d..1 29471.678091: cpu_idle: state=2 cpu_id=6
15446          <idle>-0     (-----) [003] d..2 29471.683785: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15447          <idle>-0     (-----) [003] dn.3 29471.683801: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15448          <idle>-0     (-----) [003] .n.1 29471.683804: cpu_idle: state=4294967295 cpu_id=3
15449          <idle>-0     (-----) [003] d..2 29471.683816: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
15450     ksoftirqd/3-34    (   34) [003] d.s2 29471.683833: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15451     ksoftirqd/3-34    (   34) [003] d.s3 29471.683848: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15452     ksoftirqd/3-34    (   34) [003] d..2 29471.683860: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15453          <idle>-0     (-----) [001] d.s2 29471.683963: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15454          <idle>-0     (-----) [001] dns3 29471.683984: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15455          <idle>-0     (-----) [001] .n.1 29471.683992: cpu_idle: state=4294967295 cpu_id=1
15456          <idle>-0     (-----) [001] d..2 29471.684004: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15457     rcu_preempt-7     (    7) [001] d..2 29471.684012: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
15458     rcu_preempt-7     (    7) [001] d..3 29471.684039: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15459     rcu_preempt-7     (    7) [001] d..2 29471.684049: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
15460  kworker/u16:10-23868 (23868) [003] d..2 29471.684102: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
15461          <idle>-0     (-----) [003] d..1 29471.684117: cpu_idle: state=2 cpu_id=3
15462          <idle>-0     (-----) [003] d.s3 29471.684676: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15463          <idle>-0     (-----) [003] d.s4 29471.684695: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15464          <idle>-0     (-----) [003] dns4 29471.684700: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15465          <idle>-0     (-----) [003] .n.1 29471.684708: cpu_idle: state=4294967295 cpu_id=3
15466          <idle>-0     (-----) [003] d..2 29471.684720: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15467  kworker/u16:10-23868 (23868) [003] d..2 29471.684751: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15468          <idle>-0     (-----) [003] d..1 29471.684763: cpu_idle: state=2 cpu_id=3
15469         rcuop/2-29    (   29) [001] d..2 29471.684908: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15470          <idle>-0     (-----) [001] d..1 29471.684926: cpu_idle: state=0 cpu_id=1
15471          <idle>-0     (-----) [001] d.s2 29471.690417: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15472          <idle>-0     (-----) [001] dns3 29471.690431: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15473          <idle>-0     (-----) [001] .n.1 29471.690439: cpu_idle: state=4294967295 cpu_id=1
15474          <idle>-0     (-----) [001] d..2 29471.690449: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15475     rcu_preempt-7     (    7) [001] d..2 29471.690458: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15476     rcu_preempt-7     (    7) [001] d..3 29471.690469: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15477     rcu_preempt-7     (    7) [001] d..2 29471.690477: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
15478         rcuop/0-10    (   10) [001] d..2 29471.690481: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15479         rcuop/0-10    (   10) [001] d..3 29471.690489: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15480         rcuop/0-10    (   10) [001] d..2 29471.690492: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15481         rcuop/0-10    (   10) [001] d..3 29471.690499: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15482         rcuop/0-10    (   10) [001] d..2 29471.690505: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15483     rcu_preempt-7     (    7) [001] d..2 29471.690514: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
15484         rcuop/1-21    (   21) [001] d..2 29471.690604: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15485          <idle>-0     (-----) [001] d..1 29471.690617: cpu_idle: state=2 cpu_id=1
15486          <idle>-0     (-----) [001] d.H3 29471.697350: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15487          <idle>-0     (-----) [001] d.H3 29471.697365: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15488          <idle>-0     (-----) [001] d.H4 29471.697377: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15489          <idle>-0     (-----) [000] .n.1 29471.697382: cpu_idle: state=4294967295 cpu_id=0
15490          <idle>-0     (-----) [001] d.s2 29471.697383: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15491          <idle>-0     (-----) [000] d..2 29471.697392: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15492          <idle>-0     (-----) [001] dns3 29471.697398: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15493          <idle>-0     (-----) [001] dns3 29471.697402: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15494         sugov:0-559   (  559) [000] .... 29471.697415: clk_set_rate: pwrcl_clk 652800000
15495          <idle>-0     (-----) [001] dns4 29471.697427: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15496          <idle>-0     (-----) [001] .n.1 29471.697446: cpu_idle: state=4294967295 cpu_id=1
15497          <idle>-0     (-----) [001] d..2 29471.697459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15498         sugov:0-559   (  559) [000] .... 29471.697481: clk_set_rate: cpu3_pwrcl_clk 1766400000
15499     rcu_preempt-7     (    7) [001] d..2 29471.697491: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15500         sugov:0-559   (  559) [000] .... 29471.697492: clk_set_rate: cpu2_pwrcl_clk 1766400000
15501         sugov:0-559   (  559) [000] .... 29471.697499: clk_set_rate: cpu1_pwrcl_clk 1766400000
15502          <idle>-0     (-----) [001] d..1 29471.697503: cpu_idle: state=2 cpu_id=1
15503         sugov:0-559   (  559) [000] .... 29471.697507: clk_set_rate: cpu0_pwrcl_clk 652800000
15504         sugov:0-559   (  559) [000] .... 29471.697675: cpu_frequency: state=652800 cpu_id=0
15505          <idle>-0     (-----) [003] ...1 29471.697768: cpu_idle: state=4294967295 cpu_id=3
15506          <idle>-0     (-----) [003] d..1 29471.697782: cpu_idle: state=2 cpu_id=3
15507         sugov:0-559   (  559) [000] d..2 29471.697868: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15508  kworker/u16:10-23868 (23868) [000] d..2 29471.697978: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15509          <idle>-0     (-----) [000] d..1 29471.697999: cpu_idle: state=0 cpu_id=0
15510          <idle>-0     (-----) [003] d.s3 29471.698147: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15511          <idle>-0     (-----) [003] d.s4 29471.698178: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15512          <idle>-0     (-----) [000] .n.1 29471.698186: cpu_idle: state=4294967295 cpu_id=0
15513          <idle>-0     (-----) [003] ...1 29471.698200: cpu_idle: state=4294967295 cpu_id=3
15514          <idle>-0     (-----) [000] d..2 29471.698201: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15515          <idle>-0     (-----) [006] dnh2 29471.698214: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15516          <idle>-0     (-----) [003] d..1 29471.698217: cpu_idle: state=0 cpu_id=3
15517         sugov:0-559   (  559) [000] .... 29471.698218: cpu_frequency: state=652800 cpu_id=1
15518          <idle>-0     (-----) [006] .n.1 29471.698224: cpu_idle: state=4294967295 cpu_id=6
15519         sugov:0-559   (  559) [000] .... 29471.698228: cpu_frequency: state=652800 cpu_id=2
15520         sugov:0-559   (  559) [000] .... 29471.698233: cpu_frequency: state=652800 cpu_id=3
15521          <idle>-0     (-----) [006] d..2 29471.698238: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15522         sugov:4-560   (  560) [006] d..2 29471.698264: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
15523         sugov:0-559   (  559) [000] d..2 29471.698274: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15524          <idle>-0     (-----) [006] d..1 29471.698276: cpu_idle: state=2 cpu_id=6
15525          <idle>-0     (-----) [000] d..1 29471.698289: cpu_idle: state=0 cpu_id=0
15526          <idle>-0     (-----) [001] d.s2 29471.704005: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15527          <idle>-0     (-----) [001] dns3 29471.704038: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15528          <idle>-0     (-----) [001] .n.1 29471.704051: cpu_idle: state=4294967295 cpu_id=1
15529          <idle>-0     (-----) [001] d..2 29471.704071: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15530     rcu_preempt-7     (    7) [001] d..2 29471.704083: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15531     rcu_preempt-7     (    7) [001] d..3 29471.704106: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15532     rcu_preempt-7     (    7) [001] d..2 29471.704121: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
15533         rcuop/0-10    (   10) [001] d..2 29471.704127: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15534         rcuop/0-10    (   10) [001] d..3 29471.704144: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15535         rcuop/0-10    (   10) [001] d..2 29471.704148: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15536         rcuop/0-10    (   10) [001] d..3 29471.704163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15537         rcuop/0-10    (   10) [001] d..2 29471.704174: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15538     rcu_preempt-7     (    7) [001] d..2 29471.704192: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
15539          <idle>-0     (-----) [003] ...1 29471.704229: cpu_idle: state=4294967295 cpu_id=3
15540          <idle>-0     (-----) [003] d..1 29471.704236: cpu_idle: state=2 cpu_id=3
15541         rcuop/1-21    (   21) [001] d..2 29471.704244: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15542          <idle>-0     (-----) [001] d..1 29471.704266: cpu_idle: state=2 cpu_id=1
15543          <idle>-0     (-----) [001] d.s2 29471.710673: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15544          <idle>-0     (-----) [001] dns3 29471.710705: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15545          <idle>-0     (-----) [001] dns3 29471.710715: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15546          <idle>-0     (-----) [001] dns4 29471.710759: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15547          <idle>-0     (-----) [001] .n.1 29471.710778: cpu_idle: state=4294967295 cpu_id=1
15548          <idle>-0     (-----) [001] d..2 29471.710798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15549     rcu_preempt-7     (    7) [001] d..2 29471.710814: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15550     rcu_preempt-7     (    7) [001] d..3 29471.710833: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15551     rcu_preempt-7     (    7) [001] d..2 29471.710848: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
15552         rcuop/0-10    (   10) [001] d..2 29471.710854: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15553         rcuop/0-10    (   10) [001] d..3 29471.710871: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
15554         rcuop/0-10    (   10) [001] d..2 29471.710882: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
15555         rcuop/1-21    (   21) [001] d..2 29471.710944: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15556  kworker/u16:10-23868 (23868) [001] d..2 29471.711086: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15557          <idle>-0     (-----) [001] d..1 29471.711109: cpu_idle: state=2 cpu_id=1
15558          <idle>-0     (-----) [002] d.H3 29471.760767: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15559          <idle>-0     (-----) [002] d.H3 29471.760790: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15560          <idle>-0     (-----) [002] d.H4 29471.760810: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15561          <idle>-0     (-----) [000] .n.1 29471.760817: cpu_idle: state=4294967295 cpu_id=0
15562          <idle>-0     (-----) [002] d.s2 29471.760821: sched_waking: comm=kswapd0 pid=143 prio=120 target_cpu=002
15563          <idle>-0     (-----) [000] d..2 29471.760833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15564          <idle>-0     (-----) [002] dns3 29471.760848: sched_wakeup: comm=kswapd0 pid=143 prio=120 target_cpu=002
15565          <idle>-0     (-----) [002] dns3 29471.760857: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15566         sugov:0-559   (  559) [000] d..2 29471.760875: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15567          <idle>-0     (-----) [000] d..1 29471.760888: cpu_idle: state=0 cpu_id=0
15568          <idle>-0     (-----) [002] dns4 29471.760909: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15569          <idle>-0     (-----) [000] .n.1 29471.760915: cpu_idle: state=4294967295 cpu_id=0
15570          <idle>-0     (-----) [002] dns3 29471.760928: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15571          <idle>-0     (-----) [000] d..2 29471.760930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15572          <idle>-0     (-----) [002] dns4 29471.760947: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15573          <idle>-0     (-----) [002] .n.1 29471.760976: cpu_idle: state=4294967295 cpu_id=2
15574          <idle>-0     (-----) [002] d..2 29471.761003: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15575     kworker/2:2-13636 (13636) [002] d..2 29471.761078: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=143 next_prio=120
15576<...>-143 ( 143) [002] d..2 29471.761117: sched_switch: prev_comm=kswapd0 prev_pid=143 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15577          <idle>-0     (-----) [002] d..1 29471.761140: cpu_idle: state=0 cpu_id=2
15578  kworker/u16:10-23868 (23868) [000] d..2 29471.761259: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
15579          <idle>-0     (-----) [000] d..1 29471.761283: cpu_idle: state=0 cpu_id=0
15580          <idle>-0     (-----) [003] d.s3 29471.761509: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15581          <idle>-0     (-----) [003] d.s4 29471.761532: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15582          <idle>-0     (-----) [003] d.s4 29471.761546: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15583          <idle>-0     (-----) [000] .n.1 29471.761553: cpu_idle: state=4294967295 cpu_id=0
15584          <idle>-0     (-----) [003] ...1 29471.761566: cpu_idle: state=4294967295 cpu_id=3
15585          <idle>-0     (-----) [000] d..2 29471.761570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15586          <idle>-0     (-----) [003] d..1 29471.761581: cpu_idle: state=0 cpu_id=3
15587          <idle>-0     (-----) [006] dnh2 29471.761655: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15588          <idle>-0     (-----) [006] .n.1 29471.761664: cpu_idle: state=4294967295 cpu_id=6
15589          <idle>-0     (-----) [006] d..2 29471.761676: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15590         sugov:4-560   (  560) [006] d..2 29471.761699: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
15591          <idle>-0     (-----) [006] d..1 29471.761710: cpu_idle: state=2 cpu_id=6
15592  kworker/u16:10-23868 (23868) [000] d..2 29471.761784: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
15593          <idle>-0     (-----) [000] d..1 29471.761803: cpu_idle: state=0 cpu_id=0
15594          <idle>-0     (-----) [003] d.s3 29471.761805: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15595          <idle>-0     (-----) [003] d.s4 29471.761818: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15596          <idle>-0     (-----) [003] d.s4 29471.761829: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15597          <idle>-0     (-----) [000] .n.1 29471.761836: cpu_idle: state=4294967295 cpu_id=0
15598          <idle>-0     (-----) [003] ...1 29471.761843: cpu_idle: state=4294967295 cpu_id=3
15599          <idle>-0     (-----) [003] d..1 29471.761851: cpu_idle: state=0 cpu_id=3
15600          <idle>-0     (-----) [000] d..2 29471.761852: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15601  kworker/u16:10-23868 (23868) [000] d..2 29471.761894: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15602          <idle>-0     (-----) [000] d..1 29471.761912: cpu_idle: state=0 cpu_id=0
15603          <idle>-0     (-----) [000] ...1 29471.763055: cpu_idle: state=4294967295 cpu_id=0
15604          <idle>-0     (-----) [000] d..1 29471.763061: cpu_idle: state=0 cpu_id=0
15605          <idle>-0     (-----) [002] d..2 29471.767161: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15606          <idle>-0     (-----) [002] dn.3 29471.767193: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
15607          <idle>-0     (-----) [002] .n.1 29471.767203: cpu_idle: state=4294967295 cpu_id=2
15608          <idle>-0     (-----) [002] d..2 29471.767224: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
15609     ksoftirqd/2-26    (   26) [002] d..2 29471.767290: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15610          <idle>-0     (-----) [002] d..1 29471.767305: cpu_idle: state=2 cpu_id=2
15611          <idle>-0     (-----) [005] d..2 29472.020989: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
15612          <idle>-0     (-----) [005] dn.3 29472.021015: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
15613          <idle>-0     (-----) [005] dnH3 29472.021077: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15614          <idle>-0     (-----) [005] dnH4 29472.021093: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15615          <idle>-0     (-----) [005] dnH3 29472.021099: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15616          <idle>-0     (-----) [005] dns3 29472.021121: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15617          <idle>-0     (-----) [000] dnh2 29472.021126: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15618          <idle>-0     (-----) [000] .n.1 29472.021140: cpu_idle: state=4294967295 cpu_id=0
15619          <idle>-0     (-----) [005] dns3 29472.021151: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
15620          <idle>-0     (-----) [000] dnh2 29472.021161: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15621          <idle>-0     (-----) [005] dns4 29472.021167: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
15622          <idle>-0     (-----) [000] d..2 29472.021174: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15623          <idle>-0     (-----) [005] .n.1 29472.021180: cpu_idle: state=4294967295 cpu_id=5
15624         sugov:0-559   (  559) [000] d..2 29472.021194: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15625          <idle>-0     (-----) [005] d..2 29472.021198: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
15626     ksoftirqd/5-50    (   50) [005] d..2 29472.021218: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
15627     kworker/5:0-24254 (24254) [005] d..2 29472.021311: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
15628          <idle>-0     (-----) [005] d..1 29472.021349: cpu_idle: state=2 cpu_id=5
15629          <idle>-0     (-----) [006] .n.1 29472.021656: cpu_idle: state=4294967295 cpu_id=6
15630          <idle>-0     (-----) [006] d..2 29472.021673: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15631         sugov:4-560   (  560) [006] d..2 29472.021698: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
15632          <idle>-0     (-----) [006] d..1 29472.021710: cpu_idle: state=2 cpu_id=6
15633          <idle>-0     (-----) [005] ...1 29472.022292: cpu_idle: state=4294967295 cpu_id=5
15634          <idle>-0     (-----) [005] d..1 29472.022301: cpu_idle: state=2 cpu_id=5
15635  kworker/u16:10-23868 (23868) [000] d..2 29472.022525: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
15636          <idle>-0     (-----) [003] d.s3 29472.022541: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15637          <idle>-0     (-----) [000] d..1 29472.022546: cpu_idle: state=0 cpu_id=0
15638          <idle>-0     (-----) [003] d.s4 29472.022591: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15639          <idle>-0     (-----) [003] dns4 29472.022598: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15640          <idle>-0     (-----) [003] .n.1 29472.022609: cpu_idle: state=4294967295 cpu_id=3
15641          <idle>-0     (-----) [003] d..2 29472.022629: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15642  kworker/u16:10-23868 (23868) [003] d..2 29472.022908: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
15643          <idle>-0     (-----) [003] d.s4 29472.022961: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15644          <idle>-0     (-----) [003] d.s5 29472.022974: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15645          <idle>-0     (-----) [003] dns5 29472.022982: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15646          <idle>-0     (-----) [003] d..2 29472.022997: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15647  kworker/u16:10-23868 (23868) [003] d..2 29472.023033: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15648          <idle>-0     (-----) [003] d..1 29472.023060: cpu_idle: state=0 cpu_id=3
15649          <idle>-0     (-----) [003] d..2 29472.029074: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15650          <idle>-0     (-----) [003] dn.3 29472.029093: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15651          <idle>-0     (-----) [003] .n.1 29472.029099: cpu_idle: state=4294967295 cpu_id=3
15652          <idle>-0     (-----) [003] d..2 29472.029120: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
15653     ksoftirqd/3-34    (   34) [003] d..2 29472.029163: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15654          <idle>-0     (-----) [003] d..1 29472.029178: cpu_idle: state=2 cpu_id=3
15655          <idle>-0     (-----) [003] d.h2 29472.201247: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
15656          <idle>-0     (-----) [003] dnh3 29472.201297: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
15657          <idle>-0     (-----) [003] dnh3 29472.201397: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15658          <idle>-0     (-----) [003] dnh3 29472.201418: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15659          <idle>-0     (-----) [003] dnh4 29472.201436: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15660          <idle>-0     (-----) [000] .n.1 29472.201446: cpu_idle: state=4294967295 cpu_id=0
15661          <idle>-0     (-----) [003] .n.1 29472.201449: cpu_idle: state=4294967295 cpu_id=3
15662          <idle>-0     (-----) [000] d..2 29472.201464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15663          <idle>-0     (-----) [003] d..2 29472.201475: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
15664         sugov:0-559   (  559) [000] d..2 29472.201511: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15665          <idle>-0     (-----) [000] d..2 29472.201519: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15666          <idle>-0     (-----) [000] dn.3 29472.201547: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15667          <idle>-0     (-----) [000] d..2 29472.201563: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
15668     ksoftirqd/0-3     (    3) [000] d.s2 29472.201594: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
15669     ksoftirqd/0-3     (    3) [000] d.s3 29472.201652: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15670     ksoftirqd/0-3     (    3) [000] d.s2 29472.201668: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15671     ksoftirqd/0-3     (    3) [000] d.s3 29472.201684: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15672     ksoftirqd/0-3     (    3) [000] d..2 29472.201710: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15673 bluetooth@1.0-s-24508 (  759) [003] d..2 29472.201745: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15674          <idle>-0     (-----) [003] d..1 29472.201770: cpu_idle: state=0 cpu_id=3
15675     kworker/0:0-13450 (13450) [000] d..2 29472.201776: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15676  kworker/u16:10-23868 (23868) [000] d..2 29472.201987: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15677          <idle>-0     (-----) [000] d..1 29472.202011: cpu_idle: state=0 cpu_id=0
15678          <idle>-0     (-----) [006] dnh2 29472.202467: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15679          <idle>-0     (-----) [006] .n.1 29472.202478: cpu_idle: state=4294967295 cpu_id=6
15680          <idle>-0     (-----) [006] d..2 29472.202492: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15681         sugov:4-560   (  560) [006] d..2 29472.202517: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
15682          <idle>-0     (-----) [006] d..1 29472.202530: cpu_idle: state=2 cpu_id=6
15683          <idle>-0     (-----) [003] d..2 29472.207786: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15684          <idle>-0     (-----) [003] dn.3 29472.207804: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15685          <idle>-0     (-----) [003] .n.1 29472.207810: cpu_idle: state=4294967295 cpu_id=3
15686          <idle>-0     (-----) [003] d..2 29472.207828: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
15687     ksoftirqd/3-34    (   34) [003] d..2 29472.207872: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15688          <idle>-0     (-----) [003] d..1 29472.207889: cpu_idle: state=2 cpu_id=3
15689          <idle>-0     (-----) [007] d.H3 29472.478277: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15690          <idle>-0     (-----) [007] d.H4 29472.478298: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
15691          <idle>-0     (-----) [007] d.H3 29472.478304: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15692          <idle>-0     (-----) [000] dnh2 29472.478336: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15693          <idle>-0     (-----) [007] d.s3 29472.478343: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15694          <idle>-0     (-----) [000] .n.1 29472.478347: cpu_idle: state=4294967295 cpu_id=0
15695          <idle>-0     (-----) [000] d..2 29472.478364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15696         sugov:0-559   (  559) [000] d.h3 29472.478379: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15697          <idle>-0     (-----) [007] d.s3 29472.478380: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
15698          <idle>-0     (-----) [007] dns4 29472.478399: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
15699         sugov:0-559   (  559) [000] d..2 29472.478400: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15700          <idle>-0     (-----) [007] dns3 29472.478407: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
15701          <idle>-0     (-----) [007] dns3 29472.478424: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15702          <idle>-0     (-----) [007] dns3 29472.478433: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15703          <idle>-0     (-----) [007] dns2 29472.478454: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
15704          <idle>-0     (-----) [007] dns3 29472.478469: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
15705          <idle>-0     (-----) [007] .n.1 29472.478477: cpu_idle: state=4294967295 cpu_id=7
15706          <idle>-0     (-----) [007] d..2 29472.478494: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/7 next_pid=66 next_prio=120
15707<...>-66 ( 66) [007] d..2 29472.478525: sched_switch: prev_comm=ksoftirqd/7 prev_pid=66 prev_prio=120 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
15708     kworker/7:0-12892 (12892) [007] d..2 29472.478571: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15709     kworker/7:0-12892 (12892) [007] d..2 29472.478586: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
15710  kworker/u16:10-23868 (23868) [000] dnh1 29472.478596: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15711     kworker/7:0-12892 (12892) [007] d..3 29472.478603: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
15712     kworker/7:0-12892 (12892) [007] d..2 29472.478610: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
15713  kworker/u16:10-23868 (23868) [000] d..2 29472.478613: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15714     kworker/7:0-12892 (12892) [007] d..3 29472.478621: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
15715     kworker/0:0-13450 (13450) [000] d..2 29472.478644: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15716     kworker/7:0-12892 (12892) [007] d..2 29472.478658: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
15717          <idle>-0     (-----) [007] d..1 29472.478675: cpu_idle: state=2 cpu_id=7
15718          <idle>-0     (-----) [003] dnh2 29472.478780: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
15719  kworker/u16:10-23868 (23868) [000] d..2 29472.478810: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
15720          <idle>-0     (-----) [000] d..1 29472.478836: cpu_idle: state=0 cpu_id=0
15721          <idle>-0     (-----) [001] dnh2 29472.478851: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15722          <idle>-0     (-----) [003] dns3 29472.478854: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15723          <idle>-0     (-----) [001] .n.1 29472.478866: cpu_idle: state=4294967295 cpu_id=1
15724          <idle>-0     (-----) [001] d..2 29472.478889: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15725          <idle>-0     (-----) [002] dnh2 29472.478909: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15726          <idle>-0     (-----) [002] .n.1 29472.478932: cpu_idle: state=4294967295 cpu_id=2
15727          <idle>-0     (-----) [003] dns4 29472.478933: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
15728     kworker/1:1-13678 (13678) [001] d..2 29472.478939: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15729          <idle>-0     (-----) [003] dns4 29472.478941: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15730          <idle>-0     (-----) [002] d..2 29472.478955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15731          <idle>-0     (-----) [001] d..1 29472.478960: cpu_idle: state=2 cpu_id=1
15732          <idle>-0     (-----) [003] .n.1 29472.478969: cpu_idle: state=4294967295 cpu_id=3
15733     kworker/2:2-13636 (13636) [002] d..2 29472.478985: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15734          <idle>-0     (-----) [003] d..2 29472.478993: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
15735          <idle>-0     (-----) [006] .n.1 29472.479006: cpu_idle: state=4294967295 cpu_id=6
15736          <idle>-0     (-----) [006] d..2 29472.479024: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15737         sugov:4-560   (  560) [006] d..2 29472.479040: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
15738     kworker/3:1-12662 (12662) [003] d..2 29472.479041: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15739  kworker/u16:10-23868 (23868) [002] d..2 29472.479044: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15740          <idle>-0     (-----) [003] d..1 29472.479062: cpu_idle: state=2 cpu_id=3
15741          <idle>-0     (-----) [002] d..1 29472.479065: cpu_idle: state=2 cpu_id=2
15742     kworker/6:0-21469 (21469) [006] d..2 29472.479075: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
15743          <idle>-0     (-----) [006] d..1 29472.479087: cpu_idle: state=2 cpu_id=6
15744          <idle>-0     (-----) [004] .n.1 29472.479415: cpu_idle: state=4294967295 cpu_id=4
15745          <idle>-0     (-----) [004] d..2 29472.479448: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
15746     kworker/4:0-24269 (24269) [004] d..2 29472.479495: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
15747          <idle>-0     (-----) [004] d..1 29472.479514: cpu_idle: state=2 cpu_id=4
15748          <idle>-0     (-----) [001] d.H3 29472.530859: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
15749          <idle>-0     (-----) [001] d.H3 29472.530894: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15750          <idle>-0     (-----) [001] d.H4 29472.530914: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15751          <idle>-0     (-----) [000] .n.1 29472.530922: cpu_idle: state=4294967295 cpu_id=0
15752          <idle>-0     (-----) [001] d.s3 29472.530931: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15753          <idle>-0     (-----) [000] d..2 29472.530941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15754          <idle>-0     (-----) [001] dns4 29472.530947: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15755          <idle>-0     (-----) [001] dns3 29472.530956: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15756         sugov:0-559   (  559) [000] d..2 29472.530991: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15757          <idle>-0     (-----) [001] dns4 29472.531004: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15758          <idle>-0     (-----) [000] d..2 29472.531014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15759          <idle>-0     (-----) [001] dns3 29472.531028: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
15760          <idle>-0     (-----) [001] dns4 29472.531089: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15761          <idle>-0     (-----) [001] .n.1 29472.531120: cpu_idle: state=4294967295 cpu_id=1
15762          <idle>-0     (-----) [001] d..2 29472.531160: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15763  kworker/u16:16-25995 (25995) [001] d..2 29472.531185: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15764  kworker/u16:10-23868 (23868) [000] d..2 29472.531295: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15765          <idle>-0     (-----) [000] d..1 29472.531315: cpu_idle: state=0 cpu_id=0
15766     kworker/1:1-13678 (13678) [001] d..2 29472.531423: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
15767          <idle>-0     (-----) [001] d..1 29472.531449: cpu_idle: state=2 cpu_id=1
15768          <idle>-0     (-----) [007] dnh2 29472.531941: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15769          <idle>-0     (-----) [007] .n.1 29472.531951: cpu_idle: state=4294967295 cpu_id=7
15770          <idle>-0     (-----) [007] d..2 29472.531965: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15771         sugov:4-560   (  560) [007] d..2 29472.531988: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
15772          <idle>-0     (-----) [007] d..1 29472.532001: cpu_idle: state=2 cpu_id=7
15773          <idle>-0     (-----) [000] d.h3 29472.532193: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15774          <idle>-0     (-----) [000] dnh4 29472.532212: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15775          <idle>-0     (-----) [000] .n.1 29472.532244: cpu_idle: state=4294967295 cpu_id=0
15776          <idle>-0     (-----) [000] d..2 29472.532260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15777     kworker/0:0-13450 (13450) [000] d..2 29472.532269: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15778     kworker/0:0-13450 (13450) [000] d..3 29472.532279: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
15779     kworker/0:0-13450 (13450) [000] d..3 29472.532289: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
15780     kworker/0:0-13450 (13450) [000] d..2 29472.532314: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15781          <idle>-0     (-----) [000] d..1 29472.532330: cpu_idle: state=0 cpu_id=0
15782          <idle>-0     (-----) [001] .n.1 29472.532603: cpu_idle: state=4294967295 cpu_id=1
15783          <idle>-0     (-----) [001] d..2 29472.532636: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
15784     kworker/1:1-13678 (13678) [001] d..2 29472.532829: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15785          <idle>-0     (-----) [001] d..1 29472.532854: cpu_idle: state=0 cpu_id=1
15786          <idle>-0     (-----) [001] d..2 29472.538880: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15787          <idle>-0     (-----) [001] dn.3 29472.538913: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15788          <idle>-0     (-----) [001] dnH3 29472.539010: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15789          <idle>-0     (-----) [001] dnH3 29472.539028: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15790          <idle>-0     (-----) [001] dnH4 29472.539047: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
15791          <idle>-0     (-----) [000] .n.1 29472.539056: cpu_idle: state=4294967295 cpu_id=0
15792          <idle>-0     (-----) [001] .n.1 29472.539065: cpu_idle: state=4294967295 cpu_id=1
15793          <idle>-0     (-----) [000] d..2 29472.539072: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15794          <idle>-0     (-----) [001] d..2 29472.539087: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
15795         sugov:0-559   (  559) [000] d..2 29472.539114: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15796          <idle>-0     (-----) [000] d..1 29472.539128: cpu_idle: state=0 cpu_id=0
15797     ksoftirqd/1-18    (   18) [001] d..2 29472.539140: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15798          <idle>-0     (-----) [001] d..1 29472.539157: cpu_idle: state=2 cpu_id=1
15799          <idle>-0     (-----) [007] dnh2 29472.540083: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15800          <idle>-0     (-----) [007] .n.1 29472.540093: cpu_idle: state=4294967295 cpu_id=7
15801          <idle>-0     (-----) [007] d..2 29472.540105: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15802         sugov:4-560   (  560) [007] d..2 29472.540128: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
15803          <idle>-0     (-----) [007] d..1 29472.540140: cpu_idle: state=2 cpu_id=7
15804          <idle>-0     (-----) [000] d.h2 29472.825895: sched_waking: comm=irq/742-wdog-ba pid=415 prio=49 target_cpu=003
15805          <idle>-0     (-----) [000] d.h3 29472.825940: sched_wakeup: comm=irq/742-wdog-ba pid=415 prio=49 target_cpu=003
15806          <idle>-0     (-----) [000] d..2 29472.825964: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15807          <idle>-0     (-----) [000] dn.3 29472.825979: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15808          <idle>-0     (-----) [000] dnH3 29472.826062: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15809          <idle>-0     (-----) [000] dnH3 29472.826080: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
15810          <idle>-0     (-----) [000] dnH4 29472.826103: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15811          <idle>-0     (-----) [000] dns3 29472.826118: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15812          <idle>-0     (-----) [000] dns4 29472.826165: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15813          <idle>-0     (-----) [000] dns3 29472.826174: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15814          <idle>-0     (-----) [000] dns4 29472.826187: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
15815          <idle>-0     (-----) [000] .n.1 29472.826204: cpu_idle: state=4294967295 cpu_id=0
15816          <idle>-0     (-----) [000] d..2 29472.826225: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
15817     ksoftirqd/0-3     (    3) [000] d..2 29472.826241: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
15818          <idle>-0     (-----) [003] .n.1 29472.826258: cpu_idle: state=4294967295 cpu_id=3
15819          <idle>-0     (-----) [003] d..2 29472.826292: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/742-wdog-ba next_pid=415 next_prio=49
15820     kworker/0:0-13450 (13450) [000] d..2 29472.826324: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15821          <idle>-0     (-----) [000] d..1 29472.826343: cpu_idle: state=0 cpu_id=0
15822          <idle>-0     (-----) [002] .n.1 29472.826424: cpu_idle: state=4294967295 cpu_id=2
15823          <idle>-0     (-----) [002] d..2 29472.826454: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15824         sugov:0-559   (  559) [002] d..2 29472.826483: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15825 irq/742-wdog-ba-415   (  415) [003] d..2 29472.826514: sched_switch: prev_comm=irq/742-wdog-ba prev_pid=415 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15826          <idle>-0     (-----) [003] d..1 29472.826532: cpu_idle: state=0 cpu_id=3
15827  kworker/u16:10-23868 (23868) [002] d..2 29472.826719: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15828          <idle>-0     (-----) [002] d..1 29472.826744: cpu_idle: state=2 cpu_id=2
15829          <idle>-0     (-----) [003] d.h3 29472.827083: sched_waking: comm=logd.klogd pid=573 prio=130 target_cpu=000
15830          <idle>-0     (-----) [007] dnh2 29472.827127: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15831          <idle>-0     (-----) [007] .n.1 29472.827137: cpu_idle: state=4294967295 cpu_id=7
15832          <idle>-0     (-----) [007] d..2 29472.827150: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15833          <idle>-0     (-----) [003] dnh4 29472.827155: sched_wakeup: comm=logd.klogd pid=573 prio=130 target_cpu=003
15834         sugov:4-560   (  560) [007] d..2 29472.827176: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
15835          <idle>-0     (-----) [007] d..1 29472.827188: cpu_idle: state=2 cpu_id=7
15836          <idle>-0     (-----) [003] .n.1 29472.827215: cpu_idle: state=4294967295 cpu_id=3
15837          <idle>-0     (-----) [003] d..2 29472.827229: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.klogd next_pid=573 next_prio=130
15838      logd.klogd-573   (  555) [003] d..2 29472.827853: sched_switch: prev_comm=logd.klogd prev_pid=573 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15839          <idle>-0     (-----) [003] d..1 29472.827877: cpu_idle: state=2 cpu_id=3
15840          <idle>-0     (-----) [005] d..2 29473.020858: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
15841          <idle>-0     (-----) [005] dn.3 29473.020873: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
15842          <idle>-0     (-----) [005] dnH3 29473.020933: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15843          <idle>-0     (-----) [005] dnH4 29473.020948: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15844          <idle>-0     (-----) [005] dnH3 29473.020951: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15845          <idle>-0     (-----) [005] dns3 29473.020968: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15846          <idle>-0     (-----) [005] dns3 29473.020996: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
15847          <idle>-0     (-----) [005] dns4 29473.021004: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
15848          <idle>-0     (-----) [005] .n.1 29473.021012: cpu_idle: state=4294967295 cpu_id=5
15849          <idle>-0     (-----) [005] d..2 29473.021025: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
15850     ksoftirqd/5-50    (   50) [005] d..2 29473.021035: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
15851     kworker/5:0-24254 (24254) [005] d..2 29473.021093: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
15852          <idle>-0     (-----) [005] d..1 29473.021104: cpu_idle: state=2 cpu_id=5
15853          <idle>-0     (-----) [002] dnh2 29473.021304: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15854          <idle>-0     (-----) [002] dnh2 29473.021315: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15855          <idle>-0     (-----) [002] .n.1 29473.021327: cpu_idle: state=4294967295 cpu_id=2
15856          <idle>-0     (-----) [002] d..2 29473.021346: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15857         sugov:0-559   (  559) [002] d..2 29473.021366: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15858          <idle>-0     (-----) [007] .n.1 29473.021516: cpu_idle: state=4294967295 cpu_id=7
15859          <idle>-0     (-----) [007] d..2 29473.021534: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15860         sugov:4-560   (  560) [007] d..2 29473.021556: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
15861          <idle>-0     (-----) [007] d..1 29473.021569: cpu_idle: state=2 cpu_id=7
15862  kworker/u16:10-23868 (23868) [002] d..2 29473.021594: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15863          <idle>-0     (-----) [002] d..1 29473.021618: cpu_idle: state=2 cpu_id=2
15864          <idle>-0     (-----) [000] d.h2 29473.032385: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
15865          <idle>-0     (-----) [000] dnh3 29473.032433: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
15866          <idle>-0     (-----) [000] .n.1 29473.032451: cpu_idle: state=4294967295 cpu_id=0
15867          <idle>-0     (-----) [000] d..2 29473.032470: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
15868<...>-25015 ( 24655) [000] d..2 29473.032858: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15869          <idle>-0     (-----) [000] d..2 29473.032870: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15870          <idle>-0     (-----) [000] dn.3 29473.032884: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15871          <idle>-0     (-----) [000] d..2 29473.032897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
15872     ksoftirqd/0-3     (    3) [000] d.s2 29473.032910: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15873     ksoftirqd/0-3     (    3) [000] d.s3 29473.032960: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15874     ksoftirqd/0-3     (    3) [000] d..2 29473.032980: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15875  kworker/u16:10-23868 (23868) [000] d..2 29473.033091: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15876          <idle>-0     (-----) [000] d..1 29473.033111: cpu_idle: state=0 cpu_id=0
15877          <idle>-0     (-----) [000] d.h2 29473.033603: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
15878          <idle>-0     (-----) [000] dnh3 29473.033647: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
15879          <idle>-0     (-----) [000] .n.1 29473.033666: cpu_idle: state=4294967295 cpu_id=0
15880          <idle>-0     (-----) [000] d..2 29473.033688: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
15881<...>-24367 ( 24151) [000] d..2 29473.033997: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15882          <idle>-0     (-----) [000] d..1 29473.034021: cpu_idle: state=0 cpu_id=0
15883          <idle>-0     (-----) [002] d.H3 29473.117547: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
15884          <idle>-0     (-----) [002] d.H3 29473.117571: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
15885          <idle>-0     (-----) [002] dnH4 29473.117589: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
15886          <idle>-0     (-----) [002] dns3 29473.117607: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
15887          <idle>-0     (-----) [002] dns4 29473.117663: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15888          <idle>-0     (-----) [002] dns3 29473.117684: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15889          <idle>-0     (-----) [002] dns4 29473.117698: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15890          <idle>-0     (-----) [002] .n.1 29473.117733: cpu_idle: state=4294967295 cpu_id=2
15891          <idle>-0     (-----) [002] d..2 29473.117755: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
15892         sugov:0-559   (  559) [002] d..2 29473.117777: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15893     kworker/2:2-13636 (13636) [002] d..2 29473.117817: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15894  kworker/u16:10-23868 (23868) [002] d..2 29473.117823: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
15895  kworker/u16:10-23868 (23868) [002] dn.3 29473.117873: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
15896  kworker/u16:10-23868 (23868) [002] d..2 29473.117884: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
15897  kworker/u16:16-25995 (25995) [002] d..2 29473.118102: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15898          <idle>-0     (-----) [007] dnh2 29473.118607: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
15899          <idle>-0     (-----) [007] .n.1 29473.118617: cpu_idle: state=4294967295 cpu_id=7
15900          <idle>-0     (-----) [007] d..2 29473.118629: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
15901         sugov:4-560   (  560) [007] d..2 29473.118656: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
15902          <idle>-0     (-----) [007] d..1 29473.118669: cpu_idle: state=2 cpu_id=7
15903  kworker/u16:10-23868 (23868) [002] d..4 29473.118865: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15904  kworker/u16:10-23868 (23868) [002] dn.5 29473.118888: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15905  kworker/u16:10-23868 (23868) [002] d..2 29473.119045: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15906     kworker/2:2-13636 (13636) [002] d..2 29473.119657: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15907  kworker/u16:10-23868 (23868) [002] d..2 29473.119703: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15908          <idle>-0     (-----) [002] d..1 29473.119729: cpu_idle: state=2 cpu_id=2
15909          <idle>-0     (-----) [003] d.s3 29473.120776: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15910          <idle>-0     (-----) [003] d.s4 29473.120792: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
15911          <idle>-0     (-----) [003] d.s4 29473.120805: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15912          <idle>-0     (-----) [003] d..2 29473.120815: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15913          <idle>-0     (-----) [003] dn.3 29473.120829: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
15914          <idle>-0     (-----) [003] .n.1 29473.120836: cpu_idle: state=4294967295 cpu_id=3
15915          <idle>-0     (-----) [003] d..2 29473.120859: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
15916     ksoftirqd/3-34    (   34) [003] d.s2 29473.120873: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
15917     ksoftirqd/3-34    (   34) [003] d.s3 29473.120888: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
15918     ksoftirqd/3-34    (   34) [003] d..2 29473.120903: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
15919     kworker/3:1-12662 (12662) [003] d..2 29473.120965: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15920          <idle>-0     (-----) [003] d..1 29473.120986: cpu_idle: state=2 cpu_id=3
15921          <idle>-0     (-----) [002] .n.1 29473.120998: cpu_idle: state=4294967295 cpu_id=2
15922          <idle>-0     (-----) [002] d..2 29473.121033: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15923     kworker/2:2-13636 (13636) [002] d..2 29473.121227: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15924          <idle>-0     (-----) [002] d..1 29473.121251: cpu_idle: state=0 cpu_id=2
15925          <idle>-0     (-----) [003] d.s3 29473.121432: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15926          <idle>-0     (-----) [003] d.s4 29473.121449: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
15927          <idle>-0     (-----) [003] d.s4 29473.121464: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15928          <idle>-0     (-----) [002] .n.1 29473.121472: cpu_idle: state=4294967295 cpu_id=2
15929          <idle>-0     (-----) [003] ...1 29473.121483: cpu_idle: state=4294967295 cpu_id=3
15930          <idle>-0     (-----) [002] d..2 29473.121488: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15931          <idle>-0     (-----) [003] d..1 29473.121498: cpu_idle: state=0 cpu_id=3
15932     kworker/2:2-13636 (13636) [002] d..1 29473.121531: clk_enable: gcc_ufs_phy_axi_clk_src
15933     kworker/2:2-13636 (13636) [002] d..1 29473.121559: clk_enable: gcc_ufs_phy_axi_clk
15934     kworker/2:2-13636 (13636) [002] d..1 29473.121577: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
15935     kworker/2:2-13636 (13636) [002] d..1 29473.121593: clk_enable: gcc_aggre_ufs_phy_axi_clk
15936     kworker/2:2-13636 (13636) [002] d..1 29473.121606: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
15937     kworker/2:2-13636 (13636) [002] d..1 29473.121621: clk_enable: gcc_ufs_phy_ahb_clk
15938     kworker/2:2-13636 (13636) [002] d..1 29473.121641: clk_enable: gcc_ufs_phy_unipro_core_clk_src
15939     kworker/2:2-13636 (13636) [002] d..1 29473.121652: clk_enable: gcc_ufs_phy_unipro_core_clk
15940     kworker/2:2-13636 (13636) [002] d..1 29473.121662: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
15941     kworker/2:2-13636 (13636) [002] d..1 29473.121679: clk_enable: gcc_ufs_phy_ice_core_clk_src
15942     kworker/2:2-13636 (13636) [002] d..1 29473.121687: clk_enable: gcc_ufs_phy_ice_core_clk
15943     kworker/2:2-13636 (13636) [002] d..1 29473.121700: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
15944     kworker/2:2-13636 (13636) [002] d..1 29473.121714: clk_enable: gcc_ufs_phy_tx_symbol_0_clk
15945     kworker/2:2-13636 (13636) [002] d..1 29473.122230: clk_enable: gcc_ufs_phy_rx_symbol_0_clk
15946     kworker/2:2-13636 (13636) [002] d..1 29473.122744: clk_enable: gcc_ufs_phy_rx_symbol_1_clk
15947     kworker/2:2-13636 (13636) [002] d..1 29473.123264: clk_enable: gcc_ufs_mem_clkref_clk
15948     kworker/2:2-13636 (13636) [002] d..1 29473.123280: clk_enable: gcc_ufs_phy_phy_aux_clk_src
15949     kworker/2:2-13636 (13636) [002] d..1 29473.123288: clk_enable: gcc_ufs_phy_phy_aux_clk
15950     kworker/2:2-13636 (13636) [002] d..1 29473.123298: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
15951     kworker/2:2-13636 (13636) [002] d..2 29473.123479: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15952          <idle>-0     (-----) [002] d..1 29473.123500: cpu_idle: state=0 cpu_id=2
15953          <idle>-0     (-----) [003] d.s3 29473.123568: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15954          <idle>-0     (-----) [003] d.s4 29473.123579: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
15955          <idle>-0     (-----) [003] d.s4 29473.123590: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15956          <idle>-0     (-----) [002] .n.1 29473.123598: cpu_idle: state=4294967295 cpu_id=2
15957          <idle>-0     (-----) [003] ...1 29473.123603: cpu_idle: state=4294967295 cpu_id=3
15958          <idle>-0     (-----) [003] d..1 29473.123610: cpu_idle: state=0 cpu_id=3
15959          <idle>-0     (-----) [002] d..2 29473.123613: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15960     kworker/2:2-13636 (13636) [002] d..2 29473.123720: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15961          <idle>-0     (-----) [003] d.s3 29473.123776: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15962          <idle>-0     (-----) [002] d..1 29473.123785: cpu_idle: state=0 cpu_id=2
15963          <idle>-0     (-----) [003] d.s4 29473.123786: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
15964          <idle>-0     (-----) [003] d.s4 29473.123796: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15965          <idle>-0     (-----) [002] .n.1 29473.123803: cpu_idle: state=4294967295 cpu_id=2
15966          <idle>-0     (-----) [003] ...1 29473.123808: cpu_idle: state=4294967295 cpu_id=3
15967          <idle>-0     (-----) [003] d..1 29473.123818: cpu_idle: state=0 cpu_id=3
15968          <idle>-0     (-----) [002] d..2 29473.123820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15969     kworker/2:2-13636 (13636) [002] d..2 29473.123935: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15970          <idle>-0     (-----) [002] d..1 29473.123953: cpu_idle: state=0 cpu_id=2
15971          <idle>-0     (-----) [003] d.s3 29473.124302: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15972          <idle>-0     (-----) [003] d.s4 29473.124313: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
15973          <idle>-0     (-----) [003] d.s4 29473.124324: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15974          <idle>-0     (-----) [002] .n.1 29473.124332: cpu_idle: state=4294967295 cpu_id=2
15975          <idle>-0     (-----) [003] ...1 29473.124336: cpu_idle: state=4294967295 cpu_id=3
15976          <idle>-0     (-----) [003] d..1 29473.124342: cpu_idle: state=0 cpu_id=3
15977          <idle>-0     (-----) [002] d..2 29473.124347: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15978     kworker/2:2-13636 (13636) [002] d..2 29473.124485: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15979          <idle>-0     (-----) [002] d..1 29473.124503: cpu_idle: state=0 cpu_id=2
15980          <idle>-0     (-----) [001] d.h4 29473.125088: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15981          <idle>-0     (-----) [001] d.h5 29473.125108: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
15982          <idle>-0     (-----) [001] d.h5 29473.125124: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15983          <idle>-0     (-----) [002] .n.1 29473.125130: cpu_idle: state=4294967295 cpu_id=2
15984          <idle>-0     (-----) [002] d..2 29473.125145: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
15985          <idle>-0     (-----) [001] ...1 29473.125151: cpu_idle: state=4294967295 cpu_id=1
15986          <idle>-0     (-----) [001] d..1 29473.125165: cpu_idle: state=0 cpu_id=1
15987     kworker/2:2-13636 (13636) [002] d..3 29473.125256: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15988     kworker/2:2-13636 (13636) [002] d..4 29473.125286: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15989     kworker/2:2-13636 (13636) [002] d..2 29473.125344: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
15990          <idle>-0     (-----) [001] ...1 29473.125407: cpu_idle: state=4294967295 cpu_id=1
15991          <idle>-0     (-----) [003] ...1 29473.125410: cpu_idle: state=4294967295 cpu_id=3
15992          <idle>-0     (-----) [003] d..1 29473.125415: cpu_idle: state=0 cpu_id=3
15993          <idle>-0     (-----) [001] d..1 29473.125415: cpu_idle: state=0 cpu_id=1
15994  kworker/u16:10-23868 (23868) [002] d..2 29473.125427: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15995          <idle>-0     (-----) [002] d..1 29473.125446: cpu_idle: state=0 cpu_id=2
15996          <idle>-0     (-----) [001] d.h4 29473.125719: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
15997          <idle>-0     (-----) [001] dnh5 29473.125773: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
15998          <idle>-0     (-----) [001] dns4 29473.125836: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
15999          <idle>-0     (-----) [001] dns5 29473.125846: sched_blocked_reason: pid=13636 iowait=1 caller=blk_execute_rq+0xc0/0x118
16000          <idle>-0     (-----) [001] dns5 29473.125856: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16001          <idle>-0     (-----) [002] .n.1 29473.125864: cpu_idle: state=4294967295 cpu_id=2
16002          <idle>-0     (-----) [002] d..2 29473.125880: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16003          <idle>-0     (-----) [001] .n.1 29473.125885: cpu_idle: state=4294967295 cpu_id=1
16004          <idle>-0     (-----) [001] d..2 29473.125905: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16005     kworker/2:2-13636 (13636) [002] d..2 29473.125943: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16006  kworker/u16:10-23868 (23868) [001] d.h3 29473.125950: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16007          <idle>-0     (-----) [002] d..1 29473.125958: cpu_idle: state=0 cpu_id=2
16008  kworker/u16:10-23868 (23868) [001] d.h4 29473.125961: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
16009  kworker/u16:10-23868 (23868) [001] d.h4 29473.125971: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16010          <idle>-0     (-----) [002] .n.1 29473.125978: cpu_idle: state=4294967295 cpu_id=2
16011          <idle>-0     (-----) [002] d..2 29473.125992: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16012  kworker/u16:10-23868 (23868) [001] d..2 29473.126015: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16013          <idle>-0     (-----) [001] d..1 29473.126034: cpu_idle: state=0 cpu_id=1
16014     kworker/2:2-13636 (13636) [002] d..3 29473.126093: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16015     kworker/2:2-13636 (13636) [002] d..4 29473.126118: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16016          <idle>-0     (-----) [001] .n.1 29473.126125: cpu_idle: state=4294967295 cpu_id=1
16017          <idle>-0     (-----) [001] d..2 29473.126140: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16018  kworker/u16:10-23868 (23868) [001] d..2 29473.126170: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16019          <idle>-0     (-----) [001] d..1 29473.126185: cpu_idle: state=0 cpu_id=1
16020     kworker/2:2-13636 (13636) [002] d..2 29473.126219: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16021          <idle>-0     (-----) [002] d..1 29473.126239: cpu_idle: state=0 cpu_id=2
16022          <idle>-0     (-----) [002] d..2 29473.127548: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16023          <idle>-0     (-----) [002] dn.3 29473.127565: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16024          <idle>-0     (-----) [002] .n.1 29473.127570: cpu_idle: state=4294967295 cpu_id=2
16025          <idle>-0     (-----) [002] d..2 29473.127589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16026     ksoftirqd/2-26    (   26) [002] d.s2 29473.127602: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16027     ksoftirqd/2-26    (   26) [002] d.s3 29473.127620: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16028          <idle>-0     (-----) [001] .n.1 29473.127641: cpu_idle: state=4294967295 cpu_id=1
16029          <idle>-0     (-----) [001] d..2 29473.127657: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16030     ksoftirqd/2-26    (   26) [002] d..2 29473.127663: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16031          <idle>-0     (-----) [002] d..1 29473.127679: cpu_idle: state=0 cpu_id=2
16032  kworker/u16:10-23868 (23868) [001] d..2 29473.127898: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
16033          <idle>-0     (-----) [001] d..1 29473.127917: cpu_idle: state=0 cpu_id=1
16034          <idle>-0     (-----) [003] d.s3 29473.127924: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16035          <idle>-0     (-----) [003] d.s4 29473.127971: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
16036          <idle>-0     (-----) [003] dns4 29473.127979: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
16037          <idle>-0     (-----) [003] .n.1 29473.127989: cpu_idle: state=4294967295 cpu_id=3
16038          <idle>-0     (-----) [003] d..2 29473.128007: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16039  kworker/u16:10-23868 (23868) [003] .... 29473.128068: clk_set_rate: l3_cluster0_vote_clk 403200000
16040  kworker/u16:10-23868 (23868) [003] .... 29473.128076: clk_set_rate: l3_clk 403200000
16041  kworker/u16:10-23868 (23868) [003] d..2 29473.128160: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16042          <idle>-0     (-----) [003] d..1 29473.128180: cpu_idle: state=0 cpu_id=3
16043          <idle>-0     (-----) [001] d.h4 29473.128750: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
16044          <idle>-0     (-----) [001] d.h5 29473.128773: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
16045          <idle>-0     (-----) [003] .n.1 29473.128780: cpu_idle: state=4294967295 cpu_id=3
16046          <idle>-0     (-----) [003] d..2 29473.128794: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16047  kworker/u16:10-23868 (23868) [003] d..2 29473.128827: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16048          <idle>-0     (-----) [003] d..1 29473.128842: cpu_idle: state=0 cpu_id=3
16049          <idle>-0     (-----) [001] d.s4 29473.128872: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
16050          <idle>-0     (-----) [001] dns5 29473.128894: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
16051          <idle>-0     (-----) [001] .n.1 29473.128919: cpu_idle: state=4294967295 cpu_id=1
16052          <idle>-0     (-----) [001] d..2 29473.128937: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
16053<...>-533 ( 533) [001] d..2 29473.128974: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16054          <idle>-0     (-----) [001] d..1 29473.128989: cpu_idle: state=0 cpu_id=1
16055          <idle>-0     (-----) [003] d..2 29473.130416: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16056          <idle>-0     (-----) [003] dn.3 29473.130429: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16057          <idle>-0     (-----) [003] .n.1 29473.130435: cpu_idle: state=4294967295 cpu_id=3
16058          <idle>-0     (-----) [003] d..2 29473.130450: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
16059     ksoftirqd/3-34    (   34) [003] d..2 29473.130488: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16060          <idle>-0     (-----) [003] d..1 29473.130501: cpu_idle: state=0 cpu_id=3
16061          <idle>-0     (-----) [003] d.H3 29473.137161: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16062          <idle>-0     (-----) [003] d.H3 29473.137179: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16063          <idle>-0     (-----) [003] d.H4 29473.137197: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16064          <idle>-0     (-----) [002] .n.1 29473.137204: cpu_idle: state=4294967295 cpu_id=2
16065          <idle>-0     (-----) [003] d.s3 29473.137208: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16066          <idle>-0     (-----) [002] d..2 29473.137219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16067          <idle>-0     (-----) [003] dns4 29473.137221: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16068          <idle>-0     (-----) [003] dns3 29473.137227: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
16069         sugov:0-559   (  559) [002] d..2 29473.137258: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16070          <idle>-0     (-----) [002] dn.1 29473.137274: cpu_idle: state=0 cpu_id=2
16071          <idle>-0     (-----) [003] dns4 29473.137277: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16072          <idle>-0     (-----) [002] .n.1 29473.137283: cpu_idle: state=4294967295 cpu_id=2
16073          <idle>-0     (-----) [002] d..2 29473.137297: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16074          <idle>-0     (-----) [003] .n.1 29473.137301: cpu_idle: state=4294967295 cpu_id=3
16075          <idle>-0     (-----) [003] d..2 29473.137318: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
16076          <idle>-0     (-----) [001] ...1 29473.137344: cpu_idle: state=4294967295 cpu_id=1
16077          <idle>-0     (-----) [001] d..1 29473.137351: cpu_idle: state=2 cpu_id=1
16078     kworker/3:1-12662 (12662) [003] d..2 29473.137360: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16079  kworker/u16:10-23868 (23868) [002] .... 29473.137410: clk_set_rate: l3_cluster0_vote_clk 300000000
16080          <idle>-0     (-----) [003] d..1 29473.137415: cpu_idle: state=2 cpu_id=3
16081  kworker/u16:10-23868 (23868) [002] .... 29473.137416: clk_set_rate: l3_clk 300000000
16082  kworker/u16:10-23868 (23868) [002] d..2 29473.137657: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16083          <idle>-0     (-----) [002] d..1 29473.137680: cpu_idle: state=0 cpu_id=2
16084          <idle>-0     (-----) [003] d.s3 29473.137875: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16085          <idle>-0     (-----) [003] d.s4 29473.137929: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
16086          <idle>-0     (-----) [003] dns4 29473.137939: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
16087          <idle>-0     (-----) [007] dnh2 29473.137942: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16088          <idle>-0     (-----) [003] .n.1 29473.137952: cpu_idle: state=4294967295 cpu_id=3
16089          <idle>-0     (-----) [007] .n.1 29473.137952: cpu_idle: state=4294967295 cpu_id=7
16090          <idle>-0     (-----) [007] d..2 29473.137964: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16091          <idle>-0     (-----) [003] d..2 29473.137973: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16092         sugov:4-560   (  560) [007] d..2 29473.137985: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16093          <idle>-0     (-----) [007] d..1 29473.137997: cpu_idle: state=2 cpu_id=7
16094  kworker/u16:10-23868 (23868) [003] d..2 29473.138054: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16095          <idle>-0     (-----) [003] d..1 29473.138079: cpu_idle: state=0 cpu_id=3
16096          <idle>-0     (-----) [002] ...1 29473.138963: cpu_idle: state=4294967295 cpu_id=2
16097          <idle>-0     (-----) [002] d..1 29473.138971: cpu_idle: state=2 cpu_id=2
16098          <idle>-0     (-----) [003] d..2 29473.144091: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16099          <idle>-0     (-----) [003] dn.3 29473.144109: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16100          <idle>-0     (-----) [003] .n.1 29473.144113: cpu_idle: state=4294967295 cpu_id=3
16101          <idle>-0     (-----) [003] d..2 29473.144131: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
16102     ksoftirqd/3-34    (   34) [003] d.s2 29473.144144: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16103     ksoftirqd/3-34    (   34) [003] d.s3 29473.144156: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
16104     ksoftirqd/3-34    (   34) [003] d..2 29473.144171: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
16105     kworker/3:1-12662 (12662) [003] d..2 29473.144229: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16106          <idle>-0     (-----) [003] d..1 29473.144244: cpu_idle: state=2 cpu_id=3
16107          <idle>-0     (-----) [001] d.h3 29473.178970: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
16108          <idle>-0     (-----) [001] dnh4 29473.179034: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16109          <idle>-0     (-----) [001] dnh3 29473.179124: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16110          <idle>-0     (-----) [001] dnh3 29473.179143: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16111          <idle>-0     (-----) [001] dnh4 29473.179160: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16112          <idle>-0     (-----) [001] .n.1 29473.179170: cpu_idle: state=4294967295 cpu_id=1
16113          <idle>-0     (-----) [001] d..2 29473.179192: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16114  kworker/u16:10-23868 (23868) [001] d..1 29473.179226: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
16115  kworker/u16:10-23868 (23868) [001] d..1 29473.179238: clk_disable: gcc_ufs_phy_phy_aux_clk
16116  kworker/u16:10-23868 (23868) [001] d..1 29473.179250: clk_disable: gcc_ufs_phy_phy_aux_clk_src
16117  kworker/u16:10-23868 (23868) [001] d..1 29473.179265: clk_disable: gcc_ufs_mem_clkref_clk
16118  kworker/u16:10-23868 (23868) [001] d..1 29473.179281: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
16119  kworker/u16:10-23868 (23868) [001] d..1 29473.179287: clk_disable: gcc_ufs_phy_axi_clk
16120  kworker/u16:10-23868 (23868) [001] d..1 29473.179297: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
16121  kworker/u16:10-23868 (23868) [001] d..1 29473.179303: clk_disable: gcc_aggre_ufs_phy_axi_clk
16122  kworker/u16:10-23868 (23868) [001] d..1 29473.179312: clk_disable: gcc_ufs_phy_axi_clk_src
16123  kworker/u16:10-23868 (23868) [001] d..1 29473.179321: clk_disable: gcc_ufs_phy_ahb_clk
16124  kworker/u16:10-23868 (23868) [001] d..1 29473.179331: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
16125  kworker/u16:10-23868 (23868) [001] d..1 29473.179337: clk_disable: gcc_ufs_phy_unipro_core_clk
16126          <idle>-0     (-----) [002] .n.1 29473.179342: cpu_idle: state=4294967295 cpu_id=2
16127  kworker/u16:10-23868 (23868) [001] d..1 29473.179346: clk_disable: gcc_ufs_phy_unipro_core_clk_src
16128  kworker/u16:10-23868 (23868) [001] d..1 29473.179355: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
16129  kworker/u16:10-23868 (23868) [001] d..1 29473.179360: clk_disable: gcc_ufs_phy_ice_core_clk
16130  kworker/u16:10-23868 (23868) [001] d..1 29473.179369: clk_disable: gcc_ufs_phy_ice_core_clk_src
16131          <idle>-0     (-----) [002] d..2 29473.179373: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16132         sugov:0-559   (  559) [002] d..2 29473.179427: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16133          <idle>-0     (-----) [002] d..2 29473.179434: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16134          <idle>-0     (-----) [002] dn.3 29473.179454: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16135          <idle>-0     (-----) [002] d..2 29473.179465: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16136     ksoftirqd/2-26    (   26) [002] d.s2 29473.179479: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16137     ksoftirqd/2-26    (   26) [002] d.s3 29473.179503: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16138     ksoftirqd/2-26    (   26) [002] d..2 29473.179526: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16139          <idle>-0     (-----) [003] ...1 29473.179709: cpu_idle: state=4294967295 cpu_id=3
16140          <idle>-0     (-----) [003] d..1 29473.179725: cpu_idle: state=0 cpu_id=3
16141  kworker/u16:10-23868 (23868) [001] d..2 29473.179762: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
16142          <idle>-0     (-----) [003] d.s3 29473.179785: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16143          <idle>-0     (-----) [001] d..1 29473.179804: cpu_idle: state=2 cpu_id=1
16144          <idle>-0     (-----) [003] d.s4 29473.179804: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
16145          <idle>-0     (-----) [003] d.s4 29473.179818: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16146          <idle>-0     (-----) [003] ...1 29473.179835: cpu_idle: state=4294967295 cpu_id=3
16147          <idle>-0     (-----) [001] .n.1 29473.179836: cpu_idle: state=4294967295 cpu_id=1
16148          <idle>-0     (-----) [003] d..1 29473.179842: cpu_idle: state=0 cpu_id=3
16149          <idle>-0     (-----) [001] d..2 29473.179854: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16150  kworker/u16:10-23868 (23868) [001] d..2 29473.179899: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16151          <idle>-0     (-----) [001] d..1 29473.179916: cpu_idle: state=0 cpu_id=1
16152  kworker/u16:16-25995 (25995) [002] d..2 29473.179953: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16153          <idle>-0     (-----) [002] d..1 29473.179977: cpu_idle: state=2 cpu_id=2
16154          <idle>-0     (-----) [007] dnh2 29473.179985: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16155          <idle>-0     (-----) [007] .n.1 29473.179994: cpu_idle: state=4294967295 cpu_id=7
16156          <idle>-0     (-----) [007] d..2 29473.180006: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16157         sugov:4-560   (  560) [007] d..2 29473.180027: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16158          <idle>-0     (-----) [007] d..1 29473.180039: cpu_idle: state=2 cpu_id=7
16159          <idle>-0     (-----) [001] d..2 29473.185934: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16160          <idle>-0     (-----) [001] dn.3 29473.185954: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16161          <idle>-0     (-----) [001] .n.1 29473.185961: cpu_idle: state=4294967295 cpu_id=1
16162          <idle>-0     (-----) [001] d..2 29473.185980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
16163     ksoftirqd/1-18    (   18) [001] d..2 29473.186028: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16164          <idle>-0     (-----) [001] d..1 29473.186042: cpu_idle: state=2 cpu_id=1
16165          <idle>-0     (-----) [003] d.h2 29473.201661: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16166          <idle>-0     (-----) [003] dnh3 29473.201689: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16167          <idle>-0     (-----) [003] dnh3 29473.201817: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16168          <idle>-0     (-----) [003] dnh3 29473.201836: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16169          <idle>-0     (-----) [003] dnh4 29473.201852: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16170          <idle>-0     (-----) [003] .n.1 29473.201862: cpu_idle: state=4294967295 cpu_id=3
16171          <idle>-0     (-----) [003] d..2 29473.201880: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
16172 bluetooth@1.0-s-24508 (  759) [003] d..2 29473.201997: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16173          <idle>-0     (-----) [003] d..2 29473.202004: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16174          <idle>-0     (-----) [003] dn.3 29473.202019: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16175          <idle>-0     (-----) [003] d..2 29473.202032: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
16176     ksoftirqd/3-34    (   34) [003] d.s2 29473.202045: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16177     ksoftirqd/3-34    (   34) [003] d.s3 29473.202096: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16178     ksoftirqd/3-34    (   34) [003] d..2 29473.202119: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16179          <idle>-0     (-----) [002] .n.1 29473.202169: cpu_idle: state=4294967295 cpu_id=2
16180          <idle>-0     (-----) [002] d..2 29473.202198: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16181         sugov:0-559   (  559) [002] d..2 29473.202267: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16182          <idle>-0     (-----) [002] d..1 29473.202301: cpu_idle: state=2 cpu_id=2
16183  kworker/u16:16-25995 (25995) [003] d..2 29473.202328: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16184          <idle>-0     (-----) [003] d..1 29473.202353: cpu_idle: state=0 cpu_id=3
16185          <idle>-0     (-----) [007] dnh2 29473.202884: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16186          <idle>-0     (-----) [007] .n.1 29473.202893: cpu_idle: state=4294967295 cpu_id=7
16187          <idle>-0     (-----) [007] d..2 29473.202904: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16188         sugov:4-560   (  560) [007] d..2 29473.202926: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16189          <idle>-0     (-----) [007] d..1 29473.202939: cpu_idle: state=2 cpu_id=7
16190          <idle>-0     (-----) [003] d..2 29473.208367: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16191          <idle>-0     (-----) [003] dn.3 29473.208380: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16192          <idle>-0     (-----) [003] .n.1 29473.208385: cpu_idle: state=4294967295 cpu_id=3
16193          <idle>-0     (-----) [003] d..2 29473.208402: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
16194     ksoftirqd/3-34    (   34) [003] d..2 29473.208440: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16195          <idle>-0     (-----) [003] d..1 29473.208455: cpu_idle: state=2 cpu_id=3
16196          <idle>-0     (-----) [002] d.H3 29473.330866: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16197          <idle>-0     (-----) [002] d.H3 29473.330889: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16198          <idle>-0     (-----) [002] dnH4 29473.330905: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16199          <idle>-0     (-----) [002] dns3 29473.330926: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
16200          <idle>-0     (-----) [002] dns4 29473.330961: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
16201          <idle>-0     (-----) [002] dns3 29473.330973: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16202          <idle>-0     (-----) [002] dns4 29473.331028: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16203          <idle>-0     (-----) [002] dns3 29473.331040: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16204          <idle>-0     (-----) [002] dns4 29473.331053: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16205          <idle>-0     (-----) [002] dns3 29473.331072: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
16206          <idle>-0     (-----) [002] dns3 29473.331088: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
16207          <idle>-0     (-----) [002] dns3 29473.331103: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
16208          <idle>-0     (-----) [002] .n.1 29473.331138: cpu_idle: state=4294967295 cpu_id=2
16209          <idle>-0     (-----) [002] d..2 29473.331157: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16210         sugov:0-559   (  559) [002] d..2 29473.331176: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
16211    kworker/2:1H-850   (  850) [002] d..2 29473.331218: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16212  kworker/u16:16-25995 (25995) [002] d..2 29473.331431: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16213     kworker/2:2-13636 (13636) [002] d..2 29473.331489: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16214     kworker/2:2-13636 (13636) [002] d..3 29473.331510: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16215     kworker/2:2-13636 (13636) [002] d..2 29473.331557: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16216          <idle>-0     (-----) [002] d..1 29473.331581: cpu_idle: state=2 cpu_id=2
16217          <idle>-0     (-----) [001] .n.1 29473.331832: cpu_idle: state=4294967295 cpu_id=1
16218          <idle>-0     (-----) [001] d..2 29473.331861: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16219     kworker/1:1-13678 (13678) [001] d..2 29473.331911: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16220          <idle>-0     (-----) [001] d..1 29473.331932: cpu_idle: state=0 cpu_id=1
16221          <idle>-0     (-----) [004] dnh2 29473.332004: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
16222          <idle>-0     (-----) [004] .n.1 29473.332015: cpu_idle: state=4294967295 cpu_id=4
16223          <idle>-0     (-----) [004] d..2 29473.332032: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
16224          <idle>-0     (-----) [007] dnh2 29473.332058: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
16225     kworker/4:0-24269 (24269) [004] d..2 29473.332061: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16226          <idle>-0     (-----) [007] dnh2 29473.332064: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16227          <idle>-0     (-----) [007] .n.1 29473.332072: cpu_idle: state=4294967295 cpu_id=7
16228          <idle>-0     (-----) [004] d..1 29473.332074: cpu_idle: state=2 cpu_id=4
16229          <idle>-0     (-----) [007] d..2 29473.332084: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16230         sugov:4-560   (  560) [007] d..2 29473.332095: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
16231          <idle>-0     (-----) [006] dnh2 29473.332118: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
16232     kworker/7:0-12892 (12892) [007] d..2 29473.332122: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16233          <idle>-0     (-----) [006] .n.1 29473.332127: cpu_idle: state=4294967295 cpu_id=6
16234          <idle>-0     (-----) [007] d..1 29473.332133: cpu_idle: state=2 cpu_id=7
16235          <idle>-0     (-----) [006] d..2 29473.332141: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
16236     kworker/6:0-21469 (21469) [006] d..2 29473.332168: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
16237          <idle>-0     (-----) [006] d..1 29473.332179: cpu_idle: state=2 cpu_id=6
16238          <idle>-0     (-----) [001] d..2 29473.337956: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16239          <idle>-0     (-----) [001] dn.3 29473.337973: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16240          <idle>-0     (-----) [001] dnH3 29473.338061: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16241          <idle>-0     (-----) [001] dnH3 29473.338081: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16242          <idle>-0     (-----) [001] dnH4 29473.338099: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16243          <idle>-0     (-----) [001] .n.1 29473.338116: cpu_idle: state=4294967295 cpu_id=1
16244          <idle>-0     (-----) [001] d..2 29473.338137: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
16245     ksoftirqd/1-18    (   18) [001] d..2 29473.338174: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16246          <idle>-0     (-----) [001] d..1 29473.338191: cpu_idle: state=2 cpu_id=1
16247          <idle>-0     (-----) [002] .n.1 29473.338420: cpu_idle: state=4294967295 cpu_id=2
16248          <idle>-0     (-----) [002] d..2 29473.338447: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16249         sugov:0-559   (  559) [002] d..2 29473.338492: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16250          <idle>-0     (-----) [002] d..1 29473.338511: cpu_idle: state=2 cpu_id=2
16251          <idle>-0     (-----) [007] dnh2 29473.339128: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16252          <idle>-0     (-----) [007] .n.1 29473.339137: cpu_idle: state=4294967295 cpu_id=7
16253          <idle>-0     (-----) [007] d..2 29473.339149: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16254         sugov:4-560   (  560) [007] d..2 29473.339170: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16255          <idle>-0     (-----) [007] d..1 29473.339181: cpu_idle: state=2 cpu_id=7
16256          <idle>-0     (-----) [001] d.h2 29473.373275: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=001
16257          <idle>-0     (-----) [001] d.h3 29473.373342: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
16258          <idle>-0     (-----) [000] .n.1 29473.373352: cpu_idle: state=4294967295 cpu_id=0
16259          <idle>-0     (-----) [001] d..2 29473.373359: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16260          <idle>-0     (-----) [001] dn.3 29473.373374: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16261          <idle>-0     (-----) [000] d..2 29473.373375: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
16262          <idle>-0     (-----) [001] dnH3 29473.373466: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16263          <idle>-0     (-----) [001] dnH3 29473.373483: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16264          <idle>-0     (-----) [001] dnH4 29473.373501: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16265          <idle>-0     (-----) [001] dns3 29473.373517: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16266          <idle>-0     (-----) [001] dns4 29473.373564: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16267          <idle>-0     (-----) [001] dns3 29473.373575: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16268          <idle>-0     (-----) [001] dns4 29473.373595: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16269          <idle>-0     (-----) [001] .n.1 29473.373608: cpu_idle: state=4294967295 cpu_id=1
16270          <idle>-0     (-----) [001] d..2 29473.373634: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
16271     ksoftirqd/1-18    (   18) [001] d..2 29473.373649: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16272          <idle>-0     (-----) [002] .n.1 29473.373814: cpu_idle: state=4294967295 cpu_id=2
16273          <idle>-0     (-----) [002] d..2 29473.373844: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16274         sugov:0-559   (  559) [002] d..2 29473.373925: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16275          <idle>-0     (-----) [002] d..1 29473.373958: cpu_idle: state=2 cpu_id=2
16276  kworker/u16:16-25995 (25995) [001] d..2 29473.373997: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16277          <idle>-0     (-----) [001] d..1 29473.374026: cpu_idle: state=0 cpu_id=1
16278 PowerManagerSer-24006 (23968) [000] d..2 29473.374159: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16279     kworker/0:0-13450 (13450) [000] d..2 29473.374202: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16280          <idle>-0     (-----) [000] d..1 29473.374224: cpu_idle: state=0 cpu_id=0
16281          <idle>-0     (-----) [007] dnh2 29473.374532: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16282          <idle>-0     (-----) [007] .n.1 29473.374541: cpu_idle: state=4294967295 cpu_id=7
16283          <idle>-0     (-----) [007] d..2 29473.374553: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16284         sugov:4-560   (  560) [007] d..2 29473.374575: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16285          <idle>-0     (-----) [007] d..1 29473.374587: cpu_idle: state=2 cpu_id=7
16286          <idle>-0     (-----) [001] d..2 29473.380045: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16287          <idle>-0     (-----) [001] dn.3 29473.380062: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16288          <idle>-0     (-----) [001] dnH3 29473.380144: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16289          <idle>-0     (-----) [001] dnH3 29473.380162: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16290          <idle>-0     (-----) [001] dnH4 29473.380180: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16291          <idle>-0     (-----) [001] .n.1 29473.380196: cpu_idle: state=4294967295 cpu_id=1
16292          <idle>-0     (-----) [001] d..2 29473.380218: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
16293     ksoftirqd/1-18    (   18) [001] d..2 29473.380253: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16294          <idle>-0     (-----) [001] d..1 29473.380269: cpu_idle: state=2 cpu_id=1
16295          <idle>-0     (-----) [002] .n.1 29473.380499: cpu_idle: state=4294967295 cpu_id=2
16296          <idle>-0     (-----) [002] d..2 29473.380529: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16297         sugov:0-559   (  559) [002] d..2 29473.380580: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16298          <idle>-0     (-----) [002] d..2 29473.380586: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16299          <idle>-0     (-----) [002] dn.3 29473.380605: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16300          <idle>-0     (-----) [002] d..2 29473.380618: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16301     ksoftirqd/2-26    (   26) [002] d.s2 29473.380631: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16302     ksoftirqd/2-26    (   26) [002] d.s3 29473.380684: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16303     ksoftirqd/2-26    (   26) [002] d..2 29473.380705: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16304  kworker/u16:16-25995 (25995) [002] d..2 29473.380866: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16305          <idle>-0     (-----) [002] d..1 29473.380889: cpu_idle: state=2 cpu_id=2
16306          <idle>-0     (-----) [007] dnh2 29473.381209: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
16307          <idle>-0     (-----) [007] .n.1 29473.381218: cpu_idle: state=4294967295 cpu_id=7
16308          <idle>-0     (-----) [007] d..2 29473.381230: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16309         sugov:4-560   (  560) [007] d..2 29473.381251: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16310          <idle>-0     (-----) [007] d..1 29473.381262: cpu_idle: state=2 cpu_id=7
16311          <idle>-0     (-----) [002] d.H3 29473.544188: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
16312          <idle>-0     (-----) [002] d.H3 29473.544220: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16313          <idle>-0     (-----) [002] dnH4 29473.544236: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16314          <idle>-0     (-----) [002] dns3 29473.544251: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16315          <idle>-0     (-----) [002] dns4 29473.544268: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16316          <idle>-0     (-----) [002] dns3 29473.544275: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16317          <idle>-0     (-----) [002] dns4 29473.544298: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16318          <idle>-0     (-----) [002] .n.1 29473.544335: cpu_idle: state=4294967295 cpu_id=2
16319          <idle>-0     (-----) [002] d..2 29473.544353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16320         sugov:0-559   (  559) [002] d..2 29473.544373: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16321          <idle>-0     (-----) [001] d.s3 29473.544413: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16322          <idle>-0     (-----) [001] dns4 29473.544437: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16323          <idle>-0     (-----) [001] .n.1 29473.544468: cpu_idle: state=4294967295 cpu_id=1
16324          <idle>-0     (-----) [001] d..2 29473.544488: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16325  kworker/u16:16-25995 (25995) [002] d..2 29473.544582: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16326     kworker/1:1-13678 (13678) [001] d..2 29473.544604: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
16327          <idle>-0     (-----) [000] ...1 29473.544616: cpu_idle: state=4294967295 cpu_id=0
16328          <idle>-0     (-----) [000] d..1 29473.544626: cpu_idle: state=2 cpu_id=0
16329          <idle>-0     (-----) [001] d..1 29473.544628: cpu_idle: state=0 cpu_id=1
16330     kworker/2:2-13636 (13636) [002] d..2 29473.544684: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16331          <idle>-0     (-----) [002] d..1 29473.544707: cpu_idle: state=2 cpu_id=2
16332          <idle>-0     (-----) [004] dnh2 29473.545261: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16333          <idle>-0     (-----) [004] .n.1 29473.545270: cpu_idle: state=4294967295 cpu_id=4
16334          <idle>-0     (-----) [004] d..2 29473.545282: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16335         sugov:4-560   (  560) [004] d..2 29473.545302: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16336          <idle>-0     (-----) [004] d..1 29473.545313: cpu_idle: state=2 cpu_id=4
16337          <idle>-0     (-----) [000] d.h3 29473.545664: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16338          <idle>-0     (-----) [000] dnh4 29473.545691: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16339          <idle>-0     (-----) [000] .n.1 29473.545721: cpu_idle: state=4294967295 cpu_id=0
16340          <idle>-0     (-----) [000] d..2 29473.545746: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16341     kworker/0:0-13450 (13450) [000] d..2 29473.545756: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16342     kworker/0:0-13450 (13450) [000] d..3 29473.545769: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
16343     kworker/0:0-13450 (13450) [000] d..3 29473.545781: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16344          <idle>-0     (-----) [001] .n.1 29473.545791: cpu_idle: state=4294967295 cpu_id=1
16345          <idle>-0     (-----) [001] d..2 29473.545808: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16346     kworker/0:0-13450 (13450) [000] d..2 29473.545816: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16347          <idle>-0     (-----) [000] d..1 29473.545839: cpu_idle: state=0 cpu_id=0
16348     kworker/1:1-13678 (13678) [001] d..2 29473.545933: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16349          <idle>-0     (-----) [001] d..1 29473.545954: cpu_idle: state=0 cpu_id=1
16350          <idle>-0     (-----) [000] d..2 29473.551854: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16351          <idle>-0     (-----) [000] dn.3 29473.551870: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16352          <idle>-0     (-----) [000] .n.1 29473.551875: cpu_idle: state=4294967295 cpu_id=0
16353          <idle>-0     (-----) [000] d..2 29473.551894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16354     ksoftirqd/0-3     (    3) [000] d..2 29473.551940: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16355          <idle>-0     (-----) [000] d..1 29473.551954: cpu_idle: state=2 cpu_id=0
16356          <idle>-0     (-----) [001] ...1 29473.551968: cpu_idle: state=4294967295 cpu_id=1
16357          <idle>-0     (-----) [001] d..1 29473.551974: cpu_idle: state=2 cpu_id=1
16358          <idle>-0     (-----) [002] d.h2 29473.834868: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=002
16359          <idle>-0     (-----) [000] d..2 29473.835008: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16360          <idle>-0     (-----) [000] dn.3 29473.835145: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16361          <idle>-0     (-----) [002] d.h3 29473.835209: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
16362          <idle>-0     (-----) [000] dnh2 29473.835242: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
16363          <idle>-0     (-----) [000] dnh3 29473.835574: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
16364          <idle>-0     (-----) [002] d..2 29473.835646: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16365          <idle>-0     (-----) [000] dns3 29473.835649: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16366          <idle>-0     (-----) [002] dn.3 29473.835688: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16367          <idle>-0     (-----) [002] dnh3 29473.835715: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16368          <idle>-0     (-----) [000] dns4 29473.835783: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16369          <idle>-0     (-----) [002] dnh3 29473.835786: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16370          <idle>-0     (-----) [000] dns3 29473.835823: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16371          <idle>-0     (-----) [002] dnh4 29473.835831: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16372          <idle>-0     (-----) [000] dns4 29473.835851: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16373          <idle>-0     (-----) [002] dns3 29473.835865: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16374          <idle>-0     (-----) [000] .n.1 29473.835891: cpu_idle: state=4294967295 cpu_id=0
16375          <idle>-0     (-----) [002] dns4 29473.835895: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16376          <idle>-0     (-----) [002] .n.1 29473.835913: cpu_idle: state=4294967295 cpu_id=2
16377          <idle>-0     (-----) [001] .n.1 29473.835961: cpu_idle: state=4294967295 cpu_id=1
16378          <idle>-0     (-----) [002] d..2 29473.836013: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16379          <idle>-0     (-----) [000] d..2 29473.836020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
16380          <idle>-0     (-----) [001] d..2 29473.836028: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
16381         sugov:0-559   (  559) [002] d..2 29473.836100: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16382     ksoftirqd/2-26    (   26) [002] d..2 29473.836154: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16383  CCodecWatchdog-23520 (  884) [000] d..2 29473.836381: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16384     ksoftirqd/0-3     (    3) [000] d..2 29473.836419: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16385     kworker/2:2-13636 (13636) [002] d..2 29473.836443: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16386  CCodecWatchdog-24186 (23968) [001] d..2 29473.836486: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16387          <idle>-0     (-----) [001] d..1 29473.836564: cpu_idle: state=2 cpu_id=1
16388     kworker/0:0-13450 (13450) [000] d..2 29473.836608: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16389          <idle>-0     (-----) [000] d..1 29473.836643: cpu_idle: state=2 cpu_id=0
16390          <idle>-0     (-----) [004] dnh2 29473.836966: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16391          <idle>-0     (-----) [004] .n.1 29473.836983: cpu_idle: state=4294967295 cpu_id=4
16392          <idle>-0     (-----) [004] d..2 29473.837006: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16393         sugov:4-560   (  560) [004] d..2 29473.837050: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16394          <idle>-0     (-----) [004] d.h3 29473.837136: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16395          <idle>-0     (-----) [004] dnh4 29473.837146: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16396          <idle>-0     (-----) [004] dnh3 29473.837148: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16397          <idle>-0     (-----) [004] d..2 29473.837186: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16398         sugov:4-560   (  560) [004] d..2 29473.837202: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16399          <idle>-0     (-----) [004] d..1 29473.837220: cpu_idle: state=2 cpu_id=4
16400          <idle>-0     (-----) [003] dnh2 29473.837584: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16401          <idle>-0     (-----) [003] .n.1 29473.837607: cpu_idle: state=4294967295 cpu_id=3
16402          <idle>-0     (-----) [003] d..2 29473.837641: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16403         sugov:0-559   (  559) [003] d..2 29473.837699: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16404          <idle>-0     (-----) [003] d..1 29473.837727: cpu_idle: state=2 cpu_id=3
16405  kworker/u16:16-25995 (25995) [002] d..2 29473.837779: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16406          <idle>-0     (-----) [002] d..1 29473.837818: cpu_idle: state=2 cpu_id=2
16407          <idle>-0     (-----) [003] d.s3 29473.838318: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16408          <idle>-0     (-----) [003] d.s4 29473.838388: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
16409          <idle>-0     (-----) [003] dns4 29473.838407: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16410          <idle>-0     (-----) [003] .n.1 29473.838427: cpu_idle: state=4294967295 cpu_id=3
16411          <idle>-0     (-----) [003] d..2 29473.838448: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16412  kworker/u16:16-25995 (25995) [003] d..2 29473.838520: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16413          <idle>-0     (-----) [003] d..1 29473.838540: cpu_idle: state=2 cpu_id=3
16414          <idle>-0     (-----) [005] d..2 29474.024848: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
16415          <idle>-0     (-----) [005] dn.3 29474.024951: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
16416          <idle>-0     (-----) [005] dnH3 29474.025166: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16417          <idle>-0     (-----) [000] ...1 29474.025191: cpu_idle: state=4294967295 cpu_id=0
16418          <idle>-0     (-----) [005] dnH4 29474.025225: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16419          <idle>-0     (-----) [005] dnH3 29474.025232: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16420          <idle>-0     (-----) [000] d..1 29474.025270: cpu_idle: state=2 cpu_id=0
16421          <idle>-0     (-----) [005] dns3 29474.025294: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16422          <idle>-0     (-----) [005] dns3 29474.025369: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
16423          <idle>-0     (-----) [005] dns4 29474.025386: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
16424          <idle>-0     (-----) [005] .n.1 29474.025404: cpu_idle: state=4294967295 cpu_id=5
16425          <idle>-0     (-----) [005] d..2 29474.025473: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
16426     ksoftirqd/5-50    (   50) [005] d..2 29474.025515: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
16427          <idle>-0     (-----) [003] dnh2 29474.025696: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16428          <idle>-0     (-----) [003] dnh2 29474.025717: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16429          <idle>-0     (-----) [003] .n.1 29474.025734: cpu_idle: state=4294967295 cpu_id=3
16430     kworker/5:0-24254 (24254) [005] d..2 29474.025738: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
16431          <idle>-0     (-----) [005] d..1 29474.025765: cpu_idle: state=2 cpu_id=5
16432          <idle>-0     (-----) [003] d..2 29474.025774: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16433         sugov:0-559   (  559) [003] d..2 29474.025838: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16434          <idle>-0     (-----) [004] .n.1 29474.025848: cpu_idle: state=4294967295 cpu_id=4
16435          <idle>-0     (-----) [004] d..2 29474.025885: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16436         sugov:4-560   (  560) [004] d..2 29474.025944: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16437          <idle>-0     (-----) [004] d..1 29474.025988: cpu_idle: state=2 cpu_id=4
16438  kworker/u16:16-25995 (25995) [003] d.s1 29474.027292: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16439  kworker/u16:16-25995 (25995) [003] dns2 29474.027342: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16440  kworker/u16:16-25995 (25995) [003] d..2 29474.027363: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
16441     ksoftirqd/3-34    (   34) [003] d..2 29474.027469: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16442  kworker/u16:16-25995 (25995) [003] d..2 29474.027544: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16443          <idle>-0     (-----) [003] d..1 29474.027576: cpu_idle: state=2 cpu_id=3
16444          <idle>-0     (-----) [003] d.h2 29474.206759: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16445          <idle>-0     (-----) [000] d..2 29474.206906: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16446          <idle>-0     (-----) [003] dnh3 29474.207012: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16447          <idle>-0     (-----) [000] dn.3 29474.207024: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16448          <idle>-0     (-----) [000] .n.1 29474.207062: cpu_idle: state=4294967295 cpu_id=0
16449          <idle>-0     (-----) [000] d..2 29474.207383: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16450     ksoftirqd/0-3     (    3) [000] d.s2 29474.207482: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16451          <idle>-0     (-----) [003] dnh3 29474.207497: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16452          <idle>-0     (-----) [003] dnh3 29474.207541: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16453     ksoftirqd/0-3     (    3) [000] d.s3 29474.207603: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16454          <idle>-0     (-----) [003] dnh4 29474.207614: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16455          <idle>-0     (-----) [003] .n.1 29474.207631: cpu_idle: state=4294967295 cpu_id=3
16456     ksoftirqd/0-3     (    3) [000] d.s2 29474.207649: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16457          <idle>-0     (-----) [003] d..2 29474.207670: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
16458     ksoftirqd/0-3     (    3) [000] d.s3 29474.207695: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16459     ksoftirqd/0-3     (    3) [000] d..2 29474.207751: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16460 bluetooth@1.0-s-24508 (  759) [003] d..2 29474.207957: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16461          <idle>-0     (-----) [002] .n.1 29474.208000: cpu_idle: state=4294967295 cpu_id=2
16462          <idle>-0     (-----) [002] d..2 29474.208058: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16463     kworker/0:0-13450 (13450) [000] d..2 29474.208099: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16464         sugov:0-559   (  559) [002] d..2 29474.208158: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16465          <idle>-0     (-----) [000] d..1 29474.208182: cpu_idle: state=2 cpu_id=0
16466          <idle>-0     (-----) [002] d..1 29474.208192: cpu_idle: state=2 cpu_id=2
16467          <idle>-0     (-----) [004] dnh2 29474.208703: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16468          <idle>-0     (-----) [004] .n.1 29474.208720: cpu_idle: state=4294967295 cpu_id=4
16469          <idle>-0     (-----) [004] d..2 29474.208743: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16470         sugov:4-560   (  560) [004] d..2 29474.208786: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16471          <idle>-0     (-----) [004] d..1 29474.208808: cpu_idle: state=2 cpu_id=4
16472  kworker/u16:16-25995 (25995) [003] d..2 29474.209191: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16473          <idle>-0     (-----) [003] d..1 29474.209223: cpu_idle: state=2 cpu_id=3
16474          <idle>-0     (-----) [003] d.h2 29474.374453: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
16475          <idle>-0     (-----) [000] d..2 29474.374593: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16476          <idle>-0     (-----) [000] dn.3 29474.374727: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16477          <idle>-0     (-----) [003] dnh3 29474.374727: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
16478          <idle>-0     (-----) [000] .n.1 29474.374772: cpu_idle: state=4294967295 cpu_id=0
16479          <idle>-0     (-----) [003] dnh3 29474.375101: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16480          <idle>-0     (-----) [000] d..2 29474.375124: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16481          <idle>-0     (-----) [003] dnh3 29474.375177: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16482     ksoftirqd/0-3     (    3) [000] d.s2 29474.375219: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16483          <idle>-0     (-----) [003] dnh4 29474.375230: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16484          <idle>-0     (-----) [003] .n.1 29474.375247: cpu_idle: state=4294967295 cpu_id=3
16485          <idle>-0     (-----) [003] d..2 29474.375291: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
16486     ksoftirqd/0-3     (    3) [000] d.s3 29474.375380: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16487     ksoftirqd/0-3     (    3) [000] d.s2 29474.375421: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16488     ksoftirqd/0-3     (    3) [000] d.s3 29474.375464: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16489     ksoftirqd/0-3     (    3) [000] d.s2 29474.375494: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16490     ksoftirqd/0-3     (    3) [000] d.s3 29474.375533: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16491     ksoftirqd/0-3     (    3) [000] d..2 29474.375586: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16492          <idle>-0     (-----) [002] .n.1 29474.375611: cpu_idle: state=4294967295 cpu_id=2
16493          <idle>-0     (-----) [002] d..2 29474.375670: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16494         sugov:0-559   (  559) [002] d..2 29474.375747: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16495          <idle>-0     (-----) [001] .n.1 29474.375919: cpu_idle: state=4294967295 cpu_id=1
16496     kworker/0:0-13450 (13450) [000] d..2 29474.375978: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16497          <idle>-0     (-----) [001] d..2 29474.375980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16498 oid.setupwizard-24795 (24795) [003] d..2 29474.375995: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16499     kworker/1:1-13678 (13678) [001] d..2 29474.376066: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16500          <idle>-0     (-----) [000] d..1 29474.376074: cpu_idle: state=2 cpu_id=0
16501          <idle>-0     (-----) [003] d..1 29474.376074: cpu_idle: state=2 cpu_id=3
16502          <idle>-0     (-----) [001] d..1 29474.376095: cpu_idle: state=2 cpu_id=1
16503          <idle>-0     (-----) [004] dnh2 29474.376306: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16504          <idle>-0     (-----) [004] .n.1 29474.376323: cpu_idle: state=4294967295 cpu_id=4
16505          <idle>-0     (-----) [004] d..2 29474.376346: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16506         sugov:4-560   (  560) [004] d..2 29474.376391: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16507          <idle>-0     (-----) [004] d..1 29474.376413: cpu_idle: state=2 cpu_id=4
16508          <idle>-0     (-----) [000] ...1 29474.376948: cpu_idle: state=4294967295 cpu_id=0
16509          <idle>-0     (-----) [000] d..1 29474.376959: cpu_idle: state=2 cpu_id=0
16510  kworker/u16:16-25995 (25995) [002] d.H2 29474.377306: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16511  kworker/u16:16-25995 (25995) [002] d.H2 29474.377330: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16512  kworker/u16:16-25995 (25995) [002] d.H3 29474.377373: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16513          <idle>-0     (-----) [003] .n.1 29474.377682: cpu_idle: state=4294967295 cpu_id=3
16514          <idle>-0     (-----) [003] d..2 29474.377712: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16515  kworker/u16:16-25995 (25995) [002] d..2 29474.377767: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16516         sugov:0-559   (  559) [003] d..2 29474.377767: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16517          <idle>-0     (-----) [003] d..1 29474.377787: cpu_idle: state=2 cpu_id=3
16518          <idle>-0     (-----) [002] d..1 29474.377804: cpu_idle: state=2 cpu_id=2
16519          <idle>-0     (-----) [004] dnh2 29474.378380: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16520          <idle>-0     (-----) [004] .n.1 29474.378390: cpu_idle: state=4294967295 cpu_id=4
16521          <idle>-0     (-----) [004] d..2 29474.378402: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16522         sugov:4-560   (  560) [004] d..2 29474.378424: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16523          <idle>-0     (-----) [004] d..1 29474.378434: cpu_idle: state=2 cpu_id=4
16524          <idle>-0     (-----) [000] ...1 29474.402167: cpu_idle: state=4294967295 cpu_id=0
16525          <idle>-0     (-----) [000] d..1 29474.402270: cpu_idle: state=2 cpu_id=0
16526          <idle>-0     (-----) [001] d.H3 29474.402497: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16527          <idle>-0     (-----) [001] d.H3 29474.402630: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16528          <idle>-0     (-----) [001] d.H4 29474.402730: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16529          <idle>-0     (-----) [001] d.s3 29474.402780: sched_waking: comm=msm_watchdog pid=77 prio=0 target_cpu=001
16530          <idle>-0     (-----) [001] dns4 29474.402812: sched_wakeup: comm=msm_watchdog pid=77 prio=0 target_cpu=001
16531          <idle>-0     (-----) [001] dns3 29474.402857: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16532          <idle>-0     (-----) [001] dns4 29474.403106: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16533          <idle>-0     (-----) [003] .n.1 29474.403116: cpu_idle: state=4294967295 cpu_id=3
16534          <idle>-0     (-----) [001] .n.1 29474.403222: cpu_idle: state=4294967295 cpu_id=1
16535          <idle>-0     (-----) [003] d..2 29474.403225: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16536          <idle>-0     (-----) [001] d..2 29474.403255: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=msm_watchdog next_pid=77 next_prio=0
16537         sugov:0-559   (  559) [003] d..2 29474.403345: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16538    msm_watchdog-77    (   77) [001] d..2 29474.403486: sched_switch: prev_comm=msm_watchdog prev_pid=77 prev_prio=0 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16539          <idle>-0     (-----) [001] d..1 29474.403574: cpu_idle: state=2 cpu_id=1
16540          <idle>-0     (-----) [004] dnh2 29474.403760: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16541          <idle>-0     (-----) [004] .n.1 29474.403777: cpu_idle: state=4294967295 cpu_id=4
16542          <idle>-0     (-----) [004] d..2 29474.403801: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16543         sugov:4-560   (  560) [004] d..2 29474.403853: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16544          <idle>-0     (-----) [004] d..1 29474.403874: cpu_idle: state=2 cpu_id=4
16545  kworker/u16:16-25995 (25995) [003] d..2 29474.404110: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16546          <idle>-0     (-----) [003] d..1 29474.404140: cpu_idle: state=2 cpu_id=3
16547          <idle>-0     (-----) [000] ...1 29474.562074: cpu_idle: state=4294967295 cpu_id=0
16548          <idle>-0     (-----) [000] d..1 29474.562177: cpu_idle: state=2 cpu_id=0
16549          <idle>-0     (-----) [001] d.H3 29474.562382: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16550          <idle>-0     (-----) [001] d.H3 29474.562552: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16551          <idle>-0     (-----) [001] d.H4 29474.562639: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16552          <idle>-0     (-----) [001] d.s3 29474.562699: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16553          <idle>-0     (-----) [001] dns4 29474.562789: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16554          <idle>-0     (-----) [001] dns3 29474.562820: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16555          <idle>-0     (-----) [001] dns4 29474.562924: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16556          <idle>-0     (-----) [003] .n.1 29474.563031: cpu_idle: state=4294967295 cpu_id=3
16557          <idle>-0     (-----) [001] .n.1 29474.563069: cpu_idle: state=4294967295 cpu_id=1
16558          <idle>-0     (-----) [003] d..2 29474.563141: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16559          <idle>-0     (-----) [001] d..2 29474.563144: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16560         sugov:0-559   (  559) [003] d..2 29474.563348: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16561          <idle>-0     (-----) [003] d..1 29474.563386: cpu_idle: state=2 cpu_id=3
16562     kworker/1:1-13678 (13678) [001] d..3 29474.563464: sched_waking: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
16563     kworker/1:1-13678 (13678) [001] d..3 29474.563504: sched_wakeup: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
16564     kworker/1:1-13678 (13678) [001] d..2 29474.563519: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=kworker/1:2 next_pid=13650 next_prio=120
16565          <idle>-0     (-----) [005] dnh2 29474.563707: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
16566     kworker/1:2-13650 (13650) [001] d..2 29474.563724: sched_switch: prev_comm=kworker/1:2 prev_pid=13650 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16567          <idle>-0     (-----) [005] .n.1 29474.563725: cpu_idle: state=4294967295 cpu_id=5
16568          <idle>-0     (-----) [005] d..2 29474.563747: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16569         sugov:4-560   (  560) [005] d..2 29474.563803: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
16570          <idle>-0     (-----) [005] d..1 29474.563827: cpu_idle: state=2 cpu_id=5
16571  kworker/u16:16-25995 (25995) [001] d..2 29474.564459: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16572          <idle>-0     (-----) [001] d..1 29474.564489: cpu_idle: state=2 cpu_id=1
16573          <idle>-0     (-----) [000] d.h3 29474.564492: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16574          <idle>-0     (-----) [000] dnh4 29474.564532: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16575          <idle>-0     (-----) [000] .n.1 29474.564595: cpu_idle: state=4294967295 cpu_id=0
16576          <idle>-0     (-----) [000] d..2 29474.564635: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16577     kworker/0:0-13450 (13450) [000] d..2 29474.564664: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16578     kworker/0:0-13450 (13450) [000] d..3 29474.564684: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
16579     kworker/0:0-13450 (13450) [000] d..3 29474.564702: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16580     kworker/0:0-13450 (13450) [000] d..2 29474.564754: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16581          <idle>-0     (-----) [000] d..1 29474.564775: cpu_idle: state=2 cpu_id=0
16582          <idle>-0     (-----) [001] .n.1 29474.565016: cpu_idle: state=4294967295 cpu_id=1
16583          <idle>-0     (-----) [001] d..2 29474.565044: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16584     kworker/1:1-13678 (13678) [001] d..2 29474.565234: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16585          <idle>-0     (-----) [001] d..1 29474.565254: cpu_idle: state=2 cpu_id=1
16586          <idle>-0     (-----) [005] d..2 29475.024884: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
16587          <idle>-0     (-----) [005] dn.3 29475.024992: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
16588          <idle>-0     (-----) [005] dnH3 29475.025213: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
16589          <idle>-0     (-----) [000] ...1 29475.025240: cpu_idle: state=4294967295 cpu_id=0
16590          <idle>-0     (-----) [005] dnH4 29475.025299: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16591          <idle>-0     (-----) [005] dnH3 29475.025308: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16592          <idle>-0     (-----) [000] d..1 29475.025320: cpu_idle: state=2 cpu_id=0
16593          <idle>-0     (-----) [005] dns3 29475.025372: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16594          <idle>-0     (-----) [005] dns3 29475.025483: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
16595          <idle>-0     (-----) [005] dns4 29475.025503: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
16596          <idle>-0     (-----) [005] .n.1 29475.025521: cpu_idle: state=4294967295 cpu_id=5
16597          <idle>-0     (-----) [005] d..2 29475.025591: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
16598     ksoftirqd/5-50    (   50) [005] d..2 29475.025632: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
16599          <idle>-0     (-----) [003] dnh2 29475.025775: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16600          <idle>-0     (-----) [003] .n.1 29475.025800: cpu_idle: state=4294967295 cpu_id=3
16601          <idle>-0     (-----) [003] d..2 29475.025842: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16602     kworker/5:0-24254 (24254) [005] d..2 29475.025854: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
16603          <idle>-0     (-----) [005] d..1 29475.025881: cpu_idle: state=2 cpu_id=5
16604          <idle>-0     (-----) [004] .n.1 29475.025942: cpu_idle: state=4294967295 cpu_id=4
16605         sugov:0-559   (  559) [003] d..2 29475.025955: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16606          <idle>-0     (-----) [004] d..2 29475.025977: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16607          <idle>-0     (-----) [003] d..1 29475.025986: cpu_idle: state=2 cpu_id=3
16608         sugov:4-560   (  560) [004] d..2 29475.026022: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16609          <idle>-0     (-----) [001] dnh2 29475.026030: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16610          <idle>-0     (-----) [004] d..1 29475.026049: cpu_idle: state=2 cpu_id=4
16611          <idle>-0     (-----) [001] .n.1 29475.026060: cpu_idle: state=4294967295 cpu_id=1
16612          <idle>-0     (-----) [001] d..2 29475.026098: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16613  kworker/u16:16-25995 (25995) [001] d..2 29475.026837: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16614          <idle>-0     (-----) [001] d..1 29475.026869: cpu_idle: state=2 cpu_id=1
16615          <idle>-0     (-----) [000] d.h2 29475.077319: sched_waking: comm=wpa_supplicant pid=2697 prio=120 target_cpu=000
16616          <idle>-0     (-----) [000] dnh3 29475.077685: sched_wakeup: comm=wpa_supplicant pid=2697 prio=120 target_cpu=000
16617          <idle>-0     (-----) [000] dnh3 29475.078237: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16618          <idle>-0     (-----) [000] dnh3 29475.078324: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16619          <idle>-0     (-----) [000] dnh4 29475.078392: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16620          <idle>-0     (-----) [000] .n.1 29475.078436: cpu_idle: state=4294967295 cpu_id=0
16621          <idle>-0     (-----) [000] d..2 29475.078598: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wpa_supplicant next_pid=2697 next_prio=120
16622          <idle>-0     (-----) [003] .n.1 29475.078814: cpu_idle: state=4294967295 cpu_id=3
16623          <idle>-0     (-----) [003] d..2 29475.078882: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16624         sugov:0-559   (  559) [003] d..2 29475.079108: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16625<...>-2697 ( 2697) [000] d..2 29475.079115: sched_switch: prev_comm=wpa_supplicant prev_pid=2697 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16626          <idle>-0     (-----) [003] d..2 29475.079129: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16627          <idle>-0     (-----) [003] dn.3 29475.079163: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16628          <idle>-0     (-----) [003] d..2 29475.079180: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
16629          <idle>-0     (-----) [000] d..1 29475.079202: cpu_idle: state=2 cpu_id=0
16630     ksoftirqd/3-34    (   34) [003] d.s2 29475.079262: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16631     ksoftirqd/3-34    (   34) [003] d.s3 29475.079408: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16632     ksoftirqd/3-34    (   34) [003] d..2 29475.079461: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16633          <idle>-0     (-----) [004] dnh2 29475.079466: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16634          <idle>-0     (-----) [004] .n.1 29475.079484: cpu_idle: state=4294967295 cpu_id=4
16635          <idle>-0     (-----) [004] d..2 29475.079509: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16636         sugov:4-560   (  560) [004] d..2 29475.079552: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16637          <idle>-0     (-----) [004] d..1 29475.079578: cpu_idle: state=2 cpu_id=4
16638  kworker/u16:16-25995 (25995) [003] d.s3 29475.080994: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16639  kworker/u16:16-25995 (25995) [003] d.s4 29475.081016: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16640  kworker/u16:16-25995 (25995) [003] d..2 29475.081126: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16641          <idle>-0     (-----) [003] d..1 29475.081154: cpu_idle: state=2 cpu_id=3
16642          <idle>-0     (-----) [003] d.h2 29475.212727: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16643          <idle>-0     (-----) [000] d..2 29475.212866: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16644          <idle>-0     (-----) [003] dnh3 29475.212973: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16645          <idle>-0     (-----) [000] dn.3 29475.212978: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16646          <idle>-0     (-----) [000] .n.1 29475.213014: cpu_idle: state=4294967295 cpu_id=0
16647          <idle>-0     (-----) [000] d..2 29475.213333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16648     ksoftirqd/0-3     (    3) [000] d.s2 29475.213429: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16649          <idle>-0     (-----) [003] dnh3 29475.213439: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16650          <idle>-0     (-----) [003] dnh3 29475.213482: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16651     ksoftirqd/0-3     (    3) [000] d.s3 29475.213539: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16652          <idle>-0     (-----) [003] dnh4 29475.213550: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16653          <idle>-0     (-----) [003] .n.1 29475.213566: cpu_idle: state=4294967295 cpu_id=3
16654     ksoftirqd/0-3     (    3) [000] d.s2 29475.213575: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16655          <idle>-0     (-----) [003] d..2 29475.213606: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
16656     ksoftirqd/0-3     (    3) [000] d.s3 29475.213620: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16657     ksoftirqd/0-3     (    3) [000] d..2 29475.213680: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16658          <idle>-0     (-----) [002] .n.1 29475.213940: cpu_idle: state=4294967295 cpu_id=2
16659          <idle>-0     (-----) [002] d..2 29475.213997: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16660 bluetooth@1.0-s-24508 (  759) [003] d..2 29475.214065: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16661         sugov:0-559   (  559) [002] d..2 29475.214143: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16662     kworker/0:0-13450 (13450) [000] d..2 29475.214152: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16663          <idle>-0     (-----) [000] d..1 29475.214223: cpu_idle: state=2 cpu_id=0
16664          <idle>-0     (-----) [002] d..1 29475.214223: cpu_idle: state=2 cpu_id=2
16665          <idle>-0     (-----) [004] dnh2 29475.214685: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16666          <idle>-0     (-----) [004] .n.1 29475.214703: cpu_idle: state=4294967295 cpu_id=4
16667          <idle>-0     (-----) [004] d..2 29475.214728: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16668         sugov:4-560   (  560) [004] d..2 29475.214771: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16669          <idle>-0     (-----) [004] d..1 29475.214792: cpu_idle: state=2 cpu_id=4
16670  kworker/u16:16-25995 (25995) [003] d..2 29475.215325: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16671          <idle>-0     (-----) [003] d..1 29475.215355: cpu_idle: state=2 cpu_id=3
16672          <idle>-0     (-----) [000] d.h2 29475.380020: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
16673          <idle>-0     (-----) [000] dnh3 29475.380352: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
16674          <idle>-0     (-----) [000] dnh3 29475.380925: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16675          <idle>-0     (-----) [000] dnh3 29475.381017: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16676          <idle>-0     (-----) [000] dnh4 29475.381089: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16677          <idle>-0     (-----) [000] .n.1 29475.381134: cpu_idle: state=4294967295 cpu_id=0
16678          <idle>-0     (-----) [000] d..2 29475.381294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
16679          <idle>-0     (-----) [002] .n.1 29475.381507: cpu_idle: state=4294967295 cpu_id=2
16680          <idle>-0     (-----) [002] d..2 29475.381575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16681         sugov:0-559   (  559) [002] d..2 29475.381803: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16682          <idle>-0     (-----) [002] d..2 29475.381823: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16683          <idle>-0     (-----) [002] dn.3 29475.381858: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16684          <idle>-0     (-----) [002] d..2 29475.381874: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16685     ksoftirqd/2-26    (   26) [002] d.s2 29475.381962: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16686 PowerManagerSer-24006 (23968) [000] d..2 29475.382105: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16687     ksoftirqd/2-26    (   26) [002] d.s3 29475.382105: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16688          <idle>-0     (-----) [000] d..2 29475.382116: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16689          <idle>-0     (-----) [000] dn.3 29475.382146: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16690     ksoftirqd/2-26    (   26) [002] d.s2 29475.382149: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16691          <idle>-0     (-----) [000] d..2 29475.382163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16692          <idle>-0     (-----) [004] dnh2 29475.382169: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
16693     ksoftirqd/2-26    (   26) [002] d.s3 29475.382180: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16694          <idle>-0     (-----) [004] .n.1 29475.382188: cpu_idle: state=4294967295 cpu_id=4
16695     ksoftirqd/0-3     (    3) [000] d.s2 29475.382208: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16696          <idle>-0     (-----) [004] d..2 29475.382212: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16697     ksoftirqd/2-26    (   26) [002] d..2 29475.382220: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16698     ksoftirqd/0-3     (    3) [000] d.s3 29475.382243: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16699         sugov:4-560   (  560) [004] d..2 29475.382256: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16700     ksoftirqd/0-3     (    3) [000] d..2 29475.382265: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16701          <idle>-0     (-----) [004] d..1 29475.382303: cpu_idle: state=2 cpu_id=4
16702     kworker/0:0-13450 (13450) [000] d..2 29475.382381: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16703     kworker/2:2-13636 (13636) [002] d..2 29475.382416: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16704          <idle>-0     (-----) [000] d..1 29475.382423: cpu_idle: state=2 cpu_id=0
16705  kworker/u16:16-25995 (25995) [002] d..2 29475.383108: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16706          <idle>-0     (-----) [002] d..1 29475.383140: cpu_idle: state=2 cpu_id=2
16707          <idle>-0     (-----) [000] ...1 29475.575450: cpu_idle: state=4294967295 cpu_id=0
16708          <idle>-0     (-----) [000] d..1 29475.575553: cpu_idle: state=2 cpu_id=0
16709          <idle>-0     (-----) [001] d.H3 29475.575782: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
16710          <idle>-0     (-----) [001] d.H3 29475.575951: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16711          <idle>-0     (-----) [001] d.H4 29475.576049: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16712          <idle>-0     (-----) [001] d.s3 29475.576115: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16713          <idle>-0     (-----) [001] dns4 29475.576209: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16714          <idle>-0     (-----) [001] dns3 29475.576242: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16715          <idle>-0     (-----) [001] dns4 29475.576341: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16716          <idle>-0     (-----) [002] .n.1 29475.576433: cpu_idle: state=4294967295 cpu_id=2
16717          <idle>-0     (-----) [001] .n.1 29475.576489: cpu_idle: state=4294967295 cpu_id=1
16718          <idle>-0     (-----) [002] d..2 29475.576549: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16719          <idle>-0     (-----) [001] d..2 29475.576550: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16720         sugov:0-559   (  559) [002] d..2 29475.576644: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16721     kworker/1:1-13678 (13678) [001] d..3 29475.576867: sched_waking: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
16722     kworker/1:1-13678 (13678) [001] d..3 29475.576910: sched_wakeup: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
16723     kworker/1:1-13678 (13678) [001] d..2 29475.576925: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=kworker/1:2 next_pid=13650 next_prio=120
16724          <idle>-0     (-----) [006] dnh2 29475.577083: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16725          <idle>-0     (-----) [006] dnh3 29475.577177: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16726          <idle>-0     (-----) [006] .n.1 29475.577211: cpu_idle: state=4294967295 cpu_id=6
16727          <idle>-0     (-----) [006] d..2 29475.577234: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16728         sugov:4-560   (  560) [006] d..2 29475.577300: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
16729     kworker/1:2-13650 (13650) [001] d..2 29475.577306: sched_switch: prev_comm=kworker/1:2 prev_pid=13650 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16730          <idle>-0     (-----) [006] d..1 29475.577325: cpu_idle: state=2 cpu_id=6
16731          <idle>-0     (-----) [001] d..1 29475.577378: cpu_idle: state=2 cpu_id=1
16732  kworker/u16:16-25995 (25995) [002] d..2 29475.577611: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16733          <idle>-0     (-----) [002] d..1 29475.577639: cpu_idle: state=2 cpu_id=2
16734          <idle>-0     (-----) [003] dnh2 29475.577662: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16735          <idle>-0     (-----) [003] .n.1 29475.577685: cpu_idle: state=4294967295 cpu_id=3
16736          <idle>-0     (-----) [003] d..2 29475.577722: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16737         sugov:0-559   (  559) [003] d..2 29475.577779: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16738          <idle>-0     (-----) [003] d..1 29475.577807: cpu_idle: state=2 cpu_id=3
16739          <idle>-0     (-----) [000] d.h3 29475.581711: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16740          <idle>-0     (-----) [000] dnh4 29475.581761: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16741          <idle>-0     (-----) [000] .n.1 29475.581841: cpu_idle: state=4294967295 cpu_id=0
16742          <idle>-0     (-----) [000] d..2 29475.581885: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16743     kworker/0:0-13450 (13450) [000] d..2 29475.581913: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16744     kworker/0:0-13450 (13450) [000] d..3 29475.581941: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
16745     kworker/0:0-13450 (13450) [000] d..3 29475.581960: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16746     kworker/0:0-13450 (13450) [000] d..2 29475.582025: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16747          <idle>-0     (-----) [000] d..2 29475.582034: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16748          <idle>-0     (-----) [000] dn.3 29475.582061: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16749          <idle>-0     (-----) [000] d..2 29475.582076: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16750     ksoftirqd/0-3     (    3) [000] d..2 29475.582132: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16751          <idle>-0     (-----) [000] d..1 29475.582151: cpu_idle: state=2 cpu_id=0
16752          <idle>-0     (-----) [001] .n.1 29475.582281: cpu_idle: state=4294967295 cpu_id=1
16753          <idle>-0     (-----) [001] d..2 29475.582316: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16754     kworker/1:1-13678 (13678) [001] d..2 29475.582520: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16755          <idle>-0     (-----) [001] d..1 29475.582540: cpu_idle: state=2 cpu_id=1
16756          <idle>-0     (-----) [000] ...1 29475.682179: cpu_idle: state=4294967295 cpu_id=0
16757          <idle>-0     (-----) [000] d..1 29475.682279: cpu_idle: state=2 cpu_id=0
16758          <idle>-0     (-----) [002] d.H3 29475.682496: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16759          <idle>-0     (-----) [002] d.H3 29475.682622: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16760          <idle>-0     (-----) [002] d.H4 29475.682712: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16761          <idle>-0     (-----) [002] d.s3 29475.682780: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16762          <idle>-0     (-----) [002] dns4 29475.682868: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16763          <idle>-0     (-----) [002] dns3 29475.682902: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16764          <idle>-0     (-----) [002] dns4 29475.683100: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16765          <idle>-0     (-----) [003] .n.1 29475.683101: cpu_idle: state=4294967295 cpu_id=3
16766          <idle>-0     (-----) [003] d..2 29475.683210: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16767          <idle>-0     (-----) [002] .n.1 29475.683253: cpu_idle: state=4294967295 cpu_id=2
16768          <idle>-0     (-----) [002] d..2 29475.683311: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16769         sugov:0-559   (  559) [003] d..2 29475.683311: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16770     kworker/2:2-13636 (13636) [002] d..2 29475.683595: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16771          <idle>-0     (-----) [002] d..1 29475.683630: cpu_idle: state=2 cpu_id=2
16772          <idle>-0     (-----) [006] dnh2 29475.683748: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16773          <idle>-0     (-----) [006] .n.1 29475.683769: cpu_idle: state=4294967295 cpu_id=6
16774          <idle>-0     (-----) [006] d..2 29475.683792: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16775         sugov:4-560   (  560) [006] d..2 29475.683847: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
16776          <idle>-0     (-----) [006] d..1 29475.683867: cpu_idle: state=2 cpu_id=6
16777  kworker/u16:16-25995 (25995) [003] d..2 29475.684117: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16778          <idle>-0     (-----) [003] d..1 29475.684146: cpu_idle: state=2 cpu_id=3
16779          <idle>-0     (-----) [005] d..2 29476.024888: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
16780          <idle>-0     (-----) [005] dn.3 29476.025000: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
16781          <idle>-0     (-----) [005] dnH3 29476.025222: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16782          <idle>-0     (-----) [000] ...1 29476.025250: cpu_idle: state=4294967295 cpu_id=0
16783          <idle>-0     (-----) [005] dnH4 29476.025283: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16784          <idle>-0     (-----) [005] dnH3 29476.025290: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16785          <idle>-0     (-----) [000] d..1 29476.025329: cpu_idle: state=2 cpu_id=0
16786          <idle>-0     (-----) [005] dns3 29476.025351: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16787          <idle>-0     (-----) [005] dns3 29476.025425: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
16788          <idle>-0     (-----) [005] dns4 29476.025442: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
16789          <idle>-0     (-----) [005] .n.1 29476.025489: cpu_idle: state=4294967295 cpu_id=5
16790          <idle>-0     (-----) [005] d..2 29476.025560: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
16791     ksoftirqd/5-50    (   50) [005] d..2 29476.025598: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
16792          <idle>-0     (-----) [003] dnh2 29476.025753: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16793          <idle>-0     (-----) [003] dnh2 29476.025776: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
16794          <idle>-0     (-----) [003] .n.1 29476.025792: cpu_idle: state=4294967295 cpu_id=3
16795     kworker/5:0-24254 (24254) [005] d..2 29476.025811: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
16796          <idle>-0     (-----) [003] d..2 29476.025834: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16797          <idle>-0     (-----) [005] d..1 29476.025838: cpu_idle: state=2 cpu_id=5
16798         sugov:0-559   (  559) [003] d..2 29476.025904: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16799          <idle>-0     (-----) [006] .n.1 29476.025919: cpu_idle: state=4294967295 cpu_id=6
16800          <idle>-0     (-----) [006] d..2 29476.025953: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16801         sugov:4-560   (  560) [006] d..2 29476.026001: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
16802          <idle>-0     (-----) [006] d..1 29476.026022: cpu_idle: state=2 cpu_id=6
16803  kworker/u16:16-25995 (25995) [003] d..2 29476.026633: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16804          <idle>-0     (-----) [003] d..1 29476.026667: cpu_idle: state=2 cpu_id=3
16805          <idle>-0     (-----) [000] d.h2 29476.033206: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
16806          <idle>-0     (-----) [000] dnh3 29476.033262: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
16807          <idle>-0     (-----) [000] .n.1 29476.033284: cpu_idle: state=4294967295 cpu_id=0
16808          <idle>-0     (-----) [000] d..2 29476.033319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
16809<...>-25015 ( 24655) [000] d.s2 29476.033908: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16810<...>-25015 ( 24655) [000] d.s3 29476.034060: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16811<...>-25015 ( 24655) [000] d.H2 29476.034086: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
16812<...>-25015 ( 24655) [000] d.H3 29476.034153: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=001
16813<...>-25015 ( 24655) [000] d..2 29476.034271: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16814  kworker/u16:16-25995 (25995) [000] d..2 29476.034396: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16815          <idle>-0     (-----) [000] d..1 29476.034424: cpu_idle: state=2 cpu_id=0
16816          <idle>-0     (-----) [001] .n.1 29476.034537: cpu_idle: state=4294967295 cpu_id=1
16817          <idle>-0     (-----) [001] d..2 29476.034604: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
16818<...>-24367 ( 24151) [001] d..2 29476.034851: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16819          <idle>-0     (-----) [001] d..1 29476.034887: cpu_idle: state=2 cpu_id=1
16820          <idle>-0     (-----) [003] d.h2 29476.218888: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16821          <idle>-0     (-----) [000] d..2 29476.219036: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16822          <idle>-0     (-----) [003] dnh3 29476.219145: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
16823          <idle>-0     (-----) [000] dn.3 29476.219155: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16824          <idle>-0     (-----) [000] .n.1 29476.219191: cpu_idle: state=4294967295 cpu_id=0
16825          <idle>-0     (-----) [000] d..2 29476.219525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16826     ksoftirqd/0-3     (    3) [000] d.s2 29476.219626: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16827          <idle>-0     (-----) [003] dnh3 29476.219642: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16828          <idle>-0     (-----) [003] dnh3 29476.219685: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
16829     ksoftirqd/0-3     (    3) [000] d.s3 29476.219752: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16830          <idle>-0     (-----) [003] dnh4 29476.219758: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16831          <idle>-0     (-----) [003] .n.1 29476.219775: cpu_idle: state=4294967295 cpu_id=3
16832     ksoftirqd/0-3     (    3) [000] d.s2 29476.219795: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16833          <idle>-0     (-----) [003] d..2 29476.219816: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
16834     ksoftirqd/0-3     (    3) [000] d.s3 29476.219826: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16835     ksoftirqd/0-3     (    3) [000] d..2 29476.219879: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16836     kworker/0:0-13450 (13450) [000] d..2 29476.220100: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16837          <idle>-0     (-----) [002] .n.1 29476.220144: cpu_idle: state=4294967295 cpu_id=2
16838          <idle>-0     (-----) [002] d..2 29476.220199: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16839 bluetooth@1.0-s-24508 (  759) [003] d..2 29476.220241: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16840         sugov:0-559   (  559) [002] d..2 29476.220330: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16841          <idle>-0     (-----) [003] d..1 29476.220341: cpu_idle: state=2 cpu_id=3
16842          <idle>-0     (-----) [002] d..1 29476.220361: cpu_idle: state=2 cpu_id=2
16843          <idle>-0     (-----) [006] dnh2 29476.220855: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16844          <idle>-0     (-----) [006] .n.1 29476.220875: cpu_idle: state=4294967295 cpu_id=6
16845          <idle>-0     (-----) [006] d..2 29476.220900: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16846         sugov:4-560   (  560) [006] d..2 29476.220948: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
16847          <idle>-0     (-----) [006] d..1 29476.220972: cpu_idle: state=2 cpu_id=6
16848          <idle>-0     (-----) [003] ...1 29476.221131: cpu_idle: state=4294967295 cpu_id=3
16849          <idle>-0     (-----) [003] d..1 29476.221145: cpu_idle: state=2 cpu_id=3
16850  kworker/u16:16-25995 (25995) [000] d..2 29476.221623: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16851          <idle>-0     (-----) [000] d..1 29476.221657: cpu_idle: state=2 cpu_id=0
16852          <idle>-0     (-----) [007] d.H3 29476.322449: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16853          <idle>-0     (-----) [000] ...1 29476.322541: cpu_idle: state=4294967295 cpu_id=0
16854          <idle>-0     (-----) [007] d.H4 29476.322559: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16855          <idle>-0     (-----) [007] d.H3 29476.322573: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16856          <idle>-0     (-----) [000] d..1 29476.322621: cpu_idle: state=2 cpu_id=0
16857          <idle>-0     (-----) [007] d.s3 29476.322664: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16858          <idle>-0     (-----) [007] d.s3 29476.322776: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
16859          <idle>-0     (-----) [007] dns4 29476.322825: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
16860          <idle>-0     (-----) [007] dns2 29476.322886: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
16861          <idle>-0     (-----) [007] dns3 29476.322898: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
16862          <idle>-0     (-----) [007] .n.1 29476.322905: cpu_idle: state=4294967295 cpu_id=7
16863          <idle>-0     (-----) [007] d..2 29476.322967: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/7 next_pid=66 next_prio=120
16864<...>-66 ( 66) [007] d..2 29476.323019: sched_switch: prev_comm=ksoftirqd/7 prev_pid=66 prev_prio=120 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
16865          <idle>-0     (-----) [002] dnh2 29476.323026: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16866          <idle>-0     (-----) [002] .n.1 29476.323049: cpu_idle: state=4294967295 cpu_id=2
16867          <idle>-0     (-----) [002] d..2 29476.323098: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16868     kworker/7:0-12892 (12892) [007] d..2 29476.323165: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16869          <idle>-0     (-----) [006] .n.1 29476.323183: cpu_idle: state=4294967295 cpu_id=6
16870          <idle>-0     (-----) [007] d..1 29476.323192: cpu_idle: state=2 cpu_id=7
16871         sugov:0-559   (  559) [002] d..2 29476.323210: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16872          <idle>-0     (-----) [006] d..2 29476.323220: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16873          <idle>-0     (-----) [002] d..1 29476.323242: cpu_idle: state=2 cpu_id=2
16874         sugov:4-560   (  560) [006] d..2 29476.323263: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
16875          <idle>-0     (-----) [006] d..1 29476.323282: cpu_idle: state=2 cpu_id=6
16876          <idle>-0     (-----) [000] dnh2 29476.323452: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16877          <idle>-0     (-----) [000] .n.1 29476.323465: cpu_idle: state=4294967295 cpu_id=0
16878          <idle>-0     (-----) [000] d..2 29476.323503: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16879  kworker/u16:16-25995 (25995) [000] d..2 29476.324389: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16880          <idle>-0     (-----) [000] d..1 29476.324413: cpu_idle: state=2 cpu_id=0
16881          <idle>-0     (-----) [001] d.h4 29476.518892: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16882          <idle>-0     (-----) [000] d..2 29476.519039: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16883          <idle>-0     (-----) [000] dn.3 29476.519118: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16884          <idle>-0     (-----) [000] .n.1 29476.519158: cpu_idle: state=4294967295 cpu_id=0
16885          <idle>-0     (-----) [001] dnh5 29476.519165: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16886          <idle>-0     (-----) [000] d..2 29476.519368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16887     ksoftirqd/0-3     (    3) [000] d.s2 29476.519437: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16888          <idle>-0     (-----) [001] dnh3 29476.519441: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
16889     ksoftirqd/0-3     (    3) [000] d.s3 29476.519467: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
16890          <idle>-0     (-----) [001] dnh3 29476.519489: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
16891     ksoftirqd/0-3     (    3) [000] d..2 29476.519514: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
16892          <idle>-0     (-----) [001] dnh4 29476.519526: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
16893          <idle>-0     (-----) [001] .n.1 29476.519540: cpu_idle: state=4294967295 cpu_id=1
16894          <idle>-0     (-----) [001] d..2 29476.519579: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16895  kworker/u16:16-25995 (25995) [001] d..2 29476.519596: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
16896  kworker/u16:16-25995 (25995) [001] d..3 29476.519658: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
16897     kworker/0:0-13450 (13450) [000] d..2 29476.519690: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16898  kworker/u16:16-25995 (25995) [001] d..2 29476.519728: sched_waking: comm=kworker/u16:13 pid=1238 prio=120 target_cpu=002
16899  kworker/u16:16-25995 (25995) [001] d..3 29476.519759: sched_wakeup: comm=kworker/u16:13 pid=1238 prio=120 target_cpu=002
16900          <idle>-0     (-----) [002] .n.1 29476.519844: cpu_idle: state=4294967295 cpu_id=2
16901          <idle>-0     (-----) [002] d..2 29476.519885: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
16902  kworker/u16:10-23868 (23868) [000] d..2 29476.519908: sched_waking: comm=NasModemEndPoin pid=1346 prio=120 target_cpu=001
16903         sugov:0-559   (  559) [002] d..2 29476.519939: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1238 next_prio=120
16904  kworker/u16:10-23868 (23868) [000] dn.3 29476.519985: sched_wakeup: comm=NasModemEndPoin pid=1346 prio=120 target_cpu=000
16905  kworker/u16:10-23868 (23868) [000] d..2 29476.519999: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=NasModemEndPoin next_pid=1346 next_prio=120
16906  kworker/u16:13-1238  ( 1238) [002] d..2 29476.520040: sched_switch: prev_comm=kworker/u16:13 prev_pid=1238 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16907          <idle>-0     (-----) [002] d..1 29476.520117: cpu_idle: state=2 cpu_id=2
16908 NasModemEndPoin-1346  (  933) [000] d..2 29476.520171: sched_switch: prev_comm=NasModemEndPoin prev_pid=1346 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16909  kworker/u16:10-23868 (23868) [000] d..1 29476.520178: sched_waking: comm=NasModemEndPoin pid=1346 prio=120 target_cpu=000
16910  kworker/u16:10-23868 (23868) [000] d..2 29476.520201: sched_blocked_reason: pid=1346 iowait=0 caller=msm_ipc_router_rx_data_wait+0xcc/0x2d8
16911  kworker/u16:10-23868 (23868) [000] dn.2 29476.520211: sched_wakeup: comm=NasModemEndPoin pid=1346 prio=120 target_cpu=000
16912  kworker/u16:10-23868 (23868) [000] d..2 29476.520224: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=NasModemEndPoin next_pid=1346 next_prio=120
16913  kworker/u16:16-25995 (25995) [001] d.h4 29476.520483: sched_waking: comm=kworker/u16:13 pid=1238 prio=120 target_cpu=002
16914          <idle>-0     (-----) [006] dnh2 29476.520530: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
16915  kworker/u16:16-25995 (25995) [001] dnh5 29476.520535: sched_wakeup: comm=kworker/u16:13 pid=1238 prio=120 target_cpu=001
16916          <idle>-0     (-----) [006] .n.1 29476.520544: cpu_idle: state=4294967295 cpu_id=6
16917          <idle>-0     (-----) [006] d..2 29476.520563: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
16918         sugov:4-560   (  560) [006] d..2 29476.520600: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
16919          <idle>-0     (-----) [006] d..1 29476.520615: cpu_idle: state=2 cpu_id=6
16920  kworker/u16:16-25995 (25995) [001] d..2 29476.520728: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1238 next_prio=120
16921          <idle>-0     (-----) [002] ...1 29476.520732: cpu_idle: state=4294967295 cpu_id=2
16922          <idle>-0     (-----) [002] d..1 29476.520746: cpu_idle: state=2 cpu_id=2
16923  kworker/u16:13-1238  ( 1238) [001] d..3 29476.520754: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16924  kworker/u16:13-1238  ( 1238) [001] d..4 29476.520777: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
16925  kworker/u16:13-1238  ( 1238) [001] d..2 29476.520793: sched_switch: prev_comm=kworker/u16:13 prev_pid=1238 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
16926     kworker/1:1-13678 (13678) [001] d..3 29476.520810: sched_waking: comm=msm_irqbalance pid=805 prio=120 target_cpu=003
16927     kworker/1:1-13678 (13678) [001] d..4 29476.520864: sched_wakeup: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
16928     kworker/1:1-13678 (13678) [001] d..2 29476.520907: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
16929 NasModemEndPoin-1346  (  933) [000] d..1 29476.521727: sched_waking: comm=DispatcherModul pid=1089 prio=120 target_cpu=001
16930 NasModemEndPoin-1346  (  933) [000] d..2 29476.521801: sched_wakeup: comm=DispatcherModul pid=1089 prio=120 target_cpu=000
16931 NasModemEndPoin-1346  (  933) [000] d..2 29476.521863: sched_switch: prev_comm=NasModemEndPoin prev_pid=1346 prev_prio=120 prev_state=S ==> next_comm=DispatcherModul next_pid=1089 next_prio=120
16932 DispatcherModul-1089  (  933) [000] d..2 29476.524539: sched_switch: prev_comm=DispatcherModul prev_pid=1089 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16933  kworker/u16:10-23868 (23868) [000] d..2 29476.524662: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16934  kworker/u16:16-25995 (25995) [000] d..2 29476.524946: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16935          <idle>-0     (-----) [000] d..1 29476.524981: cpu_idle: state=2 cpu_id=0
16936<...>-805 ( 805) [001] d.s2 29476.527111: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
16937<...>-805 ( 805) [001] d.s3 29476.527185: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16938<...>-805 ( 805) [001] d..2 29476.530458: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16939          <idle>-0     (-----) [002] d.s4 29476.530852: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16940          <idle>-0     (-----) [002] dns5 29476.530890: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
16941          <idle>-0     (-----) [002] .n.1 29476.530935: cpu_idle: state=4294967295 cpu_id=2
16942          <idle>-0     (-----) [002] d..2 29476.530956: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16943  kworker/u16:16-25995 (25995) [001] d..2 29476.531072: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
16944     kworker/2:2-13636 (13636) [002] d..3 29476.531202: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
16945     kworker/2:2-13636 (13636) [002] d..4 29476.531268: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16946     kworker/2:2-13636 (13636) [002] d..3 29476.531311: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
16947     kworker/2:2-13636 (13636) [002] dn.4 29476.531349: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
16948     kworker/2:2-13636 (13636) [002] d..2 29476.531372: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
16949    kworker/2:1H-850   (  850) [002] d..2 29476.531437: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
16950     kworker/2:2-13636 (13636) [002] d..2 29476.531456: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16951  kworker/u16:10-23868 (23868) [002] d..2 29476.531547: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16952          <idle>-0     (-----) [002] d..1 29476.531565: cpu_idle: state=0 cpu_id=2
16953          <idle>-0     (-----) [003] d.s3 29476.532023: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
16954          <idle>-0     (-----) [003] d.s4 29476.532078: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
16955          <idle>-0     (-----) [003] dns4 29476.532089: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16956          <idle>-0     (-----) [003] .n.1 29476.532107: cpu_idle: state=4294967295 cpu_id=3
16957          <idle>-0     (-----) [003] d..2 29476.532145: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16958  kworker/u16:16-25995 (25995) [003] d..1 29476.532181: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16959  kworker/u16:16-25995 (25995) [003] d..2 29476.532199: sched_blocked_reason: pid=23868 iowait=0 caller=update_request_adhoc+0x384/0x480
16960  kworker/u16:16-25995 (25995) [003] d..2 29476.532210: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16961          <idle>-0     (-----) [002] .n.1 29476.532220: cpu_idle: state=4294967295 cpu_id=2
16962          <idle>-0     (-----) [002] d..2 29476.532235: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16963  kworker/u16:16-25995 (25995) [003] d..2 29476.532263: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16964          <idle>-0     (-----) [003] d..1 29476.532288: cpu_idle: state=2 cpu_id=3
16965  kworker/u16:10-23868 (23868) [002] d..2 29476.532612: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16966          <idle>-0     (-----) [002] d..1 29476.532626: cpu_idle: state=0 cpu_id=2
16967          <idle>-0     (-----) [003] d.s3 29476.533152: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16968          <idle>-0     (-----) [003] d.s4 29476.533173: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
16969          <idle>-0     (-----) [003] d.s4 29476.533187: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16970          <idle>-0     (-----) [002] .n.1 29476.533195: cpu_idle: state=4294967295 cpu_id=2
16971          <idle>-0     (-----) [003] ...1 29476.533207: cpu_idle: state=4294967295 cpu_id=3
16972          <idle>-0     (-----) [002] d..2 29476.533209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16973          <idle>-0     (-----) [003] d..1 29476.533220: cpu_idle: state=2 cpu_id=3
16974  kworker/u16:10-23868 (23868) [002] d..2 29476.533409: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16975          <idle>-0     (-----) [002] d..1 29476.533421: cpu_idle: state=0 cpu_id=2
16976          <idle>-0     (-----) [003] d.s3 29476.533617: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
16977          <idle>-0     (-----) [003] d.s4 29476.533672: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
16978          <idle>-0     (-----) [003] dns4 29476.533682: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
16979          <idle>-0     (-----) [003] .n.1 29476.533694: cpu_idle: state=4294967295 cpu_id=3
16980          <idle>-0     (-----) [003] d..2 29476.533716: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
16981          <idle>-0     (-----) [002] d.s3 29476.533766: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
16982          <idle>-0     (-----) [002] dns4 29476.533782: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
16983<...>-805 ( 805) [001] d.s2 29476.533783: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
16984          <idle>-0     (-----) [002] .n.1 29476.533797: cpu_idle: state=4294967295 cpu_id=2
16985          <idle>-0     (-----) [002] d..2 29476.533809: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
16986  kworker/u16:10-23868 (23868) [003] d..1 29476.533835: clk_enable: gcc_ufs_phy_axi_clk_src
16987<...>-805 ( 805) [001] d.s3 29476.533855: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
16988    kworker/2:1H-850   (  850) [002] d..2 29476.533868: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
16989  kworker/u16:10-23868 (23868) [003] d..1 29476.533872: clk_enable: gcc_ufs_phy_axi_clk
16990  kworker/u16:10-23868 (23868) [003] d..1 29476.533887: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
16991  kworker/u16:10-23868 (23868) [003] d..1 29476.533903: clk_enable: gcc_aggre_ufs_phy_axi_clk
16992  kworker/u16:10-23868 (23868) [003] d..1 29476.533915: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
16993  kworker/u16:10-23868 (23868) [003] d..1 29476.533926: clk_enable: gcc_ufs_phy_ahb_clk
16994  kworker/u16:10-23868 (23868) [003] d..1 29476.533959: clk_enable: gcc_ufs_phy_unipro_core_clk_src
16995  kworker/u16:10-23868 (23868) [003] d..1 29476.533969: clk_enable: gcc_ufs_phy_unipro_core_clk
16996  kworker/u16:10-23868 (23868) [003] d..1 29476.533979: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
16997  kworker/u16:10-23868 (23868) [003] d..1 29476.534000: clk_enable: gcc_ufs_phy_ice_core_clk_src
16998  kworker/u16:10-23868 (23868) [003] d..1 29476.534009: clk_enable: gcc_ufs_phy_ice_core_clk
16999  kworker/u16:16-25995 (25995) [002] .... 29476.534018: clk_set_rate: l3_cluster0_vote_clk 480000000
17000  kworker/u16:10-23868 (23868) [003] d..1 29476.534018: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
17001  kworker/u16:16-25995 (25995) [002] .... 29476.534032: clk_set_rate: l3_clk 480000000
17002  kworker/u16:10-23868 (23868) [003] d..1 29476.534094: clk_enable: gcc_ufs_mem_clkref_clk
17003  kworker/u16:16-25995 (25995) [002] d..2 29476.534109: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17004  kworker/u16:10-23868 (23868) [003] d..1 29476.534109: clk_enable: gcc_ufs_phy_phy_aux_clk_src
17005  kworker/u16:10-23868 (23868) [003] d..1 29476.534118: clk_enable: gcc_ufs_phy_phy_aux_clk
17006          <idle>-0     (-----) [002] d..1 29476.534121: cpu_idle: state=0 cpu_id=2
17007  kworker/u16:10-23868 (23868) [003] d..1 29476.534127: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
17008  kworker/u16:10-23868 (23868) [003] d..3 29476.534201: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17009  kworker/u16:10-23868 (23868) [003] d..4 29476.534255: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17010          <idle>-0     (-----) [002] ...1 29476.534405: cpu_idle: state=4294967295 cpu_id=2
17011          <idle>-0     (-----) [002] d..1 29476.534410: cpu_idle: state=0 cpu_id=2
17012  kworker/u16:10-23868 (23868) [003] d..2 29476.534415: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17013  kworker/u16:16-25995 (25995) [003] d..2 29476.534446: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17014          <idle>-0     (-----) [003] d..1 29476.534466: cpu_idle: state=0 cpu_id=3
17015          <idle>-0     (-----) [000] ...1 29476.534562: cpu_idle: state=4294967295 cpu_id=0
17016          <idle>-0     (-----) [000] d..1 29476.534574: cpu_idle: state=0 cpu_id=0
17017<...>-805 ( 805) [001] d.h3 29476.535119: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17018<...>-805 ( 805) [001] d.h4 29476.535145: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17019          <idle>-0     (-----) [003] .n.1 29476.535154: cpu_idle: state=4294967295 cpu_id=3
17020          <idle>-0     (-----) [003] d..2 29476.535168: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17021<...>-805 ( 805) [001] d.s3 29476.535193: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17022  kworker/u16:16-25995 (25995) [003] d..2 29476.535202: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17023<...>-805 ( 805) [001] d.s4 29476.535205: sched_blocked_reason: pid=13636 iowait=1 caller=blk_execute_rq+0xc0/0x118
17024<...>-805 ( 805) [001] d.s4 29476.535215: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17025          <idle>-0     (-----) [003] d..1 29476.535215: cpu_idle: state=0 cpu_id=3
17026          <idle>-0     (-----) [002] .n.1 29476.535220: cpu_idle: state=4294967295 cpu_id=2
17027          <idle>-0     (-----) [002] d..2 29476.535233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17028     kworker/2:2-13636 (13636) [002] d..2 29476.535351: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17029<...>-805 ( 805) [001] d.h3 29476.535354: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17030          <idle>-0     (-----) [002] d..1 29476.535362: cpu_idle: state=0 cpu_id=2
17031<...>-805 ( 805) [001] d.h4 29476.535365: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
17032<...>-805 ( 805) [001] d.h4 29476.535375: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17033          <idle>-0     (-----) [002] .n.1 29476.535381: cpu_idle: state=4294967295 cpu_id=2
17034          <idle>-0     (-----) [002] d..2 29476.535392: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17035     kworker/2:2-13636 (13636) [002] d..3 29476.535437: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17036     kworker/2:2-13636 (13636) [002] d..4 29476.535457: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17037          <idle>-0     (-----) [003] .n.1 29476.535463: cpu_idle: state=4294967295 cpu_id=3
17038          <idle>-0     (-----) [003] d..2 29476.535476: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17039     kworker/2:2-13636 (13636) [002] d..2 29476.535495: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17040  kworker/u16:16-25995 (25995) [003] d..2 29476.535504: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17041          <idle>-0     (-----) [002] d..1 29476.535504: cpu_idle: state=0 cpu_id=2
17042          <idle>-0     (-----) [003] d..1 29476.535523: cpu_idle: state=0 cpu_id=3
17043<...>-805 ( 805) [001] d.h3 29476.535527: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17044<...>-805 ( 805) [001] d.h4 29476.535547: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17045          <idle>-0     (-----) [003] .n.1 29476.535553: cpu_idle: state=4294967295 cpu_id=3
17046          <idle>-0     (-----) [003] d..2 29476.535567: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17047<...>-805 ( 805) [001] d.s3 29476.535568: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17048<...>-805 ( 805) [001] d.s4 29476.535578: sched_blocked_reason: pid=13636 iowait=1 caller=blk_execute_rq+0xc0/0x118
17049<...>-805 ( 805) [001] d.s4 29476.535588: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17050          <idle>-0     (-----) [002] .n.1 29476.535594: cpu_idle: state=4294967295 cpu_id=2
17051  kworker/u16:16-25995 (25995) [003] d..2 29476.535595: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17052          <idle>-0     (-----) [002] d..2 29476.535606: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17053          <idle>-0     (-----) [003] d..1 29476.535609: cpu_idle: state=0 cpu_id=3
17054     kworker/2:2-13636 (13636) [002] d..2 29476.535660: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17055<...>-805 ( 805) [001] d.h3 29476.535663: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17056          <idle>-0     (-----) [002] d..1 29476.535669: cpu_idle: state=0 cpu_id=2
17057<...>-805 ( 805) [001] d.h4 29476.535673: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
17058<...>-805 ( 805) [001] d.h4 29476.535683: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17059          <idle>-0     (-----) [002] .n.1 29476.535689: cpu_idle: state=4294967295 cpu_id=2
17060          <idle>-0     (-----) [002] d..2 29476.535700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17061<...>-805 ( 805) [001] d..2 29476.535736: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17062     kworker/2:2-13636 (13636) [002] d..2 29476.535740: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17063          <idle>-0     (-----) [002] d..1 29476.535749: cpu_idle: state=0 cpu_id=2
17064<...>-805 ( 805) [001] dn.3 29476.535774: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17065<...>-805 ( 805) [001] d..2 29476.535793: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
17066         rcuop/0-10    (   10) [001] d..2 29476.535814: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17067         rcuop/0-10    (   10) [001] d..3 29476.535853: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17068          <idle>-0     (-----) [000] .n.1 29476.535858: cpu_idle: state=4294967295 cpu_id=0
17069         rcuop/0-10    (   10) [001] d..2 29476.535872: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
17070          <idle>-0     (-----) [000] d..2 29476.535882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17071     rcu_preempt-7     (    7) [000] d..2 29476.535937: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17072          <idle>-0     (-----) [000] d..1 29476.535951: cpu_idle: state=0 cpu_id=0
17073<...>-805 ( 805) [001] d..2 29476.536424: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17074          <idle>-0     (-----) [001] d..1 29476.536451: cpu_idle: state=0 cpu_id=1
17075          <idle>-0     (-----) [003] ...1 29476.537042: cpu_idle: state=4294967295 cpu_id=3
17076          <idle>-0     (-----) [003] d..1 29476.537048: cpu_idle: state=0 cpu_id=3
17077          <idle>-0     (-----) [002] d.H3 29476.537184: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17078          <idle>-0     (-----) [002] d.H3 29476.537206: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17079          <idle>-0     (-----) [002] dnH4 29476.537222: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17080          <idle>-0     (-----) [002] dns3 29476.537233: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
17081          <idle>-0     (-----) [002] dns4 29476.537246: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
17082          <idle>-0     (-----) [002] .n.1 29476.537259: cpu_idle: state=4294967295 cpu_id=2
17083          <idle>-0     (-----) [002] d..2 29476.537269: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17084         sugov:0-559   (  559) [002] .... 29476.537323: clk_set_rate: pwrcl_clk 825600000
17085         sugov:0-559   (  559) [002] .... 29476.537337: clk_set_rate: cpu3_pwrcl_clk 652800000
17086         sugov:0-559   (  559) [002] .... 29476.537353: clk_set_rate: cpu2_pwrcl_clk 652800000
17087         sugov:0-559   (  559) [002] .... 29476.537362: clk_set_rate: cpu1_pwrcl_clk 652800000
17088         sugov:0-559   (  559) [002] .... 29476.537372: clk_set_rate: cpu0_pwrcl_clk 825600000
17089         sugov:0-559   (  559) [002] .... 29476.537386: cpu_frequency: state=825600 cpu_id=0
17090         sugov:0-559   (  559) [002] .... 29476.537428: cpu_frequency: state=825600 cpu_id=1
17091         sugov:0-559   (  559) [002] .... 29476.537433: cpu_frequency: state=825600 cpu_id=2
17092         sugov:0-559   (  559) [002] .... 29476.537437: cpu_frequency: state=825600 cpu_id=3
17093         sugov:0-559   (  559) [002] d..2 29476.537456: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
17094    kworker/2:1H-850   (  850) [002] d..2 29476.537488: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17095          <idle>-0     (-----) [002] d..1 29476.537502: cpu_idle: state=0 cpu_id=2
17096          <idle>-0     (-----) [002] d.h2 29476.537832: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17097          <idle>-0     (-----) [002] d.h3 29476.537842: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_vreg_set_lpm+0x64/0x248
17098          <idle>-0     (-----) [002] dnh3 29476.537848: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17099          <idle>-0     (-----) [002] .n.1 29476.537857: cpu_idle: state=4294967295 cpu_id=2
17100          <idle>-0     (-----) [002] d..2 29476.537867: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17101          <idle>-0     (-----) [006] dnh2 29476.537950: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17102          <idle>-0     (-----) [006] .n.1 29476.537958: cpu_idle: state=4294967295 cpu_id=6
17103          <idle>-0     (-----) [006] d..2 29476.537969: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17104         sugov:4-560   (  560) [006] d..2 29476.537989: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17105          <idle>-0     (-----) [006] d..1 29476.537998: cpu_idle: state=2 cpu_id=6
17106     kworker/2:2-13636 (13636) [002] d..1 29476.538015: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
17107     kworker/2:2-13636 (13636) [002] d..1 29476.538026: clk_disable: gcc_ufs_phy_phy_aux_clk
17108     kworker/2:2-13636 (13636) [002] d..1 29476.538035: clk_disable: gcc_ufs_phy_phy_aux_clk_src
17109     kworker/2:2-13636 (13636) [002] d..1 29476.538046: clk_disable: gcc_ufs_mem_clkref_clk
17110     kworker/2:2-13636 (13636) [002] d..1 29476.538093: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
17111     kworker/2:2-13636 (13636) [002] d..1 29476.538099: clk_disable: gcc_ufs_phy_axi_clk
17112     kworker/2:2-13636 (13636) [002] d..1 29476.538108: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
17113     kworker/2:2-13636 (13636) [002] d..1 29476.538113: clk_disable: gcc_aggre_ufs_phy_axi_clk
17114     kworker/2:2-13636 (13636) [002] d..1 29476.538121: clk_disable: gcc_ufs_phy_axi_clk_src
17115          <idle>-0     (-----) [003] ...1 29476.538123: cpu_idle: state=4294967295 cpu_id=3
17116     kworker/2:2-13636 (13636) [002] d..1 29476.538127: clk_disable: gcc_ufs_phy_ahb_clk
17117          <idle>-0     (-----) [003] d..1 29476.538128: cpu_idle: state=0 cpu_id=3
17118     kworker/2:2-13636 (13636) [002] d..1 29476.538135: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
17119     kworker/2:2-13636 (13636) [002] d..1 29476.538140: clk_disable: gcc_ufs_phy_unipro_core_clk
17120     kworker/2:2-13636 (13636) [002] d..1 29476.538149: clk_disable: gcc_ufs_phy_unipro_core_clk_src
17121     kworker/2:2-13636 (13636) [002] d..1 29476.538155: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
17122     kworker/2:2-13636 (13636) [002] d..1 29476.538159: clk_disable: gcc_ufs_phy_ice_core_clk
17123     kworker/2:2-13636 (13636) [002] d..1 29476.538166: clk_disable: gcc_ufs_phy_ice_core_clk_src
17124     kworker/2:2-13636 (13636) [002] d..1 29476.538242: clk_disable: gcc_ufs_phy_tx_symbol_0_clk
17125          <idle>-0     (-----) [003] ...1 29476.538273: cpu_idle: state=4294967295 cpu_id=3
17126          <idle>-0     (-----) [003] d..1 29476.538278: cpu_idle: state=0 cpu_id=3
17127     kworker/2:2-13636 (13636) [002] d..1 29476.538754: clk_disable: gcc_ufs_phy_rx_symbol_0_clk
17128     kworker/2:2-13636 (13636) [002] d..1 29476.539264: clk_disable: gcc_ufs_phy_rx_symbol_1_clk
17129     kworker/2:2-13636 (13636) [002] d..2 29476.539997: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17130          <idle>-0     (-----) [002] d..1 29476.540017: cpu_idle: state=0 cpu_id=2
17131          <idle>-0     (-----) [003] d.s3 29476.540042: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17132          <idle>-0     (-----) [003] d.s4 29476.540053: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
17133          <idle>-0     (-----) [003] d.s4 29476.540063: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17134          <idle>-0     (-----) [002] .n.1 29476.540070: cpu_idle: state=4294967295 cpu_id=2
17135          <idle>-0     (-----) [003] ...1 29476.540073: cpu_idle: state=4294967295 cpu_id=3
17136          <idle>-0     (-----) [003] d..1 29476.540078: cpu_idle: state=0 cpu_id=3
17137          <idle>-0     (-----) [002] d..2 29476.540083: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17138     kworker/2:2-13636 (13636) [002] d..2 29476.540177: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17139          <idle>-0     (-----) [002] d..1 29476.540190: cpu_idle: state=0 cpu_id=2
17140          <idle>-0     (-----) [000] d.s2 29476.540428: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17141          <idle>-0     (-----) [000] dns3 29476.540453: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17142          <idle>-0     (-----) [000] dns3 29476.540460: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17143          <idle>-0     (-----) [000] dns4 29476.540502: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17144          <idle>-0     (-----) [000] .n.1 29476.540527: cpu_idle: state=4294967295 cpu_id=0
17145          <idle>-0     (-----) [000] d..2 29476.540540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17146     rcu_preempt-7     (    7) [000] d..2 29476.540568: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17147     rcu_preempt-7     (    7) [000] d..3 29476.540608: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17148     rcu_preempt-7     (    7) [000] d..2 29476.540626: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
17149         rcuop/0-10    (   10) [000] d..2 29476.540634: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
17150         rcuop/0-10    (   10) [000] d..3 29476.540680: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
17151         rcuop/0-10    (   10) [000] d..2 29476.540685: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17152         rcuop/0-10    (   10) [000] d..3 29476.540697: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17153         rcuop/0-10    (   10) [000] d..2 29476.540707: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
17154         rcuop/1-21    (   21) [000] d..2 29476.540732: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17155     rcu_preempt-7     (    7) [000] d..2 29476.540747: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17156  kworker/u16:16-25995 (25995) [000] d..2 29476.540830: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17157          <idle>-0     (-----) [000] d..1 29476.540844: cpu_idle: state=0 cpu_id=0
17158          <idle>-0     (-----) [002] ...1 29476.541562: cpu_idle: state=4294967295 cpu_id=2
17159          <idle>-0     (-----) [002] d..1 29476.541567: cpu_idle: state=0 cpu_id=2
17160          <idle>-0     (-----) [003] d.s3 29476.543765: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17161          <idle>-0     (-----) [003] dns4 29476.543788: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17162          <idle>-0     (-----) [003] dns3 29476.543796: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17163          <idle>-0     (-----) [003] dns4 29476.543838: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17164          <idle>-0     (-----) [003] .n.1 29476.543850: cpu_idle: state=4294967295 cpu_id=3
17165          <idle>-0     (-----) [003] d..2 29476.543866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
17166          <idle>-0     (-----) [000] ...1 29476.543898: cpu_idle: state=4294967295 cpu_id=0
17167          <idle>-0     (-----) [002] ...1 29476.543903: cpu_idle: state=4294967295 cpu_id=2
17168          <idle>-0     (-----) [001] ...1 29476.543903: cpu_idle: state=4294967295 cpu_id=1
17169          <idle>-0     (-----) [000] d..1 29476.543905: cpu_idle: state=2 cpu_id=0
17170          <idle>-0     (-----) [002] d..1 29476.543908: cpu_idle: state=2 cpu_id=2
17171          <idle>-0     (-----) [001] d..1 29476.543909: cpu_idle: state=2 cpu_id=1
17172     kworker/3:1-12662 (12662) [003] d..2 29476.543910: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17173  kworker/u16:16-25995 (25995) [003] .... 29476.543940: clk_set_rate: l3_cluster0_vote_clk 300000000
17174  kworker/u16:16-25995 (25995) [003] .... 29476.543945: clk_set_rate: l3_clk 300000000
17175  kworker/u16:16-25995 (25995) [003] d..2 29476.544004: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17176          <idle>-0     (-----) [003] d..1 29476.544021: cpu_idle: state=2 cpu_id=3
17177          <idle>-0     (-----) [000] d.s2 29476.547454: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17178          <idle>-0     (-----) [000] dns3 29476.547481: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17179          <idle>-0     (-----) [000] .n.1 29476.547496: cpu_idle: state=4294967295 cpu_id=0
17180          <idle>-0     (-----) [000] d..2 29476.547513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17181     rcu_preempt-7     (    7) [000] d..2 29476.547530: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17182     rcu_preempt-7     (    7) [000] d..3 29476.547550: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17183     rcu_preempt-7     (    7) [000] d..2 29476.547563: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
17184         rcuop/0-10    (   10) [000] d..2 29476.547570: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
17185         rcuop/0-10    (   10) [000] d..3 29476.547585: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
17186         rcuop/0-10    (   10) [000] d..2 29476.547596: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
17187         rcuop/1-21    (   21) [000] d..2 29476.547639: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17188          <idle>-0     (-----) [000] d..1 29476.547661: cpu_idle: state=0 cpu_id=0
17189          <idle>-0     (-----) [000] d..2 29476.553674: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17190          <idle>-0     (-----) [000] dn.3 29476.553686: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17191          <idle>-0     (-----) [000] .n.1 29476.553691: cpu_idle: state=4294967295 cpu_id=0
17192          <idle>-0     (-----) [000] d..2 29476.553706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17193     ksoftirqd/0-3     (    3) [000] d.s2 29476.553718: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17194     ksoftirqd/0-3     (    3) [000] d.s3 29476.553759: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17195     ksoftirqd/0-3     (    3) [000] d..2 29476.553811: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17196  kworker/u16:16-25995 (25995) [000] d..2 29476.554064: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
17197          <idle>-0     (-----) [000] d..1 29476.554084: cpu_idle: state=2 cpu_id=0
17198          <idle>-0     (-----) [003] d.s3 29476.554373: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17199          <idle>-0     (-----) [003] d.s4 29476.554392: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17200          <idle>-0     (-----) [003] d.s4 29476.554404: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17201          <idle>-0     (-----) [003] ...1 29476.554421: cpu_idle: state=4294967295 cpu_id=3
17202          <idle>-0     (-----) [003] d..1 29476.554432: cpu_idle: state=2 cpu_id=3
17203          <idle>-0     (-----) [000] .n.1 29476.554718: cpu_idle: state=4294967295 cpu_id=0
17204          <idle>-0     (-----) [000] d..2 29476.554744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17205  kworker/u16:16-25995 (25995) [000] d..2 29476.554825: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17206          <idle>-0     (-----) [000] d..1 29476.554846: cpu_idle: state=0 cpu_id=0
17207          <idle>-0     (-----) [000] d..2 29476.560865: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17208          <idle>-0     (-----) [000] dn.3 29476.560881: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17209          <idle>-0     (-----) [000] dnH3 29476.560972: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17210          <idle>-0     (-----) [000] dnH3 29476.560992: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17211          <idle>-0     (-----) [000] dnH4 29476.561009: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17212          <idle>-0     (-----) [000] .n.1 29476.561024: cpu_idle: state=4294967295 cpu_id=0
17213          <idle>-0     (-----) [000] d..2 29476.561044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17214     ksoftirqd/0-3     (    3) [000] d..2 29476.561075: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17215          <idle>-0     (-----) [000] d..1 29476.561089: cpu_idle: state=2 cpu_id=0
17216          <idle>-0     (-----) [002] .n.1 29476.561317: cpu_idle: state=4294967295 cpu_id=2
17217          <idle>-0     (-----) [002] d..2 29476.561344: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17218         sugov:0-559   (  559) [002] .... 29476.561379: clk_set_rate: pwrcl_clk 748800000
17219         sugov:0-559   (  559) [002] .... 29476.561390: clk_set_rate: cpu3_pwrcl_clk 825600000
17220         sugov:0-559   (  559) [002] .... 29476.561403: clk_set_rate: cpu2_pwrcl_clk 825600000
17221         sugov:0-559   (  559) [002] .... 29476.561414: clk_set_rate: cpu1_pwrcl_clk 825600000
17222         sugov:0-559   (  559) [002] .... 29476.561424: clk_set_rate: cpu0_pwrcl_clk 748800000
17223         sugov:0-559   (  559) [002] .... 29476.561542: cpu_frequency: state=748800 cpu_id=0
17224         sugov:0-559   (  559) [002] .... 29476.561560: cpu_frequency: state=748800 cpu_id=1
17225         sugov:0-559   (  559) [002] .... 29476.561568: cpu_frequency: state=748800 cpu_id=2
17226         sugov:0-559   (  559) [002] .... 29476.561572: cpu_frequency: state=748800 cpu_id=3
17227         sugov:0-559   (  559) [002] d..2 29476.561612: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17228          <idle>-0     (-----) [002] d..1 29476.561632: cpu_idle: state=2 cpu_id=2
17229          <idle>-0     (-----) [006] dnh2 29476.562085: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17230          <idle>-0     (-----) [006] .n.1 29476.562094: cpu_idle: state=4294967295 cpu_id=6
17231          <idle>-0     (-----) [006] d..2 29476.562106: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17232         sugov:4-560   (  560) [006] d..2 29476.562132: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17233          <idle>-0     (-----) [006] d..1 29476.562144: cpu_idle: state=2 cpu_id=6
17234          <idle>-0     (-----) [000] ...1 29476.588758: cpu_idle: state=4294967295 cpu_id=0
17235          <idle>-0     (-----) [000] d..1 29476.588857: cpu_idle: state=2 cpu_id=0
17236          <idle>-0     (-----) [001] d.H3 29476.589067: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17237          <idle>-0     (-----) [001] d.H3 29476.589237: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17238          <idle>-0     (-----) [001] d.H4 29476.589339: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17239          <idle>-0     (-----) [001] d.s3 29476.589400: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17240          <idle>-0     (-----) [001] dns4 29476.589481: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17241          <idle>-0     (-----) [001] dns3 29476.589513: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17242          <idle>-0     (-----) [001] dns4 29476.589620: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17243          <idle>-0     (-----) [002] .n.1 29476.589709: cpu_idle: state=4294967295 cpu_id=2
17244          <idle>-0     (-----) [001] .n.1 29476.589771: cpu_idle: state=4294967295 cpu_id=1
17245          <idle>-0     (-----) [002] d..2 29476.589820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17246          <idle>-0     (-----) [001] d..2 29476.589824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17247         sugov:0-559   (  559) [002] .... 29476.589981: clk_set_rate: pwrcl_clk 652800000
17248         sugov:0-559   (  559) [002] .... 29476.590081: clk_set_rate: cpu3_pwrcl_clk 748800000
17249         sugov:0-559   (  559) [002] .... 29476.590100: clk_set_rate: cpu2_pwrcl_clk 748800000
17250         sugov:0-559   (  559) [002] .... 29476.590112: clk_set_rate: cpu1_pwrcl_clk 748800000
17251         sugov:0-559   (  559) [002] .... 29476.590123: clk_set_rate: cpu0_pwrcl_clk 652800000
17252     kworker/1:1-13678 (13678) [001] d..2 29476.590243: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
17253         sugov:0-559   (  559) [002] .... 29476.590244: cpu_frequency: state=652800 cpu_id=0
17254          <idle>-0     (-----) [001] d..1 29476.590280: cpu_idle: state=2 cpu_id=1
17255         sugov:0-559   (  559) [002] .... 29476.590348: cpu_frequency: state=652800 cpu_id=1
17256         sugov:0-559   (  559) [002] .... 29476.590355: cpu_frequency: state=652800 cpu_id=2
17257         sugov:0-559   (  559) [002] .... 29476.590360: cpu_frequency: state=652800 cpu_id=3
17258          <idle>-0     (-----) [007] dnh2 29476.590370: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17259          <idle>-0     (-----) [007] .n.1 29476.590390: cpu_idle: state=4294967295 cpu_id=7
17260          <idle>-0     (-----) [007] d..2 29476.590416: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17261         sugov:0-559   (  559) [002] d..2 29476.590419: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17262         sugov:4-560   (  560) [007] d..2 29476.590472: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
17263          <idle>-0     (-----) [007] d..1 29476.590497: cpu_idle: state=2 cpu_id=7
17264          <idle>-0     (-----) [000] d.h3 29476.591171: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17265          <idle>-0     (-----) [000] dnh4 29476.591210: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17266          <idle>-0     (-----) [000] .n.1 29476.591250: cpu_idle: state=4294967295 cpu_id=0
17267          <idle>-0     (-----) [000] d..2 29476.591284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17268     kworker/0:0-13450 (13450) [000] d..2 29476.591308: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17269     kworker/0:0-13450 (13450) [000] d..3 29476.591331: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
17270     kworker/0:0-13450 (13450) [000] d..3 29476.591349: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17271     kworker/0:0-13450 (13450) [000] d..2 29476.591398: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17272          <idle>-0     (-----) [000] d..1 29476.591418: cpu_idle: state=2 cpu_id=0
17273  kworker/u16:16-25995 (25995) [002] d..2 29476.591650: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17274          <idle>-0     (-----) [001] .n.1 29476.591661: cpu_idle: state=4294967295 cpu_id=1
17275          <idle>-0     (-----) [002] d..1 29476.591682: cpu_idle: state=2 cpu_id=2
17276          <idle>-0     (-----) [001] d..2 29476.591694: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17277     kworker/1:1-13678 (13678) [001] d..2 29476.591892: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17278          <idle>-0     (-----) [001] d..1 29476.591912: cpu_idle: state=2 cpu_id=1
17279          <idle>-0     (-----) [003] d.s3 29476.592149: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17280          <idle>-0     (-----) [003] d.s4 29476.592273: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17281          <idle>-0     (-----) [003] dns4 29476.592282: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17282          <idle>-0     (-----) [003] .n.1 29476.592301: cpu_idle: state=4294967295 cpu_id=3
17283          <idle>-0     (-----) [003] d..2 29476.592344: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17284  kworker/u16:16-25995 (25995) [003] d..2 29476.592416: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17285          <idle>-0     (-----) [003] d..1 29476.592445: cpu_idle: state=2 cpu_id=3
17286          <idle>-0     (-----) [000] d.h2 29476.841225: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
17287          <idle>-0     (-----) [000] dnh3 29476.841525: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
17288          <idle>-0     (-----) [001] d.h2 29476.841548: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
17289          <idle>-0     (-----) [001] dnh3 29476.841640: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
17290          <idle>-0     (-----) [001] .n.1 29476.841689: cpu_idle: state=4294967295 cpu_id=1
17291          <idle>-0     (-----) [000] dnh3 29476.842032: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17292          <idle>-0     (-----) [001] d..2 29476.842062: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
17293          <idle>-0     (-----) [000] dnh3 29476.842107: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17294          <idle>-0     (-----) [000] dnh4 29476.842166: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17295          <idle>-0     (-----) [000] .n.1 29476.842183: cpu_idle: state=4294967295 cpu_id=0
17296          <idle>-0     (-----) [000] d..2 29476.842228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
17297          <idle>-0     (-----) [002] .n.1 29476.842552: cpu_idle: state=4294967295 cpu_id=2
17298          <idle>-0     (-----) [002] d..2 29476.842608: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17299  CCodecWatchdog-23520 (  884) [000] d..2 29476.842669: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17300  CCodecWatchdog-24186 (23968) [001] d..2 29476.842671: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17301          <idle>-0     (-----) [000] d..2 29476.842689: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17302         sugov:0-559   (  559) [002] d..2 29476.842719: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17303          <idle>-0     (-----) [000] dn.3 29476.842719: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17304          <idle>-0     (-----) [000] d..2 29476.842743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17305          <idle>-0     (-----) [002] d..1 29476.842766: cpu_idle: state=2 cpu_id=2
17306          <idle>-0     (-----) [001] d..1 29476.842767: cpu_idle: state=2 cpu_id=1
17307     ksoftirqd/0-3     (    3) [000] d.s2 29476.842827: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17308     ksoftirqd/0-3     (    3) [000] d.s3 29476.842970: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17309     ksoftirqd/0-3     (    3) [000] d.s2 29476.843002: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17310     ksoftirqd/0-3     (    3) [000] d.s3 29476.843034: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17311     ksoftirqd/0-3     (    3) [000] d..2 29476.843075: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17312          <idle>-0     (-----) [007] dnh2 29476.843277: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17313     kworker/0:0-13450 (13450) [000] d..2 29476.843278: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17314          <idle>-0     (-----) [007] .n.1 29476.843296: cpu_idle: state=4294967295 cpu_id=7
17315          <idle>-0     (-----) [007] d..2 29476.843321: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17316         sugov:4-560   (  560) [007] d..2 29476.843366: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
17317          <idle>-0     (-----) [007] d..1 29476.843390: cpu_idle: state=2 cpu_id=7
17318  kworker/u16:16-25995 (25995) [000] d..2 29476.844645: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
17319          <idle>-0     (-----) [000] d..1 29476.844675: cpu_idle: state=2 cpu_id=0
17320          <idle>-0     (-----) [003] d.s3 29476.845104: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17321          <idle>-0     (-----) [003] d.s4 29476.845188: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17322          <idle>-0     (-----) [003] dns4 29476.845207: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17323          <idle>-0     (-----) [003] .n.1 29476.845233: cpu_idle: state=4294967295 cpu_id=3
17324          <idle>-0     (-----) [003] d..2 29476.845281: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17325  kworker/u16:16-25995 (25995) [003] d..2 29476.845465: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17326          <idle>-0     (-----) [003] d..1 29476.845494: cpu_idle: state=2 cpu_id=3
17327          <idle>-0     (-----) [005] d..2 29477.024873: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
17328          <idle>-0     (-----) [005] dn.3 29477.024980: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
17329          <idle>-0     (-----) [005] dnH3 29477.025200: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17330          <idle>-0     (-----) [000] ...1 29477.025228: cpu_idle: state=4294967295 cpu_id=0
17331          <idle>-0     (-----) [005] dnH4 29477.025264: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17332          <idle>-0     (-----) [005] dnH3 29477.025272: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17333          <idle>-0     (-----) [000] d..1 29477.025309: cpu_idle: state=2 cpu_id=0
17334          <idle>-0     (-----) [005] dns3 29477.025334: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17335          <idle>-0     (-----) [005] dns3 29477.025444: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
17336          <idle>-0     (-----) [005] dns4 29477.025462: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
17337          <idle>-0     (-----) [005] .n.1 29477.025479: cpu_idle: state=4294967295 cpu_id=5
17338          <idle>-0     (-----) [005] d..2 29477.025551: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
17339     ksoftirqd/5-50    (   50) [005] d..2 29477.025593: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
17340          <idle>-0     (-----) [002] dnh2 29477.025729: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17341          <idle>-0     (-----) [002] .n.1 29477.025753: cpu_idle: state=4294967295 cpu_id=2
17342          <idle>-0     (-----) [002] d..2 29477.025798: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17343     kworker/5:0-24254 (24254) [005] d..2 29477.025818: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
17344          <idle>-0     (-----) [005] d..1 29477.025844: cpu_idle: state=2 cpu_id=5
17345          <idle>-0     (-----) [003] dnh2 29477.025858: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17346          <idle>-0     (-----) [003] .n.1 29477.025880: cpu_idle: state=4294967295 cpu_id=3
17347         sugov:0-559   (  559) [002] d..2 29477.025908: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17348          <idle>-0     (-----) [003] d..2 29477.025921: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17349          <idle>-0     (-----) [002] d..1 29477.025939: cpu_idle: state=2 cpu_id=2
17350          <idle>-0     (-----) [007] .n.1 29477.025948: cpu_idle: state=4294967295 cpu_id=7
17351          <idle>-0     (-----) [007] d..2 29477.025984: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17352         sugov:4-560   (  560) [007] d..2 29477.026030: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
17353          <idle>-0     (-----) [007] d..1 29477.026050: cpu_idle: state=2 cpu_id=7
17354  kworker/u16:16-25995 (25995) [003] d..2 29477.027468: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17355          <idle>-0     (-----) [003] d..1 29477.027503: cpu_idle: state=2 cpu_id=3
17356          <idle>-0     (-----) [003] d.h2 29477.224951: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
17357          <idle>-0     (-----) [000] d..2 29477.225091: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17358          <idle>-0     (-----) [003] dnh3 29477.225207: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
17359          <idle>-0     (-----) [000] dn.3 29477.225211: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17360          <idle>-0     (-----) [000] .n.1 29477.225249: cpu_idle: state=4294967295 cpu_id=0
17361          <idle>-0     (-----) [000] d..2 29477.225577: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17362     ksoftirqd/0-3     (    3) [000] d.s2 29477.225677: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17363          <idle>-0     (-----) [003] dnh3 29477.225690: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17364          <idle>-0     (-----) [003] dnh3 29477.225737: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17365          <idle>-0     (-----) [003] dnh4 29477.225777: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17366          <idle>-0     (-----) [003] .n.1 29477.225793: cpu_idle: state=4294967295 cpu_id=3
17367          <idle>-0     (-----) [003] d..2 29477.225832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
17368     ksoftirqd/0-3     (    3) [000] d.s3 29477.225901: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17369     ksoftirqd/0-3     (    3) [000] d.s2 29477.225945: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17370     ksoftirqd/0-3     (    3) [000] d.s3 29477.225978: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17371     ksoftirqd/0-3     (    3) [000] d..2 29477.226034: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17372          <idle>-0     (-----) [002] .n.1 29477.226162: cpu_idle: state=4294967295 cpu_id=2
17373          <idle>-0     (-----) [002] d..2 29477.226222: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17374     kworker/0:0-13450 (13450) [000] d..2 29477.226252: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17375 bluetooth@1.0-s-24508 (  759) [003] d..2 29477.226292: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17376         sugov:0-559   (  559) [002] d..2 29477.226324: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17377          <idle>-0     (-----) [003] d..1 29477.226374: cpu_idle: state=2 cpu_id=3
17378          <idle>-0     (-----) [002] d..1 29477.226374: cpu_idle: state=2 cpu_id=2
17379  kworker/u16:16-25995 (25995) [000] d..2 29477.226889: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17380          <idle>-0     (-----) [007] dnh2 29477.226904: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17381          <idle>-0     (-----) [000] d..1 29477.226921: cpu_idle: state=2 cpu_id=0
17382          <idle>-0     (-----) [007] .n.1 29477.226925: cpu_idle: state=4294967295 cpu_id=7
17383          <idle>-0     (-----) [007] d..2 29477.226950: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17384         sugov:4-560   (  560) [007] d..2 29477.226990: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
17385          <idle>-0     (-----) [007] d..1 29477.227013: cpu_idle: state=2 cpu_id=7
17386          <idle>-0     (-----) [003] d.h2 29477.383812: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
17387          <idle>-0     (-----) [000] d..2 29477.383959: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17388          <idle>-0     (-----) [003] dnh3 29477.384092: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
17389          <idle>-0     (-----) [000] dn.3 29477.384093: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17390          <idle>-0     (-----) [000] dnh2 29477.384149: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
17391          <idle>-0     (-----) [000] dnh3 29477.384269: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=001
17392          <idle>-0     (-----) [000] .n.1 29477.384581: cpu_idle: state=4294967295 cpu_id=0
17393          <idle>-0     (-----) [003] dnH3 29477.384583: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17394          <idle>-0     (-----) [003] dnH3 29477.384654: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17395          <idle>-0     (-----) [001] .n.1 29477.384660: cpu_idle: state=4294967295 cpu_id=1
17396          <idle>-0     (-----) [003] dnH4 29477.384711: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17397          <idle>-0     (-----) [000] d..2 29477.384717: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17398          <idle>-0     (-----) [001] d..2 29477.384730: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
17399          <idle>-0     (-----) [003] dns3 29477.384764: sched_waking: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
17400          <idle>-0     (-----) [003] dns4 29477.384796: sched_wakeup: comm=kworker/3:1H pid=697 prio=100 target_cpu=003
17401          <idle>-0     (-----) [003] dns3 29477.384825: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17402          <idle>-0     (-----) [003] dns4 29477.384875: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17403     ksoftirqd/0-3     (    3) [000] d..2 29477.384892: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17404          <idle>-0     (-----) [003] dns3 29477.384922: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17405          <idle>-0     (-----) [003] dns4 29477.385017: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
17406          <idle>-0     (-----) [003] dns3 29477.385053: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17407          <idle>-0     (-----) [003] dns4 29477.385080: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
17408          <idle>-0     (-----) [002] .n.1 29477.385092: cpu_idle: state=4294967295 cpu_id=2
17409          <idle>-0     (-----) [002] d..2 29477.385150: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17410          <idle>-0     (-----) [003] .n.1 29477.385172: cpu_idle: state=4294967295 cpu_id=3
17411          <idle>-0     (-----) [003] d..2 29477.385203: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
17412         sugov:0-559   (  559) [002] d..2 29477.385229: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
17413  kworker/u16:10-23868 (23868) [002] d..2 29477.385329: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17414          <idle>-0     (-----) [002] d..1 29477.385438: cpu_idle: state=2 cpu_id=2
17415 PowerManagerSer-24006 (23968) [001] d..2 29477.385557: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17416          <idle>-0     (-----) [001] d..1 29477.385591: cpu_idle: state=2 cpu_id=1
17417 oid.setupwizard-24795 (24795) [003] d..2 29477.385592: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1H next_pid=697 next_prio=100
17418    kworker/3:1H-697   (  697) [003] d..2 29477.385631: sched_switch: prev_comm=kworker/3:1H prev_pid=697 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
17419          <idle>-0     (-----) [007] dnh2 29477.385811: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
17420     kworker/3:1-12662 (12662) [003] d..2 29477.385821: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17421  kworker/u16:16-25995 (25995) [000] d..2 29477.385825: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17422          <idle>-0     (-----) [007] .n.1 29477.385828: cpu_idle: state=4294967295 cpu_id=7
17423          <idle>-0     (-----) [007] d..2 29477.385851: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17424     kworker/3:1-12662 (12662) [003] d..3 29477.385866: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17425          <idle>-0     (-----) [000] d..2 29477.385888: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17426         sugov:4-560   (  560) [007] d..2 29477.385896: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
17427          <idle>-0     (-----) [007] d..1 29477.385918: cpu_idle: state=2 cpu_id=7
17428     kworker/0:0-13450 (13450) [000] d..2 29477.385940: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17429     kworker/3:1-12662 (12662) [003] d..2 29477.385942: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17430          <idle>-0     (-----) [000] d..1 29477.385962: cpu_idle: state=2 cpu_id=0
17431          <idle>-0     (-----) [003] d..1 29477.385971: cpu_idle: state=2 cpu_id=3
17432          <idle>-0     (-----) [000] ...1 29477.602146: cpu_idle: state=4294967295 cpu_id=0
17433          <idle>-0     (-----) [000] d..1 29477.602249: cpu_idle: state=2 cpu_id=0
17434          <idle>-0     (-----) [001] d.H3 29477.602480: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
17435          <idle>-0     (-----) [001] d.H3 29477.602652: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17436          <idle>-0     (-----) [001] d.H4 29477.602752: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17437          <idle>-0     (-----) [001] d.s3 29477.602817: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17438          <idle>-0     (-----) [001] dns4 29477.602910: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17439          <idle>-0     (-----) [001] dns3 29477.602943: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17440          <idle>-0     (-----) [001] dns4 29477.603051: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17441          <idle>-0     (-----) [002] .n.1 29477.603134: cpu_idle: state=4294967295 cpu_id=2
17442          <idle>-0     (-----) [001] .n.1 29477.603202: cpu_idle: state=4294967295 cpu_id=1
17443          <idle>-0     (-----) [002] d..2 29477.603248: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17444          <idle>-0     (-----) [001] d..2 29477.603258: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17445         sugov:0-559   (  559) [002] d..2 29477.603348: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17446     kworker/1:1-13678 (13678) [001] d..3 29477.603574: sched_waking: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
17447     kworker/1:1-13678 (13678) [001] d..3 29477.603617: sched_wakeup: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
17448     kworker/1:1-13678 (13678) [001] d..2 29477.603631: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=kworker/1:2 next_pid=13650 next_prio=120
17449          <idle>-0     (-----) [006] dnh2 29477.603781: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17450          <idle>-0     (-----) [006] .n.1 29477.603802: cpu_idle: state=4294967295 cpu_id=6
17451          <idle>-0     (-----) [006] d..2 29477.603826: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17452         sugov:4-560   (  560) [006] d..2 29477.603902: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17453          <idle>-0     (-----) [006] d..1 29477.603927: cpu_idle: state=2 cpu_id=6
17454     kworker/1:2-13650 (13650) [001] d..2 29477.603961: sched_switch: prev_comm=kworker/1:2 prev_pid=13650 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17455          <idle>-0     (-----) [001] d..1 29477.604035: cpu_idle: state=2 cpu_id=1
17456          <idle>-0     (-----) [000] d.h3 29477.604613: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17457          <idle>-0     (-----) [000] dnh4 29477.604653: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17458          <idle>-0     (-----) [000] .n.1 29477.604694: cpu_idle: state=4294967295 cpu_id=0
17459          <idle>-0     (-----) [000] d..2 29477.604729: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17460     kworker/0:0-13450 (13450) [000] d..2 29477.604753: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17461  kworker/u16:16-25995 (25995) [002] d..2 29477.604767: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17462     kworker/0:0-13450 (13450) [000] d..3 29477.604777: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
17463     kworker/0:0-13450 (13450) [000] d..3 29477.604795: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17464          <idle>-0     (-----) [002] d..1 29477.604800: cpu_idle: state=2 cpu_id=2
17465     kworker/0:0-13450 (13450) [000] d..2 29477.604845: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17466          <idle>-0     (-----) [000] d..1 29477.604868: cpu_idle: state=2 cpu_id=0
17467          <idle>-0     (-----) [001] .n.1 29477.605147: cpu_idle: state=4294967295 cpu_id=1
17468          <idle>-0     (-----) [001] d..2 29477.605175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17469          <idle>-0     (-----) [003] d.s3 29477.605262: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17470     kworker/1:1-13678 (13678) [001] d..2 29477.605368: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17471          <idle>-0     (-----) [003] d.s4 29477.605375: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17472          <idle>-0     (-----) [003] dns4 29477.605385: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17473          <idle>-0     (-----) [001] d..1 29477.605388: cpu_idle: state=2 cpu_id=1
17474          <idle>-0     (-----) [003] .n.1 29477.605407: cpu_idle: state=4294967295 cpu_id=3
17475          <idle>-0     (-----) [003] d..2 29477.605452: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17476  kworker/u16:16-25995 (25995) [003] d..2 29477.605532: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17477          <idle>-0     (-----) [003] d..1 29477.605562: cpu_idle: state=2 cpu_id=3
17478          <idle>-0     (-----) [000] ...1 29477.815492: cpu_idle: state=4294967295 cpu_id=0
17479          <idle>-0     (-----) [000] d..1 29477.815595: cpu_idle: state=2 cpu_id=0
17480          <idle>-0     (-----) [002] d.H3 29477.815830: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17481          <idle>-0     (-----) [002] d.H3 29477.815958: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17482          <idle>-0     (-----) [002] dnH4 29477.816047: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17483          <idle>-0     (-----) [002] dns3 29477.816119: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17484          <idle>-0     (-----) [002] dns4 29477.816234: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17485          <idle>-0     (-----) [002] dns3 29477.816280: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17486          <idle>-0     (-----) [002] dns4 29477.816505: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17487          <idle>-0     (-----) [002] .n.1 29477.816686: cpu_idle: state=4294967295 cpu_id=2
17488          <idle>-0     (-----) [002] d..2 29477.816768: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17489         sugov:0-559   (  559) [002] d..2 29477.816865: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17490          <idle>-0     (-----) [006] dnh2 29477.817095: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17491          <idle>-0     (-----) [006] .n.1 29477.817119: cpu_idle: state=4294967295 cpu_id=6
17492          <idle>-0     (-----) [006] d..2 29477.817155: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17493     kworker/2:2-13636 (13636) [002] d.H3 29477.817238: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17494         sugov:4-560   (  560) [006] d..2 29477.817282: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17495     kworker/2:2-13636 (13636) [002] d.H3 29477.817302: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17496          <idle>-0     (-----) [006] d..1 29477.817311: cpu_idle: state=2 cpu_id=6
17497     kworker/2:2-13636 (13636) [002] d.H4 29477.817349: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17498     kworker/2:2-13636 (13636) [002] d..2 29477.817429: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17499          <idle>-0     (-----) [003] .n.1 29477.817891: cpu_idle: state=4294967295 cpu_id=3
17500          <idle>-0     (-----) [003] d..2 29477.817942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17501         sugov:0-559   (  559) [003] d..2 29477.818006: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17502          <idle>-0     (-----) [003] d..1 29477.818035: cpu_idle: state=2 cpu_id=3
17503  kworker/u16:16-25995 (25995) [002] d..2 29477.818533: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17504          <idle>-0     (-----) [002] d..1 29477.818564: cpu_idle: state=2 cpu_id=2
17505          <idle>-0     (-----) [006] dnh2 29477.818673: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17506          <idle>-0     (-----) [006] .n.1 29477.818684: cpu_idle: state=4294967295 cpu_id=6
17507          <idle>-0     (-----) [006] d..2 29477.818701: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17508         sugov:4-560   (  560) [006] d..2 29477.818723: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17509          <idle>-0     (-----) [006] d..1 29477.818735: cpu_idle: state=2 cpu_id=6
17510          <idle>-0     (-----) [003] d.s3 29477.818923: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17511          <idle>-0     (-----) [003] d.s4 29477.818994: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17512          <idle>-0     (-----) [003] dns4 29477.819012: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17513          <idle>-0     (-----) [003] .n.1 29477.819027: cpu_idle: state=4294967295 cpu_id=3
17514          <idle>-0     (-----) [003] d..2 29477.819049: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17515  kworker/u16:16-25995 (25995) [003] d..2 29477.819214: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17516          <idle>-0     (-----) [003] d..1 29477.819233: cpu_idle: state=2 cpu_id=3
17517          <idle>-0     (-----) [005] d..2 29478.024905: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
17518          <idle>-0     (-----) [005] dn.3 29478.025010: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
17519          <idle>-0     (-----) [005] dnH3 29478.025230: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17520          <idle>-0     (-----) [000] ...1 29478.025258: cpu_idle: state=4294967295 cpu_id=0
17521          <idle>-0     (-----) [005] dnH4 29478.025292: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17522          <idle>-0     (-----) [005] dnH3 29478.025307: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17523          <idle>-0     (-----) [000] d..1 29478.025336: cpu_idle: state=2 cpu_id=0
17524          <idle>-0     (-----) [005] dns3 29478.025367: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17525          <idle>-0     (-----) [005] dns3 29478.025443: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
17526          <idle>-0     (-----) [005] dns4 29478.025461: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
17527          <idle>-0     (-----) [005] .n.1 29478.025479: cpu_idle: state=4294967295 cpu_id=5
17528          <idle>-0     (-----) [005] d..2 29478.025551: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
17529     ksoftirqd/5-50    (   50) [005] d..2 29478.025589: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
17530          <idle>-0     (-----) [003] dnh2 29478.025780: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17531          <idle>-0     (-----) [003] dnh2 29478.025795: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17532          <idle>-0     (-----) [003] .n.1 29478.025810: cpu_idle: state=4294967295 cpu_id=3
17533     kworker/5:0-24254 (24254) [005] d..2 29478.025815: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
17534          <idle>-0     (-----) [005] d..1 29478.025841: cpu_idle: state=2 cpu_id=5
17535          <idle>-0     (-----) [003] d..2 29478.025850: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17536         sugov:0-559   (  559) [003] d..2 29478.025920: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17537          <idle>-0     (-----) [006] .n.1 29478.025924: cpu_idle: state=4294967295 cpu_id=6
17538          <idle>-0     (-----) [006] d..2 29478.025959: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17539         sugov:4-560   (  560) [006] d..2 29478.026008: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17540          <idle>-0     (-----) [006] d..1 29478.026029: cpu_idle: state=2 cpu_id=6
17541  kworker/u16:16-25995 (25995) [003] d..2 29478.026624: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17542          <idle>-0     (-----) [003] d..1 29478.026658: cpu_idle: state=2 cpu_id=3
17543          <idle>-0     (-----) [003] d.h2 29478.230983: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
17544          <idle>-0     (-----) [000] d..2 29478.231130: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17545          <idle>-0     (-----) [003] dnh3 29478.231232: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
17546          <idle>-0     (-----) [000] dn.3 29478.231250: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17547          <idle>-0     (-----) [000] .n.1 29478.231287: cpu_idle: state=4294967295 cpu_id=0
17548          <idle>-0     (-----) [000] d..2 29478.231611: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17549     ksoftirqd/0-3     (    3) [000] d.s2 29478.231713: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17550          <idle>-0     (-----) [003] dnh3 29478.231729: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17551          <idle>-0     (-----) [003] dnh3 29478.231773: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17552          <idle>-0     (-----) [003] dnh4 29478.231845: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17553          <idle>-0     (-----) [003] .n.1 29478.231862: cpu_idle: state=4294967295 cpu_id=3
17554          <idle>-0     (-----) [003] d..2 29478.231903: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
17555     ksoftirqd/0-3     (    3) [000] d.s3 29478.231919: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17556     ksoftirqd/0-3     (    3) [000] d.s2 29478.231961: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17557     ksoftirqd/0-3     (    3) [000] d.s3 29478.231992: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17558     ksoftirqd/0-3     (    3) [000] d..2 29478.232050: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17559          <idle>-0     (-----) [002] .n.1 29478.232226: cpu_idle: state=4294967295 cpu_id=2
17560     kworker/0:0-13450 (13450) [000] d..2 29478.232265: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17561          <idle>-0     (-----) [002] d..2 29478.232285: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17562 bluetooth@1.0-s-24508 (  759) [003] d..2 29478.232332: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17563         sugov:0-559   (  559) [002] d..2 29478.232383: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17564          <idle>-0     (-----) [002] d..1 29478.232413: cpu_idle: state=0 cpu_id=2
17565          <idle>-0     (-----) [003] d..1 29478.232414: cpu_idle: state=2 cpu_id=3
17566  kworker/u16:16-25995 (25995) [000] d..2 29478.232916: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17567          <idle>-0     (-----) [006] dnh2 29478.232930: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17568          <idle>-0     (-----) [000] d..1 29478.232947: cpu_idle: state=2 cpu_id=0
17569          <idle>-0     (-----) [006] .n.1 29478.232950: cpu_idle: state=4294967295 cpu_id=6
17570          <idle>-0     (-----) [006] d..2 29478.232975: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17571         sugov:4-560   (  560) [006] d..2 29478.233023: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17572          <idle>-0     (-----) [006] d..1 29478.233044: cpu_idle: state=2 cpu_id=6
17573          <idle>-0     (-----) [002] d.H3 29478.237311: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17574          <idle>-0     (-----) [002] d.H3 29478.237337: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17575          <idle>-0     (-----) [002] dnH4 29478.237353: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17576          <idle>-0     (-----) [002] dns3 29478.237372: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
17577          <idle>-0     (-----) [002] dns4 29478.237433: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17578          <idle>-0     (-----) [002] .n.1 29478.237495: cpu_idle: state=4294967295 cpu_id=2
17579          <idle>-0     (-----) [002] d..2 29478.237511: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17580         sugov:0-559   (  559) [002] d..2 29478.237532: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17581          <idle>-0     (-----) [006] dnh2 29478.238374: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17582          <idle>-0     (-----) [006] .n.1 29478.238384: cpu_idle: state=4294967295 cpu_id=6
17583          <idle>-0     (-----) [006] d..2 29478.238398: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17584         sugov:4-560   (  560) [006] d..2 29478.238424: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17585          <idle>-0     (-----) [006] d..1 29478.238433: cpu_idle: state=2 cpu_id=6
17586  kworker/u16:16-25995 (25995) [002] d..4 29478.238706: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17587  kworker/u16:16-25995 (25995) [002] dn.5 29478.238753: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17588  kworker/u16:16-25995 (25995) [002] d..2 29478.238954: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17589     kworker/2:2-13636 (13636) [002] d..2 29478.239950: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17590  kworker/u16:16-25995 (25995) [002] d..2 29478.239997: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17591          <idle>-0     (-----) [002] d..1 29478.240020: cpu_idle: state=2 cpu_id=2
17592          <idle>-0     (-----) [003] d.s3 29478.241124: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17593          <idle>-0     (-----) [003] d.s4 29478.241145: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
17594          <idle>-0     (-----) [003] d.s4 29478.241164: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17595          <idle>-0     (-----) [003] d..2 29478.241175: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17596          <idle>-0     (-----) [003] dn.3 29478.241194: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17597          <idle>-0     (-----) [003] .n.1 29478.241201: cpu_idle: state=4294967295 cpu_id=3
17598          <idle>-0     (-----) [003] d..2 29478.241226: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
17599     ksoftirqd/3-34    (   34) [003] d.s2 29478.241246: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17600     ksoftirqd/3-34    (   34) [003] d.s3 29478.241304: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17601     ksoftirqd/3-34    (   34) [003] d..2 29478.241326: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17602          <idle>-0     (-----) [002] .n.1 29478.241359: cpu_idle: state=4294967295 cpu_id=2
17603          <idle>-0     (-----) [002] d..2 29478.241418: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17604  kworker/u16:16-25995 (25995) [003] d..2 29478.241478: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17605          <idle>-0     (-----) [003] d..1 29478.241500: cpu_idle: state=2 cpu_id=3
17606     kworker/2:2-13636 (13636) [002] d..2 29478.241642: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17607          <idle>-0     (-----) [002] d..1 29478.241662: cpu_idle: state=2 cpu_id=2
17608          <idle>-0     (-----) [003] d.s3 29478.241841: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17609          <idle>-0     (-----) [003] d.s4 29478.241857: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
17610          <idle>-0     (-----) [003] d.s4 29478.241869: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17611          <idle>-0     (-----) [003] ...1 29478.241887: cpu_idle: state=4294967295 cpu_id=3
17612          <idle>-0     (-----) [003] d..1 29478.241897: cpu_idle: state=2 cpu_id=3
17613          <idle>-0     (-----) [002] .n.1 29478.242049: cpu_idle: state=4294967295 cpu_id=2
17614          <idle>-0     (-----) [002] d..2 29478.242076: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17615     kworker/2:2-13636 (13636) [002] d..1 29478.242132: clk_enable: gcc_ufs_phy_axi_clk_src
17616     kworker/2:2-13636 (13636) [002] d..1 29478.242156: clk_enable: gcc_ufs_phy_axi_clk
17617     kworker/2:2-13636 (13636) [002] d..1 29478.242172: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
17618     kworker/2:2-13636 (13636) [002] d..1 29478.242186: clk_enable: gcc_aggre_ufs_phy_axi_clk
17619     kworker/2:2-13636 (13636) [002] d..1 29478.242198: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
17620     kworker/2:2-13636 (13636) [002] d..1 29478.242208: clk_enable: gcc_ufs_phy_ahb_clk
17621     kworker/2:2-13636 (13636) [002] d..1 29478.242226: clk_enable: gcc_ufs_phy_unipro_core_clk_src
17622     kworker/2:2-13636 (13636) [002] d..1 29478.242236: clk_enable: gcc_ufs_phy_unipro_core_clk
17623     kworker/2:2-13636 (13636) [002] d..1 29478.242246: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
17624     kworker/2:2-13636 (13636) [002] d..1 29478.242260: clk_enable: gcc_ufs_phy_ice_core_clk_src
17625     kworker/2:2-13636 (13636) [002] d..1 29478.242268: clk_enable: gcc_ufs_phy_ice_core_clk
17626     kworker/2:2-13636 (13636) [002] d..1 29478.242277: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
17627     kworker/2:2-13636 (13636) [002] d..1 29478.242290: clk_enable: gcc_ufs_phy_tx_symbol_0_clk
17628     kworker/2:2-13636 (13636) [002] d..1 29478.242804: clk_enable: gcc_ufs_phy_rx_symbol_0_clk
17629     kworker/2:2-13636 (13636) [002] d..1 29478.243315: clk_enable: gcc_ufs_phy_rx_symbol_1_clk
17630     kworker/2:2-13636 (13636) [002] d..1 29478.243899: clk_enable: gcc_ufs_mem_clkref_clk
17631     kworker/2:2-13636 (13636) [002] d..1 29478.243917: clk_enable: gcc_ufs_phy_phy_aux_clk_src
17632     kworker/2:2-13636 (13636) [002] d..1 29478.243925: clk_enable: gcc_ufs_phy_phy_aux_clk
17633     kworker/2:2-13636 (13636) [002] d..1 29478.243935: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
17634     kworker/2:2-13636 (13636) [002] d..2 29478.244121: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17635          <idle>-0     (-----) [002] d..1 29478.244142: cpu_idle: state=2 cpu_id=2
17636          <idle>-0     (-----) [003] d.s3 29478.244391: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17637          <idle>-0     (-----) [003] d.s4 29478.244407: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
17638          <idle>-0     (-----) [003] d.s4 29478.244420: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17639          <idle>-0     (-----) [003] ...1 29478.244437: cpu_idle: state=4294967295 cpu_id=3
17640          <idle>-0     (-----) [003] d..1 29478.244448: cpu_idle: state=2 cpu_id=3
17641          <idle>-0     (-----) [002] .n.1 29478.244608: cpu_idle: state=4294967295 cpu_id=2
17642          <idle>-0     (-----) [002] d..2 29478.244635: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17643     kworker/2:2-13636 (13636) [002] d..2 29478.244764: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17644          <idle>-0     (-----) [002] d..1 29478.244793: cpu_idle: state=0 cpu_id=2
17645          <idle>-0     (-----) [003] d.s3 29478.245018: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17646          <idle>-0     (-----) [003] d.s4 29478.245039: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
17647          <idle>-0     (-----) [003] d.s4 29478.245054: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17648          <idle>-0     (-----) [002] .n.1 29478.245062: cpu_idle: state=4294967295 cpu_id=2
17649          <idle>-0     (-----) [003] ...1 29478.245076: cpu_idle: state=4294967295 cpu_id=3
17650          <idle>-0     (-----) [002] d..2 29478.245076: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17651          <idle>-0     (-----) [003] d..1 29478.245095: cpu_idle: state=0 cpu_id=3
17652     kworker/2:2-13636 (13636) [002] d..2 29478.245178: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17653          <idle>-0     (-----) [002] d..1 29478.245197: cpu_idle: state=0 cpu_id=2
17654          <idle>-0     (-----) [003] d.s3 29478.245580: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17655          <idle>-0     (-----) [003] d.s4 29478.245592: sched_blocked_reason: pid=13636 iowait=0 caller=wait_for_tx_done+0x34/0x120
17656          <idle>-0     (-----) [003] d.s4 29478.245603: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17657          <idle>-0     (-----) [002] .n.1 29478.245611: cpu_idle: state=4294967295 cpu_id=2
17658          <idle>-0     (-----) [003] ...1 29478.245619: cpu_idle: state=4294967295 cpu_id=3
17659          <idle>-0     (-----) [002] d..2 29478.245626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17660          <idle>-0     (-----) [003] d..1 29478.245626: cpu_idle: state=0 cpu_id=3
17661     kworker/2:2-13636 (13636) [002] d..2 29478.245754: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17662          <idle>-0     (-----) [002] d..1 29478.245771: cpu_idle: state=0 cpu_id=2
17663          <idle>-0     (-----) [001] d.h4 29478.246400: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17664          <idle>-0     (-----) [001] d.h5 29478.246426: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
17665          <idle>-0     (-----) [001] d.h5 29478.246444: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17666          <idle>-0     (-----) [002] .n.1 29478.246450: cpu_idle: state=4294967295 cpu_id=2
17667          <idle>-0     (-----) [002] d..2 29478.246465: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17668          <idle>-0     (-----) [001] ...1 29478.246480: cpu_idle: state=4294967295 cpu_id=1
17669          <idle>-0     (-----) [001] d..1 29478.246494: cpu_idle: state=2 cpu_id=1
17670     kworker/2:2-13636 (13636) [002] d..3 29478.246581: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
17671     kworker/2:2-13636 (13636) [002] d..4 29478.246638: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17672     kworker/2:2-13636 (13636) [002] d..2 29478.246695: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17673          <idle>-0     (-----) [003] ...1 29478.246767: cpu_idle: state=4294967295 cpu_id=3
17674          <idle>-0     (-----) [003] d..1 29478.246772: cpu_idle: state=0 cpu_id=3
17675  kworker/u16:16-25995 (25995) [002] d..2 29478.246783: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17676          <idle>-0     (-----) [002] d..1 29478.246804: cpu_idle: state=0 cpu_id=2
17677          <idle>-0     (-----) [000] ...1 29478.246935: cpu_idle: state=4294967295 cpu_id=0
17678          <idle>-0     (-----) [000] d..1 29478.246947: cpu_idle: state=0 cpu_id=0
17679          <idle>-0     (-----) [001] ...1 29478.246984: cpu_idle: state=4294967295 cpu_id=1
17680          <idle>-0     (-----) [001] d..1 29478.246996: cpu_idle: state=0 cpu_id=1
17681          <idle>-0     (-----) [001] d.h4 29478.247080: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17682          <idle>-0     (-----) [001] d.h5 29478.247113: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17683          <idle>-0     (-----) [002] .n.1 29478.247121: cpu_idle: state=4294967295 cpu_id=2
17684          <idle>-0     (-----) [002] d..2 29478.247145: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17685          <idle>-0     (-----) [001] d.s4 29478.247173: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17686          <idle>-0     (-----) [001] d.s5 29478.247188: sched_blocked_reason: pid=13636 iowait=1 caller=blk_execute_rq+0xc0/0x118
17687          <idle>-0     (-----) [001] d.s5 29478.247197: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17688  kworker/u16:16-25995 (25995) [002] d..2 29478.247208: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17689          <idle>-0     (-----) [001] d..2 29478.247240: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17690          <idle>-0     (-----) [001] dn.3 29478.247260: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17691     kworker/2:2-13636 (13636) [002] d..2 29478.247273: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
17692          <idle>-0     (-----) [001] dnh4 29478.247287: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17693          <idle>-0     (-----) [002] d..1 29478.247291: cpu_idle: state=0 cpu_id=2
17694          <idle>-0     (-----) [001] dnh5 29478.247297: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
17695          <idle>-0     (-----) [001] dnh5 29478.247306: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17696          <idle>-0     (-----) [002] .n.1 29478.247314: cpu_idle: state=4294967295 cpu_id=2
17697          <idle>-0     (-----) [001] .n.1 29478.247330: cpu_idle: state=4294967295 cpu_id=1
17698          <idle>-0     (-----) [002] d..2 29478.247330: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17699          <idle>-0     (-----) [001] d..2 29478.247358: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
17700     ksoftirqd/1-18    (   18) [001] d..2 29478.247413: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17701     kworker/2:2-13636 (13636) [002] d..3 29478.247426: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17702          <idle>-0     (-----) [001] d..1 29478.247431: cpu_idle: state=0 cpu_id=1
17703     kworker/2:2-13636 (13636) [002] d..4 29478.247454: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17704     kworker/2:2-13636 (13636) [002] d..2 29478.247589: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17705  kworker/u16:16-25995 (25995) [002] d..2 29478.247624: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17706          <idle>-0     (-----) [002] d..1 29478.247645: cpu_idle: state=0 cpu_id=2
17707          <idle>-0     (-----) [002] ...1 29478.249006: cpu_idle: state=4294967295 cpu_id=2
17708          <idle>-0     (-----) [002] d..1 29478.249012: cpu_idle: state=0 cpu_id=2
17709          <idle>-0     (-----) [001] d.H4 29478.250199: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17710          <idle>-0     (-----) [001] dnH5 29478.250250: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17711          <idle>-0     (-----) [001] dns2 29478.250352: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17712          <idle>-0     (-----) [001] dns3 29478.250365: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17713          <idle>-0     (-----) [001] .n.1 29478.250375: cpu_idle: state=4294967295 cpu_id=1
17714          <idle>-0     (-----) [001] d..2 29478.250392: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
17715     ksoftirqd/1-18    (   18) [001] d.s5 29478.250503: sched_waking: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
17716     ksoftirqd/1-18    (   18) [001] dns6 29478.250535: sched_wakeup: comm=kworker/1:1H pid=533 prio=100 target_cpu=001
17717     ksoftirqd/1-18    (   18) [001] d..2 29478.250574: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1H next_pid=533 next_prio=100
17718<...>-533 ( 533) [001] d..2 29478.250607: sched_switch: prev_comm=kworker/1:1H prev_pid=533 prev_prio=100 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
17719     ksoftirqd/1-18    (   18) [001] d..2 29478.250619: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17720  kworker/u16:16-25995 (25995) [001] d..2 29478.250627: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
17721  kworker/u16:16-25995 (25995) [001] dn.3 29478.250690: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
17722  kworker/u16:16-25995 (25995) [001] d..2 29478.250702: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
17723  kworker/u16:10-23868 (23868) [001] d..2 29478.250814: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17724  kworker/u16:16-25995 (25995) [001] d..2 29478.250862: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17725          <idle>-0     (-----) [001] d..1 29478.250882: cpu_idle: state=0 cpu_id=1
17726          <idle>-0     (-----) [001] d.H3 29478.260510: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17727          <idle>-0     (-----) [001] d.H3 29478.260532: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17728          <idle>-0     (-----) [001] d.H4 29478.260550: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17729          <idle>-0     (-----) [002] .n.1 29478.260556: cpu_idle: state=4294967295 cpu_id=2
17730          <idle>-0     (-----) [001] d.s3 29478.260569: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17731          <idle>-0     (-----) [002] d..2 29478.260573: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17732          <idle>-0     (-----) [001] dns4 29478.260597: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17733          <idle>-0     (-----) [001] dns3 29478.260603: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17734         sugov:0-559   (  559) [002] d..2 29478.260618: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17735          <idle>-0     (-----) [002] d..1 29478.260633: cpu_idle: state=0 cpu_id=2
17736          <idle>-0     (-----) [001] dns4 29478.260657: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17737          <idle>-0     (-----) [002] .n.1 29478.260664: cpu_idle: state=4294967295 cpu_id=2
17738          <idle>-0     (-----) [001] .n.1 29478.260671: cpu_idle: state=4294967295 cpu_id=1
17739          <idle>-0     (-----) [002] d..2 29478.260678: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17740          <idle>-0     (-----) [001] d..2 29478.260692: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17741          <idle>-0     (-----) [000] ...1 29478.260749: cpu_idle: state=4294967295 cpu_id=0
17742          <idle>-0     (-----) [003] ...1 29478.260751: cpu_idle: state=4294967295 cpu_id=3
17743          <idle>-0     (-----) [000] d..1 29478.260756: cpu_idle: state=2 cpu_id=0
17744          <idle>-0     (-----) [003] d..1 29478.260757: cpu_idle: state=0 cpu_id=3
17745     kworker/1:1-13678 (13678) [001] d..2 29478.260778: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17746          <idle>-0     (-----) [001] d..1 29478.260839: cpu_idle: state=0 cpu_id=1
17747  kworker/u16:16-25995 (25995) [002] d..2 29478.260897: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17748          <idle>-0     (-----) [002] d..1 29478.260916: cpu_idle: state=0 cpu_id=2
17749          <idle>-0     (-----) [006] dnh2 29478.261288: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17750          <idle>-0     (-----) [006] .n.1 29478.261297: cpu_idle: state=4294967295 cpu_id=6
17751          <idle>-0     (-----) [006] d..2 29478.261309: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17752         sugov:4-560   (  560) [006] d..2 29478.261330: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17753          <idle>-0     (-----) [006] d..1 29478.261341: cpu_idle: state=2 cpu_id=6
17754          <idle>-0     (-----) [002] ...1 29478.262191: cpu_idle: state=4294967295 cpu_id=2
17755          <idle>-0     (-----) [002] d..1 29478.262197: cpu_idle: state=2 cpu_id=2
17756          <idle>-0     (-----) [001] d..2 29478.266846: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17757          <idle>-0     (-----) [001] dn.3 29478.266866: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17758          <idle>-0     (-----) [001] .n.1 29478.266871: cpu_idle: state=4294967295 cpu_id=1
17759          <idle>-0     (-----) [001] d..2 29478.266888: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
17760     ksoftirqd/1-18    (   18) [001] d..2 29478.266926: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17761          <idle>-0     (-----) [001] d..1 29478.266940: cpu_idle: state=2 cpu_id=1
17762          <idle>-0     (-----) [001] d.h3 29478.300419: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
17763          <idle>-0     (-----) [001] dnh4 29478.300485: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17764          <idle>-0     (-----) [001] dnh3 29478.300573: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17765          <idle>-0     (-----) [001] dnh3 29478.300591: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17766          <idle>-0     (-----) [001] dnh4 29478.300610: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17767          <idle>-0     (-----) [001] .n.1 29478.300621: cpu_idle: state=4294967295 cpu_id=1
17768          <idle>-0     (-----) [001] d..2 29478.300643: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17769  kworker/u16:16-25995 (25995) [001] d..1 29478.300673: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
17770  kworker/u16:16-25995 (25995) [001] d..1 29478.300685: clk_disable: gcc_ufs_phy_phy_aux_clk
17771  kworker/u16:16-25995 (25995) [001] d..1 29478.300695: clk_disable: gcc_ufs_phy_phy_aux_clk_src
17772  kworker/u16:16-25995 (25995) [001] d..1 29478.300710: clk_disable: gcc_ufs_mem_clkref_clk
17773  kworker/u16:16-25995 (25995) [001] d..1 29478.300726: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
17774  kworker/u16:16-25995 (25995) [001] d..1 29478.300731: clk_disable: gcc_ufs_phy_axi_clk
17775  kworker/u16:16-25995 (25995) [001] d..1 29478.300742: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
17776  kworker/u16:16-25995 (25995) [001] d..1 29478.300748: clk_disable: gcc_aggre_ufs_phy_axi_clk
17777  kworker/u16:16-25995 (25995) [001] d..1 29478.300756: clk_disable: gcc_ufs_phy_axi_clk_src
17778  kworker/u16:16-25995 (25995) [001] d..1 29478.300764: clk_disable: gcc_ufs_phy_ahb_clk
17779  kworker/u16:16-25995 (25995) [001] d..1 29478.300773: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
17780  kworker/u16:16-25995 (25995) [001] d..1 29478.300779: clk_disable: gcc_ufs_phy_unipro_core_clk
17781  kworker/u16:16-25995 (25995) [001] d..1 29478.300788: clk_disable: gcc_ufs_phy_unipro_core_clk_src
17782          <idle>-0     (-----) [002] .n.1 29478.300791: cpu_idle: state=4294967295 cpu_id=2
17783  kworker/u16:16-25995 (25995) [001] d..1 29478.300795: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
17784  kworker/u16:16-25995 (25995) [001] d..1 29478.300800: clk_disable: gcc_ufs_phy_ice_core_clk
17785  kworker/u16:16-25995 (25995) [001] d..1 29478.300809: clk_disable: gcc_ufs_phy_ice_core_clk_src
17786          <idle>-0     (-----) [002] d..2 29478.300821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17787         sugov:0-559   (  559) [002] d..2 29478.300879: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17788          <idle>-0     (-----) [002] d..2 29478.300886: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17789          <idle>-0     (-----) [002] dn.3 29478.300910: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17790          <idle>-0     (-----) [002] d..2 29478.300925: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
17791     ksoftirqd/2-26    (   26) [002] d.s2 29478.300947: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
17792          <idle>-0     (-----) [003] d..2 29478.300949: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17793          <idle>-0     (-----) [003] dn.3 29478.300965: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17794          <idle>-0     (-----) [003] .n.1 29478.300970: cpu_idle: state=4294967295 cpu_id=3
17795          <idle>-0     (-----) [003] d..2 29478.300989: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
17796     ksoftirqd/2-26    (   26) [002] d.s3 29478.301012: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17797     ksoftirqd/3-34    (   34) [003] d..2 29478.301040: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
17798     ksoftirqd/2-26    (   26) [002] d..2 29478.301052: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17799          <idle>-0     (-----) [002] d..1 29478.301072: cpu_idle: state=2 cpu_id=2
17800  kworker/u16:16-25995 (25995) [001] d..2 29478.301182: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
17801  kworker/u16:10-23868 (23868) [003] d.s4 29478.301216: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17802          <idle>-0     (-----) [001] d..1 29478.301223: cpu_idle: state=0 cpu_id=1
17803  kworker/u16:10-23868 (23868) [003] d.s5 29478.301234: sched_blocked_reason: pid=25995 iowait=0 caller=wait_for_tx_done+0x34/0x120
17804  kworker/u16:10-23868 (23868) [003] d.s5 29478.301246: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
17805          <idle>-0     (-----) [001] .n.1 29478.301253: cpu_idle: state=4294967295 cpu_id=1
17806          <idle>-0     (-----) [001] d..2 29478.301270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
17807  kworker/u16:16-25995 (25995) [001] d..2 29478.301335: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17808          <idle>-0     (-----) [001] d..1 29478.301352: cpu_idle: state=2 cpu_id=1
17809  kworker/u16:10-23868 (23868) [003] d..2 29478.301361: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17810          <idle>-0     (-----) [003] d..1 29478.301388: cpu_idle: state=0 cpu_id=3
17811          <idle>-0     (-----) [006] dnh2 29478.301442: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17812          <idle>-0     (-----) [006] .n.1 29478.301452: cpu_idle: state=4294967295 cpu_id=6
17813          <idle>-0     (-----) [006] d..2 29478.301465: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17814         sugov:4-560   (  560) [006] d..2 29478.301488: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17815          <idle>-0     (-----) [006] d..1 29478.301499: cpu_idle: state=2 cpu_id=6
17816          <idle>-0     (-----) [003] d..2 29478.307402: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17817          <idle>-0     (-----) [003] dn.3 29478.307416: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17818          <idle>-0     (-----) [003] .n.1 29478.307422: cpu_idle: state=4294967295 cpu_id=3
17819          <idle>-0     (-----) [003] d..2 29478.307440: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
17820     ksoftirqd/3-34    (   34) [003] d..2 29478.307478: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17821          <idle>-0     (-----) [003] d..1 29478.307492: cpu_idle: state=2 cpu_id=3
17822          <idle>-0     (-----) [002] d.h2 29478.316093: sched_waking: comm=storaged pid=1002 prio=130 target_cpu=002
17823          <idle>-0     (-----) [002] dnh3 29478.316147: sched_wakeup: comm=storaged pid=1002 prio=130 target_cpu=002
17824          <idle>-0     (-----) [002] .n.1 29478.316168: cpu_idle: state=4294967295 cpu_id=2
17825          <idle>-0     (-----) [002] d..2 29478.316202: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=storaged next_pid=1002 next_prio=130
17826        storaged-1002  (  921) [002] ...1 29478.316452: tracing_mark_write: B|921|HIDL::IHealth::getDiskStats::client
17827        storaged-1002  (  921) [002] ...1 29478.316493: tracing_mark_write: E|921
17828        storaged-1002  (  921) [002] d.H2 29478.317203: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17829        storaged-1002  (  921) [002] d.H2 29478.317227: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17830        storaged-1002  (  921) [002] d.H3 29478.317258: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17831        storaged-1002  (  921) [002] d.s2 29478.317270: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17832        storaged-1002  (  921) [002] d.s3 29478.317296: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17833        storaged-1002  (  921) [002] d.s2 29478.317311: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17834        storaged-1002  (  921) [002] dns3 29478.317325: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
17835        storaged-1002  (  921) [002] d..2 29478.317349: sched_switch: prev_comm=storaged prev_pid=1002 prev_prio=130 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
17836     kworker/2:2-13636 (13636) [002] d..2 29478.317382: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17837     kworker/2:2-13636 (13636) [002] d..3 29478.317399: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17838     kworker/2:2-13636 (13636) [002] d..2 29478.317446: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=storaged next_pid=1002 next_prio=130
17839        storaged-1002  (  921) [002] .... 29478.317465: binder_transaction: transaction=1693536 dest_node=779 dest_proc=768 dest_thread=0 reply=0 flags=0x10 code=0xb
17840        storaged-1002  (  921) [002] d..5 29478.317536: sched_waking: comm=health@2.0-serv pid=768 prio=120 target_cpu=001
17841          <idle>-0     (-----) [003] .n.1 29478.317574: cpu_idle: state=4294967295 cpu_id=3
17842        storaged-1002  (  921) [002] d..6 29478.317574: sched_wakeup: comm=health@2.0-serv pid=768 prio=120 target_cpu=001
17843          <idle>-0     (-----) [003] d..2 29478.317606: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17844         sugov:0-559   (  559) [003] d..2 29478.317635: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
17845        storaged-1002  (  921) [002] d..2 29478.317657: sched_switch: prev_comm=storaged prev_pid=1002 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17846          <idle>-0     (-----) [002] d..1 29478.317724: cpu_idle: state=2 cpu_id=2
17847          <idle>-0     (-----) [001] .n.1 29478.317728: cpu_idle: state=4294967295 cpu_id=1
17848          <idle>-0     (-----) [001] d..2 29478.317760: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=health@2.0-serv next_pid=768 next_prio=120
17849  kworker/u16:10-23868 (23868) [003] d..2 29478.317848: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17850          <idle>-0     (-----) [003] d..1 29478.317872: cpu_idle: state=2 cpu_id=3
17851 health@2.0-serv-768   (  768) [001] .... 29478.317942: binder_transaction_received: transaction=1693536
17852 health@2.0-serv-768   (  768) [001] ...1 29478.318146: tracing_mark_write: B|768|HIDL::IHealth::getDiskStats::server
17853          <idle>-0     (-----) [006] dnh2 29478.318268: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17854          <idle>-0     (-----) [006] .n.1 29478.318277: cpu_idle: state=4294967295 cpu_id=6
17855          <idle>-0     (-----) [006] d..2 29478.318288: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17856         sugov:4-560   (  560) [006] d..2 29478.318310: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17857          <idle>-0     (-----) [006] d..1 29478.318322: cpu_idle: state=2 cpu_id=6
17858 health@2.0-serv-768   (  768) [001] d..2 29478.319534: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17859 health@2.0-serv-768   (  768) [001] d..3 29478.319634: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17860 health@2.0-serv-768   (  768) [001] ...1 29478.319784: tracing_mark_write: E|768
17861 health@2.0-serv-768   (  768) [001] .... 29478.319825: binder_transaction: transaction=1693537 dest_node=0 dest_proc=921 dest_thread=1002 reply=1 flags=0x0 code=0x0
17862 health@2.0-serv-768   (  768) [001] d..2 29478.319862: sched_waking: comm=storaged pid=1002 prio=130 target_cpu=002
17863 health@2.0-serv-768   (  768) [001] d..3 29478.319917: sched_wakeup: comm=storaged pid=1002 prio=130 target_cpu=001
17864 health@2.0-serv-768   (  768) [001] d..2 29478.320070: sched_switch: prev_comm=health@2.0-serv prev_pid=768 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
17865         rcuop/0-10    (   10) [001] d..2 29478.320106: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17866         rcuop/0-10    (   10) [001] d..3 29478.320183: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17867         rcuop/0-10    (   10) [001] d..2 29478.320208: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17868     rcu_preempt-7     (    7) [001] d..2 29478.320264: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17869     kworker/1:1-13678 (13678) [001] d..2 29478.320322: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=storaged next_pid=1002 next_prio=130
17870        storaged-1002  (  921) [001] .... 29478.320340: binder_transaction_received: transaction=1693537
17871        storaged-1002  (  921) [001] d..2 29478.321078: sched_switch: prev_comm=storaged prev_pid=1002 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17872          <idle>-0     (-----) [001] d..1 29478.321100: cpu_idle: state=0 cpu_id=1
17873          <idle>-0     (-----) [001] d.s2 29478.323768: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17874          <idle>-0     (-----) [001] dns3 29478.323793: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17875          <idle>-0     (-----) [001] .n.1 29478.323816: cpu_idle: state=4294967295 cpu_id=1
17876          <idle>-0     (-----) [001] d..2 29478.323830: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17877     rcu_preempt-7     (    7) [001] d..2 29478.323876: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17878     rcu_preempt-7     (    7) [001] d..3 29478.323898: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17879     rcu_preempt-7     (    7) [001] d..2 29478.323922: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
17880         rcuop/0-10    (   10) [001] d..2 29478.323933: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
17881         rcuop/0-10    (   10) [001] d..3 29478.323998: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
17882         rcuop/0-10    (   10) [001] d..2 29478.324007: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17883         rcuop/0-10    (   10) [001] d..3 29478.324025: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17884         rcuop/0-10    (   10) [001] d..2 29478.324041: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
17885         rcuop/1-21    (   21) [001] d..2 29478.324079: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17886     rcu_preempt-7     (    7) [001] d..2 29478.324115: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17887          <idle>-0     (-----) [001] d..1 29478.324137: cpu_idle: state=2 cpu_id=1
17888          <idle>-0     (-----) [001] d.s2 29478.330843: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17889          <idle>-0     (-----) [001] dns3 29478.330875: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
17890          <idle>-0     (-----) [001] dns3 29478.330884: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17891          <idle>-0     (-----) [001] dns4 29478.330933: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
17892          <idle>-0     (-----) [001] dns3 29478.330945: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17893          <idle>-0     (-----) [001] dns4 29478.330955: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17894          <idle>-0     (-----) [001] .n.1 29478.330969: cpu_idle: state=4294967295 cpu_id=1
17895          <idle>-0     (-----) [001] d..2 29478.330990: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17896     kworker/1:1-13678 (13678) [001] d..2 29478.331042: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
17897     rcu_preempt-7     (    7) [001] d..2 29478.331059: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17898     rcu_preempt-7     (    7) [001] d..3 29478.331083: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
17899     rcu_preempt-7     (    7) [001] d..2 29478.331097: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
17900         rcuop/0-10    (   10) [001] d..2 29478.331104: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
17901         rcuop/0-10    (   10) [001] d..3 29478.331121: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
17902         rcuop/0-10    (   10) [001] d..2 29478.331134: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
17903         rcuop/1-21    (   21) [001] d..2 29478.331206: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
17904  kworker/u16:10-23868 (23868) [001] d..2 29478.331328: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17905          <idle>-0     (-----) [001] d..1 29478.331352: cpu_idle: state=2 cpu_id=1
17906          <idle>-0     (-----) [001] d.h2 29478.403705: sched_waking: comm=ActivityManager pid=23993 prio=118 target_cpu=001
17907          <idle>-0     (-----) [000] d..2 29478.403849: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17908          <idle>-0     (-----) [000] dn.3 29478.403987: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17909          <idle>-0     (-----) [000] .n.1 29478.404048: cpu_idle: state=4294967295 cpu_id=0
17910          <idle>-0     (-----) [001] d.h3 29478.404050: sched_wakeup: comm=ActivityManager pid=23993 prio=118 target_cpu=000
17911          <idle>-0     (-----) [000] d..2 29478.404456: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=23993 next_prio=118
17912          <idle>-0     (-----) [001] d.h3 29478.404583: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17913          <idle>-0     (-----) [001] d.h3 29478.404655: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17914          <idle>-0     (-----) [001] d.h4 29478.404715: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17915          <idle>-0     (-----) [001] ...1 29478.404733: cpu_idle: state=4294967295 cpu_id=1
17916          <idle>-0     (-----) [001] d..1 29478.404792: cpu_idle: state=2 cpu_id=1
17917 ActivityManager-23993 (23968) [000] d..2 29478.405047: sched_switch: prev_comm=ActivityManager prev_pid=23993 prev_prio=118 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
17918     ksoftirqd/0-3     (    3) [000] d.s2 29478.405124: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
17919          <idle>-0     (-----) [003] .n.1 29478.405147: cpu_idle: state=4294967295 cpu_id=3
17920          <idle>-0     (-----) [003] d..2 29478.405208: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17921     ksoftirqd/0-3     (    3) [000] d.s3 29478.405301: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17922     ksoftirqd/0-3     (    3) [000] d.s2 29478.405345: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17923     ksoftirqd/0-3     (    3) [000] d.s3 29478.405381: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17924         sugov:0-559   (  559) [003] d..2 29478.405408: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
17925     ksoftirqd/0-3     (    3) [000] d..2 29478.405410: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17926     kworker/0:0-13450 (13450) [000] d..2 29478.405601: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17927          <idle>-0     (-----) [000] d..1 29478.405653: cpu_idle: state=2 cpu_id=0
17928          <idle>-0     (-----) [006] dnh2 29478.405794: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
17929          <idle>-0     (-----) [006] .n.1 29478.405814: cpu_idle: state=4294967295 cpu_id=6
17930          <idle>-0     (-----) [006] d..2 29478.405837: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17931         sugov:4-560   (  560) [006] d..2 29478.405888: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
17932          <idle>-0     (-----) [006] d..1 29478.405935: cpu_idle: state=2 cpu_id=6
17933  kworker/u16:10-23868 (23868) [003] d..2 29478.406921: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17934          <idle>-0     (-----) [003] d..1 29478.406957: cpu_idle: state=2 cpu_id=3
17935          <idle>-0     (-----) [000] ...1 29478.615490: cpu_idle: state=4294967295 cpu_id=0
17936          <idle>-0     (-----) [000] d..1 29478.615593: cpu_idle: state=2 cpu_id=0
17937          <idle>-0     (-----) [001] d.H3 29478.615824: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
17938          <idle>-0     (-----) [001] d.H3 29478.615994: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17939          <idle>-0     (-----) [001] d.H4 29478.616096: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
17940          <idle>-0     (-----) [001] d.s3 29478.616162: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17941          <idle>-0     (-----) [001] dns4 29478.616255: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17942          <idle>-0     (-----) [001] dns3 29478.616288: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17943          <idle>-0     (-----) [001] dns4 29478.616385: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17944          <idle>-0     (-----) [003] .n.1 29478.616492: cpu_idle: state=4294967295 cpu_id=3
17945          <idle>-0     (-----) [001] .n.1 29478.616531: cpu_idle: state=4294967295 cpu_id=1
17946          <idle>-0     (-----) [003] d..2 29478.616594: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17947          <idle>-0     (-----) [001] d..2 29478.616601: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17948         sugov:0-559   (  559) [003] d..2 29478.616691: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
17949     kworker/1:1-13678 (13678) [001] d..3 29478.616914: sched_waking: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
17950     kworker/1:1-13678 (13678) [001] d..3 29478.616958: sched_wakeup: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
17951     kworker/1:1-13678 (13678) [001] d..2 29478.616975: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=kworker/1:2 next_pid=13650 next_prio=120
17952          <idle>-0     (-----) [004] dnh2 29478.617125: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17953          <idle>-0     (-----) [004] .n.1 29478.617145: cpu_idle: state=4294967295 cpu_id=4
17954          <idle>-0     (-----) [004] d..2 29478.617210: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17955     kworker/1:2-13650 (13650) [001] d.H2 29478.617236: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17956         sugov:4-560   (  560) [004] d..2 29478.617290: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
17957     kworker/1:2-13650 (13650) [001] d.H2 29478.617310: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
17958          <idle>-0     (-----) [004] d..1 29478.617317: cpu_idle: state=2 cpu_id=4
17959     kworker/1:2-13650 (13650) [001] d.H3 29478.617356: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17960     kworker/1:2-13650 (13650) [001] d..2 29478.617555: sched_switch: prev_comm=kworker/1:2 prev_pid=13650 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17961          <idle>-0     (-----) [001] d..1 29478.617591: cpu_idle: state=2 cpu_id=1
17962          <idle>-0     (-----) [002] .n.1 29478.617900: cpu_idle: state=4294967295 cpu_id=2
17963          <idle>-0     (-----) [002] d..2 29478.617950: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17964         sugov:0-559   (  559) [002] d..2 29478.618004: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17965          <idle>-0     (-----) [000] d.h3 29478.618013: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17966          <idle>-0     (-----) [002] d..1 29478.618033: cpu_idle: state=2 cpu_id=2
17967          <idle>-0     (-----) [000] dnh4 29478.618055: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
17968          <idle>-0     (-----) [000] .n.1 29478.618094: cpu_idle: state=4294967295 cpu_id=0
17969          <idle>-0     (-----) [000] d..2 29478.618130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
17970     kworker/0:0-13450 (13450) [000] d..2 29478.618152: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17971     kworker/0:0-13450 (13450) [000] d..3 29478.618176: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
17972     kworker/0:0-13450 (13450) [000] d..3 29478.618192: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
17973     kworker/0:0-13450 (13450) [000] d..2 29478.618239: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17974          <idle>-0     (-----) [000] d..1 29478.618258: cpu_idle: state=2 cpu_id=0
17975  kworker/u16:10-23868 (23868) [003] d.s2 29478.618282: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17976  kworker/u16:10-23868 (23868) [003] d.s3 29478.618293: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17977  kworker/u16:10-23868 (23868) [003] d..2 29478.618383: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17978          <idle>-0     (-----) [003] d..1 29478.618414: cpu_idle: state=2 cpu_id=3
17979          <idle>-0     (-----) [001] .n.1 29478.618509: cpu_idle: state=4294967295 cpu_id=1
17980          <idle>-0     (-----) [001] d..2 29478.618538: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
17981          <idle>-0     (-----) [004] dnh2 29478.618698: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
17982          <idle>-0     (-----) [004] .n.1 29478.618708: cpu_idle: state=4294967295 cpu_id=4
17983          <idle>-0     (-----) [004] d..2 29478.618721: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
17984     kworker/1:1-13678 (13678) [001] d..2 29478.618722: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17985          <idle>-0     (-----) [001] d..1 29478.618743: cpu_idle: state=2 cpu_id=1
17986         sugov:4-560   (  560) [004] d..2 29478.618744: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
17987          <idle>-0     (-----) [004] d..1 29478.618756: cpu_idle: state=2 cpu_id=4
17988          <idle>-0     (-----) [000] d.h2 29478.902506: sched_waking: comm=m.android.phone pid=24290 prio=120 target_cpu=000
17989          <idle>-0     (-----) [000] dnh3 29478.902858: sched_wakeup: comm=m.android.phone pid=24290 prio=120 target_cpu=000
17990          <idle>-0     (-----) [000] dnh3 29478.903385: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
17991          <idle>-0     (-----) [000] dnh3 29478.903470: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
17992          <idle>-0     (-----) [000] dnh4 29478.903542: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
17993          <idle>-0     (-----) [000] .n.1 29478.903583: cpu_idle: state=4294967295 cpu_id=0
17994          <idle>-0     (-----) [000] d..2 29478.903744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=m.android.phone next_pid=24290 next_prio=120
17995          <idle>-0     (-----) [002] .n.1 29478.903933: cpu_idle: state=4294967295 cpu_id=2
17996          <idle>-0     (-----) [002] d..2 29478.903999: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
17997 m.android.phone-24290 (24290) [000] d.s4 29478.903999: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
17998 m.android.phone-24290 (24290) [000] d.s5 29478.904153: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
17999 m.android.phone-24290 (24290) [000] d.s4 29478.904197: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18000         sugov:0-559   (  559) [002] d..2 29478.904220: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18001 m.android.phone-24290 (24290) [000] d.s5 29478.904236: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18002          <idle>-0     (-----) [002] d..1 29478.904308: cpu_idle: state=2 cpu_id=2
18003          <idle>-0     (-----) [004] dnh2 29478.904623: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18004          <idle>-0     (-----) [004] .n.1 29478.904641: cpu_idle: state=4294967295 cpu_id=4
18005          <idle>-0     (-----) [004] d..2 29478.904665: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18006         sugov:4-560   (  560) [004] d..2 29478.904710: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
18007          <idle>-0     (-----) [004] d..1 29478.904735: cpu_idle: state=2 cpu_id=4
18008 m.android.phone-24290 (24290) [000] d..2 29478.904997: sched_switch: prev_comm=m.android.phone prev_pid=24290 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
18009     kworker/0:0-13450 (13450) [000] d..2 29478.905242: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18010  kworker/u16:10-23868 (23868) [000] d..2 29478.906397: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18011          <idle>-0     (-----) [000] d..1 29478.906429: cpu_idle: state=2 cpu_id=0
18012          <idle>-0     (-----) [003] d.s3 29478.906855: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18013          <idle>-0     (-----) [003] d.s4 29478.906940: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18014          <idle>-0     (-----) [003] dns4 29478.906959: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18015          <idle>-0     (-----) [003] .n.1 29478.906984: cpu_idle: state=4294967295 cpu_id=3
18016          <idle>-0     (-----) [003] d..2 29478.907034: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18017  kworker/u16:10-23868 (23868) [003] d..2 29478.907306: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18018          <idle>-0     (-----) [003] d..1 29478.907340: cpu_idle: state=2 cpu_id=3
18019          <idle>-0     (-----) [005] d..2 29479.024870: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
18020          <idle>-0     (-----) [005] dn.3 29479.024980: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
18021          <idle>-0     (-----) [005] dnH3 29479.025196: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18022          <idle>-0     (-----) [000] ...1 29479.025228: cpu_idle: state=4294967295 cpu_id=0
18023          <idle>-0     (-----) [005] dnH4 29479.025256: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18024          <idle>-0     (-----) [005] dnH3 29479.025266: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18025          <idle>-0     (-----) [000] d..1 29479.025309: cpu_idle: state=2 cpu_id=0
18026          <idle>-0     (-----) [005] dns3 29479.025329: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18027          <idle>-0     (-----) [005] dns3 29479.025440: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
18028          <idle>-0     (-----) [005] dns4 29479.025457: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
18029          <idle>-0     (-----) [005] .n.1 29479.025468: cpu_idle: state=4294967295 cpu_id=5
18030          <idle>-0     (-----) [005] d..2 29479.025538: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
18031     ksoftirqd/5-50    (   50) [005] d..2 29479.025577: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
18032          <idle>-0     (-----) [002] dnh2 29479.025714: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18033          <idle>-0     (-----) [002] .n.1 29479.025739: cpu_idle: state=4294967295 cpu_id=2
18034     kworker/5:0-24254 (24254) [005] d..2 29479.025779: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18035          <idle>-0     (-----) [002] d..2 29479.025781: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18036          <idle>-0     (-----) [005] d..1 29479.025808: cpu_idle: state=2 cpu_id=5
18037          <idle>-0     (-----) [003] dnh2 29479.025884: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18038         sugov:0-559   (  559) [002] d..2 29479.025889: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18039          <idle>-0     (-----) [003] .n.1 29479.025906: cpu_idle: state=4294967295 cpu_id=3
18040          <idle>-0     (-----) [002] d..1 29479.025918: cpu_idle: state=2 cpu_id=2
18041          <idle>-0     (-----) [003] d..2 29479.025945: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18042          <idle>-0     (-----) [004] .n.1 29479.025977: cpu_idle: state=4294967295 cpu_id=4
18043          <idle>-0     (-----) [004] d..2 29479.026011: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18044         sugov:4-560   (  560) [004] d..2 29479.026053: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
18045          <idle>-0     (-----) [004] d..1 29479.026073: cpu_idle: state=2 cpu_id=4
18046  kworker/u16:10-23868 (23868) [003] d..2 29479.026644: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18047          <idle>-0     (-----) [003] d..1 29479.026682: cpu_idle: state=2 cpu_id=3
18048          <idle>-0     (-----) [000] d.h2 29479.034088: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
18049          <idle>-0     (-----) [000] dnh3 29479.034152: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
18050          <idle>-0     (-----) [000] .n.1 29479.034177: cpu_idle: state=4294967295 cpu_id=0
18051          <idle>-0     (-----) [000] d..2 29479.034211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
18052<...>-25015 ( 24655) [000] d..2 29479.034739: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18053          <idle>-0     (-----) [000] d..2 29479.034749: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18054          <idle>-0     (-----) [000] dn.3 29479.034782: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18055          <idle>-0     (-----) [000] d..2 29479.034802: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18056     ksoftirqd/0-3     (    3) [000] d.s2 29479.034846: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18057     ksoftirqd/0-3     (    3) [000] d.s3 29479.034886: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18058     ksoftirqd/0-3     (    3) [000] d.s2 29479.034893: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18059     ksoftirqd/0-3     (    3) [000] d.s3 29479.034966: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18060     ksoftirqd/0-3     (    3) [000] d..2 29479.034991: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
18061     kworker/0:0-13450 (13450) [000] d..2 29479.035053: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18062  kworker/u16:10-23868 (23868) [000] d..2 29479.035167: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18063          <idle>-0     (-----) [000] d..1 29479.035192: cpu_idle: state=2 cpu_id=0
18064          <idle>-0     (-----) [001] d.h2 29479.035225: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=001
18065          <idle>-0     (-----) [001] d.h3 29479.035306: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
18066          <idle>-0     (-----) [001] ...1 29479.035347: cpu_idle: state=4294967295 cpu_id=1
18067          <idle>-0     (-----) [001] d..1 29479.035367: cpu_idle: state=2 cpu_id=1
18068          <idle>-0     (-----) [000] .n.1 29479.035671: cpu_idle: state=4294967295 cpu_id=0
18069          <idle>-0     (-----) [000] d..2 29479.035705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
18070<...>-24367 ( 24151) [000] d..2 29479.035963: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18071          <idle>-0     (-----) [000] d..1 29479.035986: cpu_idle: state=2 cpu_id=0
18072          <idle>-0     (-----) [003] d.h2 29479.237038: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
18073          <idle>-0     (-----) [000] d..2 29479.237185: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18074          <idle>-0     (-----) [003] dnh3 29479.237288: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
18075          <idle>-0     (-----) [000] dn.3 29479.237301: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18076          <idle>-0     (-----) [000] .n.1 29479.237339: cpu_idle: state=4294967295 cpu_id=0
18077          <idle>-0     (-----) [000] d..2 29479.237659: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18078     ksoftirqd/0-3     (    3) [000] d.s2 29479.237759: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18079          <idle>-0     (-----) [003] dnh3 29479.237776: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18080          <idle>-0     (-----) [003] dnh3 29479.237821: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18081          <idle>-0     (-----) [003] dnh4 29479.237861: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18082          <idle>-0     (-----) [003] .n.1 29479.237878: cpu_idle: state=4294967295 cpu_id=3
18083          <idle>-0     (-----) [003] d..2 29479.237916: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
18084     ksoftirqd/0-3     (    3) [000] d.s3 29479.237976: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18085     ksoftirqd/0-3     (    3) [000] d.s2 29479.238022: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18086     ksoftirqd/0-3     (    3) [000] d.s3 29479.238062: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18087     ksoftirqd/0-3     (    3) [000] d..2 29479.238118: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
18088 bluetooth@1.0-s-24508 (  759) [003] d..2 29479.238230: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18089          <idle>-0     (-----) [002] .n.1 29479.238250: cpu_idle: state=4294967295 cpu_id=2
18090          <idle>-0     (-----) [002] d..2 29479.238310: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18091         sugov:0-559   (  559) [002] d..2 29479.238497: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18092     kworker/0:0-13450 (13450) [000] d..2 29479.238498: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18093          <idle>-0     (-----) [000] d..1 29479.238578: cpu_idle: state=2 cpu_id=0
18094          <idle>-0     (-----) [002] d..1 29479.238578: cpu_idle: state=2 cpu_id=2
18095          <idle>-0     (-----) [004] dnh2 29479.239009: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18096          <idle>-0     (-----) [004] .n.1 29479.239026: cpu_idle: state=4294967295 cpu_id=4
18097          <idle>-0     (-----) [004] d..2 29479.239050: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18098         sugov:4-560   (  560) [004] d..2 29479.239102: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
18099          <idle>-0     (-----) [004] d..1 29479.239125: cpu_idle: state=2 cpu_id=4
18100          <idle>-0     (-----) [002] ...1 29479.239344: cpu_idle: state=4294967295 cpu_id=2
18101          <idle>-0     (-----) [002] d..1 29479.239356: cpu_idle: state=2 cpu_id=2
18102  kworker/u16:10-23868 (23868) [003] d..2 29479.239933: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18103          <idle>-0     (-----) [003] d..1 29479.239965: cpu_idle: state=2 cpu_id=3
18104          <idle>-0     (-----) [001] d.h2 29479.392349: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=001
18105          <idle>-0     (-----) [000] d..2 29479.392500: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18106          <idle>-0     (-----) [000] dn.3 29479.392637: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18107          <idle>-0     (-----) [001] d.h3 29479.392690: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
18108          <idle>-0     (-----) [000] .n.1 29479.392695: cpu_idle: state=4294967295 cpu_id=0
18109          <idle>-0     (-----) [000] d..2 29479.393084: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
18110          <idle>-0     (-----) [001] d.h3 29479.393213: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18111          <idle>-0     (-----) [001] d.h3 29479.393286: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18112          <idle>-0     (-----) [001] d.h4 29479.393347: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18113          <idle>-0     (-----) [001] ...1 29479.393365: cpu_idle: state=4294967295 cpu_id=1
18114          <idle>-0     (-----) [001] d..1 29479.393423: cpu_idle: state=2 cpu_id=1
18115          <idle>-0     (-----) [002] .n.1 29479.393734: cpu_idle: state=4294967295 cpu_id=2
18116          <idle>-0     (-----) [002] d..2 29479.393796: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18117 PowerManagerSer-24006 (23968) [000] d.s2 29479.393956: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18118         sugov:0-559   (  559) [002] d..2 29479.394050: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18119          <idle>-0     (-----) [002] dn.1 29479.394089: cpu_idle: state=2 cpu_id=2
18120 PowerManagerSer-24006 (23968) [000] d.s3 29479.394095: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18121          <idle>-0     (-----) [002] .n.1 29479.394118: cpu_idle: state=4294967295 cpu_id=2
18122          <idle>-0     (-----) [002] d..2 29479.394139: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18123 PowerManagerSer-24006 (23968) [000] d.s2 29479.394141: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18124 PowerManagerSer-24006 (23968) [000] d.s3 29479.394174: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18125 PowerManagerSer-24006 (23968) [000] d.s2 29479.394202: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18126 PowerManagerSer-24006 (23968) [000] d.s3 29479.394233: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18127          <idle>-0     (-----) [004] dnh2 29479.394424: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
18128          <idle>-0     (-----) [004] .n.1 29479.394442: cpu_idle: state=4294967295 cpu_id=4
18129 PowerManagerSer-24006 (23968) [000] d..2 29479.394459: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
18130          <idle>-0     (-----) [004] d..2 29479.394467: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18131         sugov:4-560   (  560) [004] d..2 29479.394509: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
18132          <idle>-0     (-----) [004] d..1 29479.394532: cpu_idle: state=2 cpu_id=4
18133          <idle>-0     (-----) [001] .n.1 29479.394542: cpu_idle: state=4294967295 cpu_id=1
18134          <idle>-0     (-----) [001] d..2 29479.394585: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
18135     kworker/1:1-13678 (13678) [001] d..2 29479.394679: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18136          <idle>-0     (-----) [001] d..1 29479.394741: cpu_idle: state=2 cpu_id=1
18137     kworker/0:0-13450 (13450) [000] d..2 29479.394764: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18138     ksoftirqd/0-3     (    3) [000] d..2 29479.394819: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18139          <idle>-0     (-----) [000] d..1 29479.394850: cpu_idle: state=2 cpu_id=0
18140  kworker/u16:10-23868 (23868) [002] d..2 29479.394976: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18141          <idle>-0     (-----) [002] d..1 29479.394995: cpu_idle: state=2 cpu_id=2
18142          <idle>-0     (-----) [000] ...1 29479.628824: cpu_idle: state=4294967295 cpu_id=0
18143          <idle>-0     (-----) [000] d..1 29479.628928: cpu_idle: state=2 cpu_id=0
18144          <idle>-0     (-----) [001] d.H3 29479.629149: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
18145          <idle>-0     (-----) [001] d.H3 29479.629318: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18146          <idle>-0     (-----) [001] d.H4 29479.629416: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18147          <idle>-0     (-----) [001] d.s3 29479.629483: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18148          <idle>-0     (-----) [001] dns4 29479.629574: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18149          <idle>-0     (-----) [001] dns3 29479.629605: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18150          <idle>-0     (-----) [001] dns4 29479.629705: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18151          <idle>-0     (-----) [002] .n.1 29479.629796: cpu_idle: state=4294967295 cpu_id=2
18152          <idle>-0     (-----) [001] .n.1 29479.629851: cpu_idle: state=4294967295 cpu_id=1
18153          <idle>-0     (-----) [002] d..2 29479.629907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18154          <idle>-0     (-----) [001] d..2 29479.629913: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
18155         sugov:0-559   (  559) [002] d..2 29479.630006: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18156     kworker/1:1-13678 (13678) [001] d..3 29479.630262: sched_waking: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
18157     kworker/1:1-13678 (13678) [001] d..3 29479.630306: sched_wakeup: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
18158     kworker/1:1-13678 (13678) [001] d..2 29479.630323: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=kworker/1:2 next_pid=13650 next_prio=120
18159          <idle>-0     (-----) [005] dnh2 29479.630445: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18160          <idle>-0     (-----) [005] .n.1 29479.630465: cpu_idle: state=4294967295 cpu_id=5
18161          <idle>-0     (-----) [005] d..2 29479.630486: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18162         sugov:4-560   (  560) [005] d..2 29479.630562: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18163          <idle>-0     (-----) [005] d..1 29479.630590: cpu_idle: state=2 cpu_id=5
18164     kworker/1:2-13650 (13650) [001] d..2 29479.630640: sched_switch: prev_comm=kworker/1:2 prev_pid=13650 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18165          <idle>-0     (-----) [001] d..1 29479.630670: cpu_idle: state=2 cpu_id=1
18166  kworker/u16:10-23868 (23868) [002] d..2 29479.630941: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18167          <idle>-0     (-----) [002] d..1 29479.630971: cpu_idle: state=2 cpu_id=2
18168          <idle>-0     (-----) [000] d.h3 29479.634877: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18169          <idle>-0     (-----) [000] dnh4 29479.634925: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18170          <idle>-0     (-----) [000] .n.1 29479.635008: cpu_idle: state=4294967295 cpu_id=0
18171          <idle>-0     (-----) [000] d..2 29479.635052: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
18172     kworker/0:0-13450 (13450) [000] d..2 29479.635082: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18173     kworker/0:0-13450 (13450) [000] d..3 29479.635106: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
18174     kworker/0:0-13450 (13450) [000] d..3 29479.635126: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18175     kworker/0:0-13450 (13450) [000] d..2 29479.635191: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18176          <idle>-0     (-----) [000] d..2 29479.635200: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18177          <idle>-0     (-----) [000] dn.3 29479.635228: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18178          <idle>-0     (-----) [000] d..2 29479.635243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
18179     ksoftirqd/0-3     (    3) [000] d..2 29479.635298: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18180          <idle>-0     (-----) [000] d..1 29479.635316: cpu_idle: state=2 cpu_id=0
18181          <idle>-0     (-----) [001] .n.1 29479.635452: cpu_idle: state=4294967295 cpu_id=1
18182          <idle>-0     (-----) [001] d..2 29479.635485: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
18183     kworker/1:1-13678 (13678) [001] d..2 29479.635689: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18184          <idle>-0     (-----) [001] d..1 29479.635708: cpu_idle: state=2 cpu_id=1
18185          <idle>-0     (-----) [000] d.h3 29479.756634: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
18186          <idle>-0     (-----) [000] dnh4 29479.757020: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
18187          <idle>-0     (-----) [000] dnh3 29479.757581: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18188          <idle>-0     (-----) [000] dnh3 29479.757675: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18189          <idle>-0     (-----) [000] dnh4 29479.757749: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18190          <idle>-0     (-----) [000] .n.1 29479.757792: cpu_idle: state=4294967295 cpu_id=0
18191          <idle>-0     (-----) [000] d..2 29479.757971: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
18192   kworker/u17:1-18284 (18284) [000] d..2 29479.758148: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18193          <idle>-0     (-----) [002] .n.1 29479.758153: cpu_idle: state=4294967295 cpu_id=2
18194   kworker/u17:1-18284 (18284) [000] d..3 29479.758198: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18195          <idle>-0     (-----) [002] d..2 29479.758221: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18196   kworker/u17:1-18284 (18284) [000] d..2 29479.758285: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
18197     kworker/0:0-13450 (13450) [000] d..2 29479.758413: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
18198         sugov:0-559   (  559) [002] d..2 29479.758441: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18199          <idle>-0     (-----) [002] d..2 29479.758462: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18200     kworker/0:0-13450 (13450) [000] d..3 29479.758505: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
18201          <idle>-0     (-----) [002] dn.3 29479.758527: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18202          <idle>-0     (-----) [002] d..2 29479.758551: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
18203     kworker/0:0-13450 (13450) [000] d..2 29479.758608: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18204          <idle>-0     (-----) [000] d..1 29479.758695: cpu_idle: state=2 cpu_id=0
18205          <idle>-0     (-----) [005] dnh2 29479.758818: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18206          <idle>-0     (-----) [005] .n.1 29479.758838: cpu_idle: state=4294967295 cpu_id=5
18207          <idle>-0     (-----) [005] d..2 29479.758860: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18208         sugov:4-560   (  560) [005] d..2 29479.758904: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18209          <idle>-0     (-----) [005] d..1 29479.758930: cpu_idle: state=2 cpu_id=5
18210            adbd-23484 ( 1007) [002] d..2 29479.759039: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
18211     ksoftirqd/2-26    (   26) [002] d.s2 29479.759119: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18212     ksoftirqd/2-26    (   26) [002] d.s3 29479.759180: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18213     ksoftirqd/2-26    (   26) [002] d.s2 29479.759229: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18214     ksoftirqd/2-26    (   26) [002] d.s3 29479.759260: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18215     ksoftirqd/2-26    (   26) [002] d..2 29479.759296: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
18216     kworker/2:2-13636 (13636) [002] d..2 29479.759507: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18217          <idle>-0     (-----) [000] d.h3 29479.759521: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
18218          <idle>-0     (-----) [000] dnh4 29479.759566: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
18219          <idle>-0     (-----) [000] .n.1 29479.759581: cpu_idle: state=4294967295 cpu_id=0
18220          <idle>-0     (-----) [000] d..2 29479.759603: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
18221   kworker/u17:1-18284 (18284) [000] d..2 29479.759632: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18222   kworker/u17:1-18284 (18284) [000] d..3 29479.759648: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
18223   kworker/u17:1-18284 (18284) [000] d..2 29479.759687: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
18224     kworker/0:0-13450 (13450) [000] d..2 29479.759795: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
18225     kworker/0:0-13450 (13450) [000] d..3 29479.759892: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
18226     kworker/0:0-13450 (13450) [000] d..2 29479.759925: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
18227            adbd-23484 ( 1007) [000] d..2 29479.760138: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
18228            adbd-23484 ( 1007) [000] d..3 29479.760170: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
18229  kworker/u16:10-23868 (23868) [002] d..2 29479.760288: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18230            adbd-23484 ( 1007) [000] d..2 29479.760311: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
18231          <idle>-0     (-----) [002] d..1 29479.760319: cpu_idle: state=2 cpu_id=2
18232            adbd-1007  ( 1007) [000] d..2 29479.765680: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13705 next_prio=120
18233              sh-13705 (13705) [000] d.s3 29479.767116: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18234              sh-13705 (13705) [000] d.s4 29479.767173: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18235          <idle>-0     (-----) [002] .n.1 29479.767477: cpu_idle: state=4294967295 cpu_id=2
18236          <idle>-0     (-----) [002] d..2 29479.767514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18237  kworker/u16:10-23868 (23868) [002] d..2 29479.768141: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18238          <idle>-0     (-----) [002] d..1 29479.768164: cpu_idle: state=2 cpu_id=2
18239          <idle>-0     (-----) [003] d.s3 29479.769056: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18240          <idle>-0     (-----) [003] d.s4 29479.769088: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18241          <idle>-0     (-----) [003] d.s4 29479.769105: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18242          <idle>-0     (-----) [003] ...1 29479.769133: cpu_idle: state=4294967295 cpu_id=3
18243          <idle>-0     (-----) [003] d..1 29479.769149: cpu_idle: state=2 cpu_id=3
18244              sh-13705 (13705) [000] d..2 29479.769177: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
18245              sh-13705 (13705) [000] d..3 29479.769254: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
18246              sh-13705 (13705) [000] d..2 29479.769276: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
18247              sh-13705 (13705) [000] d..3 29479.769332: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
18248          <idle>-0     (-----) [002] .n.1 29479.769391: cpu_idle: state=4294967295 cpu_id=2
18249          <idle>-0     (-----) [002] d..2 29479.769422: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
18250            adbd-1007  ( 1007) [002] d..2 29479.769685: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
18251            adbd-1007  ( 1007) [002] d..3 29479.769765: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
18252            adbd-1007  ( 1007) [002] d..1 29479.770131: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
18253            adbd-1007  ( 1007) [002] d..2 29479.770193: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
18254            adbd-1007  ( 1007) [002] d..2 29479.770381: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
18255         rcuop/2-29    (   29) [002] d..2 29479.770462: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18256         rcuop/2-29    (   29) [002] d..3 29479.770498: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18257          <idle>-0     (-----) [001] .n.1 29479.770519: cpu_idle: state=4294967295 cpu_id=1
18258         rcuop/2-29    (   29) [002] d..2 29479.770523: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18259         rcuop/0-10    (   10) [002] d..2 29479.770551: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18260          <idle>-0     (-----) [001] d..2 29479.770577: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
18261  kworker/u16:10-23868 (23868) [002] .... 29479.770754: clk_set_rate: l3_cluster0_vote_clk 576000000
18262  kworker/u16:10-23868 (23868) [002] .... 29479.770769: clk_set_rate: l3_clk 576000000
18263            adbd-23485 ( 1007) [001] d..2 29479.770793: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18264              sh-13705 (13705) [000] d.h2 29479.770802: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
18265  kworker/u16:10-23868 (23868) [002] d..2 29479.770856: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13706 next_prio=120
18266              sh-13705 (13705) [000] d.h3 29479.770877: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
18267     rcu_preempt-7     (    7) [001] d..2 29479.770890: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
18268   kworker/u17:1-18284 (18284) [001] d..2 29479.770917: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18269   kworker/u17:1-18284 (18284) [001] d..3 29479.770942: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18270   kworker/u17:1-18284 (18284) [001] d..2 29479.770976: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
18271 shell svc 13705-13706 ( 1007) [002] d..2 29479.770990: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18272     kworker/1:1-13678 (13678) [001] d..2 29479.770994: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
18273          <idle>-0     (-----) [002] d..1 29479.771010: cpu_idle: state=2 cpu_id=2
18274     kworker/1:1-13678 (13678) [001] d..3 29479.771029: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
18275     kworker/1:1-13678 (13678) [001] d..2 29479.771065: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18276          <idle>-0     (-----) [001] d..1 29479.771091: cpu_idle: state=0 cpu_id=1
18277          <idle>-0     (-----) [002] .n.1 29479.771373: cpu_idle: state=4294967295 cpu_id=2
18278          <idle>-0     (-----) [002] d..2 29479.771399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
18279              sh-13705 (13705) [000] d.h2 29479.771477: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
18280            adbd-23485 ( 1007) [002] d..2 29479.771486: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18281          <idle>-0     (-----) [002] d..1 29479.771503: cpu_idle: state=2 cpu_id=2
18282              sh-13705 (13705) [000] d.h3 29479.771532: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
18283          <idle>-0     (-----) [002] .n.1 29479.771858: cpu_idle: state=4294967295 cpu_id=2
18284          <idle>-0     (-----) [002] d..2 29479.771881: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
18285   kworker/u17:1-18284 (18284) [002] d..2 29479.771908: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18286   kworker/u17:1-18284 (18284) [002] d..3 29479.771928: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18287   kworker/u17:1-18284 (18284) [002] d..2 29479.771963: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
18288     kworker/2:2-13636 (13636) [002] d..2 29479.771983: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
18289     kworker/2:2-13636 (13636) [002] d..3 29479.772037: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
18290     kworker/2:2-13636 (13636) [002] d..2 29479.772060: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
18291            adbd-23484 ( 1007) [002] d..2 29479.772192: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18292              sh-13705 (13705) [000] d.h2 29479.772198: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
18293              sh-13705 (13705) [000] d.h3 29479.772222: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
18294          <idle>-0     (-----) [002] d..2 29479.772238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
18295   kworker/u17:1-18284 (18284) [002] d..2 29479.772255: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18296   kworker/u17:1-18284 (18284) [002] d..3 29479.772269: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18297   kworker/u17:1-18284 (18284) [002] d..2 29479.772300: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
18298     kworker/2:2-13636 (13636) [002] d..2 29479.772315: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
18299     kworker/2:2-13636 (13636) [002] d..3 29479.772336: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
18300     kworker/2:2-13636 (13636) [002] d..2 29479.772355: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
18301            adbd-23484 ( 1007) [002] d..2 29479.772396: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
18302            adbd-23484 ( 1007) [002] d..3 29479.772410: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
18303            adbd-23484 ( 1007) [002] d..2 29479.772498: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
18304            adbd-1007  ( 1007) [002] d..2 29479.772666: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=002
18305            adbd-1007  ( 1007) [002] d..3 29479.772685: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=002
18306            adbd-1007  ( 1007) [002] d..1 29479.772709: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
18307            adbd-1007  ( 1007) [002] d..2 29479.772763: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
18308          <idle>-0     (-----) [001] .n.1 29479.772771: cpu_idle: state=4294967295 cpu_id=1
18309          <idle>-0     (-----) [001] d..2 29479.772787: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
18310            adbd-1007  ( 1007) [002] d..2 29479.772843: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
18311            adbd-23485 ( 1007) [001] d..2 29479.772890: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18312          <idle>-0     (-----) [001] d..1 29479.772905: cpu_idle: state=0 cpu_id=1
18313              sh-13705 (13705) [000] d.h2 29479.772905: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
18314              sh-13705 (13705) [000] d.h3 29479.772940: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
18315 shell svc 13705-13706 ( 1007) [002] d..2 29479.772999: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
18316   kworker/u17:1-18284 (18284) [002] d..2 29479.773022: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18317   kworker/u17:1-18284 (18284) [002] d..3 29479.773038: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18318   kworker/u17:1-18284 (18284) [002] d..2 29479.773072: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
18319     kworker/2:2-13636 (13636) [002] d..2 29479.773087: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
18320     kworker/2:2-13636 (13636) [002] d..3 29479.773131: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
18321          <idle>-0     (-----) [001] .n.1 29479.773137: cpu_idle: state=4294967295 cpu_id=1
18322          <idle>-0     (-----) [001] d..2 29479.773152: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
18323     kworker/2:2-13636 (13636) [002] d..2 29479.773155: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
18324            adbd-23485 ( 1007) [001] d..2 29479.773191: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18325          <idle>-0     (-----) [001] d..1 29479.773203: cpu_idle: state=0 cpu_id=1
18326 shell svc 13705-13706 ( 1007) [002] d..2 29479.773223: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18327          <idle>-0     (-----) [002] d..1 29479.773244: cpu_idle: state=0 cpu_id=2
18328          <idle>-0     (-----) [001] d.s2 29479.777099: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18329          <idle>-0     (-----) [001] dns3 29479.777176: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18330              sh-13705 (13705) [000] d.H2 29479.777209: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18331          <idle>-0     (-----) [001] .n.1 29479.777212: cpu_idle: state=4294967295 cpu_id=1
18332          <idle>-0     (-----) [001] d..2 29479.777227: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18333              sh-13705 (13705) [000] d.H2 29479.777234: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18334              sh-13705 (13705) [000] d.H3 29479.777254: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18335          <idle>-0     (-----) [002] .n.1 29479.777263: cpu_idle: state=4294967295 cpu_id=2
18336              sh-13705 (13705) [000] d.s2 29479.777265: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18337     rcu_preempt-7     (    7) [001] d..2 29479.777279: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18338          <idle>-0     (-----) [002] d..2 29479.777281: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18339          <idle>-0     (-----) [001] d..1 29479.777294: cpu_idle: state=2 cpu_id=1
18340              sh-13705 (13705) [000] d.s3 29479.777299: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18341          <idle>-0     (-----) [001] .n.1 29479.777322: cpu_idle: state=4294967295 cpu_id=1
18342          <idle>-0     (-----) [001] d..2 29479.777338: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18343         sugov:0-559   (  559) [002] .... 29479.777341: clk_set_rate: pwrcl_clk 1324800000
18344     rcu_preempt-7     (    7) [001] d..2 29479.777350: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
18345         sugov:0-559   (  559) [002] .... 29479.777360: clk_set_rate: cpu3_pwrcl_clk 652800000
18346         sugov:0-559   (  559) [002] .... 29479.777373: clk_set_rate: cpu2_pwrcl_clk 652800000
18347         sugov:0-559   (  559) [002] .... 29479.777383: clk_set_rate: cpu1_pwrcl_clk 652800000
18348         sugov:0-559   (  559) [002] .... 29479.777393: clk_set_rate: cpu0_pwrcl_clk 1324800000
18349     rcu_preempt-7     (    7) [001] d..3 29479.777401: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
18350     rcu_preempt-7     (    7) [001] d..2 29479.777405: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
18351         sugov:0-559   (  559) [002] .... 29479.777407: cpu_frequency: state=1324800 cpu_id=0
18352     rcu_preempt-7     (    7) [001] d..3 29479.777423: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
18353     rcu_preempt-7     (    7) [001] d..2 29479.777444: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18354         sugov:0-559   (  559) [002] .... 29479.777456: cpu_frequency: state=1324800 cpu_id=1
18355         sugov:0-559   (  559) [002] .... 29479.777461: cpu_frequency: state=1324800 cpu_id=2
18356         sugov:0-559   (  559) [002] .... 29479.777465: cpu_frequency: state=1324800 cpu_id=3
18357         rcuop/0-10    (   10) [001] d..2 29479.777468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18358         rcuop/0-10    (   10) [001] d..3 29479.777479: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18359         sugov:0-559   (  559) [002] d..2 29479.777482: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
18360         rcuop/0-10    (   10) [001] d..2 29479.777486: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18361     rcu_preempt-7     (    7) [001] d..2 29479.777504: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18362         rcuop/2-29    (   29) [002] d..2 29479.777507: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18363          <idle>-0     (-----) [001] d..1 29479.777514: cpu_idle: state=0 cpu_id=1
18364          <idle>-0     (-----) [002] d..1 29479.777519: cpu_idle: state=0 cpu_id=2
18365          <idle>-0     (-----) [005] dnh2 29479.778207: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18366          <idle>-0     (-----) [005] .n.1 29479.778215: cpu_idle: state=4294967295 cpu_id=5
18367          <idle>-0     (-----) [005] d..2 29479.778226: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18368         sugov:4-560   (  560) [005] d..2 29479.778247: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18369          <idle>-0     (-----) [005] d..1 29479.778257: cpu_idle: state=2 cpu_id=5
18370              sh-13705 (13705) [000] d.s2 29479.780420: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18371              sh-13705 (13705) [000] d.s3 29479.780459: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18372          <idle>-0     (-----) [001] .n.1 29479.780464: cpu_idle: state=4294967295 cpu_id=1
18373          <idle>-0     (-----) [001] d..2 29479.780475: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18374  kworker/u16:10-23868 (23868) [001] .... 29479.780524: clk_set_rate: l3_cluster0_vote_clk 652800000
18375  kworker/u16:10-23868 (23868) [001] .... 29479.780529: clk_set_rate: l3_clk 652800000
18376  kworker/u16:10-23868 (23868) [001] d..2 29479.780799: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
18377          <idle>-0     (-----) [001] d..1 29479.780807: cpu_idle: state=0 cpu_id=1
18378          <idle>-0     (-----) [003] d.s3 29479.781512: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18379          <idle>-0     (-----) [003] d.s4 29479.781524: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18380          <idle>-0     (-----) [003] d.s4 29479.781533: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18381          <idle>-0     (-----) [001] .n.1 29479.781538: cpu_idle: state=4294967295 cpu_id=1
18382          <idle>-0     (-----) [003] ...1 29479.781544: cpu_idle: state=4294967295 cpu_id=3
18383          <idle>-0     (-----) [001] d..2 29479.781545: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18384          <idle>-0     (-----) [003] d..1 29479.781550: cpu_idle: state=2 cpu_id=3
18385  kworker/u16:10-23868 (23868) [001] d..2 29479.781567: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18386          <idle>-0     (-----) [001] d..1 29479.781572: cpu_idle: state=0 cpu_id=1
18387          <idle>-0     (-----) [002] ...1 29479.783523: cpu_idle: state=4294967295 cpu_id=2
18388          <idle>-0     (-----) [002] d..1 29479.783527: cpu_idle: state=2 cpu_id=2
18389          <idle>-0     (-----) [001] d.s2 29479.783746: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18390          <idle>-0     (-----) [001] dns3 29479.783759: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18391          <idle>-0     (-----) [001] .n.1 29479.783767: cpu_idle: state=4294967295 cpu_id=1
18392          <idle>-0     (-----) [001] d..2 29479.783773: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18393     rcu_preempt-7     (    7) [001] d..2 29479.783781: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
18394     rcu_preempt-7     (    7) [001] d..3 29479.783805: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
18395     rcu_preempt-7     (    7) [001] d..2 29479.783807: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
18396     rcu_preempt-7     (    7) [001] d..3 29479.783815: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
18397     rcu_preempt-7     (    7) [001] d..2 29479.783823: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
18398         rcuop/2-29    (   29) [001] d..2 29479.783836: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18399         rcuop/0-10    (   10) [001] d..2 29479.783857: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18400          <idle>-0     (-----) [001] d..1 29479.783869: cpu_idle: state=0 cpu_id=1
18401              sh-13705 (13705) [000] d..2 29479.784606: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
18402              sh-13705 (13705) [000] dn.3 29479.784645: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
18403              sh-13705 (13705) [000] d..2 29479.784655: sched_switch: prev_comm=sh prev_pid=13705 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18404         rcuop/0-10    (   10) [000] d..2 29479.784661: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18405         rcuop/0-10    (   10) [000] d..3 29479.784671: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18406          <idle>-0     (-----) [001] .n.1 29479.784677: cpu_idle: state=4294967295 cpu_id=1
18407         rcuop/0-10    (   10) [000] d..2 29479.784679: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13705 next_prio=120
18408          <idle>-0     (-----) [001] d..2 29479.784685: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18409     rcu_preempt-7     (    7) [001] d..2 29479.784703: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18410          <idle>-0     (-----) [001] d..1 29479.784709: cpu_idle: state=0 cpu_id=1
18411          <idle>-0     (-----) [001] .n.1 29479.787752: cpu_idle: state=4294967295 cpu_id=1
18412          <idle>-0     (-----) [001] d..2 29479.787763: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13707 next_prio=120
18413              sh-13705 (13705) [000] d..2 29479.787860: sched_switch: prev_comm=sh prev_pid=13705 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18414          <idle>-0     (-----) [000] d..1 29479.787879: cpu_idle: state=2 cpu_id=0
18415 NeuralNetworksT-13707 (13707) [001] d.s1 29479.790420: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18416 NeuralNetworksT-13707 (13707) [001] dns2 29479.790437: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18417 NeuralNetworksT-13707 (13707) [001] dns2 29479.790441: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18418 NeuralNetworksT-13707 (13707) [001] dns3 29479.790451: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18419 NeuralNetworksT-13707 (13707) [001] d..2 29479.790464: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18420     rcu_preempt-7     (    7) [001] d..2 29479.790474: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
18421     rcu_preempt-7     (    7) [001] d..3 29479.790496: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
18422     rcu_preempt-7     (    7) [001] d..2 29479.790505: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18423  kworker/u16:10-23868 (23868) [001] .... 29479.790560: clk_set_rate: l3_cluster0_vote_clk 748800000
18424  kworker/u16:10-23868 (23868) [001] .... 29479.790564: clk_set_rate: l3_clk 748800000
18425  kworker/u16:10-23868 (23868) [001] d..2 29479.790589: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
18426          <idle>-0     (-----) [000] .n.1 29479.790690: cpu_idle: state=4294967295 cpu_id=0
18427          <idle>-0     (-----) [000] d..2 29479.790710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18428         rcuop/0-10    (   10) [000] d..2 29479.790719: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18429         rcuop/0-10    (   10) [000] d..3 29479.790753: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18430         rcuop/0-10    (   10) [000] d..2 29479.790761: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18431     rcu_preempt-7     (    7) [000] d..2 29479.790784: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18432          <idle>-0     (-----) [000] d..1 29479.790794: cpu_idle: state=2 cpu_id=0
18433 NeuralNetworksT-13707 (13707) [001] d.H4 29479.797152: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18434 NeuralNetworksT-13707 (13707) [001] d.H4 29479.797171: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18435 NeuralNetworksT-13707 (13707) [001] d.H5 29479.797184: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18436          <idle>-0     (-----) [000] d.s2 29479.797269: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18437          <idle>-0     (-----) [000] dns3 29479.797286: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18438          <idle>-0     (-----) [000] .n.1 29479.797302: cpu_idle: state=4294967295 cpu_id=0
18439          <idle>-0     (-----) [000] d..2 29479.797311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18440     rcu_preempt-7     (    7) [000] d..2 29479.797319: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
18441     rcu_preempt-7     (    7) [000] d..3 29479.797344: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
18442          <idle>-0     (-----) [002] .n.1 29479.797361: cpu_idle: state=4294967295 cpu_id=2
18443     rcu_preempt-7     (    7) [000] d..2 29479.797363: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18444          <idle>-0     (-----) [000] d..1 29479.797373: cpu_idle: state=2 cpu_id=0
18445          <idle>-0     (-----) [002] d..2 29479.797379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18446         sugov:0-559   (  559) [002] .... 29479.797408: clk_set_rate: pwrcl_clk 1420800000
18447         sugov:0-559   (  559) [002] .... 29479.797415: clk_set_rate: cpu3_pwrcl_clk 1324800000
18448         sugov:0-559   (  559) [002] .... 29479.797424: clk_set_rate: cpu2_pwrcl_clk 1324800000
18449         sugov:0-559   (  559) [002] .... 29479.797431: clk_set_rate: cpu1_pwrcl_clk 1324800000
18450         sugov:0-559   (  559) [002] .... 29479.797439: clk_set_rate: cpu0_pwrcl_clk 1420800000
18451         sugov:0-559   (  559) [002] .... 29479.797447: cpu_frequency: state=1420800 cpu_id=0
18452         sugov:0-559   (  559) [002] .... 29479.797467: cpu_frequency: state=1420800 cpu_id=1
18453         sugov:0-559   (  559) [002] .... 29479.797469: cpu_frequency: state=1420800 cpu_id=2
18454         sugov:0-559   (  559) [002] .... 29479.797473: cpu_frequency: state=1420800 cpu_id=3
18455         sugov:0-559   (  559) [002] d..2 29479.797491: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18456         rcuop/0-10    (   10) [002] d..2 29479.797496: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
18457         rcuop/0-10    (   10) [002] d..3 29479.797532: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
18458         rcuop/0-10    (   10) [002] d..2 29479.797574: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
18459         rcuop/1-21    (   21) [002] d..2 29479.797600: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18460          <idle>-0     (-----) [002] d..1 29479.797612: cpu_idle: state=0 cpu_id=2
18461          <idle>-0     (-----) [005] dnh2 29479.797975: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18462          <idle>-0     (-----) [005] .n.1 29479.797984: cpu_idle: state=4294967295 cpu_id=5
18463          <idle>-0     (-----) [005] d..2 29479.797995: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18464         sugov:4-560   (  560) [005] d..2 29479.798017: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18465          <idle>-0     (-----) [005] d..1 29479.798027: cpu_idle: state=2 cpu_id=5
18466 NeuralNetworksT-13707 (13707) [001] d.s2 29479.800413: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18467 NeuralNetworksT-13707 (13707) [001] dns3 29479.800431: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18468 NeuralNetworksT-13707 (13707) [001] d..2 29479.800443: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18469  kworker/u16:10-23868 (23868) [001] .... 29479.800462: clk_set_rate: l3_cluster0_vote_clk 1132800000
18470  kworker/u16:10-23868 (23868) [001] .... 29479.800466: clk_set_rate: l3_clk 1132800000
18471  kworker/u16:10-23868 (23868) [001] d..2 29479.800666: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
18472          <idle>-0     (-----) [003] d.s3 29479.800892: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18473          <idle>-0     (-----) [003] d.s4 29479.800915: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18474          <idle>-0     (-----) [003] dns4 29479.800920: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18475          <idle>-0     (-----) [003] .n.1 29479.800928: cpu_idle: state=4294967295 cpu_id=3
18476          <idle>-0     (-----) [003] d..2 29479.800945: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18477  kworker/u16:10-23868 (23868) [003] d..2 29479.800986: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18478          <idle>-0     (-----) [003] d..1 29479.800996: cpu_idle: state=2 cpu_id=3
18479          <idle>-0     (-----) [002] ...1 29479.803617: cpu_idle: state=4294967295 cpu_id=2
18480          <idle>-0     (-----) [002] d..1 29479.803621: cpu_idle: state=2 cpu_id=2
18481 NeuralNetworksT-13707 (13707) [001] d.s2 29479.807082: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18482 NeuralNetworksT-13707 (13707) [001] d.s3 29479.807109: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18483          <idle>-0     (-----) [003] .n.1 29479.807375: cpu_idle: state=4294967295 cpu_id=3
18484          <idle>-0     (-----) [003] d..2 29479.807389: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18485  kworker/u16:10-23868 (23868) [003] d..2 29479.807624: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18486          <idle>-0     (-----) [003] d.s4 29479.807662: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18487          <idle>-0     (-----) [003] d.s5 29479.807669: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18488          <idle>-0     (-----) [003] dns5 29479.807672: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18489          <idle>-0     (-----) [003] d..2 29479.807681: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18490  kworker/u16:10-23868 (23868) [003] d..2 29479.807762: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18491          <idle>-0     (-----) [003] d..1 29479.807771: cpu_idle: state=2 cpu_id=3
18492 NeuralNetworksT-13707 (13707) [001] d.s2 29479.810409: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18493 NeuralNetworksT-13707 (13707) [001] d.s3 29479.810433: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18494          <idle>-0     (-----) [003] .n.1 29479.810691: cpu_idle: state=4294967295 cpu_id=3
18495          <idle>-0     (-----) [003] d..2 29479.810705: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18496  kworker/u16:10-23868 (23868) [003] d..2 29479.810831: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18497          <idle>-0     (-----) [003] d..1 29479.810844: cpu_idle: state=0 cpu_id=3
18498          <idle>-0     (-----) [003] ...1 29479.816853: cpu_idle: state=4294967295 cpu_id=3
18499          <idle>-0     (-----) [003] d..1 29479.816856: cpu_idle: state=2 cpu_id=3
18500 NeuralNetworksT-13707 (13707) [001] d.H2 29479.817167: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18501 NeuralNetworksT-13707 (13707) [001] d.H2 29479.817187: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18502 NeuralNetworksT-13707 (13707) [001] d.H3 29479.817198: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18503          <idle>-0     (-----) [002] .n.1 29479.817465: cpu_idle: state=4294967295 cpu_id=2
18504          <idle>-0     (-----) [002] d..2 29479.817479: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18505         sugov:0-559   (  559) [002] .... 29479.817513: clk_set_rate: pwrcl_clk 825600000
18506         sugov:0-559   (  559) [002] .... 29479.817521: clk_set_rate: cpu3_pwrcl_clk 1420800000
18507         sugov:0-559   (  559) [002] .... 29479.817530: clk_set_rate: cpu2_pwrcl_clk 1420800000
18508         sugov:0-559   (  559) [002] .... 29479.817540: clk_set_rate: cpu1_pwrcl_clk 1420800000
18509         sugov:0-559   (  559) [002] .... 29479.817549: clk_set_rate: cpu0_pwrcl_clk 825600000
18510         sugov:0-559   (  559) [002] .... 29479.817670: cpu_frequency: state=825600 cpu_id=0
18511         sugov:0-559   (  559) [002] .... 29479.817699: cpu_frequency: state=825600 cpu_id=1
18512         sugov:0-559   (  559) [002] .... 29479.817703: cpu_frequency: state=825600 cpu_id=2
18513         sugov:0-559   (  559) [002] .... 29479.817707: cpu_frequency: state=825600 cpu_id=3
18514         sugov:0-559   (  559) [002] d..2 29479.817745: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18515          <idle>-0     (-----) [002] d..1 29479.817762: cpu_idle: state=0 cpu_id=2
18516          <idle>-0     (-----) [005] dnh2 29479.818250: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18517          <idle>-0     (-----) [005] .n.1 29479.818260: cpu_idle: state=4294967295 cpu_id=5
18518          <idle>-0     (-----) [005] d..2 29479.818273: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18519         sugov:4-560   (  560) [005] d..2 29479.818297: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18520          <idle>-0     (-----) [005] d..1 29479.818308: cpu_idle: state=2 cpu_id=5
18521 NeuralNetworksT-13707 (13707) [001] d.s2 29479.820421: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18522 NeuralNetworksT-13707 (13707) [001] d.s3 29479.820467: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18523          <idle>-0     (-----) [002] .n.1 29479.820474: cpu_idle: state=4294967295 cpu_id=2
18524          <idle>-0     (-----) [002] d..2 29479.820489: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18525  kworker/u16:10-23868 (23868) [002] .... 29479.820551: clk_set_rate: l3_cluster0_vote_clk 1036800000
18526  kworker/u16:10-23868 (23868) [002] .... 29479.820559: clk_set_rate: l3_clk 1036800000
18527  kworker/u16:10-23868 (23868) [002] d..2 29479.820682: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18528          <idle>-0     (-----) [002] d..1 29479.820698: cpu_idle: state=0 cpu_id=2
18529          <idle>-0     (-----) [002] ...1 29479.826707: cpu_idle: state=4294967295 cpu_id=2
18530          <idle>-0     (-----) [002] d..1 29479.826714: cpu_idle: state=2 cpu_id=2
18531 NeuralNetworksT-13707 (13707) [001] d.s2 29479.830426: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18532 NeuralNetworksT-13707 (13707) [001] d.s3 29479.830474: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18533          <idle>-0     (-----) [002] .n.1 29479.830823: cpu_idle: state=4294967295 cpu_id=2
18534          <idle>-0     (-----) [002] d..2 29479.830854: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18535  kworker/u16:10-23868 (23868) [002] d..2 29479.831230: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18536          <idle>-0     (-----) [002] d..1 29479.831252: cpu_idle: state=2 cpu_id=2
18537          <idle>-0     (-----) [003] d.s3 29479.832000: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18538          <idle>-0     (-----) [003] d.s4 29479.832014: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18539          <idle>-0     (-----) [003] d.s4 29479.832025: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18540          <idle>-0     (-----) [003] ...1 29479.832038: cpu_idle: state=4294967295 cpu_id=3
18541          <idle>-0     (-----) [003] d..1 29479.832049: cpu_idle: state=0 cpu_id=3
18542          <idle>-0     (-----) [002] .n.1 29479.832206: cpu_idle: state=4294967295 cpu_id=2
18543          <idle>-0     (-----) [002] d..2 29479.832230: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18544  kworker/u16:10-23868 (23868) [002] .... 29479.832319: clk_set_rate: l3_cluster0_vote_clk 652800000
18545  kworker/u16:10-23868 (23868) [002] .... 29479.832324: clk_set_rate: l3_clk 652800000
18546  kworker/u16:10-23868 (23868) [002] d..2 29479.832373: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18547          <idle>-0     (-----) [002] d..1 29479.832393: cpu_idle: state=0 cpu_id=2
18548 NeuralNetworksT-13707 (13707) [001] d.H2 29479.837175: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18549 NeuralNetworksT-13707 (13707) [001] d.H2 29479.837199: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18550 NeuralNetworksT-13707 (13707) [001] d.H3 29479.837218: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18551          <idle>-0     (-----) [002] .n.1 29479.837224: cpu_idle: state=4294967295 cpu_id=2
18552          <idle>-0     (-----) [002] d..2 29479.837238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18553         sugov:0-559   (  559) [002] .... 29479.837267: clk_set_rate: pwrcl_clk 1766400000
18554         sugov:0-559   (  559) [002] d..2 29479.837381: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18555          <idle>-0     (-----) [002] d..1 29479.837395: cpu_idle: state=0 cpu_id=2
18556          <idle>-0     (-----) [003] d.s3 29479.837507: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18557          <idle>-0     (-----) [003] d.s4 29479.837526: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18558          <idle>-0     (-----) [002] .n.1 29479.837533: cpu_idle: state=4294967295 cpu_id=2
18559          <idle>-0     (-----) [003] ...1 29479.837537: cpu_idle: state=4294967295 cpu_id=3
18560          <idle>-0     (-----) [002] d..2 29479.837543: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18561          <idle>-0     (-----) [003] d..1 29479.837544: cpu_idle: state=0 cpu_id=3
18562         sugov:0-559   (  559) [002] .... 29479.837559: clk_set_rate: cpu3_pwrcl_clk 825600000
18563         sugov:0-559   (  559) [002] .... 29479.837569: clk_set_rate: cpu2_pwrcl_clk 825600000
18564         sugov:0-559   (  559) [002] .... 29479.837578: clk_set_rate: cpu1_pwrcl_clk 825600000
18565         sugov:0-559   (  559) [002] .... 29479.837587: clk_set_rate: cpu0_pwrcl_clk 1766400000
18566         sugov:0-559   (  559) [002] .... 29479.837597: cpu_frequency: state=1766400 cpu_id=0
18567         sugov:0-559   (  559) [002] d..2 29479.837750: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18568          <idle>-0     (-----) [002] d..1 29479.837759: cpu_idle: state=0 cpu_id=2
18569          <idle>-0     (-----) [003] d.s3 29479.837779: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18570          <idle>-0     (-----) [003] d.s4 29479.837789: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18571          <idle>-0     (-----) [003] ...1 29479.837794: cpu_idle: state=4294967295 cpu_id=3
18572          <idle>-0     (-----) [002] .n.1 29479.837795: cpu_idle: state=4294967295 cpu_id=2
18573          <idle>-0     (-----) [003] d..1 29479.837798: cpu_idle: state=0 cpu_id=3
18574          <idle>-0     (-----) [002] d..2 29479.837801: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18575         sugov:0-559   (  559) [002] .... 29479.837807: cpu_frequency: state=1766400 cpu_id=1
18576         sugov:0-559   (  559) [002] .... 29479.837812: cpu_frequency: state=1766400 cpu_id=2
18577         sugov:0-559   (  559) [002] .... 29479.837814: cpu_frequency: state=1766400 cpu_id=3
18578         sugov:0-559   (  559) [002] d..2 29479.837827: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18579          <idle>-0     (-----) [002] d..1 29479.837834: cpu_idle: state=0 cpu_id=2
18580          <idle>-0     (-----) [005] dnh2 29479.838008: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18581          <idle>-0     (-----) [005] .n.1 29479.838017: cpu_idle: state=4294967295 cpu_id=5
18582          <idle>-0     (-----) [005] d..2 29479.838028: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18583         sugov:4-560   (  560) [005] d..2 29479.838049: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18584          <idle>-0     (-----) [005] d..1 29479.838061: cpu_idle: state=2 cpu_id=5
18585 NeuralNetworksT-13707 (13707) [001] d.s2 29479.840413: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18586 NeuralNetworksT-13707 (13707) [001] dns3 29479.840444: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18587 NeuralNetworksT-13707 (13707) [001] d..2 29479.840454: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18588  kworker/u16:10-23868 (23868) [001] .... 29479.840472: clk_set_rate: l3_cluster0_vote_clk 940800000
18589  kworker/u16:10-23868 (23868) [001] .... 29479.840475: clk_set_rate: l3_clk 940800000
18590  kworker/u16:10-23868 (23868) [001] d..2 29479.840620: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
18591          <idle>-0     (-----) [003] d.s3 29479.840652: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18592          <idle>-0     (-----) [003] d.s4 29479.840667: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18593          <idle>-0     (-----) [003] dns4 29479.840671: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18594          <idle>-0     (-----) [003] .n.1 29479.840675: cpu_idle: state=4294967295 cpu_id=3
18595          <idle>-0     (-----) [003] d..2 29479.840684: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18596  kworker/u16:10-23868 (23868) [003] d..2 29479.840709: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18597          <idle>-0     (-----) [003] d..1 29479.840716: cpu_idle: state=0 cpu_id=3
18598 NeuralNetworksT-13707 (13707) [001] d.h1 29479.842413: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
18599 NeuralNetworksT-13707 (13707) [001] d.h2 29479.842446: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
18600          <idle>-0     (-----) [000] dnh2 29479.842740: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
18601          <idle>-0     (-----) [000] dnh3 29479.842772: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=002
18602          <idle>-0     (-----) [002] .n.1 29479.842777: cpu_idle: state=4294967295 cpu_id=2
18603          <idle>-0     (-----) [000] .n.1 29479.842782: cpu_idle: state=4294967295 cpu_id=0
18604          <idle>-0     (-----) [002] d..2 29479.842786: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
18605          <idle>-0     (-----) [000] d..2 29479.842795: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
18606  CCodecWatchdog-23520 (  884) [002] d..2 29479.842937: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18607          <idle>-0     (-----) [002] d..1 29479.842945: cpu_idle: state=0 cpu_id=2
18608  CCodecWatchdog-24186 (23968) [000] d..2 29479.842974: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18609          <idle>-0     (-----) [000] d..1 29479.842987: cpu_idle: state=0 cpu_id=0
18610          <idle>-0     (-----) [003] ...1 29479.846718: cpu_idle: state=4294967295 cpu_id=3
18611          <idle>-0     (-----) [003] d..1 29479.846721: cpu_idle: state=2 cpu_id=3
18612          <idle>-0     (-----) [002] ...1 29479.848946: cpu_idle: state=4294967295 cpu_id=2
18613          <idle>-0     (-----) [002] d..1 29479.848948: cpu_idle: state=2 cpu_id=2
18614          <idle>-0     (-----) [000] ...1 29479.848989: cpu_idle: state=4294967295 cpu_id=0
18615          <idle>-0     (-----) [000] d..1 29479.848992: cpu_idle: state=2 cpu_id=0
18616 NeuralNetworksT-13707 (13707) [001] d.s2 29479.850410: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18617 NeuralNetworksT-13707 (13707) [001] d.s3 29479.850433: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18618          <idle>-0     (-----) [003] .n.1 29479.850652: cpu_idle: state=4294967295 cpu_id=3
18619          <idle>-0     (-----) [003] d..2 29479.850665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18620  kworker/u16:10-23868 (23868) [003] .... 29479.850743: clk_set_rate: l3_cluster0_vote_clk 1401600000
18621  kworker/u16:10-23868 (23868) [003] .... 29479.850746: clk_set_rate: l3_clk 1401600000
18622  kworker/u16:10-23868 (23868) [003] d..2 29479.850776: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18623          <idle>-0     (-----) [003] d..1 29479.850784: cpu_idle: state=2 cpu_id=3
18624 NeuralNetworksT-13707 (13707) [001] d.h2 29479.857084: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
18625 NeuralNetworksT-13707 (13707) [001] dnh3 29479.857096: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
18626 NeuralNetworksT-13707 (13707) [001] dnH2 29479.857151: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18627 NeuralNetworksT-13707 (13707) [001] dnH2 29479.857164: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18628 NeuralNetworksT-13707 (13707) [001] dnH3 29479.857172: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18629 NeuralNetworksT-13707 (13707) [001] dns2 29479.857176: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18630 NeuralNetworksT-13707 (13707) [001] dns3 29479.857197: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18631 NeuralNetworksT-13707 (13707) [001] dns2 29479.857206: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18632 NeuralNetworksT-13707 (13707) [001] dns3 29479.857223: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
18633 NeuralNetworksT-13707 (13707) [001] d..2 29479.857230: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
18634     migration/1-17    (   17) [001] d..2 29479.857303: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
18635          <idle>-0     (-----) [000] ...1 29479.857363: cpu_idle: state=4294967295 cpu_id=0
18636          <idle>-0     (-----) [000] d..1 29479.857369: cpu_idle: state=0 cpu_id=0
18637          <idle>-0     (-----) [002] .n.1 29479.857386: cpu_idle: state=4294967295 cpu_id=2
18638     kworker/1:1-13678 (13678) [001] d..2 29479.857390: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18639          <idle>-0     (-----) [002] d..2 29479.857397: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18640          <idle>-0     (-----) [001] d..1 29479.857407: cpu_idle: state=2 cpu_id=1
18641         sugov:0-559   (  559) [002] .... 29479.857415: clk_set_rate: pwrcl_clk 1056000000
18642         sugov:0-559   (  559) [002] .... 29479.857467: clk_set_rate: cpu3_pwrcl_clk 1766400000
18643         sugov:0-559   (  559) [002] .... 29479.857477: clk_set_rate: cpu2_pwrcl_clk 1766400000
18644         sugov:0-559   (  559) [002] .... 29479.857484: clk_set_rate: cpu1_pwrcl_clk 1766400000
18645         sugov:0-559   (  559) [002] .... 29479.857492: clk_set_rate: cpu0_pwrcl_clk 1056000000
18646         sugov:0-559   (  559) [002] .... 29479.857605: cpu_frequency: state=1056000 cpu_id=0
18647          <idle>-0     (-----) [003] .n.1 29479.857612: cpu_idle: state=4294967295 cpu_id=3
18648          <idle>-0     (-----) [003] d..2 29479.857625: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18649         sugov:0-559   (  559) [002] d..2 29479.857753: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18650          <idle>-0     (-----) [002] d..1 29479.857765: cpu_idle: state=2 cpu_id=2
18651  kworker/u16:10-23868 (23868) [003] d.s2 29479.857775: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18652  kworker/u16:10-23868 (23868) [003] d.s3 29479.857790: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18653  kworker/u16:10-23868 (23868) [003] d..2 29479.857811: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18654          <idle>-0     (-----) [003] d..1 29479.857822: cpu_idle: state=2 cpu_id=3
18655          <idle>-0     (-----) [006] .n.1 29479.858227: cpu_idle: state=4294967295 cpu_id=6
18656          <idle>-0     (-----) [002] .n.1 29479.858253: cpu_idle: state=4294967295 cpu_id=2
18657          <idle>-0     (-----) [006] d..2 29479.858257: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
18658          <idle>-0     (-----) [002] d..2 29479.858268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18659          <idle>-0     (-----) [005] dnh2 29479.858272: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18660          <idle>-0     (-----) [005] .n.1 29479.858280: cpu_idle: state=4294967295 cpu_id=5
18661         sugov:0-559   (  559) [002] d..1 29479.858283: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18662          <idle>-0     (-----) [005] d..2 29479.858290: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18663         sugov:0-559   (  559) [002] d..2 29479.858294: sched_blocked_reason: pid=23868 iowait=0 caller=update_request_adhoc+0x384/0x480
18664         sugov:0-559   (  559) [002] d..2 29479.858302: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18665         sugov:0-559   (  559) [002] .... 29479.858310: cpu_frequency: state=1056000 cpu_id=1
18666         sugov:4-560   (  560) [005] d..2 29479.858312: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18667         sugov:0-559   (  559) [002] .... 29479.858316: cpu_frequency: state=1056000 cpu_id=2
18668         sugov:0-559   (  559) [002] .... 29479.858320: cpu_frequency: state=1056000 cpu_id=3
18669          <idle>-0     (-----) [005] d..1 29479.858325: cpu_idle: state=2 cpu_id=5
18670         sugov:0-559   (  559) [002] d..2 29479.858344: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18671          <idle>-0     (-----) [002] d..1 29479.858357: cpu_idle: state=0 cpu_id=2
18672          <idle>-0     (-----) [003] .n.1 29479.858590: cpu_idle: state=4294967295 cpu_id=3
18673          <idle>-0     (-----) [003] d..2 29479.858604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18674  kworker/u16:10-23868 (23868) [003] d..2 29479.858742: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18675          <idle>-0     (-----) [003] d.s4 29479.858780: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18676          <idle>-0     (-----) [003] d.s5 29479.858790: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18677          <idle>-0     (-----) [003] dns5 29479.858793: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18678          <idle>-0     (-----) [003] d..2 29479.858805: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18679  kworker/u16:10-23868 (23868) [003] d..2 29479.858828: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18680          <idle>-0     (-----) [003] d..1 29479.858840: cpu_idle: state=0 cpu_id=3
18681 NeuralNetworksT-13707 (13707) [006] d.s2 29479.860429: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18682          <idle>-0     (-----) [000] dnh2 29479.860469: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18683          <idle>-0     (-----) [000] .n.1 29479.860476: cpu_idle: state=4294967295 cpu_id=0
18684          <idle>-0     (-----) [000] d..2 29479.860487: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18685  kworker/u16:10-23868 (23868) [000] .... 29479.860507: clk_set_rate: l3_cluster0_vote_clk 300000000
18686  kworker/u16:10-23868 (23868) [000] .... 29479.860511: clk_set_rate: l3_clk 300000000
18687  kworker/u16:10-23868 (23868) [000] d..2 29479.860696: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18688          <idle>-0     (-----) [000] d..1 29479.860713: cpu_idle: state=0 cpu_id=0
18689          <idle>-0     (-----) [002] ...1 29479.864369: cpu_idle: state=4294967295 cpu_id=2
18690          <idle>-0     (-----) [002] d..1 29479.864374: cpu_idle: state=2 cpu_id=2
18691          <idle>-0     (-----) [003] ...1 29479.864850: cpu_idle: state=4294967295 cpu_id=3
18692          <idle>-0     (-----) [003] d..1 29479.864857: cpu_idle: state=2 cpu_id=3
18693          <idle>-0     (-----) [000] ...1 29479.866723: cpu_idle: state=4294967295 cpu_id=0
18694          <idle>-0     (-----) [000] d..1 29479.866727: cpu_idle: state=2 cpu_id=0
18695 NeuralNetworksT-13707 (13707) [006] d.s2 29479.870406: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18696          <idle>-0     (-----) [000] dnh2 29479.870804: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18697          <idle>-0     (-----) [000] .n.1 29479.870817: cpu_idle: state=4294967295 cpu_id=0
18698          <idle>-0     (-----) [000] d..2 29479.870837: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18699  kworker/u16:10-23868 (23868) [000] .... 29479.870964: clk_set_rate: l3_cluster1_vote_clk 576000000
18700  kworker/u16:10-23868 (23868) [000] .... 29479.870972: clk_set_rate: l3_clk 576000000
18701  kworker/u16:10-23868 (23868) [000] d..2 29479.871050: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18702          <idle>-0     (-----) [000] d..1 29479.871064: cpu_idle: state=2 cpu_id=0
18703 NeuralNetworksT-13707 (13707) [006] d.H2 29479.877131: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18704 NeuralNetworksT-13707 (13707) [006] d.H3 29479.877146: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18705          <idle>-0     (-----) [005] .n.1 29479.877690: cpu_idle: state=4294967295 cpu_id=5
18706          <idle>-0     (-----) [005] d..2 29479.877708: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18707         sugov:4-560   (  560) [005] .... 29479.877750: clk_set_rate: perfcl_clk 2803200000
18708         sugov:4-560   (  560) [005] .... 29479.877753: clk_set_rate: cpu7_perfcl_clk 825600000
18709         sugov:4-560   (  560) [005] .... 29479.877762: clk_set_rate: cpu6_perfcl_clk 825600000
18710         sugov:4-560   (  560) [005] .... 29479.877769: clk_set_rate: cpu5_perfcl_clk 825600000
18711         sugov:4-560   (  560) [005] .... 29479.877778: clk_set_rate: cpu4_perfcl_clk 2803200000
18712         sugov:4-560   (  560) [005] .... 29479.877787: cpu_frequency: state=2803200 cpu_id=4
18713         sugov:4-560   (  560) [005] d..2 29479.877978: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
18714          <idle>-0     (-----) [005] d..1 29479.877985: cpu_idle: state=2 cpu_id=5
18715          <idle>-0     (-----) [003] d.s3 29479.879898: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18716          <idle>-0     (-----) [003] ...1 29479.879923: cpu_idle: state=4294967295 cpu_id=3
18717          <idle>-0     (-----) [003] d..1 29479.879932: cpu_idle: state=0 cpu_id=3
18718          <idle>-0     (-----) [005] dnh2 29479.880093: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18719          <idle>-0     (-----) [005] .n.1 29479.880098: cpu_idle: state=4294967295 cpu_id=5
18720          <idle>-0     (-----) [005] d..2 29479.880104: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18721         sugov:4-560   (  560) [005] .... 29479.880110: cpu_frequency: state=2803200 cpu_id=5
18722         sugov:4-560   (  560) [005] .... 29479.880113: cpu_frequency: state=2803200 cpu_id=6
18723         sugov:4-560   (  560) [005] .... 29479.880114: cpu_frequency: state=2803200 cpu_id=7
18724         sugov:4-560   (  560) [005] d..2 29479.880123: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18725          <idle>-0     (-----) [005] d..1 29479.880129: cpu_idle: state=2 cpu_id=5
18726 NeuralNetworksT-13707 (13707) [006] d.s2 29479.880399: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
18727 NeuralNetworksT-13707 (13707) [006] d.s2 29479.880415: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
18728 NeuralNetworksT-13707 (13707) [006] dns3 29479.880421: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
18729 NeuralNetworksT-13707 (13707) [006] d..2 29479.880425: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
18730          <idle>-0     (-----) [003] dnh2 29479.880427: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18731          <idle>-0     (-----) [003] .n.1 29479.880434: cpu_idle: state=4294967295 cpu_id=3
18732     kworker/6:0-21469 (21469) [006] d..2 29479.880437: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
18733          <idle>-0     (-----) [003] d..2 29479.880447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18734  kworker/u16:10-23868 (23868) [003] .... 29479.880503: clk_set_rate: l3_cluster1_vote_clk 940800000
18735  kworker/u16:10-23868 (23868) [003] .... 29479.880507: clk_set_rate: l3_clk 940800000
18736  kworker/u16:10-23868 (23868) [003] d..2 29479.880593: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18737          <idle>-0     (-----) [003] d..1 29479.880605: cpu_idle: state=0 cpu_id=3
18738          <idle>-0     (-----) [003] ...1 29479.886609: cpu_idle: state=4294967295 cpu_id=3
18739          <idle>-0     (-----) [003] d..1 29479.886613: cpu_idle: state=2 cpu_id=3
18740 NeuralNetworksT-13707 (13707) [006] d.s2 29479.890396: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18741          <idle>-0     (-----) [003] dnh2 29479.890596: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18742          <idle>-0     (-----) [003] .n.1 29479.890604: cpu_idle: state=4294967295 cpu_id=3
18743          <idle>-0     (-----) [003] d..2 29479.890618: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18744  kworker/u16:10-23868 (23868) [003] .... 29479.890696: clk_set_rate: l3_cluster1_vote_clk 1478400000
18745  kworker/u16:10-23868 (23868) [003] .... 29479.890700: clk_set_rate: l3_clk 1478400000
18746  kworker/u16:10-23868 (23868) [003] d..2 29479.890776: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18747          <idle>-0     (-----) [003] d.s4 29479.890805: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18748          <idle>-0     (-----) [003] d.s5 29479.890812: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18749          <idle>-0     (-----) [003] dns5 29479.890816: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18750          <idle>-0     (-----) [003] d..2 29479.890827: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18751  kworker/u16:10-23868 (23868) [003] d..2 29479.890873: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18752          <idle>-0     (-----) [003] d..1 29479.890887: cpu_idle: state=0 cpu_id=3
18753          <idle>-0     (-----) [003] ...1 29479.896889: cpu_idle: state=4294967295 cpu_id=3
18754          <idle>-0     (-----) [003] d..1 29479.896893: cpu_idle: state=2 cpu_id=3
18755 NeuralNetworksT-13707 (13707) [006] d.H2 29479.897087: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18756 NeuralNetworksT-13707 (13707) [006] d.H3 29479.897094: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18757 NeuralNetworksT-13707 (13707) [006] d.H2 29479.897095: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18758          <idle>-0     (-----) [005] .n.1 29479.897247: cpu_idle: state=4294967295 cpu_id=5
18759          <idle>-0     (-----) [005] d..2 29479.897254: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18760         sugov:4-560   (  560) [005] d..2 29479.897264: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18761          <idle>-0     (-----) [005] d..1 29479.897268: cpu_idle: state=2 cpu_id=5
18762          <idle>-0     (-----) [002] dnh2 29479.897291: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18763          <idle>-0     (-----) [002] .n.1 29479.897299: cpu_idle: state=4294967295 cpu_id=2
18764          <idle>-0     (-----) [002] d..2 29479.897311: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18765         sugov:0-559   (  559) [002] .... 29479.897330: clk_set_rate: pwrcl_clk 652800000
18766         sugov:0-559   (  559) [002] .... 29479.897337: clk_set_rate: cpu3_pwrcl_clk 1056000000
18767         sugov:0-559   (  559) [002] .... 29479.897344: clk_set_rate: cpu2_pwrcl_clk 1056000000
18768         sugov:0-559   (  559) [002] .... 29479.897351: clk_set_rate: cpu1_pwrcl_clk 1056000000
18769         sugov:0-559   (  559) [002] .... 29479.897358: clk_set_rate: cpu0_pwrcl_clk 652800000
18770         sugov:0-559   (  559) [002] .... 29479.897471: cpu_frequency: state=652800 cpu_id=0
18771         sugov:0-559   (  559) [002] .... 29479.897486: cpu_frequency: state=652800 cpu_id=1
18772         sugov:0-559   (  559) [002] .... 29479.897491: cpu_frequency: state=652800 cpu_id=2
18773         sugov:0-559   (  559) [002] .... 29479.897497: cpu_frequency: state=652800 cpu_id=3
18774         sugov:0-559   (  559) [002] d..2 29479.897529: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18775          <idle>-0     (-----) [002] d..1 29479.897547: cpu_idle: state=0 cpu_id=2
18776 NeuralNetworksT-13707 (13707) [006] d.s2 29479.900396: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
18777          <idle>-0     (-----) [002] dnh2 29479.900426: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18778          <idle>-0     (-----) [002] .n.1 29479.900434: cpu_idle: state=4294967295 cpu_id=2
18779          <idle>-0     (-----) [002] d..2 29479.900449: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18780  kworker/u16:10-23868 (23868) [002] d..2 29479.900584: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18781          <idle>-0     (-----) [002] d..1 29479.900601: cpu_idle: state=0 cpu_id=2
18782          <idle>-0     (-----) [002] ...1 29479.906608: cpu_idle: state=4294967295 cpu_id=2
18783          <idle>-0     (-----) [002] d..1 29479.906614: cpu_idle: state=2 cpu_id=2
18784 NeuralNetworksT-13707 (13707) [006] d.s2 29479.907061: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18785          <idle>-0     (-----) [002] dnh2 29479.907272: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18786          <idle>-0     (-----) [002] .n.1 29479.907281: cpu_idle: state=4294967295 cpu_id=2
18787          <idle>-0     (-----) [002] d..2 29479.907299: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18788  kworker/u16:10-23868 (23868) [002] d..2 29479.907499: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18789          <idle>-0     (-----) [002] d..1 29479.907518: cpu_idle: state=0 cpu_id=2
18790          <idle>-0     (-----) [003] d.s3 29479.907640: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18791          <idle>-0     (-----) [003] d.s4 29479.907657: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18792          <idle>-0     (-----) [003] d.s4 29479.907668: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18793          <idle>-0     (-----) [002] .n.1 29479.907676: cpu_idle: state=4294967295 cpu_id=2
18794          <idle>-0     (-----) [003] ...1 29479.907684: cpu_idle: state=4294967295 cpu_id=3
18795          <idle>-0     (-----) [002] d..2 29479.907689: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18796          <idle>-0     (-----) [003] d..1 29479.907696: cpu_idle: state=0 cpu_id=3
18797  kworker/u16:10-23868 (23868) [002] d..2 29479.907759: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18798          <idle>-0     (-----) [002] d..1 29479.907775: cpu_idle: state=0 cpu_id=2
18799 NeuralNetworksT-13707 (13707) [006] d.s2 29479.910396: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18800          <idle>-0     (-----) [002] dnh2 29479.910419: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18801          <idle>-0     (-----) [002] .n.1 29479.910427: cpu_idle: state=4294967295 cpu_id=2
18802          <idle>-0     (-----) [002] d..2 29479.910440: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18803  kworker/u16:10-23868 (23868) [002] d..2 29479.910568: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18804          <idle>-0     (-----) [002] d..1 29479.910582: cpu_idle: state=2 cpu_id=2
18805          <idle>-0     (-----) [003] ...1 29479.913703: cpu_idle: state=4294967295 cpu_id=3
18806          <idle>-0     (-----) [003] d..1 29479.913709: cpu_idle: state=2 cpu_id=3
18807 NeuralNetworksT-13707 (13707) [006] d.H2 29479.917088: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18808 NeuralNetworksT-13707 (13707) [006] d.H3 29479.917094: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18809 NeuralNetworksT-13707 (13707) [006] d.H2 29479.917095: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18810          <idle>-0     (-----) [005] .n.1 29479.917248: cpu_idle: state=4294967295 cpu_id=5
18811          <idle>-0     (-----) [005] d..2 29479.917255: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18812         sugov:4-560   (  560) [005] d..2 29479.917265: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18813          <idle>-0     (-----) [005] d..1 29479.917269: cpu_idle: state=2 cpu_id=5
18814          <idle>-0     (-----) [002] dnh2 29479.917306: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18815          <idle>-0     (-----) [002] .n.1 29479.917316: cpu_idle: state=4294967295 cpu_id=2
18816          <idle>-0     (-----) [002] d..2 29479.917331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18817         sugov:0-559   (  559) [002] d..2 29479.917362: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18818          <idle>-0     (-----) [002] d..1 29479.917377: cpu_idle: state=2 cpu_id=2
18819 NeuralNetworksT-13707 (13707) [006] d.s2 29479.920395: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18820          <idle>-0     (-----) [002] dnh2 29479.920606: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18821          <idle>-0     (-----) [002] .n.1 29479.920616: cpu_idle: state=4294967295 cpu_id=2
18822          <idle>-0     (-----) [002] d..2 29479.920634: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18823  kworker/u16:10-23868 (23868) [002] d..2 29479.920778: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18824          <idle>-0     (-----) [002] d..1 29479.920796: cpu_idle: state=0 cpu_id=2
18825          <idle>-0     (-----) [002] ...1 29479.926803: cpu_idle: state=4294967295 cpu_id=2
18826          <idle>-0     (-----) [002] d..1 29479.926809: cpu_idle: state=2 cpu_id=2
18827 NeuralNetworksT-13707 (13707) [006] d.s2 29479.930395: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18828          <idle>-0     (-----) [002] dnh2 29479.930608: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18829          <idle>-0     (-----) [002] .n.1 29479.930618: cpu_idle: state=4294967295 cpu_id=2
18830          <idle>-0     (-----) [002] d..2 29479.930635: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18831  kworker/u16:10-23868 (23868) [002] d..2 29479.930779: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18832          <idle>-0     (-----) [002] d..1 29479.930798: cpu_idle: state=0 cpu_id=2
18833          <idle>-0     (-----) [002] ...1 29479.936804: cpu_idle: state=4294967295 cpu_id=2
18834          <idle>-0     (-----) [002] d..1 29479.936810: cpu_idle: state=2 cpu_id=2
18835 NeuralNetworksT-13707 (13707) [006] d.H3 29479.937089: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18836 NeuralNetworksT-13707 (13707) [006] d.H4 29479.937095: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18837 NeuralNetworksT-13707 (13707) [006] d.H3 29479.937096: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18838          <idle>-0     (-----) [005] .n.1 29479.937251: cpu_idle: state=4294967295 cpu_id=5
18839          <idle>-0     (-----) [005] d..2 29479.937257: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18840         sugov:4-560   (  560) [005] d..2 29479.937267: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18841          <idle>-0     (-----) [005] d..1 29479.937270: cpu_idle: state=2 cpu_id=5
18842          <idle>-0     (-----) [002] dnh2 29479.937309: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18843          <idle>-0     (-----) [002] .n.1 29479.937318: cpu_idle: state=4294967295 cpu_id=2
18844          <idle>-0     (-----) [002] d..2 29479.937333: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18845         sugov:0-559   (  559) [002] d..2 29479.937363: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18846          <idle>-0     (-----) [002] d..1 29479.937378: cpu_idle: state=0 cpu_id=2
18847 NeuralNetworksT-13707 (13707) [006] d.s2 29479.940397: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18848          <idle>-0     (-----) [002] dnh2 29479.940420: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18849          <idle>-0     (-----) [002] .n.1 29479.940427: cpu_idle: state=4294967295 cpu_id=2
18850          <idle>-0     (-----) [002] d..2 29479.940441: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18851  kworker/u16:10-23868 (23868) [002] d..2 29479.940576: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18852          <idle>-0     (-----) [002] d..1 29479.940586: cpu_idle: state=0 cpu_id=2
18853          <idle>-0     (-----) [002] d.s3 29479.943795: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18854          <idle>-0     (-----) [002] dns4 29479.943812: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
18855          <idle>-0     (-----) [002] .n.1 29479.943842: cpu_idle: state=4294967295 cpu_id=2
18856          <idle>-0     (-----) [002] d..2 29479.943852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
18857     kworker/2:2-13636 (13636) [002] d..2 29479.943885: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18858          <idle>-0     (-----) [002] d..1 29479.943901: cpu_idle: state=0 cpu_id=2
18859          <idle>-0     (-----) [002] ...1 29479.949907: cpu_idle: state=4294967295 cpu_id=2
18860          <idle>-0     (-----) [002] d..1 29479.949913: cpu_idle: state=2 cpu_id=2
18861 NeuralNetworksT-13707 (13707) [006] d.s2 29479.950395: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18862          <idle>-0     (-----) [002] dnh2 29479.950604: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18863          <idle>-0     (-----) [002] .n.1 29479.950614: cpu_idle: state=4294967295 cpu_id=2
18864          <idle>-0     (-----) [002] d..2 29479.950632: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18865  kworker/u16:10-23868 (23868) [002] d..2 29479.950770: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18866          <idle>-0     (-----) [002] d..1 29479.950788: cpu_idle: state=2 cpu_id=2
18867 NeuralNetworksT-13707 (13707) [006] d.s2 29479.957065: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18868 NeuralNetworksT-13707 (13707) [006] d.s2 29479.957075: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
18869 NeuralNetworksT-13707 (13707) [006] dns3 29479.957081: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
18870 NeuralNetworksT-13707 (13707) [006] dnH3 29479.957105: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18871 NeuralNetworksT-13707 (13707) [006] dnH4 29479.957111: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18872 NeuralNetworksT-13707 (13707) [006] dnH3 29479.957111: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18873 NeuralNetworksT-13707 (13707) [006] d..2 29479.957118: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
18874     kworker/6:0-21469 (21469) [006] d..2 29479.957147: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
18875          <idle>-0     (-----) [002] dnh2 29479.957271: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18876          <idle>-0     (-----) [002] dnh2 29479.957281: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18877          <idle>-0     (-----) [005] .n.1 29479.957284: cpu_idle: state=4294967295 cpu_id=5
18878          <idle>-0     (-----) [002] .n.1 29479.957290: cpu_idle: state=4294967295 cpu_id=2
18879          <idle>-0     (-----) [005] d..2 29479.957291: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18880         sugov:4-560   (  560) [005] d..2 29479.957301: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18881          <idle>-0     (-----) [005] d..1 29479.957305: cpu_idle: state=2 cpu_id=5
18882          <idle>-0     (-----) [002] d..2 29479.957306: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18883         sugov:0-559   (  559) [002] d..2 29479.957323: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18884  kworker/u16:10-23868 (23868) [002] d..2 29479.957564: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18885          <idle>-0     (-----) [002] d..1 29479.957581: cpu_idle: state=2 cpu_id=2
18886          <idle>-0     (-----) [003] d.s3 29479.957716: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18887          <idle>-0     (-----) [003] d.s4 29479.957731: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18888          <idle>-0     (-----) [003] d.s4 29479.957741: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18889          <idle>-0     (-----) [003] ...1 29479.957756: cpu_idle: state=4294967295 cpu_id=3
18890          <idle>-0     (-----) [003] d..1 29479.957765: cpu_idle: state=2 cpu_id=3
18891          <idle>-0     (-----) [002] .n.1 29479.957869: cpu_idle: state=4294967295 cpu_id=2
18892          <idle>-0     (-----) [002] d..2 29479.957888: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18893  kworker/u16:10-23868 (23868) [002] d..2 29479.957929: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18894          <idle>-0     (-----) [002] d..1 29479.957946: cpu_idle: state=0 cpu_id=2
18895 NeuralNetworksT-13707 (13707) [006] d.s2 29479.960399: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18896          <idle>-0     (-----) [002] dnh2 29479.960422: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18897          <idle>-0     (-----) [002] .n.1 29479.960430: cpu_idle: state=4294967295 cpu_id=2
18898          <idle>-0     (-----) [002] d..2 29479.960444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18899  kworker/u16:10-23868 (23868) [002] d..2 29479.960576: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18900          <idle>-0     (-----) [002] d..1 29479.960592: cpu_idle: state=0 cpu_id=2
18901          <idle>-0     (-----) [002] ...1 29479.966599: cpu_idle: state=4294967295 cpu_id=2
18902          <idle>-0     (-----) [002] d..1 29479.966604: cpu_idle: state=2 cpu_id=2
18903 NeuralNetworksT-13707 (13707) [006] d.s2 29479.970394: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18904          <idle>-0     (-----) [002] dnh2 29479.970607: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18905          <idle>-0     (-----) [002] .n.1 29479.970617: cpu_idle: state=4294967295 cpu_id=2
18906          <idle>-0     (-----) [002] d..2 29479.970634: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18907  kworker/u16:10-23868 (23868) [002] d..2 29479.970772: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18908          <idle>-0     (-----) [002] d..1 29479.970790: cpu_idle: state=0 cpu_id=2
18909 NeuralNetworksT-13707 (13707) [006] d..2 29479.972928: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
18910          <idle>-0     (-----) [002] dnh2 29479.972956: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
18911          <idle>-0     (-----) [002] .n.1 29479.972964: cpu_idle: state=4294967295 cpu_id=2
18912          <idle>-0     (-----) [002] d..2 29479.972977: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
18913         rcuop/6-61    (   61) [002] d..2 29479.972987: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18914         rcuop/6-61    (   61) [002] d..3 29479.973038: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
18915         rcuop/6-61    (   61) [002] d..2 29479.973052: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18916     rcu_preempt-7     (    7) [002] d..2 29479.973080: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18917          <idle>-0     (-----) [002] d..1 29479.973093: cpu_idle: state=0 cpu_id=2
18918          <idle>-0     (-----) [001] d.h2 29479.973915: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18919          <idle>-0     (-----) [001] dnh3 29479.973932: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18920          <idle>-0     (-----) [001] .n.1 29479.973945: cpu_idle: state=4294967295 cpu_id=1
18921          <idle>-0     (-----) [001] d..2 29479.973965: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18922 irq/79-1436400.-24613 (24613) [001] d..2 29479.974198: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
18923          <idle>-0     (-----) [001] d..1 29479.974219: cpu_idle: state=2 cpu_id=1
18924          <idle>-0     (-----) [003] d.s3 29479.974336: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18925          <idle>-0     (-----) [003] d.s4 29479.974351: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18926          <idle>-0     (-----) [003] ...1 29479.974367: cpu_idle: state=4294967295 cpu_id=3
18927          <idle>-0     (-----) [003] d..1 29479.974378: cpu_idle: state=2 cpu_id=3
18928          <idle>-0     (-----) [001] .n.1 29479.974503: cpu_idle: state=4294967295 cpu_id=1
18929          <idle>-0     (-----) [001] d..2 29479.974537: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18930 irq/79-1436400.-24613 (24613) [001] d..2 29479.974612: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18931          <idle>-0     (-----) [001] d..1 29479.974641: cpu_idle: state=0 cpu_id=1
18932          <idle>-0     (-----) [002] d.s2 29479.977102: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
18933 NeuralNetworksT-13707 (13707) [006] d.H3 29479.977104: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
18934 NeuralNetworksT-13707 (13707) [006] d.H4 29479.977114: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
18935 NeuralNetworksT-13707 (13707) [006] d.H3 29479.977115: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
18936          <idle>-0     (-----) [002] dns3 29479.977124: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
18937          <idle>-0     (-----) [002] dnH3 29479.977137: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
18938          <idle>-0     (-----) [002] .n.1 29479.977161: cpu_idle: state=4294967295 cpu_id=2
18939          <idle>-0     (-----) [002] d..2 29479.977173: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
18940         sugov:0-559   (  559) [002] d..2 29479.977191: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18941     rcu_preempt-7     (    7) [002] d..2 29479.977205: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
18942     rcu_preempt-7     (    7) [002] d..3 29479.977224: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
18943     rcu_preempt-7     (    7) [002] d..2 29479.977239: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
18944         rcuop/6-61    (   61) [002] d..2 29479.977252: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
18945         rcuop/6-61    (   61) [002] d..3 29479.977268: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
18946          <idle>-0     (-----) [005] .n.1 29479.977271: cpu_idle: state=4294967295 cpu_id=5
18947         rcuop/6-61    (   61) [002] d..2 29479.977279: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18948          <idle>-0     (-----) [005] d..2 29479.977279: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
18949         sugov:4-560   (  560) [005] d..2 29479.977292: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
18950          <idle>-0     (-----) [005] d..1 29479.977297: cpu_idle: state=2 cpu_id=5
18951     rcu_preempt-7     (    7) [002] d..2 29479.977303: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18952          <idle>-0     (-----) [002] d..1 29479.977317: cpu_idle: state=0 cpu_id=2
18953          <idle>-0     (-----) [001] d.h2 29479.977531: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18954          <idle>-0     (-----) [001] dnh3 29479.977542: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18955          <idle>-0     (-----) [001] .n.1 29479.977552: cpu_idle: state=4294967295 cpu_id=1
18956          <idle>-0     (-----) [001] d..2 29479.977564: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18957 irq/79-1436400.-24613 (24613) [001] d..2 29479.977908: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
18958          <idle>-0     (-----) [001] d..1 29479.977925: cpu_idle: state=0 cpu_id=1
18959          <idle>-0     (-----) [003] d.s3 29479.978023: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18960          <idle>-0     (-----) [003] d.s4 29479.978039: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18961          <idle>-0     (-----) [001] .n.1 29479.978047: cpu_idle: state=4294967295 cpu_id=1
18962          <idle>-0     (-----) [003] ...1 29479.978054: cpu_idle: state=4294967295 cpu_id=3
18963          <idle>-0     (-----) [001] d..2 29479.978058: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18964          <idle>-0     (-----) [003] d..1 29479.978066: cpu_idle: state=0 cpu_id=3
18965 irq/79-1436400.-24613 (24613) [001] d..2 29479.978095: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18966          <idle>-0     (-----) [001] d..1 29479.978110: cpu_idle: state=0 cpu_id=1
18967 NeuralNetworksT-13707 (13707) [006] d.s2 29479.980419: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
18968          <idle>-0     (-----) [001] dnh2 29479.980462: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18969          <idle>-0     (-----) [001] .n.1 29479.980507: cpu_idle: state=4294967295 cpu_id=1
18970          <idle>-0     (-----) [001] d..2 29479.980557: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18971  kworker/u16:10-23868 (23868) [001] d..2 29479.980849: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
18972          <idle>-0     (-----) [001] d..1 29479.980868: cpu_idle: state=0 cpu_id=1
18973          <idle>-0     (-----) [003] d.s3 29479.980870: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18974          <idle>-0     (-----) [003] d.s4 29479.980884: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
18975          <idle>-0     (-----) [003] d.s4 29479.980895: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
18976          <idle>-0     (-----) [001] .n.1 29479.980902: cpu_idle: state=4294967295 cpu_id=1
18977          <idle>-0     (-----) [003] ...1 29479.980908: cpu_idle: state=4294967295 cpu_id=3
18978          <idle>-0     (-----) [003] d..1 29479.980914: cpu_idle: state=0 cpu_id=3
18979          <idle>-0     (-----) [001] d..2 29479.980916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
18980  kworker/u16:10-23868 (23868) [001] d..2 29479.980971: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18981          <idle>-0     (-----) [001] d..1 29479.980987: cpu_idle: state=0 cpu_id=1
18982          <idle>-0     (-----) [001] d.h2 29479.981302: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18983          <idle>-0     (-----) [001] dnh3 29479.981314: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18984          <idle>-0     (-----) [001] .n.1 29479.981326: cpu_idle: state=4294967295 cpu_id=1
18985          <idle>-0     (-----) [001] d..2 29479.981340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18986 irq/79-1436400.-24613 (24613) [001] d..2 29479.981501: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
18987          <idle>-0     (-----) [003] d.s3 29479.981518: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18988          <idle>-0     (-----) [001] d..1 29479.981520: cpu_idle: state=2 cpu_id=1
18989          <idle>-0     (-----) [003] d.s4 29479.981532: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
18990          <idle>-0     (-----) [003] ...1 29479.981545: cpu_idle: state=4294967295 cpu_id=3
18991          <idle>-0     (-----) [001] .n.1 29479.981550: cpu_idle: state=4294967295 cpu_id=1
18992          <idle>-0     (-----) [003] d..1 29479.981556: cpu_idle: state=0 cpu_id=3
18993          <idle>-0     (-----) [001] d..2 29479.981564: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
18994 irq/79-1436400.-24613 (24613) [001] d..2 29479.981602: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18995          <idle>-0     (-----) [001] d..1 29479.981616: cpu_idle: state=0 cpu_id=1
18996          <idle>-0     (-----) [001] ...1 29479.982776: cpu_idle: state=4294967295 cpu_id=1
18997          <idle>-0     (-----) [001] d..1 29479.982798: cpu_idle: state=2 cpu_id=1
18998          <idle>-0     (-----) [002] d.s2 29479.983759: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
18999          <idle>-0     (-----) [002] dns3 29479.983783: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19000          <idle>-0     (-----) [002] .n.1 29479.983797: cpu_idle: state=4294967295 cpu_id=2
19001          <idle>-0     (-----) [002] d..2 29479.983817: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
19002     rcu_preempt-7     (    7) [002] d..2 29479.983832: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
19003     rcu_preempt-7     (    7) [002] d..3 29479.983853: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
19004     rcu_preempt-7     (    7) [002] d..2 29479.983871: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
19005         rcuop/6-61    (   61) [002] d..2 29479.983937: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19006          <idle>-0     (-----) [002] d..1 29479.983957: cpu_idle: state=2 cpu_id=2
19007          <idle>-0     (-----) [003] ...1 29479.987565: cpu_idle: state=4294967295 cpu_id=3
19008          <idle>-0     (-----) [003] d..1 29479.987571: cpu_idle: state=2 cpu_id=3
19009 NeuralNetworksT-13707 (13707) [006] d.s2 29479.990421: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
19010          <idle>-0     (-----) [001] dnh2 29479.990784: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
19011          <idle>-0     (-----) [001] .n.1 29479.990806: cpu_idle: state=4294967295 cpu_id=1
19012          <idle>-0     (-----) [001] d..2 29479.990846: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19013  kworker/u16:10-23868 (23868) [001] d..2 29479.991099: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19014          <idle>-0     (-----) [001] d..1 29479.991130: cpu_idle: state=0 cpu_id=1
19015          <idle>-0     (-----) [001] d.h2 29479.992241: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
19016          <idle>-0     (-----) [001] dnh3 29479.992262: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
19017          <idle>-0     (-----) [001] .n.1 29479.992277: cpu_idle: state=4294967295 cpu_id=1
19018          <idle>-0     (-----) [001] d..2 29479.992289: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
19019 irq/80-114a000.-24617 (24617) [001] d..2 29479.992506: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
19020          <idle>-0     (-----) [001] d..1 29479.992524: cpu_idle: state=0 cpu_id=1
19021          <idle>-0     (-----) [003] d.s3 29479.992706: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
19022          <idle>-0     (-----) [003] d.s4 29479.992726: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
19023          <idle>-0     (-----) [001] .n.1 29479.992733: cpu_idle: state=4294967295 cpu_id=1
19024          <idle>-0     (-----) [003] ...1 29479.992743: cpu_idle: state=4294967295 cpu_id=3
19025          <idle>-0     (-----) [001] d..2 29479.992744: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
19026          <idle>-0     (-----) [003] d..1 29479.992757: cpu_idle: state=0 cpu_id=3
19027 irq/80-114a000.-24617 (24617) [001] d..2 29479.992786: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19028          <idle>-0     (-----) [001] d..1 29479.992800: cpu_idle: state=0 cpu_id=1
19029          <idle>-0     (-----) [001] d.h2 29479.992947: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
19030          <idle>-0     (-----) [001] dnh3 29479.992958: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
19031          <idle>-0     (-----) [001] .n.1 29479.992968: cpu_idle: state=4294967295 cpu_id=1
19032          <idle>-0     (-----) [001] d..2 29479.992979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
19033 irq/79-1436400.-24613 (24613) [001] d..2 29479.993146: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
19034          <idle>-0     (-----) [001] d..1 29479.993162: cpu_idle: state=0 cpu_id=1
19035          <idle>-0     (-----) [003] d.s3 29479.993190: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
19036          <idle>-0     (-----) [003] d.s4 29479.993202: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
19037          <idle>-0     (-----) [001] .n.1 29479.993209: cpu_idle: state=4294967295 cpu_id=1
19038          <idle>-0     (-----) [003] ...1 29479.993215: cpu_idle: state=4294967295 cpu_id=3
19039          <idle>-0     (-----) [001] d..2 29479.993220: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
19040          <idle>-0     (-----) [003] d..1 29479.993221: cpu_idle: state=0 cpu_id=3
19041 irq/79-1436400.-24613 (24613) [001] d..2 29479.993258: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19042          <idle>-0     (-----) [001] d..1 29479.993272: cpu_idle: state=0 cpu_id=1
19043          <idle>-0     (-----) [001] ...1 29479.994737: cpu_idle: state=4294967295 cpu_id=1
19044          <idle>-0     (-----) [001] d..1 29479.994744: cpu_idle: state=2 cpu_id=1
19045 NeuralNetworksT-13707 (13707) [006] d.H2 29479.997137: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
19046 NeuralNetworksT-13707 (13707) [006] d.H3 29479.997152: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
19047 NeuralNetworksT-13707 (13707) [006] d.H2 29479.997154: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19048          <idle>-0     (-----) [005] .n.1 29479.997368: cpu_idle: state=4294967295 cpu_id=5
19049          <idle>-0     (-----) [002] dnh2 29479.997374: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19050          <idle>-0     (-----) [005] d..2 29479.997380: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
19051          <idle>-0     (-----) [002] .n.1 29479.997389: cpu_idle: state=4294967295 cpu_id=2
19052         sugov:4-560   (  560) [005] d..2 29479.997401: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
19053          <idle>-0     (-----) [005] d..1 29479.997408: cpu_idle: state=2 cpu_id=5
19054          <idle>-0     (-----) [002] d..2 29479.997412: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
19055         sugov:0-559   (  559) [002] d..2 29479.997458: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19056          <idle>-0     (-----) [002] d..1 29479.997479: cpu_idle: state=2 cpu_id=2
19057 NeuralNetworksT-13707 (13707) [006] d..2 29480.000369: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=002
19058 NeuralNetworksT-13707 (13707) [006] d..3 29480.000388: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
19059 NeuralNetworksT-13707 (13707) [006] dnH3 29480.000423: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
19060 NeuralNetworksT-13707 (13707) [006] dnH4 29480.000430: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
19061 NeuralNetworksT-13707 (13707) [006] dnH3 29480.000430: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
19062 NeuralNetworksT-13707 (13707) [006] dns3 29480.000440: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
19063 NeuralNetworksT-13707 (13707) [006] d..2 29480.000468: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
19064          <idle>-0     (-----) [003] dnh2 29480.000478: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
19065          <idle>-0     (-----) [003] .n.1 29480.000485: cpu_idle: state=4294967295 cpu_id=3
19066          <idle>-0     (-----) [003] d..2 29480.000503: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
19067 shell svc 13705-13706 ( 1007) [006] d..2 29480.000509: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
19068 shell svc 13705-13706 ( 1007) [006] d..2 29480.000526: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
19069 NeuralNetworksT-13707 (13707) [006] d..2 29480.000532: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
19070 NeuralNetworksT-13707 (13707) [006] d..3 29480.000535: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
19071          <idle>-0     (-----) [002] dnh2 29480.000585: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
19072          <idle>-0     (-----) [002] dnh2 29480.000592: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
19073          <idle>-0     (-----) [002] .n.1 29480.000600: cpu_idle: state=4294967295 cpu_id=2
19074          <idle>-0     (-----) [002] d..2 29480.000616: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
19075          <idle>-0     (-----) [005] .n.1 29480.000622: cpu_idle: state=4294967295 cpu_id=5
19076          <idle>-0     (-----) [005] d..2 29480.000628: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
19077          <idle>-0     (-----) [004] ...1 29480.000632: cpu_idle: state=4294967295 cpu_id=4
19078         sugov:0-559   (  559) [002] d..2 29480.000632: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
19079          <idle>-0     (-----) [004] d..1 29480.000637: cpu_idle: state=2 cpu_id=4
19080         sugov:4-560   (  560) [005] d..2 29480.000638: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
19081          <idle>-0     (-----) [005] d..1 29480.000642: cpu_idle: state=2 cpu_id=5
19082  kworker/u16:10-23868 (23868) [003] d..2 29480.000710: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19083 NeuralNetworksT-13707 (13707) [006] d..2 29480.000711: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
19084          <idle>-0     (-----) [003] d..1 29480.000726: cpu_idle: state=2 cpu_id=3
19085 NeuralNetworksT-13707 (13707) [006] ...1 29480.000730: tracing_mark_write: B|13707|[NN_LA_PO]executeOnce
19086 NeuralNetworksT-13707 (13707) [006] ...1 29480.000735: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_create
19087 NeuralNetworksT-13707 (13707) [006] ...1 29480.000744: tracing_mark_write: E|13707
19088 NeuralNetworksT-13707 (13707) [006] ...1 29480.000747: tracing_mark_write: B|13707|[NN_LA_PP]createAndCompileModel
19089 NeuralNetworksT-13707 (13707) [006] ...1 29480.000756: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19090 NeuralNetworksT-13707 (13707) [006] ...1 29480.000761: tracing_mark_write: E|13707
19091 NeuralNetworksT-13707 (13707) [006] ...1 29480.000762: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19092 NeuralNetworksT-13707 (13707) [006] ...1 29480.000764: tracing_mark_write: E|13707
19093 NeuralNetworksT-13707 (13707) [006] ...1 29480.000765: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19094 NeuralNetworksT-13707 (13707) [006] ...1 29480.000767: tracing_mark_write: E|13707
19095 NeuralNetworksT-13707 (13707) [006] ...1 29480.000768: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19096 NeuralNetworksT-13707 (13707) [006] ...1 29480.000769: tracing_mark_write: E|13707
19097 NeuralNetworksT-13707 (13707) [006] ...1 29480.000770: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19098 NeuralNetworksT-13707 (13707) [006] ...1 29480.000771: tracing_mark_write: E|13707
19099 NeuralNetworksT-13707 (13707) [006] ...1 29480.000772: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19100 NeuralNetworksT-13707 (13707) [006] ...1 29480.000774: tracing_mark_write: E|13707
19101 NeuralNetworksT-13707 (13707) [006] ...1 29480.000775: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19102 NeuralNetworksT-13707 (13707) [006] ...1 29480.000776: tracing_mark_write: E|13707
19103 NeuralNetworksT-13707 (13707) [006] ...1 29480.000777: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19104 NeuralNetworksT-13707 (13707) [006] ...1 29480.000778: tracing_mark_write: E|13707
19105 NeuralNetworksT-13707 (13707) [006] ...1 29480.000779: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19106 NeuralNetworksT-13707 (13707) [006] ...1 29480.000781: tracing_mark_write: E|13707
19107 NeuralNetworksT-13707 (13707) [006] ...1 29480.000782: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19108 NeuralNetworksT-13707 (13707) [006] ...1 29480.000783: tracing_mark_write: E|13707
19109 NeuralNetworksT-13707 (13707) [006] ...1 29480.000784: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19110 NeuralNetworksT-13707 (13707) [006] ...1 29480.000785: tracing_mark_write: E|13707
19111 NeuralNetworksT-13707 (13707) [006] ...1 29480.000786: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19112 NeuralNetworksT-13707 (13707) [006] ...1 29480.000787: tracing_mark_write: E|13707
19113 NeuralNetworksT-13707 (13707) [006] ...1 29480.000788: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19114 NeuralNetworksT-13707 (13707) [006] ...1 29480.000789: tracing_mark_write: E|13707
19115 NeuralNetworksT-13707 (13707) [006] ...1 29480.000790: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19116 NeuralNetworksT-13707 (13707) [006] ...1 29480.000791: tracing_mark_write: E|13707
19117 NeuralNetworksT-13707 (13707) [006] ...1 29480.000792: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19118 NeuralNetworksT-13707 (13707) [006] ...1 29480.000793: tracing_mark_write: E|13707
19119 NeuralNetworksT-13707 (13707) [006] ...1 29480.000794: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19120 NeuralNetworksT-13707 (13707) [006] ...1 29480.000795: tracing_mark_write: E|13707
19121 NeuralNetworksT-13707 (13707) [006] ...1 29480.000796: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19122 NeuralNetworksT-13707 (13707) [006] ...1 29480.000800: tracing_mark_write: E|13707
19123 NeuralNetworksT-13707 (13707) [006] ...1 29480.000801: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19124 NeuralNetworksT-13707 (13707) [006] ...1 29480.000802: tracing_mark_write: E|13707
19125 NeuralNetworksT-13707 (13707) [006] ...1 29480.000803: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19126 NeuralNetworksT-13707 (13707) [006] ...1 29480.000804: tracing_mark_write: E|13707
19127 NeuralNetworksT-13707 (13707) [006] ...1 29480.000805: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19128 NeuralNetworksT-13707 (13707) [006] ...1 29480.000806: tracing_mark_write: E|13707
19129 NeuralNetworksT-13707 (13707) [006] ...1 29480.000807: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19130 NeuralNetworksT-13707 (13707) [006] ...1 29480.000808: tracing_mark_write: E|13707
19131 NeuralNetworksT-13707 (13707) [006] ...1 29480.000809: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19132 NeuralNetworksT-13707 (13707) [006] ...1 29480.000810: tracing_mark_write: E|13707
19133 NeuralNetworksT-13707 (13707) [006] ...1 29480.000811: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19134 NeuralNetworksT-13707 (13707) [006] ...1 29480.000812: tracing_mark_write: E|13707
19135 NeuralNetworksT-13707 (13707) [006] ...1 29480.000813: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19136 NeuralNetworksT-13707 (13707) [006] ...1 29480.000814: tracing_mark_write: E|13707
19137 NeuralNetworksT-13707 (13707) [006] ...1 29480.000815: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19138 NeuralNetworksT-13707 (13707) [006] ...1 29480.000816: tracing_mark_write: E|13707
19139 NeuralNetworksT-13707 (13707) [006] ...1 29480.000817: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19140 NeuralNetworksT-13707 (13707) [006] ...1 29480.000818: tracing_mark_write: E|13707
19141 NeuralNetworksT-13707 (13707) [006] ...1 29480.000819: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19142 NeuralNetworksT-13707 (13707) [006] ...1 29480.000820: tracing_mark_write: E|13707
19143 NeuralNetworksT-13707 (13707) [006] ...1 29480.000821: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19144 NeuralNetworksT-13707 (13707) [006] ...1 29480.000822: tracing_mark_write: E|13707
19145 NeuralNetworksT-13707 (13707) [006] ...1 29480.000823: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19146 NeuralNetworksT-13707 (13707) [006] ...1 29480.000824: tracing_mark_write: E|13707
19147 NeuralNetworksT-13707 (13707) [006] ...1 29480.000825: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19148 NeuralNetworksT-13707 (13707) [006] ...1 29480.000826: tracing_mark_write: E|13707
19149 NeuralNetworksT-13707 (13707) [006] ...1 29480.000827: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19150 NeuralNetworksT-13707 (13707) [006] ...1 29480.000828: tracing_mark_write: E|13707
19151 NeuralNetworksT-13707 (13707) [006] ...1 29480.000829: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19152 NeuralNetworksT-13707 (13707) [006] ...1 29480.000830: tracing_mark_write: E|13707
19153 NeuralNetworksT-13707 (13707) [006] ...1 29480.000831: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19154 NeuralNetworksT-13707 (13707) [006] ...1 29480.000833: tracing_mark_write: E|13707
19155 NeuralNetworksT-13707 (13707) [006] ...1 29480.000834: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19156 NeuralNetworksT-13707 (13707) [006] ...1 29480.000836: tracing_mark_write: E|13707
19157 NeuralNetworksT-13707 (13707) [006] ...1 29480.000837: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19158 NeuralNetworksT-13707 (13707) [006] ...1 29480.000838: tracing_mark_write: E|13707
19159 NeuralNetworksT-13707 (13707) [006] ...1 29480.000839: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19160 NeuralNetworksT-13707 (13707) [006] ...1 29480.000840: tracing_mark_write: E|13707
19161 NeuralNetworksT-13707 (13707) [006] ...1 29480.000841: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19162 NeuralNetworksT-13707 (13707) [006] ...1 29480.000842: tracing_mark_write: E|13707
19163 NeuralNetworksT-13707 (13707) [006] ...1 29480.000843: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19164 NeuralNetworksT-13707 (13707) [006] ...1 29480.000844: tracing_mark_write: E|13707
19165 NeuralNetworksT-13707 (13707) [006] ...1 29480.000845: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19166            adbd-1007  ( 1007) [002] d..1 29480.000846: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
19167 NeuralNetworksT-13707 (13707) [006] ...1 29480.000846: tracing_mark_write: E|13707
19168 NeuralNetworksT-13707 (13707) [006] ...1 29480.000847: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19169 NeuralNetworksT-13707 (13707) [006] ...1 29480.000848: tracing_mark_write: E|13707
19170 NeuralNetworksT-13707 (13707) [006] ...1 29480.000849: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19171 NeuralNetworksT-13707 (13707) [006] ...1 29480.000850: tracing_mark_write: E|13707
19172 NeuralNetworksT-13707 (13707) [006] ...1 29480.000851: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19173 NeuralNetworksT-13707 (13707) [006] ...1 29480.000852: tracing_mark_write: E|13707
19174 NeuralNetworksT-13707 (13707) [006] ...1 29480.000853: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19175 NeuralNetworksT-13707 (13707) [006] ...1 29480.000854: tracing_mark_write: E|13707
19176 NeuralNetworksT-13707 (13707) [006] ...1 29480.000855: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19177          <idle>-0     (-----) [007] .n.1 29480.000856: cpu_idle: state=4294967295 cpu_id=7
19178 NeuralNetworksT-13707 (13707) [006] ...1 29480.000857: tracing_mark_write: E|13707
19179 NeuralNetworksT-13707 (13707) [006] ...1 29480.000858: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19180 NeuralNetworksT-13707 (13707) [006] ...1 29480.000859: tracing_mark_write: E|13707
19181 NeuralNetworksT-13707 (13707) [006] ...1 29480.000859: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19182 NeuralNetworksT-13707 (13707) [006] ...1 29480.000860: tracing_mark_write: E|13707
19183 NeuralNetworksT-13707 (13707) [006] ...1 29480.000861: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19184 NeuralNetworksT-13707 (13707) [006] ...1 29480.000862: tracing_mark_write: E|13707
19185 NeuralNetworksT-13707 (13707) [006] ...1 29480.000863: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19186 NeuralNetworksT-13707 (13707) [006] ...1 29480.000864: tracing_mark_write: E|13707
19187          <idle>-0     (-----) [007] d..2 29480.000864: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
19188 NeuralNetworksT-13707 (13707) [006] ...1 29480.000865: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19189 NeuralNetworksT-13707 (13707) [006] ...1 29480.000866: tracing_mark_write: E|13707
19190 NeuralNetworksT-13707 (13707) [006] ...1 29480.000867: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19191 NeuralNetworksT-13707 (13707) [006] ...1 29480.000868: tracing_mark_write: E|13707
19192 NeuralNetworksT-13707 (13707) [006] ...1 29480.000869: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19193 NeuralNetworksT-13707 (13707) [006] ...1 29480.000870: tracing_mark_write: E|13707
19194 NeuralNetworksT-13707 (13707) [006] ...1 29480.000871: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19195 NeuralNetworksT-13707 (13707) [006] ...1 29480.000872: tracing_mark_write: E|13707
19196 NeuralNetworksT-13707 (13707) [006] ...1 29480.000873: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19197 NeuralNetworksT-13707 (13707) [006] ...1 29480.000874: tracing_mark_write: E|13707
19198 NeuralNetworksT-13707 (13707) [006] ...1 29480.000875: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19199 NeuralNetworksT-13707 (13707) [006] ...1 29480.000876: tracing_mark_write: E|13707
19200 NeuralNetworksT-13707 (13707) [006] ...1 29480.000877: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19201 NeuralNetworksT-13707 (13707) [006] ...1 29480.000878: tracing_mark_write: E|13707
19202 NeuralNetworksT-13707 (13707) [006] ...1 29480.000879: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19203 NeuralNetworksT-13707 (13707) [006] ...1 29480.000880: tracing_mark_write: E|13707
19204 NeuralNetworksT-13707 (13707) [006] ...1 29480.000881: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19205 NeuralNetworksT-13707 (13707) [006] ...1 29480.000881: tracing_mark_write: E|13707
19206 NeuralNetworksT-13707 (13707) [006] ...1 29480.000882: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19207 NeuralNetworksT-13707 (13707) [006] ...1 29480.000883: tracing_mark_write: E|13707
19208 NeuralNetworksT-13707 (13707) [006] ...1 29480.000884: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19209 NeuralNetworksT-13707 (13707) [006] ...1 29480.000885: tracing_mark_write: E|13707
19210 NeuralNetworksT-13707 (13707) [006] ...1 29480.000886: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19211 NeuralNetworksT-13707 (13707) [006] ...1 29480.000887: tracing_mark_write: E|13707
19212 NeuralNetworksT-13707 (13707) [006] ...1 29480.000888: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19213 NeuralNetworksT-13707 (13707) [006] ...1 29480.000889: tracing_mark_write: E|13707
19214 NeuralNetworksT-13707 (13707) [006] ...1 29480.000890: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19215 NeuralNetworksT-13707 (13707) [006] ...1 29480.000891: tracing_mark_write: E|13707
19216 NeuralNetworksT-13707 (13707) [006] ...1 29480.000892: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19217 NeuralNetworksT-13707 (13707) [006] ...1 29480.000893: tracing_mark_write: E|13707
19218 shell svc 13705-13706 ( 1007) [007] d..2 29480.000893: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
19219 NeuralNetworksT-13707 (13707) [006] ...1 29480.000894: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19220 NeuralNetworksT-13707 (13707) [006] ...1 29480.000895: tracing_mark_write: E|13707
19221 NeuralNetworksT-13707 (13707) [006] ...1 29480.000896: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19222            adbd-1007  ( 1007) [002] d..2 29480.000896: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
19223          <idle>-0     (-----) [007] d..1 29480.000897: cpu_idle: state=2 cpu_id=7
19224 NeuralNetworksT-13707 (13707) [006] ...1 29480.000899: tracing_mark_write: E|13707
19225 NeuralNetworksT-13707 (13707) [006] ...1 29480.000900: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19226 NeuralNetworksT-13707 (13707) [006] ...1 29480.000901: tracing_mark_write: E|13707
19227 NeuralNetworksT-13707 (13707) [006] ...1 29480.000902: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19228 NeuralNetworksT-13707 (13707) [006] ...1 29480.000903: tracing_mark_write: E|13707
19229 NeuralNetworksT-13707 (13707) [006] ...1 29480.000904: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19230 NeuralNetworksT-13707 (13707) [006] ...1 29480.000905: tracing_mark_write: E|13707
19231 NeuralNetworksT-13707 (13707) [006] ...1 29480.000906: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19232 NeuralNetworksT-13707 (13707) [006] ...1 29480.000907: tracing_mark_write: E|13707
19233 NeuralNetworksT-13707 (13707) [006] ...1 29480.000908: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19234 NeuralNetworksT-13707 (13707) [006] ...1 29480.000909: tracing_mark_write: E|13707
19235 NeuralNetworksT-13707 (13707) [006] ...1 29480.000910: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19236 NeuralNetworksT-13707 (13707) [006] ...1 29480.000911: tracing_mark_write: E|13707
19237 NeuralNetworksT-13707 (13707) [006] ...1 29480.000911: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19238 NeuralNetworksT-13707 (13707) [006] ...1 29480.000912: tracing_mark_write: E|13707
19239 NeuralNetworksT-13707 (13707) [006] ...1 29480.000913: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19240 NeuralNetworksT-13707 (13707) [006] ...1 29480.000915: tracing_mark_write: E|13707
19241 NeuralNetworksT-13707 (13707) [006] ...1 29480.000916: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19242 NeuralNetworksT-13707 (13707) [006] ...1 29480.000917: tracing_mark_write: E|13707
19243 NeuralNetworksT-13707 (13707) [006] ...1 29480.000918: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19244 NeuralNetworksT-13707 (13707) [006] ...1 29480.000919: tracing_mark_write: E|13707
19245 NeuralNetworksT-13707 (13707) [006] ...1 29480.000920: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19246 NeuralNetworksT-13707 (13707) [006] ...1 29480.000921: tracing_mark_write: E|13707
19247 NeuralNetworksT-13707 (13707) [006] ...1 29480.000922: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19248 NeuralNetworksT-13707 (13707) [006] ...1 29480.000923: tracing_mark_write: E|13707
19249 NeuralNetworksT-13707 (13707) [006] ...1 29480.000924: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19250 NeuralNetworksT-13707 (13707) [006] ...1 29480.000925: tracing_mark_write: E|13707
19251 NeuralNetworksT-13707 (13707) [006] ...1 29480.000926: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19252 NeuralNetworksT-13707 (13707) [006] ...1 29480.000927: tracing_mark_write: E|13707
19253 NeuralNetworksT-13707 (13707) [006] ...1 29480.000928: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19254 NeuralNetworksT-13707 (13707) [006] ...1 29480.000930: tracing_mark_write: E|13707
19255 NeuralNetworksT-13707 (13707) [006] ...1 29480.000931: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19256 NeuralNetworksT-13707 (13707) [006] ...1 29480.000932: tracing_mark_write: E|13707
19257 NeuralNetworksT-13707 (13707) [006] ...1 29480.000933: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19258 NeuralNetworksT-13707 (13707) [006] ...1 29480.000934: tracing_mark_write: E|13707
19259 NeuralNetworksT-13707 (13707) [006] ...1 29480.000935: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19260          <idle>-0     (-----) [003] dnh2 29480.000936: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
19261 NeuralNetworksT-13707 (13707) [006] ...1 29480.000936: tracing_mark_write: E|13707
19262 NeuralNetworksT-13707 (13707) [006] ...1 29480.000937: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19263 NeuralNetworksT-13707 (13707) [006] ...1 29480.000938: tracing_mark_write: E|13707
19264 NeuralNetworksT-13707 (13707) [006] ...1 29480.000939: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19265 NeuralNetworksT-13707 (13707) [006] ...1 29480.000940: tracing_mark_write: E|13707
19266 NeuralNetworksT-13707 (13707) [006] ...1 29480.000940: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19267 NeuralNetworksT-13707 (13707) [006] ...1 29480.000941: tracing_mark_write: E|13707
19268 NeuralNetworksT-13707 (13707) [006] ...1 29480.000942: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19269 NeuralNetworksT-13707 (13707) [006] ...1 29480.000943: tracing_mark_write: E|13707
19270 NeuralNetworksT-13707 (13707) [006] ...1 29480.000944: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19271          <idle>-0     (-----) [003] .n.1 29480.000945: cpu_idle: state=4294967295 cpu_id=3
19272 NeuralNetworksT-13707 (13707) [006] ...1 29480.000945: tracing_mark_write: E|13707
19273 NeuralNetworksT-13707 (13707) [006] ...1 29480.000946: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19274 NeuralNetworksT-13707 (13707) [006] ...1 29480.000947: tracing_mark_write: E|13707
19275 NeuralNetworksT-13707 (13707) [006] ...1 29480.000948: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19276 NeuralNetworksT-13707 (13707) [006] ...1 29480.000949: tracing_mark_write: E|13707
19277 NeuralNetworksT-13707 (13707) [006] ...1 29480.000950: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19278 NeuralNetworksT-13707 (13707) [006] ...1 29480.000951: tracing_mark_write: E|13707
19279 NeuralNetworksT-13707 (13707) [006] ...1 29480.000952: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19280 NeuralNetworksT-13707 (13707) [006] ...1 29480.000954: tracing_mark_write: E|13707
19281 NeuralNetworksT-13707 (13707) [006] ...1 29480.000955: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19282 NeuralNetworksT-13707 (13707) [006] ...1 29480.000956: tracing_mark_write: E|13707
19283 NeuralNetworksT-13707 (13707) [006] ...1 29480.000957: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19284 NeuralNetworksT-13707 (13707) [006] ...1 29480.000957: tracing_mark_write: E|13707
19285 NeuralNetworksT-13707 (13707) [006] ...1 29480.000958: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19286 NeuralNetworksT-13707 (13707) [006] ...1 29480.000959: tracing_mark_write: E|13707
19287 NeuralNetworksT-13707 (13707) [006] ...1 29480.000960: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19288          <idle>-0     (-----) [003] d..2 29480.000961: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
19289 NeuralNetworksT-13707 (13707) [006] ...1 29480.000961: tracing_mark_write: E|13707
19290 NeuralNetworksT-13707 (13707) [006] ...1 29480.000962: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19291 NeuralNetworksT-13707 (13707) [006] ...1 29480.000963: tracing_mark_write: E|13707
19292 NeuralNetworksT-13707 (13707) [006] ...1 29480.000964: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19293 NeuralNetworksT-13707 (13707) [006] ...1 29480.000965: tracing_mark_write: E|13707
19294 NeuralNetworksT-13707 (13707) [006] ...1 29480.000966: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19295 NeuralNetworksT-13707 (13707) [006] ...1 29480.000967: tracing_mark_write: E|13707
19296 NeuralNetworksT-13707 (13707) [006] ...1 29480.000968: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19297 NeuralNetworksT-13707 (13707) [006] ...1 29480.000969: tracing_mark_write: E|13707
19298 NeuralNetworksT-13707 (13707) [006] ...1 29480.000970: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19299 NeuralNetworksT-13707 (13707) [006] ...1 29480.000971: tracing_mark_write: E|13707
19300         rcuop/6-61    (   61) [003] d..2 29480.000971: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19301 NeuralNetworksT-13707 (13707) [006] ...1 29480.000972: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19302 NeuralNetworksT-13707 (13707) [006] ...1 29480.000973: tracing_mark_write: E|13707
19303 NeuralNetworksT-13707 (13707) [006] ...1 29480.000974: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19304 NeuralNetworksT-13707 (13707) [006] ...1 29480.000975: tracing_mark_write: E|13707
19305 NeuralNetworksT-13707 (13707) [006] ...1 29480.000977: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19306 NeuralNetworksT-13707 (13707) [006] ...1 29480.000978: tracing_mark_write: E|13707
19307 NeuralNetworksT-13707 (13707) [006] ...1 29480.000979: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19308 NeuralNetworksT-13707 (13707) [006] ...1 29480.000980: tracing_mark_write: E|13707
19309 NeuralNetworksT-13707 (13707) [006] ...1 29480.000981: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19310 NeuralNetworksT-13707 (13707) [006] ...1 29480.000982: tracing_mark_write: E|13707
19311 NeuralNetworksT-13707 (13707) [006] ...1 29480.000983: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19312 NeuralNetworksT-13707 (13707) [006] ...1 29480.000984: tracing_mark_write: E|13707
19313 NeuralNetworksT-13707 (13707) [006] ...1 29480.000985: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19314 NeuralNetworksT-13707 (13707) [006] ...1 29480.000986: tracing_mark_write: E|13707
19315 NeuralNetworksT-13707 (13707) [006] ...1 29480.000986: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19316 NeuralNetworksT-13707 (13707) [006] ...1 29480.000987: tracing_mark_write: E|13707
19317 NeuralNetworksT-13707 (13707) [006] ...1 29480.000988: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19318 NeuralNetworksT-13707 (13707) [006] ...1 29480.000989: tracing_mark_write: E|13707
19319 NeuralNetworksT-13707 (13707) [006] ...1 29480.000990: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19320            adbd-1007  ( 1007) [002] d..2 29480.000990: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19321 NeuralNetworksT-13707 (13707) [006] ...1 29480.000991: tracing_mark_write: E|13707
19322 NeuralNetworksT-13707 (13707) [006] ...1 29480.000992: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19323 NeuralNetworksT-13707 (13707) [006] ...1 29480.000994: tracing_mark_write: E|13707
19324 NeuralNetworksT-13707 (13707) [006] ...1 29480.000994: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19325 NeuralNetworksT-13707 (13707) [006] ...1 29480.000995: tracing_mark_write: E|13707
19326 NeuralNetworksT-13707 (13707) [006] ...1 29480.000996: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19327 NeuralNetworksT-13707 (13707) [006] ...1 29480.000997: tracing_mark_write: E|13707
19328 NeuralNetworksT-13707 (13707) [006] ...1 29480.000999: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19329 NeuralNetworksT-13707 (13707) [006] ...1 29480.001000: tracing_mark_write: E|13707
19330 NeuralNetworksT-13707 (13707) [006] ...1 29480.001001: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19331 NeuralNetworksT-13707 (13707) [006] ...1 29480.001002: tracing_mark_write: E|13707
19332 NeuralNetworksT-13707 (13707) [006] ...1 29480.001003: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19333         rcuop/6-61    (   61) [003] d..3 29480.001003: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
19334 NeuralNetworksT-13707 (13707) [006] ...1 29480.001004: tracing_mark_write: E|13707
19335 NeuralNetworksT-13707 (13707) [006] ...1 29480.001005: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19336 NeuralNetworksT-13707 (13707) [006] ...1 29480.001006: tracing_mark_write: E|13707
19337 NeuralNetworksT-13707 (13707) [006] ...1 29480.001007: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19338 NeuralNetworksT-13707 (13707) [006] ...1 29480.001008: tracing_mark_write: E|13707
19339 NeuralNetworksT-13707 (13707) [006] ...1 29480.001009: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19340 NeuralNetworksT-13707 (13707) [006] ...1 29480.001010: tracing_mark_write: E|13707
19341 NeuralNetworksT-13707 (13707) [006] ...1 29480.001011: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19342 NeuralNetworksT-13707 (13707) [006] ...1 29480.001012: tracing_mark_write: E|13707
19343 NeuralNetworksT-13707 (13707) [006] ...1 29480.001013: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19344 NeuralNetworksT-13707 (13707) [006] ...1 29480.001014: tracing_mark_write: E|13707
19345 NeuralNetworksT-13707 (13707) [006] ...1 29480.001015: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19346 NeuralNetworksT-13707 (13707) [006] ...1 29480.001016: tracing_mark_write: E|13707
19347          <idle>-0     (-----) [002] d..2 29480.001017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
19348 NeuralNetworksT-13707 (13707) [006] ...1 29480.001017: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19349 NeuralNetworksT-13707 (13707) [006] ...1 29480.001018: tracing_mark_write: E|13707
19350 NeuralNetworksT-13707 (13707) [006] ...1 29480.001019: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19351 NeuralNetworksT-13707 (13707) [006] ...1 29480.001020: tracing_mark_write: E|13707
19352 NeuralNetworksT-13707 (13707) [006] ...1 29480.001021: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19353 NeuralNetworksT-13707 (13707) [006] ...1 29480.001022: tracing_mark_write: E|13707
19354 NeuralNetworksT-13707 (13707) [006] ...1 29480.001023: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19355 NeuralNetworksT-13707 (13707) [006] ...1 29480.001024: tracing_mark_write: E|13707
19356 NeuralNetworksT-13707 (13707) [006] ...1 29480.001025: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19357 NeuralNetworksT-13707 (13707) [006] ...1 29480.001026: tracing_mark_write: E|13707
19358 NeuralNetworksT-13707 (13707) [006] ...1 29480.001027: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19359         rcuop/6-61    (   61) [003] d..2 29480.001032: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19360          <idle>-0     (-----) [001] .n.1 29480.001033: cpu_idle: state=4294967295 cpu_id=1
19361 NeuralNetworksT-13707 (13707) [006] ...1 29480.001035: tracing_mark_write: E|13707
19362 NeuralNetworksT-13707 (13707) [006] ...1 29480.001036: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19363 NeuralNetworksT-13707 (13707) [006] ...1 29480.001037: tracing_mark_write: E|13707
19364 NeuralNetworksT-13707 (13707) [006] ...1 29480.001038: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19365 NeuralNetworksT-13707 (13707) [006] ...1 29480.001039: tracing_mark_write: E|13707
19366 NeuralNetworksT-13707 (13707) [006] ...1 29480.001039: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19367 NeuralNetworksT-13707 (13707) [006] ...1 29480.001041: tracing_mark_write: E|13707
19368 NeuralNetworksT-13707 (13707) [006] ...1 29480.001041: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19369 NeuralNetworksT-13707 (13707) [006] ...1 29480.001043: tracing_mark_write: E|13707
19370 NeuralNetworksT-13707 (13707) [006] ...1 29480.001044: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19371 NeuralNetworksT-13707 (13707) [006] ...1 29480.001045: tracing_mark_write: E|13707
19372 NeuralNetworksT-13707 (13707) [006] ...1 29480.001046: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19373 NeuralNetworksT-13707 (13707) [006] ...1 29480.001046: tracing_mark_write: E|13707
19374     rcu_preempt-7     (    7) [002] d..2 29480.001047: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19375 NeuralNetworksT-13707 (13707) [006] ...1 29480.001047: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19376 NeuralNetworksT-13707 (13707) [006] ...1 29480.001048: tracing_mark_write: E|13707
19377 NeuralNetworksT-13707 (13707) [006] ...1 29480.001049: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19378 NeuralNetworksT-13707 (13707) [006] ...1 29480.001050: tracing_mark_write: E|13707
19379 NeuralNetworksT-13707 (13707) [006] ...1 29480.001051: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19380          <idle>-0     (-----) [003] d..1 29480.001051: cpu_idle: state=0 cpu_id=3
19381 NeuralNetworksT-13707 (13707) [006] ...1 29480.001052: tracing_mark_write: E|13707
19382 NeuralNetworksT-13707 (13707) [006] ...1 29480.001053: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19383 NeuralNetworksT-13707 (13707) [006] ...1 29480.001054: tracing_mark_write: E|13707
19384 NeuralNetworksT-13707 (13707) [006] ...1 29480.001055: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19385          <idle>-0     (-----) [001] d..2 29480.001056: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
19386 NeuralNetworksT-13707 (13707) [006] ...1 29480.001056: tracing_mark_write: E|13707
19387 NeuralNetworksT-13707 (13707) [006] ...1 29480.001057: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19388 NeuralNetworksT-13707 (13707) [006] ...1 29480.001058: tracing_mark_write: E|13707
19389 NeuralNetworksT-13707 (13707) [006] ...1 29480.001059: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19390 NeuralNetworksT-13707 (13707) [006] ...1 29480.001060: tracing_mark_write: E|13707
19391 NeuralNetworksT-13707 (13707) [006] ...1 29480.001061: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19392 NeuralNetworksT-13707 (13707) [006] ...1 29480.001062: tracing_mark_write: E|13707
19393 NeuralNetworksT-13707 (13707) [006] ...1 29480.001063: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19394 NeuralNetworksT-13707 (13707) [006] ...1 29480.001063: tracing_mark_write: E|13707
19395 NeuralNetworksT-13707 (13707) [006] ...1 29480.001064: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19396          <idle>-0     (-----) [002] d..1 29480.001065: cpu_idle: state=0 cpu_id=2
19397 NeuralNetworksT-13707 (13707) [006] ...1 29480.001065: tracing_mark_write: E|13707
19398 NeuralNetworksT-13707 (13707) [006] ...1 29480.001066: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19399 NeuralNetworksT-13707 (13707) [006] ...1 29480.001067: tracing_mark_write: E|13707
19400 NeuralNetworksT-13707 (13707) [006] ...1 29480.001068: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19401 NeuralNetworksT-13707 (13707) [006] ...1 29480.001070: tracing_mark_write: E|13707
19402 NeuralNetworksT-13707 (13707) [006] ...1 29480.001071: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19403 NeuralNetworksT-13707 (13707) [006] ...1 29480.001072: tracing_mark_write: E|13707
19404 NeuralNetworksT-13707 (13707) [006] ...1 29480.001073: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19405 NeuralNetworksT-13707 (13707) [006] ...1 29480.001074: tracing_mark_write: E|13707
19406 NeuralNetworksT-13707 (13707) [006] ...1 29480.001075: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19407 NeuralNetworksT-13707 (13707) [006] ...1 29480.001076: tracing_mark_write: E|13707
19408 NeuralNetworksT-13707 (13707) [006] ...1 29480.001077: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19409 NeuralNetworksT-13707 (13707) [006] ...1 29480.001078: tracing_mark_write: E|13707
19410 NeuralNetworksT-13707 (13707) [006] ...1 29480.001079: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19411 NeuralNetworksT-13707 (13707) [006] ...1 29480.001080: tracing_mark_write: E|13707
19412 NeuralNetworksT-13707 (13707) [006] ...1 29480.001081: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19413 NeuralNetworksT-13707 (13707) [006] ...1 29480.001082: tracing_mark_write: E|13707
19414 NeuralNetworksT-13707 (13707) [006] ...1 29480.001082: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19415 NeuralNetworksT-13707 (13707) [006] ...1 29480.001084: tracing_mark_write: E|13707
19416 NeuralNetworksT-13707 (13707) [006] ...1 29480.001084: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19417 NeuralNetworksT-13707 (13707) [006] ...1 29480.001085: tracing_mark_write: E|13707
19418 NeuralNetworksT-13707 (13707) [006] ...1 29480.001086: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19419 NeuralNetworksT-13707 (13707) [006] ...1 29480.001087: tracing_mark_write: E|13707
19420 NeuralNetworksT-13707 (13707) [006] ...1 29480.001088: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19421 NeuralNetworksT-13707 (13707) [006] ...1 29480.001089: tracing_mark_write: E|13707
19422 NeuralNetworksT-13707 (13707) [006] ...1 29480.001090: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19423 NeuralNetworksT-13707 (13707) [006] ...1 29480.001091: tracing_mark_write: E|13707
19424 NeuralNetworksT-13707 (13707) [006] ...1 29480.001091: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19425 NeuralNetworksT-13707 (13707) [006] ...1 29480.001092: tracing_mark_write: E|13707
19426 NeuralNetworksT-13707 (13707) [006] ...1 29480.001093: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19427 NeuralNetworksT-13707 (13707) [006] ...1 29480.001094: tracing_mark_write: E|13707
19428 NeuralNetworksT-13707 (13707) [006] ...1 29480.001095: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19429 NeuralNetworksT-13707 (13707) [006] ...1 29480.001096: tracing_mark_write: E|13707
19430 NeuralNetworksT-13707 (13707) [006] ...1 29480.001097: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19431 NeuralNetworksT-13707 (13707) [006] ...1 29480.001098: tracing_mark_write: E|13707
19432 NeuralNetworksT-13707 (13707) [006] ...1 29480.001099: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19433 NeuralNetworksT-13707 (13707) [006] ...1 29480.001099: tracing_mark_write: E|13707
19434 NeuralNetworksT-13707 (13707) [006] ...1 29480.001100: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19435 NeuralNetworksT-13707 (13707) [006] ...1 29480.001101: tracing_mark_write: E|13707
19436 NeuralNetworksT-13707 (13707) [006] ...1 29480.001102: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19437 NeuralNetworksT-13707 (13707) [006] ...1 29480.001103: tracing_mark_write: E|13707
19438 NeuralNetworksT-13707 (13707) [006] ...1 29480.001104: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19439 NeuralNetworksT-13707 (13707) [006] ...1 29480.001105: tracing_mark_write: E|13707
19440 NeuralNetworksT-13707 (13707) [006] ...1 29480.001106: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19441 NeuralNetworksT-13707 (13707) [006] ...1 29480.001107: tracing_mark_write: E|13707
19442 NeuralNetworksT-13707 (13707) [006] ...1 29480.001108: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19443 NeuralNetworksT-13707 (13707) [006] ...1 29480.001109: tracing_mark_write: E|13707
19444 NeuralNetworksT-13707 (13707) [006] ...1 29480.001110: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19445 NeuralNetworksT-13707 (13707) [006] ...1 29480.001111: tracing_mark_write: E|13707
19446 NeuralNetworksT-13707 (13707) [006] ...1 29480.001112: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19447 NeuralNetworksT-13707 (13707) [006] ...1 29480.001113: tracing_mark_write: E|13707
19448 NeuralNetworksT-13707 (13707) [006] ...1 29480.001113: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19449 NeuralNetworksT-13707 (13707) [006] ...1 29480.001115: tracing_mark_write: E|13707
19450 NeuralNetworksT-13707 (13707) [006] ...1 29480.001115: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19451 NeuralNetworksT-13707 (13707) [006] ...1 29480.001116: tracing_mark_write: E|13707
19452 NeuralNetworksT-13707 (13707) [006] ...1 29480.001117: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19453 NeuralNetworksT-13707 (13707) [006] ...1 29480.001118: tracing_mark_write: E|13707
19454 NeuralNetworksT-13707 (13707) [006] ...1 29480.001119: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19455 NeuralNetworksT-13707 (13707) [006] ...1 29480.001120: tracing_mark_write: E|13707
19456 NeuralNetworksT-13707 (13707) [006] ...1 29480.001121: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19457 NeuralNetworksT-13707 (13707) [006] ...1 29480.001122: tracing_mark_write: E|13707
19458 NeuralNetworksT-13707 (13707) [006] ...1 29480.001123: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19459 NeuralNetworksT-13707 (13707) [006] ...1 29480.001124: tracing_mark_write: E|13707
19460 NeuralNetworksT-13707 (13707) [006] ...1 29480.001125: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19461 NeuralNetworksT-13707 (13707) [006] ...1 29480.001126: tracing_mark_write: E|13707
19462 NeuralNetworksT-13707 (13707) [006] ...1 29480.001126: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19463 NeuralNetworksT-13707 (13707) [006] ...1 29480.001128: tracing_mark_write: E|13707
19464 NeuralNetworksT-13707 (13707) [006] ...1 29480.001129: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19465 NeuralNetworksT-13707 (13707) [006] ...1 29480.001130: tracing_mark_write: E|13707
19466 NeuralNetworksT-13707 (13707) [006] ...1 29480.001132: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19467 NeuralNetworksT-13707 (13707) [006] ...1 29480.001133: tracing_mark_write: E|13707
19468 NeuralNetworksT-13707 (13707) [006] ...1 29480.001134: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19469 NeuralNetworksT-13707 (13707) [006] ...1 29480.001135: tracing_mark_write: E|13707
19470 NeuralNetworksT-13707 (13707) [006] ...1 29480.001136: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19471 NeuralNetworksT-13707 (13707) [006] ...1 29480.001137: tracing_mark_write: E|13707
19472 NeuralNetworksT-13707 (13707) [006] ...1 29480.001138: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19473 NeuralNetworksT-13707 (13707) [006] ...1 29480.001139: tracing_mark_write: E|13707
19474 NeuralNetworksT-13707 (13707) [006] ...1 29480.001140: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19475 NeuralNetworksT-13707 (13707) [006] ...1 29480.001141: tracing_mark_write: E|13707
19476 NeuralNetworksT-13707 (13707) [006] ...1 29480.001141: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19477 NeuralNetworksT-13707 (13707) [006] ...1 29480.001142: tracing_mark_write: E|13707
19478 NeuralNetworksT-13707 (13707) [006] ...1 29480.001143: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19479 NeuralNetworksT-13707 (13707) [006] ...1 29480.001144: tracing_mark_write: E|13707
19480 NeuralNetworksT-13707 (13707) [006] ...1 29480.001145: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19481 NeuralNetworksT-13707 (13707) [006] ...1 29480.001146: tracing_mark_write: E|13707
19482 NeuralNetworksT-13707 (13707) [006] ...1 29480.001147: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19483 NeuralNetworksT-13707 (13707) [006] ...1 29480.001148: tracing_mark_write: E|13707
19484 NeuralNetworksT-13707 (13707) [006] ...1 29480.001148: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19485 NeuralNetworksT-13707 (13707) [006] ...1 29480.001149: tracing_mark_write: E|13707
19486 NeuralNetworksT-13707 (13707) [006] ...1 29480.001150: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19487 NeuralNetworksT-13707 (13707) [006] ...1 29480.001152: tracing_mark_write: E|13707
19488 NeuralNetworksT-13707 (13707) [006] ...1 29480.001153: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19489 NeuralNetworksT-13707 (13707) [006] ...1 29480.001154: tracing_mark_write: E|13707
19490 NeuralNetworksT-13707 (13707) [006] ...1 29480.001155: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19491 NeuralNetworksT-13707 (13707) [006] ...1 29480.001155: tracing_mark_write: E|13707
19492 NeuralNetworksT-13707 (13707) [006] ...1 29480.001156: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19493 NeuralNetworksT-13707 (13707) [006] ...1 29480.001157: tracing_mark_write: E|13707
19494 NeuralNetworksT-13707 (13707) [006] ...1 29480.001158: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19495 NeuralNetworksT-13707 (13707) [006] ...1 29480.001159: tracing_mark_write: E|13707
19496 NeuralNetworksT-13707 (13707) [006] ...1 29480.001160: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19497 NeuralNetworksT-13707 (13707) [006] ...1 29480.001161: tracing_mark_write: E|13707
19498 NeuralNetworksT-13707 (13707) [006] ...1 29480.001162: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19499 NeuralNetworksT-13707 (13707) [006] ...1 29480.001163: tracing_mark_write: E|13707
19500 NeuralNetworksT-13707 (13707) [006] ...1 29480.001164: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19501 NeuralNetworksT-13707 (13707) [006] ...1 29480.001164: tracing_mark_write: E|13707
19502 NeuralNetworksT-13707 (13707) [006] ...1 29480.001165: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19503 NeuralNetworksT-13707 (13707) [006] ...1 29480.001166: tracing_mark_write: E|13707
19504 NeuralNetworksT-13707 (13707) [006] ...1 29480.001167: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19505 NeuralNetworksT-13707 (13707) [006] ...1 29480.001168: tracing_mark_write: E|13707
19506 NeuralNetworksT-13707 (13707) [006] ...1 29480.001169: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19507 NeuralNetworksT-13707 (13707) [006] ...1 29480.001170: tracing_mark_write: E|13707
19508 NeuralNetworksT-13707 (13707) [006] ...1 29480.001171: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19509 NeuralNetworksT-13707 (13707) [006] ...1 29480.001172: tracing_mark_write: E|13707
19510 NeuralNetworksT-13707 (13707) [006] ...1 29480.001173: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19511 NeuralNetworksT-13707 (13707) [006] ...1 29480.001174: tracing_mark_write: E|13707
19512 NeuralNetworksT-13707 (13707) [006] ...1 29480.001175: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19513 NeuralNetworksT-13707 (13707) [006] ...1 29480.001176: tracing_mark_write: E|13707
19514 NeuralNetworksT-13707 (13707) [006] ...1 29480.001176: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19515 NeuralNetworksT-13707 (13707) [006] ...1 29480.001178: tracing_mark_write: E|13707
19516 NeuralNetworksT-13707 (13707) [006] ...1 29480.001179: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19517 NeuralNetworksT-13707 (13707) [006] ...1 29480.001180: tracing_mark_write: E|13707
19518 NeuralNetworksT-13707 (13707) [006] ...1 29480.001181: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19519 NeuralNetworksT-13707 (13707) [006] ...1 29480.001182: tracing_mark_write: E|13707
19520 NeuralNetworksT-13707 (13707) [006] ...1 29480.001183: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19521 NeuralNetworksT-13707 (13707) [006] ...1 29480.001183: tracing_mark_write: E|13707
19522 NeuralNetworksT-13707 (13707) [006] ...1 29480.001184: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19523 NeuralNetworksT-13707 (13707) [006] ...1 29480.001185: tracing_mark_write: E|13707
19524 NeuralNetworksT-13707 (13707) [006] ...1 29480.001186: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19525 NeuralNetworksT-13707 (13707) [006] ...1 29480.001187: tracing_mark_write: E|13707
19526 NeuralNetworksT-13707 (13707) [006] ...1 29480.001188: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19527 NeuralNetworksT-13707 (13707) [006] ...1 29480.001189: tracing_mark_write: E|13707
19528 NeuralNetworksT-13707 (13707) [006] ...1 29480.001190: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19529 NeuralNetworksT-13707 (13707) [006] ...1 29480.001190: tracing_mark_write: E|13707
19530 NeuralNetworksT-13707 (13707) [006] ...1 29480.001191: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19531 NeuralNetworksT-13707 (13707) [006] ...1 29480.001192: tracing_mark_write: E|13707
19532 NeuralNetworksT-13707 (13707) [006] ...1 29480.001193: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19533 NeuralNetworksT-13707 (13707) [006] ...1 29480.001194: tracing_mark_write: E|13707
19534 NeuralNetworksT-13707 (13707) [006] ...1 29480.001195: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19535 NeuralNetworksT-13707 (13707) [006] ...1 29480.001196: tracing_mark_write: E|13707
19536 NeuralNetworksT-13707 (13707) [006] ...1 29480.001197: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19537 NeuralNetworksT-13707 (13707) [006] ...1 29480.001198: tracing_mark_write: E|13707
19538 NeuralNetworksT-13707 (13707) [006] ...1 29480.001199: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19539 NeuralNetworksT-13707 (13707) [006] ...1 29480.001200: tracing_mark_write: E|13707
19540 NeuralNetworksT-13707 (13707) [006] ...1 29480.001201: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19541 NeuralNetworksT-13707 (13707) [006] ...1 29480.001202: tracing_mark_write: E|13707
19542 NeuralNetworksT-13707 (13707) [006] ...1 29480.001203: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19543 NeuralNetworksT-13707 (13707) [006] ...1 29480.001204: tracing_mark_write: E|13707
19544 NeuralNetworksT-13707 (13707) [006] ...1 29480.001205: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19545 NeuralNetworksT-13707 (13707) [006] ...1 29480.001205: tracing_mark_write: E|13707
19546 NeuralNetworksT-13707 (13707) [006] ...1 29480.001206: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19547 NeuralNetworksT-13707 (13707) [006] ...1 29480.001208: tracing_mark_write: E|13707
19548 NeuralNetworksT-13707 (13707) [006] ...1 29480.001209: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
19549 NeuralNetworksT-13707 (13707) [006] ...1 29480.001210: tracing_mark_write: E|13707
19550 NeuralNetworksT-13707 (13707) [006] ...1 29480.001211: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19551            adbd-23485 ( 1007) [001] d..2 29480.001219: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19552          <idle>-0     (-----) [001] d..1 29480.001239: cpu_idle: state=0 cpu_id=1
19553          <idle>-0     (-----) [000] d.h3 29480.001355: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
19554          <idle>-0     (-----) [000] dnh4 29480.001404: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
19555          <idle>-0     (-----) [000] .n.1 29480.001417: cpu_idle: state=4294967295 cpu_id=0
19556          <idle>-0     (-----) [000] d..2 29480.001438: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
19557 NeuralNetworksT-13707 (13707) [006] d..2 29480.001440: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
19558   kworker/u17:1-18284 (18284) [000] d..2 29480.001467: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
19559 NeuralNetworksT-13707 (13707) [006] ...1 29480.001476: tracing_mark_write: E|13707
19560 NeuralNetworksT-13707 (13707) [006] ...1 29480.001478: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19561   kworker/u17:1-18284 (18284) [000] d..3 29480.001483: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
19562 NeuralNetworksT-13707 (13707) [006] ...1 29480.001494: tracing_mark_write: E|13707
19563 NeuralNetworksT-13707 (13707) [006] ...1 29480.001496: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19564   kworker/u17:1-18284 (18284) [000] d.h2 29480.001511: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
19565 NeuralNetworksT-13707 (13707) [006] ...1 29480.001511: tracing_mark_write: E|13707
19566 NeuralNetworksT-13707 (13707) [006] ...1 29480.001513: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19567 NeuralNetworksT-13707 (13707) [006] ...1 29480.001527: tracing_mark_write: E|13707
19568 NeuralNetworksT-13707 (13707) [006] ...1 29480.001528: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19569   kworker/u17:1-18284 (18284) [000] d..2 29480.001529: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
19570 NeuralNetworksT-13707 (13707) [006] ...1 29480.001543: tracing_mark_write: E|13707
19571 NeuralNetworksT-13707 (13707) [006] ...1 29480.001544: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19572     kworker/0:0-13450 (13450) [000] d..2 29480.001548: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
19573 NeuralNetworksT-13707 (13707) [006] ...1 29480.001559: tracing_mark_write: E|13707
19574 NeuralNetworksT-13707 (13707) [006] ...1 29480.001560: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19575     kworker/0:0-13450 (13450) [000] d..3 29480.001564: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
19576          <idle>-0     (-----) [001] .n.1 29480.001572: cpu_idle: state=4294967295 cpu_id=1
19577 NeuralNetworksT-13707 (13707) [006] ...1 29480.001574: tracing_mark_write: E|13707
19578 NeuralNetworksT-13707 (13707) [006] ...1 29480.001576: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19579     kworker/0:0-13450 (13450) [000] d..2 29480.001585: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
19580          <idle>-0     (-----) [001] d..2 29480.001586: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
19581 NeuralNetworksT-13707 (13707) [006] ...1 29480.001590: tracing_mark_write: E|13707
19582 NeuralNetworksT-13707 (13707) [006] ...1 29480.001591: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19583 NeuralNetworksT-13707 (13707) [006] ...1 29480.001606: tracing_mark_write: E|13707
19584 NeuralNetworksT-13707 (13707) [006] ...1 29480.001607: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19585 NeuralNetworksT-13707 (13707) [006] ...1 29480.001621: tracing_mark_write: E|13707
19586 NeuralNetworksT-13707 (13707) [006] ...1 29480.001622: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19587 NeuralNetworksT-13707 (13707) [006] ...1 29480.001638: tracing_mark_write: E|13707
19588 NeuralNetworksT-13707 (13707) [006] ...1 29480.001639: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19589 NeuralNetworksT-13707 (13707) [006] ...1 29480.001654: tracing_mark_write: E|13707
19590 NeuralNetworksT-13707 (13707) [006] ...1 29480.001654: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19591 NeuralNetworksT-13707 (13707) [006] ...1 29480.001669: tracing_mark_write: E|13707
19592            adbd-23485 ( 1007) [001] d..2 29480.001669: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19593 NeuralNetworksT-13707 (13707) [006] ...1 29480.001670: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19594     logd.writer-563   (  555) [000] d.h2 29480.001673: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
19595 NeuralNetworksT-13707 (13707) [006] ...1 29480.001684: tracing_mark_write: E|13707
19596 NeuralNetworksT-13707 (13707) [006] ...1 29480.001685: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19597          <idle>-0     (-----) [001] d..1 29480.001685: cpu_idle: state=0 cpu_id=1
19598 NeuralNetworksT-13707 (13707) [006] ...1 29480.001699: tracing_mark_write: E|13707
19599 NeuralNetworksT-13707 (13707) [006] ...1 29480.001700: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19600     logd.writer-563   (  555) [000] d.h3 29480.001705: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19601          <idle>-0     (-----) [001] .n.1 29480.001712: cpu_idle: state=4294967295 cpu_id=1
19602 NeuralNetworksT-13707 (13707) [006] ...1 29480.001715: tracing_mark_write: E|13707
19603 NeuralNetworksT-13707 (13707) [006] ...1 29480.001716: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19604          <idle>-0     (-----) [001] d..2 29480.001725: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
19605 NeuralNetworksT-13707 (13707) [006] ...1 29480.001731: tracing_mark_write: E|13707
19606 NeuralNetworksT-13707 (13707) [006] ...1 29480.001732: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19607   kworker/u17:1-18284 (18284) [001] d..2 29480.001742: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19608 NeuralNetworksT-13707 (13707) [006] ...1 29480.001747: tracing_mark_write: E|13707
19609 NeuralNetworksT-13707 (13707) [006] ...1 29480.001748: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19610   kworker/u17:1-18284 (18284) [001] d..3 29480.001759: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19611 NeuralNetworksT-13707 (13707) [006] ...1 29480.001762: tracing_mark_write: E|13707
19612 NeuralNetworksT-13707 (13707) [006] ...1 29480.001763: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19613 NeuralNetworksT-13707 (13707) [006] ...1 29480.001776: tracing_mark_write: E|13707
19614 NeuralNetworksT-13707 (13707) [006] ...1 29480.001777: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19615   kworker/u17:1-18284 (18284) [001] d..2 29480.001786: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
19616 NeuralNetworksT-13707 (13707) [006] ...1 29480.001792: tracing_mark_write: E|13707
19617 NeuralNetworksT-13707 (13707) [006] ...1 29480.001793: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19618     kworker/1:1-13678 (13678) [001] d..2 29480.001798: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
19619 NeuralNetworksT-13707 (13707) [006] ...1 29480.001806: tracing_mark_write: E|13707
19620 NeuralNetworksT-13707 (13707) [006] ...1 29480.001807: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19621     kworker/1:1-13678 (13678) [001] d..3 29480.001819: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
19622 NeuralNetworksT-13707 (13707) [006] ...1 29480.001822: tracing_mark_write: E|13707
19623 NeuralNetworksT-13707 (13707) [006] ...1 29480.001823: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19624 NeuralNetworksT-13707 (13707) [006] ...1 29480.001837: tracing_mark_write: E|13707
19625     kworker/1:1-13678 (13678) [001] d..2 29480.001837: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
19626 NeuralNetworksT-13707 (13707) [006] ...1 29480.001838: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19627 NeuralNetworksT-13707 (13707) [006] ...1 29480.001867: tracing_mark_write: E|13707
19628 NeuralNetworksT-13707 (13707) [006] ...1 29480.001868: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19629 NeuralNetworksT-13707 (13707) [006] ...1 29480.001884: tracing_mark_write: E|13707
19630 NeuralNetworksT-13707 (13707) [006] ...1 29480.001885: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19631 NeuralNetworksT-13707 (13707) [006] ...1 29480.001900: tracing_mark_write: E|13707
19632 NeuralNetworksT-13707 (13707) [006] ...1 29480.001901: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19633     logd.writer-563   (  555) [000] d..2 29480.001909: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
19634 NeuralNetworksT-13707 (13707) [006] ...1 29480.001915: tracing_mark_write: E|13707
19635 NeuralNetworksT-13707 (13707) [006] ...1 29480.001916: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19636 NeuralNetworksT-13707 (13707) [006] ...1 29480.001931: tracing_mark_write: E|13707
19637 NeuralNetworksT-13707 (13707) [006] ...1 29480.001932: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19638 NeuralNetworksT-13707 (13707) [006] ...1 29480.001948: tracing_mark_write: E|13707
19639 NeuralNetworksT-13707 (13707) [006] ...1 29480.001949: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19640 NeuralNetworksT-13707 (13707) [006] ...1 29480.001964: tracing_mark_write: E|13707
19641 NeuralNetworksT-13707 (13707) [006] ...1 29480.001964: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19642     logd.writer-563   (  555) [000] d..3 29480.001973: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
19643 NeuralNetworksT-13707 (13707) [006] ...1 29480.001978: tracing_mark_write: E|13707
19644 NeuralNetworksT-13707 (13707) [006] ...1 29480.001979: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19645            adbd-23485 ( 1007) [001] d..2 29480.001988: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
19646 NeuralNetworksT-13707 (13707) [006] ...1 29480.001994: tracing_mark_write: E|13707
19647 NeuralNetworksT-13707 (13707) [006] ...1 29480.001995: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19648 NeuralNetworksT-13707 (13707) [006] ...1 29480.002010: tracing_mark_write: E|13707
19649 NeuralNetworksT-13707 (13707) [006] ...1 29480.002011: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19650     logd.writer-563   (  555) [000] d.h2 29480.002011: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19651         rcuop/0-10    (   10) [001] d..2 29480.002016: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19652 NeuralNetworksT-13707 (13707) [006] ...1 29480.002026: tracing_mark_write: E|13707
19653 NeuralNetworksT-13707 (13707) [006] ...1 29480.002026: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19654     logd.writer-563   (  555) [000] d.h3 29480.002031: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19655 NeuralNetworksT-13707 (13707) [006] ...1 29480.002041: tracing_mark_write: E|13707
19656 NeuralNetworksT-13707 (13707) [006] ...1 29480.002042: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19657          <idle>-0     (-----) [001] d..2 29480.002049: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
19658 NeuralNetworksT-13707 (13707) [006] ...1 29480.002056: tracing_mark_write: E|13707
19659 NeuralNetworksT-13707 (13707) [006] ...1 29480.002057: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19660   kworker/u17:1-18284 (18284) [001] d..2 29480.002064: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19661   kworker/u17:1-18284 (18284) [001] d..3 29480.002080: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19662 NeuralNetworksT-13707 (13707) [006] ...1 29480.002080: tracing_mark_write: E|13707
19663 NeuralNetworksT-13707 (13707) [006] ...1 29480.002081: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19664 NeuralNetworksT-13707 (13707) [006] ...1 29480.002096: tracing_mark_write: E|13707
19665 NeuralNetworksT-13707 (13707) [006] ...1 29480.002097: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19666   kworker/u17:1-18284 (18284) [001] d..2 29480.002106: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
19667 NeuralNetworksT-13707 (13707) [006] ...1 29480.002112: tracing_mark_write: E|13707
19668 NeuralNetworksT-13707 (13707) [006] ...1 29480.002113: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19669     kworker/1:1-13678 (13678) [001] d..2 29480.002125: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
19670 NeuralNetworksT-13707 (13707) [006] ...1 29480.002127: tracing_mark_write: E|13707
19671 NeuralNetworksT-13707 (13707) [006] ...1 29480.002128: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19672 NeuralNetworksT-13707 (13707) [006] ...1 29480.002143: tracing_mark_write: E|13707
19673 NeuralNetworksT-13707 (13707) [006] ...1 29480.002144: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19674 NeuralNetworksT-13707 (13707) [006] ...1 29480.002158: tracing_mark_write: E|13707
19675 NeuralNetworksT-13707 (13707) [006] ...1 29480.002159: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19676     kworker/1:1-13678 (13678) [001] d..3 29480.002170: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
19677 NeuralNetworksT-13707 (13707) [006] ...1 29480.002173: tracing_mark_write: E|13707
19678 NeuralNetworksT-13707 (13707) [006] ...1 29480.002174: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19679 NeuralNetworksT-13707 (13707) [006] ...1 29480.002189: tracing_mark_write: E|13707
19680     kworker/1:1-13678 (13678) [001] d..2 29480.002190: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
19681 NeuralNetworksT-13707 (13707) [006] ...1 29480.002190: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19682 NeuralNetworksT-13707 (13707) [006] ...1 29480.002204: tracing_mark_write: E|13707
19683 NeuralNetworksT-13707 (13707) [006] ...1 29480.002205: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19684 NeuralNetworksT-13707 (13707) [006] ...1 29480.002219: tracing_mark_write: E|13707
19685 NeuralNetworksT-13707 (13707) [006] ...1 29480.002221: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19686            adbd-23484 ( 1007) [001] d..2 29480.002222: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
19687 NeuralNetworksT-13707 (13707) [006] ...1 29480.002236: tracing_mark_write: E|13707
19688 NeuralNetworksT-13707 (13707) [006] ...1 29480.002237: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19689            adbd-23484 ( 1007) [001] d..3 29480.002240: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
19690 NeuralNetworksT-13707 (13707) [006] ...1 29480.002253: tracing_mark_write: E|13707
19691 NeuralNetworksT-13707 (13707) [006] ...1 29480.002254: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19692 NeuralNetworksT-13707 (13707) [006] ...1 29480.002268: tracing_mark_write: E|13707
19693 NeuralNetworksT-13707 (13707) [006] ...1 29480.002270: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19694 NeuralNetworksT-13707 (13707) [006] ...1 29480.002285: tracing_mark_write: E|13707
19695 NeuralNetworksT-13707 (13707) [006] ...1 29480.002286: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19696 NeuralNetworksT-13707 (13707) [006] ...1 29480.002316: tracing_mark_write: E|13707
19697 NeuralNetworksT-13707 (13707) [006] ...1 29480.002317: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19698 NeuralNetworksT-13707 (13707) [006] ...1 29480.002332: tracing_mark_write: E|13707
19699            adbd-23484 ( 1007) [001] d..2 29480.002333: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
19700 NeuralNetworksT-13707 (13707) [006] ...1 29480.002333: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19701 NeuralNetworksT-13707 (13707) [006] ...1 29480.002347: tracing_mark_write: E|13707
19702 NeuralNetworksT-13707 (13707) [006] ...1 29480.002348: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19703 NeuralNetworksT-13707 (13707) [006] ...1 29480.002362: tracing_mark_write: E|13707
19704 NeuralNetworksT-13707 (13707) [006] ...1 29480.002363: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19705 NeuralNetworksT-13707 (13707) [006] ...1 29480.002378: tracing_mark_write: E|13707
19706 NeuralNetworksT-13707 (13707) [006] ...1 29480.002379: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19707 NeuralNetworksT-13707 (13707) [006] ...1 29480.002393: tracing_mark_write: E|13707
19708 NeuralNetworksT-13707 (13707) [006] ...1 29480.002394: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19709 NeuralNetworksT-13707 (13707) [006] ...1 29480.002409: tracing_mark_write: E|13707
19710 NeuralNetworksT-13707 (13707) [006] ...1 29480.002410: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19711 NeuralNetworksT-13707 (13707) [006] ...1 29480.002425: tracing_mark_write: E|13707
19712 NeuralNetworksT-13707 (13707) [006] ...1 29480.002426: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19713 NeuralNetworksT-13707 (13707) [006] ...1 29480.002441: tracing_mark_write: E|13707
19714 NeuralNetworksT-13707 (13707) [006] ...1 29480.002442: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19715 NeuralNetworksT-13707 (13707) [006] ...1 29480.002456: tracing_mark_write: E|13707
19716 NeuralNetworksT-13707 (13707) [006] ...1 29480.002458: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19717 NeuralNetworksT-13707 (13707) [006] ...1 29480.002472: tracing_mark_write: E|13707
19718 NeuralNetworksT-13707 (13707) [006] ...1 29480.002476: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19719 NeuralNetworksT-13707 (13707) [006] ...1 29480.002491: tracing_mark_write: E|13707
19720 NeuralNetworksT-13707 (13707) [006] ...1 29480.002492: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19721            adbd-1007  ( 1007) [001] d..1 29480.002500: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
19722 NeuralNetworksT-13707 (13707) [006] ...1 29480.002507: tracing_mark_write: E|13707
19723 NeuralNetworksT-13707 (13707) [006] ...1 29480.002507: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19724 NeuralNetworksT-13707 (13707) [006] ...1 29480.002522: tracing_mark_write: E|13707
19725 NeuralNetworksT-13707 (13707) [006] ...1 29480.002523: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19726 NeuralNetworksT-13707 (13707) [006] ...1 29480.002538: tracing_mark_write: E|13707
19727 NeuralNetworksT-13707 (13707) [006] ...1 29480.002539: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19728            adbd-1007  ( 1007) [001] d..2 29480.002548: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
19729 NeuralNetworksT-13707 (13707) [006] ...1 29480.002553: tracing_mark_write: E|13707
19730 NeuralNetworksT-13707 (13707) [006] ...1 29480.002554: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19731          <idle>-0     (-----) [002] .n.1 29480.002554: cpu_idle: state=4294967295 cpu_id=2
19732          <idle>-0     (-----) [002] d..2 29480.002568: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
19733 NeuralNetworksT-13707 (13707) [006] ...1 29480.002568: tracing_mark_write: E|13707
19734 NeuralNetworksT-13707 (13707) [006] ...1 29480.002569: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19735 NeuralNetworksT-13707 (13707) [006] ...1 29480.002584: tracing_mark_write: E|13707
19736 NeuralNetworksT-13707 (13707) [006] ...1 29480.002585: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19737 NeuralNetworksT-13707 (13707) [006] ...1 29480.002599: tracing_mark_write: E|13707
19738 NeuralNetworksT-13707 (13707) [006] ...1 29480.002600: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19739 NeuralNetworksT-13707 (13707) [006] ...1 29480.002615: tracing_mark_write: E|13707
19740 NeuralNetworksT-13707 (13707) [006] ...1 29480.002615: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19741            adbd-1007  ( 1007) [001] d..2 29480.002622: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19742 NeuralNetworksT-13707 (13707) [006] ...1 29480.002630: tracing_mark_write: E|13707
19743 NeuralNetworksT-13707 (13707) [006] ...1 29480.002631: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19744          <idle>-0     (-----) [001] d..1 29480.002636: cpu_idle: state=0 cpu_id=1
19745 NeuralNetworksT-13707 (13707) [006] ...1 29480.002645: tracing_mark_write: E|13707
19746 NeuralNetworksT-13707 (13707) [006] ...1 29480.002646: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19747            adbd-23485 ( 1007) [002] d..2 29480.002659: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19748 NeuralNetworksT-13707 (13707) [006] ...1 29480.002660: tracing_mark_write: E|13707
19749 NeuralNetworksT-13707 (13707) [006] ...1 29480.002661: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19750     logd.writer-563   (  555) [000] d.h2 29480.002667: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19751          <idle>-0     (-----) [002] d..1 29480.002672: cpu_idle: state=0 cpu_id=2
19752 NeuralNetworksT-13707 (13707) [006] ...1 29480.002675: tracing_mark_write: E|13707
19753 NeuralNetworksT-13707 (13707) [006] ...1 29480.002676: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19754     logd.writer-563   (  555) [000] d.h3 29480.002687: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19755 NeuralNetworksT-13707 (13707) [006] ...1 29480.002691: tracing_mark_write: E|13707
19756 NeuralNetworksT-13707 (13707) [006] ...1 29480.002692: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19757          <idle>-0     (-----) [001] .n.1 29480.002695: cpu_idle: state=4294967295 cpu_id=1
19758 NeuralNetworksT-13707 (13707) [006] ...1 29480.002706: tracing_mark_write: E|13707
19759 NeuralNetworksT-13707 (13707) [006] ...1 29480.002707: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19760          <idle>-0     (-----) [001] d..2 29480.002709: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
19761   kworker/u17:1-18284 (18284) [001] d..2 29480.002733: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19762 NeuralNetworksT-13707 (13707) [006] ...1 29480.002736: tracing_mark_write: E|13707
19763 NeuralNetworksT-13707 (13707) [006] ...1 29480.002737: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19764   kworker/u17:1-18284 (18284) [001] d..3 29480.002745: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19765 NeuralNetworksT-13707 (13707) [006] ...1 29480.002752: tracing_mark_write: E|13707
19766 NeuralNetworksT-13707 (13707) [006] ...1 29480.002753: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19767 NeuralNetworksT-13707 (13707) [006] ...1 29480.002767: tracing_mark_write: E|13707
19768 NeuralNetworksT-13707 (13707) [006] ...1 29480.002768: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19769   kworker/u17:1-18284 (18284) [001] d..2 29480.002772: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
19770 NeuralNetworksT-13707 (13707) [006] ...1 29480.002784: tracing_mark_write: E|13707
19771     kworker/1:1-13678 (13678) [001] d..2 29480.002785: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
19772 NeuralNetworksT-13707 (13707) [006] ...1 29480.002785: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19773 NeuralNetworksT-13707 (13707) [006] ...1 29480.002799: tracing_mark_write: E|13707
19774     kworker/1:1-13678 (13678) [001] d..3 29480.002800: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
19775 NeuralNetworksT-13707 (13707) [006] ...1 29480.002801: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19776          <idle>-0     (-----) [002] .n.1 29480.002806: cpu_idle: state=4294967295 cpu_id=2
19777 NeuralNetworksT-13707 (13707) [006] ...1 29480.002816: tracing_mark_write: E|13707
19778 NeuralNetworksT-13707 (13707) [006] ...1 29480.002816: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19779          <idle>-0     (-----) [002] d..2 29480.002820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
19780     kworker/1:1-13678 (13678) [001] d..2 29480.002830: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19781 NeuralNetworksT-13707 (13707) [006] ...1 29480.002831: tracing_mark_write: E|13707
19782 NeuralNetworksT-13707 (13707) [006] ...1 29480.002832: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19783          <idle>-0     (-----) [001] d..1 29480.002846: cpu_idle: state=0 cpu_id=1
19784 NeuralNetworksT-13707 (13707) [006] ...1 29480.002847: tracing_mark_write: E|13707
19785 NeuralNetworksT-13707 (13707) [006] ...1 29480.002848: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19786 NeuralNetworksT-13707 (13707) [006] ...1 29480.002863: tracing_mark_write: E|13707
19787 NeuralNetworksT-13707 (13707) [006] ...1 29480.002864: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19788 NeuralNetworksT-13707 (13707) [006] ...1 29480.002880: tracing_mark_write: E|13707
19789 NeuralNetworksT-13707 (13707) [006] ...1 29480.002881: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19790 NeuralNetworksT-13707 (13707) [006] ...1 29480.002895: tracing_mark_write: E|13707
19791 NeuralNetworksT-13707 (13707) [006] ...1 29480.002896: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19792     logd.writer-563   (  555) [000] d.h2 29480.002899: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19793            adbd-23485 ( 1007) [002] d..2 29480.002901: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19794 NeuralNetworksT-13707 (13707) [006] ...1 29480.002911: tracing_mark_write: E|13707
19795 NeuralNetworksT-13707 (13707) [006] ...1 29480.002913: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19796          <idle>-0     (-----) [002] d..1 29480.002914: cpu_idle: state=0 cpu_id=2
19797     logd.writer-563   (  555) [000] d.h3 29480.002917: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19798          <idle>-0     (-----) [001] .n.1 29480.002924: cpu_idle: state=4294967295 cpu_id=1
19799 NeuralNetworksT-13707 (13707) [006] ...1 29480.002927: tracing_mark_write: E|13707
19800 NeuralNetworksT-13707 (13707) [006] ...1 29480.002928: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19801          <idle>-0     (-----) [001] d..2 29480.002937: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
19802   kworker/u17:1-18284 (18284) [001] d..2 29480.002960: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19803 NeuralNetworksT-13707 (13707) [006] ...1 29480.002966: tracing_mark_write: E|13707
19804 NeuralNetworksT-13707 (13707) [006] ...1 29480.002967: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19805   kworker/u17:1-18284 (18284) [001] d..3 29480.002971: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19806 NeuralNetworksT-13707 (13707) [006] ...1 29480.002984: tracing_mark_write: E|13707
19807 NeuralNetworksT-13707 (13707) [006] ...1 29480.002985: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19808   kworker/u17:1-18284 (18284) [001] d..2 29480.002997: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
19809 NeuralNetworksT-13707 (13707) [006] ...1 29480.003001: tracing_mark_write: E|13707
19810 NeuralNetworksT-13707 (13707) [006] ...1 29480.003002: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19811     kworker/1:1-13678 (13678) [001] d..2 29480.003008: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
19812 NeuralNetworksT-13707 (13707) [006] ...1 29480.003018: tracing_mark_write: E|13707
19813 NeuralNetworksT-13707 (13707) [006] ...1 29480.003018: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19814 NeuralNetworksT-13707 (13707) [006] ...1 29480.003033: tracing_mark_write: E|13707
19815 NeuralNetworksT-13707 (13707) [006] ...1 29480.003034: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19816     kworker/1:1-13678 (13678) [001] d..3 29480.003049: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
19817 NeuralNetworksT-13707 (13707) [006] ...1 29480.003050: tracing_mark_write: E|13707
19818 NeuralNetworksT-13707 (13707) [006] ...1 29480.003051: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19819 NeuralNetworksT-13707 (13707) [006] ...1 29480.003067: tracing_mark_write: E|13707
19820     kworker/1:1-13678 (13678) [001] d..2 29480.003067: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
19821 NeuralNetworksT-13707 (13707) [006] ...1 29480.003068: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19822 NeuralNetworksT-13707 (13707) [006] ...1 29480.003082: tracing_mark_write: E|13707
19823 NeuralNetworksT-13707 (13707) [006] ...1 29480.003083: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19824     logd.writer-563   (  555) [000] d.h2 29480.003088: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19825 NeuralNetworksT-13707 (13707) [006] ...1 29480.003098: tracing_mark_write: E|13707
19826 NeuralNetworksT-13707 (13707) [006] ...1 29480.003098: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19827            adbd-23485 ( 1007) [001] d..2 29480.003105: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19828 NeuralNetworksT-13707 (13707) [006] ...1 29480.003113: tracing_mark_write: E|13707
19829 NeuralNetworksT-13707 (13707) [006] ...1 29480.003114: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19830     logd.writer-563   (  555) [000] d.h3 29480.003117: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
19831          <idle>-0     (-----) [001] d..2 29480.003128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
19832 NeuralNetworksT-13707 (13707) [006] ...1 29480.003129: tracing_mark_write: E|13707
19833 NeuralNetworksT-13707 (13707) [006] ...1 29480.003130: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19834   kworker/u17:1-18284 (18284) [001] d..2 29480.003142: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19835 NeuralNetworksT-13707 (13707) [006] ...1 29480.003146: tracing_mark_write: E|13707
19836 NeuralNetworksT-13707 (13707) [006] ...1 29480.003147: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19837   kworker/u17:1-18284 (18284) [001] d..3 29480.003152: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
19838 NeuralNetworksT-13707 (13707) [006] ...1 29480.003162: tracing_mark_write: E|13707
19839 NeuralNetworksT-13707 (13707) [006] ...1 29480.003163: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19840 NeuralNetworksT-13707 (13707) [006] ...1 29480.003178: tracing_mark_write: E|13707
19841   kworker/u17:1-18284 (18284) [001] d..2 29480.003178: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
19842 NeuralNetworksT-13707 (13707) [006] ...1 29480.003179: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19843     kworker/1:1-13678 (13678) [001] d..2 29480.003192: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
19844 NeuralNetworksT-13707 (13707) [006] ...1 29480.003194: tracing_mark_write: E|13707
19845 NeuralNetworksT-13707 (13707) [006] ...1 29480.003195: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19846     kworker/1:1-13678 (13678) [001] d..3 29480.003209: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
19847 NeuralNetworksT-13707 (13707) [006] ...1 29480.003210: tracing_mark_write: E|13707
19848 NeuralNetworksT-13707 (13707) [006] ...1 29480.003211: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19849 NeuralNetworksT-13707 (13707) [006] ...1 29480.003226: tracing_mark_write: E|13707
19850     kworker/1:1-13678 (13678) [001] d..2 29480.003227: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
19851 NeuralNetworksT-13707 (13707) [006] ...1 29480.003228: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19852 NeuralNetworksT-13707 (13707) [006] ...1 29480.003242: tracing_mark_write: E|13707
19853 NeuralNetworksT-13707 (13707) [006] ...1 29480.003244: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19854            adbd-23484 ( 1007) [001] d..2 29480.003247: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
19855 NeuralNetworksT-13707 (13707) [006] ...1 29480.003258: tracing_mark_write: E|13707
19856            adbd-23484 ( 1007) [001] d..3 29480.003258: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
19857 NeuralNetworksT-13707 (13707) [006] ...1 29480.003259: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19858 NeuralNetworksT-13707 (13707) [006] ...1 29480.003274: tracing_mark_write: E|13707
19859 NeuralNetworksT-13707 (13707) [006] ...1 29480.003275: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19860 NeuralNetworksT-13707 (13707) [006] ...1 29480.003289: tracing_mark_write: E|13707
19861 NeuralNetworksT-13707 (13707) [006] ...1 29480.003290: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19862 NeuralNetworksT-13707 (13707) [006] ...1 29480.003304: tracing_mark_write: E|13707
19863 NeuralNetworksT-13707 (13707) [006] ...1 29480.003305: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19864 NeuralNetworksT-13707 (13707) [006] ...1 29480.003319: tracing_mark_write: E|13707
19865 NeuralNetworksT-13707 (13707) [006] ...1 29480.003320: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19866 NeuralNetworksT-13707 (13707) [006] ...1 29480.003336: tracing_mark_write: E|13707
19867 NeuralNetworksT-13707 (13707) [006] ...1 29480.003337: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19868            adbd-23484 ( 1007) [001] d..2 29480.003338: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
19869 NeuralNetworksT-13707 (13707) [006] ...1 29480.003354: tracing_mark_write: E|13707
19870 NeuralNetworksT-13707 (13707) [006] ...1 29480.003354: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19871 NeuralNetworksT-13707 (13707) [006] ...1 29480.003369: tracing_mark_write: E|13707
19872 NeuralNetworksT-13707 (13707) [006] ...1 29480.003370: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19873 NeuralNetworksT-13707 (13707) [006] ...1 29480.003385: tracing_mark_write: E|13707
19874 NeuralNetworksT-13707 (13707) [006] ...1 29480.003385: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19875 NeuralNetworksT-13707 (13707) [006] ...1 29480.003401: tracing_mark_write: E|13707
19876 NeuralNetworksT-13707 (13707) [006] ...1 29480.003402: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19877 NeuralNetworksT-13707 (13707) [006] ...1 29480.003417: tracing_mark_write: E|13707
19878 NeuralNetworksT-13707 (13707) [006] ...1 29480.003418: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19879 NeuralNetworksT-13707 (13707) [006] ...1 29480.003434: tracing_mark_write: E|13707
19880 NeuralNetworksT-13707 (13707) [006] ...1 29480.003435: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19881 NeuralNetworksT-13707 (13707) [006] ...1 29480.003450: tracing_mark_write: E|13707
19882 NeuralNetworksT-13707 (13707) [006] ...1 29480.003451: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19883            adbd-1007  ( 1007) [001] d..2 29480.003463: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19884 NeuralNetworksT-13707 (13707) [006] ...1 29480.003468: tracing_mark_write: E|13707
19885 NeuralNetworksT-13707 (13707) [006] ...1 29480.003469: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19886          <idle>-0     (-----) [001] d..1 29480.003482: cpu_idle: state=0 cpu_id=1
19887 NeuralNetworksT-13707 (13707) [006] ...1 29480.003484: tracing_mark_write: E|13707
19888 NeuralNetworksT-13707 (13707) [006] ...1 29480.003485: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19889 NeuralNetworksT-13707 (13707) [006] ...1 29480.003500: tracing_mark_write: E|13707
19890 NeuralNetworksT-13707 (13707) [006] ...1 29480.003501: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19891 NeuralNetworksT-13707 (13707) [006] ...1 29480.003516: tracing_mark_write: E|13707
19892 NeuralNetworksT-13707 (13707) [006] ...1 29480.003517: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19893 NeuralNetworksT-13707 (13707) [006] ...1 29480.003532: tracing_mark_write: E|13707
19894 NeuralNetworksT-13707 (13707) [006] ...1 29480.003533: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19895 NeuralNetworksT-13707 (13707) [006] ...1 29480.003549: tracing_mark_write: E|13707
19896 NeuralNetworksT-13707 (13707) [006] ...1 29480.003550: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19897 NeuralNetworksT-13707 (13707) [006] ...1 29480.003566: tracing_mark_write: E|13707
19898 NeuralNetworksT-13707 (13707) [006] ...1 29480.003567: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19899 NeuralNetworksT-13707 (13707) [006] ...1 29480.003582: tracing_mark_write: E|13707
19900 NeuralNetworksT-13707 (13707) [006] ...1 29480.003583: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19901 NeuralNetworksT-13707 (13707) [006] ...1 29480.003599: tracing_mark_write: E|13707
19902 NeuralNetworksT-13707 (13707) [006] ...1 29480.003600: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19903 NeuralNetworksT-13707 (13707) [006] ...1 29480.003615: tracing_mark_write: E|13707
19904 NeuralNetworksT-13707 (13707) [006] ...1 29480.003616: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19905 NeuralNetworksT-13707 (13707) [006] ...1 29480.003631: tracing_mark_write: E|13707
19906 NeuralNetworksT-13707 (13707) [006] ...1 29480.003632: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19907 NeuralNetworksT-13707 (13707) [006] ...1 29480.003648: tracing_mark_write: E|13707
19908 NeuralNetworksT-13707 (13707) [006] ...1 29480.003649: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19909 NeuralNetworksT-13707 (13707) [006] ...1 29480.003663: tracing_mark_write: E|13707
19910 NeuralNetworksT-13707 (13707) [006] ...1 29480.003665: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19911 NeuralNetworksT-13707 (13707) [006] ...1 29480.003679: tracing_mark_write: E|13707
19912 NeuralNetworksT-13707 (13707) [006] ...1 29480.003680: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19913 NeuralNetworksT-13707 (13707) [006] ...1 29480.003695: tracing_mark_write: E|13707
19914 NeuralNetworksT-13707 (13707) [006] ...1 29480.003696: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19915 NeuralNetworksT-13707 (13707) [006] ...1 29480.003710: tracing_mark_write: E|13707
19916 NeuralNetworksT-13707 (13707) [006] ...1 29480.003711: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19917 NeuralNetworksT-13707 (13707) [006] d.s2 29480.003734: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
19918 NeuralNetworksT-13707 (13707) [006] dns3 29480.003740: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
19919 NeuralNetworksT-13707 (13707) [006] d..2 29480.003745: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
19920     kworker/6:0-21469 (21469) [006] d..2 29480.003756: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
19921 NeuralNetworksT-13707 (13707) [006] ...1 29480.003765: tracing_mark_write: E|13707
19922 NeuralNetworksT-13707 (13707) [006] ...1 29480.003766: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19923 NeuralNetworksT-13707 (13707) [006] ...1 29480.003784: tracing_mark_write: E|13707
19924 NeuralNetworksT-13707 (13707) [006] ...1 29480.003785: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19925 NeuralNetworksT-13707 (13707) [006] ...1 29480.003800: tracing_mark_write: E|13707
19926 NeuralNetworksT-13707 (13707) [006] ...1 29480.003801: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19927 NeuralNetworksT-13707 (13707) [006] ...1 29480.003816: tracing_mark_write: E|13707
19928 NeuralNetworksT-13707 (13707) [006] ...1 29480.003817: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19929 NeuralNetworksT-13707 (13707) [006] ...1 29480.003833: tracing_mark_write: E|13707
19930 NeuralNetworksT-13707 (13707) [006] ...1 29480.003834: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19931 NeuralNetworksT-13707 (13707) [006] ...1 29480.003848: tracing_mark_write: E|13707
19932 NeuralNetworksT-13707 (13707) [006] ...1 29480.003849: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19933 NeuralNetworksT-13707 (13707) [006] ...1 29480.003903: tracing_mark_write: E|13707
19934 NeuralNetworksT-13707 (13707) [006] ...1 29480.003905: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19935 NeuralNetworksT-13707 (13707) [006] ...1 29480.003920: tracing_mark_write: E|13707
19936 NeuralNetworksT-13707 (13707) [006] ...1 29480.003921: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19937 NeuralNetworksT-13707 (13707) [006] ...1 29480.003937: tracing_mark_write: E|13707
19938 NeuralNetworksT-13707 (13707) [006] ...1 29480.003938: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19939 NeuralNetworksT-13707 (13707) [006] ...1 29480.003955: tracing_mark_write: E|13707
19940 NeuralNetworksT-13707 (13707) [006] ...1 29480.003956: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19941 NeuralNetworksT-13707 (13707) [006] ...1 29480.003970: tracing_mark_write: E|13707
19942 NeuralNetworksT-13707 (13707) [006] ...1 29480.003971: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19943 NeuralNetworksT-13707 (13707) [006] ...1 29480.003985: tracing_mark_write: E|13707
19944 NeuralNetworksT-13707 (13707) [006] ...1 29480.003986: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19945 NeuralNetworksT-13707 (13707) [006] ...1 29480.004001: tracing_mark_write: E|13707
19946 NeuralNetworksT-13707 (13707) [006] ...1 29480.004002: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19947 NeuralNetworksT-13707 (13707) [006] ...1 29480.004022: tracing_mark_write: E|13707
19948 NeuralNetworksT-13707 (13707) [006] ...1 29480.004023: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19949 NeuralNetworksT-13707 (13707) [006] ...1 29480.004038: tracing_mark_write: E|13707
19950 NeuralNetworksT-13707 (13707) [006] ...1 29480.004040: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19951 NeuralNetworksT-13707 (13707) [006] ...1 29480.004055: tracing_mark_write: E|13707
19952 NeuralNetworksT-13707 (13707) [006] ...1 29480.004056: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19953 NeuralNetworksT-13707 (13707) [006] ...1 29480.004072: tracing_mark_write: E|13707
19954 NeuralNetworksT-13707 (13707) [006] ...1 29480.004073: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19955 NeuralNetworksT-13707 (13707) [006] ...1 29480.004088: tracing_mark_write: E|13707
19956 NeuralNetworksT-13707 (13707) [006] ...1 29480.004090: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19957 NeuralNetworksT-13707 (13707) [006] ...1 29480.004104: tracing_mark_write: E|13707
19958 NeuralNetworksT-13707 (13707) [006] ...1 29480.004105: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19959 NeuralNetworksT-13707 (13707) [006] ...1 29480.004120: tracing_mark_write: E|13707
19960 NeuralNetworksT-13707 (13707) [006] ...1 29480.004121: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19961 NeuralNetworksT-13707 (13707) [006] ...1 29480.004136: tracing_mark_write: E|13707
19962 NeuralNetworksT-13707 (13707) [006] ...1 29480.004137: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19963 NeuralNetworksT-13707 (13707) [006] ...1 29480.004153: tracing_mark_write: E|13707
19964 NeuralNetworksT-13707 (13707) [006] ...1 29480.004153: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19965 NeuralNetworksT-13707 (13707) [006] ...1 29480.004169: tracing_mark_write: E|13707
19966 NeuralNetworksT-13707 (13707) [006] ...1 29480.004170: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19967 NeuralNetworksT-13707 (13707) [006] ...1 29480.004185: tracing_mark_write: E|13707
19968 NeuralNetworksT-13707 (13707) [006] ...1 29480.004186: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19969 NeuralNetworksT-13707 (13707) [006] ...1 29480.004201: tracing_mark_write: E|13707
19970 NeuralNetworksT-13707 (13707) [006] ...1 29480.004202: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19971 NeuralNetworksT-13707 (13707) [006] ...1 29480.004217: tracing_mark_write: E|13707
19972 NeuralNetworksT-13707 (13707) [006] ...1 29480.004218: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19973 NeuralNetworksT-13707 (13707) [006] ...1 29480.004232: tracing_mark_write: E|13707
19974 NeuralNetworksT-13707 (13707) [006] ...1 29480.004233: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19975 NeuralNetworksT-13707 (13707) [006] ...1 29480.004247: tracing_mark_write: E|13707
19976 NeuralNetworksT-13707 (13707) [006] ...1 29480.004249: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19977 NeuralNetworksT-13707 (13707) [006] ...1 29480.004263: tracing_mark_write: E|13707
19978 NeuralNetworksT-13707 (13707) [006] ...1 29480.004264: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19979 NeuralNetworksT-13707 (13707) [006] ...1 29480.004279: tracing_mark_write: E|13707
19980 NeuralNetworksT-13707 (13707) [006] ...1 29480.004280: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19981 NeuralNetworksT-13707 (13707) [006] ...1 29480.004294: tracing_mark_write: E|13707
19982 NeuralNetworksT-13707 (13707) [006] ...1 29480.004295: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19983 NeuralNetworksT-13707 (13707) [006] ...1 29480.004309: tracing_mark_write: E|13707
19984 NeuralNetworksT-13707 (13707) [006] ...1 29480.004310: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19985 NeuralNetworksT-13707 (13707) [006] ...1 29480.004351: tracing_mark_write: E|13707
19986 NeuralNetworksT-13707 (13707) [006] ...1 29480.004352: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19987 NeuralNetworksT-13707 (13707) [006] ...1 29480.004366: tracing_mark_write: E|13707
19988 NeuralNetworksT-13707 (13707) [006] ...1 29480.004367: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19989 NeuralNetworksT-13707 (13707) [006] ...1 29480.004382: tracing_mark_write: E|13707
19990 NeuralNetworksT-13707 (13707) [006] ...1 29480.004383: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19991 NeuralNetworksT-13707 (13707) [006] ...1 29480.004398: tracing_mark_write: E|13707
19992 NeuralNetworksT-13707 (13707) [006] ...1 29480.004399: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19993 NeuralNetworksT-13707 (13707) [006] ...1 29480.004413: tracing_mark_write: E|13707
19994 NeuralNetworksT-13707 (13707) [006] ...1 29480.004414: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19995 NeuralNetworksT-13707 (13707) [006] ...1 29480.004428: tracing_mark_write: E|13707
19996 NeuralNetworksT-13707 (13707) [006] ...1 29480.004429: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19997 NeuralNetworksT-13707 (13707) [006] ...1 29480.004443: tracing_mark_write: E|13707
19998 NeuralNetworksT-13707 (13707) [006] ...1 29480.004444: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
19999 NeuralNetworksT-13707 (13707) [006] ...1 29480.004459: tracing_mark_write: E|13707
20000 NeuralNetworksT-13707 (13707) [006] ...1 29480.004460: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20001 NeuralNetworksT-13707 (13707) [006] ...1 29480.004476: tracing_mark_write: E|13707
20002 NeuralNetworksT-13707 (13707) [006] ...1 29480.004476: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20003 NeuralNetworksT-13707 (13707) [006] ...1 29480.004490: tracing_mark_write: E|13707
20004 NeuralNetworksT-13707 (13707) [006] ...1 29480.004491: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20005 NeuralNetworksT-13707 (13707) [006] ...1 29480.004506: tracing_mark_write: E|13707
20006 NeuralNetworksT-13707 (13707) [006] ...1 29480.004507: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20007 NeuralNetworksT-13707 (13707) [006] ...1 29480.004522: tracing_mark_write: E|13707
20008 NeuralNetworksT-13707 (13707) [006] ...1 29480.004523: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20009 NeuralNetworksT-13707 (13707) [006] ...1 29480.004538: tracing_mark_write: E|13707
20010 NeuralNetworksT-13707 (13707) [006] ...1 29480.004539: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20011 NeuralNetworksT-13707 (13707) [006] ...1 29480.004553: tracing_mark_write: E|13707
20012 NeuralNetworksT-13707 (13707) [006] ...1 29480.004554: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20013 NeuralNetworksT-13707 (13707) [006] ...1 29480.004568: tracing_mark_write: E|13707
20014 NeuralNetworksT-13707 (13707) [006] ...1 29480.004569: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20015 NeuralNetworksT-13707 (13707) [006] ...1 29480.004584: tracing_mark_write: E|13707
20016 NeuralNetworksT-13707 (13707) [006] ...1 29480.004585: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20017 NeuralNetworksT-13707 (13707) [006] ...1 29480.004603: tracing_mark_write: E|13707
20018 NeuralNetworksT-13707 (13707) [006] ...1 29480.004604: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20019          <idle>-0     (-----) [001] ...1 29480.004615: cpu_idle: state=4294967295 cpu_id=1
20020          <idle>-0     (-----) [001] d..1 29480.004622: cpu_idle: state=2 cpu_id=1
20021 NeuralNetworksT-13707 (13707) [006] ...1 29480.004622: tracing_mark_write: E|13707
20022 NeuralNetworksT-13707 (13707) [006] ...1 29480.004624: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20023 NeuralNetworksT-13707 (13707) [006] ...1 29480.004641: tracing_mark_write: E|13707
20024 NeuralNetworksT-13707 (13707) [006] ...1 29480.004642: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
20025 NeuralNetworksT-13707 (13707) [006] ...1 29480.004659: tracing_mark_write: E|13707
20026 NeuralNetworksT-13707 (13707) [006] ...1 29480.004661: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20027 NeuralNetworksT-13707 (13707) [006] ...1 29480.004669: tracing_mark_write: E|13707
20028 NeuralNetworksT-13707 (13707) [006] ...1 29480.004670: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20029 NeuralNetworksT-13707 (13707) [006] ...1 29480.004672: tracing_mark_write: E|13707
20030 NeuralNetworksT-13707 (13707) [006] ...1 29480.004673: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20031 NeuralNetworksT-13707 (13707) [006] ...1 29480.004675: tracing_mark_write: E|13707
20032 NeuralNetworksT-13707 (13707) [006] ...1 29480.004676: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20033 NeuralNetworksT-13707 (13707) [006] ...1 29480.004678: tracing_mark_write: E|13707
20034 NeuralNetworksT-13707 (13707) [006] ...1 29480.004679: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20035 NeuralNetworksT-13707 (13707) [006] ...1 29480.004681: tracing_mark_write: E|13707
20036 NeuralNetworksT-13707 (13707) [006] ...1 29480.004682: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20037 NeuralNetworksT-13707 (13707) [006] ...1 29480.004683: tracing_mark_write: E|13707
20038 NeuralNetworksT-13707 (13707) [006] ...1 29480.004685: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20039 NeuralNetworksT-13707 (13707) [006] ...1 29480.004686: tracing_mark_write: E|13707
20040 NeuralNetworksT-13707 (13707) [006] ...1 29480.004687: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20041 NeuralNetworksT-13707 (13707) [006] ...1 29480.004688: tracing_mark_write: E|13707
20042 NeuralNetworksT-13707 (13707) [006] ...1 29480.004689: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20043 NeuralNetworksT-13707 (13707) [006] ...1 29480.004691: tracing_mark_write: E|13707
20044 NeuralNetworksT-13707 (13707) [006] ...1 29480.004692: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20045 NeuralNetworksT-13707 (13707) [006] ...1 29480.004694: tracing_mark_write: E|13707
20046 NeuralNetworksT-13707 (13707) [006] ...1 29480.004695: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20047 NeuralNetworksT-13707 (13707) [006] ...1 29480.004696: tracing_mark_write: E|13707
20048 NeuralNetworksT-13707 (13707) [006] ...1 29480.004697: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20049 NeuralNetworksT-13707 (13707) [006] ...1 29480.004698: tracing_mark_write: E|13707
20050 NeuralNetworksT-13707 (13707) [006] ...1 29480.004700: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20051 NeuralNetworksT-13707 (13707) [006] ...1 29480.004701: tracing_mark_write: E|13707
20052 NeuralNetworksT-13707 (13707) [006] ...1 29480.004702: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20053 NeuralNetworksT-13707 (13707) [006] ...1 29480.004703: tracing_mark_write: E|13707
20054 NeuralNetworksT-13707 (13707) [006] ...1 29480.004704: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20055 NeuralNetworksT-13707 (13707) [006] ...1 29480.004706: tracing_mark_write: E|13707
20056 NeuralNetworksT-13707 (13707) [006] ...1 29480.004707: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20057 NeuralNetworksT-13707 (13707) [006] ...1 29480.004709: tracing_mark_write: E|13707
20058 NeuralNetworksT-13707 (13707) [006] ...1 29480.004710: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20059 NeuralNetworksT-13707 (13707) [006] ...1 29480.004712: tracing_mark_write: E|13707
20060 NeuralNetworksT-13707 (13707) [006] ...1 29480.004713: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20061 NeuralNetworksT-13707 (13707) [006] ...1 29480.004714: tracing_mark_write: E|13707
20062 NeuralNetworksT-13707 (13707) [006] ...1 29480.004716: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20063 NeuralNetworksT-13707 (13707) [006] ...1 29480.004717: tracing_mark_write: E|13707
20064 NeuralNetworksT-13707 (13707) [006] ...1 29480.004718: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20065 NeuralNetworksT-13707 (13707) [006] ...1 29480.004719: tracing_mark_write: E|13707
20066 NeuralNetworksT-13707 (13707) [006] ...1 29480.004720: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20067 NeuralNetworksT-13707 (13707) [006] ...1 29480.004722: tracing_mark_write: E|13707
20068 NeuralNetworksT-13707 (13707) [006] ...1 29480.004723: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20069 NeuralNetworksT-13707 (13707) [006] ...1 29480.004724: tracing_mark_write: E|13707
20070 NeuralNetworksT-13707 (13707) [006] ...1 29480.004725: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20071 NeuralNetworksT-13707 (13707) [006] ...1 29480.004727: tracing_mark_write: E|13707
20072 NeuralNetworksT-13707 (13707) [006] ...1 29480.004728: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20073 NeuralNetworksT-13707 (13707) [006] ...1 29480.004729: tracing_mark_write: E|13707
20074 NeuralNetworksT-13707 (13707) [006] ...1 29480.004730: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20075 NeuralNetworksT-13707 (13707) [006] ...1 29480.004732: tracing_mark_write: E|13707
20076 NeuralNetworksT-13707 (13707) [006] ...1 29480.004733: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20077 NeuralNetworksT-13707 (13707) [006] ...1 29480.004734: tracing_mark_write: E|13707
20078 NeuralNetworksT-13707 (13707) [006] ...1 29480.004735: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20079 NeuralNetworksT-13707 (13707) [006] ...1 29480.004737: tracing_mark_write: E|13707
20080 NeuralNetworksT-13707 (13707) [006] ...1 29480.004738: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20081 NeuralNetworksT-13707 (13707) [006] ...1 29480.004741: tracing_mark_write: E|13707
20082 NeuralNetworksT-13707 (13707) [006] ...1 29480.004742: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20083 NeuralNetworksT-13707 (13707) [006] ...1 29480.004743: tracing_mark_write: E|13707
20084 NeuralNetworksT-13707 (13707) [006] ...1 29480.004744: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20085 NeuralNetworksT-13707 (13707) [006] ...1 29480.004747: tracing_mark_write: E|13707
20086 NeuralNetworksT-13707 (13707) [006] ...1 29480.004748: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
20087 NeuralNetworksT-13707 (13707) [006] ...1 29480.004749: tracing_mark_write: E|13707
20088 NeuralNetworksT-13707 (13707) [006] ...1 29480.004751: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_identifyInputsAndOutputs
20089 NeuralNetworksT-13707 (13707) [006] ...1 29480.004754: tracing_mark_write: E|13707
20090 NeuralNetworksT-13707 (13707) [006] ...1 29480.004761: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_finish
20091 NeuralNetworksT-13707 (13707) [006] ...1 29480.004942: tracing_mark_write: B|13707|HIDL::IServiceManager::getTransport::client
20092 NeuralNetworksT-13707 (13707) [006] ...1 29480.004944: tracing_mark_write: E|13707
20093 NeuralNetworksT-13707 (13707) [006] .... 29480.004965: binder_transaction: transaction=1693539 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
20094 NeuralNetworksT-13707 (13707) [006] d..4 29480.004975: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=000
20095          <idle>-0     (-----) [002] dnh2 29480.005002: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=002
20096 NeuralNetworksT-13707 (13707) [006] d..2 29480.005006: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20097          <idle>-0     (-----) [002] .n.1 29480.005009: cpu_idle: state=4294967295 cpu_id=2
20098          <idle>-0     (-----) [006] d..1 29480.005014: cpu_idle: state=2 cpu_id=6
20099          <idle>-0     (-----) [002] d..2 29480.005022: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20100 hwservicemanage-568   (  568) [002] .... 29480.005038: binder_transaction_received: transaction=1693539
20101 hwservicemanage-568   (  568) [002] ...1 29480.005108: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
20102 hwservicemanage-568   (  568) [002] d..2 29480.005448: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
20103 hwservicemanage-568   (  568) [002] d..3 29480.005509: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
20104     logd.writer-563   (  555) [000] d..2 29480.005528: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
20105         rcuop/2-29    (   29) [000] d..2 29480.005547: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
20106 hwservicemanage-568   (  568) [002] ...1 29480.005925: tracing_mark_write: E|568
20107 hwservicemanage-568   (  568) [002] .... 29480.005943: binder_transaction: transaction=1693540 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20108 hwservicemanage-568   (  568) [002] d..2 29480.005966: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20109 hwservicemanage-568   (  568) [002] d..2 29480.006048: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20110          <idle>-0     (-----) [002] d..1 29480.006061: cpu_idle: state=0 cpu_id=2
20111          <idle>-0     (-----) [006] dnh2 29480.006615: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20112          <idle>-0     (-----) [006] .n.1 29480.006618: cpu_idle: state=4294967295 cpu_id=6
20113          <idle>-0     (-----) [006] d..2 29480.006623: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20114 NeuralNetworksT-13707 (13707) [006] .... 29480.006626: binder_transaction_received: transaction=1693540
20115 NeuralNetworksT-13707 (13707) [006] ...1 29480.006647: tracing_mark_write: B|13707|HIDL::IServiceManager::get::client
20116 NeuralNetworksT-13707 (13707) [006] ...1 29480.006649: tracing_mark_write: E|13707
20117 NeuralNetworksT-13707 (13707) [006] .... 29480.006657: binder_transaction: transaction=1693541 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x1
20118 NeuralNetworksT-13707 (13707) [006] d..4 29480.006660: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=002
20119 NeuralNetworksT-13707 (13707) [006] d..2 29480.006675: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20120          <idle>-0     (-----) [006] d..1 29480.006678: cpu_idle: state=2 cpu_id=6
20121          <idle>-0     (-----) [002] dnh2 29480.006684: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=002
20122          <idle>-0     (-----) [002] .n.1 29480.006693: cpu_idle: state=4294967295 cpu_id=2
20123          <idle>-0     (-----) [002] d..2 29480.006702: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20124 hwservicemanage-568   (  568) [002] .... 29480.006708: binder_transaction_received: transaction=1693541
20125 hwservicemanage-568   (  568) [002] ...1 29480.006733: tracing_mark_write: B|568|HIDL::IServiceManager::get::server
20126 hwservicemanage-568   (  568) [002] ...1 29480.006991: tracing_mark_write: E|568
20127 hwservicemanage-568   (  568) [002] .... 29480.007004: binder_transaction: transaction=1693542 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20128 hwservicemanage-568   (  568) [002] d..2 29480.007023: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20129          <idle>-0     (-----) [003] ...1 29480.007059: cpu_idle: state=4294967295 cpu_id=3
20130          <idle>-0     (-----) [003] d..1 29480.007065: cpu_idle: state=2 cpu_id=3
20131 hwservicemanage-568   (  568) [002] d.s1 29480.007088: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
20132 hwservicemanage-568   (  568) [002] d.s2 29480.007138: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20133     logd.writer-563   (  555) [000] d..2 29480.007154: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
20134     rcu_preempt-7     (    7) [000] d..2 29480.007172: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
20135 hwservicemanage-568   (  568) [002] d..2 29480.007193: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20136          <idle>-0     (-----) [002] d..1 29480.007214: cpu_idle: state=0 cpu_id=2
20137     rcu_preempt-7     (    7) [000] d..3 29480.007223: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
20138          <idle>-0     (-----) [002] .n.1 29480.007230: cpu_idle: state=4294967295 cpu_id=2
20139     rcu_preempt-7     (    7) [000] d..2 29480.007243: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
20140          <idle>-0     (-----) [002] d..2 29480.007245: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
20141         rcuop/6-61    (   61) [002] d..2 29480.007273: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20142          <idle>-0     (-----) [002] d..1 29480.007285: cpu_idle: state=2 cpu_id=2
20143          <idle>-0     (-----) [006] dnh2 29480.007660: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20144          <idle>-0     (-----) [006] .n.1 29480.007663: cpu_idle: state=4294967295 cpu_id=6
20145          <idle>-0     (-----) [006] d..2 29480.007667: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20146 NeuralNetworksT-13707 (13707) [006] .... 29480.007669: binder_transaction_received: transaction=1693542
20147 NeuralNetworksT-13707 (13707) [006] ...1 29480.007693: tracing_mark_write: B|13707|HIDL::IBase::interfaceChain::client
20148 NeuralNetworksT-13707 (13707) [006] ...1 29480.007695: tracing_mark_write: E|13707
20149 NeuralNetworksT-13707 (13707) [006] .... 29480.007705: binder_transaction: transaction=1693544 dest_node=729 dest_proc=753 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
20150 NeuralNetworksT-13707 (13707) [006] d..4 29480.007709: sched_waking: comm=allocator@1.0-s pid=753 prio=120 target_cpu=000
20151 NeuralNetworksT-13707 (13707) [006] dn.5 29480.007720: sched_wakeup: comm=allocator@1.0-s pid=753 prio=120 target_cpu=006
20152 NeuralNetworksT-13707 (13707) [006] dnh5 29480.007742: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
20153 NeuralNetworksT-13707 (13707) [006] dnh6 29480.007749: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
20154 NeuralNetworksT-13707 (13707) [006] dnh5 29480.007750: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
20155 NeuralNetworksT-13707 (13707) [006] d..2 29480.007758: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=allocator@1.0-s next_pid=753 next_prio=120
20156 allocator@1.0-s-753   (  753) [006] .... 29480.007762: binder_transaction_received: transaction=1693544
20157 allocator@1.0-s-753   (  753) [006] ...1 29480.007787: tracing_mark_write: B|753|HIDL::IBase::interfaceChain::server
20158 allocator@1.0-s-753   (  753) [006] ...1 29480.007805: tracing_mark_write: E|753
20159 allocator@1.0-s-753   (  753) [006] .... 29480.007811: binder_transaction: transaction=1693545 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20160 allocator@1.0-s-753   (  753) [006] d..2 29480.007828: sched_switch: prev_comm=allocator@1.0-s prev_pid=753 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20161 NeuralNetworksT-13707 (13707) [006] .... 29480.007831: binder_transaction_received: transaction=1693545
20162 NeuralNetworksT-13707 (13707) [006] ...1 29480.007863: tracing_mark_write: B|13707|HIDL::IAllocator::allocate::client
20163 NeuralNetworksT-13707 (13707) [006] ...1 29480.007865: tracing_mark_write: E|13707
20164 NeuralNetworksT-13707 (13707) [006] .... 29480.007870: binder_transaction: transaction=1693546 dest_node=729 dest_proc=753 dest_thread=0 reply=0 flags=0x10 code=0x1
20165 NeuralNetworksT-13707 (13707) [006] d..4 29480.007872: sched_waking: comm=allocator@1.0-s pid=753 prio=120 target_cpu=006
20166 NeuralNetworksT-13707 (13707) [006] dn.5 29480.007875: sched_wakeup: comm=allocator@1.0-s pid=753 prio=120 target_cpu=006
20167 NeuralNetworksT-13707 (13707) [006] d..2 29480.007878: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=allocator@1.0-s next_pid=753 next_prio=120
20168 allocator@1.0-s-753   (  753) [006] .... 29480.007880: binder_transaction_received: transaction=1693546
20169 allocator@1.0-s-753   (  753) [006] ...2 29480.007885: tracing_mark_write: B|753|HIDL::IAllocator::allocate::server
20170          <idle>-0     (-----) [002] dnh2 29480.007891: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
20171          <idle>-0     (-----) [002] .n.1 29480.007901: cpu_idle: state=4294967295 cpu_id=2
20172          <idle>-0     (-----) [005] .n.1 29480.007904: cpu_idle: state=4294967295 cpu_id=5
20173          <idle>-0     (-----) [005] d..2 29480.007911: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
20174          <idle>-0     (-----) [002] d..2 29480.007915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20175         sugov:4-560   (  560) [005] d..2 29480.007927: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20176 NeuralNetworksT-13707 (13707) [005] d..2 29480.007935: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
20177          <idle>-0     (-----) [005] d..1 29480.007939: cpu_idle: state=2 cpu_id=5
20178         sugov:0-559   (  559) [002] d..2 29480.007947: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20179          <idle>-0     (-----) [002] d..1 29480.007964: cpu_idle: state=0 cpu_id=2
20180 allocator@1.0-s-753   (  753) [006] ...1 29480.008014: tracing_mark_write: E|753
20181 allocator@1.0-s-753   (  753) [006] .... 29480.008017: binder_transaction: transaction=1693547 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20182 allocator@1.0-s-753   (  753) [006] d..2 29480.008038: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=005
20183 allocator@1.0-s-753   (  753) [006] d..3 29480.008045: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20184 allocator@1.0-s-753   (  753) [006] d..2 29480.008055: sched_switch: prev_comm=allocator@1.0-s prev_pid=753 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20185 NeuralNetworksT-13707 (13707) [006] .... 29480.008057: binder_transaction_received: transaction=1693547
20186 NeuralNetworksT-13707 (13707) [006] ...1 29480.008078: tracing_mark_write: B|13707|HIDL::IServiceManager::getTransport::client
20187 NeuralNetworksT-13707 (13707) [006] ...1 29480.008080: tracing_mark_write: E|13707
20188 NeuralNetworksT-13707 (13707) [006] .... 29480.008085: binder_transaction: transaction=1693548 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
20189 NeuralNetworksT-13707 (13707) [006] d..4 29480.008087: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=002
20190 NeuralNetworksT-13707 (13707) [006] d..2 29480.008098: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20191          <idle>-0     (-----) [006] d..1 29480.008102: cpu_idle: state=2 cpu_id=6
20192          <idle>-0     (-----) [002] dnh2 29480.008108: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=002
20193          <idle>-0     (-----) [002] .n.1 29480.008115: cpu_idle: state=4294967295 cpu_id=2
20194          <idle>-0     (-----) [002] d..2 29480.008127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20195 hwservicemanage-568   (  568) [002] .... 29480.008135: binder_transaction_received: transaction=1693548
20196 hwservicemanage-568   (  568) [002] ...1 29480.008165: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
20197 hwservicemanage-568   (  568) [002] ...1 29480.008668: tracing_mark_write: E|568
20198 hwservicemanage-568   (  568) [002] .... 29480.008682: binder_transaction: transaction=1693549 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20199 hwservicemanage-568   (  568) [002] d..2 29480.008690: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20200 hwservicemanage-568   (  568) [002] d..2 29480.008759: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20201          <idle>-0     (-----) [002] d..1 29480.008778: cpu_idle: state=0 cpu_id=2
20202          <idle>-0     (-----) [006] dnh2 29480.009339: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20203          <idle>-0     (-----) [006] .n.1 29480.009343: cpu_idle: state=4294967295 cpu_id=6
20204          <idle>-0     (-----) [006] d..2 29480.009348: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20205 NeuralNetworksT-13707 (13707) [006] .... 29480.009352: binder_transaction_received: transaction=1693549
20206          <idle>-0     (-----) [002] ...1 29480.010129: cpu_idle: state=4294967295 cpu_id=2
20207          <idle>-0     (-----) [002] d..1 29480.010135: cpu_idle: state=2 cpu_id=2
20208     logd.writer-563   (  555) [000] d.s2 29480.010430: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20209     logd.writer-563   (  555) [000] d.s3 29480.010479: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20210     logd.writer-563   (  555) [000] dns1 29480.013775: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20211     logd.writer-563   (  555) [000] dns2 29480.013808: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20212     logd.writer-563   (  555) [000] d..2 29480.013826: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
20213     rcu_preempt-7     (    7) [000] d..2 29480.013838: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
20214     rcu_preempt-7     (    7) [000] d..3 29480.013859: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
20215     rcu_preempt-7     (    7) [000] d..2 29480.013863: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
20216     rcu_preempt-7     (    7) [000] d..3 29480.013909: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
20217     rcu_preempt-7     (    7) [000] d..2 29480.013934: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
20218         rcuop/2-29    (   29) [000] d..2 29480.013958: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20219 NeuralNetworksT-13707 (13707) [006] ...1 29480.014052: tracing_mark_write: B|13707|HIDL::IServiceManager::registerPassthroughClient::client
20220          <idle>-0     (-----) [001] .n.1 29480.014054: cpu_idle: state=4294967295 cpu_id=1
20221 NeuralNetworksT-13707 (13707) [006] ...1 29480.014054: tracing_mark_write: E|13707
20222 NeuralNetworksT-13707 (13707) [006] .... 29480.014064: binder_transaction: transaction=1693550 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x8
20223 NeuralNetworksT-13707 (13707) [006] d..4 29480.014066: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=002
20224          <idle>-0     (-----) [001] d..2 29480.014079: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
20225 NeuralNetworksT-13707 (13707) [006] d..2 29480.014099: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20226          <idle>-0     (-----) [006] d..1 29480.014105: cpu_idle: state=2 cpu_id=6
20227         rcuop/0-10    (   10) [001] d..2 29480.014117: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20228          <idle>-0     (-----) [001] dnh3 29480.014131: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=001
20229          <idle>-0     (-----) [001] d..2 29480.014144: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20230 hwservicemanage-568   (  568) [001] .... 29480.014154: binder_transaction_received: transaction=1693550
20231 hwservicemanage-568   (  568) [001] ...1 29480.014190: tracing_mark_write: B|568|HIDL::IServiceManager::registerPassthroughClient::server
20232  kworker/u16:10-23868 (23868) [000] d..2 29480.014203: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=563 next_prio=130
20233          <idle>-0     (-----) [003] d.s3 29480.014382: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20234          <idle>-0     (-----) [003] d.s4 29480.014413: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20235          <idle>-0     (-----) [003] dns4 29480.014421: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20236          <idle>-0     (-----) [003] .n.1 29480.014431: cpu_idle: state=4294967295 cpu_id=3
20237          <idle>-0     (-----) [003] d..2 29480.014447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20238 hwservicemanage-568   (  568) [001] ...1 29480.014452: tracing_mark_write: E|568
20239 hwservicemanage-568   (  568) [001] .... 29480.014469: binder_transaction: transaction=1693551 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20240 hwservicemanage-568   (  568) [001] d..2 29480.014479: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20241 hwservicemanage-568   (  568) [001] d..2 29480.014555: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20242          <idle>-0     (-----) [001] d..1 29480.014577: cpu_idle: state=0 cpu_id=1
20243  kworker/u16:10-23868 (23868) [003] d..2 29480.014650: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
20244          <idle>-0     (-----) [003] d.s4 29480.014692: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20245          <idle>-0     (-----) [003] d.s5 29480.014708: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20246          <idle>-0     (-----) [003] dns5 29480.014714: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20247          <idle>-0     (-----) [003] d..2 29480.014728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20248  kworker/u16:10-23868 (23868) [003] .... 29480.014774: clk_set_rate: l3_cluster1_vote_clk 1305600000
20249  kworker/u16:10-23868 (23868) [003] .... 29480.014783: clk_set_rate: l3_clk 1305600000
20250  kworker/u16:10-23868 (23868) [003] .... 29480.015075: clk_set_rate: l3_cluster0_vote_clk 480000000
20251  kworker/u16:10-23868 (23868) [003] d..2 29480.015107: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20252          <idle>-0     (-----) [006] dnh2 29480.015130: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20253          <idle>-0     (-----) [003] d..1 29480.015130: cpu_idle: state=0 cpu_id=3
20254          <idle>-0     (-----) [006] .n.1 29480.015133: cpu_idle: state=4294967295 cpu_id=6
20255          <idle>-0     (-----) [006] d..2 29480.015138: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20256 NeuralNetworksT-13707 (13707) [006] .... 29480.015141: binder_transaction_received: transaction=1693551
20257          <idle>-0     (-----) [001] ...1 29480.015712: cpu_idle: state=4294967295 cpu_id=1
20258          <idle>-0     (-----) [001] d..1 29480.015719: cpu_idle: state=2 cpu_id=1
20259 NeuralNetworksT-13707 (13707) [006] d.H2 29480.017125: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
20260 NeuralNetworksT-13707 (13707) [006] d.H3 29480.017138: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
20261 NeuralNetworksT-13707 (13707) [006] d.H2 29480.017139: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
20262          <idle>-0     (-----) [002] dnh2 29480.017324: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
20263          <idle>-0     (-----) [005] .n.1 29480.017330: cpu_idle: state=4294967295 cpu_id=5
20264          <idle>-0     (-----) [002] .n.1 29480.017335: cpu_idle: state=4294967295 cpu_id=2
20265          <idle>-0     (-----) [005] d..2 29480.017339: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
20266          <idle>-0     (-----) [002] d..2 29480.017353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20267         sugov:4-560   (  560) [005] d..2 29480.017356: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
20268          <idle>-0     (-----) [005] d..1 29480.017361: cpu_idle: state=2 cpu_id=5
20269         sugov:0-559   (  559) [002] .... 29480.017390: clk_set_rate: pwrcl_clk 1228800000
20270         sugov:0-559   (  559) [002] .... 29480.017407: clk_set_rate: cpu3_pwrcl_clk 652800000
20271         sugov:0-559   (  559) [002] .... 29480.017417: clk_set_rate: cpu2_pwrcl_clk 652800000
20272         sugov:0-559   (  559) [002] .... 29480.017425: clk_set_rate: cpu1_pwrcl_clk 652800000
20273         sugov:0-559   (  559) [002] .... 29480.017433: clk_set_rate: cpu0_pwrcl_clk 1228800000
20274         sugov:0-559   (  559) [002] .... 29480.017445: cpu_frequency: state=1228800 cpu_id=0
20275         sugov:0-559   (  559) [002] .... 29480.017472: cpu_frequency: state=1228800 cpu_id=1
20276         sugov:0-559   (  559) [002] .... 29480.017478: cpu_frequency: state=1228800 cpu_id=2
20277         sugov:0-559   (  559) [002] .... 29480.017484: cpu_frequency: state=1228800 cpu_id=3
20278         sugov:0-559   (  559) [002] d..2 29480.017508: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20279          <idle>-0     (-----) [002] d..1 29480.017520: cpu_idle: state=0 cpu_id=2
20280     logd.writer-563   (  555) [000] d..2 29480.018022: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20281          <idle>-0     (-----) [000] d..1 29480.018036: cpu_idle: state=0 cpu_id=0
20282          <idle>-0     (-----) [002] ...1 29480.018866: cpu_idle: state=4294967295 cpu_id=2
20283          <idle>-0     (-----) [002] d..1 29480.018870: cpu_idle: state=2 cpu_id=2
20284 NeuralNetworksT-13707 (13707) [006] ...1 29480.019275: tracing_mark_write: B|13707|[NN_LU_PU]validateModelVersioned
20285 NeuralNetworksT-13707 (13707) [006] ...1 29480.019753: tracing_mark_write: E|13707
20286 NeuralNetworksT-13707 (13707) [006] ...1 29480.019805: tracing_mark_write: E|13707
20287 NeuralNetworksT-13707 (13707) [006] ...1 29480.019807: tracing_mark_write: B|13707|[SW][NN_LA_PC]createAndCompileModel
20288 NeuralNetworksT-13707 (13707) [006] ...1 29480.019811: tracing_mark_write: B|13707|[NN_LR_PC]ANeuralNetworksCompilation_create
20289 NeuralNetworksT-13707 (13707) [006] d..2 29480.019858: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20290          <idle>-0     (-----) [000] dnh2 29480.019885: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20291          <idle>-0     (-----) [000] .n.1 29480.019891: cpu_idle: state=4294967295 cpu_id=0
20292 NeuralNetworksT-13707 (13707) [006] ...1 29480.019896: tracing_mark_write: B|13707|HIDL::IServiceManager::listByInterface::client
20293 NeuralNetworksT-13707 (13707) [006] ...1 29480.019898: tracing_mark_write: E|13707
20294          <idle>-0     (-----) [000] d..2 29480.019899: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
20295 NeuralNetworksT-13707 (13707) [006] .... 29480.019925: binder_transaction: transaction=1693552 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x5
20296 NeuralNetworksT-13707 (13707) [006] d..4 29480.019932: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=001
20297     logd.writer-563   (  555) [000] d..2 29480.019962: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20298          <idle>-0     (-----) [003] dnh2 29480.019963: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=003
20299 NeuralNetworksT-13707 (13707) [006] d..2 29480.019964: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20300          <idle>-0     (-----) [000] d..1 29480.019969: cpu_idle: state=0 cpu_id=0
20301          <idle>-0     (-----) [003] .n.1 29480.019969: cpu_idle: state=4294967295 cpu_id=3
20302          <idle>-0     (-----) [006] d..1 29480.019974: cpu_idle: state=2 cpu_id=6
20303          <idle>-0     (-----) [003] d..2 29480.019978: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20304          <idle>-0     (-----) [005] ...1 29480.019981: cpu_idle: state=4294967295 cpu_id=5
20305          <idle>-0     (-----) [005] d..1 29480.019985: cpu_idle: state=2 cpu_id=5
20306 hwservicemanage-568   (  568) [003] .... 29480.019989: binder_transaction_received: transaction=1693552
20307 hwservicemanage-568   (  568) [003] ...1 29480.020044: tracing_mark_write: B|568|HIDL::IServiceManager::listByInterface::server
20308          <idle>-0     (-----) [000] d.s2 29480.020418: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20309 hwservicemanage-568   (  568) [003] ...1 29480.020431: tracing_mark_write: E|568
20310          <idle>-0     (-----) [000] dns3 29480.020435: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20311 hwservicemanage-568   (  568) [003] .... 29480.020444: binder_transaction: transaction=1693553 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20312          <idle>-0     (-----) [000] .n.1 29480.020448: cpu_idle: state=4294967295 cpu_id=0
20313 hwservicemanage-568   (  568) [003] d..2 29480.020453: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20314          <idle>-0     (-----) [000] d..2 29480.020455: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
20315     rcu_preempt-7     (    7) [000] d..2 29480.020486: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20316          <idle>-0     (-----) [000] d..1 29480.020495: cpu_idle: state=2 cpu_id=0
20317 hwservicemanage-568   (  568) [003] d..2 29480.020510: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20318          <idle>-0     (-----) [003] d..1 29480.020523: cpu_idle: state=0 cpu_id=3
20319          <idle>-0     (-----) [006] dnh2 29480.021110: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20320          <idle>-0     (-----) [006] .n.1 29480.021113: cpu_idle: state=4294967295 cpu_id=6
20321          <idle>-0     (-----) [006] d..2 29480.021118: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20322 NeuralNetworksT-13707 (13707) [006] .... 29480.021122: binder_transaction_received: transaction=1693553
20323 NeuralNetworksT-13707 (13707) [006] d..2 29480.021147: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20324 NeuralNetworksT-13707 (13707) [006] ...1 29480.021171: tracing_mark_write: B|13707|HIDL::IServiceManager::getTransport::client
20325 NeuralNetworksT-13707 (13707) [006] ...1 29480.021172: tracing_mark_write: E|13707
20326 NeuralNetworksT-13707 (13707) [006] .... 29480.021181: binder_transaction: transaction=1693554 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
20327 NeuralNetworksT-13707 (13707) [006] d..4 29480.021184: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=003
20328 NeuralNetworksT-13707 (13707) [006] d..2 29480.021196: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20329          <idle>-0     (-----) [006] d..1 29480.021199: cpu_idle: state=2 cpu_id=6
20330          <idle>-0     (-----) [003] dnh2 29480.021200: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=003
20331          <idle>-0     (-----) [003] .n.1 29480.021206: cpu_idle: state=4294967295 cpu_id=3
20332          <idle>-0     (-----) [003] d..2 29480.021214: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20333 hwservicemanage-568   (  568) [003] .... 29480.021218: binder_transaction_received: transaction=1693554
20334 hwservicemanage-568   (  568) [003] ...1 29480.021233: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
20335          <idle>-0     (-----) [000] dnh2 29480.021269: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20336          <idle>-0     (-----) [000] .n.1 29480.021275: cpu_idle: state=4294967295 cpu_id=0
20337          <idle>-0     (-----) [000] d..2 29480.021285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
20338     logd.writer-563   (  555) [000] d..2 29480.021344: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20339          <idle>-0     (-----) [000] d..1 29480.021353: cpu_idle: state=0 cpu_id=0
20340 hwservicemanage-568   (  568) [003] ...1 29480.021500: tracing_mark_write: E|568
20341 hwservicemanage-568   (  568) [003] .... 29480.021509: binder_transaction: transaction=1693555 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20342 hwservicemanage-568   (  568) [003] d..2 29480.021513: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20343 hwservicemanage-568   (  568) [003] d..2 29480.021559: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20344          <idle>-0     (-----) [003] d..1 29480.021574: cpu_idle: state=0 cpu_id=3
20345          <idle>-0     (-----) [006] dnh2 29480.022160: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20346          <idle>-0     (-----) [006] .n.1 29480.022163: cpu_idle: state=4294967295 cpu_id=6
20347          <idle>-0     (-----) [006] d..2 29480.022168: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20348 NeuralNetworksT-13707 (13707) [006] .... 29480.022171: binder_transaction_received: transaction=1693555
20349 NeuralNetworksT-13707 (13707) [006] ...1 29480.022184: tracing_mark_write: B|13707|HIDL::IServiceManager::get::client
20350 NeuralNetworksT-13707 (13707) [006] ...1 29480.022185: tracing_mark_write: E|13707
20351 NeuralNetworksT-13707 (13707) [006] .... 29480.022193: binder_transaction: transaction=1693556 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x1
20352 NeuralNetworksT-13707 (13707) [006] d..4 29480.022195: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=003
20353 NeuralNetworksT-13707 (13707) [006] d..2 29480.022216: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20354          <idle>-0     (-----) [000] dnh2 29480.022220: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=000
20355          <idle>-0     (-----) [006] d..1 29480.022220: cpu_idle: state=2 cpu_id=6
20356          <idle>-0     (-----) [000] .n.1 29480.022225: cpu_idle: state=4294967295 cpu_id=0
20357          <idle>-0     (-----) [000] d..2 29480.022233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20358 hwservicemanage-568   (  568) [000] .... 29480.022239: binder_transaction_received: transaction=1693556
20359 hwservicemanage-568   (  568) [000] ...1 29480.022262: tracing_mark_write: B|568|HIDL::IServiceManager::get::server
20360 hwservicemanage-568   (  568) [000] ...1 29480.022438: tracing_mark_write: E|568
20361 hwservicemanage-568   (  568) [000] .... 29480.022447: binder_transaction: transaction=1693557 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20362 hwservicemanage-568   (  568) [000] d..2 29480.022465: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20363 hwservicemanage-568   (  568) [000] d..2 29480.022511: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20364          <idle>-0     (-----) [000] d..1 29480.022522: cpu_idle: state=0 cpu_id=0
20365          <idle>-0     (-----) [006] dnh2 29480.023115: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20366          <idle>-0     (-----) [006] .n.1 29480.023118: cpu_idle: state=4294967295 cpu_id=6
20367          <idle>-0     (-----) [006] d..2 29480.023122: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20368 NeuralNetworksT-13707 (13707) [006] .... 29480.023125: binder_transaction_received: transaction=1693557
20369 NeuralNetworksT-13707 (13707) [006] ...1 29480.023155: tracing_mark_write: B|13707|HIDL::IBase::interfaceChain::client
20370 NeuralNetworksT-13707 (13707) [006] ...1 29480.023157: tracing_mark_write: E|13707
20371 NeuralNetworksT-13707 (13707) [006] .... 29480.023188: binder_transaction: transaction=1693559 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
20372 NeuralNetworksT-13707 (13707) [006] d..4 29480.023194: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=002
20373 NeuralNetworksT-13707 (13707) [006] dn.5 29480.023208: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20374 NeuralNetworksT-13707 (13707) [006] dnh5 29480.023236: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
20375 NeuralNetworksT-13707 (13707) [006] d..2 29480.023248: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20376  HwBinder:771_4-20182 (  771) [006] .... 29480.023252: binder_transaction_received: transaction=1693559
20377  HwBinder:771_4-20182 (  771) [006] ...1 29480.023283: tracing_mark_write: B|771|HIDL::IBase::interfaceChain::server
20378  HwBinder:771_4-20182 (  771) [006] ...1 29480.023302: tracing_mark_write: E|771
20379  HwBinder:771_4-20182 (  771) [006] .... 29480.023310: binder_transaction: transaction=1693560 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20380  HwBinder:771_4-20182 (  771) [006] d..2 29480.023326: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20381 NeuralNetworksT-13707 (13707) [006] .... 29480.023327: binder_transaction_received: transaction=1693560
20382 NeuralNetworksT-13707 (13707) [006] ...1 29480.023350: tracing_mark_write: B|13707|HIDL::IBase::interfaceChain::client
20383 NeuralNetworksT-13707 (13707) [006] ...1 29480.023352: tracing_mark_write: E|13707
20384 NeuralNetworksT-13707 (13707) [006] .... 29480.023356: binder_transaction: transaction=1693561 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
20385 NeuralNetworksT-13707 (13707) [006] d..4 29480.023357: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20386 NeuralNetworksT-13707 (13707) [006] dn.5 29480.023361: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20387          <idle>-0     (-----) [002] dnh2 29480.023361: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
20388 NeuralNetworksT-13707 (13707) [006] d..2 29480.023363: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20389  HwBinder:771_4-20182 (  771) [006] .... 29480.023364: binder_transaction_received: transaction=1693561
20390          <idle>-0     (-----) [002] .n.1 29480.023368: cpu_idle: state=4294967295 cpu_id=2
20391  HwBinder:771_4-20182 (  771) [006] ...1 29480.023369: tracing_mark_write: B|771|HIDL::IBase::interfaceChain::server
20392  HwBinder:771_4-20182 (  771) [006] ...1 29480.023373: tracing_mark_write: E|771
20393  HwBinder:771_4-20182 (  771) [006] .... 29480.023376: binder_transaction: transaction=1693562 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20394          <idle>-0     (-----) [002] d..2 29480.023377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20395  HwBinder:771_4-20182 (  771) [006] d..2 29480.023386: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20396 NeuralNetworksT-13707 (13707) [006] .... 29480.023387: binder_transaction_received: transaction=1693562
20397         sugov:0-559   (  559) [002] d..2 29480.023398: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20398 NeuralNetworksT-13707 (13707) [006] ...1 29480.023405: tracing_mark_write: B|13707|[NN_LI_PI]getCapabilities_1_1
20399          <idle>-0     (-----) [002] d..1 29480.023408: cpu_idle: state=0 cpu_id=2
20400 NeuralNetworksT-13707 (13707) [006] ...1 29480.023409: tracing_mark_write: B|13707|HIDL::IDevice::getCapabilities_1_1::client
20401 NeuralNetworksT-13707 (13707) [006] ...1 29480.023410: tracing_mark_write: E|13707
20402 NeuralNetworksT-13707 (13707) [006] .... 29480.023415: binder_transaction: transaction=1693563 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0x5
20403 NeuralNetworksT-13707 (13707) [006] d..4 29480.023416: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20404 NeuralNetworksT-13707 (13707) [006] dn.5 29480.023419: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20405 NeuralNetworksT-13707 (13707) [006] d..2 29480.023422: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20406  HwBinder:771_4-20182 (  771) [006] .... 29480.023423: binder_transaction_received: transaction=1693563
20407  HwBinder:771_4-20182 (  771) [006] ...1 29480.023430: tracing_mark_write: B|771|HIDL::IDevice::getCapabilities_1_1::server
20408  HwBinder:771_4-20182 (  771) [006] d..2 29480.023488: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20409  HwBinder:771_4-20182 (  771) [006] d..2 29480.023502: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20410 NeuralNetworksT-13707 (13707) [006] d..2 29480.023508: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20411          <idle>-0     (-----) [000] dnh2 29480.023510: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20412          <idle>-0     (-----) [006] d..1 29480.023512: cpu_idle: state=2 cpu_id=6
20413          <idle>-0     (-----) [000] .n.1 29480.023515: cpu_idle: state=4294967295 cpu_id=0
20414          <idle>-0     (-----) [000] d..2 29480.023524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20415 cdsp_smem_glink-88    (   88) [000] d..2 29480.023563: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20416          <idle>-0     (-----) [000] d..1 29480.023569: cpu_idle: state=0 cpu_id=0
20417          <idle>-0     (-----) [002] d.h4 29480.024007: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=000
20418          <idle>-0     (-----) [002] dnh5 29480.024034: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20419          <idle>-0     (-----) [002] .n.1 29480.024043: cpu_idle: state=4294967295 cpu_id=2
20420          <idle>-0     (-----) [002] d..2 29480.024051: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20421 smem_native_cds-87    (   87) [002] d..2 29480.024089: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20422          <idle>-0     (-----) [002] d..2 29480.024091: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
20423          <idle>-0     (-----) [002] dn.3 29480.024101: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
20424          <idle>-0     (-----) [002] d..2 29480.024107: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
20425     ksoftirqd/2-26    (   26) [002] d.s2 29480.024118: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20426     ksoftirqd/2-26    (   26) [002] d.s3 29480.024144: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
20427     ksoftirqd/2-26    (   26) [002] d..2 29480.024156: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20428  kworker/u16:10-23868 (23868) [002] .... 29480.024187: clk_set_rate: l3_cluster0_vote_clk 403200000
20429  kworker/u16:10-23868 (23868) [002] .... 29480.024213: clk_set_rate: l3_cluster1_vote_clk 1209600000
20430  kworker/u16:10-23868 (23868) [002] .... 29480.024217: clk_set_rate: l3_clk 1209600000
20431  kworker/u16:10-23868 (23868) [002] d.h3 29480.024244: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20432  kworker/u16:10-23868 (23868) [002] d.h4 29480.024268: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20433          <idle>-0     (-----) [000] .n.1 29480.024273: cpu_idle: state=4294967295 cpu_id=0
20434          <idle>-0     (-----) [000] d..2 29480.024285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20435  HwBinder:771_4-20182 (  771) [000] ...1 29480.024318: tracing_mark_write: E|771
20436  HwBinder:771_4-20182 (  771) [000] .... 29480.024329: binder_transaction: transaction=1693564 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20437  kworker/u16:10-23868 (23868) [002] d.h2 29480.024330: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
20438  HwBinder:771_4-20182 (  771) [000] d..2 29480.024334: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20439  kworker/u16:10-23868 (23868) [002] d.h3 29480.024347: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20440          <idle>-0     (-----) [003] .n.1 29480.024353: cpu_idle: state=4294967295 cpu_id=3
20441          <idle>-0     (-----) [003] d..2 29480.024362: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20442  HwBinder:771_4-20182 (  771) [000] d..2 29480.024379: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20443         sugov:0-559   (  559) [003] d..2 29480.024380: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20444          <idle>-0     (-----) [000] d..1 29480.024386: cpu_idle: state=0 cpu_id=0
20445          <idle>-0     (-----) [003] d..1 29480.024388: cpu_idle: state=0 cpu_id=3
20446  kworker/u16:10-23868 (23868) [002] d..2 29480.024531: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20447          <idle>-0     (-----) [002] d..1 29480.024543: cpu_idle: state=0 cpu_id=2
20448          <idle>-0     (-----) [003] d.s3 29480.024567: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
20449          <idle>-0     (-----) [003] d.s4 29480.024577: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20450          <idle>-0     (-----) [003] d.s4 29480.024585: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
20451          <idle>-0     (-----) [002] .n.1 29480.024590: cpu_idle: state=4294967295 cpu_id=2
20452          <idle>-0     (-----) [003] ...1 29480.024594: cpu_idle: state=4294967295 cpu_id=3
20453          <idle>-0     (-----) [003] d..1 29480.024597: cpu_idle: state=0 cpu_id=3
20454          <idle>-0     (-----) [002] d..2 29480.024599: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20455  kworker/u16:10-23868 (23868) [002] d..2 29480.024640: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20456          <idle>-0     (-----) [002] d..1 29480.024648: cpu_idle: state=2 cpu_id=2
20457          <idle>-0     (-----) [006] dnh2 29480.024981: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20458          <idle>-0     (-----) [006] .n.1 29480.024984: cpu_idle: state=4294967295 cpu_id=6
20459          <idle>-0     (-----) [006] d..2 29480.024988: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20460 NeuralNetworksT-13707 (13707) [006] .... 29480.024991: binder_transaction_received: transaction=1693564
20461 NeuralNetworksT-13707 (13707) [006] ...1 29480.025000: tracing_mark_write: E|13707
20462 NeuralNetworksT-13707 (13707) [006] d..2 29480.025031: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20463          <idle>-0     (-----) [000] dnh2 29480.025049: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20464          <idle>-0     (-----) [000] .n.1 29480.025053: cpu_idle: state=4294967295 cpu_id=0
20465          <idle>-0     (-----) [000] d..2 29480.025060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
20466 NeuralNetworksT-13707 (13707) [006] ...1 29480.025071: tracing_mark_write: B|13707|HIDL::IServiceManager::getTransport::client
20467 NeuralNetworksT-13707 (13707) [006] ...1 29480.025072: tracing_mark_write: E|13707
20468 NeuralNetworksT-13707 (13707) [006] .... 29480.025079: binder_transaction: transaction=1693565 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x3
20469 NeuralNetworksT-13707 (13707) [006] d..4 29480.025081: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=000
20470 NeuralNetworksT-13707 (13707) [006] d..2 29480.025097: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20471          <idle>-0     (-----) [003] dnh2 29480.025099: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=003
20472          <idle>-0     (-----) [006] d..1 29480.025101: cpu_idle: state=0 cpu_id=6
20473          <idle>-0     (-----) [003] .n.1 29480.025103: cpu_idle: state=4294967295 cpu_id=3
20474          <idle>-0     (-----) [003] d..2 29480.025110: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20475 hwservicemanage-568   (  568) [003] .... 29480.025115: binder_transaction_received: transaction=1693565
20476 hwservicemanage-568   (  568) [003] ...1 29480.025132: tracing_mark_write: B|568|HIDL::IServiceManager::getTransport::server
20477     logd.writer-563   (  555) [000] d..2 29480.025153: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20478          <idle>-0     (-----) [000] d..1 29480.025161: cpu_idle: state=0 cpu_id=0
20479 hwservicemanage-568   (  568) [003] ...1 29480.025373: tracing_mark_write: E|568
20480 hwservicemanage-568   (  568) [003] .... 29480.025382: binder_transaction: transaction=1693566 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20481 hwservicemanage-568   (  568) [003] d..2 29480.025387: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20482          <idle>-0     (-----) [006] dnh2 29480.025406: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20483          <idle>-0     (-----) [006] .n.1 29480.025409: cpu_idle: state=4294967295 cpu_id=6
20484          <idle>-0     (-----) [006] d..2 29480.025412: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20485 NeuralNetworksT-13707 (13707) [006] .... 29480.025414: binder_transaction_received: transaction=1693566
20486 NeuralNetworksT-13707 (13707) [006] ...1 29480.025420: tracing_mark_write: B|13707|HIDL::IServiceManager::get::client
20487 NeuralNetworksT-13707 (13707) [006] ...1 29480.025421: tracing_mark_write: E|13707
20488 NeuralNetworksT-13707 (13707) [006] .... 29480.025425: binder_transaction: transaction=1693567 dest_node=1 dest_proc=568 dest_thread=0 reply=0 flags=0x10 code=0x1
20489 NeuralNetworksT-13707 (13707) [006] d..4 29480.025427: sched_waking: comm=hwservicemanage pid=568 prio=120 target_cpu=003
20490 hwservicemanage-568   (  568) [003] d..2 29480.025433: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20491          <idle>-0     (-----) [003] d..1 29480.025444: cpu_idle: state=2 cpu_id=3
20492 NeuralNetworksT-13707 (13707) [006] d..2 29480.025445: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20493          <idle>-0     (-----) [006] d..1 29480.025448: cpu_idle: state=2 cpu_id=6
20494          <idle>-0     (-----) [003] dnh2 29480.025668: sched_wakeup: comm=hwservicemanage pid=568 prio=120 target_cpu=003
20495          <idle>-0     (-----) [003] .n.1 29480.025674: cpu_idle: state=4294967295 cpu_id=3
20496          <idle>-0     (-----) [003] d..2 29480.025685: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=568 next_prio=120
20497 hwservicemanage-568   (  568) [003] .... 29480.025690: binder_transaction_received: transaction=1693567
20498 hwservicemanage-568   (  568) [003] ...1 29480.025708: tracing_mark_write: B|568|HIDL::IServiceManager::get::server
20499 hwservicemanage-568   (  568) [003] ...1 29480.025868: tracing_mark_write: E|568
20500 hwservicemanage-568   (  568) [003] .... 29480.025877: binder_transaction: transaction=1693568 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20501 hwservicemanage-568   (  568) [003] d..2 29480.025887: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20502 hwservicemanage-568   (  568) [003] d..2 29480.025931: sched_switch: prev_comm=hwservicemanage prev_pid=568 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20503          <idle>-0     (-----) [003] d..1 29480.025943: cpu_idle: state=0 cpu_id=3
20504          <idle>-0     (-----) [006] dnh2 29480.026528: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20505          <idle>-0     (-----) [006] .n.1 29480.026531: cpu_idle: state=4294967295 cpu_id=6
20506          <idle>-0     (-----) [006] d..2 29480.026536: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20507 NeuralNetworksT-13707 (13707) [006] .... 29480.026538: binder_transaction_received: transaction=1693568
20508 NeuralNetworksT-13707 (13707) [006] ...1 29480.026554: tracing_mark_write: B|13707|HIDL::IBase::interfaceChain::client
20509 NeuralNetworksT-13707 (13707) [006] ...1 29480.026556: tracing_mark_write: E|13707
20510 NeuralNetworksT-13707 (13707) [006] .... 29480.026565: binder_transaction: transaction=1693570 dest_node=879 dest_proc=756 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
20511 NeuralNetworksT-13707 (13707) [006] d..4 29480.026570: sched_waking: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=001
20512 NeuralNetworksT-13707 (13707) [006] dn.5 29480.026582: sched_wakeup: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=006
20513 NeuralNetworksT-13707 (13707) [006] dnh5 29480.026602: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20514 NeuralNetworksT-13707 (13707) [006] d..2 29480.026609: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:756_1 next_pid=13857 next_prio=120
20515  HwBinder:756_1-13857 (  756) [006] .... 29480.026615: binder_transaction_received: transaction=1693570
20516          <idle>-0     (-----) [003] dnh2 29480.026618: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20517          <idle>-0     (-----) [003] .n.1 29480.026623: cpu_idle: state=4294967295 cpu_id=3
20518          <idle>-0     (-----) [003] d..2 29480.026630: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20519  HwBinder:756_1-13857 (  756) [006] ...1 29480.026639: tracing_mark_write: B|756|HIDL::IBase::interfaceChain::server
20520         sugov:0-559   (  559) [003] d..2 29480.026646: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20521          <idle>-0     (-----) [003] d..1 29480.026653: cpu_idle: state=0 cpu_id=3
20522  HwBinder:756_1-13857 (  756) [006] ...1 29480.026654: tracing_mark_write: E|756
20523  HwBinder:756_1-13857 (  756) [006] .... 29480.026659: binder_transaction: transaction=1693571 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20524  HwBinder:756_1-13857 (  756) [006] d..2 29480.026673: sched_switch: prev_comm=HwBinder:756_1 prev_pid=13857 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20525 NeuralNetworksT-13707 (13707) [006] .... 29480.026675: binder_transaction_received: transaction=1693571
20526 NeuralNetworksT-13707 (13707) [006] ...1 29480.026689: tracing_mark_write: B|13707|HIDL::IBase::interfaceChain::client
20527 NeuralNetworksT-13707 (13707) [006] ...1 29480.026691: tracing_mark_write: E|13707
20528 NeuralNetworksT-13707 (13707) [006] .... 29480.026694: binder_transaction: transaction=1693572 dest_node=879 dest_proc=756 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
20529 NeuralNetworksT-13707 (13707) [006] d..4 29480.026696: sched_waking: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=006
20530 NeuralNetworksT-13707 (13707) [006] dn.5 29480.026699: sched_wakeup: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=006
20531 NeuralNetworksT-13707 (13707) [006] d..2 29480.026702: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:756_1 next_pid=13857 next_prio=120
20532  HwBinder:756_1-13857 (  756) [006] .... 29480.026703: binder_transaction_received: transaction=1693572
20533  HwBinder:756_1-13857 (  756) [006] ...1 29480.026708: tracing_mark_write: B|756|HIDL::IBase::interfaceChain::server
20534  HwBinder:756_1-13857 (  756) [006] ...1 29480.026711: tracing_mark_write: E|756
20535  HwBinder:756_1-13857 (  756) [006] .... 29480.026714: binder_transaction: transaction=1693573 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20536  HwBinder:756_1-13857 (  756) [006] d..2 29480.026723: sched_switch: prev_comm=HwBinder:756_1 prev_pid=13857 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20537 NeuralNetworksT-13707 (13707) [006] .... 29480.026725: binder_transaction_received: transaction=1693573
20538 NeuralNetworksT-13707 (13707) [006] ...1 29480.026732: tracing_mark_write: B|13707|[NN_LI_PI]getCapabilities
20539 NeuralNetworksT-13707 (13707) [006] ...1 29480.026737: tracing_mark_write: B|13707|HIDL::IDevice::getCapabilities::client
20540 NeuralNetworksT-13707 (13707) [006] ...1 29480.026738: tracing_mark_write: E|13707
20541 NeuralNetworksT-13707 (13707) [006] .... 29480.026742: binder_transaction: transaction=1693574 dest_node=879 dest_proc=756 dest_thread=0 reply=0 flags=0x10 code=0x1
20542 NeuralNetworksT-13707 (13707) [006] d..4 29480.026743: sched_waking: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=006
20543 NeuralNetworksT-13707 (13707) [006] dn.5 29480.026746: sched_wakeup: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=006
20544 NeuralNetworksT-13707 (13707) [006] d..2 29480.026749: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:756_1 next_pid=13857 next_prio=120
20545  HwBinder:756_1-13857 (  756) [006] .... 29480.026750: binder_transaction_received: transaction=1693574
20546  HwBinder:756_1-13857 (  756) [006] ...1 29480.026756: tracing_mark_write: B|756|HIDL::IDevice::getCapabilities::server
20547  HwBinder:756_1-13857 (  756) [006] ...1 29480.026760: tracing_mark_write: B|756|getCapabilities
20548  HwBinder:756_1-13857 (  756) [006] d..2 29480.026843: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20549          <idle>-0     (-----) [000] dnh2 29480.026859: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20550  HwBinder:756_1-13857 (  756) [006] ...1 29480.026859: tracing_mark_write: E|756
20551  HwBinder:756_1-13857 (  756) [006] .... 29480.026862: binder_transaction: transaction=1693575 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20552          <idle>-0     (-----) [000] .n.1 29480.026864: cpu_idle: state=4294967295 cpu_id=0
20553  HwBinder:756_1-13857 (  756) [006] ...1 29480.026866: tracing_mark_write: E|756
20554          <idle>-0     (-----) [000] d..2 29480.026870: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
20555  HwBinder:756_1-13857 (  756) [006] d..2 29480.026873: sched_switch: prev_comm=HwBinder:756_1 prev_pid=13857 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20556 NeuralNetworksT-13707 (13707) [006] .... 29480.026875: binder_transaction_received: transaction=1693575
20557 NeuralNetworksT-13707 (13707) [006] ...1 29480.026883: tracing_mark_write: E|13707
20558 NeuralNetworksT-13707 (13707) [006] d..2 29480.026953: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20559     logd.writer-563   (  555) [000] d..2 29480.026964: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20560          <idle>-0     (-----) [000] d..1 29480.026971: cpu_idle: state=0 cpu_id=0
20561 NeuralNetworksT-13707 (13707) [006] ...1 29480.026978: tracing_mark_write: E|13707
20562 NeuralNetworksT-13707 (13707) [006] ...1 29480.026980: tracing_mark_write: B|13707|[NN_LR_PC]ANeuralNetworksCompilation_finish
20563          <idle>-0     (-----) [000] dnh2 29480.026981: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20564          <idle>-0     (-----) [000] .n.1 29480.026986: cpu_idle: state=4294967295 cpu_id=0
20565          <idle>-0     (-----) [000] d..2 29480.026991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
20566 NeuralNetworksT-13707 (13707) [006] ...1 29480.027029: tracing_mark_write: B|13707|[NN_LI_PC]getSupportedOperations_1_1
20567 NeuralNetworksT-13707 (13707) [006] ...1 29480.027031: tracing_mark_write: B|13707|HIDL::IDevice::getSupportedOperations_1_1::client
20568 NeuralNetworksT-13707 (13707) [006] ...1 29480.027033: tracing_mark_write: E|13707
20569     logd.writer-563   (  555) [000] d..2 29480.027051: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20570 NeuralNetworksT-13707 (13707) [006] .... 29480.027093: binder_transaction: transaction=1693576 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0x6
20571          <idle>-0     (-----) [000] d.s2 29480.027100: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20572          <idle>-0     (-----) [000] dns3 29480.027113: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20573          <idle>-0     (-----) [000] d..2 29480.027124: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
20574     rcu_preempt-7     (    7) [000] d..2 29480.027132: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
20575 NeuralNetworksT-13707 (13707) [006] d..4 29480.027133: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20576 NeuralNetworksT-13707 (13707) [006] dn.5 29480.027143: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20577 NeuralNetworksT-13707 (13707) [006] dnh5 29480.027164: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20578     rcu_preempt-7     (    7) [000] d..3 29480.027171: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
20579 NeuralNetworksT-13707 (13707) [006] d..2 29480.027173: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20580  HwBinder:771_4-20182 (  771) [006] .... 29480.027175: binder_transaction_received: transaction=1693576
20581          <idle>-0     (-----) [003] dnh2 29480.027179: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20582          <idle>-0     (-----) [003] .n.1 29480.027183: cpu_idle: state=4294967295 cpu_id=3
20583     rcu_preempt-7     (    7) [000] d..2 29480.027184: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
20584          <idle>-0     (-----) [003] d..2 29480.027190: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20585  HwBinder:771_4-20182 (  771) [006] ...1 29480.027193: tracing_mark_write: B|771|HIDL::IDevice::getSupportedOperations_1_1::server
20586         sugov:0-559   (  559) [003] d..2 29480.027207: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20587          <idle>-0     (-----) [003] d..1 29480.027214: cpu_idle: state=0 cpu_id=3
20588         rcuop/6-61    (   61) [000] d..2 29480.027232: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20589          <idle>-0     (-----) [000] d..1 29480.027243: cpu_idle: state=0 cpu_id=0
20590  HwBinder:771_4-20182 (  771) [006] d..2 29480.027576: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20591  HwBinder:771_4-20182 (  771) [006] d..2 29480.027588: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20592          <idle>-0     (-----) [000] dnh2 29480.027593: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20593 NeuralNetworksT-13707 (13707) [006] d..2 29480.027594: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20594          <idle>-0     (-----) [000] .n.1 29480.027598: cpu_idle: state=4294967295 cpu_id=0
20595          <idle>-0     (-----) [006] d..1 29480.027598: cpu_idle: state=2 cpu_id=6
20596          <idle>-0     (-----) [000] d..2 29480.027605: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20597 cdsp_smem_glink-88    (   88) [000] d..2 29480.027633: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20598          <idle>-0     (-----) [000] d..1 29480.027640: cpu_idle: state=0 cpu_id=0
20599          <idle>-0     (-----) [002] d.h4 29480.028136: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20600          <idle>-0     (-----) [002] dnh5 29480.028151: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20601          <idle>-0     (-----) [002] .n.1 29480.028159: cpu_idle: state=4294967295 cpu_id=2
20602          <idle>-0     (-----) [002] d..2 29480.028169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20603 smem_native_cds-87    (   87) [002] d..2 29480.028196: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20604          <idle>-0     (-----) [002] d..1 29480.028207: cpu_idle: state=0 cpu_id=2
20605          <idle>-0     (-----) [002] d.h4 29480.028276: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20606          <idle>-0     (-----) [002] d.h5 29480.028295: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20607          <idle>-0     (-----) [000] .n.1 29480.028300: cpu_idle: state=4294967295 cpu_id=0
20608          <idle>-0     (-----) [000] d..2 29480.028309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20609          <idle>-0     (-----) [002] d.h3 29480.028356: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20610          <idle>-0     (-----) [002] d.h4 29480.028368: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20611          <idle>-0     (-----) [003] .n.1 29480.028373: cpu_idle: state=4294967295 cpu_id=3
20612          <idle>-0     (-----) [002] ...1 29480.028375: cpu_idle: state=4294967295 cpu_id=2
20613          <idle>-0     (-----) [002] d..1 29480.028379: cpu_idle: state=0 cpu_id=2
20614          <idle>-0     (-----) [003] d..2 29480.028380: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20615         sugov:0-559   (  559) [003] d..2 29480.028394: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20616          <idle>-0     (-----) [003] d..1 29480.028401: cpu_idle: state=0 cpu_id=3
20617  HwBinder:771_4-20182 (  771) [000] ...1 29480.028558: tracing_mark_write: E|771
20618  HwBinder:771_4-20182 (  771) [000] .... 29480.028568: binder_transaction: transaction=1693577 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20619  HwBinder:771_4-20182 (  771) [000] d..2 29480.028574: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20620  HwBinder:771_4-20182 (  771) [000] d..1 29480.028601: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=002
20621  HwBinder:771_4-20182 (  771) [000] d..2 29480.028634: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
20622  HwBinder:771_4-20182 (  771) [000] d..2 29480.028749: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
20623 neuralnetworks@-13852 (  771) [000] d..2 29480.028790: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20624          <idle>-0     (-----) [000] d..1 29480.028799: cpu_idle: state=0 cpu_id=0
20625          <idle>-0     (-----) [006] dnh2 29480.029220: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
20626          <idle>-0     (-----) [006] .n.1 29480.029223: cpu_idle: state=4294967295 cpu_id=6
20627          <idle>-0     (-----) [006] d..2 29480.029227: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20628 NeuralNetworksT-13707 (13707) [006] .... 29480.029230: binder_transaction_received: transaction=1693577
20629 NeuralNetworksT-13707 (13707) [006] ...1 29480.029241: tracing_mark_write: E|13707
20630 NeuralNetworksT-13707 (13707) [006] ...1 29480.029301: tracing_mark_write: B|13707|[NN_LI_PC]getSupportedOperations_1_0
20631 NeuralNetworksT-13707 (13707) [006] ...1 29480.029304: tracing_mark_write: B|13707|HIDL::IDevice::getSupportedOperations::client
20632 NeuralNetworksT-13707 (13707) [006] ...1 29480.029305: tracing_mark_write: E|13707
20633 NeuralNetworksT-13707 (13707) [006] .... 29480.029333: binder_transaction: transaction=1693578 dest_node=879 dest_proc=756 dest_thread=0 reply=0 flags=0x10 code=0x2
20634 NeuralNetworksT-13707 (13707) [006] d..4 29480.029373: sched_waking: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=006
20635 NeuralNetworksT-13707 (13707) [006] dn.5 29480.029377: sched_wakeup: comm=HwBinder:756_1 pid=13857 prio=120 target_cpu=006
20636 NeuralNetworksT-13707 (13707) [006] d..2 29480.029380: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:756_1 next_pid=13857 next_prio=120
20637  HwBinder:756_1-13857 (  756) [006] .... 29480.029382: binder_transaction_received: transaction=1693578
20638  HwBinder:756_1-13857 (  756) [006] ...1 29480.029398: tracing_mark_write: B|756|HIDL::IDevice::getSupportedOperations::server
20639  HwBinder:756_1-13857 (  756) [006] ...1 29480.029401: tracing_mark_write: B|756|getSupportedOperations
20640  HwBinder:756_1-13857 (  756) [006] d..2 29480.029416: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20641  HwBinder:756_1-13857 (  756) [006] ...1 29480.029431: tracing_mark_write: B|756|[NN_LU_PU]validateModelVersioned
20642          <idle>-0     (-----) [000] dnh2 29480.029434: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20643          <idle>-0     (-----) [000] .n.1 29480.029439: cpu_idle: state=4294967295 cpu_id=0
20644          <idle>-0     (-----) [000] d..2 29480.029447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
20645     logd.writer-563   (  555) [000] d..2 29480.029497: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20646          <idle>-0     (-----) [000] d..1 29480.029506: cpu_idle: state=0 cpu_id=0
20647  HwBinder:756_1-13857 (  756) [006] ...1 29480.029795: tracing_mark_write: E|756
20648  HwBinder:756_1-13857 (  756) [006] ...1 29480.029800: tracing_mark_write: E|756
20649  HwBinder:756_1-13857 (  756) [006] .... 29480.029804: binder_transaction: transaction=1693579 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
20650  HwBinder:756_1-13857 (  756) [006] ...1 29480.029808: tracing_mark_write: E|756
20651  HwBinder:756_1-13857 (  756) [006] d..2 29480.029819: sched_switch: prev_comm=HwBinder:756_1 prev_pid=13857 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20652 NeuralNetworksT-13707 (13707) [006] .... 29480.029821: binder_transaction_received: transaction=1693579
20653 NeuralNetworksT-13707 (13707) [006] ...1 29480.029830: tracing_mark_write: E|13707
20654 NeuralNetworksT-13707 (13707) [006] d..2 29480.029867: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
20655          <idle>-0     (-----) [000] dnh2 29480.029884: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
20656          <idle>-0     (-----) [000] .n.1 29480.029888: cpu_idle: state=4294967295 cpu_id=0
20657          <idle>-0     (-----) [000] d..2 29480.029896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
20658          <idle>-0     (-----) [003] ...1 29480.030020: cpu_idle: state=4294967295 cpu_id=3
20659          <idle>-0     (-----) [003] d..1 29480.030024: cpu_idle: state=2 cpu_id=3
20660 NeuralNetworksT-13707 (13707) [006] ...1 29480.030346: tracing_mark_write: B|13707|[NN_LI_PC]prepareModel
20661 NeuralNetworksT-13707 (13707) [006] ...1 29480.030348: tracing_mark_write: B|13707|HIDL::IDevice::prepareModel_1_1::client
20662 NeuralNetworksT-13707 (13707) [006] ...1 29480.030349: tracing_mark_write: E|13707
20663          <idle>-0     (-----) [002] .n.1 29480.030473: cpu_idle: state=4294967295 cpu_id=2
20664 NeuralNetworksT-13707 (13707) [006] .... 29480.030476: binder_transaction: transaction=1693580 dest_node=807 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0x7
20665          <idle>-0     (-----) [002] d..2 29480.030484: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13708 next_prio=120
20666 NeuralNetworksT-13707 (13707) [006] d..4 29480.030491: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20667 NeuralNetworksT-13707 (13707) [006] dn.5 29480.030501: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20668 NeuralNetworksT-13707 (13707) [006] dnh5 29480.030521: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20669 NeuralNetworksT-13707 (13707) [006] d..2 29480.030529: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20670  HwBinder:771_4-20182 (  771) [006] .... 29480.030532: binder_transaction_received: transaction=1693580
20671  HwBinder:771_4-20182 (  771) [006] ...1 29480.030565: tracing_mark_write: B|771|HIDL::IDevice::prepareModel_1_1::server
20672          <idle>-0     (-----) [003] dnh2 29480.030635: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20673          <idle>-0     (-----) [003] .n.1 29480.030641: cpu_idle: state=4294967295 cpu_id=3
20674          <idle>-0     (-----) [003] d..2 29480.030651: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20675         sugov:0-559   (  559) [003] d..2 29480.030673: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20676          <idle>-0     (-----) [003] d..1 29480.030683: cpu_idle: state=0 cpu_id=3
20677     logd.writer-563   (  555) [000] d..2 29480.030781: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20678          <idle>-0     (-----) [000] d..1 29480.030791: cpu_idle: state=0 cpu_id=0
20679 HwBinder:13707_-13708 (13707) [002] .... 29480.030876: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=13708 comm=NeuralNetworksT
20680  HwBinder:771_4-20182 (  771) [006] d..2 29480.031000: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20681  HwBinder:771_4-20182 (  771) [006] d..2 29480.031019: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
20682 NeuralNetworksT-13707 (13707) [006] d..2 29480.031026: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
20683 HwBinder:13707_-13708 (13707) [002] dnh1 29480.031026: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
20684          <idle>-0     (-----) [006] d..1 29480.031031: cpu_idle: state=2 cpu_id=6
20685 HwBinder:13707_-13708 (13707) [002] d..2 29480.031036: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20686 cdsp_smem_glink-88    (   88) [002] d..2 29480.031060: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
20687 HwBinder:13707_-13708 (13707) [002] d..2 29480.031109: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20688          <idle>-0     (-----) [002] d..1 29480.031121: cpu_idle: state=0 cpu_id=2
20689          <idle>-0     (-----) [002] d.h4 29480.031492: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20690          <idle>-0     (-----) [002] dnh5 29480.031504: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20691          <idle>-0     (-----) [002] .n.1 29480.031512: cpu_idle: state=4294967295 cpu_id=2
20692          <idle>-0     (-----) [002] d..2 29480.031520: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20693 smem_native_cds-87    (   87) [002] d..2 29480.031543: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20694          <idle>-0     (-----) [002] d..1 29480.031552: cpu_idle: state=0 cpu_id=2
20695          <idle>-0     (-----) [003] ...1 29480.032332: cpu_idle: state=4294967295 cpu_id=3
20696          <idle>-0     (-----) [003] d..1 29480.032336: cpu_idle: state=2 cpu_id=3
20697          <idle>-0     (-----) [002] d.h4 29480.032443: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=006
20698          <idle>-0     (-----) [002] d.h5 29480.032463: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20699          <idle>-0     (-----) [000] .n.1 29480.032468: cpu_idle: state=4294967295 cpu_id=0
20700          <idle>-0     (-----) [000] d..2 29480.032476: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20701  HwBinder:771_4-20182 (  771) [000] d..2 29480.032508: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
20702  HwBinder:771_4-20182 (  771) [000] d..3 29480.032527: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
20703          <idle>-0     (-----) [002] dnh3 29480.032530: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20704          <idle>-0     (-----) [002] dnh4 29480.032541: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20705  HwBinder:771_4-20182 (  771) [000] d..2 29480.032545: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20706          <idle>-0     (-----) [002] .n.1 29480.032550: cpu_idle: state=4294967295 cpu_id=2
20707          <idle>-0     (-----) [000] d..1 29480.032552: cpu_idle: state=0 cpu_id=0
20708          <idle>-0     (-----) [002] d..2 29480.032559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20709 cdsp_smem_glink-88    (   88) [002] d..2 29480.032587: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20710          <idle>-0     (-----) [002] d..1 29480.032597: cpu_idle: state=0 cpu_id=2
20711          <idle>-0     (-----) [003] .n.1 29480.032649: cpu_idle: state=4294967295 cpu_id=3
20712          <idle>-0     (-----) [003] d..2 29480.032661: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20713         sugov:0-559   (  559) [003] d..2 29480.032681: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20714          <idle>-0     (-----) [003] d..1 29480.032691: cpu_idle: state=0 cpu_id=3
20715          <idle>-0     (-----) [002] d.h4 29480.033500: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20716          <idle>-0     (-----) [002] dnh5 29480.033511: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20717          <idle>-0     (-----) [002] .n.1 29480.033518: cpu_idle: state=4294967295 cpu_id=2
20718          <idle>-0     (-----) [002] d..2 29480.033526: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20719 smem_native_cds-87    (   87) [002] d..2 29480.033548: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20720          <idle>-0     (-----) [002] d..1 29480.033556: cpu_idle: state=0 cpu_id=2
20721          <idle>-0     (-----) [000] d.s2 29480.033744: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20722          <idle>-0     (-----) [000] dns3 29480.033756: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20723          <idle>-0     (-----) [000] dns3 29480.033760: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
20724          <idle>-0     (-----) [000] dns4 29480.033784: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20725          <idle>-0     (-----) [000] .n.1 29480.033797: cpu_idle: state=4294967295 cpu_id=0
20726          <idle>-0     (-----) [002] d.h4 29480.033800: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20727          <idle>-0     (-----) [000] d..2 29480.033803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
20728     rcu_preempt-7     (    7) [000] d..2 29480.033822: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20729          <idle>-0     (-----) [002] d.h5 29480.033823: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
20730          <idle>-0     (-----) [002] ...1 29480.033845: cpu_idle: state=4294967295 cpu_id=2
20731          <idle>-0     (-----) [002] d..1 29480.033848: cpu_idle: state=0 cpu_id=2
20732          <idle>-0     (-----) [001] .n.1 29480.033947: cpu_idle: state=4294967295 cpu_id=1
20733  kworker/u16:10-23868 (23868) [000] d..2 29480.033963: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20734          <idle>-0     (-----) [001] d..2 29480.033966: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20735          <idle>-0     (-----) [000] d..1 29480.033972: cpu_idle: state=0 cpu_id=0
20736          <idle>-0     (-----) [003] d.s3 29480.033994: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20737          <idle>-0     (-----) [003] d.s4 29480.034003: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20738          <idle>-0     (-----) [003] d.s4 29480.034010: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20739  HwBinder:771_4-20182 (  771) [001] d..2 29480.034011: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
20740          <idle>-0     (-----) [000] .n.1 29480.034015: cpu_idle: state=4294967295 cpu_id=0
20741          <idle>-0     (-----) [003] ...1 29480.034018: cpu_idle: state=4294967295 cpu_id=3
20742          <idle>-0     (-----) [003] d..1 29480.034022: cpu_idle: state=0 cpu_id=3
20743          <idle>-0     (-----) [000] d..2 29480.034024: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20744  HwBinder:771_4-20182 (  771) [001] d..3 29480.034043: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
20745          <idle>-0     (-----) [003] .n.1 29480.034048: cpu_idle: state=4294967295 cpu_id=3
20746          <idle>-0     (-----) [003] d..2 29480.034057: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20747  HwBinder:771_4-20182 (  771) [001] d..2 29480.034064: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20748          <idle>-0     (-----) [001] d..1 29480.034076: cpu_idle: state=2 cpu_id=1
20749 cdsp_smem_glink-88    (   88) [003] d..2 29480.034086: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20750          <idle>-0     (-----) [003] d..1 29480.034094: cpu_idle: state=0 cpu_id=3
20751  kworker/u16:10-23868 (23868) [000] d..2 29480.034145: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20752          <idle>-0     (-----) [000] d..1 29480.034154: cpu_idle: state=0 cpu_id=0
20753          <idle>-0     (-----) [003] d.s3 29480.034177: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20754          <idle>-0     (-----) [003] d.s4 29480.034183: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20755          <idle>-0     (-----) [003] d.s4 29480.034190: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20756          <idle>-0     (-----) [000] .n.1 29480.034195: cpu_idle: state=4294967295 cpu_id=0
20757          <idle>-0     (-----) [003] ...1 29480.034198: cpu_idle: state=4294967295 cpu_id=3
20758          <idle>-0     (-----) [003] d..1 29480.034201: cpu_idle: state=0 cpu_id=3
20759          <idle>-0     (-----) [000] d..2 29480.034203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20760  kworker/u16:10-23868 (23868) [000] .... 29480.034226: clk_set_rate: l3_cluster1_vote_clk 748800000
20761  kworker/u16:10-23868 (23868) [000] .... 29480.034231: clk_set_rate: l3_clk 748800000
20762  kworker/u16:10-23868 (23868) [000] d..2 29480.034281: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20763          <idle>-0     (-----) [000] d..1 29480.034297: cpu_idle: state=0 cpu_id=0
20764          <idle>-0     (-----) [002] d.h4 29480.034735: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20765          <idle>-0     (-----) [002] dnh5 29480.034743: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20766          <idle>-0     (-----) [002] .n.1 29480.034749: cpu_idle: state=4294967295 cpu_id=2
20767          <idle>-0     (-----) [002] d..2 29480.034758: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20768 smem_native_cds-87    (   87) [002] d..2 29480.034782: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20769          <idle>-0     (-----) [002] d..1 29480.034791: cpu_idle: state=0 cpu_id=2
20770          <idle>-0     (-----) [002] d.h4 29480.035099: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
20771          <idle>-0     (-----) [002] d.h5 29480.035117: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20772          <idle>-0     (-----) [000] .n.1 29480.035123: cpu_idle: state=4294967295 cpu_id=0
20773          <idle>-0     (-----) [000] d..2 29480.035131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20774          <idle>-0     (-----) [002] ...1 29480.035140: cpu_idle: state=4294967295 cpu_id=2
20775          <idle>-0     (-----) [002] d..1 29480.035144: cpu_idle: state=0 cpu_id=2
20776  HwBinder:771_4-20182 (  771) [000] d..2 29480.035190: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
20777  HwBinder:771_4-20182 (  771) [000] d..3 29480.035205: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
20778          <idle>-0     (-----) [003] .n.1 29480.035210: cpu_idle: state=4294967295 cpu_id=3
20779          <idle>-0     (-----) [003] d..2 29480.035219: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20780  HwBinder:771_4-20182 (  771) [000] d..2 29480.035224: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20781          <idle>-0     (-----) [000] d..1 29480.035233: cpu_idle: state=0 cpu_id=0
20782 cdsp_smem_glink-88    (   88) [003] d..2 29480.035246: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20783          <idle>-0     (-----) [003] d..1 29480.035255: cpu_idle: state=0 cpu_id=3
20784          <idle>-0     (-----) [002] d.h4 29480.036057: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20785          <idle>-0     (-----) [002] dnh5 29480.036068: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20786          <idle>-0     (-----) [002] .n.1 29480.036074: cpu_idle: state=4294967295 cpu_id=2
20787          <idle>-0     (-----) [002] d..2 29480.036082: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20788 smem_native_cds-87    (   87) [002] d..2 29480.036107: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20789          <idle>-0     (-----) [002] d..1 29480.036115: cpu_idle: state=0 cpu_id=2
20790          <idle>-0     (-----) [002] d.h4 29480.036556: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20791          <idle>-0     (-----) [002] d.h5 29480.036567: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20792          <idle>-0     (-----) [000] .n.1 29480.036573: cpu_idle: state=4294967295 cpu_id=0
20793          <idle>-0     (-----) [000] d..2 29480.036582: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20794          <idle>-0     (-----) [002] ...1 29480.036590: cpu_idle: state=4294967295 cpu_id=2
20795          <idle>-0     (-----) [002] d..1 29480.036594: cpu_idle: state=0 cpu_id=2
20796  HwBinder:771_4-20182 (  771) [000] d..2 29480.036614: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
20797  HwBinder:771_4-20182 (  771) [000] d..3 29480.036644: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20798  HwBinder:771_4-20182 (  771) [000] d..2 29480.036653: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20799 cdsp_smem_glink-88    (   88) [000] d..2 29480.036682: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20800          <idle>-0     (-----) [000] d..1 29480.036691: cpu_idle: state=0 cpu_id=0
20801          <idle>-0     (-----) [002] d.h4 29480.037515: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20802          <idle>-0     (-----) [002] dnh5 29480.037527: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20803          <idle>-0     (-----) [002] dnh3 29480.037585: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
20804          <idle>-0     (-----) [002] dnh3 29480.037598: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
20805          <idle>-0     (-----) [002] dnh4 29480.037609: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
20806          <idle>-0     (-----) [003] .n.1 29480.037614: cpu_idle: state=4294967295 cpu_id=3
20807          <idle>-0     (-----) [002] .n.1 29480.037614: cpu_idle: state=4294967295 cpu_id=2
20808          <idle>-0     (-----) [003] d..2 29480.037622: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
20809          <idle>-0     (-----) [002] d..2 29480.037625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20810         sugov:0-559   (  559) [003] d..2 29480.037643: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20811          <idle>-0     (-----) [003] d..2 29480.037645: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20812 smem_native_cds-87    (   87) [002] d..2 29480.037652: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20813          <idle>-0     (-----) [003] dn.3 29480.037656: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20814          <idle>-0     (-----) [002] d..1 29480.037661: cpu_idle: state=0 cpu_id=2
20815          <idle>-0     (-----) [003] d..2 29480.037663: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
20816     ksoftirqd/3-34    (   34) [003] d..2 29480.037682: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20817          <idle>-0     (-----) [003] d..1 29480.037690: cpu_idle: state=2 cpu_id=3
20818          <idle>-0     (-----) [002] d.h4 29480.037885: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20819          <idle>-0     (-----) [002] d.h5 29480.037899: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20820          <idle>-0     (-----) [000] .n.1 29480.037904: cpu_idle: state=4294967295 cpu_id=0
20821          <idle>-0     (-----) [000] d..2 29480.037913: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20822          <idle>-0     (-----) [002] ...1 29480.037924: cpu_idle: state=4294967295 cpu_id=2
20823          <idle>-0     (-----) [002] d..1 29480.037927: cpu_idle: state=0 cpu_id=2
20824  HwBinder:771_4-20182 (  771) [000] d..2 29480.037944: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20825  HwBinder:771_4-20182 (  771) [000] d..3 29480.037959: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20826  HwBinder:771_4-20182 (  771) [000] d..2 29480.037968: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20827 cdsp_smem_glink-88    (   88) [000] d..2 29480.037994: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20828          <idle>-0     (-----) [000] d..1 29480.038002: cpu_idle: state=0 cpu_id=0
20829          <idle>-0     (-----) [005] dnh2 29480.038250: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
20830          <idle>-0     (-----) [005] .n.1 29480.038255: cpu_idle: state=4294967295 cpu_id=5
20831          <idle>-0     (-----) [005] d..2 29480.038261: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
20832         sugov:4-560   (  560) [005] .... 29480.038280: clk_set_rate: perfcl_clk 2649600000
20833         sugov:4-560   (  560) [005] .... 29480.038281: clk_set_rate: cpu7_perfcl_clk 2803200000
20834         sugov:4-560   (  560) [005] .... 29480.038287: clk_set_rate: cpu6_perfcl_clk 2803200000
20835         sugov:4-560   (  560) [005] .... 29480.038291: clk_set_rate: cpu5_perfcl_clk 2803200000
20836         sugov:4-560   (  560) [005] .... 29480.038295: clk_set_rate: cpu4_perfcl_clk 2649600000
20837         sugov:4-560   (  560) [005] .... 29480.038301: cpu_frequency: state=2649600 cpu_id=4
20838         sugov:4-560   (  560) [005] .... 29480.038310: cpu_frequency: state=2649600 cpu_id=5
20839         sugov:4-560   (  560) [005] .... 29480.038311: cpu_frequency: state=2649600 cpu_id=6
20840         sugov:4-560   (  560) [005] .... 29480.038312: cpu_frequency: state=2649600 cpu_id=7
20841         sugov:4-560   (  560) [005] d..2 29480.038321: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
20842          <idle>-0     (-----) [005] d..1 29480.038326: cpu_idle: state=2 cpu_id=5
20843          <idle>-0     (-----) [002] d.h4 29480.038839: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20844          <idle>-0     (-----) [002] dnh5 29480.038850: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20845          <idle>-0     (-----) [002] .n.1 29480.038856: cpu_idle: state=4294967295 cpu_id=2
20846          <idle>-0     (-----) [002] d..2 29480.038864: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20847 smem_native_cds-87    (   87) [002] d..2 29480.038888: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20848          <idle>-0     (-----) [002] d..1 29480.038896: cpu_idle: state=0 cpu_id=2
20849          <idle>-0     (-----) [002] d.h4 29480.039296: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20850          <idle>-0     (-----) [002] d.h5 29480.039308: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20851          <idle>-0     (-----) [000] .n.1 29480.039314: cpu_idle: state=4294967295 cpu_id=0
20852          <idle>-0     (-----) [000] d..2 29480.039321: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20853          <idle>-0     (-----) [002] ...1 29480.039332: cpu_idle: state=4294967295 cpu_id=2
20854          <idle>-0     (-----) [002] d..1 29480.039335: cpu_idle: state=0 cpu_id=2
20855  HwBinder:771_4-20182 (  771) [000] d..2 29480.039349: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20856  HwBinder:771_4-20182 (  771) [000] d..3 29480.039364: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20857  HwBinder:771_4-20182 (  771) [000] d..2 29480.039372: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20858 cdsp_smem_glink-88    (   88) [000] d..2 29480.039397: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20859          <idle>-0     (-----) [000] d..1 29480.039403: cpu_idle: state=0 cpu_id=0
20860          <idle>-0     (-----) [002] d.h4 29480.039424: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20861          <idle>-0     (-----) [002] dnh5 29480.039431: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20862          <idle>-0     (-----) [002] .n.1 29480.039436: cpu_idle: state=4294967295 cpu_id=2
20863          <idle>-0     (-----) [002] d..2 29480.039444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20864 smem_native_cds-87    (   87) [002] d..2 29480.039468: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20865          <idle>-0     (-----) [002] d..1 29480.039476: cpu_idle: state=0 cpu_id=2
20866          <idle>-0     (-----) [002] d.h4 29480.039774: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20867          <idle>-0     (-----) [002] d.h5 29480.039785: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20868          <idle>-0     (-----) [000] .n.1 29480.039790: cpu_idle: state=4294967295 cpu_id=0
20869          <idle>-0     (-----) [000] d..2 29480.039797: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20870          <idle>-0     (-----) [002] ...1 29480.039808: cpu_idle: state=4294967295 cpu_id=2
20871          <idle>-0     (-----) [002] d..1 29480.039812: cpu_idle: state=0 cpu_id=2
20872  HwBinder:771_4-20182 (  771) [000] d..2 29480.039823: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20873  HwBinder:771_4-20182 (  771) [000] d..3 29480.039837: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20874  HwBinder:771_4-20182 (  771) [000] d..2 29480.039848: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20875 cdsp_smem_glink-88    (   88) [000] d..2 29480.039874: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20876          <idle>-0     (-----) [000] d..1 29480.039881: cpu_idle: state=0 cpu_id=0
20877          <idle>-0     (-----) [002] d.h4 29480.039900: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20878          <idle>-0     (-----) [002] dnh5 29480.039907: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20879          <idle>-0     (-----) [002] .n.1 29480.039913: cpu_idle: state=4294967295 cpu_id=2
20880          <idle>-0     (-----) [002] d..2 29480.039921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20881 smem_native_cds-87    (   87) [002] d..2 29480.039945: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20882          <idle>-0     (-----) [002] d..1 29480.039954: cpu_idle: state=0 cpu_id=2
20883          <idle>-0     (-----) [002] d.h4 29480.040252: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20884          <idle>-0     (-----) [002] d.h5 29480.040265: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20885          <idle>-0     (-----) [000] .n.1 29480.040270: cpu_idle: state=4294967295 cpu_id=0
20886          <idle>-0     (-----) [000] d..2 29480.040277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20887          <idle>-0     (-----) [002] ...1 29480.040288: cpu_idle: state=4294967295 cpu_id=2
20888          <idle>-0     (-----) [002] d..1 29480.040292: cpu_idle: state=0 cpu_id=2
20889  HwBinder:771_4-20182 (  771) [000] d..2 29480.040303: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20890  HwBinder:771_4-20182 (  771) [000] d..3 29480.040317: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20891  HwBinder:771_4-20182 (  771) [000] d..2 29480.040326: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20892 cdsp_smem_glink-88    (   88) [000] d..2 29480.040351: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20893          <idle>-0     (-----) [000] d..1 29480.040358: cpu_idle: state=0 cpu_id=0
20894          <idle>-0     (-----) [002] d.h4 29480.040379: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20895          <idle>-0     (-----) [002] dnh5 29480.040386: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20896          <idle>-0     (-----) [002] .n.1 29480.040392: cpu_idle: state=4294967295 cpu_id=2
20897          <idle>-0     (-----) [002] d..2 29480.040404: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20898          <idle>-0     (-----) [000] d.s2 29480.040410: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20899          <idle>-0     (-----) [000] dns3 29480.040423: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
20900          <idle>-0     (-----) [000] dns3 29480.040427: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
20901 smem_native_cds-87    (   87) [002] d..2 29480.040432: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20902          <idle>-0     (-----) [002] d..1 29480.040441: cpu_idle: state=0 cpu_id=2
20903          <idle>-0     (-----) [002] .n.1 29480.040444: cpu_idle: state=4294967295 cpu_id=2
20904          <idle>-0     (-----) [000] dns4 29480.040445: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
20905          <idle>-0     (-----) [000] .n.1 29480.040456: cpu_idle: state=4294967295 cpu_id=0
20906          <idle>-0     (-----) [002] d..2 29480.040456: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20907          <idle>-0     (-----) [000] d..2 29480.040463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
20908     rcu_preempt-7     (    7) [000] d..2 29480.040469: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
20909     rcu_preempt-7     (    7) [000] d..3 29480.040496: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
20910     rcu_preempt-7     (    7) [000] d..2 29480.040499: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
20911     rcu_preempt-7     (    7) [000] d..3 29480.040512: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
20912     rcu_preempt-7     (    7) [000] d..2 29480.040522: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
20913         rcuop/2-29    (   29) [000] d..2 29480.040537: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
20914         rcuop/0-10    (   10) [000] d..2 29480.040557: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20915          <idle>-0     (-----) [000] d..1 29480.040566: cpu_idle: state=0 cpu_id=0
20916  kworker/u16:10-23868 (23868) [002] d..2 29480.040598: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20917          <idle>-0     (-----) [002] d..1 29480.040610: cpu_idle: state=0 cpu_id=2
20918          <idle>-0     (-----) [002] d.h4 29480.040645: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20919          <idle>-0     (-----) [002] d.h5 29480.040658: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20920          <idle>-0     (-----) [000] .n.1 29480.040664: cpu_idle: state=4294967295 cpu_id=0
20921          <idle>-0     (-----) [000] d..2 29480.040672: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20922          <idle>-0     (-----) [002] ...1 29480.040681: cpu_idle: state=4294967295 cpu_id=2
20923          <idle>-0     (-----) [002] d..1 29480.040685: cpu_idle: state=0 cpu_id=2
20924  HwBinder:771_4-20182 (  771) [000] d..2 29480.040703: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20925  HwBinder:771_4-20182 (  771) [000] d..3 29480.040718: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20926  HwBinder:771_4-20182 (  771) [000] d..2 29480.040727: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20927          <idle>-0     (-----) [003] d.s3 29480.040728: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
20928 cdsp_smem_glink-88    (   88) [000] d..2 29480.040755: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20929          <idle>-0     (-----) [003] d.s4 29480.040757: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20930          <idle>-0     (-----) [003] dns4 29480.040761: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20931          <idle>-0     (-----) [000] d..1 29480.040764: cpu_idle: state=0 cpu_id=0
20932          <idle>-0     (-----) [003] .n.1 29480.040768: cpu_idle: state=4294967295 cpu_id=3
20933          <idle>-0     (-----) [003] d..2 29480.040779: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20934  kworker/u16:10-23868 (23868) [003] d..2 29480.040933: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
20935          <idle>-0     (-----) [003] d.s4 29480.040962: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20936          <idle>-0     (-----) [003] d.s5 29480.040968: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
20937          <idle>-0     (-----) [003] dns5 29480.040972: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
20938          <idle>-0     (-----) [003] d..2 29480.040982: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
20939  kworker/u16:10-23868 (23868) [003] d..2 29480.041000: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20940          <idle>-0     (-----) [003] d..1 29480.041013: cpu_idle: state=0 cpu_id=3
20941          <idle>-0     (-----) [002] d.h4 29480.041592: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20942          <idle>-0     (-----) [002] dnh5 29480.041604: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20943          <idle>-0     (-----) [002] .n.1 29480.041611: cpu_idle: state=4294967295 cpu_id=2
20944          <idle>-0     (-----) [002] d..2 29480.041619: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20945 smem_native_cds-87    (   87) [002] d..2 29480.041643: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20946          <idle>-0     (-----) [002] d..1 29480.041652: cpu_idle: state=0 cpu_id=2
20947          <idle>-0     (-----) [002] d.h4 29480.042057: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20948          <idle>-0     (-----) [002] d.h5 29480.042069: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20949          <idle>-0     (-----) [000] .n.1 29480.042074: cpu_idle: state=4294967295 cpu_id=0
20950          <idle>-0     (-----) [000] d..2 29480.042083: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20951          <idle>-0     (-----) [002] ...1 29480.042092: cpu_idle: state=4294967295 cpu_id=2
20952          <idle>-0     (-----) [002] d..1 29480.042096: cpu_idle: state=0 cpu_id=2
20953  HwBinder:771_4-20182 (  771) [000] d..2 29480.042111: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20954  HwBinder:771_4-20182 (  771) [000] d..3 29480.042125: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20955  HwBinder:771_4-20182 (  771) [000] d..2 29480.042133: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20956 cdsp_smem_glink-88    (   88) [000] d..2 29480.042158: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20957          <idle>-0     (-----) [000] d..1 29480.042167: cpu_idle: state=0 cpu_id=0
20958          <idle>-0     (-----) [002] d.h4 29480.042185: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20959          <idle>-0     (-----) [002] dnh5 29480.042192: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20960          <idle>-0     (-----) [002] .n.1 29480.042198: cpu_idle: state=4294967295 cpu_id=2
20961          <idle>-0     (-----) [002] d..2 29480.042206: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20962 smem_native_cds-87    (   87) [002] d..2 29480.042228: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20963          <idle>-0     (-----) [002] d..1 29480.042237: cpu_idle: state=0 cpu_id=2
20964          <idle>-0     (-----) [002] d.h4 29480.042533: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20965          <idle>-0     (-----) [002] d.h5 29480.042546: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20966          <idle>-0     (-----) [000] .n.1 29480.042551: cpu_idle: state=4294967295 cpu_id=0
20967          <idle>-0     (-----) [000] d..2 29480.042559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20968          <idle>-0     (-----) [002] ...1 29480.042570: cpu_idle: state=4294967295 cpu_id=2
20969          <idle>-0     (-----) [002] d..1 29480.042573: cpu_idle: state=0 cpu_id=2
20970  HwBinder:771_4-20182 (  771) [000] d..2 29480.042585: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20971  HwBinder:771_4-20182 (  771) [000] d..3 29480.042599: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20972  HwBinder:771_4-20182 (  771) [000] d..2 29480.042608: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20973 cdsp_smem_glink-88    (   88) [000] d..2 29480.042634: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20974          <idle>-0     (-----) [000] d..1 29480.042642: cpu_idle: state=0 cpu_id=0
20975          <idle>-0     (-----) [002] d.h4 29480.042662: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20976          <idle>-0     (-----) [002] dnh5 29480.042668: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20977          <idle>-0     (-----) [002] .n.1 29480.042674: cpu_idle: state=4294967295 cpu_id=2
20978          <idle>-0     (-----) [002] d..2 29480.042682: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20979 smem_native_cds-87    (   87) [002] d..2 29480.042706: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20980          <idle>-0     (-----) [002] d..1 29480.042715: cpu_idle: state=0 cpu_id=2
20981          <idle>-0     (-----) [002] d.h4 29480.043016: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20982          <idle>-0     (-----) [002] d.h5 29480.043027: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20983          <idle>-0     (-----) [000] .n.1 29480.043033: cpu_idle: state=4294967295 cpu_id=0
20984          <idle>-0     (-----) [000] d..2 29480.043042: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
20985          <idle>-0     (-----) [002] ...1 29480.043051: cpu_idle: state=4294967295 cpu_id=2
20986          <idle>-0     (-----) [002] d..1 29480.043055: cpu_idle: state=0 cpu_id=2
20987  HwBinder:771_4-20182 (  771) [000] d..2 29480.043070: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20988  HwBinder:771_4-20182 (  771) [000] d..3 29480.043083: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
20989  HwBinder:771_4-20182 (  771) [000] d..2 29480.043092: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
20990 cdsp_smem_glink-88    (   88) [000] d..2 29480.043119: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20991          <idle>-0     (-----) [000] d..1 29480.043127: cpu_idle: state=0 cpu_id=0
20992          <idle>-0     (-----) [002] d.h4 29480.043144: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20993          <idle>-0     (-----) [002] dnh5 29480.043151: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
20994          <idle>-0     (-----) [002] .n.1 29480.043157: cpu_idle: state=4294967295 cpu_id=2
20995          <idle>-0     (-----) [002] d..2 29480.043166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
20996 smem_native_cds-87    (   87) [002] d..2 29480.043189: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20997          <idle>-0     (-----) [002] d..1 29480.043197: cpu_idle: state=0 cpu_id=2
20998          <idle>-0     (-----) [002] d.h4 29480.043497: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
20999          <idle>-0     (-----) [002] d.h5 29480.043508: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21000          <idle>-0     (-----) [000] .n.1 29480.043513: cpu_idle: state=4294967295 cpu_id=0
21001          <idle>-0     (-----) [000] d..2 29480.043522: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21002          <idle>-0     (-----) [002] ...1 29480.043531: cpu_idle: state=4294967295 cpu_id=2
21003          <idle>-0     (-----) [002] d..1 29480.043535: cpu_idle: state=0 cpu_id=2
21004  HwBinder:771_4-20182 (  771) [000] d..2 29480.043549: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21005  HwBinder:771_4-20182 (  771) [000] d..3 29480.043562: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21006  HwBinder:771_4-20182 (  771) [000] d..2 29480.043571: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21007 cdsp_smem_glink-88    (   88) [000] d..2 29480.043597: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21008          <idle>-0     (-----) [000] d..1 29480.043605: cpu_idle: state=0 cpu_id=0
21009          <idle>-0     (-----) [002] d.h4 29480.043625: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21010          <idle>-0     (-----) [002] dnh5 29480.043636: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21011          <idle>-0     (-----) [002] .n.1 29480.043643: cpu_idle: state=4294967295 cpu_id=2
21012          <idle>-0     (-----) [002] d..2 29480.043651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21013 smem_native_cds-87    (   87) [002] d..2 29480.043674: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21014          <idle>-0     (-----) [002] d..1 29480.043682: cpu_idle: state=0 cpu_id=2
21015          <idle>-0     (-----) [002] d.h4 29480.043990: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21016          <idle>-0     (-----) [002] d.h5 29480.044002: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21017          <idle>-0     (-----) [000] .n.1 29480.044007: cpu_idle: state=4294967295 cpu_id=0
21018          <idle>-0     (-----) [000] d..2 29480.044017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21019          <idle>-0     (-----) [002] d..2 29480.044022: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21020          <idle>-0     (-----) [002] dn.3 29480.044030: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21021          <idle>-0     (-----) [002] .n.1 29480.044034: cpu_idle: state=4294967295 cpu_id=2
21022          <idle>-0     (-----) [002] d..2 29480.044043: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21023  HwBinder:771_4-20182 (  771) [000] d..2 29480.044049: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21024     ksoftirqd/2-26    (   26) [002] d.s2 29480.044050: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21025  HwBinder:771_4-20182 (  771) [000] d..3 29480.044084: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21026     ksoftirqd/2-26    (   26) [002] d.s3 29480.044090: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21027     ksoftirqd/2-26    (   26) [002] d..2 29480.044102: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21028  HwBinder:771_4-20182 (  771) [000] d..2 29480.044110: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21029          <idle>-0     (-----) [000] d..1 29480.044117: cpu_idle: state=0 cpu_id=0
21030 cdsp_smem_glink-88    (   88) [002] d..2 29480.044124: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21031  kworker/u16:10-23868 (23868) [002] .... 29480.044142: clk_set_rate: l3_cluster0_vote_clk 300000000
21032  kworker/u16:10-23868 (23868) [002] .... 29480.044158: clk_set_rate: l3_cluster1_vote_clk 300000000
21033  kworker/u16:10-23868 (23868) [002] .... 29480.044161: clk_set_rate: l3_clk 300000000
21034  kworker/u16:10-23868 (23868) [002] d..2 29480.044228: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21035          <idle>-0     (-----) [002] d..1 29480.044243: cpu_idle: state=0 cpu_id=2
21036          <idle>-0     (-----) [002] d.h4 29480.044964: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21037          <idle>-0     (-----) [002] dnh5 29480.044976: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21038          <idle>-0     (-----) [002] .n.1 29480.044985: cpu_idle: state=4294967295 cpu_id=2
21039          <idle>-0     (-----) [002] d..2 29480.044995: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21040 smem_native_cds-87    (   87) [002] d..2 29480.045024: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21041          <idle>-0     (-----) [002] d..1 29480.045034: cpu_idle: state=0 cpu_id=2
21042          <idle>-0     (-----) [002] d.h4 29480.045368: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21043          <idle>-0     (-----) [002] d.h5 29480.045386: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21044          <idle>-0     (-----) [000] .n.1 29480.045393: cpu_idle: state=4294967295 cpu_id=0
21045          <idle>-0     (-----) [000] d..2 29480.045402: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21046          <idle>-0     (-----) [002] ...1 29480.045414: cpu_idle: state=4294967295 cpu_id=2
21047          <idle>-0     (-----) [002] d..1 29480.045419: cpu_idle: state=0 cpu_id=2
21048  HwBinder:771_4-20182 (  771) [000] d..2 29480.045440: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21049  HwBinder:771_4-20182 (  771) [000] d..3 29480.045475: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21050  HwBinder:771_4-20182 (  771) [000] d..2 29480.045486: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21051 cdsp_smem_glink-88    (   88) [000] d..2 29480.045520: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21052          <idle>-0     (-----) [000] d..1 29480.045529: cpu_idle: state=0 cpu_id=0
21053          <idle>-0     (-----) [002] d.h4 29480.046333: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21054          <idle>-0     (-----) [002] dnh5 29480.046347: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21055          <idle>-0     (-----) [002] .n.1 29480.046354: cpu_idle: state=4294967295 cpu_id=2
21056          <idle>-0     (-----) [002] d..2 29480.046364: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21057 smem_native_cds-87    (   87) [002] d..2 29480.046392: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21058          <idle>-0     (-----) [002] d..1 29480.046402: cpu_idle: state=0 cpu_id=2
21059          <idle>-0     (-----) [002] d.h4 29480.046729: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21060          <idle>-0     (-----) [002] d.h5 29480.046743: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21061          <idle>-0     (-----) [000] .n.1 29480.046749: cpu_idle: state=4294967295 cpu_id=0
21062          <idle>-0     (-----) [000] d..2 29480.046757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21063          <idle>-0     (-----) [002] ...1 29480.046771: cpu_idle: state=4294967295 cpu_id=2
21064          <idle>-0     (-----) [002] d..1 29480.046775: cpu_idle: state=0 cpu_id=2
21065  HwBinder:771_4-20182 (  771) [000] d..2 29480.046794: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21066  HwBinder:771_4-20182 (  771) [000] d..3 29480.046813: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21067  HwBinder:771_4-20182 (  771) [000] d..2 29480.046823: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21068 cdsp_smem_glink-88    (   88) [000] d..2 29480.046854: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21069          <idle>-0     (-----) [000] d..1 29480.046863: cpu_idle: state=0 cpu_id=0
21070          <idle>-0     (-----) [003] ...1 29480.047020: cpu_idle: state=4294967295 cpu_id=3
21071          <idle>-0     (-----) [003] d..1 29480.047024: cpu_idle: state=2 cpu_id=3
21072          <idle>-0     (-----) [000] d.s2 29480.047087: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21073          <idle>-0     (-----) [000] dns3 29480.047101: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21074          <idle>-0     (-----) [000] .n.1 29480.047117: cpu_idle: state=4294967295 cpu_id=0
21075          <idle>-0     (-----) [000] d..2 29480.047125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
21076     rcu_preempt-7     (    7) [000] d..2 29480.047134: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
21077     rcu_preempt-7     (    7) [000] d..3 29480.047150: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
21078     rcu_preempt-7     (    7) [000] d..2 29480.047162: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
21079         rcuop/6-61    (   61) [000] d..2 29480.047211: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21080          <idle>-0     (-----) [000] d..1 29480.047223: cpu_idle: state=0 cpu_id=0
21081          <idle>-0     (-----) [002] d.h4 29480.047709: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21082          <idle>-0     (-----) [002] dnh5 29480.047718: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21083          <idle>-0     (-----) [002] .n.1 29480.047724: cpu_idle: state=4294967295 cpu_id=2
21084          <idle>-0     (-----) [002] d..2 29480.047735: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21085 smem_native_cds-87    (   87) [002] d..2 29480.047767: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21086          <idle>-0     (-----) [002] d..1 29480.047777: cpu_idle: state=0 cpu_id=2
21087          <idle>-0     (-----) [002] d.h4 29480.048112: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21088          <idle>-0     (-----) [002] d.h5 29480.048128: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21089          <idle>-0     (-----) [000] .n.1 29480.048135: cpu_idle: state=4294967295 cpu_id=0
21090          <idle>-0     (-----) [000] d..2 29480.048146: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21091          <idle>-0     (-----) [002] ...1 29480.048156: cpu_idle: state=4294967295 cpu_id=2
21092          <idle>-0     (-----) [002] d..1 29480.048160: cpu_idle: state=0 cpu_id=2
21093  HwBinder:771_4-20182 (  771) [000] d..2 29480.048198: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21094  HwBinder:771_4-20182 (  771) [000] d..3 29480.048218: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21095  HwBinder:771_4-20182 (  771) [000] d..2 29480.048230: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21096 cdsp_smem_glink-88    (   88) [000] d..2 29480.048263: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21097          <idle>-0     (-----) [000] d..1 29480.048275: cpu_idle: state=0 cpu_id=0
21098          <idle>-0     (-----) [002] d.h4 29480.049077: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21099          <idle>-0     (-----) [002] dnh5 29480.049091: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21100          <idle>-0     (-----) [002] .n.1 29480.049098: cpu_idle: state=4294967295 cpu_id=2
21101          <idle>-0     (-----) [002] d..2 29480.049108: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21102 smem_native_cds-87    (   87) [002] d..2 29480.049137: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21103          <idle>-0     (-----) [002] d..1 29480.049147: cpu_idle: state=0 cpu_id=2
21104          <idle>-0     (-----) [002] d.h4 29480.049565: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21105          <idle>-0     (-----) [002] d.h5 29480.049579: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21106          <idle>-0     (-----) [000] .n.1 29480.049586: cpu_idle: state=4294967295 cpu_id=0
21107          <idle>-0     (-----) [000] d..2 29480.049597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21108          <idle>-0     (-----) [002] ...1 29480.049607: cpu_idle: state=4294967295 cpu_id=2
21109          <idle>-0     (-----) [002] d..1 29480.049611: cpu_idle: state=0 cpu_id=2
21110  HwBinder:771_4-20182 (  771) [000] d..2 29480.049636: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21111  HwBinder:771_4-20182 (  771) [000] d..3 29480.049655: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21112  HwBinder:771_4-20182 (  771) [000] d..2 29480.049666: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21113 cdsp_smem_glink-88    (   88) [000] d..2 29480.049698: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21114          <idle>-0     (-----) [000] d..1 29480.049710: cpu_idle: state=0 cpu_id=0
21115          <idle>-0     (-----) [002] d.h4 29480.050536: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21116          <idle>-0     (-----) [002] dnh5 29480.050544: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21117          <idle>-0     (-----) [002] .n.1 29480.050550: cpu_idle: state=4294967295 cpu_id=2
21118          <idle>-0     (-----) [002] d..2 29480.050562: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21119 smem_native_cds-87    (   87) [002] d..2 29480.050597: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21120          <idle>-0     (-----) [002] d..2 29480.050600: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21121          <idle>-0     (-----) [002] dn.3 29480.050607: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21122          <idle>-0     (-----) [002] d..2 29480.050613: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21123     ksoftirqd/2-26    (   26) [002] d..2 29480.050629: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21124          <idle>-0     (-----) [002] d..1 29480.050641: cpu_idle: state=0 cpu_id=2
21125          <idle>-0     (-----) [002] d.h4 29480.051001: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21126          <idle>-0     (-----) [002] d.h5 29480.051018: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21127          <idle>-0     (-----) [000] .n.1 29480.051024: cpu_idle: state=4294967295 cpu_id=0
21128          <idle>-0     (-----) [000] d..2 29480.051037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21129          <idle>-0     (-----) [002] ...1 29480.051046: cpu_idle: state=4294967295 cpu_id=2
21130          <idle>-0     (-----) [002] d..1 29480.051050: cpu_idle: state=0 cpu_id=2
21131  HwBinder:771_4-20182 (  771) [000] d..2 29480.051074: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21132  HwBinder:771_4-20182 (  771) [000] d..3 29480.051093: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21133  HwBinder:771_4-20182 (  771) [000] d..2 29480.051103: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21134 cdsp_smem_glink-88    (   88) [000] d..2 29480.051136: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21135          <idle>-0     (-----) [000] d..1 29480.051145: cpu_idle: state=0 cpu_id=0
21136          <idle>-0     (-----) [002] d.h4 29480.051968: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21137          <idle>-0     (-----) [002] dnh5 29480.051982: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21138          <idle>-0     (-----) [002] .n.1 29480.051989: cpu_idle: state=4294967295 cpu_id=2
21139          <idle>-0     (-----) [002] d..2 29480.051999: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21140 smem_native_cds-87    (   87) [002] d..2 29480.052029: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21141          <idle>-0     (-----) [002] d..1 29480.052039: cpu_idle: state=0 cpu_id=2
21142          <idle>-0     (-----) [002] d.h4 29480.052438: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21143          <idle>-0     (-----) [002] d.h5 29480.052452: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21144          <idle>-0     (-----) [000] .n.1 29480.052458: cpu_idle: state=4294967295 cpu_id=0
21145          <idle>-0     (-----) [000] d..2 29480.052467: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21146          <idle>-0     (-----) [002] ...1 29480.052480: cpu_idle: state=4294967295 cpu_id=2
21147          <idle>-0     (-----) [002] d..1 29480.052483: cpu_idle: state=0 cpu_id=2
21148  HwBinder:771_4-20182 (  771) [000] d..2 29480.052503: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21149  HwBinder:771_4-20182 (  771) [000] d..3 29480.052521: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21150  HwBinder:771_4-20182 (  771) [000] d..2 29480.052531: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21151 cdsp_smem_glink-88    (   88) [000] d..2 29480.052563: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21152          <idle>-0     (-----) [000] d..1 29480.052572: cpu_idle: state=0 cpu_id=0
21153          <idle>-0     (-----) [002] d.h4 29480.053407: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21154          <idle>-0     (-----) [002] dnh5 29480.053415: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21155          <idle>-0     (-----) [002] .n.1 29480.053421: cpu_idle: state=4294967295 cpu_id=2
21156          <idle>-0     (-----) [002] d..2 29480.053431: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21157 smem_native_cds-87    (   87) [002] d..2 29480.053461: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21158          <idle>-0     (-----) [002] d..1 29480.053472: cpu_idle: state=0 cpu_id=2
21159          <idle>-0     (-----) [000] d.s2 29480.053754: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21160          <idle>-0     (-----) [000] dns3 29480.053769: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
21161          <idle>-0     (-----) [000] dns3 29480.053774: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21162          <idle>-0     (-----) [000] dns4 29480.053801: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21163          <idle>-0     (-----) [000] .n.1 29480.053812: cpu_idle: state=4294967295 cpu_id=0
21164          <idle>-0     (-----) [000] d..2 29480.053822: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
21165     rcu_preempt-7     (    7) [000] d..2 29480.053830: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
21166     rcu_preempt-7     (    7) [000] d..3 29480.053841: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
21167     rcu_preempt-7     (    7) [000] d..2 29480.053843: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
21168     rcu_preempt-7     (    7) [000] d..3 29480.053852: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
21169     rcu_preempt-7     (    7) [000] d..2 29480.053860: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
21170          <idle>-0     (-----) [002] d.h4 29480.053861: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21171         rcuop/2-29    (   29) [000] d..2 29480.053865: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
21172          <idle>-0     (-----) [002] d.h5 29480.053888: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
21173         rcuop/2-29    (   29) [000] d..3 29480.053900: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
21174         rcuop/2-29    (   29) [000] d..2 29480.053919: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
21175          <idle>-0     (-----) [002] ...1 29480.053921: cpu_idle: state=4294967295 cpu_id=2
21176          <idle>-0     (-----) [002] d..1 29480.053925: cpu_idle: state=0 cpu_id=2
21177         rcuop/3-37    (   37) [000] d..2 29480.053933: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
21178         rcuop/0-10    (   10) [000] d..2 29480.053937: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
21179         rcuop/0-10    (   10) [000] d..3 29480.053966: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
21180         rcuop/0-10    (   10) [000] d..2 29480.053975: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
21181         rcuop/1-21    (   21) [000] d..2 29480.053987: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21182          <idle>-0     (-----) [001] .n.1 29480.054027: cpu_idle: state=4294967295 cpu_id=1
21183          <idle>-0     (-----) [001] d..2 29480.054054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21184  kworker/u16:10-23868 (23868) [000] d..2 29480.054115: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21185  HwBinder:771_4-20182 (  771) [001] d..2 29480.054130: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21186          <idle>-0     (-----) [000] d..1 29480.054135: cpu_idle: state=0 cpu_id=0
21187  HwBinder:771_4-20182 (  771) [001] d..3 29480.054176: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
21188  HwBinder:771_4-20182 (  771) [001] d..2 29480.054188: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21189 cdsp_smem_glink-88    (   88) [001] d..2 29480.054230: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21190          <idle>-0     (-----) [001] d..1 29480.054247: cpu_idle: state=2 cpu_id=1
21191          <idle>-0     (-----) [002] d.h4 29480.054806: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21192          <idle>-0     (-----) [002] dnh5 29480.054819: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21193          <idle>-0     (-----) [002] .n.1 29480.054826: cpu_idle: state=4294967295 cpu_id=2
21194          <idle>-0     (-----) [002] d..2 29480.054837: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21195 smem_native_cds-87    (   87) [002] d..2 29480.054865: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21196          <idle>-0     (-----) [002] d..1 29480.054877: cpu_idle: state=0 cpu_id=2
21197          <idle>-0     (-----) [002] d.h4 29480.055276: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
21198          <idle>-0     (-----) [002] d.h5 29480.055296: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21199          <idle>-0     (-----) [000] .n.1 29480.055304: cpu_idle: state=4294967295 cpu_id=0
21200          <idle>-0     (-----) [000] d..2 29480.055316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21201          <idle>-0     (-----) [002] ...1 29480.055323: cpu_idle: state=4294967295 cpu_id=2
21202          <idle>-0     (-----) [002] d..1 29480.055328: cpu_idle: state=0 cpu_id=2
21203  HwBinder:771_4-20182 (  771) [000] d..2 29480.055384: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
21204  HwBinder:771_4-20182 (  771) [000] d..3 29480.055404: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
21205  HwBinder:771_4-20182 (  771) [000] d..2 29480.055427: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21206          <idle>-0     (-----) [000] d..1 29480.055442: cpu_idle: state=0 cpu_id=0
21207          <idle>-0     (-----) [001] .n.1 29480.055545: cpu_idle: state=4294967295 cpu_id=1
21208          <idle>-0     (-----) [001] d..2 29480.055568: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21209 cdsp_smem_glink-88    (   88) [001] d..2 29480.055621: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21210          <idle>-0     (-----) [001] d..1 29480.055637: cpu_idle: state=0 cpu_id=1
21211          <idle>-0     (-----) [002] d.h4 29480.056234: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21212          <idle>-0     (-----) [002] dnh5 29480.056243: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21213          <idle>-0     (-----) [002] .n.1 29480.056250: cpu_idle: state=4294967295 cpu_id=2
21214          <idle>-0     (-----) [002] d..2 29480.056260: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21215 smem_native_cds-87    (   87) [002] d..2 29480.056289: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21216          <idle>-0     (-----) [002] d..1 29480.056299: cpu_idle: state=0 cpu_id=2
21217          <idle>-0     (-----) [002] d.h4 29480.056707: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21218          <idle>-0     (-----) [002] d.h5 29480.056720: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21219          <idle>-0     (-----) [000] .n.1 29480.056728: cpu_idle: state=4294967295 cpu_id=0
21220          <idle>-0     (-----) [000] d..2 29480.056739: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21221          <idle>-0     (-----) [002] ...1 29480.056747: cpu_idle: state=4294967295 cpu_id=2
21222          <idle>-0     (-----) [002] d..1 29480.056751: cpu_idle: state=0 cpu_id=2
21223  HwBinder:771_4-20182 (  771) [000] d..2 29480.056777: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
21224  HwBinder:771_4-20182 (  771) [000] d..3 29480.056815: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21225  HwBinder:771_4-20182 (  771) [000] d..2 29480.056827: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21226 cdsp_smem_glink-88    (   88) [000] d..2 29480.056863: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21227          <idle>-0     (-----) [000] d..1 29480.056877: cpu_idle: state=0 cpu_id=0
21228          <idle>-0     (-----) [002] d.h4 29480.057678: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21229          <idle>-0     (-----) [002] dnh5 29480.057698: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21230          <idle>-0     (-----) [002] dnh3 29480.057759: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
21231          <idle>-0     (-----) [002] dnh3 29480.057772: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
21232          <idle>-0     (-----) [002] dnh4 29480.057783: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
21233          <idle>-0     (-----) [002] .n.1 29480.057789: cpu_idle: state=4294967295 cpu_id=2
21234          <idle>-0     (-----) [002] d..2 29480.057803: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21235 smem_native_cds-87    (   87) [002] d..2 29480.057841: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21236          <idle>-0     (-----) [002] d..2 29480.057844: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21237          <idle>-0     (-----) [002] dn.3 29480.057852: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21238          <idle>-0     (-----) [002] d..2 29480.057859: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21239     ksoftirqd/2-26    (   26) [002] d.s2 29480.057870: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
21240     ksoftirqd/2-26    (   26) [002] d.s3 29480.057882: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
21241     ksoftirqd/2-26    (   26) [002] d..2 29480.057891: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
21242          <idle>-0     (-----) [003] .n.1 29480.057933: cpu_idle: state=4294967295 cpu_id=3
21243     kworker/2:2-13636 (13636) [002] d..2 29480.057953: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21244          <idle>-0     (-----) [003] d..2 29480.057953: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
21245          <idle>-0     (-----) [002] d..1 29480.057968: cpu_idle: state=0 cpu_id=2
21246         sugov:0-559   (  559) [003] .... 29480.057980: clk_set_rate: pwrcl_clk 748800000
21247         sugov:0-559   (  559) [003] .... 29480.057990: clk_set_rate: cpu3_pwrcl_clk 1228800000
21248         sugov:0-559   (  559) [003] .... 29480.057998: clk_set_rate: cpu2_pwrcl_clk 1228800000
21249         sugov:0-559   (  559) [003] .... 29480.058006: clk_set_rate: cpu1_pwrcl_clk 1228800000
21250         sugov:0-559   (  559) [003] .... 29480.058013: clk_set_rate: cpu0_pwrcl_clk 748800000
21251          <idle>-0     (-----) [002] d.h4 29480.058043: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21252          <idle>-0     (-----) [002] d.h5 29480.058070: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21253          <idle>-0     (-----) [000] .n.1 29480.058081: cpu_idle: state=4294967295 cpu_id=0
21254          <idle>-0     (-----) [000] d..2 29480.058098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21255          <idle>-0     (-----) [002] ...1 29480.058116: cpu_idle: state=4294967295 cpu_id=2
21256          <idle>-0     (-----) [002] d..1 29480.058122: cpu_idle: state=0 cpu_id=2
21257         sugov:0-559   (  559) [003] .... 29480.058127: cpu_frequency: state=748800 cpu_id=0
21258         sugov:0-559   (  559) [003] .... 29480.058146: cpu_frequency: state=748800 cpu_id=1
21259         sugov:0-559   (  559) [003] .... 29480.058151: cpu_frequency: state=748800 cpu_id=2
21260  HwBinder:771_4-20182 (  771) [000] d..2 29480.058151: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21261         sugov:0-559   (  559) [003] .... 29480.058156: cpu_frequency: state=748800 cpu_id=3
21262         sugov:0-559   (  559) [003] d..2 29480.058206: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21263  HwBinder:771_4-20182 (  771) [000] d..3 29480.058223: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
21264          <idle>-0     (-----) [003] d..2 29480.058238: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21265  HwBinder:771_4-20182 (  771) [000] d..2 29480.058254: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21266          <idle>-0     (-----) [000] d..1 29480.058274: cpu_idle: state=0 cpu_id=0
21267 cdsp_smem_glink-88    (   88) [003] d..2 29480.058293: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21268          <idle>-0     (-----) [003] d..1 29480.058310: cpu_idle: state=0 cpu_id=3
21269          <idle>-0     (-----) [005] dnh2 29480.058458: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
21270          <idle>-0     (-----) [005] .n.1 29480.058464: cpu_idle: state=4294967295 cpu_id=5
21271          <idle>-0     (-----) [005] d..2 29480.058471: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
21272         sugov:4-560   (  560) [005] .... 29480.058488: clk_set_rate: perfcl_clk 979200000
21273         sugov:4-560   (  560) [005] .... 29480.058489: clk_set_rate: cpu7_perfcl_clk 2649600000
21274         sugov:4-560   (  560) [005] .... 29480.058495: clk_set_rate: cpu6_perfcl_clk 2649600000
21275         sugov:4-560   (  560) [005] .... 29480.058499: clk_set_rate: cpu5_perfcl_clk 2649600000
21276         sugov:4-560   (  560) [005] .... 29480.058504: clk_set_rate: cpu4_perfcl_clk 979200000
21277         sugov:4-560   (  560) [005] .... 29480.058510: cpu_frequency: state=979200 cpu_id=4
21278         sugov:4-560   (  560) [005] d..2 29480.058673: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
21279          <idle>-0     (-----) [005] d..1 29480.058688: cpu_idle: state=2 cpu_id=5
21280          <idle>-0     (-----) [003] d.s3 29480.058720: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
21281          <idle>-0     (-----) [003] ...1 29480.058750: cpu_idle: state=4294967295 cpu_id=3
21282          <idle>-0     (-----) [003] d..1 29480.058756: cpu_idle: state=0 cpu_id=3
21283          <idle>-0     (-----) [002] d.h4 29480.059004: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21284          <idle>-0     (-----) [002] dnh5 29480.059016: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21285          <idle>-0     (-----) [002] .n.1 29480.059026: cpu_idle: state=4294967295 cpu_id=2
21286          <idle>-0     (-----) [002] d..2 29480.059039: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21287 smem_native_cds-87    (   87) [002] d..2 29480.059081: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21288          <idle>-0     (-----) [002] d..1 29480.059097: cpu_idle: state=0 cpu_id=2
21289          <idle>-0     (-----) [002] d.h4 29480.059599: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21290          <idle>-0     (-----) [002] d.h5 29480.059617: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21291          <idle>-0     (-----) [000] .n.1 29480.059625: cpu_idle: state=4294967295 cpu_id=0
21292          <idle>-0     (-----) [000] d..2 29480.059639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21293          <idle>-0     (-----) [002] ...1 29480.059658: cpu_idle: state=4294967295 cpu_id=2
21294          <idle>-0     (-----) [002] d..1 29480.059664: cpu_idle: state=0 cpu_id=2
21295          <idle>-0     (-----) [005] dnh2 29480.059667: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
21296          <idle>-0     (-----) [005] .n.1 29480.059675: cpu_idle: state=4294967295 cpu_id=5
21297          <idle>-0     (-----) [005] d..2 29480.059685: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
21298  HwBinder:771_4-20182 (  771) [000] d..2 29480.059689: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
21299         sugov:4-560   (  560) [005] .... 29480.059696: cpu_frequency: state=979200 cpu_id=5
21300         sugov:4-560   (  560) [005] .... 29480.059701: cpu_frequency: state=979200 cpu_id=6
21301         sugov:4-560   (  560) [005] .... 29480.059704: cpu_frequency: state=979200 cpu_id=7
21302         sugov:4-560   (  560) [005] d..2 29480.059722: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
21303          <idle>-0     (-----) [005] d..1 29480.059731: cpu_idle: state=2 cpu_id=5
21304  HwBinder:771_4-20182 (  771) [000] d..3 29480.059737: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21305  HwBinder:771_4-20182 (  771) [000] d..2 29480.059753: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21306 cdsp_smem_glink-88    (   88) [000] d..2 29480.059800: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21307          <idle>-0     (-----) [000] d..1 29480.059817: cpu_idle: state=0 cpu_id=0
21308          <idle>-0     (-----) [002] d.h4 29480.060976: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21309          <idle>-0     (-----) [002] dnh5 29480.060996: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21310          <idle>-0     (-----) [002] .n.1 29480.061006: cpu_idle: state=4294967295 cpu_id=2
21311          <idle>-0     (-----) [002] d..2 29480.061022: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21312 smem_native_cds-87    (   87) [002] d..2 29480.061072: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21313          <idle>-0     (-----) [002] d..2 29480.061076: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21314          <idle>-0     (-----) [002] dn.3 29480.061085: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21315          <idle>-0     (-----) [002] d..2 29480.061094: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21316     ksoftirqd/2-26    (   26) [002] d..2 29480.061118: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21317          <idle>-0     (-----) [002] d..1 29480.061134: cpu_idle: state=0 cpu_id=2
21318          <idle>-0     (-----) [001] ...1 29480.061652: cpu_idle: state=4294967295 cpu_id=1
21319          <idle>-0     (-----) [001] d..1 29480.061658: cpu_idle: state=2 cpu_id=1
21320          <idle>-0     (-----) [002] d.h4 29480.061739: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21321          <idle>-0     (-----) [002] d.h5 29480.061759: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21322          <idle>-0     (-----) [000] .n.1 29480.061767: cpu_idle: state=4294967295 cpu_id=0
21323          <idle>-0     (-----) [000] d..2 29480.061782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21324          <idle>-0     (-----) [002] ...1 29480.061802: cpu_idle: state=4294967295 cpu_id=2
21325          <idle>-0     (-----) [002] d..1 29480.061808: cpu_idle: state=0 cpu_id=2
21326  HwBinder:771_4-20182 (  771) [000] d..2 29480.061839: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21327  HwBinder:771_4-20182 (  771) [000] d..3 29480.061867: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21328  HwBinder:771_4-20182 (  771) [000] d..2 29480.061883: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21329 cdsp_smem_glink-88    (   88) [000] d..2 29480.061931: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21330          <idle>-0     (-----) [000] d..1 29480.061949: cpu_idle: state=0 cpu_id=0
21331          <idle>-0     (-----) [002] d.h4 29480.063125: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21332          <idle>-0     (-----) [002] dnh5 29480.063144: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21333          <idle>-0     (-----) [002] .n.1 29480.063155: cpu_idle: state=4294967295 cpu_id=2
21334          <idle>-0     (-----) [002] d..2 29480.063169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21335 smem_native_cds-87    (   87) [002] d..2 29480.063210: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21336          <idle>-0     (-----) [002] d..1 29480.063225: cpu_idle: state=0 cpu_id=2
21337          <idle>-0     (-----) [002] d.h4 29480.063853: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21338          <idle>-0     (-----) [002] d.h5 29480.063873: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21339          <idle>-0     (-----) [000] .n.1 29480.063881: cpu_idle: state=4294967295 cpu_id=0
21340          <idle>-0     (-----) [000] d..2 29480.063898: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21341          <idle>-0     (-----) [002] d..2 29480.063910: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21342          <idle>-0     (-----) [002] dn.3 29480.063919: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21343          <idle>-0     (-----) [002] .n.1 29480.063924: cpu_idle: state=4294967295 cpu_id=2
21344          <idle>-0     (-----) [002] d..2 29480.063940: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21345  HwBinder:771_4-20182 (  771) [000] d..2 29480.063949: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21346     ksoftirqd/2-26    (   26) [002] d.s2 29480.063949: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21347  HwBinder:771_4-20182 (  771) [000] d..3 29480.064009: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21348     ksoftirqd/2-26    (   26) [002] d.s3 29480.064021: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21349     ksoftirqd/2-26    (   26) [002] d..2 29480.064041: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21350  HwBinder:771_4-20182 (  771) [000] d..2 29480.064071: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21351          <idle>-0     (-----) [000] d..1 29480.064126: cpu_idle: state=0 cpu_id=0
21352  kworker/u16:10-23868 (23868) [002] d..2 29480.064192: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21353 cdsp_smem_glink-88    (   88) [002] d..2 29480.064249: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21354          <idle>-0     (-----) [002] d..1 29480.064269: cpu_idle: state=0 cpu_id=2
21355          <idle>-0     (-----) [002] d.h4 29480.065229: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21356          <idle>-0     (-----) [002] dnh5 29480.065250: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21357          <idle>-0     (-----) [002] .n.1 29480.065265: cpu_idle: state=4294967295 cpu_id=2
21358          <idle>-0     (-----) [002] d..2 29480.065278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21359 smem_native_cds-87    (   87) [002] d..2 29480.065320: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21360          <idle>-0     (-----) [002] d..1 29480.065336: cpu_idle: state=0 cpu_id=2
21361          <idle>-0     (-----) [002] d.h4 29480.065916: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21362          <idle>-0     (-----) [002] d.h5 29480.065938: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21363          <idle>-0     (-----) [000] .n.1 29480.065945: cpu_idle: state=4294967295 cpu_id=0
21364          <idle>-0     (-----) [000] d..2 29480.065960: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21365          <idle>-0     (-----) [002] ...1 29480.065980: cpu_idle: state=4294967295 cpu_id=2
21366          <idle>-0     (-----) [002] d..1 29480.065986: cpu_idle: state=0 cpu_id=2
21367  HwBinder:771_4-20182 (  771) [000] d..2 29480.066013: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21368  HwBinder:771_4-20182 (  771) [000] dn.3 29480.066066: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21369  HwBinder:771_4-20182 (  771) [000] d..2 29480.066078: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21370 cdsp_smem_glink-88    (   88) [000] d..2 29480.066117: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21371  HwBinder:771_4-20182 (  771) [000] d..2 29480.066141: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21372          <idle>-0     (-----) [000] d..1 29480.066159: cpu_idle: state=0 cpu_id=0
21373          <idle>-0     (-----) [002] d.h4 29480.067329: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21374          <idle>-0     (-----) [002] dnh5 29480.067348: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21375          <idle>-0     (-----) [002] .n.1 29480.067359: cpu_idle: state=4294967295 cpu_id=2
21376          <idle>-0     (-----) [002] d..2 29480.067375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21377 smem_native_cds-87    (   87) [002] d..2 29480.067426: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21378          <idle>-0     (-----) [002] d..2 29480.067432: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21379          <idle>-0     (-----) [002] dn.3 29480.067442: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21380          <idle>-0     (-----) [002] d..2 29480.067451: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21381     ksoftirqd/2-26    (   26) [002] d..2 29480.067474: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21382          <idle>-0     (-----) [002] d..1 29480.067490: cpu_idle: state=0 cpu_id=2
21383          <idle>-0     (-----) [002] d.h4 29480.067995: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21384          <idle>-0     (-----) [002] d.h5 29480.068015: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21385          <idle>-0     (-----) [000] .n.1 29480.068024: cpu_idle: state=4294967295 cpu_id=0
21386          <idle>-0     (-----) [000] d..2 29480.068039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21387          <idle>-0     (-----) [002] ...1 29480.068057: cpu_idle: state=4294967295 cpu_id=2
21388          <idle>-0     (-----) [002] d..1 29480.068063: cpu_idle: state=0 cpu_id=2
21389  HwBinder:771_4-20182 (  771) [000] d..2 29480.068115: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21390  HwBinder:771_4-20182 (  771) [000] dn.3 29480.068144: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21391  HwBinder:771_4-20182 (  771) [000] d..2 29480.068156: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21392 cdsp_smem_glink-88    (   88) [000] d..2 29480.068191: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21393  HwBinder:771_4-20182 (  771) [000] d..2 29480.068217: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21394          <idle>-0     (-----) [000] d..1 29480.068236: cpu_idle: state=0 cpu_id=0
21395          <idle>-0     (-----) [002] d.h4 29480.069385: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21396          <idle>-0     (-----) [002] dnh5 29480.069403: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21397          <idle>-0     (-----) [002] .n.1 29480.069413: cpu_idle: state=4294967295 cpu_id=2
21398          <idle>-0     (-----) [002] d..2 29480.069427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21399 smem_native_cds-87    (   87) [002] d..2 29480.069467: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21400          <idle>-0     (-----) [002] d..1 29480.069483: cpu_idle: state=0 cpu_id=2
21401          <idle>-0     (-----) [002] d.h4 29480.070211: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21402          <idle>-0     (-----) [002] d.h5 29480.070231: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21403          <idle>-0     (-----) [000] .n.1 29480.070239: cpu_idle: state=4294967295 cpu_id=0
21404          <idle>-0     (-----) [000] d..2 29480.070253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21405          <idle>-0     (-----) [002] ...1 29480.070278: cpu_idle: state=4294967295 cpu_id=2
21406          <idle>-0     (-----) [002] d..1 29480.070285: cpu_idle: state=0 cpu_id=2
21407  HwBinder:771_4-20182 (  771) [000] d..2 29480.070308: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21408  HwBinder:771_4-20182 (  771) [000] dn.3 29480.070335: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21409  HwBinder:771_4-20182 (  771) [000] d..2 29480.070345: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21410 cdsp_smem_glink-88    (   88) [000] d..2 29480.070381: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21411  HwBinder:771_4-20182 (  771) [000] d..2 29480.070404: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21412          <idle>-0     (-----) [000] d..1 29480.070478: cpu_idle: state=0 cpu_id=0
21413          <idle>-0     (-----) [002] d.h4 29480.071673: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21414          <idle>-0     (-----) [002] dnh5 29480.071691: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21415          <idle>-0     (-----) [002] .n.1 29480.071701: cpu_idle: state=4294967295 cpu_id=2
21416          <idle>-0     (-----) [002] d..2 29480.071718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21417 smem_native_cds-87    (   87) [002] d..2 29480.071765: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21418          <idle>-0     (-----) [002] d..1 29480.071781: cpu_idle: state=0 cpu_id=2
21419          <idle>-0     (-----) [002] d.h4 29480.072474: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21420          <idle>-0     (-----) [002] d.h5 29480.072495: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21421          <idle>-0     (-----) [000] .n.1 29480.072503: cpu_idle: state=4294967295 cpu_id=0
21422          <idle>-0     (-----) [000] d..2 29480.072518: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21423          <idle>-0     (-----) [002] ...1 29480.072536: cpu_idle: state=4294967295 cpu_id=2
21424          <idle>-0     (-----) [002] d..1 29480.072543: cpu_idle: state=0 cpu_id=2
21425  HwBinder:771_4-20182 (  771) [000] d..2 29480.072572: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21426  HwBinder:771_4-20182 (  771) [000] dn.3 29480.072601: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21427  HwBinder:771_4-20182 (  771) [000] d..2 29480.072612: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21428 cdsp_smem_glink-88    (   88) [000] d..2 29480.072650: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21429  HwBinder:771_4-20182 (  771) [000] d..2 29480.072674: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21430          <idle>-0     (-----) [000] d..1 29480.072692: cpu_idle: state=0 cpu_id=0
21431          <idle>-0     (-----) [002] d.h4 29480.073888: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21432          <idle>-0     (-----) [002] dnh5 29480.073906: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21433          <idle>-0     (-----) [002] .n.1 29480.073917: cpu_idle: state=4294967295 cpu_id=2
21434          <idle>-0     (-----) [002] d..2 29480.073933: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21435 smem_native_cds-87    (   87) [002] d..2 29480.073983: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21436          <idle>-0     (-----) [002] d..2 29480.073987: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21437          <idle>-0     (-----) [002] dn.3 29480.073996: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21438          <idle>-0     (-----) [002] d..2 29480.074005: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21439     ksoftirqd/2-26    (   26) [002] d.s2 29480.074013: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21440     ksoftirqd/2-26    (   26) [002] d.s3 29480.074032: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21441     ksoftirqd/2-26    (   26) [002] d..2 29480.074049: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21442  kworker/u16:10-23868 (23868) [002] d..2 29480.074141: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21443          <idle>-0     (-----) [002] d..1 29480.074162: cpu_idle: state=0 cpu_id=2
21444          <idle>-0     (-----) [002] d.h4 29480.074465: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21445          <idle>-0     (-----) [002] d.h5 29480.074485: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21446          <idle>-0     (-----) [000] .n.1 29480.074492: cpu_idle: state=4294967295 cpu_id=0
21447          <idle>-0     (-----) [000] d..2 29480.074507: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21448          <idle>-0     (-----) [002] ...1 29480.074528: cpu_idle: state=4294967295 cpu_id=2
21449          <idle>-0     (-----) [002] d..1 29480.074535: cpu_idle: state=0 cpu_id=2
21450  HwBinder:771_4-20182 (  771) [000] d..2 29480.074555: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21451  HwBinder:771_4-20182 (  771) [000] dn.3 29480.074581: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21452  HwBinder:771_4-20182 (  771) [000] d..2 29480.074591: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21453 cdsp_smem_glink-88    (   88) [000] d..2 29480.074629: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21454  HwBinder:771_4-20182 (  771) [000] d..2 29480.074652: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21455          <idle>-0     (-----) [000] d..1 29480.074670: cpu_idle: state=0 cpu_id=0
21456          <idle>-0     (-----) [002] d.h4 29480.075750: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21457          <idle>-0     (-----) [002] dnh5 29480.075762: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21458          <idle>-0     (-----) [002] .n.1 29480.075772: cpu_idle: state=4294967295 cpu_id=2
21459          <idle>-0     (-----) [002] d..2 29480.075787: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21460 smem_native_cds-87    (   87) [002] d..2 29480.075830: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21461          <idle>-0     (-----) [002] d..1 29480.075846: cpu_idle: state=0 cpu_id=2
21462          <idle>-0     (-----) [002] d.h4 29480.076378: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21463          <idle>-0     (-----) [002] d.h5 29480.076400: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21464          <idle>-0     (-----) [000] .n.1 29480.076408: cpu_idle: state=4294967295 cpu_id=0
21465          <idle>-0     (-----) [000] d..2 29480.076421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21466          <idle>-0     (-----) [002] ...1 29480.076440: cpu_idle: state=4294967295 cpu_id=2
21467          <idle>-0     (-----) [002] d..1 29480.076447: cpu_idle: state=0 cpu_id=2
21468  HwBinder:771_4-20182 (  771) [000] d..2 29480.076470: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21469  HwBinder:771_4-20182 (  771) [000] dn.3 29480.076495: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21470  HwBinder:771_4-20182 (  771) [000] d..2 29480.076505: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21471 cdsp_smem_glink-88    (   88) [000] d..2 29480.076541: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21472  HwBinder:771_4-20182 (  771) [000] d..2 29480.076563: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21473          <idle>-0     (-----) [000] d..1 29480.076581: cpu_idle: state=0 cpu_id=0
21474          <idle>-0     (-----) [002] d.h4 29480.077666: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21475          <idle>-0     (-----) [002] dnh5 29480.077692: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21476          <idle>-0     (-----) [002] dnh3 29480.077769: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
21477          <idle>-0     (-----) [002] dnh3 29480.077789: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
21478          <idle>-0     (-----) [002] dnh4 29480.077805: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
21479          <idle>-0     (-----) [003] .n.1 29480.077811: cpu_idle: state=4294967295 cpu_id=3
21480          <idle>-0     (-----) [002] .n.1 29480.077813: cpu_idle: state=4294967295 cpu_id=2
21481          <idle>-0     (-----) [003] d..2 29480.077826: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
21482          <idle>-0     (-----) [002] d..2 29480.077832: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21483         sugov:0-559   (  559) [003] d..2 29480.077867: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21484          <idle>-0     (-----) [003] d..2 29480.077871: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21485 smem_native_cds-87    (   87) [002] d..2 29480.077884: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21486          <idle>-0     (-----) [003] dn.3 29480.077886: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21487          <idle>-0     (-----) [003] d..2 29480.077897: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
21488          <idle>-0     (-----) [002] d..1 29480.077902: cpu_idle: state=0 cpu_id=2
21489     ksoftirqd/3-34    (   34) [003] d..2 29480.077924: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21490          <idle>-0     (-----) [003] d..1 29480.077939: cpu_idle: state=0 cpu_id=3
21491          <idle>-0     (-----) [002] d.h4 29480.078253: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21492          <idle>-0     (-----) [002] d.h5 29480.078275: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21493          <idle>-0     (-----) [000] .n.1 29480.078282: cpu_idle: state=4294967295 cpu_id=0
21494          <idle>-0     (-----) [000] d..2 29480.078296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21495          <idle>-0     (-----) [002] ...1 29480.078316: cpu_idle: state=4294967295 cpu_id=2
21496          <idle>-0     (-----) [002] d..1 29480.078323: cpu_idle: state=0 cpu_id=2
21497  HwBinder:771_4-20182 (  771) [000] d..2 29480.078345: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21498  HwBinder:771_4-20182 (  771) [000] dn.3 29480.078373: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21499  HwBinder:771_4-20182 (  771) [000] d..2 29480.078383: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21500 cdsp_smem_glink-88    (   88) [000] d..2 29480.078417: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21501  HwBinder:771_4-20182 (  771) [000] d..2 29480.078440: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21502          <idle>-0     (-----) [000] d..1 29480.078457: cpu_idle: state=0 cpu_id=0
21503          <idle>-0     (-----) [005] dnh2 29480.078591: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
21504          <idle>-0     (-----) [005] .n.1 29480.078600: cpu_idle: state=4294967295 cpu_id=5
21505          <idle>-0     (-----) [005] d..2 29480.078610: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
21506         sugov:4-560   (  560) [005] .... 29480.078630: clk_set_rate: perfcl_clk 825600000
21507         sugov:4-560   (  560) [005] .... 29480.078632: clk_set_rate: cpu7_perfcl_clk 979200000
21508         sugov:4-560   (  560) [005] .... 29480.078638: clk_set_rate: cpu6_perfcl_clk 979200000
21509         sugov:4-560   (  560) [005] .... 29480.078645: clk_set_rate: cpu5_perfcl_clk 979200000
21510         sugov:4-560   (  560) [005] .... 29480.078652: clk_set_rate: cpu4_perfcl_clk 825600000
21511         sugov:4-560   (  560) [005] .... 29480.078659: cpu_frequency: state=825600 cpu_id=4
21512         sugov:4-560   (  560) [005] .... 29480.078669: cpu_frequency: state=825600 cpu_id=5
21513         sugov:4-560   (  560) [005] .... 29480.078673: cpu_frequency: state=825600 cpu_id=6
21514         sugov:4-560   (  560) [005] .... 29480.078676: cpu_frequency: state=825600 cpu_id=7
21515         sugov:4-560   (  560) [005] d..2 29480.078700: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
21516          <idle>-0     (-----) [005] d..1 29480.078711: cpu_idle: state=2 cpu_id=5
21517          <idle>-0     (-----) [002] d.h4 29480.079516: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21518          <idle>-0     (-----) [002] dnh5 29480.079528: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21519          <idle>-0     (-----) [002] .n.1 29480.079538: cpu_idle: state=4294967295 cpu_id=2
21520          <idle>-0     (-----) [002] d..2 29480.079551: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21521 smem_native_cds-87    (   87) [002] d..2 29480.079592: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21522          <idle>-0     (-----) [002] d..1 29480.079606: cpu_idle: state=0 cpu_id=2
21523          <idle>-0     (-----) [002] d.h4 29480.080096: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21524          <idle>-0     (-----) [002] d.h5 29480.080118: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21525          <idle>-0     (-----) [000] .n.1 29480.080125: cpu_idle: state=4294967295 cpu_id=0
21526          <idle>-0     (-----) [000] d..2 29480.080139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21527          <idle>-0     (-----) [002] ...1 29480.080159: cpu_idle: state=4294967295 cpu_id=2
21528          <idle>-0     (-----) [002] d..1 29480.080165: cpu_idle: state=0 cpu_id=2
21529  HwBinder:771_4-20182 (  771) [000] d..2 29480.080188: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21530  HwBinder:771_4-20182 (  771) [000] dn.3 29480.080212: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21531  HwBinder:771_4-20182 (  771) [000] d..2 29480.080222: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21532 cdsp_smem_glink-88    (   88) [000] d..2 29480.080257: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21533  HwBinder:771_4-20182 (  771) [000] d..2 29480.080280: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21534          <idle>-0     (-----) [000] d..1 29480.080297: cpu_idle: state=0 cpu_id=0
21535          <idle>-0     (-----) [002] d.h4 29480.081497: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21536          <idle>-0     (-----) [002] dnh5 29480.081516: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21537          <idle>-0     (-----) [002] .n.1 29480.081528: cpu_idle: state=4294967295 cpu_id=2
21538          <idle>-0     (-----) [002] d..2 29480.081544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21539 smem_native_cds-87    (   87) [002] d..2 29480.081593: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21540          <idle>-0     (-----) [002] d..2 29480.081597: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21541          <idle>-0     (-----) [002] dn.3 29480.081609: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21542          <idle>-0     (-----) [002] d..2 29480.081619: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21543     ksoftirqd/2-26    (   26) [002] d..2 29480.081644: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21544          <idle>-0     (-----) [002] d..1 29480.081660: cpu_idle: state=0 cpu_id=2
21545          <idle>-0     (-----) [002] d.h4 29480.082282: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21546          <idle>-0     (-----) [002] d.h5 29480.082303: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21547          <idle>-0     (-----) [000] .n.1 29480.082311: cpu_idle: state=4294967295 cpu_id=0
21548          <idle>-0     (-----) [000] d..2 29480.082326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21549          <idle>-0     (-----) [002] ...1 29480.082345: cpu_idle: state=4294967295 cpu_id=2
21550          <idle>-0     (-----) [002] d..1 29480.082353: cpu_idle: state=0 cpu_id=2
21551  HwBinder:771_4-20182 (  771) [000] d..2 29480.082377: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21552  HwBinder:771_4-20182 (  771) [000] dn.3 29480.082404: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21553  HwBinder:771_4-20182 (  771) [000] d..2 29480.082416: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21554 cdsp_smem_glink-88    (   88) [000] d..2 29480.082451: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21555  HwBinder:771_4-20182 (  771) [000] d..2 29480.082475: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21556          <idle>-0     (-----) [000] d..1 29480.082493: cpu_idle: state=0 cpu_id=0
21557          <idle>-0     (-----) [002] d.h4 29480.083680: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21558          <idle>-0     (-----) [002] dnh5 29480.083698: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21559          <idle>-0     (-----) [002] .n.1 29480.083709: cpu_idle: state=4294967295 cpu_id=2
21560          <idle>-0     (-----) [002] d..2 29480.083723: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21561 smem_native_cds-87    (   87) [002] d.s4 29480.083765: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21562 smem_native_cds-87    (   87) [002] d.s5 29480.083788: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21563 smem_native_cds-87    (   87) [002] d..2 29480.083836: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21564  kworker/u16:10-23868 (23868) [002] d..2 29480.083941: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21565          <idle>-0     (-----) [003] ...1 29480.083949: cpu_idle: state=4294967295 cpu_id=3
21566          <idle>-0     (-----) [003] d..1 29480.083955: cpu_idle: state=2 cpu_id=3
21567          <idle>-0     (-----) [002] d..1 29480.083962: cpu_idle: state=0 cpu_id=2
21568          <idle>-0     (-----) [002] d.h4 29480.084307: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21569          <idle>-0     (-----) [002] d.h5 29480.084331: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21570          <idle>-0     (-----) [000] .n.1 29480.084338: cpu_idle: state=4294967295 cpu_id=0
21571          <idle>-0     (-----) [000] d..2 29480.084353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21572          <idle>-0     (-----) [002] ...1 29480.084374: cpu_idle: state=4294967295 cpu_id=2
21573          <idle>-0     (-----) [002] d..1 29480.084382: cpu_idle: state=0 cpu_id=2
21574  HwBinder:771_4-20182 (  771) [000] d..2 29480.084402: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21575  HwBinder:771_4-20182 (  771) [000] dn.3 29480.084430: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21576  HwBinder:771_4-20182 (  771) [000] d..2 29480.084441: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21577 cdsp_smem_glink-88    (   88) [000] d..2 29480.084480: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21578  HwBinder:771_4-20182 (  771) [000] d..2 29480.084504: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21579          <idle>-0     (-----) [000] d..1 29480.084522: cpu_idle: state=0 cpu_id=0
21580          <idle>-0     (-----) [002] d.h4 29480.085702: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21581          <idle>-0     (-----) [002] dnh5 29480.085722: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21582          <idle>-0     (-----) [002] .n.1 29480.085731: cpu_idle: state=4294967295 cpu_id=2
21583          <idle>-0     (-----) [002] d..2 29480.085746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21584 smem_native_cds-87    (   87) [002] d..2 29480.085794: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21585          <idle>-0     (-----) [002] d..1 29480.085810: cpu_idle: state=0 cpu_id=2
21586          <idle>-0     (-----) [002] d.h4 29480.086273: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21587          <idle>-0     (-----) [002] d.h5 29480.086292: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21588          <idle>-0     (-----) [000] .n.1 29480.086300: cpu_idle: state=4294967295 cpu_id=0
21589          <idle>-0     (-----) [000] d..2 29480.086314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21590          <idle>-0     (-----) [002] ...1 29480.086332: cpu_idle: state=4294967295 cpu_id=2
21591          <idle>-0     (-----) [002] d..1 29480.086338: cpu_idle: state=0 cpu_id=2
21592  HwBinder:771_4-20182 (  771) [000] d..2 29480.086369: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21593  HwBinder:771_4-20182 (  771) [000] dn.3 29480.086395: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21594  HwBinder:771_4-20182 (  771) [000] d..2 29480.086405: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21595 cdsp_smem_glink-88    (   88) [000] d..2 29480.086440: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21596  HwBinder:771_4-20182 (  771) [000] d..2 29480.086463: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21597          <idle>-0     (-----) [000] d..1 29480.086481: cpu_idle: state=0 cpu_id=0
21598          <idle>-0     (-----) [002] d.h4 29480.087567: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21599          <idle>-0     (-----) [002] dnh5 29480.087580: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21600          <idle>-0     (-----) [002] .n.1 29480.087589: cpu_idle: state=4294967295 cpu_id=2
21601          <idle>-0     (-----) [002] d..2 29480.087606: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21602 smem_native_cds-87    (   87) [002] d..2 29480.087657: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21603          <idle>-0     (-----) [002] d..2 29480.087661: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21604          <idle>-0     (-----) [002] dn.3 29480.087670: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21605          <idle>-0     (-----) [002] d..2 29480.087679: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21606     ksoftirqd/2-26    (   26) [002] d..2 29480.087701: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21607          <idle>-0     (-----) [002] d..1 29480.087718: cpu_idle: state=0 cpu_id=2
21608          <idle>-0     (-----) [002] d.h4 29480.088114: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21609          <idle>-0     (-----) [002] d.h5 29480.088135: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21610          <idle>-0     (-----) [000] .n.1 29480.088142: cpu_idle: state=4294967295 cpu_id=0
21611          <idle>-0     (-----) [000] d..2 29480.088158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21612          <idle>-0     (-----) [002] ...1 29480.088176: cpu_idle: state=4294967295 cpu_id=2
21613          <idle>-0     (-----) [002] d..1 29480.088183: cpu_idle: state=0 cpu_id=2
21614  HwBinder:771_4-20182 (  771) [000] d..2 29480.088209: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21615  HwBinder:771_4-20182 (  771) [000] dn.3 29480.088234: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21616  HwBinder:771_4-20182 (  771) [000] d..2 29480.088245: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21617 cdsp_smem_glink-88    (   88) [000] d..2 29480.088280: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21618  HwBinder:771_4-20182 (  771) [000] d..2 29480.088305: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21619          <idle>-0     (-----) [000] d..1 29480.088324: cpu_idle: state=0 cpu_id=0
21620          <idle>-0     (-----) [002] d.h4 29480.089405: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21621          <idle>-0     (-----) [002] dnh5 29480.089424: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21622          <idle>-0     (-----) [002] .n.1 29480.089434: cpu_idle: state=4294967295 cpu_id=2
21623          <idle>-0     (-----) [002] d..2 29480.089448: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21624 smem_native_cds-87    (   87) [002] d..2 29480.089490: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21625          <idle>-0     (-----) [002] d..1 29480.089505: cpu_idle: state=0 cpu_id=2
21626          <idle>-0     (-----) [002] d.h4 29480.089953: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21627          <idle>-0     (-----) [002] d.h5 29480.089971: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21628          <idle>-0     (-----) [000] .n.1 29480.089978: cpu_idle: state=4294967295 cpu_id=0
21629          <idle>-0     (-----) [000] d..2 29480.089992: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21630          <idle>-0     (-----) [002] ...1 29480.090012: cpu_idle: state=4294967295 cpu_id=2
21631          <idle>-0     (-----) [002] d..1 29480.090018: cpu_idle: state=0 cpu_id=2
21632  HwBinder:771_4-20182 (  771) [000] d..2 29480.090042: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21633  HwBinder:771_4-20182 (  771) [000] dn.3 29480.090066: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21634  HwBinder:771_4-20182 (  771) [000] d..2 29480.090076: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21635 cdsp_smem_glink-88    (   88) [000] d..2 29480.090110: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21636  HwBinder:771_4-20182 (  771) [000] d..2 29480.090133: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21637          <idle>-0     (-----) [000] d..1 29480.090151: cpu_idle: state=0 cpu_id=0
21638          <idle>-0     (-----) [002] d.h4 29480.091268: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21639          <idle>-0     (-----) [002] dnh5 29480.091280: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21640          <idle>-0     (-----) [002] .n.1 29480.091291: cpu_idle: state=4294967295 cpu_id=2
21641          <idle>-0     (-----) [002] d..2 29480.091307: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21642 smem_native_cds-87    (   87) [002] d..2 29480.091355: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21643          <idle>-0     (-----) [002] d..2 29480.091361: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21644          <idle>-0     (-----) [002] dn.3 29480.091370: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21645          <idle>-0     (-----) [002] d..2 29480.091379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21646     ksoftirqd/2-26    (   26) [002] d.s2 29480.091387: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21647     ksoftirqd/2-26    (   26) [002] d.s3 29480.091406: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21648     ksoftirqd/2-26    (   26) [002] d..2 29480.091420: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21649  kworker/u16:10-23868 (23868) [002] d..2 29480.091603: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21650          <idle>-0     (-----) [002] d..1 29480.091624: cpu_idle: state=0 cpu_id=2
21651          <idle>-0     (-----) [002] d.h4 29480.091772: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21652          <idle>-0     (-----) [002] d.h5 29480.091795: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21653          <idle>-0     (-----) [000] .n.1 29480.091802: cpu_idle: state=4294967295 cpu_id=0
21654          <idle>-0     (-----) [000] d..2 29480.091817: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21655          <idle>-0     (-----) [002] ...1 29480.091842: cpu_idle: state=4294967295 cpu_id=2
21656          <idle>-0     (-----) [003] d.s3 29480.091848: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21657          <idle>-0     (-----) [002] d..1 29480.091849: cpu_idle: state=0 cpu_id=2
21658  HwBinder:771_4-20182 (  771) [000] d..2 29480.091887: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21659          <idle>-0     (-----) [003] d.s4 29480.091898: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21660          <idle>-0     (-----) [003] dns4 29480.091908: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21661  HwBinder:771_4-20182 (  771) [000] dn.3 29480.091914: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21662          <idle>-0     (-----) [003] .n.1 29480.091920: cpu_idle: state=4294967295 cpu_id=3
21663  HwBinder:771_4-20182 (  771) [000] d..2 29480.091926: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21664          <idle>-0     (-----) [003] d..2 29480.091941: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21665 cdsp_smem_glink-88    (   88) [000] d..2 29480.091963: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21666  HwBinder:771_4-20182 (  771) [000] d..2 29480.091989: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21667          <idle>-0     (-----) [000] d..1 29480.092008: cpu_idle: state=0 cpu_id=0
21668  kworker/u16:10-23868 (23868) [003] d..2 29480.092168: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21669          <idle>-0     (-----) [003] d.s4 29480.092214: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21670          <idle>-0     (-----) [003] d.s5 29480.092224: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21671          <idle>-0     (-----) [003] dns5 29480.092230: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21672          <idle>-0     (-----) [003] d..2 29480.092246: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21673  kworker/u16:10-23868 (23868) [003] d..2 29480.092283: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21674          <idle>-0     (-----) [003] d..1 29480.092307: cpu_idle: state=0 cpu_id=3
21675          <idle>-0     (-----) [002] d.h4 29480.094734: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21676          <idle>-0     (-----) [000] d..2 29480.094737: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21677          <idle>-0     (-----) [002] dnh5 29480.094753: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21678          <idle>-0     (-----) [000] dn.3 29480.094764: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21679          <idle>-0     (-----) [002] .n.1 29480.094766: cpu_idle: state=4294967295 cpu_id=2
21680          <idle>-0     (-----) [000] .n.1 29480.094771: cpu_idle: state=4294967295 cpu_id=0
21681          <idle>-0     (-----) [002] d..2 29480.094784: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21682          <idle>-0     (-----) [000] d..2 29480.094788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
21683     ksoftirqd/0-3     (    3) [000] d.s2 29480.094814: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21684 smem_native_cds-87    (   87) [002] d..2 29480.094838: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21685          <idle>-0     (-----) [002] d..1 29480.094856: cpu_idle: state=0 cpu_id=2
21686     ksoftirqd/0-3     (    3) [000] d.s3 29480.094871: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21687          <idle>-0     (-----) [002] .n.1 29480.094878: cpu_idle: state=4294967295 cpu_id=2
21688          <idle>-0     (-----) [002] d..2 29480.094892: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21689     ksoftirqd/0-3     (    3) [000] d..2 29480.094905: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21690          <idle>-0     (-----) [000] d..1 29480.094962: cpu_idle: state=2 cpu_id=0
21691  kworker/u16:10-23868 (23868) [002] d..2 29480.095041: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21692          <idle>-0     (-----) [002] d..1 29480.095060: cpu_idle: state=0 cpu_id=2
21693          <idle>-0     (-----) [002] ...1 29480.096523: cpu_idle: state=4294967295 cpu_id=2
21694          <idle>-0     (-----) [002] d..1 29480.096529: cpu_idle: state=2 cpu_id=2
21695          <idle>-0     (-----) [002] d.h4 29480.097308: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21696          <idle>-0     (-----) [002] d.h5 29480.097345: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21697          <idle>-0     (-----) [002] d..2 29480.097395: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21698          <idle>-0     (-----) [002] dn.3 29480.097406: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21699          <idle>-0     (-----) [002] dnH3 29480.097488: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
21700          <idle>-0     (-----) [002] .n.1 29480.097517: cpu_idle: state=4294967295 cpu_id=2
21701          <idle>-0     (-----) [002] d..2 29480.097539: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21702     ksoftirqd/2-26    (   26) [002] d..2 29480.097577: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21703          <idle>-0     (-----) [002] d..1 29480.097598: cpu_idle: state=0 cpu_id=2
21704          <idle>-0     (-----) [000] .n.1 29480.097665: cpu_idle: state=4294967295 cpu_id=0
21705          <idle>-0     (-----) [000] d..2 29480.097702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21706  HwBinder:771_4-20182 (  771) [000] d..2 29480.097778: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21707  HwBinder:771_4-20182 (  771) [000] dn.3 29480.097820: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21708  HwBinder:771_4-20182 (  771) [000] d..2 29480.097833: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21709 cdsp_smem_glink-88    (   88) [000] d..2 29480.097879: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21710  HwBinder:771_4-20182 (  771) [000] d..2 29480.097910: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21711          <idle>-0     (-----) [000] d..1 29480.097932: cpu_idle: state=0 cpu_id=0
21712          <idle>-0     (-----) [003] ...1 29480.098318: cpu_idle: state=4294967295 cpu_id=3
21713          <idle>-0     (-----) [003] d..1 29480.098325: cpu_idle: state=2 cpu_id=3
21714          <idle>-0     (-----) [005] dnh2 29480.098553: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
21715          <idle>-0     (-----) [005] .n.1 29480.098562: cpu_idle: state=4294967295 cpu_id=5
21716          <idle>-0     (-----) [005] d..2 29480.098574: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
21717         sugov:4-560   (  560) [005] d..2 29480.098596: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
21718          <idle>-0     (-----) [005] d..1 29480.098607: cpu_idle: state=2 cpu_id=5
21719          <idle>-0     (-----) [002] d.h4 29480.100279: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21720          <idle>-0     (-----) [002] dnh5 29480.100305: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21721          <idle>-0     (-----) [002] .n.1 29480.100321: cpu_idle: state=4294967295 cpu_id=2
21722          <idle>-0     (-----) [002] d..2 29480.100334: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21723 smem_native_cds-87    (   87) [002] d..2 29480.100381: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21724          <idle>-0     (-----) [002] d..1 29480.100399: cpu_idle: state=0 cpu_id=2
21725          <idle>-0     (-----) [000] d..2 29480.100636: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21726          <idle>-0     (-----) [000] dn.3 29480.100652: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21727          <idle>-0     (-----) [000] .n.1 29480.100656: cpu_idle: state=4294967295 cpu_id=0
21728          <idle>-0     (-----) [000] d..2 29480.100676: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
21729     ksoftirqd/0-3     (    3) [000] d..2 29480.100716: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21730          <idle>-0     (-----) [000] d..1 29480.100729: cpu_idle: state=2 cpu_id=0
21731          <idle>-0     (-----) [002] d.h4 29480.102532: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21732          <idle>-0     (-----) [002] d.h5 29480.102551: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21733          <idle>-0     (-----) [002] ...1 29480.102598: cpu_idle: state=4294967295 cpu_id=2
21734          <idle>-0     (-----) [002] d..1 29480.102604: cpu_idle: state=0 cpu_id=2
21735          <idle>-0     (-----) [000] .n.1 29480.102859: cpu_idle: state=4294967295 cpu_id=0
21736          <idle>-0     (-----) [000] d..2 29480.102890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21737  HwBinder:771_4-20182 (  771) [000] d..2 29480.102967: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21738  HwBinder:771_4-20182 (  771) [000] dn.3 29480.103006: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21739  HwBinder:771_4-20182 (  771) [000] d..2 29480.103020: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21740 cdsp_smem_glink-88    (   88) [000] d..2 29480.103066: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21741  HwBinder:771_4-20182 (  771) [000] d..2 29480.103095: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21742          <idle>-0     (-----) [000] d..1 29480.103116: cpu_idle: state=2 cpu_id=0
21743          <idle>-0     (-----) [002] d.h4 29480.105746: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21744          <idle>-0     (-----) [002] dnh5 29480.105765: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21745          <idle>-0     (-----) [002] .n.1 29480.105776: cpu_idle: state=4294967295 cpu_id=2
21746          <idle>-0     (-----) [002] d..2 29480.105792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21747 smem_native_cds-87    (   87) [002] d..2 29480.105843: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21748          <idle>-0     (-----) [002] d..2 29480.105848: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21749          <idle>-0     (-----) [002] dn.3 29480.105861: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21750          <idle>-0     (-----) [002] d..2 29480.105870: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21751     ksoftirqd/2-26    (   26) [002] d.s2 29480.105879: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21752     ksoftirqd/2-26    (   26) [002] d.s3 29480.105900: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21753     ksoftirqd/2-26    (   26) [002] d..2 29480.105919: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21754  kworker/u16:10-23868 (23868) [002] d..2 29480.106020: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21755          <idle>-0     (-----) [002] d..1 29480.106041: cpu_idle: state=0 cpu_id=2
21756          <idle>-0     (-----) [002] d.h4 29480.108129: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21757          <idle>-0     (-----) [002] d.h5 29480.108152: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21758          <idle>-0     (-----) [002] d..2 29480.108195: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21759          <idle>-0     (-----) [002] dn.3 29480.108204: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21760          <idle>-0     (-----) [002] .n.1 29480.108211: cpu_idle: state=4294967295 cpu_id=2
21761          <idle>-0     (-----) [002] d..2 29480.108228: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21762     ksoftirqd/2-26    (   26) [002] d..2 29480.108263: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21763          <idle>-0     (-----) [002] d..1 29480.108278: cpu_idle: state=0 cpu_id=2
21764          <idle>-0     (-----) [000] .n.1 29480.108460: cpu_idle: state=4294967295 cpu_id=0
21765          <idle>-0     (-----) [000] d..2 29480.108503: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21766  HwBinder:771_4-20182 (  771) [000] d..2 29480.108581: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21767  HwBinder:771_4-20182 (  771) [000] dn.3 29480.108622: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21768  HwBinder:771_4-20182 (  771) [000] d..2 29480.108639: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21769 cdsp_smem_glink-88    (   88) [000] d..2 29480.108688: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21770  HwBinder:771_4-20182 (  771) [000] d..2 29480.108723: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21771          <idle>-0     (-----) [000] d..1 29480.108748: cpu_idle: state=2 cpu_id=0
21772          <idle>-0     (-----) [002] d.h4 29480.111351: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21773          <idle>-0     (-----) [002] dnh5 29480.111370: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21774          <idle>-0     (-----) [002] .n.1 29480.111383: cpu_idle: state=4294967295 cpu_id=2
21775          <idle>-0     (-----) [002] d..2 29480.111398: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21776 smem_native_cds-87    (   87) [002] d..2 29480.111449: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21777          <idle>-0     (-----) [002] d..2 29480.111455: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21778          <idle>-0     (-----) [002] dn.3 29480.111465: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21779          <idle>-0     (-----) [002] d..2 29480.111474: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21780     ksoftirqd/2-26    (   26) [002] d..2 29480.111497: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21781          <idle>-0     (-----) [002] d..1 29480.111513: cpu_idle: state=0 cpu_id=2
21782          <idle>-0     (-----) [002] d.h4 29480.113708: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21783          <idle>-0     (-----) [002] d.h5 29480.113729: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21784          <idle>-0     (-----) [002] ...1 29480.113776: cpu_idle: state=4294967295 cpu_id=2
21785          <idle>-0     (-----) [002] d..1 29480.113782: cpu_idle: state=0 cpu_id=2
21786          <idle>-0     (-----) [000] .n.1 29480.114035: cpu_idle: state=4294967295 cpu_id=0
21787          <idle>-0     (-----) [000] d..2 29480.114076: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21788  HwBinder:771_4-20182 (  771) [000] d..2 29480.114153: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21789  HwBinder:771_4-20182 (  771) [000] dn.3 29480.114195: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21790  HwBinder:771_4-20182 (  771) [000] d..2 29480.114209: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21791 cdsp_smem_glink-88    (   88) [000] d..2 29480.114256: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21792  HwBinder:771_4-20182 (  771) [000] d..2 29480.114297: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21793          <idle>-0     (-----) [000] d..2 29480.114302: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21794          <idle>-0     (-----) [000] dn.3 29480.114314: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21795          <idle>-0     (-----) [000] d..2 29480.114331: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
21796     ksoftirqd/0-3     (    3) [000] d.s2 29480.114344: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21797     ksoftirqd/0-3     (    3) [000] d.s3 29480.114390: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21798     ksoftirqd/0-3     (    3) [000] d..2 29480.114410: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21799  kworker/u16:10-23868 (23868) [000] d..2 29480.114519: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21800          <idle>-0     (-----) [000] d..1 29480.114543: cpu_idle: state=2 cpu_id=0
21801          <idle>-0     (-----) [002] d.h4 29480.116955: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21802          <idle>-0     (-----) [002] dnh5 29480.116974: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21803          <idle>-0     (-----) [002] .n.1 29480.116986: cpu_idle: state=4294967295 cpu_id=2
21804          <idle>-0     (-----) [002] d..2 29480.117000: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21805 smem_native_cds-87    (   87) [002] d..2 29480.117044: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21806          <idle>-0     (-----) [002] d..1 29480.117059: cpu_idle: state=0 cpu_id=2
21807          <idle>-0     (-----) [002] d.h4 29480.119369: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21808          <idle>-0     (-----) [002] d.h5 29480.119395: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21809          <idle>-0     (-----) [002] d..2 29480.119437: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21810          <idle>-0     (-----) [002] dn.3 29480.119448: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21811          <idle>-0     (-----) [002] dnH3 29480.119521: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
21812          <idle>-0     (-----) [002] dnH3 29480.119538: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
21813          <idle>-0     (-----) [002] dnH4 29480.119555: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
21814          <idle>-0     (-----) [002] .n.1 29480.119570: cpu_idle: state=4294967295 cpu_id=2
21815          <idle>-0     (-----) [002] d..2 29480.119589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21816     ksoftirqd/2-26    (   26) [002] d..2 29480.119621: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21817          <idle>-0     (-----) [002] d..1 29480.119639: cpu_idle: state=0 cpu_id=2
21818          <idle>-0     (-----) [000] .n.1 29480.119704: cpu_idle: state=4294967295 cpu_id=0
21819          <idle>-0     (-----) [000] d..2 29480.119744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21820  HwBinder:771_4-20182 (  771) [000] d..2 29480.119821: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21821          <idle>-0     (-----) [003] .n.1 29480.119872: cpu_idle: state=4294967295 cpu_id=3
21822  HwBinder:771_4-20182 (  771) [000] d..3 29480.119885: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
21823          <idle>-0     (-----) [003] d..2 29480.119899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
21824         sugov:0-559   (  559) [003] .... 29480.119934: clk_set_rate: pwrcl_clk 652800000
21825  HwBinder:771_4-20182 (  771) [000] d..2 29480.119939: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21826         sugov:0-559   (  559) [003] .... 29480.119947: clk_set_rate: cpu3_pwrcl_clk 748800000
21827         sugov:0-559   (  559) [003] .... 29480.119960: clk_set_rate: cpu2_pwrcl_clk 748800000
21828          <idle>-0     (-----) [000] d..1 29480.119966: cpu_idle: state=0 cpu_id=0
21829         sugov:0-559   (  559) [003] .... 29480.119970: clk_set_rate: cpu1_pwrcl_clk 748800000
21830         sugov:0-559   (  559) [003] .... 29480.119983: clk_set_rate: cpu0_pwrcl_clk 652800000
21831         sugov:0-559   (  559) [003] .... 29480.120100: cpu_frequency: state=652800 cpu_id=0
21832         sugov:0-559   (  559) [003] .... 29480.120118: cpu_frequency: state=652800 cpu_id=1
21833         sugov:0-559   (  559) [003] .... 29480.120124: cpu_frequency: state=652800 cpu_id=2
21834         sugov:0-559   (  559) [003] .... 29480.120130: cpu_frequency: state=652800 cpu_id=3
21835         sugov:0-559   (  559) [003] d..2 29480.120160: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21836 cdsp_smem_glink-88    (   88) [003] d..2 29480.120239: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21837          <idle>-0     (-----) [003] d..1 29480.120261: cpu_idle: state=2 cpu_id=3
21838          <idle>-0     (-----) [005] dnh2 29480.120603: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
21839          <idle>-0     (-----) [005] .n.1 29480.120612: cpu_idle: state=4294967295 cpu_id=5
21840          <idle>-0     (-----) [005] d..2 29480.120625: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
21841         sugov:4-560   (  560) [005] d..2 29480.120652: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
21842          <idle>-0     (-----) [005] d..2 29480.120658: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
21843          <idle>-0     (-----) [005] dn.3 29480.120676: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
21844          <idle>-0     (-----) [005] d..2 29480.120685: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
21845     ksoftirqd/5-50    (   50) [005] d..2 29480.120712: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
21846          <idle>-0     (-----) [005] d..1 29480.120723: cpu_idle: state=2 cpu_id=5
21847          <idle>-0     (-----) [002] d.h4 29480.122575: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21848          <idle>-0     (-----) [002] dnh5 29480.122603: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21849          <idle>-0     (-----) [002] .n.1 29480.122620: cpu_idle: state=4294967295 cpu_id=2
21850          <idle>-0     (-----) [002] d..2 29480.122635: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21851 smem_native_cds-87    (   87) [002] d..2 29480.122686: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21852          <idle>-0     (-----) [002] d..1 29480.122704: cpu_idle: state=0 cpu_id=2
21853          <idle>-0     (-----) [002] d.h4 29480.125018: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21854          <idle>-0     (-----) [002] d.h5 29480.125042: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21855          <idle>-0     (-----) [000] .n.1 29480.125051: cpu_idle: state=4294967295 cpu_id=0
21856          <idle>-0     (-----) [000] d..2 29480.125070: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21857          <idle>-0     (-----) [002] d..2 29480.125090: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21858          <idle>-0     (-----) [002] dn.3 29480.125100: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21859          <idle>-0     (-----) [002] .n.1 29480.125106: cpu_idle: state=4294967295 cpu_id=2
21860          <idle>-0     (-----) [002] d..2 29480.125124: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21861  HwBinder:771_4-20182 (  771) [000] d..2 29480.125129: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
21862     ksoftirqd/2-26    (   26) [002] d.s2 29480.125134: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21863  HwBinder:771_4-20182 (  771) [000] d..3 29480.125197: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21864     ksoftirqd/2-26    (   26) [002] d.s3 29480.125210: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21865     ksoftirqd/2-26    (   26) [002] d..2 29480.125234: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21866  HwBinder:771_4-20182 (  771) [000] d..2 29480.125252: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21867          <idle>-0     (-----) [000] d..1 29480.125275: cpu_idle: state=0 cpu_id=0
21868 cdsp_smem_glink-88    (   88) [002] d..2 29480.125281: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21869  kworker/u16:10-23868 (23868) [002] d.h4 29480.125342: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21870  kworker/u16:10-23868 (23868) [002] d.h5 29480.125369: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21871  kworker/u16:10-23868 (23868) [002] d..2 29480.125444: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21872 smem_native_cds-87    (   87) [002] d..2 29480.125499: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21873          <idle>-0     (-----) [002] d..1 29480.125524: cpu_idle: state=0 cpu_id=2
21874          <idle>-0     (-----) [002] d.h4 29480.126904: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21875          <idle>-0     (-----) [002] d.h5 29480.126926: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21876          <idle>-0     (-----) [000] .n.1 29480.126935: cpu_idle: state=4294967295 cpu_id=0
21877          <idle>-0     (-----) [000] d..2 29480.126951: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21878          <idle>-0     (-----) [002] ...1 29480.126984: cpu_idle: state=4294967295 cpu_id=2
21879          <idle>-0     (-----) [002] d..1 29480.126991: cpu_idle: state=0 cpu_id=2
21880  HwBinder:771_4-20182 (  771) [000] d..2 29480.127011: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21881  HwBinder:771_4-20182 (  771) [000] d..3 29480.127039: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21882          <idle>-0     (-----) [002] .n.1 29480.127046: cpu_idle: state=4294967295 cpu_id=2
21883          <idle>-0     (-----) [002] d..2 29480.127067: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21884  HwBinder:771_4-20182 (  771) [000] d..2 29480.127071: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21885 cdsp_smem_glink-88    (   88) [002] d.s4 29480.127122: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
21886 cdsp_smem_glink-88    (   88) [002] d.s5 29480.127140: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
21887          <idle>-0     (-----) [000] d..1 29480.127157: cpu_idle: state=2 cpu_id=0
21888 cdsp_smem_glink-88    (   88) [002] d..2 29480.127197: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
21889     kworker/2:2-13636 (13636) [002] d.h4 29480.127248: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21890     kworker/2:2-13636 (13636) [002] d.h5 29480.127274: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21891     kworker/2:2-13636 (13636) [002] d..2 29480.127303: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21892 smem_native_cds-87    (   87) [002] d..2 29480.127360: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21893          <idle>-0     (-----) [002] d..1 29480.127380: cpu_idle: state=2 cpu_id=2
21894          <idle>-0     (-----) [002] d.h4 29480.133262: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21895          <idle>-0     (-----) [002] d.h5 29480.133295: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21896          <idle>-0     (-----) [002] d..2 29480.133343: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21897          <idle>-0     (-----) [002] dn.3 29480.133354: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21898          <idle>-0     (-----) [002] .n.1 29480.133361: cpu_idle: state=4294967295 cpu_id=2
21899          <idle>-0     (-----) [002] d..2 29480.133384: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21900     ksoftirqd/2-26    (   26) [002] d..2 29480.133432: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21901          <idle>-0     (-----) [002] d..1 29480.133450: cpu_idle: state=2 cpu_id=2
21902          <idle>-0     (-----) [000] .n.1 29480.133583: cpu_idle: state=4294967295 cpu_id=0
21903          <idle>-0     (-----) [000] d..2 29480.133614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21904  HwBinder:771_4-20182 (  771) [000] d..2 29480.133693: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21905  HwBinder:771_4-20182 (  771) [000] dn.3 29480.133761: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21906  HwBinder:771_4-20182 (  771) [000] dns3 29480.133818: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21907  HwBinder:771_4-20182 (  771) [000] dns4 29480.133865: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21908  HwBinder:771_4-20182 (  771) [000] d..2 29480.133889: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21909 cdsp_smem_glink-88    (   88) [000] d..2 29480.133939: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21910  kworker/u16:10-23868 (23868) [000] d..2 29480.134036: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21911  HwBinder:771_4-20182 (  771) [000] d..2 29480.134078: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21912          <idle>-0     (-----) [000] d..1 29480.134100: cpu_idle: state=2 cpu_id=0
21913          <idle>-0     (-----) [002] d.h4 29480.137874: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21914          <idle>-0     (-----) [002] dnh5 29480.137926: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21915          <idle>-0     (-----) [002] dnh4 29480.137959: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21916          <idle>-0     (-----) [002] dnh5 29480.137981: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21917          <idle>-0     (-----) [002] dnh3 29480.138104: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
21918          <idle>-0     (-----) [002] dnh3 29480.138122: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
21919          <idle>-0     (-----) [002] dnh4 29480.138141: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
21920          <idle>-0     (-----) [002] .n.1 29480.138152: cpu_idle: state=4294967295 cpu_id=2
21921          <idle>-0     (-----) [002] d..2 29480.138175: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21922 smem_native_cds-87    (   87) [002] d..2 29480.138237: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21923          <idle>-0     (-----) [002] d..2 29480.138242: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21924          <idle>-0     (-----) [002] dn.3 29480.138255: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21925          <idle>-0     (-----) [002] d..2 29480.138267: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21926     ksoftirqd/2-26    (   26) [002] d..2 29480.138296: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21927          <idle>-0     (-----) [000] .n.1 29480.138310: cpu_idle: state=4294967295 cpu_id=0
21928          <idle>-0     (-----) [002] d..1 29480.138316: cpu_idle: state=2 cpu_id=2
21929          <idle>-0     (-----) [000] d..2 29480.138346: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21930  HwBinder:771_4-20182 (  771) [000] d..2 29480.138433: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
21931          <idle>-0     (-----) [003] .n.1 29480.138486: cpu_idle: state=4294967295 cpu_id=3
21932  HwBinder:771_4-20182 (  771) [000] d..3 29480.138498: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
21933          <idle>-0     (-----) [003] d..2 29480.138515: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
21934  HwBinder:771_4-20182 (  771) [000] d..2 29480.138536: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21935         sugov:0-559   (  559) [003] d..2 29480.138544: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21936          <idle>-0     (-----) [000] d..1 29480.138559: cpu_idle: state=2 cpu_id=0
21937 cdsp_smem_glink-88    (   88) [003] d..2 29480.138623: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21938          <idle>-0     (-----) [003] d..1 29480.138643: cpu_idle: state=2 cpu_id=3
21939          <idle>-0     (-----) [005] dnh2 29480.139189: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
21940          <idle>-0     (-----) [005] .n.1 29480.139198: cpu_idle: state=4294967295 cpu_id=5
21941          <idle>-0     (-----) [005] d..2 29480.139209: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
21942         sugov:4-560   (  560) [005] d..2 29480.139230: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
21943          <idle>-0     (-----) [005] d..1 29480.139240: cpu_idle: state=2 cpu_id=5
21944          <idle>-0     (-----) [005] ...1 29480.143001: cpu_idle: state=4294967295 cpu_id=5
21945          <idle>-0     (-----) [005] d..1 29480.143006: cpu_idle: state=2 cpu_id=5
21946          <idle>-0     (-----) [002] d.h4 29480.143053: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21947          <idle>-0     (-----) [002] dnh5 29480.143096: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21948          <idle>-0     (-----) [002] dnh4 29480.143129: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21949          <idle>-0     (-----) [002] dnh5 29480.143157: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21950          <idle>-0     (-----) [002] .n.1 29480.143206: cpu_idle: state=4294967295 cpu_id=2
21951          <idle>-0     (-----) [002] d..2 29480.143229: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21952 smem_native_cds-87    (   87) [002] d..2 29480.143291: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21953          <idle>-0     (-----) [002] d..2 29480.143297: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21954          <idle>-0     (-----) [002] dn.3 29480.143308: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21955          <idle>-0     (-----) [002] d..2 29480.143320: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21956     ksoftirqd/2-26    (   26) [002] d.s2 29480.143330: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
21957          <idle>-0     (-----) [000] .n.1 29480.143349: cpu_idle: state=4294967295 cpu_id=0
21958     ksoftirqd/2-26    (   26) [002] d.s3 29480.143383: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21959          <idle>-0     (-----) [000] d..2 29480.143391: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
21960     ksoftirqd/2-26    (   26) [002] d..2 29480.143402: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21961  HwBinder:771_4-20182 (  771) [000] d..2 29480.143471: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
21962  HwBinder:771_4-20182 (  771) [000] d..3 29480.143543: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
21963  HwBinder:771_4-20182 (  771) [000] d..2 29480.143589: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21964          <idle>-0     (-----) [000] d..1 29480.143611: cpu_idle: state=2 cpu_id=0
21965  kworker/u16:10-23868 (23868) [002] d..2 29480.143637: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
21966 cdsp_smem_glink-88    (   88) [002] d..2 29480.143696: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21967          <idle>-0     (-----) [002] d..1 29480.143722: cpu_idle: state=2 cpu_id=2
21968          <idle>-0     (-----) [003] d.s3 29480.144016: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
21969          <idle>-0     (-----) [003] d.s4 29480.144069: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21970          <idle>-0     (-----) [003] dns4 29480.144078: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21971          <idle>-0     (-----) [003] .n.1 29480.144091: cpu_idle: state=4294967295 cpu_id=3
21972          <idle>-0     (-----) [003] d..2 29480.144115: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21973  kworker/u16:10-23868 (23868) [003] d..2 29480.144377: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21974          <idle>-0     (-----) [003] d.s4 29480.144428: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21975          <idle>-0     (-----) [003] d.s5 29480.144441: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
21976          <idle>-0     (-----) [003] dns5 29480.144448: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21977          <idle>-0     (-----) [003] d..2 29480.144467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21978  kworker/u16:10-23868 (23868) [003] d..2 29480.144507: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21979          <idle>-0     (-----) [003] d..2 29480.144512: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21980          <idle>-0     (-----) [003] dn.3 29480.144526: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21981          <idle>-0     (-----) [003] d..2 29480.144539: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
21982     ksoftirqd/3-34    (   34) [003] d.s2 29480.144551: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21983     ksoftirqd/3-34    (   34) [003] d.s3 29480.144575: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
21984     ksoftirqd/3-34    (   34) [003] d..2 29480.144596: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
21985  kworker/u16:10-23868 (23868) [003] d..2 29480.144705: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21986          <idle>-0     (-----) [003] d..1 29480.144727: cpu_idle: state=2 cpu_id=3
21987          <idle>-0     (-----) [002] d.h4 29480.148665: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21988          <idle>-0     (-----) [002] dnh5 29480.148704: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
21989          <idle>-0     (-----) [002] dnh4 29480.148736: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21990          <idle>-0     (-----) [002] dnh5 29480.148756: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
21991          <idle>-0     (-----) [002] .n.1 29480.148803: cpu_idle: state=4294967295 cpu_id=2
21992          <idle>-0     (-----) [002] d..2 29480.148827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
21993 smem_native_cds-87    (   87) [002] d..2 29480.148888: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21994          <idle>-0     (-----) [002] d..2 29480.148894: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21995          <idle>-0     (-----) [002] dn.3 29480.148905: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21996          <idle>-0     (-----) [002] d..2 29480.148917: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21997     ksoftirqd/2-26    (   26) [002] d..2 29480.148946: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21998          <idle>-0     (-----) [000] .n.1 29480.148950: cpu_idle: state=4294967295 cpu_id=0
21999          <idle>-0     (-----) [002] d..1 29480.148966: cpu_idle: state=2 cpu_id=2
22000          <idle>-0     (-----) [000] d..2 29480.148986: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22001  HwBinder:771_4-20182 (  771) [000] d..2 29480.149068: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22002  HwBinder:771_4-20182 (  771) [000] dn.3 29480.149132: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22003  HwBinder:771_4-20182 (  771) [000] d..2 29480.149146: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22004 cdsp_smem_glink-88    (   88) [000] d..2 29480.149193: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22005  HwBinder:771_4-20182 (  771) [000] d..2 29480.149223: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22006          <idle>-0     (-----) [000] d..1 29480.149244: cpu_idle: state=2 cpu_id=0
22007          <idle>-0     (-----) [000] d..2 29480.153072: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22008          <idle>-0     (-----) [002] d.h4 29480.153076: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22009          <idle>-0     (-----) [000] dn.3 29480.153092: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22010          <idle>-0     (-----) [000] .n.1 29480.153100: cpu_idle: state=4294967295 cpu_id=0
22011          <idle>-0     (-----) [002] dnh5 29480.153117: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22012          <idle>-0     (-----) [000] d..2 29480.153121: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
22013          <idle>-0     (-----) [002] dnh4 29480.153152: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22014     ksoftirqd/0-3     (    3) [000] d..2 29480.153169: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22015          <idle>-0     (-----) [000] d..1 29480.153184: cpu_idle: state=2 cpu_id=0
22016          <idle>-0     (-----) [002] dnh5 29480.153191: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22017          <idle>-0     (-----) [002] .n.1 29480.153241: cpu_idle: state=4294967295 cpu_id=2
22018          <idle>-0     (-----) [002] d..2 29480.153268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22019 smem_native_cds-87    (   87) [002] d..2 29480.153325: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22020          <idle>-0     (-----) [002] d..1 29480.153344: cpu_idle: state=2 cpu_id=2
22021          <idle>-0     (-----) [001] .n.1 29480.153535: cpu_idle: state=4294967295 cpu_id=1
22022          <idle>-0     (-----) [001] d..2 29480.153567: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22023  HwBinder:771_4-20182 (  771) [001] d.s2 29480.153785: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22024  HwBinder:771_4-20182 (  771) [001] dns3 29480.153848: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22025  HwBinder:771_4-20182 (  771) [001] d..2 29480.153880: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22026  kworker/u16:10-23868 (23868) [001] d..2 29480.153984: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22027  HwBinder:771_4-20182 (  771) [001] d..2 29480.154066: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22028  HwBinder:771_4-20182 (  771) [001] dn.3 29480.154128: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22029  HwBinder:771_4-20182 (  771) [001] d..2 29480.154141: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22030 cdsp_smem_glink-88    (   88) [001] d..2 29480.154188: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22031  HwBinder:771_4-20182 (  771) [001] d..2 29480.154231: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22032          <idle>-0     (-----) [001] d..1 29480.154254: cpu_idle: state=2 cpu_id=1
22033          <idle>-0     (-----) [002] d.h4 29480.158015: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22034          <idle>-0     (-----) [002] dnh5 29480.158065: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22035          <idle>-0     (-----) [002] dnh4 29480.158097: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22036          <idle>-0     (-----) [002] dnh5 29480.158130: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22037          <idle>-0     (-----) [002] dnh3 29480.158252: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22038          <idle>-0     (-----) [002] dnh3 29480.158272: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22039          <idle>-0     (-----) [002] dnh4 29480.158290: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22040          <idle>-0     (-----) [000] .n.1 29480.158300: cpu_idle: state=4294967295 cpu_id=0
22041          <idle>-0     (-----) [002] .n.1 29480.158303: cpu_idle: state=4294967295 cpu_id=2
22042          <idle>-0     (-----) [002] d..2 29480.158327: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22043          <idle>-0     (-----) [000] d..2 29480.158338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22044 smem_native_cds-87    (   87) [002] d..2 29480.158393: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22045          <idle>-0     (-----) [002] d..2 29480.158400: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22046          <idle>-0     (-----) [002] dn.3 29480.158413: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22047          <idle>-0     (-----) [002] d..2 29480.158425: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22048  HwBinder:771_4-20182 (  771) [000] d..2 29480.158427: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22049     ksoftirqd/2-26    (   26) [002] d.s2 29480.158437: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
22050     ksoftirqd/2-26    (   26) [002] d.s3 29480.158451: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
22051     ksoftirqd/2-26    (   26) [002] d..2 29480.158466: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
22052  HwBinder:771_4-20182 (  771) [000] d..3 29480.158496: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
22053  HwBinder:771_4-20182 (  771) [000] d..2 29480.158538: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22054     kworker/2:2-13636 (13636) [002] d..2 29480.158540: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22055          <idle>-0     (-----) [002] d..1 29480.158560: cpu_idle: state=2 cpu_id=2
22056          <idle>-0     (-----) [000] d..1 29480.158566: cpu_idle: state=2 cpu_id=0
22057          <idle>-0     (-----) [003] .n.1 29480.158605: cpu_idle: state=4294967295 cpu_id=3
22058          <idle>-0     (-----) [003] d..2 29480.158630: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22059         sugov:0-559   (  559) [003] d..2 29480.158657: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22060 cdsp_smem_glink-88    (   88) [003] d..2 29480.158731: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22061          <idle>-0     (-----) [003] d..1 29480.158749: cpu_idle: state=2 cpu_id=3
22062          <idle>-0     (-----) [005] dnh2 29480.159321: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22063          <idle>-0     (-----) [005] .n.1 29480.159330: cpu_idle: state=4294967295 cpu_id=5
22064          <idle>-0     (-----) [005] d..2 29480.159342: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22065         sugov:4-560   (  560) [005] d..2 29480.159363: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22066          <idle>-0     (-----) [005] d..1 29480.159373: cpu_idle: state=2 cpu_id=5
22067          <idle>-0     (-----) [002] d.h4 29480.163306: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22068          <idle>-0     (-----) [002] dnh5 29480.163341: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22069          <idle>-0     (-----) [002] dnh4 29480.163373: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22070          <idle>-0     (-----) [002] dnh5 29480.163392: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22071          <idle>-0     (-----) [002] .n.1 29480.163440: cpu_idle: state=4294967295 cpu_id=2
22072          <idle>-0     (-----) [002] d..2 29480.163464: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22073 smem_native_cds-87    (   87) [002] d..2 29480.163527: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22074          <idle>-0     (-----) [002] d..2 29480.163533: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22075          <idle>-0     (-----) [002] dn.3 29480.163544: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22076          <idle>-0     (-----) [002] d..2 29480.163557: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22077     ksoftirqd/2-26    (   26) [002] d..2 29480.163585: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22078          <idle>-0     (-----) [002] d..1 29480.163606: cpu_idle: state=2 cpu_id=2
22079          <idle>-0     (-----) [000] .n.1 29480.163628: cpu_idle: state=4294967295 cpu_id=0
22080          <idle>-0     (-----) [000] d..2 29480.163665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22081  HwBinder:771_4-20182 (  771) [000] d.s2 29480.163768: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22082  HwBinder:771_4-20182 (  771) [000] dns3 29480.163830: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22083  HwBinder:771_4-20182 (  771) [000] d..2 29480.163860: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22084  kworker/u16:10-23868 (23868) [000] d..2 29480.163958: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22085  HwBinder:771_4-20182 (  771) [000] d..2 29480.163987: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
22086  HwBinder:771_4-20182 (  771) [000] dn.3 29480.164042: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22087  HwBinder:771_4-20182 (  771) [000] d..2 29480.164055: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22088 cdsp_smem_glink-88    (   88) [000] d..2 29480.164101: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22089  HwBinder:771_4-20182 (  771) [000] d..2 29480.164141: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22090          <idle>-0     (-----) [000] d..1 29480.164164: cpu_idle: state=2 cpu_id=0
22091          <idle>-0     (-----) [002] d.h4 29480.167924: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22092          <idle>-0     (-----) [002] dnh5 29480.167965: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22093          <idle>-0     (-----) [002] dnh4 29480.167998: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22094          <idle>-0     (-----) [002] dnh5 29480.168019: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22095          <idle>-0     (-----) [002] .n.1 29480.168066: cpu_idle: state=4294967295 cpu_id=2
22096          <idle>-0     (-----) [002] d..2 29480.168093: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22097 smem_native_cds-87    (   87) [002] d..2 29480.168155: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22098          <idle>-0     (-----) [002] d..2 29480.168161: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22099          <idle>-0     (-----) [002] dn.3 29480.168173: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22100          <idle>-0     (-----) [002] d..2 29480.168183: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22101     ksoftirqd/2-26    (   26) [002] d..2 29480.168211: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22102          <idle>-0     (-----) [002] d..1 29480.168230: cpu_idle: state=2 cpu_id=2
22103          <idle>-0     (-----) [000] .n.1 29480.168355: cpu_idle: state=4294967295 cpu_id=0
22104          <idle>-0     (-----) [000] d..2 29480.168388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22105  HwBinder:771_4-20182 (  771) [000] d..2 29480.168467: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22106  HwBinder:771_4-20182 (  771) [000] dn.3 29480.168503: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22107  HwBinder:771_4-20182 (  771) [000] d..2 29480.168520: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22108 cdsp_smem_glink-88    (   88) [000] d..2 29480.168567: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22109  HwBinder:771_4-20182 (  771) [000] d..2 29480.168602: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22110          <idle>-0     (-----) [000] d..1 29480.168622: cpu_idle: state=2 cpu_id=0
22111          <idle>-0     (-----) [000] d..2 29480.173449: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22112          <idle>-0     (-----) [002] d.h4 29480.173452: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22113          <idle>-0     (-----) [000] dn.3 29480.173469: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22114          <idle>-0     (-----) [000] .n.1 29480.173475: cpu_idle: state=4294967295 cpu_id=0
22115          <idle>-0     (-----) [002] dnh5 29480.173494: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22116          <idle>-0     (-----) [000] d..2 29480.173498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
22117          <idle>-0     (-----) [002] dnh4 29480.173528: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22118     ksoftirqd/0-3     (    3) [000] d..2 29480.173544: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22119          <idle>-0     (-----) [000] d..1 29480.173561: cpu_idle: state=2 cpu_id=0
22120          <idle>-0     (-----) [002] dnh5 29480.173566: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22121          <idle>-0     (-----) [002] .n.1 29480.173616: cpu_idle: state=4294967295 cpu_id=2
22122          <idle>-0     (-----) [002] d..2 29480.173643: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22123 smem_native_cds-87    (   87) [002] d..2 29480.173700: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22124          <idle>-0     (-----) [002] d..1 29480.173720: cpu_idle: state=2 cpu_id=2
22125          <idle>-0     (-----) [001] .n.1 29480.173909: cpu_idle: state=4294967295 cpu_id=1
22126          <idle>-0     (-----) [001] d..2 29480.173941: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22127  HwBinder:771_4-20182 (  771) [001] d..2 29480.174019: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22128  HwBinder:771_4-20182 (  771) [001] dn.3 29480.174080: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22129  HwBinder:771_4-20182 (  771) [001] d..2 29480.174094: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22130 cdsp_smem_glink-88    (   88) [001] d..2 29480.174140: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22131  HwBinder:771_4-20182 (  771) [001] d..2 29480.174178: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22132          <idle>-0     (-----) [001] d..2 29480.174186: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22133          <idle>-0     (-----) [001] dn.3 29480.174213: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22134          <idle>-0     (-----) [001] d..2 29480.174226: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
22135     ksoftirqd/1-18    (   18) [001] d.s2 29480.174251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22136     ksoftirqd/1-18    (   18) [001] d.s3 29480.174300: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22137     ksoftirqd/1-18    (   18) [001] d..2 29480.174324: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22138  kworker/u16:10-23868 (23868) [001] d..2 29480.174431: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22139          <idle>-0     (-----) [001] d..1 29480.174453: cpu_idle: state=2 cpu_id=1
22140          <idle>-0     (-----) [002] d.h4 29480.178211: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22141          <idle>-0     (-----) [002] dnh5 29480.178259: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22142          <idle>-0     (-----) [002] dnh4 29480.178293: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22143          <idle>-0     (-----) [002] dnh5 29480.178324: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22144          <idle>-0     (-----) [002] dnh3 29480.178444: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22145          <idle>-0     (-----) [002] dnh3 29480.178464: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22146          <idle>-0     (-----) [002] dnh4 29480.178481: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22147          <idle>-0     (-----) [002] .n.1 29480.178493: cpu_idle: state=4294967295 cpu_id=2
22148          <idle>-0     (-----) [000] .n.1 29480.178497: cpu_idle: state=4294967295 cpu_id=0
22149          <idle>-0     (-----) [002] d..2 29480.178517: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22150          <idle>-0     (-----) [000] d..2 29480.178534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22151 smem_native_cds-87    (   87) [002] d..2 29480.178582: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22152          <idle>-0     (-----) [002] d..2 29480.178588: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22153          <idle>-0     (-----) [002] dn.3 29480.178602: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22154          <idle>-0     (-----) [002] d..2 29480.178614: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22155  HwBinder:771_4-20182 (  771) [000] d..2 29480.178619: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22156     ksoftirqd/2-26    (   26) [002] d..2 29480.178642: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22157          <idle>-0     (-----) [002] d..1 29480.178662: cpu_idle: state=2 cpu_id=2
22158  HwBinder:771_4-20182 (  771) [000] d..3 29480.178692: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22159  HwBinder:771_4-20182 (  771) [000] d..2 29480.178733: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22160          <idle>-0     (-----) [000] d..1 29480.178758: cpu_idle: state=2 cpu_id=0
22161          <idle>-0     (-----) [003] .n.1 29480.178817: cpu_idle: state=4294967295 cpu_id=3
22162          <idle>-0     (-----) [003] d..2 29480.178842: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22163         sugov:0-559   (  559) [003] d..2 29480.178888: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22164          <idle>-0     (-----) [003] d..1 29480.178905: cpu_idle: state=2 cpu_id=3
22165          <idle>-0     (-----) [002] .n.1 29480.179135: cpu_idle: state=4294967295 cpu_id=2
22166          <idle>-0     (-----) [002] d..2 29480.179163: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22167 cdsp_smem_glink-88    (   88) [002] d..2 29480.179235: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22168          <idle>-0     (-----) [002] d..1 29480.179253: cpu_idle: state=2 cpu_id=2
22169          <idle>-0     (-----) [005] dnh2 29480.179519: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22170          <idle>-0     (-----) [005] .n.1 29480.179528: cpu_idle: state=4294967295 cpu_id=5
22171          <idle>-0     (-----) [005] d..2 29480.179541: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22172         sugov:4-560   (  560) [005] d..2 29480.179563: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22173          <idle>-0     (-----) [005] d..1 29480.179572: cpu_idle: state=2 cpu_id=5
22174          <idle>-0     (-----) [005] ...1 29480.183324: cpu_idle: state=4294967295 cpu_id=5
22175          <idle>-0     (-----) [005] d..1 29480.183329: cpu_idle: state=2 cpu_id=5
22176          <idle>-0     (-----) [002] d.h4 29480.183376: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22177          <idle>-0     (-----) [002] dnh5 29480.183419: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22178          <idle>-0     (-----) [002] dnh4 29480.183452: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22179          <idle>-0     (-----) [002] dnh5 29480.183472: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22180          <idle>-0     (-----) [002] .n.1 29480.183520: cpu_idle: state=4294967295 cpu_id=2
22181          <idle>-0     (-----) [002] d..2 29480.183544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22182 smem_native_cds-87    (   87) [002] d..2 29480.183605: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22183          <idle>-0     (-----) [002] d..2 29480.183612: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22184          <idle>-0     (-----) [002] dn.3 29480.183624: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22185          <idle>-0     (-----) [002] d..2 29480.183636: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22186          <idle>-0     (-----) [000] .n.1 29480.183660: cpu_idle: state=4294967295 cpu_id=0
22187     ksoftirqd/2-26    (   26) [002] d..2 29480.183666: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22188          <idle>-0     (-----) [002] d..1 29480.183687: cpu_idle: state=2 cpu_id=2
22189          <idle>-0     (-----) [000] d..2 29480.183696: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22190  HwBinder:771_4-20182 (  771) [000] d.s2 29480.183768: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22191  HwBinder:771_4-20182 (  771) [000] dns3 29480.183831: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22192  HwBinder:771_4-20182 (  771) [000] d..2 29480.183859: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22193  kworker/u16:10-23868 (23868) [000] d..2 29480.183959: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22194  HwBinder:771_4-20182 (  771) [000] d..2 29480.184019: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22195  HwBinder:771_4-20182 (  771) [000] dn.3 29480.184079: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22196  HwBinder:771_4-20182 (  771) [000] d..2 29480.184093: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22197 cdsp_smem_glink-88    (   88) [000] d..2 29480.184141: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22198  HwBinder:771_4-20182 (  771) [000] d..2 29480.184181: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22199          <idle>-0     (-----) [000] d..1 29480.184203: cpu_idle: state=2 cpu_id=0
22200          <idle>-0     (-----) [002] d.h4 29480.187964: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22201          <idle>-0     (-----) [002] dnh5 29480.188004: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22202          <idle>-0     (-----) [002] dnh4 29480.188037: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22203          <idle>-0     (-----) [002] dnh5 29480.188056: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22204          <idle>-0     (-----) [002] .n.1 29480.188105: cpu_idle: state=4294967295 cpu_id=2
22205          <idle>-0     (-----) [002] d..2 29480.188127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22206 smem_native_cds-87    (   87) [002] d..2 29480.188190: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22207          <idle>-0     (-----) [002] d..2 29480.188196: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22208          <idle>-0     (-----) [002] dn.3 29480.188208: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22209          <idle>-0     (-----) [002] d..2 29480.188220: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22210     ksoftirqd/2-26    (   26) [002] d..2 29480.188249: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22211          <idle>-0     (-----) [002] d..1 29480.188268: cpu_idle: state=2 cpu_id=2
22212          <idle>-0     (-----) [000] .n.1 29480.188392: cpu_idle: state=4294967295 cpu_id=0
22213          <idle>-0     (-----) [000] d..2 29480.188426: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22214  HwBinder:771_4-20182 (  771) [000] d..2 29480.188504: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22215  HwBinder:771_4-20182 (  771) [000] dn.3 29480.188542: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22216  HwBinder:771_4-20182 (  771) [000] d..2 29480.188559: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22217 cdsp_smem_glink-88    (   88) [000] d..2 29480.188608: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22218  HwBinder:771_4-20182 (  771) [000] d..2 29480.188638: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22219          <idle>-0     (-----) [000] d..1 29480.188659: cpu_idle: state=2 cpu_id=0
22220          <idle>-0     (-----) [002] d.h4 29480.193301: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22221          <idle>-0     (-----) [000] d..2 29480.193302: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22222          <idle>-0     (-----) [000] dn.3 29480.193322: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22223          <idle>-0     (-----) [000] .n.1 29480.193329: cpu_idle: state=4294967295 cpu_id=0
22224          <idle>-0     (-----) [002] dnh5 29480.193345: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22225          <idle>-0     (-----) [000] d..2 29480.193353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
22226          <idle>-0     (-----) [002] dnh4 29480.193380: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22227     ksoftirqd/0-3     (    3) [000] d..2 29480.193398: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22228          <idle>-0     (-----) [000] d..1 29480.193416: cpu_idle: state=2 cpu_id=0
22229          <idle>-0     (-----) [002] dnh5 29480.193421: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22230          <idle>-0     (-----) [002] .n.1 29480.193472: cpu_idle: state=4294967295 cpu_id=2
22231          <idle>-0     (-----) [002] d..2 29480.193498: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22232 smem_native_cds-87    (   87) [002] d..2 29480.193555: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22233          <idle>-0     (-----) [002] d..1 29480.193575: cpu_idle: state=2 cpu_id=2
22234          <idle>-0     (-----) [001] .n.1 29480.193767: cpu_idle: state=4294967295 cpu_id=1
22235          <idle>-0     (-----) [001] d..2 29480.193800: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22236  HwBinder:771_4-20182 (  771) [001] d..2 29480.193877: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22237  HwBinder:771_4-20182 (  771) [001] dn.3 29480.193945: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22238  HwBinder:771_4-20182 (  771) [001] d..2 29480.193959: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22239 cdsp_smem_glink-88    (   88) [001] d..2 29480.194008: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22240  HwBinder:771_4-20182 (  771) [001] d..2 29480.194047: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22241          <idle>-0     (-----) [001] d..2 29480.194054: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22242          <idle>-0     (-----) [001] dn.3 29480.194068: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22243          <idle>-0     (-----) [001] d..2 29480.194079: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
22244     ksoftirqd/1-18    (   18) [001] d.s2 29480.194092: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22245     ksoftirqd/1-18    (   18) [001] d.s3 29480.194139: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22246     ksoftirqd/1-18    (   18) [001] d..2 29480.194162: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22247  kworker/u16:10-23868 (23868) [001] d..2 29480.194388: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22248          <idle>-0     (-----) [001] d..1 29480.194410: cpu_idle: state=2 cpu_id=1
22249          <idle>-0     (-----) [002] d.h4 29480.198167: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22250          <idle>-0     (-----) [002] dnh5 29480.198216: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22251          <idle>-0     (-----) [002] dnh4 29480.198250: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22252          <idle>-0     (-----) [002] dnh5 29480.198282: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22253          <idle>-0     (-----) [002] dnh3 29480.198402: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22254          <idle>-0     (-----) [002] dnh3 29480.198423: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22255          <idle>-0     (-----) [002] dnh4 29480.198442: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22256          <idle>-0     (-----) [002] .n.1 29480.198453: cpu_idle: state=4294967295 cpu_id=2
22257          <idle>-0     (-----) [000] .n.1 29480.198459: cpu_idle: state=4294967295 cpu_id=0
22258          <idle>-0     (-----) [002] d..2 29480.198478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22259          <idle>-0     (-----) [000] d..2 29480.198498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22260 smem_native_cds-87    (   87) [002] d..2 29480.198544: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22261          <idle>-0     (-----) [002] d..2 29480.198549: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22262          <idle>-0     (-----) [002] dn.3 29480.198562: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22263          <idle>-0     (-----) [002] d..2 29480.198573: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22264  HwBinder:771_4-20182 (  771) [000] d..2 29480.198587: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22265     ksoftirqd/2-26    (   26) [002] d..2 29480.198601: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22266          <idle>-0     (-----) [002] d..1 29480.198620: cpu_idle: state=2 cpu_id=2
22267  HwBinder:771_4-20182 (  771) [000] d..3 29480.198648: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22268  HwBinder:771_4-20182 (  771) [000] d..2 29480.198688: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22269          <idle>-0     (-----) [000] d..1 29480.198713: cpu_idle: state=2 cpu_id=0
22270          <idle>-0     (-----) [003] .n.1 29480.198774: cpu_idle: state=4294967295 cpu_id=3
22271          <idle>-0     (-----) [003] d..2 29480.198800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22272         sugov:0-559   (  559) [003] d..2 29480.198844: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22273          <idle>-0     (-----) [003] d..1 29480.198862: cpu_idle: state=2 cpu_id=3
22274          <idle>-0     (-----) [001] .n.1 29480.198964: cpu_idle: state=4294967295 cpu_id=1
22275          <idle>-0     (-----) [001] d..2 29480.198995: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22276 cdsp_smem_glink-88    (   88) [001] d..2 29480.199067: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22277          <idle>-0     (-----) [001] d..1 29480.199085: cpu_idle: state=2 cpu_id=1
22278          <idle>-0     (-----) [005] dnh2 29480.199479: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22279          <idle>-0     (-----) [005] .n.1 29480.199488: cpu_idle: state=4294967295 cpu_id=5
22280          <idle>-0     (-----) [005] d..2 29480.199501: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22281         sugov:4-560   (  560) [005] d..2 29480.199522: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22282          <idle>-0     (-----) [005] d..1 29480.199532: cpu_idle: state=2 cpu_id=5
22283          <idle>-0     (-----) [005] ...1 29480.203277: cpu_idle: state=4294967295 cpu_id=5
22284          <idle>-0     (-----) [005] d..1 29480.203282: cpu_idle: state=2 cpu_id=5
22285          <idle>-0     (-----) [002] d.h4 29480.203329: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22286          <idle>-0     (-----) [002] dnh5 29480.203371: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22287          <idle>-0     (-----) [002] dnh4 29480.203406: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22288          <idle>-0     (-----) [002] dnh5 29480.203433: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22289          <idle>-0     (-----) [002] .n.1 29480.203481: cpu_idle: state=4294967295 cpu_id=2
22290          <idle>-0     (-----) [002] d..2 29480.203509: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22291 smem_native_cds-87    (   87) [002] d..2 29480.203571: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22292          <idle>-0     (-----) [002] d..2 29480.203577: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22293          <idle>-0     (-----) [002] dn.3 29480.203590: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22294          <idle>-0     (-----) [002] d..2 29480.203600: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22295          <idle>-0     (-----) [000] .n.1 29480.203616: cpu_idle: state=4294967295 cpu_id=0
22296     ksoftirqd/2-26    (   26) [002] d..2 29480.203630: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22297          <idle>-0     (-----) [002] d..1 29480.203651: cpu_idle: state=2 cpu_id=2
22298          <idle>-0     (-----) [000] d..2 29480.203651: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22299  HwBinder:771_4-20182 (  771) [000] d.s2 29480.203769: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
22300  HwBinder:771_4-20182 (  771) [000] dns3 29480.203835: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22301  HwBinder:771_4-20182 (  771) [000] d..2 29480.203863: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22302  kworker/u16:10-23868 (23868) [000] d..2 29480.203962: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22303  HwBinder:771_4-20182 (  771) [000] d..2 29480.203977: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22304  HwBinder:771_4-20182 (  771) [000] dn.3 29480.204029: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22305  HwBinder:771_4-20182 (  771) [000] d..2 29480.204041: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22306 cdsp_smem_glink-88    (   88) [000] d..2 29480.204089: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22307  HwBinder:771_4-20182 (  771) [000] d..2 29480.204130: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22308          <idle>-0     (-----) [000] d..1 29480.204152: cpu_idle: state=2 cpu_id=0
22309          <idle>-0     (-----) [002] d.h4 29480.207911: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22310          <idle>-0     (-----) [002] dnh5 29480.207951: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22311          <idle>-0     (-----) [002] dnh4 29480.207983: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22312          <idle>-0     (-----) [002] dnh5 29480.208002: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22313          <idle>-0     (-----) [002] .n.1 29480.208050: cpu_idle: state=4294967295 cpu_id=2
22314          <idle>-0     (-----) [002] d..2 29480.208073: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22315 smem_native_cds-87    (   87) [002] d..2 29480.208134: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22316          <idle>-0     (-----) [002] d..2 29480.208140: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22317          <idle>-0     (-----) [002] dn.3 29480.208153: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22318          <idle>-0     (-----) [002] d..2 29480.208163: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22319     ksoftirqd/2-26    (   26) [002] d..2 29480.208192: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22320          <idle>-0     (-----) [002] d..1 29480.208211: cpu_idle: state=2 cpu_id=2
22321          <idle>-0     (-----) [000] .n.1 29480.208335: cpu_idle: state=4294967295 cpu_id=0
22322          <idle>-0     (-----) [000] d..2 29480.208368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22323  HwBinder:771_4-20182 (  771) [000] d..2 29480.208444: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22324  HwBinder:771_4-20182 (  771) [000] dn.3 29480.208479: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22325  HwBinder:771_4-20182 (  771) [000] d..2 29480.208492: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22326 cdsp_smem_glink-88    (   88) [000] d..2 29480.208540: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22327  HwBinder:771_4-20182 (  771) [000] d..2 29480.208569: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22328          <idle>-0     (-----) [000] d..1 29480.208589: cpu_idle: state=2 cpu_id=0
22329          <idle>-0     (-----) [000] d..2 29480.212468: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22330          <idle>-0     (-----) [002] d.h4 29480.212477: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22331          <idle>-0     (-----) [000] dn.3 29480.212487: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22332          <idle>-0     (-----) [000] .n.1 29480.212493: cpu_idle: state=4294967295 cpu_id=0
22333          <idle>-0     (-----) [000] d..2 29480.212515: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
22334          <idle>-0     (-----) [002] dnh5 29480.212519: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22335          <idle>-0     (-----) [002] dnh4 29480.212553: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22336     ksoftirqd/0-3     (    3) [000] d..2 29480.212568: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22337          <idle>-0     (-----) [000] d..1 29480.212585: cpu_idle: state=2 cpu_id=0
22338          <idle>-0     (-----) [002] dnh5 29480.212590: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22339          <idle>-0     (-----) [002] .n.1 29480.212638: cpu_idle: state=4294967295 cpu_id=2
22340          <idle>-0     (-----) [002] d..2 29480.212664: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22341 smem_native_cds-87    (   87) [002] d..2 29480.212722: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22342          <idle>-0     (-----) [002] d..1 29480.212741: cpu_idle: state=2 cpu_id=2
22343          <idle>-0     (-----) [001] .n.1 29480.212937: cpu_idle: state=4294967295 cpu_id=1
22344          <idle>-0     (-----) [001] d..2 29480.212967: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22345  HwBinder:771_4-20182 (  771) [001] d..2 29480.213056: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22346  HwBinder:771_4-20182 (  771) [001] dn.3 29480.213125: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22347  HwBinder:771_4-20182 (  771) [001] d..2 29480.213140: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22348 cdsp_smem_glink-88    (   88) [001] d..2 29480.213189: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22349  HwBinder:771_4-20182 (  771) [001] d..2 29480.213221: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22350          <idle>-0     (-----) [001] d..1 29480.213241: cpu_idle: state=2 cpu_id=1
22351          <idle>-0     (-----) [001] ...1 29480.217848: cpu_idle: state=4294967295 cpu_id=1
22352          <idle>-0     (-----) [001] d..1 29480.217858: cpu_idle: state=2 cpu_id=1
22353          <idle>-0     (-----) [002] d.h4 29480.217889: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22354          <idle>-0     (-----) [002] dnh5 29480.217937: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22355          <idle>-0     (-----) [002] dnh4 29480.217970: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22356          <idle>-0     (-----) [002] dnh5 29480.218001: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22357          <idle>-0     (-----) [002] dnh3 29480.218120: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22358          <idle>-0     (-----) [002] dnh3 29480.218141: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22359          <idle>-0     (-----) [002] dnh4 29480.218159: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22360          <idle>-0     (-----) [002] .n.1 29480.218171: cpu_idle: state=4294967295 cpu_id=2
22361          <idle>-0     (-----) [000] .n.1 29480.218177: cpu_idle: state=4294967295 cpu_id=0
22362          <idle>-0     (-----) [002] d..2 29480.218195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22363          <idle>-0     (-----) [000] d..2 29480.218214: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22364 smem_native_cds-87    (   87) [002] d..2 29480.218260: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22365          <idle>-0     (-----) [002] d..2 29480.218266: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22366          <idle>-0     (-----) [002] dn.3 29480.218280: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22367          <idle>-0     (-----) [002] d..2 29480.218291: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22368  HwBinder:771_4-20182 (  771) [000] d..2 29480.218298: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22369     ksoftirqd/2-26    (   26) [002] d.s2 29480.218302: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22370     ksoftirqd/2-26    (   26) [002] d.s3 29480.218353: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22371  HwBinder:771_4-20182 (  771) [000] d..3 29480.218384: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22372     ksoftirqd/2-26    (   26) [002] d..2 29480.218400: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22373  HwBinder:771_4-20182 (  771) [000] d..2 29480.218450: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22374          <idle>-0     (-----) [003] .n.1 29480.218473: cpu_idle: state=4294967295 cpu_id=3
22375          <idle>-0     (-----) [003] d..2 29480.218500: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22376          <idle>-0     (-----) [000] d..1 29480.218517: cpu_idle: state=2 cpu_id=0
22377         sugov:0-559   (  559) [003] d..2 29480.218584: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22378 cdsp_smem_glink-88    (   88) [003] d..2 29480.218670: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22379          <idle>-0     (-----) [003] d..1 29480.218690: cpu_idle: state=2 cpu_id=3
22380  kworker/u16:10-23868 (23868) [002] d..2 29480.218736: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22381          <idle>-0     (-----) [002] d..1 29480.218761: cpu_idle: state=2 cpu_id=2
22382          <idle>-0     (-----) [005] dnh2 29480.219201: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22383          <idle>-0     (-----) [005] .n.1 29480.219210: cpu_idle: state=4294967295 cpu_id=5
22384          <idle>-0     (-----) [005] d..2 29480.219222: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22385         sugov:4-560   (  560) [005] d..2 29480.219243: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22386          <idle>-0     (-----) [005] d..1 29480.219253: cpu_idle: state=2 cpu_id=5
22387          <idle>-0     (-----) [005] ...1 29480.223003: cpu_idle: state=4294967295 cpu_id=5
22388          <idle>-0     (-----) [005] d..1 29480.223008: cpu_idle: state=2 cpu_id=5
22389          <idle>-0     (-----) [002] d.h4 29480.223055: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22390          <idle>-0     (-----) [002] dnh5 29480.223096: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22391          <idle>-0     (-----) [002] dnh4 29480.223131: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22392          <idle>-0     (-----) [002] dnh5 29480.223150: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22393          <idle>-0     (-----) [002] .n.1 29480.223198: cpu_idle: state=4294967295 cpu_id=2
22394          <idle>-0     (-----) [002] d..2 29480.223222: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22395 smem_native_cds-87    (   87) [002] d..2 29480.223283: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22396          <idle>-0     (-----) [002] d..2 29480.223290: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22397          <idle>-0     (-----) [002] dn.3 29480.223303: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22398          <idle>-0     (-----) [002] d..2 29480.223314: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22399          <idle>-0     (-----) [000] .n.1 29480.223338: cpu_idle: state=4294967295 cpu_id=0
22400     ksoftirqd/2-26    (   26) [002] d..2 29480.223346: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22401          <idle>-0     (-----) [002] d..1 29480.223368: cpu_idle: state=2 cpu_id=2
22402          <idle>-0     (-----) [000] d..2 29480.223374: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22403  HwBinder:771_4-20182 (  771) [000] d..2 29480.223453: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
22404  HwBinder:771_4-20182 (  771) [000] dn.3 29480.223519: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22405  HwBinder:771_4-20182 (  771) [000] d..2 29480.223534: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22406 cdsp_smem_glink-88    (   88) [000] d..2 29480.223583: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22407  HwBinder:771_4-20182 (  771) [000] d..2 29480.223616: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22408          <idle>-0     (-----) [000] d..1 29480.223637: cpu_idle: state=2 cpu_id=0
22409          <idle>-0     (-----) [002] d.h4 29480.228277: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22410          <idle>-0     (-----) [000] d..2 29480.228279: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22411          <idle>-0     (-----) [000] dn.3 29480.228302: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22412          <idle>-0     (-----) [000] .n.1 29480.228309: cpu_idle: state=4294967295 cpu_id=0
22413          <idle>-0     (-----) [002] dnh5 29480.228318: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22414          <idle>-0     (-----) [000] d..2 29480.228332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
22415     ksoftirqd/0-3     (    3) [000] d.s2 29480.228345: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22416          <idle>-0     (-----) [002] dnh4 29480.228354: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22417          <idle>-0     (-----) [002] dnh5 29480.228387: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22418     ksoftirqd/0-3     (    3) [000] d.s3 29480.228405: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22419     ksoftirqd/0-3     (    3) [000] d..2 29480.228426: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22420          <idle>-0     (-----) [002] .n.1 29480.228438: cpu_idle: state=4294967295 cpu_id=2
22421          <idle>-0     (-----) [002] d..2 29480.228493: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22422 smem_native_cds-87    (   87) [002] d..2 29480.228567: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22423          <idle>-0     (-----) [002] d..1 29480.228622: cpu_idle: state=2 cpu_id=2
22424  kworker/u16:10-23868 (23868) [000] d..2 29480.228652: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22425          <idle>-0     (-----) [000] d..1 29480.228675: cpu_idle: state=2 cpu_id=0
22426          <idle>-0     (-----) [001] .n.1 29480.228706: cpu_idle: state=4294967295 cpu_id=1
22427          <idle>-0     (-----) [001] d..2 29480.228740: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22428  HwBinder:771_4-20182 (  771) [001] d..2 29480.228817: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22429  HwBinder:771_4-20182 (  771) [001] dn.3 29480.228880: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22430  HwBinder:771_4-20182 (  771) [001] d..2 29480.228895: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22431 cdsp_smem_glink-88    (   88) [001] d..2 29480.228941: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22432  HwBinder:771_4-20182 (  771) [001] d..2 29480.228973: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22433          <idle>-0     (-----) [001] d..1 29480.228994: cpu_idle: state=2 cpu_id=1
22434          <idle>-0     (-----) [002] d.h4 29480.231060: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22435          <idle>-0     (-----) [002] dnh5 29480.231096: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22436          <idle>-0     (-----) [002] .n.1 29480.231115: cpu_idle: state=4294967295 cpu_id=2
22437          <idle>-0     (-----) [002] d..2 29480.231138: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22438 smem_native_cds-87    (   87) [002] d..2 29480.231206: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22439          <idle>-0     (-----) [002] d..2 29480.231211: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22440          <idle>-0     (-----) [002] dn.3 29480.231223: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22441          <idle>-0     (-----) [002] d..2 29480.231233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22442     ksoftirqd/2-26    (   26) [002] d..2 29480.231261: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22443          <idle>-0     (-----) [002] d..1 29480.231278: cpu_idle: state=2 cpu_id=2
22444          <idle>-0     (-----) [002] d.h4 29480.233200: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22445          <idle>-0     (-----) [002] d.h5 29480.233242: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22446          <idle>-0     (-----) [002] ...1 29480.233300: cpu_idle: state=4294967295 cpu_id=2
22447          <idle>-0     (-----) [002] d..1 29480.233310: cpu_idle: state=2 cpu_id=2
22448          <idle>-0     (-----) [000] .n.1 29480.233562: cpu_idle: state=4294967295 cpu_id=0
22449          <idle>-0     (-----) [000] d..2 29480.233593: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22450  HwBinder:771_4-20182 (  771) [000] d..2 29480.233672: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
22451  HwBinder:771_4-20182 (  771) [000] dn.3 29480.233738: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22452  HwBinder:771_4-20182 (  771) [000] d..2 29480.233806: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22453 cdsp_smem_glink-88    (   88) [000] d..2 29480.233856: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22454  HwBinder:771_4-20182 (  771) [000] d..2 29480.233898: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22455          <idle>-0     (-----) [000] d..1 29480.233919: cpu_idle: state=2 cpu_id=0
22456          <idle>-0     (-----) [002] d.h4 29480.236582: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22457          <idle>-0     (-----) [002] dnh5 29480.236618: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22458          <idle>-0     (-----) [002] .n.1 29480.236637: cpu_idle: state=4294967295 cpu_id=2
22459          <idle>-0     (-----) [002] d..2 29480.236659: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22460 smem_native_cds-87    (   87) [002] d..2 29480.236719: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22461          <idle>-0     (-----) [002] d..1 29480.236738: cpu_idle: state=2 cpu_id=2
22462          <idle>-0     (-----) [003] d.h2 29480.238591: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
22463          <idle>-0     (-----) [003] dnh3 29480.238633: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
22464          <idle>-0     (-----) [003] dnh3 29480.238739: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22465          <idle>-0     (-----) [002] d.h4 29480.238754: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22466          <idle>-0     (-----) [003] dnh3 29480.238755: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22467          <idle>-0     (-----) [003] dnh4 29480.238782: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
22468          <idle>-0     (-----) [003] .n.1 29480.238794: cpu_idle: state=4294967295 cpu_id=3
22469          <idle>-0     (-----) [002] dnh5 29480.238797: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22470          <idle>-0     (-----) [003] d..2 29480.238817: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
22471          <idle>-0     (-----) [002] .n.1 29480.238856: cpu_idle: state=4294967295 cpu_id=2
22472          <idle>-0     (-----) [002] d..2 29480.238882: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22473         sugov:0-559   (  559) [002] d..2 29480.238936: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22474          <idle>-0     (-----) [002] d..2 29480.238941: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22475          <idle>-0     (-----) [002] dn.3 29480.238956: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22476          <idle>-0     (-----) [002] d..2 29480.238968: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22477     ksoftirqd/2-26    (   26) [002] d.s2 29480.238979: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22478     ksoftirqd/2-26    (   26) [002] d.s3 29480.239031: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22479 bluetooth@1.0-s-24508 (  759) [003] d..2 29480.239042: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22480     ksoftirqd/2-26    (   26) [002] d..2 29480.239051: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22481          <idle>-0     (-----) [003] d..1 29480.239063: cpu_idle: state=2 cpu_id=3
22482          <idle>-0     (-----) [000] .n.1 29480.239106: cpu_idle: state=4294967295 cpu_id=0
22483          <idle>-0     (-----) [000] d..2 29480.239141: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22484  kworker/u16:10-23868 (23868) [002] d..2 29480.239221: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22485  HwBinder:771_4-20182 (  771) [000] d..2 29480.239246: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22486          <idle>-0     (-----) [002] d..1 29480.239246: cpu_idle: state=0 cpu_id=2
22487  HwBinder:771_4-20182 (  771) [000] dn.3 29480.239290: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22488  HwBinder:771_4-20182 (  771) [000] d..2 29480.239304: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22489 cdsp_smem_glink-88    (   88) [000] d..2 29480.239351: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22490  HwBinder:771_4-20182 (  771) [000] d..2 29480.239387: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22491          <idle>-0     (-----) [000] d..1 29480.239413: cpu_idle: state=2 cpu_id=0
22492          <idle>-0     (-----) [005] dnh2 29480.239803: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22493          <idle>-0     (-----) [005] .n.1 29480.239812: cpu_idle: state=4294967295 cpu_id=5
22494          <idle>-0     (-----) [005] d..2 29480.239823: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22495         sugov:4-560   (  560) [005] d..2 29480.239846: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22496          <idle>-0     (-----) [005] d..1 29480.239857: cpu_idle: state=2 cpu_id=5
22497          <idle>-0     (-----) [002] d.h4 29480.241661: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22498          <idle>-0     (-----) [002] dnh5 29480.241689: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22499          <idle>-0     (-----) [002] .n.1 29480.241707: cpu_idle: state=4294967295 cpu_id=2
22500          <idle>-0     (-----) [002] d..2 29480.241726: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22501 smem_native_cds-87    (   87) [002] d..2 29480.241785: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22502          <idle>-0     (-----) [002] d..2 29480.241789: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22503          <idle>-0     (-----) [002] dn.3 29480.241801: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22504          <idle>-0     (-----) [002] d..2 29480.241812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22505     ksoftirqd/2-26    (   26) [002] d..2 29480.241839: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22506          <idle>-0     (-----) [002] d..1 29480.241858: cpu_idle: state=0 cpu_id=2
22507          <idle>-0     (-----) [002] d.h4 29480.244035: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22508          <idle>-0     (-----) [002] d.h5 29480.244056: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22509          <idle>-0     (-----) [002] d..2 29480.244099: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22510          <idle>-0     (-----) [002] dn.3 29480.244109: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22511          <idle>-0     (-----) [002] .n.1 29480.244116: cpu_idle: state=4294967295 cpu_id=2
22512          <idle>-0     (-----) [002] d..2 29480.244133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22513     ksoftirqd/2-26    (   26) [002] d.s2 29480.244142: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22514     ksoftirqd/2-26    (   26) [002] d.s3 29480.244163: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22515     ksoftirqd/2-26    (   26) [002] d..2 29480.244180: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22516          <idle>-0     (-----) [000] .n.1 29480.244367: cpu_idle: state=4294967295 cpu_id=0
22517          <idle>-0     (-----) [000] d..2 29480.244404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22518  kworker/u16:10-23868 (23868) [002] d..2 29480.244473: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22519  HwBinder:771_4-20182 (  771) [000] d..2 29480.244487: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22520          <idle>-0     (-----) [002] d..1 29480.244497: cpu_idle: state=0 cpu_id=2
22521  HwBinder:771_4-20182 (  771) [000] dn.3 29480.244527: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22522  HwBinder:771_4-20182 (  771) [000] d..2 29480.244541: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22523 cdsp_smem_glink-88    (   88) [000] d..2 29480.244587: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22524  HwBinder:771_4-20182 (  771) [000] d..2 29480.244624: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22525          <idle>-0     (-----) [000] d..1 29480.244649: cpu_idle: state=2 cpu_id=0
22526          <idle>-0     (-----) [003] d.s3 29480.244823: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22527          <idle>-0     (-----) [003] d.s4 29480.244879: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
22528          <idle>-0     (-----) [003] dns4 29480.244890: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22529          <idle>-0     (-----) [003] .n.1 29480.244902: cpu_idle: state=4294967295 cpu_id=3
22530          <idle>-0     (-----) [003] d..2 29480.244926: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22531  kworker/u16:10-23868 (23868) [003] d..2 29480.244982: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22532          <idle>-0     (-----) [003] d..1 29480.244999: cpu_idle: state=2 cpu_id=3
22533          <idle>-0     (-----) [002] d.h4 29480.247248: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22534          <idle>-0     (-----) [002] dnh5 29480.247273: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22535          <idle>-0     (-----) [002] .n.1 29480.247293: cpu_idle: state=4294967295 cpu_id=2
22536          <idle>-0     (-----) [002] d..2 29480.247312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22537 smem_native_cds-87    (   87) [002] d..2 29480.247370: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22538          <idle>-0     (-----) [002] d..2 29480.247375: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22539          <idle>-0     (-----) [002] dn.3 29480.247386: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22540          <idle>-0     (-----) [002] d..2 29480.247399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22541     ksoftirqd/2-26    (   26) [002] d.s2 29480.247408: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22542     ksoftirqd/2-26    (   26) [002] d.s3 29480.247458: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22543     ksoftirqd/2-26    (   26) [002] d..2 29480.247480: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22544  kworker/u16:10-23868 (23868) [002] d..2 29480.247585: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22545          <idle>-0     (-----) [002] d..1 29480.247607: cpu_idle: state=0 cpu_id=2
22546          <idle>-0     (-----) [002] d.h4 29480.249621: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22547          <idle>-0     (-----) [002] d.h5 29480.249646: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22548          <idle>-0     (-----) [002] ...1 29480.249698: cpu_idle: state=4294967295 cpu_id=2
22549          <idle>-0     (-----) [002] d..1 29480.249705: cpu_idle: state=0 cpu_id=2
22550          <idle>-0     (-----) [000] .n.1 29480.249965: cpu_idle: state=4294967295 cpu_id=0
22551          <idle>-0     (-----) [000] d..2 29480.250003: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22552  HwBinder:771_4-20182 (  771) [000] d..2 29480.250088: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22553  HwBinder:771_4-20182 (  771) [000] dn.3 29480.250132: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22554  HwBinder:771_4-20182 (  771) [000] d..2 29480.250150: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22555 cdsp_smem_glink-88    (   88) [000] d..2 29480.250198: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22556  HwBinder:771_4-20182 (  771) [000] d..2 29480.250235: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22557          <idle>-0     (-----) [000] d..1 29480.250264: cpu_idle: state=0 cpu_id=0
22558          <idle>-0     (-----) [002] d.h4 29480.252885: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22559          <idle>-0     (-----) [002] dnh5 29480.252909: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22560          <idle>-0     (-----) [002] .n.1 29480.252922: cpu_idle: state=4294967295 cpu_id=2
22561          <idle>-0     (-----) [002] d..2 29480.252943: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22562 smem_native_cds-87    (   87) [002] d..2 29480.253008: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22563          <idle>-0     (-----) [002] d..2 29480.253014: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22564          <idle>-0     (-----) [002] dn.3 29480.253026: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22565          <idle>-0     (-----) [002] d..2 29480.253036: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22566     ksoftirqd/2-26    (   26) [002] d.s2 29480.253047: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
22567     ksoftirqd/2-26    (   26) [002] d.s3 29480.253063: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
22568     ksoftirqd/2-26    (   26) [002] d..2 29480.253079: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
22569     kworker/2:2-13636 (13636) [002] d..2 29480.253128: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22570          <idle>-0     (-----) [002] d..1 29480.253149: cpu_idle: state=0 cpu_id=2
22571          <idle>-0     (-----) [002] d.h4 29480.254757: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22572          <idle>-0     (-----) [002] d.h5 29480.254782: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22573          <idle>-0     (-----) [000] .n.1 29480.254792: cpu_idle: state=4294967295 cpu_id=0
22574          <idle>-0     (-----) [000] d..2 29480.254811: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22575          <idle>-0     (-----) [002] d..2 29480.254829: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22576          <idle>-0     (-----) [002] dn.3 29480.254840: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22577          <idle>-0     (-----) [002] .n.1 29480.254847: cpu_idle: state=4294967295 cpu_id=2
22578          <idle>-0     (-----) [002] d..2 29480.254866: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22579  HwBinder:771_4-20182 (  771) [000] d..2 29480.254868: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22580     ksoftirqd/2-26    (   26) [002] d..2 29480.254901: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22581          <idle>-0     (-----) [002] d..1 29480.254919: cpu_idle: state=0 cpu_id=2
22582  HwBinder:771_4-20182 (  771) [000] d..3 29480.254931: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22583          <idle>-0     (-----) [002] .n.1 29480.254938: cpu_idle: state=4294967295 cpu_id=2
22584          <idle>-0     (-----) [002] d..2 29480.254954: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22585  HwBinder:771_4-20182 (  771) [000] d..2 29480.254966: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22586          <idle>-0     (-----) [000] d..1 29480.254987: cpu_idle: state=0 cpu_id=0
22587 cdsp_smem_glink-88    (   88) [002] d..2 29480.255014: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22588          <idle>-0     (-----) [002] d..1 29480.255029: cpu_idle: state=2 cpu_id=2
22589          <idle>-0     (-----) [002] d.h4 29480.255512: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22590          <idle>-0     (-----) [002] dnh5 29480.255549: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22591          <idle>-0     (-----) [002] .n.1 29480.255568: cpu_idle: state=4294967295 cpu_id=2
22592          <idle>-0     (-----) [002] d..2 29480.255588: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22593 smem_native_cds-87    (   87) [002] d..2 29480.255645: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22594          <idle>-0     (-----) [002] d..1 29480.255667: cpu_idle: state=0 cpu_id=2
22595          <idle>-0     (-----) [002] d.h4 29480.256416: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22596          <idle>-0     (-----) [002] d.h5 29480.256440: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22597          <idle>-0     (-----) [000] .n.1 29480.256449: cpu_idle: state=4294967295 cpu_id=0
22598          <idle>-0     (-----) [000] d..2 29480.256466: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22599          <idle>-0     (-----) [002] ...1 29480.256494: cpu_idle: state=4294967295 cpu_id=2
22600          <idle>-0     (-----) [002] d..1 29480.256501: cpu_idle: state=0 cpu_id=2
22601  HwBinder:771_4-20182 (  771) [000] d..2 29480.256532: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22602  HwBinder:771_4-20182 (  771) [000] dn.3 29480.256592: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22603  HwBinder:771_4-20182 (  771) [000] d..2 29480.256606: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22604 cdsp_smem_glink-88    (   88) [000] d..2 29480.256653: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22605  HwBinder:771_4-20182 (  771) [000] d..2 29480.256680: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22606          <idle>-0     (-----) [000] d..1 29480.256700: cpu_idle: state=2 cpu_id=0
22607          <idle>-0     (-----) [002] d.h4 29480.256714: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22608          <idle>-0     (-----) [002] dnh5 29480.256730: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22609          <idle>-0     (-----) [002] .n.1 29480.256742: cpu_idle: state=4294967295 cpu_id=2
22610          <idle>-0     (-----) [002] d..2 29480.256758: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22611 smem_native_cds-87    (   87) [002] d..2 29480.256808: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22612          <idle>-0     (-----) [002] d..1 29480.256826: cpu_idle: state=0 cpu_id=2
22613          <idle>-0     (-----) [002] d..2 29480.258189: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22614          <idle>-0     (-----) [002] dn.3 29480.258206: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22615          <idle>-0     (-----) [002] dnH4 29480.258323: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22616          <idle>-0     (-----) [002] dnH5 29480.258348: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22617          <idle>-0     (-----) [002] dnH3 29480.258399: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22618          <idle>-0     (-----) [002] dnH3 29480.258417: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
22619          <idle>-0     (-----) [002] dnH4 29480.258442: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22620          <idle>-0     (-----) [002] dns3 29480.258456: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22621          <idle>-0     (-----) [002] dns4 29480.258502: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22622          <idle>-0     (-----) [002] dns3 29480.258511: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
22623          <idle>-0     (-----) [002] dns4 29480.258523: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
22624          <idle>-0     (-----) [002] .n.1 29480.258534: cpu_idle: state=4294967295 cpu_id=2
22625          <idle>-0     (-----) [002] d..2 29480.258555: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
22626     kworker/2:2-13636 (13636) [002] d..2 29480.258598: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22627     ksoftirqd/2-26    (   26) [002] d..2 29480.258635: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22628          <idle>-0     (-----) [002] d..1 29480.258654: cpu_idle: state=2 cpu_id=2
22629          <idle>-0     (-----) [000] .n.1 29480.258657: cpu_idle: state=4294967295 cpu_id=0
22630          <idle>-0     (-----) [000] d..2 29480.258696: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22631  HwBinder:771_4-20182 (  771) [000] d..2 29480.258774: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22632          <idle>-0     (-----) [003] .n.1 29480.258776: cpu_idle: state=4294967295 cpu_id=3
22633          <idle>-0     (-----) [003] d..2 29480.258806: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22634         sugov:0-559   (  559) [003] d..2 29480.258832: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22635  HwBinder:771_4-20182 (  771) [000] d..3 29480.258862: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
22636  HwBinder:771_4-20182 (  771) [000] d..2 29480.258911: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22637          <idle>-0     (-----) [000] d..1 29480.258963: cpu_idle: state=0 cpu_id=0
22638  kworker/u16:10-23868 (23868) [003] d..2 29480.259040: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22639 cdsp_smem_glink-88    (   88) [003] d..2 29480.259123: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22640          <idle>-0     (-----) [003] d..1 29480.259148: cpu_idle: state=2 cpu_id=3
22641          <idle>-0     (-----) [005] dnh2 29480.259465: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22642          <idle>-0     (-----) [005] .n.1 29480.259474: cpu_idle: state=4294967295 cpu_id=5
22643          <idle>-0     (-----) [005] d..2 29480.259486: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22644         sugov:4-560   (  560) [005] d..2 29480.259508: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22645          <idle>-0     (-----) [005] d..1 29480.259518: cpu_idle: state=2 cpu_id=5
22646          <idle>-0     (-----) [002] d.h4 29480.261819: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22647          <idle>-0     (-----) [002] dnh5 29480.261862: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22648          <idle>-0     (-----) [002] .n.1 29480.261884: cpu_idle: state=4294967295 cpu_id=2
22649          <idle>-0     (-----) [002] d..2 29480.261907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22650 smem_native_cds-87    (   87) [002] d..2 29480.261974: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22651          <idle>-0     (-----) [002] d..2 29480.261980: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22652          <idle>-0     (-----) [002] dn.3 29480.261990: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22653          <idle>-0     (-----) [002] d..2 29480.262002: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22654     ksoftirqd/2-26    (   26) [002] d..2 29480.262029: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22655          <idle>-0     (-----) [002] d..1 29480.262052: cpu_idle: state=0 cpu_id=2
22656          <idle>-0     (-----) [002] ...1 29480.263411: cpu_idle: state=4294967295 cpu_id=2
22657          <idle>-0     (-----) [002] d..1 29480.263417: cpu_idle: state=2 cpu_id=2
22658          <idle>-0     (-----) [002] d.h4 29480.263909: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22659          <idle>-0     (-----) [002] d.h5 29480.263943: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22660          <idle>-0     (-----) [000] .n.1 29480.263951: cpu_idle: state=4294967295 cpu_id=0
22661          <idle>-0     (-----) [000] d..2 29480.263971: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22662          <idle>-0     (-----) [002] d..2 29480.263994: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22663          <idle>-0     (-----) [002] dn.3 29480.264005: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22664          <idle>-0     (-----) [002] .n.1 29480.264012: cpu_idle: state=4294967295 cpu_id=2
22665  HwBinder:771_4-20182 (  771) [000] d..2 29480.264034: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
22666          <idle>-0     (-----) [002] d..2 29480.264038: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22667     ksoftirqd/2-26    (   26) [002] d..2 29480.264090: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22668  HwBinder:771_4-20182 (  771) [000] d..3 29480.264107: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22669          <idle>-0     (-----) [002] d..2 29480.264122: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22670  HwBinder:771_4-20182 (  771) [000] d..2 29480.264144: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22671          <idle>-0     (-----) [000] d..1 29480.264165: cpu_idle: state=0 cpu_id=0
22672 cdsp_smem_glink-88    (   88) [002] d..2 29480.264181: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22673          <idle>-0     (-----) [002] d..1 29480.264202: cpu_idle: state=0 cpu_id=2
22674          <idle>-0     (-----) [002] d.h4 29480.266736: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22675          <idle>-0     (-----) [002] dnh5 29480.266761: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22676          <idle>-0     (-----) [002] .n.1 29480.266775: cpu_idle: state=4294967295 cpu_id=2
22677          <idle>-0     (-----) [002] d..2 29480.266789: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22678 smem_native_cds-87    (   87) [002] d..2 29480.266837: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22679          <idle>-0     (-----) [002] d..1 29480.266856: cpu_idle: state=0 cpu_id=2
22680          <idle>-0     (-----) [002] d.h4 29480.268516: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22681          <idle>-0     (-----) [002] d.h5 29480.268541: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22682          <idle>-0     (-----) [000] .n.1 29480.268549: cpu_idle: state=4294967295 cpu_id=0
22683          <idle>-0     (-----) [000] d..2 29480.268570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22684          <idle>-0     (-----) [002] d..2 29480.268585: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22685          <idle>-0     (-----) [002] dn.3 29480.268596: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22686          <idle>-0     (-----) [002] .n.1 29480.268603: cpu_idle: state=4294967295 cpu_id=2
22687          <idle>-0     (-----) [002] d..2 29480.268622: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22688     ksoftirqd/2-26    (   26) [002] d.s2 29480.268632: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22689     ksoftirqd/2-26    (   26) [002] d.s3 29480.268682: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22690     ksoftirqd/2-26    (   26) [002] d..2 29480.268701: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22691  kworker/u16:10-23868 (23868) [002] d..2 29480.268883: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22692  HwBinder:771_4-20182 (  771) [000] d..2 29480.268884: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22693          <idle>-0     (-----) [002] d..1 29480.268906: cpu_idle: state=0 cpu_id=2
22694  HwBinder:771_4-20182 (  771) [000] d..3 29480.268922: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22695          <idle>-0     (-----) [002] .n.1 29480.268930: cpu_idle: state=4294967295 cpu_id=2
22696          <idle>-0     (-----) [002] d..2 29480.268947: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22697  HwBinder:771_4-20182 (  771) [000] d..2 29480.268960: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22698          <idle>-0     (-----) [000] d..1 29480.268988: cpu_idle: state=0 cpu_id=0
22699 cdsp_smem_glink-88    (   88) [002] d..2 29480.269010: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22700          <idle>-0     (-----) [002] d..1 29480.269027: cpu_idle: state=0 cpu_id=2
22701          <idle>-0     (-----) [002] d.h4 29480.271538: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22702          <idle>-0     (-----) [002] dnh5 29480.271566: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22703          <idle>-0     (-----) [002] .n.1 29480.271584: cpu_idle: state=4294967295 cpu_id=2
22704          <idle>-0     (-----) [002] d..2 29480.271601: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22705 smem_native_cds-87    (   87) [002] d..2 29480.271656: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22706          <idle>-0     (-----) [002] d..2 29480.271661: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22707          <idle>-0     (-----) [002] dn.3 29480.271673: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22708          <idle>-0     (-----) [002] d..2 29480.271683: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22709     ksoftirqd/2-26    (   26) [002] d..2 29480.271709: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22710          <idle>-0     (-----) [002] d..1 29480.271727: cpu_idle: state=0 cpu_id=2
22711          <idle>-0     (-----) [002] d.h4 29480.273841: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22712          <idle>-0     (-----) [002] d.h5 29480.273865: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22713          <idle>-0     (-----) [000] .n.1 29480.273875: cpu_idle: state=4294967295 cpu_id=0
22714          <idle>-0     (-----) [000] d..2 29480.273896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22715          <idle>-0     (-----) [002] d..2 29480.273913: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22716          <idle>-0     (-----) [002] dn.3 29480.273924: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22717          <idle>-0     (-----) [002] .n.1 29480.273931: cpu_idle: state=4294967295 cpu_id=2
22718          <idle>-0     (-----) [002] d..2 29480.273950: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22719  HwBinder:771_4-20182 (  771) [000] d..2 29480.273961: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22720     ksoftirqd/2-26    (   26) [002] d..2 29480.273986: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22721  HwBinder:771_4-20182 (  771) [000] d..3 29480.274003: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22722          <idle>-0     (-----) [002] d..2 29480.274015: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22723  HwBinder:771_4-20182 (  771) [000] d..2 29480.274051: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22724          <idle>-0     (-----) [000] d..1 29480.274072: cpu_idle: state=0 cpu_id=0
22725 cdsp_smem_glink-88    (   88) [002] d..2 29480.274077: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22726          <idle>-0     (-----) [002] d..1 29480.274094: cpu_idle: state=2 cpu_id=2
22727          <idle>-0     (-----) [002] d.h4 29480.274572: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22728          <idle>-0     (-----) [002] dnh5 29480.274609: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22729          <idle>-0     (-----) [002] .n.1 29480.274628: cpu_idle: state=4294967295 cpu_id=2
22730          <idle>-0     (-----) [002] d..2 29480.274649: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22731 smem_native_cds-87    (   87) [002] d..2 29480.274705: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22732          <idle>-0     (-----) [002] d..1 29480.274726: cpu_idle: state=0 cpu_id=2
22733          <idle>-0     (-----) [002] d.h4 29480.275201: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22734          <idle>-0     (-----) [002] d.h5 29480.275226: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22735          <idle>-0     (-----) [000] .n.1 29480.275233: cpu_idle: state=4294967295 cpu_id=0
22736          <idle>-0     (-----) [000] d..2 29480.275250: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22737          <idle>-0     (-----) [002] ...1 29480.275281: cpu_idle: state=4294967295 cpu_id=2
22738          <idle>-0     (-----) [002] d..1 29480.275288: cpu_idle: state=0 cpu_id=2
22739  HwBinder:771_4-20182 (  771) [000] d..2 29480.275311: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22740  HwBinder:771_4-20182 (  771) [000] dn.3 29480.275373: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22741  HwBinder:771_4-20182 (  771) [000] d..2 29480.275386: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22742 cdsp_smem_glink-88    (   88) [000] d..2 29480.275439: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22743  HwBinder:771_4-20182 (  771) [000] d..2 29480.275467: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22744          <idle>-0     (-----) [000] d..1 29480.275489: cpu_idle: state=0 cpu_id=0
22745          <idle>-0     (-----) [002] d.h4 29480.275497: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22746          <idle>-0     (-----) [002] dnh5 29480.275511: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22747          <idle>-0     (-----) [002] .n.1 29480.275523: cpu_idle: state=4294967295 cpu_id=2
22748          <idle>-0     (-----) [002] d..2 29480.275539: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22749 smem_native_cds-87    (   87) [002] d..2 29480.275593: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22750          <idle>-0     (-----) [002] d..1 29480.275611: cpu_idle: state=0 cpu_id=2
22751          <idle>-0     (-----) [002] d.h4 29480.277159: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22752          <idle>-0     (-----) [002] d.h5 29480.277191: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22753          <idle>-0     (-----) [000] .n.1 29480.277199: cpu_idle: state=4294967295 cpu_id=0
22754          <idle>-0     (-----) [000] d..2 29480.277218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22755          <idle>-0     (-----) [002] d..2 29480.277239: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22756          <idle>-0     (-----) [002] dn.3 29480.277251: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22757  HwBinder:771_4-20182 (  771) [000] d..2 29480.277277: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22758          <idle>-0     (-----) [002] dnH3 29480.277346: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22759          <idle>-0     (-----) [002] dnH3 29480.277366: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22760  HwBinder:771_4-20182 (  771) [000] d..3 29480.277368: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22761          <idle>-0     (-----) [002] dnH4 29480.277384: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22762          <idle>-0     (-----) [002] dns3 29480.277399: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22763  HwBinder:771_4-20182 (  771) [000] d..2 29480.277411: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22764          <idle>-0     (-----) [000] d..1 29480.277430: cpu_idle: state=2 cpu_id=0
22765          <idle>-0     (-----) [002] dns4 29480.277452: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22766          <idle>-0     (-----) [002] .n.1 29480.277469: cpu_idle: state=4294967295 cpu_id=2
22767          <idle>-0     (-----) [002] d..2 29480.277491: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22768     ksoftirqd/2-26    (   26) [002] d..2 29480.277507: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22769 cdsp_smem_glink-88    (   88) [002] d..2 29480.277570: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22770          <idle>-0     (-----) [002] d..1 29480.277591: cpu_idle: state=0 cpu_id=2
22771          <idle>-0     (-----) [003] .n.1 29480.277720: cpu_idle: state=4294967295 cpu_id=3
22772          <idle>-0     (-----) [003] d..2 29480.277748: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22773         sugov:0-559   (  559) [003] d..2 29480.277797: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22774          <idle>-0     (-----) [003] d..1 29480.277819: cpu_idle: state=2 cpu_id=3
22775          <idle>-0     (-----) [000] .n.1 29480.277892: cpu_idle: state=4294967295 cpu_id=0
22776          <idle>-0     (-----) [000] d..2 29480.277923: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22777  kworker/u16:10-23868 (23868) [000] d..2 29480.278045: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22778          <idle>-0     (-----) [000] d..1 29480.278069: cpu_idle: state=0 cpu_id=0
22779          <idle>-0     (-----) [005] dnh2 29480.278435: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22780          <idle>-0     (-----) [005] .n.1 29480.278445: cpu_idle: state=4294967295 cpu_id=5
22781          <idle>-0     (-----) [005] d..2 29480.278458: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22782         sugov:4-560   (  560) [005] d..2 29480.278481: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22783          <idle>-0     (-----) [005] d..1 29480.278493: cpu_idle: state=2 cpu_id=5
22784          <idle>-0     (-----) [002] d.h4 29480.280335: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22785          <idle>-0     (-----) [002] dnh5 29480.280360: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22786          <idle>-0     (-----) [002] .n.1 29480.280377: cpu_idle: state=4294967295 cpu_id=2
22787          <idle>-0     (-----) [002] d..2 29480.280392: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22788 smem_native_cds-87    (   87) [002] d..2 29480.280502: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22789          <idle>-0     (-----) [002] d..1 29480.280524: cpu_idle: state=0 cpu_id=2
22790          <idle>-0     (-----) [002] d.h4 29480.282710: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22791          <idle>-0     (-----) [002] d.h5 29480.282733: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22792          <idle>-0     (-----) [000] .n.1 29480.282743: cpu_idle: state=4294967295 cpu_id=0
22793          <idle>-0     (-----) [000] d..2 29480.282761: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22794          <idle>-0     (-----) [002] ...1 29480.282787: cpu_idle: state=4294967295 cpu_id=2
22795          <idle>-0     (-----) [002] d..1 29480.282794: cpu_idle: state=0 cpu_id=2
22796  HwBinder:771_4-20182 (  771) [000] d..2 29480.282845: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22797  HwBinder:771_4-20182 (  771) [000] dn.3 29480.282915: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22798  HwBinder:771_4-20182 (  771) [000] d..2 29480.282932: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22799 cdsp_smem_glink-88    (   88) [000] d..2 29480.282981: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22800  HwBinder:771_4-20182 (  771) [000] d..2 29480.283009: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22801          <idle>-0     (-----) [000] d..1 29480.283031: cpu_idle: state=0 cpu_id=0
22802          <idle>-0     (-----) [002] d.h4 29480.283054: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22803          <idle>-0     (-----) [002] dnh5 29480.283077: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22804          <idle>-0     (-----) [002] .n.1 29480.283091: cpu_idle: state=4294967295 cpu_id=2
22805          <idle>-0     (-----) [002] d..2 29480.283108: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22806 smem_native_cds-87    (   87) [002] d..2 29480.283160: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22807          <idle>-0     (-----) [002] d..1 29480.283176: cpu_idle: state=2 cpu_id=2
22808          <idle>-0     (-----) [002] d.h4 29480.284900: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22809          <idle>-0     (-----) [002] d.h5 29480.284934: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22810          <idle>-0     (-----) [000] .n.1 29480.284942: cpu_idle: state=4294967295 cpu_id=0
22811          <idle>-0     (-----) [000] d..2 29480.284962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22812          <idle>-0     (-----) [002] d..2 29480.284985: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22813          <idle>-0     (-----) [002] dn.3 29480.284996: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22814          <idle>-0     (-----) [002] .n.1 29480.285003: cpu_idle: state=4294967295 cpu_id=2
22815  HwBinder:771_4-20182 (  771) [000] d..2 29480.285022: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22816          <idle>-0     (-----) [002] d..2 29480.285031: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22817  HwBinder:771_4-20182 (  771) [000] d..3 29480.285087: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22818     ksoftirqd/2-26    (   26) [002] d..2 29480.285100: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22819  HwBinder:771_4-20182 (  771) [000] d..2 29480.285138: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22820          <idle>-0     (-----) [000] d..1 29480.285159: cpu_idle: state=0 cpu_id=0
22821 cdsp_smem_glink-88    (   88) [002] d..2 29480.285160: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22822          <idle>-0     (-----) [002] d..1 29480.285188: cpu_idle: state=0 cpu_id=2
22823          <idle>-0     (-----) [002] d.h4 29480.287960: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22824          <idle>-0     (-----) [002] dnh5 29480.287985: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22825          <idle>-0     (-----) [002] .n.1 29480.288000: cpu_idle: state=4294967295 cpu_id=2
22826          <idle>-0     (-----) [002] d..2 29480.288018: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22827 smem_native_cds-87    (   87) [002] d..2 29480.288074: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22828          <idle>-0     (-----) [002] d..2 29480.288080: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22829          <idle>-0     (-----) [002] dn.3 29480.288090: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22830          <idle>-0     (-----) [002] d..2 29480.288102: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22831     ksoftirqd/2-26    (   26) [002] d.s2 29480.288110: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22832     ksoftirqd/2-26    (   26) [002] d.s3 29480.288163: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22833     ksoftirqd/2-26    (   26) [002] d..2 29480.288184: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22834  kworker/u16:10-23868 (23868) [002] d..2 29480.288298: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22835          <idle>-0     (-----) [002] d..1 29480.288321: cpu_idle: state=0 cpu_id=2
22836          <idle>-0     (-----) [002] d.h4 29480.290331: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22837          <idle>-0     (-----) [002] d.h5 29480.290357: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22838          <idle>-0     (-----) [000] .n.1 29480.290366: cpu_idle: state=4294967295 cpu_id=0
22839          <idle>-0     (-----) [000] d..2 29480.290384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22840          <idle>-0     (-----) [002] ...1 29480.290412: cpu_idle: state=4294967295 cpu_id=2
22841          <idle>-0     (-----) [002] d..1 29480.290421: cpu_idle: state=0 cpu_id=2
22842  HwBinder:771_4-20182 (  771) [000] d..2 29480.290495: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22843  HwBinder:771_4-20182 (  771) [000] dn.3 29480.290555: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22844  HwBinder:771_4-20182 (  771) [000] d..2 29480.290569: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22845 cdsp_smem_glink-88    (   88) [000] d..2 29480.290616: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22846  HwBinder:771_4-20182 (  771) [000] d..2 29480.290657: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22847          <idle>-0     (-----) [000] d..1 29480.290680: cpu_idle: state=0 cpu_id=0
22848          <idle>-0     (-----) [002] d.h4 29480.290695: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22849          <idle>-0     (-----) [002] dnh5 29480.290718: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22850          <idle>-0     (-----) [002] .n.1 29480.290731: cpu_idle: state=4294967295 cpu_id=2
22851          <idle>-0     (-----) [002] d..2 29480.290750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22852 smem_native_cds-87    (   87) [002] d..2 29480.290808: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22853          <idle>-0     (-----) [002] d..1 29480.290827: cpu_idle: state=0 cpu_id=2
22854          <idle>-0     (-----) [002] d.h4 29480.292261: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22855          <idle>-0     (-----) [002] d.h5 29480.292282: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22856          <idle>-0     (-----) [000] .n.1 29480.292291: cpu_idle: state=4294967295 cpu_id=0
22857          <idle>-0     (-----) [000] d..2 29480.292307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22858          <idle>-0     (-----) [002] ...1 29480.292335: cpu_idle: state=4294967295 cpu_id=2
22859          <idle>-0     (-----) [002] d..1 29480.292342: cpu_idle: state=0 cpu_id=2
22860  HwBinder:771_4-20182 (  771) [000] d..2 29480.292366: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22861  HwBinder:771_4-20182 (  771) [000] dn.3 29480.292396: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22862  HwBinder:771_4-20182 (  771) [000] d..2 29480.292408: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22863 cdsp_smem_glink-88    (   88) [000] d..2 29480.292452: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22864  HwBinder:771_4-20182 (  771) [000] d..2 29480.292482: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22865          <idle>-0     (-----) [000] d..1 29480.292503: cpu_idle: state=0 cpu_id=0
22866          <idle>-0     (-----) [002] d.h4 29480.292515: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22867          <idle>-0     (-----) [002] dnh5 29480.292530: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22868          <idle>-0     (-----) [002] .n.1 29480.292543: cpu_idle: state=4294967295 cpu_id=2
22869          <idle>-0     (-----) [002] d..2 29480.292559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22870 smem_native_cds-87    (   87) [002] d..2 29480.292611: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22871          <idle>-0     (-----) [002] d..1 29480.292626: cpu_idle: state=2 cpu_id=2
22872          <idle>-0     (-----) [002] d.h4 29480.294487: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22873          <idle>-0     (-----) [002] d.h5 29480.294521: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22874          <idle>-0     (-----) [000] .n.1 29480.294529: cpu_idle: state=4294967295 cpu_id=0
22875          <idle>-0     (-----) [000] d..2 29480.294547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22876          <idle>-0     (-----) [002] d..2 29480.294574: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22877          <idle>-0     (-----) [002] dn.3 29480.294585: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22878          <idle>-0     (-----) [002] .n.1 29480.294592: cpu_idle: state=4294967295 cpu_id=2
22879  HwBinder:771_4-20182 (  771) [000] d..2 29480.294604: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22880          <idle>-0     (-----) [002] d..2 29480.294617: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22881     ksoftirqd/2-26    (   26) [002] d.s2 29480.294629: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22882     ksoftirqd/2-26    (   26) [002] d.s3 29480.294656: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22883  HwBinder:771_4-20182 (  771) [000] d..3 29480.294673: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22884     ksoftirqd/2-26    (   26) [002] d..2 29480.294698: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22885  HwBinder:771_4-20182 (  771) [000] d..2 29480.294724: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22886          <idle>-0     (-----) [000] d..1 29480.294744: cpu_idle: state=2 cpu_id=0
22887  kworker/u16:10-23868 (23868) [002] d..2 29480.294828: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22888 cdsp_smem_glink-88    (   88) [002] d..2 29480.294894: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22889          <idle>-0     (-----) [002] d..1 29480.294918: cpu_idle: state=0 cpu_id=2
22890          <idle>-0     (-----) [002] d.h4 29480.297548: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22891          <idle>-0     (-----) [002] dnh5 29480.297578: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22892          <idle>-0     (-----) [002] dnh3 29480.297669: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22893          <idle>-0     (-----) [002] dnh3 29480.297688: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22894          <idle>-0     (-----) [002] dnh4 29480.297705: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22895          <idle>-0     (-----) [002] .n.1 29480.297718: cpu_idle: state=4294967295 cpu_id=2
22896          <idle>-0     (-----) [002] d..2 29480.297737: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22897 smem_native_cds-87    (   87) [002] d..2 29480.297799: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22898          <idle>-0     (-----) [002] d..2 29480.297804: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22899          <idle>-0     (-----) [002] dn.3 29480.297817: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22900          <idle>-0     (-----) [002] d..2 29480.297827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22901     ksoftirqd/2-26    (   26) [002] d.s2 29480.297837: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22902     ksoftirqd/2-26    (   26) [002] d.s3 29480.297885: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22903     ksoftirqd/2-26    (   26) [002] d..2 29480.297919: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22904          <idle>-0     (-----) [002] d..1 29480.297941: cpu_idle: state=0 cpu_id=2
22905          <idle>-0     (-----) [003] .n.1 29480.298024: cpu_idle: state=4294967295 cpu_id=3
22906          <idle>-0     (-----) [003] d..2 29480.298058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
22907         sugov:0-559   (  559) [003] d..2 29480.298089: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22908  kworker/u16:10-23868 (23868) [003] d..2 29480.298219: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22909          <idle>-0     (-----) [003] d..1 29480.298246: cpu_idle: state=2 cpu_id=3
22910          <idle>-0     (-----) [005] dnh2 29480.298737: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
22911          <idle>-0     (-----) [005] .n.1 29480.298747: cpu_idle: state=4294967295 cpu_id=5
22912          <idle>-0     (-----) [005] d..2 29480.298758: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
22913         sugov:4-560   (  560) [005] d..2 29480.298780: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
22914          <idle>-0     (-----) [005] d..1 29480.298790: cpu_idle: state=2 cpu_id=5
22915          <idle>-0     (-----) [002] d.h4 29480.299322: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22916          <idle>-0     (-----) [002] d.h5 29480.299346: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22917          <idle>-0     (-----) [002] ...1 29480.299398: cpu_idle: state=4294967295 cpu_id=2
22918          <idle>-0     (-----) [002] d..1 29480.299406: cpu_idle: state=0 cpu_id=2
22919          <idle>-0     (-----) [000] .n.1 29480.299661: cpu_idle: state=4294967295 cpu_id=0
22920          <idle>-0     (-----) [000] d..2 29480.299695: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22921  HwBinder:771_4-20182 (  771) [000] d..2 29480.299787: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
22922  HwBinder:771_4-20182 (  771) [000] dn.3 29480.299867: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22923  HwBinder:771_4-20182 (  771) [000] d..2 29480.299884: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22924 cdsp_smem_glink-88    (   88) [000] d..2 29480.299934: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22925  HwBinder:771_4-20182 (  771) [000] d..2 29480.299965: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22926          <idle>-0     (-----) [000] d..1 29480.299989: cpu_idle: state=2 cpu_id=0
22927          <idle>-0     (-----) [002] d.h4 29480.302576: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22928          <idle>-0     (-----) [002] dnh5 29480.302596: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22929          <idle>-0     (-----) [002] .n.1 29480.302610: cpu_idle: state=4294967295 cpu_id=2
22930          <idle>-0     (-----) [002] d..2 29480.302629: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22931 smem_native_cds-87    (   87) [002] d..2 29480.302688: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22932          <idle>-0     (-----) [002] d..2 29480.302694: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22933          <idle>-0     (-----) [002] dn.3 29480.302704: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22934          <idle>-0     (-----) [002] d..2 29480.302714: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22935     ksoftirqd/2-26    (   26) [002] d..2 29480.302740: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22936          <idle>-0     (-----) [002] d..1 29480.302760: cpu_idle: state=0 cpu_id=2
22937          <idle>-0     (-----) [002] d.h4 29480.304970: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22938          <idle>-0     (-----) [002] d.h5 29480.304992: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22939          <idle>-0     (-----) [002] d..2 29480.305037: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22940          <idle>-0     (-----) [002] dn.3 29480.305047: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22941          <idle>-0     (-----) [002] .n.1 29480.305054: cpu_idle: state=4294967295 cpu_id=2
22942          <idle>-0     (-----) [002] d..2 29480.305070: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22943     ksoftirqd/2-26    (   26) [002] d..2 29480.305106: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22944          <idle>-0     (-----) [002] d..1 29480.305124: cpu_idle: state=0 cpu_id=2
22945          <idle>-0     (-----) [000] .n.1 29480.305307: cpu_idle: state=4294967295 cpu_id=0
22946          <idle>-0     (-----) [000] d..2 29480.305349: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22947  HwBinder:771_4-20182 (  771) [000] d..2 29480.305432: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22948  HwBinder:771_4-20182 (  771) [000] dn.3 29480.305471: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22949  HwBinder:771_4-20182 (  771) [000] d..2 29480.305487: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22950 cdsp_smem_glink-88    (   88) [000] d..2 29480.305536: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22951  HwBinder:771_4-20182 (  771) [000] d..2 29480.305571: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22952          <idle>-0     (-----) [000] d..1 29480.305595: cpu_idle: state=2 cpu_id=0
22953          <idle>-0     (-----) [002] d..2 29480.308119: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22954          <idle>-0     (-----) [002] dn.3 29480.308131: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22955          <idle>-0     (-----) [002] .n.1 29480.308136: cpu_idle: state=4294967295 cpu_id=2
22956          <idle>-0     (-----) [002] d..2 29480.308152: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22957     ksoftirqd/2-26    (   26) [002] d.s2 29480.308160: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
22958     ksoftirqd/2-26    (   26) [002] d.s3 29480.308209: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22959     ksoftirqd/2-26    (   26) [002] d.H4 29480.308242: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22960     ksoftirqd/2-26    (   26) [002] d.H5 29480.308262: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22961     ksoftirqd/2-26    (   26) [002] d..2 29480.308283: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22962 smem_native_cds-87    (   87) [002] d..2 29480.308318: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22963  kworker/u16:10-23868 (23868) [002] d..2 29480.308438: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22964          <idle>-0     (-----) [002] d..1 29480.308457: cpu_idle: state=2 cpu_id=2
22965          <idle>-0     (-----) [002] d.h4 29480.313652: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22966          <idle>-0     (-----) [002] d.h5 29480.313685: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22967          <idle>-0     (-----) [002] d..2 29480.313734: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22968          <idle>-0     (-----) [002] dn.3 29480.313746: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22969          <idle>-0     (-----) [002] .n.1 29480.313753: cpu_idle: state=4294967295 cpu_id=2
22970          <idle>-0     (-----) [002] d..2 29480.313777: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22971     ksoftirqd/2-26    (   26) [002] d..2 29480.313826: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22972          <idle>-0     (-----) [002] d..1 29480.313845: cpu_idle: state=2 cpu_id=2
22973          <idle>-0     (-----) [000] .n.1 29480.313945: cpu_idle: state=4294967295 cpu_id=0
22974          <idle>-0     (-----) [000] d..2 29480.313981: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22975  HwBinder:771_4-20182 (  771) [000] d..2 29480.314061: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22976  HwBinder:771_4-20182 (  771) [000] dn.3 29480.314101: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
22977  HwBinder:771_4-20182 (  771) [000] d..2 29480.314115: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
22978 cdsp_smem_glink-88    (   88) [000] d..2 29480.314163: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
22979  HwBinder:771_4-20182 (  771) [000] d..2 29480.314195: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22980          <idle>-0     (-----) [000] d..1 29480.314215: cpu_idle: state=2 cpu_id=0
22981          <idle>-0     (-----) [000] d..2 29480.318096: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22982          <idle>-0     (-----) [002] d.h4 29480.318099: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22983          <idle>-0     (-----) [000] dn.3 29480.318115: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22984          <idle>-0     (-----) [002] dnh5 29480.318191: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
22985          <idle>-0     (-----) [000] dnH3 29480.318221: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
22986          <idle>-0     (-----) [002] dnh4 29480.318228: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
22987          <idle>-0     (-----) [000] dnH3 29480.318241: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
22988          <idle>-0     (-----) [000] dnH4 29480.318262: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
22989          <idle>-0     (-----) [002] dnh5 29480.318263: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
22990          <idle>-0     (-----) [000] dns3 29480.318277: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
22991          <idle>-0     (-----) [002] .n.1 29480.318316: cpu_idle: state=4294967295 cpu_id=2
22992          <idle>-0     (-----) [000] dns4 29480.318327: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
22993          <idle>-0     (-----) [002] d..2 29480.318340: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
22994          <idle>-0     (-----) [000] .n.1 29480.318345: cpu_idle: state=4294967295 cpu_id=0
22995          <idle>-0     (-----) [000] d..2 29480.318372: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
22996     ksoftirqd/0-3     (    3) [000] d..2 29480.318389: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
22997 smem_native_cds-87    (   87) [002] d..2 29480.318406: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22998          <idle>-0     (-----) [002] d..1 29480.318471: cpu_idle: state=2 cpu_id=2
22999  kworker/u16:10-23868 (23868) [000] d..2 29480.318559: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23000          <idle>-0     (-----) [000] d..1 29480.318581: cpu_idle: state=2 cpu_id=0
23001          <idle>-0     (-----) [003] .n.1 29480.318589: cpu_idle: state=4294967295 cpu_id=3
23002          <idle>-0     (-----) [003] d..2 29480.318615: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23003          <idle>-0     (-----) [001] .n.1 29480.318656: cpu_idle: state=4294967295 cpu_id=1
23004         sugov:0-559   (  559) [003] d..2 29480.318662: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23005          <idle>-0     (-----) [003] d..1 29480.318681: cpu_idle: state=2 cpu_id=3
23006          <idle>-0     (-----) [001] d..2 29480.318689: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23007  HwBinder:771_4-20182 (  771) [001] d..2 29480.318779: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23008  HwBinder:771_4-20182 (  771) [001] dn.3 29480.318843: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23009  HwBinder:771_4-20182 (  771) [001] d..2 29480.318858: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23010 cdsp_smem_glink-88    (   88) [001] d..2 29480.318904: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23011  HwBinder:771_4-20182 (  771) [001] d..2 29480.318934: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23012          <idle>-0     (-----) [001] d..1 29480.318955: cpu_idle: state=2 cpu_id=1
23013          <idle>-0     (-----) [005] dnh2 29480.319321: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23014          <idle>-0     (-----) [005] .n.1 29480.319331: cpu_idle: state=4294967295 cpu_id=5
23015          <idle>-0     (-----) [005] d..2 29480.319344: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23016         sugov:4-560   (  560) [005] d..2 29480.319366: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23017          <idle>-0     (-----) [005] d..1 29480.319376: cpu_idle: state=2 cpu_id=5
23018          <idle>-0     (-----) [002] d.h4 29480.323552: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23019          <idle>-0     (-----) [002] dnh5 29480.323588: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23020          <idle>-0     (-----) [002] dnh4 29480.323620: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23021          <idle>-0     (-----) [002] dnh5 29480.323649: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23022          <idle>-0     (-----) [002] .n.1 29480.323698: cpu_idle: state=4294967295 cpu_id=2
23023          <idle>-0     (-----) [002] d..2 29480.323720: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23024 smem_native_cds-87    (   87) [002] d..2 29480.323829: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23025          <idle>-0     (-----) [002] d..1 29480.323849: cpu_idle: state=2 cpu_id=2
23026          <idle>-0     (-----) [000] .n.1 29480.323853: cpu_idle: state=4294967295 cpu_id=0
23027          <idle>-0     (-----) [000] d..2 29480.323888: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23028  HwBinder:771_4-20182 (  771) [000] d..2 29480.323972: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23029  HwBinder:771_4-20182 (  771) [000] dn.3 29480.324035: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23030  HwBinder:771_4-20182 (  771) [000] d..2 29480.324049: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23031 cdsp_smem_glink-88    (   88) [000] d..2 29480.324098: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23032  HwBinder:771_4-20182 (  771) [000] d..2 29480.324128: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23033          <idle>-0     (-----) [000] d..1 29480.324149: cpu_idle: state=2 cpu_id=0
23034          <idle>-0     (-----) [002] d.h4 29480.327992: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23035          <idle>-0     (-----) [000] d..2 29480.327997: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23036          <idle>-0     (-----) [000] dn.3 29480.328014: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23037          <idle>-0     (-----) [000] .n.1 29480.328020: cpu_idle: state=4294967295 cpu_id=0
23038          <idle>-0     (-----) [002] dnh5 29480.328033: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23039          <idle>-0     (-----) [000] d..2 29480.328041: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23040     ksoftirqd/0-3     (    3) [000] d.s2 29480.328053: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23041          <idle>-0     (-----) [002] dnh4 29480.328066: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23042     ksoftirqd/0-3     (    3) [000] d.s3 29480.328081: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23043          <idle>-0     (-----) [002] dnh5 29480.328102: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23044     ksoftirqd/0-3     (    3) [000] d..2 29480.328110: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23045          <idle>-0     (-----) [002] .n.1 29480.328152: cpu_idle: state=4294967295 cpu_id=2
23046          <idle>-0     (-----) [002] d..2 29480.328179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23047 smem_native_cds-87    (   87) [002] d..2 29480.328270: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23048  kworker/u16:10-23868 (23868) [000] d..2 29480.328273: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23049          <idle>-0     (-----) [002] d..1 29480.328291: cpu_idle: state=2 cpu_id=2
23050          <idle>-0     (-----) [000] d..1 29480.328296: cpu_idle: state=2 cpu_id=0
23051          <idle>-0     (-----) [001] .n.1 29480.328419: cpu_idle: state=4294967295 cpu_id=1
23052          <idle>-0     (-----) [001] d..2 29480.328452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23053  HwBinder:771_4-20182 (  771) [001] d..2 29480.328530: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23054  HwBinder:771_4-20182 (  771) [001] dn.3 29480.328590: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23055  HwBinder:771_4-20182 (  771) [001] d..2 29480.328604: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23056 cdsp_smem_glink-88    (   88) [001] d..2 29480.328650: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23057  HwBinder:771_4-20182 (  771) [001] d..2 29480.328680: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23058          <idle>-0     (-----) [001] d..1 29480.328701: cpu_idle: state=2 cpu_id=1
23059          <idle>-0     (-----) [001] ...1 29480.333300: cpu_idle: state=4294967295 cpu_id=1
23060          <idle>-0     (-----) [001] d..1 29480.333310: cpu_idle: state=2 cpu_id=1
23061          <idle>-0     (-----) [002] d.h4 29480.333340: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23062          <idle>-0     (-----) [002] dnh5 29480.333379: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23063          <idle>-0     (-----) [002] dnh4 29480.333413: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23064          <idle>-0     (-----) [002] dnh5 29480.333442: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23065          <idle>-0     (-----) [002] .n.1 29480.333491: cpu_idle: state=4294967295 cpu_id=2
23066          <idle>-0     (-----) [002] d..2 29480.333513: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23067 smem_native_cds-87    (   87) [002] d..2 29480.333575: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23068          <idle>-0     (-----) [002] d..2 29480.333582: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23069          <idle>-0     (-----) [002] dn.3 29480.333597: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23070          <idle>-0     (-----) [002] d..2 29480.333611: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23071          <idle>-0     (-----) [000] .n.1 29480.333629: cpu_idle: state=4294967295 cpu_id=0
23072     ksoftirqd/2-26    (   26) [002] d..2 29480.333640: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23073          <idle>-0     (-----) [002] d..1 29480.333661: cpu_idle: state=2 cpu_id=2
23074          <idle>-0     (-----) [000] d..2 29480.333665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23075  HwBinder:771_4-20182 (  771) [000] d..2 29480.333796: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23076  HwBinder:771_4-20182 (  771) [000] dn.3 29480.333858: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23077  HwBinder:771_4-20182 (  771) [000] d..2 29480.333870: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23078 cdsp_smem_glink-88    (   88) [000] d..2 29480.333919: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23079  HwBinder:771_4-20182 (  771) [000] d..2 29480.333958: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23080          <idle>-0     (-----) [000] d..1 29480.333978: cpu_idle: state=2 cpu_id=0
23081          <idle>-0     (-----) [000] d..2 29480.337858: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23082          <idle>-0     (-----) [002] d.h4 29480.337861: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23083          <idle>-0     (-----) [000] dn.3 29480.337877: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23084          <idle>-0     (-----) [002] dnh5 29480.337954: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23085          <idle>-0     (-----) [000] dnH3 29480.337984: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23086          <idle>-0     (-----) [002] dnh4 29480.337992: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23087          <idle>-0     (-----) [000] dnH3 29480.338004: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23088          <idle>-0     (-----) [000] dnH4 29480.338025: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23089          <idle>-0     (-----) [002] dnh5 29480.338026: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23090          <idle>-0     (-----) [000] dns3 29480.338038: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23091          <idle>-0     (-----) [000] dns4 29480.338066: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23092          <idle>-0     (-----) [002] .n.1 29480.338077: cpu_idle: state=4294967295 cpu_id=2
23093          <idle>-0     (-----) [000] .n.1 29480.338082: cpu_idle: state=4294967295 cpu_id=0
23094          <idle>-0     (-----) [002] d..2 29480.338100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23095          <idle>-0     (-----) [000] d..2 29480.338110: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23096     ksoftirqd/0-3     (    3) [000] d..2 29480.338127: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23097 smem_native_cds-87    (   87) [002] d..2 29480.338167: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23098          <idle>-0     (-----) [002] d..1 29480.338228: cpu_idle: state=2 cpu_id=2
23099  kworker/u16:10-23868 (23868) [000] d..2 29480.338314: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23100          <idle>-0     (-----) [000] d..1 29480.338336: cpu_idle: state=2 cpu_id=0
23101          <idle>-0     (-----) [003] .n.1 29480.338351: cpu_idle: state=4294967295 cpu_id=3
23102          <idle>-0     (-----) [003] d..2 29480.338377: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23103          <idle>-0     (-----) [001] .n.1 29480.338425: cpu_idle: state=4294967295 cpu_id=1
23104         sugov:0-559   (  559) [003] d..2 29480.338425: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23105          <idle>-0     (-----) [003] d..1 29480.338444: cpu_idle: state=2 cpu_id=3
23106          <idle>-0     (-----) [001] d..2 29480.338460: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23107  HwBinder:771_4-20182 (  771) [001] d..2 29480.338536: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23108  HwBinder:771_4-20182 (  771) [001] dn.3 29480.338600: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23109  HwBinder:771_4-20182 (  771) [001] d..2 29480.338614: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23110 cdsp_smem_glink-88    (   88) [001] d..2 29480.338661: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23111  HwBinder:771_4-20182 (  771) [001] d..2 29480.338692: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23112          <idle>-0     (-----) [001] d..1 29480.338715: cpu_idle: state=2 cpu_id=1
23113          <idle>-0     (-----) [005] dnh2 29480.339082: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23114          <idle>-0     (-----) [005] .n.1 29480.339093: cpu_idle: state=4294967295 cpu_id=5
23115          <idle>-0     (-----) [005] d..2 29480.339104: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23116         sugov:4-560   (  560) [005] d..2 29480.339126: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23117          <idle>-0     (-----) [005] d..1 29480.339136: cpu_idle: state=2 cpu_id=5
23118          <idle>-0     (-----) [002] d.h4 29480.343218: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23119          <idle>-0     (-----) [002] dnh5 29480.343253: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23120          <idle>-0     (-----) [002] dnh4 29480.343287: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23121          <idle>-0     (-----) [002] dnh5 29480.343314: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23122          <idle>-0     (-----) [002] .n.1 29480.343362: cpu_idle: state=4294967295 cpu_id=2
23123          <idle>-0     (-----) [002] d..2 29480.343385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23124 smem_native_cds-87    (   87) [002] d..2 29480.343447: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23125          <idle>-0     (-----) [002] d..2 29480.343453: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23126          <idle>-0     (-----) [002] dn.3 29480.343468: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23127          <idle>-0     (-----) [002] d..2 29480.343479: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23128     ksoftirqd/2-26    (   26) [002] d..2 29480.343509: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23129          <idle>-0     (-----) [002] d..1 29480.343530: cpu_idle: state=2 cpu_id=2
23130          <idle>-0     (-----) [000] .n.1 29480.343544: cpu_idle: state=4294967295 cpu_id=0
23131          <idle>-0     (-----) [000] d..2 29480.343581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23132  HwBinder:771_4-20182 (  771) [000] d..2 29480.343679: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23133  HwBinder:771_4-20182 (  771) [000] dn.3 29480.343746: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23134  HwBinder:771_4-20182 (  771) [000] dns3 29480.343808: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23135  HwBinder:771_4-20182 (  771) [000] dns4 29480.343848: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23136  HwBinder:771_4-20182 (  771) [000] dns3 29480.343856: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23137  HwBinder:771_4-20182 (  771) [000] dns4 29480.343876: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23138  HwBinder:771_4-20182 (  771) [000] d..2 29480.343903: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
23139     kworker/0:0-13450 (13450) [000] d..2 29480.343949: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
23140     kworker/0:0-13450 (13450) [000] d..3 29480.343995: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
23141     kworker/0:0-13450 (13450) [000] d..2 29480.344004: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
23142     kworker/0:0-13450 (13450) [000] d..3 29480.344019: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
23143     kworker/0:0-13450 (13450) [000] d..2 29480.344042: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
23144     kworker/0:0-13450 (13450) [000] d..2 29480.344119: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23145 cdsp_smem_glink-88    (   88) [000] d..2 29480.344166: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23146  kworker/u16:10-23868 (23868) [000] d..2 29480.344290: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23147          <idle>-0     (-----) [001] .n.1 29480.344300: cpu_idle: state=4294967295 cpu_id=1
23148  HwBinder:771_4-20182 (  771) [000] d..2 29480.344327: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23149          <idle>-0     (-----) [001] d..2 29480.344337: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
23150          <idle>-0     (-----) [000] d..1 29480.344352: cpu_idle: state=2 cpu_id=0
23151          <idle>-0     (-----) [002] .n.1 29480.344380: cpu_idle: state=4294967295 cpu_id=2
23152          <idle>-0     (-----) [002] d..2 29480.344411: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
23153     kworker/1:1-13678 (13678) [001] d..2 29480.344420: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23154          <idle>-0     (-----) [001] d..1 29480.344440: cpu_idle: state=2 cpu_id=1
23155     kworker/2:2-13636 (13636) [002] d..2 29480.344469: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23156          <idle>-0     (-----) [002] d..1 29480.344488: cpu_idle: state=2 cpu_id=2
23157          <idle>-0     (-----) [006] dnh2 29480.345157: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
23158          <idle>-0     (-----) [006] .n.1 29480.345167: cpu_idle: state=4294967295 cpu_id=6
23159          <idle>-0     (-----) [006] d..2 29480.345184: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
23160     kworker/6:0-21469 (21469) [006] d..2 29480.345226: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
23161          <idle>-0     (-----) [006] d..1 29480.345236: cpu_idle: state=2 cpu_id=6
23162          <idle>-0     (-----) [002] d.h4 29480.348180: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23163          <idle>-0     (-----) [002] dnh5 29480.348224: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23164          <idle>-0     (-----) [002] dnh4 29480.348256: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23165          <idle>-0     (-----) [002] dnh5 29480.348275: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23166          <idle>-0     (-----) [002] .n.1 29480.348323: cpu_idle: state=4294967295 cpu_id=2
23167          <idle>-0     (-----) [002] d..2 29480.348346: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23168 smem_native_cds-87    (   87) [002] d..2 29480.348408: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23169          <idle>-0     (-----) [002] d..2 29480.348416: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23170          <idle>-0     (-----) [002] dn.3 29480.348427: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23171          <idle>-0     (-----) [002] d..2 29480.348439: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23172     ksoftirqd/2-26    (   26) [002] d.s2 29480.348450: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23173          <idle>-0     (-----) [000] .n.1 29480.348461: cpu_idle: state=4294967295 cpu_id=0
23174          <idle>-0     (-----) [000] d..2 29480.348499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23175     ksoftirqd/2-26    (   26) [002] d.s3 29480.348523: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23176     ksoftirqd/2-26    (   26) [002] d..2 29480.348544: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23177  HwBinder:771_4-20182 (  771) [000] d..2 29480.348604: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23178  HwBinder:771_4-20182 (  771) [000] d..3 29480.348681: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23179  HwBinder:771_4-20182 (  771) [000] d..2 29480.348732: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23180          <idle>-0     (-----) [000] d..1 29480.348777: cpu_idle: state=2 cpu_id=0
23181  kworker/u16:10-23868 (23868) [002] d..2 29480.348788: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23182 cdsp_smem_glink-88    (   88) [002] d..2 29480.348854: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23183          <idle>-0     (-----) [002] d..1 29480.348879: cpu_idle: state=2 cpu_id=2
23184          <idle>-0     (-----) [002] d.h4 29480.353879: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23185          <idle>-0     (-----) [002] dnh5 29480.353914: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23186          <idle>-0     (-----) [002] dnh4 29480.353947: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23187          <idle>-0     (-----) [002] dnh5 29480.353966: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23188          <idle>-0     (-----) [002] .n.1 29480.354015: cpu_idle: state=4294967295 cpu_id=2
23189          <idle>-0     (-----) [002] d..2 29480.354038: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23190 smem_native_cds-87    (   87) [002] d..2 29480.354100: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23191          <idle>-0     (-----) [002] d..2 29480.354108: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23192          <idle>-0     (-----) [002] dn.3 29480.354120: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23193          <idle>-0     (-----) [002] d..2 29480.354130: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23194     ksoftirqd/2-26    (   26) [002] d..2 29480.354162: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23195          <idle>-0     (-----) [000] .n.1 29480.354173: cpu_idle: state=4294967295 cpu_id=0
23196          <idle>-0     (-----) [002] d..1 29480.354183: cpu_idle: state=2 cpu_id=2
23197          <idle>-0     (-----) [000] d..2 29480.354211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23198  HwBinder:771_4-20182 (  771) [000] d..2 29480.354290: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23199  HwBinder:771_4-20182 (  771) [000] dn.3 29480.354359: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23200  HwBinder:771_4-20182 (  771) [000] d..2 29480.354374: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23201 cdsp_smem_glink-88    (   88) [000] d..2 29480.354422: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23202  HwBinder:771_4-20182 (  771) [000] d..2 29480.354454: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23203          <idle>-0     (-----) [000] d..1 29480.354475: cpu_idle: state=2 cpu_id=0
23204          <idle>-0     (-----) [002] d.h4 29480.359124: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23205          <idle>-0     (-----) [000] d..2 29480.359129: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23206          <idle>-0     (-----) [000] dn.3 29480.359153: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23207          <idle>-0     (-----) [002] dnh5 29480.359171: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23208          <idle>-0     (-----) [000] dnH3 29480.359248: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23209          <idle>-0     (-----) [002] dnh4 29480.359254: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23210          <idle>-0     (-----) [000] dnH3 29480.359268: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23211          <idle>-0     (-----) [000] dnH4 29480.359287: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23212          <idle>-0     (-----) [002] dnh5 29480.359289: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23213          <idle>-0     (-----) [000] dns3 29480.359304: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23214          <idle>-0     (-----) [002] .n.1 29480.359342: cpu_idle: state=4294967295 cpu_id=2
23215          <idle>-0     (-----) [000] dns4 29480.359353: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23216          <idle>-0     (-----) [000] dns3 29480.359365: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23217          <idle>-0     (-----) [002] d..2 29480.359367: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23218          <idle>-0     (-----) [000] dns4 29480.359380: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23219          <idle>-0     (-----) [000] .n.1 29480.359392: cpu_idle: state=4294967295 cpu_id=0
23220          <idle>-0     (-----) [000] d..2 29480.359419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23221 smem_native_cds-87    (   87) [002] d..2 29480.359432: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23222     ksoftirqd/0-3     (    3) [000] d..2 29480.359436: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
23223          <idle>-0     (-----) [002] d..1 29480.359454: cpu_idle: state=2 cpu_id=2
23224     kworker/0:0-13450 (13450) [000] d..2 29480.359481: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23225  kworker/u16:10-23868 (23868) [000] d..2 29480.359597: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23226          <idle>-0     (-----) [000] d..1 29480.359620: cpu_idle: state=2 cpu_id=0
23227          <idle>-0     (-----) [003] .n.1 29480.359642: cpu_idle: state=4294967295 cpu_id=3
23228          <idle>-0     (-----) [003] d..2 29480.359667: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23229          <idle>-0     (-----) [001] .n.1 29480.359692: cpu_idle: state=4294967295 cpu_id=1
23230         sugov:0-559   (  559) [003] d..2 29480.359717: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23231          <idle>-0     (-----) [001] d..2 29480.359727: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23232          <idle>-0     (-----) [003] d..1 29480.359737: cpu_idle: state=2 cpu_id=3
23233  HwBinder:771_4-20182 (  771) [001] d..2 29480.359804: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23234  HwBinder:771_4-20182 (  771) [001] dn.3 29480.359868: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23235  HwBinder:771_4-20182 (  771) [001] d..2 29480.359882: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23236 cdsp_smem_glink-88    (   88) [001] d..2 29480.359928: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23237  HwBinder:771_4-20182 (  771) [001] d..2 29480.359958: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23238          <idle>-0     (-----) [001] d..1 29480.359979: cpu_idle: state=2 cpu_id=1
23239          <idle>-0     (-----) [005] dnh2 29480.360310: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23240          <idle>-0     (-----) [005] .n.1 29480.360320: cpu_idle: state=4294967295 cpu_id=5
23241          <idle>-0     (-----) [005] d..2 29480.360333: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23242         sugov:4-560   (  560) [005] d..2 29480.360356: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23243          <idle>-0     (-----) [005] d..1 29480.360366: cpu_idle: state=2 cpu_id=5
23244          <idle>-0     (-----) [005] ...1 29480.364111: cpu_idle: state=4294967295 cpu_id=5
23245          <idle>-0     (-----) [005] d..1 29480.364116: cpu_idle: state=2 cpu_id=5
23246          <idle>-0     (-----) [002] d.h4 29480.364164: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23247          <idle>-0     (-----) [002] dnh5 29480.364206: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23248          <idle>-0     (-----) [002] dnh4 29480.364242: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23249          <idle>-0     (-----) [002] dnh5 29480.364270: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23250          <idle>-0     (-----) [002] .n.1 29480.364320: cpu_idle: state=4294967295 cpu_id=2
23251          <idle>-0     (-----) [002] d..2 29480.364343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23252 smem_native_cds-87    (   87) [002] d..2 29480.364407: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23253          <idle>-0     (-----) [002] d..2 29480.364414: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23254          <idle>-0     (-----) [002] dn.3 29480.364428: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23255          <idle>-0     (-----) [002] d..2 29480.364438: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23256          <idle>-0     (-----) [000] .n.1 29480.364456: cpu_idle: state=4294967295 cpu_id=0
23257     ksoftirqd/2-26    (   26) [002] d..2 29480.364468: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23258          <idle>-0     (-----) [002] d..1 29480.364488: cpu_idle: state=2 cpu_id=2
23259          <idle>-0     (-----) [000] d..2 29480.364490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23260  HwBinder:771_4-20182 (  771) [000] d..2 29480.364577: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23261  HwBinder:771_4-20182 (  771) [000] dn.3 29480.364641: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23262  HwBinder:771_4-20182 (  771) [000] d..2 29480.364655: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23263 cdsp_smem_glink-88    (   88) [000] d..2 29480.364705: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23264  HwBinder:771_4-20182 (  771) [000] d..2 29480.364734: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23265          <idle>-0     (-----) [000] d..1 29480.364756: cpu_idle: state=2 cpu_id=0
23266          <idle>-0     (-----) [002] d.h4 29480.366785: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23267          <idle>-0     (-----) [002] dnh5 29480.366820: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23268          <idle>-0     (-----) [002] .n.1 29480.366837: cpu_idle: state=4294967295 cpu_id=2
23269          <idle>-0     (-----) [002] d..2 29480.366858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23270 smem_native_cds-87    (   87) [002] d..2 29480.366912: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23271          <idle>-0     (-----) [002] d..1 29480.366931: cpu_idle: state=2 cpu_id=2
23272          <idle>-0     (-----) [002] d.h4 29480.368662: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23273          <idle>-0     (-----) [002] d.h5 29480.368694: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23274          <idle>-0     (-----) [002] d..2 29480.368742: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23275          <idle>-0     (-----) [002] dn.3 29480.368754: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23276          <idle>-0     (-----) [002] .n.1 29480.368760: cpu_idle: state=4294967295 cpu_id=2
23277          <idle>-0     (-----) [002] d..2 29480.368787: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23278     ksoftirqd/2-26    (   26) [002] d.s2 29480.368799: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23279     ksoftirqd/2-26    (   26) [002] d.s3 29480.368849: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23280     ksoftirqd/2-26    (   26) [002] d..2 29480.368871: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23281  kworker/u16:10-23868 (23868) [002] d..2 29480.368990: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23282          <idle>-0     (-----) [000] .n.1 29480.369010: cpu_idle: state=4294967295 cpu_id=0
23283          <idle>-0     (-----) [002] d..1 29480.369014: cpu_idle: state=2 cpu_id=2
23284          <idle>-0     (-----) [000] d..2 29480.369051: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23285  HwBinder:771_4-20182 (  771) [000] d..2 29480.369128: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23286  HwBinder:771_4-20182 (  771) [000] dn.3 29480.369165: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23287  HwBinder:771_4-20182 (  771) [000] d..2 29480.369178: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23288 cdsp_smem_glink-88    (   88) [000] d..2 29480.369226: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23289  HwBinder:771_4-20182 (  771) [000] d..2 29480.369255: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23290          <idle>-0     (-----) [000] d..1 29480.369277: cpu_idle: state=2 cpu_id=0
23291          <idle>-0     (-----) [007] ...1 29480.371608: cpu_idle: state=4294967295 cpu_id=7
23292          <idle>-0     (-----) [007] d..1 29480.371625: cpu_idle: state=2 cpu_id=7
23293          <idle>-0     (-----) [002] d.h4 29480.374564: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23294          <idle>-0     (-----) [002] dnh5 29480.374604: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23295          <idle>-0     (-----) [002] dnh4 29480.374637: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23296          <idle>-0     (-----) [002] dnh5 29480.374656: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23297          <idle>-0     (-----) [002] .n.1 29480.374705: cpu_idle: state=4294967295 cpu_id=2
23298          <idle>-0     (-----) [002] d..2 29480.374729: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23299 smem_native_cds-87    (   87) [002] d..2 29480.374790: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23300          <idle>-0     (-----) [002] d..2 29480.374798: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23301          <idle>-0     (-----) [002] dn.3 29480.374809: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23302          <idle>-0     (-----) [002] d..2 29480.374821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23303     ksoftirqd/2-26    (   26) [002] d.s2 29480.374831: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
23304          <idle>-0     (-----) [000] .n.1 29480.374846: cpu_idle: state=4294967295 cpu_id=0
23305     ksoftirqd/2-26    (   26) [002] dns3 29480.374848: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
23306     ksoftirqd/2-26    (   26) [002] d..2 29480.374861: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
23307          <idle>-0     (-----) [000] d..2 29480.374882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23308     kworker/2:2-13636 (13636) [002] d..2 29480.374900: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23309     ksoftirqd/2-26    (   26) [002] d..2 29480.374923: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23310          <idle>-0     (-----) [002] d..1 29480.374944: cpu_idle: state=2 cpu_id=2
23311  HwBinder:771_4-20182 (  771) [000] d..2 29480.374966: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23312  HwBinder:771_4-20182 (  771) [000] dn.3 29480.375006: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23313  HwBinder:771_4-20182 (  771) [000] d..2 29480.375019: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23314 cdsp_smem_glink-88    (   88) [000] d..2 29480.375068: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23315  HwBinder:771_4-20182 (  771) [000] d..2 29480.375100: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23316          <idle>-0     (-----) [000] d..1 29480.375121: cpu_idle: state=2 cpu_id=0
23317          <idle>-0     (-----) [002] d.h4 29480.379768: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23318          <idle>-0     (-----) [000] d..2 29480.379771: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23319          <idle>-0     (-----) [000] dn.3 29480.379793: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23320          <idle>-0     (-----) [002] dnh5 29480.379816: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23321          <idle>-0     (-----) [000] dnH3 29480.379893: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23322          <idle>-0     (-----) [002] dnh4 29480.379897: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23323          <idle>-0     (-----) [000] dnH3 29480.379913: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23324          <idle>-0     (-----) [000] dnH4 29480.379931: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23325          <idle>-0     (-----) [002] dnh5 29480.379933: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23326          <idle>-0     (-----) [000] dns3 29480.379948: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23327          <idle>-0     (-----) [002] .n.1 29480.379986: cpu_idle: state=4294967295 cpu_id=2
23328          <idle>-0     (-----) [000] dns4 29480.379999: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23329          <idle>-0     (-----) [002] d..2 29480.380010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23330          <idle>-0     (-----) [000] .n.1 29480.380015: cpu_idle: state=4294967295 cpu_id=0
23331          <idle>-0     (-----) [000] d..2 29480.380044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23332     ksoftirqd/0-3     (    3) [000] d..2 29480.380061: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23333 smem_native_cds-87    (   87) [002] d..2 29480.380076: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23334          <idle>-0     (-----) [002] d..1 29480.380141: cpu_idle: state=2 cpu_id=2
23335  kworker/u16:10-23868 (23868) [000] d..2 29480.380229: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23336          <idle>-0     (-----) [000] d..1 29480.380252: cpu_idle: state=2 cpu_id=0
23337          <idle>-0     (-----) [003] .n.1 29480.380265: cpu_idle: state=4294967295 cpu_id=3
23338          <idle>-0     (-----) [003] d..2 29480.380292: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23339          <idle>-0     (-----) [001] .n.1 29480.380327: cpu_idle: state=4294967295 cpu_id=1
23340         sugov:0-559   (  559) [003] d..2 29480.380339: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23341          <idle>-0     (-----) [003] d..1 29480.380357: cpu_idle: state=2 cpu_id=3
23342          <idle>-0     (-----) [001] d..2 29480.380362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23343  HwBinder:771_4-20182 (  771) [001] d..2 29480.380945: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23344          <idle>-0     (-----) [005] dnh2 29480.380973: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23345          <idle>-0     (-----) [005] .n.1 29480.380983: cpu_idle: state=4294967295 cpu_id=5
23346          <idle>-0     (-----) [005] d..2 29480.380997: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23347  HwBinder:771_4-20182 (  771) [001] dn.3 29480.381015: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23348         sugov:4-560   (  560) [005] d..2 29480.381024: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23349  HwBinder:771_4-20182 (  771) [001] d..2 29480.381033: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23350          <idle>-0     (-----) [005] d..1 29480.381034: cpu_idle: state=2 cpu_id=5
23351 cdsp_smem_glink-88    (   88) [001] d..2 29480.381082: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23352  HwBinder:771_4-20182 (  771) [001] d..2 29480.381120: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23353          <idle>-0     (-----) [001] d..1 29480.381149: cpu_idle: state=2 cpu_id=1
23354          <idle>-0     (-----) [002] d.h4 29480.382448: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23355          <idle>-0     (-----) [002] dnh5 29480.382483: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23356          <idle>-0     (-----) [002] .n.1 29480.382500: cpu_idle: state=4294967295 cpu_id=2
23357          <idle>-0     (-----) [002] d..2 29480.382522: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23358 smem_native_cds-87    (   87) [002] d..2 29480.382580: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23359          <idle>-0     (-----) [002] d..1 29480.382600: cpu_idle: state=2 cpu_id=2
23360          <idle>-0     (-----) [002] d.h4 29480.384936: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23361          <idle>-0     (-----) [002] d.h5 29480.384978: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23362          <idle>-0     (-----) [002] d..2 29480.385027: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23363          <idle>-0     (-----) [002] dn.3 29480.385042: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23364          <idle>-0     (-----) [002] .n.1 29480.385048: cpu_idle: state=4294967295 cpu_id=2
23365          <idle>-0     (-----) [002] d..2 29480.385072: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23366     ksoftirqd/2-26    (   26) [002] d..2 29480.385119: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23367          <idle>-0     (-----) [002] d..1 29480.385139: cpu_idle: state=2 cpu_id=2
23368          <idle>-0     (-----) [000] .n.1 29480.385315: cpu_idle: state=4294967295 cpu_id=0
23369          <idle>-0     (-----) [000] d..2 29480.385347: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23370  HwBinder:771_4-20182 (  771) [000] d..2 29480.385430: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23371  HwBinder:771_4-20182 (  771) [000] dn.3 29480.385492: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23372  HwBinder:771_4-20182 (  771) [000] d..2 29480.385507: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23373 cdsp_smem_glink-88    (   88) [000] d..2 29480.385555: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23374  HwBinder:771_4-20182 (  771) [000] d..2 29480.385583: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23375          <idle>-0     (-----) [000] d..1 29480.385605: cpu_idle: state=2 cpu_id=0
23376          <idle>-0     (-----) [002] d.h4 29480.388100: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23377          <idle>-0     (-----) [002] dnh5 29480.388136: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23378          <idle>-0     (-----) [002] .n.1 29480.388152: cpu_idle: state=4294967295 cpu_id=2
23379          <idle>-0     (-----) [002] d..2 29480.388175: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23380 smem_native_cds-87    (   87) [002] d..2 29480.388237: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23381          <idle>-0     (-----) [002] d..2 29480.388244: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23382          <idle>-0     (-----) [002] dn.3 29480.388255: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23383          <idle>-0     (-----) [002] d..2 29480.388265: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23384     ksoftirqd/2-26    (   26) [002] d.s2 29480.388275: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23385     ksoftirqd/2-26    (   26) [002] d.s3 29480.388323: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23386     ksoftirqd/2-26    (   26) [002] d..2 29480.388344: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23387  kworker/u16:10-23868 (23868) [002] d..2 29480.388454: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23388          <idle>-0     (-----) [002] d..1 29480.388476: cpu_idle: state=2 cpu_id=2
23389          <idle>-0     (-----) [003] d.h2 29480.388921: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
23390          <idle>-0     (-----) [003] dnh3 29480.388971: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
23391          <idle>-0     (-----) [003] .n.1 29480.388988: cpu_idle: state=4294967295 cpu_id=3
23392          <idle>-0     (-----) [003] d..2 29480.389010: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
23393 oid.setupwizard-24795 (24795) [003] d..2 29480.389624: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23394          <idle>-0     (-----) [003] d..1 29480.389646: cpu_idle: state=2 cpu_id=3
23395          <idle>-0     (-----) [002] d.h4 29480.393418: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23396          <idle>-0     (-----) [002] d.h5 29480.393455: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23397          <idle>-0     (-----) [002] d..2 29480.393504: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23398          <idle>-0     (-----) [002] dn.3 29480.393515: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23399          <idle>-0     (-----) [002] .n.1 29480.393522: cpu_idle: state=4294967295 cpu_id=2
23400          <idle>-0     (-----) [002] d..2 29480.393544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23401     ksoftirqd/2-26    (   26) [002] d..2 29480.393593: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23402          <idle>-0     (-----) [002] d..1 29480.393612: cpu_idle: state=2 cpu_id=2
23403          <idle>-0     (-----) [000] .n.1 29480.393694: cpu_idle: state=4294967295 cpu_id=0
23404          <idle>-0     (-----) [000] d..2 29480.393729: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23405  HwBinder:771_4-20182 (  771) [000] d.s4 29480.393777: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23406  HwBinder:771_4-20182 (  771) [000] d.s5 29480.393838: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23407  HwBinder:771_4-20182 (  771) [000] d..2 29480.393928: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23408  HwBinder:771_4-20182 (  771) [000] dn.3 29480.393961: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23409  HwBinder:771_4-20182 (  771) [000] d..2 29480.393976: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23410 cdsp_smem_glink-88    (   88) [000] d..2 29480.394025: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23411  kworker/u16:10-23868 (23868) [000] d..2 29480.394157: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23412  HwBinder:771_4-20182 (  771) [000] d..2 29480.394199: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23413          <idle>-0     (-----) [000] d..1 29480.394221: cpu_idle: state=2 cpu_id=0
23414          <idle>-0     (-----) [002] d.h4 29480.397980: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23415          <idle>-0     (-----) [002] dnh5 29480.398027: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23416          <idle>-0     (-----) [002] dnh4 29480.398063: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23417          <idle>-0     (-----) [002] dnh5 29480.398084: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23418          <idle>-0     (-----) [002] dnh3 29480.398207: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23419          <idle>-0     (-----) [002] dnh3 29480.398227: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23420          <idle>-0     (-----) [002] dnh4 29480.398245: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23421          <idle>-0     (-----) [002] .n.1 29480.398256: cpu_idle: state=4294967295 cpu_id=2
23422          <idle>-0     (-----) [002] d..2 29480.398279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23423 smem_native_cds-87    (   87) [002] d..2 29480.398341: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23424          <idle>-0     (-----) [002] d..2 29480.398347: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23425          <idle>-0     (-----) [002] dn.3 29480.398360: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23426          <idle>-0     (-----) [002] d..2 29480.398371: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23427     ksoftirqd/2-26    (   26) [002] d.s2 29480.398382: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23428          <idle>-0     (-----) [000] .n.1 29480.398409: cpu_idle: state=4294967295 cpu_id=0
23429     ksoftirqd/2-26    (   26) [002] d.s3 29480.398435: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23430          <idle>-0     (-----) [000] d..2 29480.398445: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23431     ksoftirqd/2-26    (   26) [002] d..2 29480.398456: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23432  HwBinder:771_4-20182 (  771) [000] d..2 29480.398545: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23433          <idle>-0     (-----) [003] .n.1 29480.398572: cpu_idle: state=4294967295 cpu_id=3
23434          <idle>-0     (-----) [003] d..2 29480.398601: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23435  HwBinder:771_4-20182 (  771) [000] d..3 29480.398636: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
23436         sugov:0-559   (  559) [003] d..2 29480.398670: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23437  HwBinder:771_4-20182 (  771) [000] d..2 29480.398690: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23438          <idle>-0     (-----) [000] d..1 29480.398736: cpu_idle: state=2 cpu_id=0
23439 cdsp_smem_glink-88    (   88) [003] d..2 29480.398740: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23440          <idle>-0     (-----) [003] d..1 29480.398801: cpu_idle: state=2 cpu_id=3
23441  kworker/u16:10-23868 (23868) [002] d..2 29480.398820: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23442          <idle>-0     (-----) [002] d..1 29480.398842: cpu_idle: state=2 cpu_id=2
23443          <idle>-0     (-----) [005] dnh2 29480.399284: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23444          <idle>-0     (-----) [005] .n.1 29480.399294: cpu_idle: state=4294967295 cpu_id=5
23445          <idle>-0     (-----) [005] d..2 29480.399305: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23446         sugov:4-560   (  560) [005] d..2 29480.399326: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23447          <idle>-0     (-----) [005] d..1 29480.399336: cpu_idle: state=2 cpu_id=5
23448          <idle>-0     (-----) [005] ...1 29480.403113: cpu_idle: state=4294967295 cpu_id=5
23449          <idle>-0     (-----) [005] d..1 29480.403118: cpu_idle: state=2 cpu_id=5
23450          <idle>-0     (-----) [002] d.h4 29480.403165: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23451          <idle>-0     (-----) [002] dnh5 29480.403207: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23452          <idle>-0     (-----) [002] dnh4 29480.403240: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23453          <idle>-0     (-----) [002] dnh5 29480.403262: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23454          <idle>-0     (-----) [002] .n.1 29480.403310: cpu_idle: state=4294967295 cpu_id=2
23455          <idle>-0     (-----) [002] d..2 29480.403334: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23456 smem_native_cds-87    (   87) [002] d..2 29480.403396: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23457          <idle>-0     (-----) [002] d..2 29480.403404: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23458          <idle>-0     (-----) [002] dn.3 29480.403416: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23459          <idle>-0     (-----) [002] d..2 29480.403427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23460          <idle>-0     (-----) [000] .n.1 29480.403449: cpu_idle: state=4294967295 cpu_id=0
23461     ksoftirqd/2-26    (   26) [002] d..2 29480.403457: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23462          <idle>-0     (-----) [002] d..1 29480.403478: cpu_idle: state=2 cpu_id=2
23463          <idle>-0     (-----) [000] d..2 29480.403485: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23464  HwBinder:771_4-20182 (  771) [000] d..2 29480.403568: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
23465  HwBinder:771_4-20182 (  771) [000] dn.3 29480.403632: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23466  HwBinder:771_4-20182 (  771) [000] d..2 29480.403648: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23467 cdsp_smem_glink-88    (   88) [000] d..2 29480.403695: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23468  HwBinder:771_4-20182 (  771) [000] d..2 29480.403724: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23469          <idle>-0     (-----) [000] d..1 29480.403804: cpu_idle: state=2 cpu_id=0
23470          <idle>-0     (-----) [000] d..2 29480.407678: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23471          <idle>-0     (-----) [002] d.h4 29480.407687: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23472          <idle>-0     (-----) [000] dn.3 29480.407698: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23473          <idle>-0     (-----) [000] .n.1 29480.407706: cpu_idle: state=4294967295 cpu_id=0
23474          <idle>-0     (-----) [000] d..2 29480.407728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23475          <idle>-0     (-----) [002] dnh5 29480.407729: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23476     ksoftirqd/0-3     (    3) [000] d.s2 29480.407740: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23477          <idle>-0     (-----) [002] dnh4 29480.407763: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23478          <idle>-0     (-----) [002] dnh5 29480.407796: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23479     ksoftirqd/0-3     (    3) [000] d.s3 29480.407804: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23480     ksoftirqd/0-3     (    3) [000] d..2 29480.407827: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23481          <idle>-0     (-----) [002] .n.1 29480.407846: cpu_idle: state=4294967295 cpu_id=2
23482          <idle>-0     (-----) [002] d..2 29480.407874: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23483 smem_native_cds-87    (   87) [002] d..2 29480.407940: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23484          <idle>-0     (-----) [002] d..1 29480.408001: cpu_idle: state=2 cpu_id=2
23485  kworker/u16:10-23868 (23868) [000] d..2 29480.408030: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23486          <idle>-0     (-----) [000] d..1 29480.408054: cpu_idle: state=2 cpu_id=0
23487          <idle>-0     (-----) [001] .n.1 29480.408118: cpu_idle: state=4294967295 cpu_id=1
23488          <idle>-0     (-----) [001] d..2 29480.408152: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23489  HwBinder:771_4-20182 (  771) [001] d..2 29480.408230: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23490  HwBinder:771_4-20182 (  771) [001] dn.3 29480.408296: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23491  HwBinder:771_4-20182 (  771) [001] d..2 29480.408311: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23492 cdsp_smem_glink-88    (   88) [001] d..2 29480.408360: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23493  HwBinder:771_4-20182 (  771) [001] d..2 29480.408392: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23494          <idle>-0     (-----) [001] d..1 29480.408412: cpu_idle: state=2 cpu_id=1
23495          <idle>-0     (-----) [001] ...1 29480.413023: cpu_idle: state=4294967295 cpu_id=1
23496          <idle>-0     (-----) [001] d..1 29480.413032: cpu_idle: state=2 cpu_id=1
23497          <idle>-0     (-----) [002] d.h4 29480.413064: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23498          <idle>-0     (-----) [002] dnh5 29480.413102: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23499          <idle>-0     (-----) [002] dnh4 29480.413136: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23500          <idle>-0     (-----) [002] dnh5 29480.413166: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23501          <idle>-0     (-----) [002] .n.1 29480.413215: cpu_idle: state=4294967295 cpu_id=2
23502          <idle>-0     (-----) [002] d..2 29480.413237: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23503 smem_native_cds-87    (   87) [002] d..2 29480.413300: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23504          <idle>-0     (-----) [002] d..2 29480.413307: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23505          <idle>-0     (-----) [002] dn.3 29480.413320: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23506          <idle>-0     (-----) [002] d..2 29480.413331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23507          <idle>-0     (-----) [000] .n.1 29480.413352: cpu_idle: state=4294967295 cpu_id=0
23508     ksoftirqd/2-26    (   26) [002] d..2 29480.413361: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23509          <idle>-0     (-----) [002] d..1 29480.413383: cpu_idle: state=2 cpu_id=2
23510          <idle>-0     (-----) [000] d..2 29480.413387: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23511  HwBinder:771_4-20182 (  771) [000] d..2 29480.413468: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23512  HwBinder:771_4-20182 (  771) [000] dn.3 29480.413533: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23513  HwBinder:771_4-20182 (  771) [000] d..2 29480.413546: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23514 cdsp_smem_glink-88    (   88) [000] d..2 29480.413600: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23515  HwBinder:771_4-20182 (  771) [000] d..2 29480.413629: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23516          <idle>-0     (-----) [000] d..1 29480.413650: cpu_idle: state=2 cpu_id=0
23517          <idle>-0     (-----) [002] d.h4 29480.418298: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23518          <idle>-0     (-----) [000] d..2 29480.418304: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23519          <idle>-0     (-----) [000] dn.3 29480.418327: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23520          <idle>-0     (-----) [002] dnh5 29480.418344: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23521          <idle>-0     (-----) [000] dnH3 29480.418424: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23522          <idle>-0     (-----) [002] dnh4 29480.418429: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23523          <idle>-0     (-----) [000] dnH3 29480.418442: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23524          <idle>-0     (-----) [000] dnH4 29480.418462: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23525          <idle>-0     (-----) [002] dnh5 29480.418464: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23526          <idle>-0     (-----) [000] dns3 29480.418477: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23527          <idle>-0     (-----) [000] dns4 29480.418503: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23528          <idle>-0     (-----) [002] .n.1 29480.418516: cpu_idle: state=4294967295 cpu_id=2
23529          <idle>-0     (-----) [000] .n.1 29480.418518: cpu_idle: state=4294967295 cpu_id=0
23530          <idle>-0     (-----) [002] d..2 29480.418540: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23531          <idle>-0     (-----) [000] d..2 29480.418546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23532     ksoftirqd/0-3     (    3) [000] d..2 29480.418563: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23533 smem_native_cds-87    (   87) [002] d..2 29480.418607: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23534          <idle>-0     (-----) [002] d..1 29480.418671: cpu_idle: state=2 cpu_id=2
23535  kworker/u16:10-23868 (23868) [000] d..2 29480.418755: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23536          <idle>-0     (-----) [000] d..1 29480.418778: cpu_idle: state=2 cpu_id=0
23537          <idle>-0     (-----) [003] .n.1 29480.418794: cpu_idle: state=4294967295 cpu_id=3
23538          <idle>-0     (-----) [003] d..2 29480.418820: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23539          <idle>-0     (-----) [001] .n.1 29480.418858: cpu_idle: state=4294967295 cpu_id=1
23540         sugov:0-559   (  559) [003] d..2 29480.418866: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23541          <idle>-0     (-----) [003] d..1 29480.418884: cpu_idle: state=2 cpu_id=3
23542          <idle>-0     (-----) [001] d..2 29480.418892: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23543  HwBinder:771_4-20182 (  771) [001] d..2 29480.418972: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23544  HwBinder:771_4-20182 (  771) [001] dn.3 29480.419036: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23545  HwBinder:771_4-20182 (  771) [001] d..2 29480.419050: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23546 cdsp_smem_glink-88    (   88) [001] d..2 29480.419096: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23547  HwBinder:771_4-20182 (  771) [001] d..2 29480.419127: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23548          <idle>-0     (-----) [001] d..1 29480.419150: cpu_idle: state=2 cpu_id=1
23549          <idle>-0     (-----) [005] dnh2 29480.419512: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23550          <idle>-0     (-----) [005] .n.1 29480.419522: cpu_idle: state=4294967295 cpu_id=5
23551          <idle>-0     (-----) [005] d..2 29480.419534: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23552         sugov:4-560   (  560) [005] d..2 29480.419556: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23553          <idle>-0     (-----) [005] d..1 29480.419566: cpu_idle: state=2 cpu_id=5
23554          <idle>-0     (-----) [005] ...1 29480.423312: cpu_idle: state=4294967295 cpu_id=5
23555          <idle>-0     (-----) [005] d..1 29480.423318: cpu_idle: state=2 cpu_id=5
23556          <idle>-0     (-----) [002] d.h4 29480.423365: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23557          <idle>-0     (-----) [002] dnh5 29480.423406: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23558          <idle>-0     (-----) [002] dnh4 29480.423439: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23559          <idle>-0     (-----) [002] dnh5 29480.423468: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23560          <idle>-0     (-----) [002] .n.1 29480.423515: cpu_idle: state=4294967295 cpu_id=2
23561          <idle>-0     (-----) [002] d..2 29480.423539: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23562 smem_native_cds-87    (   87) [002] d..2 29480.423601: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23563          <idle>-0     (-----) [002] d..2 29480.423609: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23564          <idle>-0     (-----) [002] dn.3 29480.423624: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23565          <idle>-0     (-----) [002] d..2 29480.423635: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23566          <idle>-0     (-----) [000] .n.1 29480.423650: cpu_idle: state=4294967295 cpu_id=0
23567     ksoftirqd/2-26    (   26) [002] d..2 29480.423665: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23568          <idle>-0     (-----) [000] d..2 29480.423685: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23569          <idle>-0     (-----) [002] d..1 29480.423687: cpu_idle: state=2 cpu_id=2
23570  HwBinder:771_4-20182 (  771) [000] d..2 29480.423814: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23571  HwBinder:771_4-20182 (  771) [000] dn.3 29480.423877: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23572  HwBinder:771_4-20182 (  771) [000] d..2 29480.423891: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23573 cdsp_smem_glink-88    (   88) [000] d..2 29480.423939: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23574  HwBinder:771_4-20182 (  771) [000] d..2 29480.423980: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23575          <idle>-0     (-----) [000] d..1 29480.424002: cpu_idle: state=2 cpu_id=0
23576          <idle>-0     (-----) [000] d..2 29480.427876: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23577          <idle>-0     (-----) [002] d.h4 29480.427884: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23578          <idle>-0     (-----) [000] dn.3 29480.427893: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23579          <idle>-0     (-----) [000] .n.1 29480.427899: cpu_idle: state=4294967295 cpu_id=0
23580          <idle>-0     (-----) [000] d..2 29480.427921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23581          <idle>-0     (-----) [002] dnh5 29480.427927: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23582     ksoftirqd/0-3     (    3) [000] d.s2 29480.427933: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23583     ksoftirqd/0-3     (    3) [000] d.s3 29480.427960: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23584          <idle>-0     (-----) [002] dnh4 29480.427962: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23585     ksoftirqd/0-3     (    3) [000] d..2 29480.427989: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23586          <idle>-0     (-----) [002] dnh5 29480.428012: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23587          <idle>-0     (-----) [002] .n.1 29480.428061: cpu_idle: state=4294967295 cpu_id=2
23588          <idle>-0     (-----) [002] d..2 29480.428112: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23589  kworker/u16:10-23868 (23868) [000] d..2 29480.428169: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23590 smem_native_cds-87    (   87) [002] d..2 29480.428186: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23591          <idle>-0     (-----) [000] d..1 29480.428191: cpu_idle: state=2 cpu_id=0
23592          <idle>-0     (-----) [002] d..1 29480.428224: cpu_idle: state=2 cpu_id=2
23593          <idle>-0     (-----) [001] .n.1 29480.428344: cpu_idle: state=4294967295 cpu_id=1
23594          <idle>-0     (-----) [001] d..2 29480.428377: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23595  HwBinder:771_4-20182 (  771) [001] d..2 29480.428461: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23596  HwBinder:771_4-20182 (  771) [001] dn.3 29480.428528: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23597  HwBinder:771_4-20182 (  771) [001] d..2 29480.428544: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23598 cdsp_smem_glink-88    (   88) [001] d..2 29480.428592: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23599  HwBinder:771_4-20182 (  771) [001] d..2 29480.428624: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23600          <idle>-0     (-----) [001] d..1 29480.428645: cpu_idle: state=2 cpu_id=1
23601          <idle>-0     (-----) [001] ...1 29480.433251: cpu_idle: state=4294967295 cpu_id=1
23602          <idle>-0     (-----) [001] d..1 29480.433261: cpu_idle: state=2 cpu_id=1
23603          <idle>-0     (-----) [002] d.h4 29480.433290: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23604          <idle>-0     (-----) [002] dnh5 29480.433329: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23605          <idle>-0     (-----) [002] dnh4 29480.433362: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23606          <idle>-0     (-----) [002] dnh5 29480.433392: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23607          <idle>-0     (-----) [002] .n.1 29480.433441: cpu_idle: state=4294967295 cpu_id=2
23608          <idle>-0     (-----) [002] d..2 29480.433463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23609 smem_native_cds-87    (   87) [002] d..2 29480.433525: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23610          <idle>-0     (-----) [002] d..2 29480.433533: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23611          <idle>-0     (-----) [002] dn.3 29480.433545: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23612          <idle>-0     (-----) [002] d..2 29480.433557: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23613          <idle>-0     (-----) [000] .n.1 29480.433578: cpu_idle: state=4294967295 cpu_id=0
23614     ksoftirqd/2-26    (   26) [002] d..2 29480.433587: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23615          <idle>-0     (-----) [002] d..1 29480.433608: cpu_idle: state=2 cpu_id=2
23616          <idle>-0     (-----) [000] d..2 29480.433614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23617  HwBinder:771_4-20182 (  771) [000] d..2 29480.433693: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23618  HwBinder:771_4-20182 (  771) [000] d..3 29480.433759: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23619  HwBinder:771_4-20182 (  771) [000] d..2 29480.433826: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23620 cdsp_smem_glink-88    (   88) [000] d..2 29480.433903: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23621          <idle>-0     (-----) [000] d..1 29480.433924: cpu_idle: state=2 cpu_id=0
23622          <idle>-0     (-----) [002] d.h4 29480.438570: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23623          <idle>-0     (-----) [000] d..2 29480.438571: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23624          <idle>-0     (-----) [000] dn.3 29480.438592: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23625          <idle>-0     (-----) [002] dnh5 29480.438620: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23626          <idle>-0     (-----) [000] dnH3 29480.438699: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23627          <idle>-0     (-----) [002] dnh4 29480.438705: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23628          <idle>-0     (-----) [000] dnH3 29480.438718: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23629          <idle>-0     (-----) [000] dnH4 29480.438739: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23630          <idle>-0     (-----) [002] dnh5 29480.438740: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23631          <idle>-0     (-----) [000] dns3 29480.438752: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23632          <idle>-0     (-----) [002] .n.1 29480.438792: cpu_idle: state=4294967295 cpu_id=2
23633          <idle>-0     (-----) [000] dns4 29480.438802: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23634          <idle>-0     (-----) [002] d..2 29480.438818: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23635          <idle>-0     (-----) [000] .n.1 29480.438819: cpu_idle: state=4294967295 cpu_id=0
23636          <idle>-0     (-----) [000] d..2 29480.438848: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23637 smem_native_cds-87    (   87) [002] d..2 29480.438884: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23638     ksoftirqd/0-3     (    3) [000] d..2 29480.438890: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23639          <idle>-0     (-----) [002] d..1 29480.438906: cpu_idle: state=2 cpu_id=2
23640          <idle>-0     (-----) [000] d..1 29480.438911: cpu_idle: state=2 cpu_id=0
23641          <idle>-0     (-----) [003] .n.1 29480.439092: cpu_idle: state=4294967295 cpu_id=3
23642          <idle>-0     (-----) [003] d..2 29480.439120: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23643         sugov:0-559   (  559) [003] d..2 29480.439144: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23644          <idle>-0     (-----) [001] .n.1 29480.439167: cpu_idle: state=4294967295 cpu_id=1
23645          <idle>-0     (-----) [001] d..2 29480.439206: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23646  kworker/u16:10-23868 (23868) [003] d..2 29480.439298: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23647  HwBinder:771_4-20182 (  771) [001] d..2 29480.439309: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23648          <idle>-0     (-----) [003] d..1 29480.439319: cpu_idle: state=2 cpu_id=3
23649  HwBinder:771_4-20182 (  771) [001] d..3 29480.439378: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23650  HwBinder:771_4-20182 (  771) [001] d..2 29480.439397: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23651 cdsp_smem_glink-88    (   88) [001] d..2 29480.439462: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23652          <idle>-0     (-----) [001] d..1 29480.439484: cpu_idle: state=2 cpu_id=1
23653          <idle>-0     (-----) [005] dnh2 29480.439761: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23654          <idle>-0     (-----) [005] .n.1 29480.439770: cpu_idle: state=4294967295 cpu_id=5
23655          <idle>-0     (-----) [005] d..2 29480.439783: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23656         sugov:4-560   (  560) [005] d..2 29480.439805: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23657          <idle>-0     (-----) [005] d..1 29480.439815: cpu_idle: state=2 cpu_id=5
23658          <idle>-0     (-----) [005] ...1 29480.443560: cpu_idle: state=4294967295 cpu_id=5
23659          <idle>-0     (-----) [005] d..1 29480.443565: cpu_idle: state=2 cpu_id=5
23660          <idle>-0     (-----) [002] d.h4 29480.443613: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23661          <idle>-0     (-----) [002] dnh5 29480.443654: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23662          <idle>-0     (-----) [002] dnh4 29480.443687: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23663          <idle>-0     (-----) [002] dnh5 29480.443722: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23664          <idle>-0     (-----) [002] .n.1 29480.443769: cpu_idle: state=4294967295 cpu_id=2
23665          <idle>-0     (-----) [002] d..2 29480.443793: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23666 smem_native_cds-87    (   87) [002] d..2 29480.443856: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23667          <idle>-0     (-----) [002] d..2 29480.443862: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23668          <idle>-0     (-----) [002] dn.3 29480.443877: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23669          <idle>-0     (-----) [002] d..2 29480.443888: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23670          <idle>-0     (-----) [000] .n.1 29480.443891: cpu_idle: state=4294967295 cpu_id=0
23671     ksoftirqd/2-26    (   26) [002] d.s2 29480.443904: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
23672          <idle>-0     (-----) [000] d..2 29480.443928: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23673     ksoftirqd/2-26    (   26) [002] d.s3 29480.443953: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23674     ksoftirqd/2-26    (   26) [002] d..2 29480.443971: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23675  HwBinder:771_4-20182 (  771) [000] d..2 29480.444020: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23676  HwBinder:771_4-20182 (  771) [000] d..3 29480.444093: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23677  kworker/u16:10-23868 (23868) [002] d..2 29480.444111: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23678  HwBinder:771_4-20182 (  771) [000] d..2 29480.444151: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23679 cdsp_smem_glink-88    (   88) [002] d..2 29480.444174: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23680          <idle>-0     (-----) [000] d..1 29480.444175: cpu_idle: state=2 cpu_id=0
23681          <idle>-0     (-----) [002] d..1 29480.444200: cpu_idle: state=2 cpu_id=2
23682          <idle>-0     (-----) [002] d.h4 29480.449193: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23683          <idle>-0     (-----) [002] dnh5 29480.449228: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23684          <idle>-0     (-----) [002] dnh4 29480.449260: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23685          <idle>-0     (-----) [002] dnh5 29480.449279: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23686          <idle>-0     (-----) [002] .n.1 29480.449328: cpu_idle: state=4294967295 cpu_id=2
23687          <idle>-0     (-----) [002] d..2 29480.449352: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23688 smem_native_cds-87    (   87) [002] d..2 29480.449412: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23689          <idle>-0     (-----) [002] d..2 29480.449419: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23690          <idle>-0     (-----) [002] dn.3 29480.449430: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23691          <idle>-0     (-----) [002] d..2 29480.449443: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23692     ksoftirqd/2-26    (   26) [002] d.s2 29480.449453: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23693     ksoftirqd/2-26    (   26) [002] d.s3 29480.449476: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23694          <idle>-0     (-----) [000] .n.1 29480.449487: cpu_idle: state=4294967295 cpu_id=0
23695     ksoftirqd/2-26    (   26) [002] d..2 29480.449497: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23696          <idle>-0     (-----) [000] d..2 29480.449527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23697  HwBinder:771_4-20182 (  771) [000] d..2 29480.449652: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23698  HwBinder:771_4-20182 (  771) [000] d..3 29480.449702: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23699  kworker/u16:10-23868 (23868) [002] d..2 29480.449746: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23700  HwBinder:771_4-20182 (  771) [000] d..2 29480.449750: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23701          <idle>-0     (-----) [000] d..1 29480.449773: cpu_idle: state=2 cpu_id=0
23702 cdsp_smem_glink-88    (   88) [002] d..2 29480.449811: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23703          <idle>-0     (-----) [002] d..1 29480.449838: cpu_idle: state=2 cpu_id=2
23704          <idle>-0     (-----) [002] d.h4 29480.454836: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23705          <idle>-0     (-----) [002] dnh5 29480.454872: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23706          <idle>-0     (-----) [002] dnh4 29480.454903: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23707          <idle>-0     (-----) [002] dnh5 29480.454924: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23708          <idle>-0     (-----) [002] .n.1 29480.454974: cpu_idle: state=4294967295 cpu_id=2
23709          <idle>-0     (-----) [002] d..2 29480.454996: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23710 smem_native_cds-87    (   87) [002] d..2 29480.455058: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23711          <idle>-0     (-----) [002] d..2 29480.455065: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23712          <idle>-0     (-----) [002] dn.3 29480.455076: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23713          <idle>-0     (-----) [002] d..2 29480.455088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23714     ksoftirqd/2-26    (   26) [002] d..2 29480.455118: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23715          <idle>-0     (-----) [000] .n.1 29480.455132: cpu_idle: state=4294967295 cpu_id=0
23716          <idle>-0     (-----) [002] d..1 29480.455140: cpu_idle: state=2 cpu_id=2
23717          <idle>-0     (-----) [000] d..2 29480.455171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23718  HwBinder:771_4-20182 (  771) [000] d..2 29480.455251: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23719  HwBinder:771_4-20182 (  771) [000] d..3 29480.455320: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23720  HwBinder:771_4-20182 (  771) [000] d..2 29480.455339: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23721 cdsp_smem_glink-88    (   88) [000] d..2 29480.455402: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23722          <idle>-0     (-----) [000] d..1 29480.455422: cpu_idle: state=2 cpu_id=0
23723          <idle>-0     (-----) [002] d.h4 29480.460068: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23724          <idle>-0     (-----) [000] d..2 29480.460075: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23725          <idle>-0     (-----) [000] dn.3 29480.460097: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23726          <idle>-0     (-----) [002] dnh5 29480.460114: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23727          <idle>-0     (-----) [000] dnH3 29480.460193: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23728          <idle>-0     (-----) [002] dnh4 29480.460196: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23729          <idle>-0     (-----) [000] dnH3 29480.460213: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23730          <idle>-0     (-----) [002] dnh5 29480.460231: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23731          <idle>-0     (-----) [000] dnH4 29480.460233: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23732          <idle>-0     (-----) [000] dns3 29480.460248: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23733          <idle>-0     (-----) [002] .n.1 29480.460288: cpu_idle: state=4294967295 cpu_id=2
23734          <idle>-0     (-----) [000] dns4 29480.460299: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23735          <idle>-0     (-----) [000] dns3 29480.460310: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23736          <idle>-0     (-----) [002] d..2 29480.460313: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23737          <idle>-0     (-----) [000] dns4 29480.460324: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23738          <idle>-0     (-----) [000] .n.1 29480.460335: cpu_idle: state=4294967295 cpu_id=0
23739          <idle>-0     (-----) [000] d..2 29480.460363: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23740 smem_native_cds-87    (   87) [002] d..2 29480.460378: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23741     ksoftirqd/0-3     (    3) [000] d..2 29480.460380: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
23742          <idle>-0     (-----) [002] d..1 29480.460399: cpu_idle: state=2 cpu_id=2
23743     kworker/0:0-13450 (13450) [000] d..2 29480.460470: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23744          <idle>-0     (-----) [001] .n.1 29480.460588: cpu_idle: state=4294967295 cpu_id=1
23745  kworker/u16:10-23868 (23868) [000] d..2 29480.460590: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23746          <idle>-0     (-----) [000] d..1 29480.460615: cpu_idle: state=2 cpu_id=0
23747          <idle>-0     (-----) [001] d..2 29480.460623: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23748          <idle>-0     (-----) [003] .n.1 29480.460639: cpu_idle: state=4294967295 cpu_id=3
23749          <idle>-0     (-----) [003] d..2 29480.460666: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23750  HwBinder:771_4-20182 (  771) [001] d..2 29480.460702: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23751         sugov:0-559   (  559) [003] d..2 29480.460716: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23752          <idle>-0     (-----) [003] d..1 29480.460737: cpu_idle: state=2 cpu_id=3
23753  HwBinder:771_4-20182 (  771) [001] d..3 29480.460758: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23754  HwBinder:771_4-20182 (  771) [001] d..2 29480.460794: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23755          <idle>-0     (-----) [001] d..1 29480.460817: cpu_idle: state=2 cpu_id=1
23756          <idle>-0     (-----) [000] .n.1 29480.461081: cpu_idle: state=4294967295 cpu_id=0
23757          <idle>-0     (-----) [000] d..2 29480.461109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23758 cdsp_smem_glink-88    (   88) [000] d..2 29480.461180: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23759          <idle>-0     (-----) [000] d..1 29480.461202: cpu_idle: state=2 cpu_id=0
23760          <idle>-0     (-----) [005] dnh2 29480.461331: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23761          <idle>-0     (-----) [005] .n.1 29480.461342: cpu_idle: state=4294967295 cpu_id=5
23762          <idle>-0     (-----) [005] d..2 29480.461356: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23763         sugov:4-560   (  560) [005] d..2 29480.461378: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23764          <idle>-0     (-----) [005] d..1 29480.461389: cpu_idle: state=2 cpu_id=5
23765          <idle>-0     (-----) [005] ...1 29480.465117: cpu_idle: state=4294967295 cpu_id=5
23766          <idle>-0     (-----) [005] d..1 29480.465122: cpu_idle: state=2 cpu_id=5
23767          <idle>-0     (-----) [002] d.h4 29480.465166: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23768          <idle>-0     (-----) [002] dnh5 29480.465205: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23769          <idle>-0     (-----) [002] dnh4 29480.465237: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23770          <idle>-0     (-----) [002] dnh5 29480.465267: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23771          <idle>-0     (-----) [002] .n.1 29480.465314: cpu_idle: state=4294967295 cpu_id=2
23772          <idle>-0     (-----) [002] d..2 29480.465338: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23773 smem_native_cds-87    (   87) [002] d..2 29480.465399: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23774          <idle>-0     (-----) [002] d..2 29480.465406: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23775          <idle>-0     (-----) [002] dn.3 29480.465420: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23776          <idle>-0     (-----) [002] d..2 29480.465432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23777          <idle>-0     (-----) [000] .n.1 29480.465445: cpu_idle: state=4294967295 cpu_id=0
23778     ksoftirqd/2-26    (   26) [002] d..2 29480.465462: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23779          <idle>-0     (-----) [000] d..2 29480.465481: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23780          <idle>-0     (-----) [002] d..1 29480.465483: cpu_idle: state=2 cpu_id=2
23781  HwBinder:771_4-20182 (  771) [000] d..2 29480.465561: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23782  HwBinder:771_4-20182 (  771) [000] d..3 29480.465600: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23783  HwBinder:771_4-20182 (  771) [000] d..2 29480.465619: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23784 cdsp_smem_glink-88    (   88) [000] d..2 29480.465682: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23785          <idle>-0     (-----) [000] d..1 29480.465703: cpu_idle: state=2 cpu_id=0
23786          <idle>-0     (-----) [000] d..2 29480.469577: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23787          <idle>-0     (-----) [002] d.h4 29480.469585: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23788          <idle>-0     (-----) [000] dn.3 29480.469594: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23789          <idle>-0     (-----) [000] .n.1 29480.469602: cpu_idle: state=4294967295 cpu_id=0
23790          <idle>-0     (-----) [000] d..2 29480.469623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23791          <idle>-0     (-----) [002] dnh5 29480.469625: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23792          <idle>-0     (-----) [002] dnh4 29480.469658: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23793     ksoftirqd/0-3     (    3) [000] d..2 29480.469674: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23794          <idle>-0     (-----) [000] d..1 29480.469692: cpu_idle: state=2 cpu_id=0
23795          <idle>-0     (-----) [002] dnh5 29480.469697: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23796          <idle>-0     (-----) [002] .n.1 29480.469745: cpu_idle: state=4294967295 cpu_id=2
23797          <idle>-0     (-----) [002] d..2 29480.469771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23798 smem_native_cds-87    (   87) [002] d..2 29480.469829: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23799          <idle>-0     (-----) [002] d..1 29480.469849: cpu_idle: state=2 cpu_id=2
23800          <idle>-0     (-----) [001] .n.1 29480.470045: cpu_idle: state=4294967295 cpu_id=1
23801          <idle>-0     (-----) [001] d..2 29480.470077: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23802  HwBinder:771_4-20182 (  771) [001] d..2 29480.470181: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23803  HwBinder:771_4-20182 (  771) [001] d..3 29480.470250: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23804  HwBinder:771_4-20182 (  771) [001] d..2 29480.470269: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23805 cdsp_smem_glink-88    (   88) [001] d..2 29480.470332: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23806          <idle>-0     (-----) [001] d..1 29480.470353: cpu_idle: state=2 cpu_id=1
23807          <idle>-0     (-----) [001] ...1 29480.474960: cpu_idle: state=4294967295 cpu_id=1
23808          <idle>-0     (-----) [001] d..1 29480.474970: cpu_idle: state=2 cpu_id=1
23809          <idle>-0     (-----) [002] d.h4 29480.475001: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23810          <idle>-0     (-----) [002] dnh5 29480.475040: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23811          <idle>-0     (-----) [002] dnh4 29480.475072: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23812          <idle>-0     (-----) [002] dnh5 29480.475103: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23813          <idle>-0     (-----) [002] .n.1 29480.475152: cpu_idle: state=4294967295 cpu_id=2
23814          <idle>-0     (-----) [002] d..2 29480.475175: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23815 smem_native_cds-87    (   87) [002] d..2 29480.475237: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23816          <idle>-0     (-----) [002] d..2 29480.475244: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23817          <idle>-0     (-----) [002] dn.3 29480.475256: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23818          <idle>-0     (-----) [002] d..2 29480.475268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23819     ksoftirqd/2-26    (   26) [002] d.s2 29480.475279: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23820          <idle>-0     (-----) [000] .n.1 29480.475288: cpu_idle: state=4294967295 cpu_id=0
23821          <idle>-0     (-----) [000] d..2 29480.475329: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23822     ksoftirqd/2-26    (   26) [002] d.s3 29480.475350: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23823     ksoftirqd/2-26    (   26) [002] d..2 29480.475372: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23824  HwBinder:771_4-20182 (  771) [000] d..2 29480.475433: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23825  HwBinder:771_4-20182 (  771) [000] d..3 29480.475510: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23826  HwBinder:771_4-20182 (  771) [000] d..2 29480.475562: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23827          <idle>-0     (-----) [000] d..1 29480.475608: cpu_idle: state=2 cpu_id=0
23828  kworker/u16:10-23868 (23868) [002] d..2 29480.475618: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23829 cdsp_smem_glink-88    (   88) [002] d..2 29480.475683: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23830          <idle>-0     (-----) [002] d..1 29480.475709: cpu_idle: state=2 cpu_id=2
23831          <idle>-0     (-----) [002] d.h4 29480.480712: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23832          <idle>-0     (-----) [002] dnh5 29480.480755: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23833          <idle>-0     (-----) [002] dnh4 29480.480787: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23834          <idle>-0     (-----) [002] dnh5 29480.480809: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23835          <idle>-0     (-----) [002] dnh3 29480.480930: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23836          <idle>-0     (-----) [002] dnh3 29480.480950: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23837          <idle>-0     (-----) [002] dnh4 29480.480967: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23838          <idle>-0     (-----) [002] .n.1 29480.480982: cpu_idle: state=4294967295 cpu_id=2
23839          <idle>-0     (-----) [002] d..2 29480.481006: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23840          <idle>-0     (-----) [000] .n.1 29480.481009: cpu_idle: state=4294967295 cpu_id=0
23841          <idle>-0     (-----) [000] d..2 29480.481049: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23842 smem_native_cds-87    (   87) [002] d..2 29480.481070: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23843          <idle>-0     (-----) [002] d..2 29480.481077: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23844          <idle>-0     (-----) [002] dn.3 29480.481091: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23845          <idle>-0     (-----) [002] d..2 29480.481102: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23846     ksoftirqd/2-26    (   26) [002] d..2 29480.481132: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23847  HwBinder:771_4-20182 (  771) [000] d..2 29480.481132: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23848          <idle>-0     (-----) [002] d..1 29480.481152: cpu_idle: state=2 cpu_id=2
23849  HwBinder:771_4-20182 (  771) [000] d..3 29480.481203: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
23850  HwBinder:771_4-20182 (  771) [000] d..2 29480.481247: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23851          <idle>-0     (-----) [000] d..1 29480.481273: cpu_idle: state=2 cpu_id=0
23852          <idle>-0     (-----) [003] .n.1 29480.481303: cpu_idle: state=4294967295 cpu_id=3
23853          <idle>-0     (-----) [003] d..2 29480.481328: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23854         sugov:0-559   (  559) [003] d..2 29480.481355: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23855 cdsp_smem_glink-88    (   88) [003] d..2 29480.481430: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23856          <idle>-0     (-----) [003] d..1 29480.481448: cpu_idle: state=2 cpu_id=3
23857          <idle>-0     (-----) [005] dnh2 29480.482002: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23858          <idle>-0     (-----) [005] .n.1 29480.482011: cpu_idle: state=4294967295 cpu_id=5
23859          <idle>-0     (-----) [005] d..2 29480.482023: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23860         sugov:4-560   (  560) [005] d..2 29480.482046: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23861          <idle>-0     (-----) [005] d..1 29480.482056: cpu_idle: state=2 cpu_id=5
23862          <idle>-0     (-----) [005] ...1 29480.485804: cpu_idle: state=4294967295 cpu_id=5
23863          <idle>-0     (-----) [005] d..1 29480.485809: cpu_idle: state=2 cpu_id=5
23864          <idle>-0     (-----) [002] d.h4 29480.485856: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23865          <idle>-0     (-----) [002] dnh5 29480.485898: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23866          <idle>-0     (-----) [002] dnh4 29480.485929: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23867          <idle>-0     (-----) [002] dnh5 29480.485949: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23868          <idle>-0     (-----) [002] .n.1 29480.485997: cpu_idle: state=4294967295 cpu_id=2
23869          <idle>-0     (-----) [002] d..2 29480.486020: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23870 smem_native_cds-87    (   87) [002] d..2 29480.486082: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23871          <idle>-0     (-----) [002] d..2 29480.486089: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23872          <idle>-0     (-----) [002] dn.3 29480.486102: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23873          <idle>-0     (-----) [002] d..2 29480.486114: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23874     ksoftirqd/2-26    (   26) [002] d.s2 29480.486125: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23875          <idle>-0     (-----) [000] .n.1 29480.486135: cpu_idle: state=4294967295 cpu_id=0
23876     ksoftirqd/2-26    (   26) [002] d.s3 29480.486150: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23877     ksoftirqd/2-26    (   26) [002] d..2 29480.486171: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23878          <idle>-0     (-----) [000] d..2 29480.486171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23879  HwBinder:771_4-20182 (  771) [000] d..2 29480.486275: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
23880  HwBinder:771_4-20182 (  771) [000] d..3 29480.486353: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23881  HwBinder:771_4-20182 (  771) [000] d..2 29480.486411: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23882          <idle>-0     (-----) [000] d..1 29480.486456: cpu_idle: state=2 cpu_id=0
23883  kworker/u16:10-23868 (23868) [002] d..2 29480.486468: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23884 cdsp_smem_glink-88    (   88) [002] d..2 29480.486533: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23885          <idle>-0     (-----) [002] d..1 29480.486558: cpu_idle: state=2 cpu_id=2
23886          <idle>-0     (-----) [002] d.h4 29480.491556: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23887          <idle>-0     (-----) [002] dnh5 29480.491593: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23888          <idle>-0     (-----) [002] dnh4 29480.491626: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23889          <idle>-0     (-----) [002] dnh5 29480.491646: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23890          <idle>-0     (-----) [002] .n.1 29480.491695: cpu_idle: state=4294967295 cpu_id=2
23891          <idle>-0     (-----) [002] d..2 29480.491718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23892 smem_native_cds-87    (   87) [002] d..2 29480.491782: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23893          <idle>-0     (-----) [002] d..2 29480.491789: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23894          <idle>-0     (-----) [002] dn.3 29480.491800: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23895          <idle>-0     (-----) [002] d..2 29480.491812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23896     ksoftirqd/2-26    (   26) [002] d..2 29480.491842: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23897          <idle>-0     (-----) [000] .n.1 29480.491851: cpu_idle: state=4294967295 cpu_id=0
23898          <idle>-0     (-----) [002] d..1 29480.491863: cpu_idle: state=2 cpu_id=2
23899          <idle>-0     (-----) [000] d..2 29480.491888: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23900  HwBinder:771_4-20182 (  771) [000] d..2 29480.491979: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
23901  HwBinder:771_4-20182 (  771) [000] d..3 29480.492047: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23902  HwBinder:771_4-20182 (  771) [000] d..2 29480.492066: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23903 cdsp_smem_glink-88    (   88) [000] d..2 29480.492130: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23904          <idle>-0     (-----) [000] d..1 29480.492151: cpu_idle: state=2 cpu_id=0
23905          <idle>-0     (-----) [002] d.h4 29480.496799: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23906          <idle>-0     (-----) [000] d..2 29480.496800: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23907          <idle>-0     (-----) [000] dn.3 29480.496821: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23908          <idle>-0     (-----) [000] .n.1 29480.496827: cpu_idle: state=4294967295 cpu_id=0
23909          <idle>-0     (-----) [002] dnh5 29480.496843: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23910          <idle>-0     (-----) [000] d..2 29480.496852: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23911     ksoftirqd/0-3     (    3) [000] d.s2 29480.496865: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
23912          <idle>-0     (-----) [002] dnh4 29480.496877: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23913          <idle>-0     (-----) [002] dnh5 29480.496912: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23914     ksoftirqd/0-3     (    3) [000] d.s3 29480.496924: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23915     ksoftirqd/0-3     (    3) [000] d..2 29480.496947: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23916          <idle>-0     (-----) [002] .n.1 29480.496964: cpu_idle: state=4294967295 cpu_id=2
23917          <idle>-0     (-----) [002] d..2 29480.496993: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23918 smem_native_cds-87    (   87) [002] d..2 29480.497066: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23919  kworker/u16:10-23868 (23868) [000] d.s4 29480.497146: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23920  kworker/u16:10-23868 (23868) [000] dns5 29480.497166: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
23921  kworker/u16:10-23868 (23868) [000] d..2 29480.497187: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
23922          <idle>-0     (-----) [002] d.H4 29480.497201: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
23923          <idle>-0     (-----) [002] d.H4 29480.497222: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
23924          <idle>-0     (-----) [001] .n.1 29480.497226: cpu_idle: state=4294967295 cpu_id=1
23925     kworker/0:0-13450 (13450) [000] d..2 29480.497229: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23926          <idle>-0     (-----) [002] d.H5 29480.497244: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
23927          <idle>-0     (-----) [001] d..2 29480.497266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23928          <idle>-0     (-----) [002] d..1 29480.497320: cpu_idle: state=2 cpu_id=2
23929  HwBinder:771_4-20182 (  771) [001] d..2 29480.497344: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23930  HwBinder:771_4-20182 (  771) [001] d..3 29480.497412: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
23931  kworker/u16:10-23868 (23868) [000] d..2 29480.497441: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23932  HwBinder:771_4-20182 (  771) [001] d..2 29480.497456: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23933          <idle>-0     (-----) [000] d..1 29480.497466: cpu_idle: state=2 cpu_id=0
23934          <idle>-0     (-----) [001] d..1 29480.497480: cpu_idle: state=2 cpu_id=1
23935          <idle>-0     (-----) [003] .n.1 29480.497561: cpu_idle: state=4294967295 cpu_id=3
23936          <idle>-0     (-----) [003] d..2 29480.497589: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
23937         sugov:0-559   (  559) [003] d..2 29480.497615: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23938 cdsp_smem_glink-88    (   88) [003] d..2 29480.497687: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23939          <idle>-0     (-----) [003] d..1 29480.497704: cpu_idle: state=2 cpu_id=3
23940          <idle>-0     (-----) [005] dnh2 29480.498278: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
23941          <idle>-0     (-----) [005] .n.1 29480.498287: cpu_idle: state=4294967295 cpu_id=5
23942          <idle>-0     (-----) [005] d..2 29480.498298: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
23943         sugov:4-560   (  560) [005] d..2 29480.498319: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
23944          <idle>-0     (-----) [005] d..1 29480.498329: cpu_idle: state=2 cpu_id=5
23945          <idle>-0     (-----) [005] ...1 29480.501284: cpu_idle: state=4294967295 cpu_id=5
23946          <idle>-0     (-----) [005] d..1 29480.501289: cpu_idle: state=2 cpu_id=5
23947          <idle>-0     (-----) [002] d.h4 29480.501344: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23948          <idle>-0     (-----) [002] dnh5 29480.501386: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23949          <idle>-0     (-----) [002] dnh4 29480.501417: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23950          <idle>-0     (-----) [002] dnh5 29480.501446: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23951          <idle>-0     (-----) [002] .n.1 29480.501495: cpu_idle: state=4294967295 cpu_id=2
23952          <idle>-0     (-----) [002] d..2 29480.501518: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23953 smem_native_cds-87    (   87) [002] d..2 29480.501581: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23954          <idle>-0     (-----) [002] d..2 29480.501588: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23955          <idle>-0     (-----) [002] dn.3 29480.501602: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
23956          <idle>-0     (-----) [002] d..2 29480.501614: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
23957          <idle>-0     (-----) [000] .n.1 29480.501617: cpu_idle: state=4294967295 cpu_id=0
23958     ksoftirqd/2-26    (   26) [002] d..2 29480.501643: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23959          <idle>-0     (-----) [000] d..2 29480.501653: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23960          <idle>-0     (-----) [002] d..1 29480.501663: cpu_idle: state=2 cpu_id=2
23961  HwBinder:771_4-20182 (  771) [000] d..2 29480.501736: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
23962  HwBinder:771_4-20182 (  771) [000] d..3 29480.501802: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23963  HwBinder:771_4-20182 (  771) [000] d..2 29480.501821: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23964 cdsp_smem_glink-88    (   88) [000] d..2 29480.501884: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23965          <idle>-0     (-----) [000] d..1 29480.501906: cpu_idle: state=2 cpu_id=0
23966          <idle>-0     (-----) [002] d.h4 29480.506546: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23967          <idle>-0     (-----) [000] d..2 29480.506547: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23968          <idle>-0     (-----) [000] dn.3 29480.506570: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23969          <idle>-0     (-----) [000] .n.1 29480.506578: cpu_idle: state=4294967295 cpu_id=0
23970          <idle>-0     (-----) [002] dnh5 29480.506587: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23971          <idle>-0     (-----) [000] d..2 29480.506600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
23972     ksoftirqd/0-3     (    3) [000] d.s2 29480.506612: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23973          <idle>-0     (-----) [002] dnh4 29480.506619: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
23974     ksoftirqd/0-3     (    3) [000] d.s3 29480.506641: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23975          <idle>-0     (-----) [002] dnh5 29480.506661: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
23976     ksoftirqd/0-3     (    3) [000] d..2 29480.506667: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23977          <idle>-0     (-----) [002] .n.1 29480.506712: cpu_idle: state=4294967295 cpu_id=2
23978          <idle>-0     (-----) [002] d..2 29480.506739: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
23979 smem_native_cds-87    (   87) [002] d..2 29480.506829: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23980  kworker/u16:10-23868 (23868) [000] d..2 29480.506832: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23981          <idle>-0     (-----) [002] d..1 29480.506849: cpu_idle: state=2 cpu_id=2
23982          <idle>-0     (-----) [000] d..1 29480.506856: cpu_idle: state=2 cpu_id=0
23983          <idle>-0     (-----) [001] .n.1 29480.506975: cpu_idle: state=4294967295 cpu_id=1
23984          <idle>-0     (-----) [001] d..2 29480.507007: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23985  HwBinder:771_4-20182 (  771) [001] d.s2 29480.507102: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
23986  HwBinder:771_4-20182 (  771) [001] d.s3 29480.507159: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
23987  HwBinder:771_4-20182 (  771) [001] d..2 29480.508668: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
23988  HwBinder:771_4-20182 (  771) [001] dn.3 29480.508732: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
23989  HwBinder:771_4-20182 (  771) [001] d..2 29480.508747: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
23990 cdsp_smem_glink-88    (   88) [001] d..2 29480.508796: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
23991  kworker/u16:10-23868 (23868) [001] d..2 29480.508841: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
23992  HwBinder:771_4-20182 (  771) [001] d..2 29480.508882: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23993          <idle>-0     (-----) [001] d..1 29480.508910: cpu_idle: state=2 cpu_id=1
23994          <idle>-0     (-----) [002] d.h4 29480.516711: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23995          <idle>-0     (-----) [000] d..2 29480.516822: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23996          <idle>-0     (-----) [000] dn.3 29480.516949: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
23997          <idle>-0     (-----) [002] dnh5 29480.516950: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
23998          <idle>-0     (-----) [000] .n.1 29480.516997: cpu_idle: state=4294967295 cpu_id=0
23999          <idle>-0     (-----) [002] dnh4 29480.517048: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24000          <idle>-0     (-----) [002] dnh5 29480.517159: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24001          <idle>-0     (-----) [000] dns3 29480.517313: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
24002          <idle>-0     (-----) [001] .n.1 29480.517564: cpu_idle: state=4294967295 cpu_id=1
24003          <idle>-0     (-----) [002] dnh3 29480.517586: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
24004          <idle>-0     (-----) [000] dns4 29480.517644: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24005          <idle>-0     (-----) [002] dnh3 29480.517658: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24006          <idle>-0     (-----) [001] d..2 29480.517679: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24007          <idle>-0     (-----) [002] dnh4 29480.517712: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24008          <idle>-0     (-----) [002] .n.1 29480.517727: cpu_idle: state=4294967295 cpu_id=2
24009          <idle>-0     (-----) [000] d..2 29480.517738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24010          <idle>-0     (-----) [002] d..2 29480.517771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24011     ksoftirqd/0-3     (    3) [000] d..2 29480.517793: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24012 smem_native_cds-87    (   87) [002] d..2 29480.517987: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24013          <idle>-0     (-----) [003] .n.1 29480.518105: cpu_idle: state=4294967295 cpu_id=3
24014          <idle>-0     (-----) [002] d..1 29480.518108: cpu_idle: state=2 cpu_id=2
24015          <idle>-0     (-----) [003] d..2 29480.518161: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24016  HwBinder:771_4-20182 (  771) [001] d..2 29480.518263: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24017         sugov:0-559   (  559) [003] d..2 29480.518265: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24018          <idle>-0     (-----) [003] d..1 29480.518294: cpu_idle: state=2 cpu_id=3
24019  HwBinder:771_4-20182 (  771) [001] d..3 29480.518359: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24020  kworker/u16:10-23868 (23868) [000] d..2 29480.518456: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24021  HwBinder:771_4-20182 (  771) [001] d..2 29480.518487: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24022          <idle>-0     (-----) [001] d..1 29480.518522: cpu_idle: state=2 cpu_id=1
24023 cdsp_smem_glink-88    (   88) [000] d..2 29480.518585: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24024          <idle>-0     (-----) [000] d..1 29480.518616: cpu_idle: state=2 cpu_id=0
24025          <idle>-0     (-----) [005] dnh2 29480.518821: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
24026          <idle>-0     (-----) [005] .n.1 29480.518840: cpu_idle: state=4294967295 cpu_id=5
24027          <idle>-0     (-----) [005] d..2 29480.518864: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24028         sugov:4-560   (  560) [005] d..2 29480.518909: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24029          <idle>-0     (-----) [005] d..1 29480.518932: cpu_idle: state=2 cpu_id=5
24030          <idle>-0     (-----) [002] d.h4 29480.521892: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24031          <idle>-0     (-----) [002] dnh5 29480.521932: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24032          <idle>-0     (-----) [002] dnh4 29480.521965: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24033          <idle>-0     (-----) [002] dnh5 29480.521999: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24034          <idle>-0     (-----) [002] .n.1 29480.522051: cpu_idle: state=4294967295 cpu_id=2
24035          <idle>-0     (-----) [002] d..2 29480.522074: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24036 smem_native_cds-87    (   87) [002] d..2 29480.522138: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24037          <idle>-0     (-----) [002] d..2 29480.522148: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24038          <idle>-0     (-----) [000] .n.1 29480.522180: cpu_idle: state=4294967295 cpu_id=0
24039          <idle>-0     (-----) [002] dn.3 29480.522182: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24040          <idle>-0     (-----) [002] d..2 29480.522198: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24041          <idle>-0     (-----) [000] d..2 29480.522217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24042     ksoftirqd/2-26    (   26) [002] d..2 29480.522253: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24043          <idle>-0     (-----) [002] d..1 29480.522274: cpu_idle: state=2 cpu_id=2
24044  HwBinder:771_4-20182 (  771) [000] d..2 29480.522331: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24045  HwBinder:771_4-20182 (  771) [000] dn.3 29480.522376: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24046  HwBinder:771_4-20182 (  771) [000] d..2 29480.522390: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24047 cdsp_smem_glink-88    (   88) [000] d..2 29480.522442: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24048  HwBinder:771_4-20182 (  771) [000] d..2 29480.522473: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24049          <idle>-0     (-----) [000] d..1 29480.522495: cpu_idle: state=2 cpu_id=0
24050          <idle>-0     (-----) [002] d.h4 29480.527273: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24051          <idle>-0     (-----) [000] d..2 29480.527274: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24052          <idle>-0     (-----) [000] dn.3 29480.527296: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24053          <idle>-0     (-----) [000] .n.1 29480.527302: cpu_idle: state=4294967295 cpu_id=0
24054          <idle>-0     (-----) [002] dnh5 29480.527315: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24055          <idle>-0     (-----) [000] d..2 29480.527325: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24056     ksoftirqd/0-3     (    3) [000] d.s2 29480.527338: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24057          <idle>-0     (-----) [002] dnh4 29480.527352: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24058     ksoftirqd/0-3     (    3) [000] d.s3 29480.527373: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24059          <idle>-0     (-----) [002] dnh5 29480.527397: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24060     ksoftirqd/0-3     (    3) [000] d..2 29480.527407: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24061          <idle>-0     (-----) [002] .n.1 29480.527452: cpu_idle: state=4294967295 cpu_id=2
24062          <idle>-0     (-----) [002] d..2 29480.527478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24063 smem_native_cds-87    (   87) [002] d..2 29480.527571: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24064  kworker/u16:10-23868 (23868) [000] d..2 29480.527578: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24065          <idle>-0     (-----) [002] d..1 29480.527592: cpu_idle: state=2 cpu_id=2
24066          <idle>-0     (-----) [000] d..1 29480.527604: cpu_idle: state=2 cpu_id=0
24067          <idle>-0     (-----) [001] .n.1 29480.527722: cpu_idle: state=4294967295 cpu_id=1
24068          <idle>-0     (-----) [001] d..2 29480.527754: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24069  HwBinder:771_4-20182 (  771) [001] d..2 29480.527835: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24070  HwBinder:771_4-20182 (  771) [001] dn.3 29480.527902: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24071  HwBinder:771_4-20182 (  771) [001] d..2 29480.527917: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24072 cdsp_smem_glink-88    (   88) [001] d..2 29480.527967: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24073  HwBinder:771_4-20182 (  771) [001] d..2 29480.527999: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24074          <idle>-0     (-----) [001] d..1 29480.528021: cpu_idle: state=2 cpu_id=1
24075          <idle>-0     (-----) [001] ...1 29480.531838: cpu_idle: state=4294967295 cpu_id=1
24076          <idle>-0     (-----) [001] d..1 29480.531846: cpu_idle: state=2 cpu_id=1
24077          <idle>-0     (-----) [002] d.h4 29480.531881: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24078          <idle>-0     (-----) [002] dnh5 29480.531920: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24079          <idle>-0     (-----) [002] dnh4 29480.531951: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24080          <idle>-0     (-----) [002] dnh5 29480.531980: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24081          <idle>-0     (-----) [002] .n.1 29480.532031: cpu_idle: state=4294967295 cpu_id=2
24082          <idle>-0     (-----) [002] d..2 29480.532055: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24083 smem_native_cds-87    (   87) [002] d..2 29480.532118: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24084          <idle>-0     (-----) [002] d..2 29480.532126: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24085          <idle>-0     (-----) [002] dn.3 29480.532138: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24086          <idle>-0     (-----) [002] d..2 29480.532150: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24087          <idle>-0     (-----) [000] .n.1 29480.532164: cpu_idle: state=4294967295 cpu_id=0
24088     ksoftirqd/2-26    (   26) [002] d..2 29480.532182: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24089          <idle>-0     (-----) [000] d..2 29480.532201: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24090          <idle>-0     (-----) [002] d..1 29480.532204: cpu_idle: state=2 cpu_id=2
24091  HwBinder:771_4-20182 (  771) [000] d..2 29480.532285: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24092  HwBinder:771_4-20182 (  771) [000] dn.3 29480.532350: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24093  HwBinder:771_4-20182 (  771) [000] d..2 29480.532365: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24094 cdsp_smem_glink-88    (   88) [000] d..2 29480.532415: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24095  HwBinder:771_4-20182 (  771) [000] d..2 29480.532445: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24096          <idle>-0     (-----) [000] d..1 29480.532468: cpu_idle: state=2 cpu_id=0
24097          <idle>-0     (-----) [002] d.h4 29480.537119: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24098          <idle>-0     (-----) [000] d..2 29480.537120: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24099          <idle>-0     (-----) [000] dn.3 29480.537141: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24100          <idle>-0     (-----) [002] dnh5 29480.537222: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24101          <idle>-0     (-----) [000] dnH3 29480.537251: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
24102          <idle>-0     (-----) [002] dnh4 29480.537259: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24103          <idle>-0     (-----) [000] dnH3 29480.537275: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24104          <idle>-0     (-----) [000] dnH4 29480.537294: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24105          <idle>-0     (-----) [002] dnh5 29480.537295: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24106          <idle>-0     (-----) [000] dns3 29480.537309: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24107          <idle>-0     (-----) [000] dns4 29480.537335: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24108          <idle>-0     (-----) [002] .n.1 29480.537350: cpu_idle: state=4294967295 cpu_id=2
24109          <idle>-0     (-----) [000] .n.1 29480.537351: cpu_idle: state=4294967295 cpu_id=0
24110          <idle>-0     (-----) [002] d..2 29480.537374: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24111          <idle>-0     (-----) [000] d..2 29480.537380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24112     ksoftirqd/0-3     (    3) [000] d..2 29480.537397: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24113 smem_native_cds-87    (   87) [002] d..2 29480.537442: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24114          <idle>-0     (-----) [002] d..1 29480.537505: cpu_idle: state=2 cpu_id=2
24115  kworker/u16:10-23868 (23868) [000] d..2 29480.537592: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24116          <idle>-0     (-----) [000] d..1 29480.537615: cpu_idle: state=2 cpu_id=0
24117          <idle>-0     (-----) [003] .n.1 29480.537625: cpu_idle: state=4294967295 cpu_id=3
24118          <idle>-0     (-----) [003] d..2 29480.537652: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24119          <idle>-0     (-----) [001] .n.1 29480.537691: cpu_idle: state=4294967295 cpu_id=1
24120          <idle>-0     (-----) [001] d..2 29480.537724: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24121         sugov:0-559   (  559) [003] .... 29480.537763: clk_set_rate: pwrcl_clk 748800000
24122  HwBinder:771_4-20182 (  771) [001] d..2 29480.537807: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24123         sugov:0-559   (  559) [003] .... 29480.537855: clk_set_rate: cpu3_pwrcl_clk 652800000
24124  HwBinder:771_4-20182 (  771) [001] d..3 29480.537871: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
24125         sugov:0-559   (  559) [003] .... 29480.537876: clk_set_rate: cpu2_pwrcl_clk 652800000
24126         sugov:0-559   (  559) [003] .... 29480.537890: clk_set_rate: cpu1_pwrcl_clk 652800000
24127         sugov:0-559   (  559) [003] .... 29480.537903: clk_set_rate: cpu0_pwrcl_clk 748800000
24128  HwBinder:771_4-20182 (  771) [001] d..2 29480.537907: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24129         sugov:0-559   (  559) [003] .... 29480.537921: cpu_frequency: state=748800 cpu_id=0
24130          <idle>-0     (-----) [001] d..1 29480.537934: cpu_idle: state=2 cpu_id=1
24131         sugov:0-559   (  559) [003] .... 29480.538013: cpu_frequency: state=748800 cpu_id=1
24132         sugov:0-559   (  559) [003] .... 29480.538018: cpu_frequency: state=748800 cpu_id=2
24133         sugov:0-559   (  559) [003] .... 29480.538023: cpu_frequency: state=748800 cpu_id=3
24134         sugov:0-559   (  559) [003] d..2 29480.538053: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24135 cdsp_smem_glink-88    (   88) [003] d..2 29480.538121: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24136          <idle>-0     (-----) [003] d..1 29480.538141: cpu_idle: state=2 cpu_id=3
24137          <idle>-0     (-----) [005] dnh2 29480.538322: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
24138          <idle>-0     (-----) [005] .n.1 29480.538333: cpu_idle: state=4294967295 cpu_id=5
24139          <idle>-0     (-----) [005] d..2 29480.538345: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24140         sugov:4-560   (  560) [005] d..2 29480.538366: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24141          <idle>-0     (-----) [005] d..1 29480.538376: cpu_idle: state=2 cpu_id=5
24142          <idle>-0     (-----) [005] ...1 29480.542111: cpu_idle: state=4294967295 cpu_id=5
24143          <idle>-0     (-----) [005] d..1 29480.542117: cpu_idle: state=2 cpu_id=5
24144          <idle>-0     (-----) [002] d.h4 29480.542161: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24145          <idle>-0     (-----) [002] dnh5 29480.542201: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24146          <idle>-0     (-----) [002] dnh4 29480.542232: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24147          <idle>-0     (-----) [002] dnh5 29480.542262: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24148          <idle>-0     (-----) [002] .n.1 29480.542311: cpu_idle: state=4294967295 cpu_id=2
24149          <idle>-0     (-----) [002] d..2 29480.542332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24150 smem_native_cds-87    (   87) [002] d..2 29480.542389: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24151          <idle>-0     (-----) [002] d..2 29480.542396: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24152          <idle>-0     (-----) [002] dn.3 29480.542409: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24153          <idle>-0     (-----) [002] d..2 29480.542418: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24154          <idle>-0     (-----) [000] .n.1 29480.542436: cpu_idle: state=4294967295 cpu_id=0
24155     ksoftirqd/2-26    (   26) [002] d..2 29480.542444: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24156          <idle>-0     (-----) [002] d..1 29480.542466: cpu_idle: state=2 cpu_id=2
24157          <idle>-0     (-----) [000] d..2 29480.542471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24158  HwBinder:771_4-20182 (  771) [000] d..2 29480.542549: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
24159  HwBinder:771_4-20182 (  771) [000] dn.3 29480.542609: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24160  HwBinder:771_4-20182 (  771) [000] d..2 29480.542621: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24161 cdsp_smem_glink-88    (   88) [000] d..2 29480.542667: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24162  HwBinder:771_4-20182 (  771) [000] d..2 29480.542695: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24163          <idle>-0     (-----) [000] d..1 29480.542715: cpu_idle: state=2 cpu_id=0
24164          <idle>-0     (-----) [002] d.h4 29480.547332: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24165          <idle>-0     (-----) [000] d..2 29480.547332: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24166          <idle>-0     (-----) [000] dn.3 29480.547348: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24167          <idle>-0     (-----) [000] .n.1 29480.547355: cpu_idle: state=4294967295 cpu_id=0
24168          <idle>-0     (-----) [002] dnh5 29480.547372: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24169          <idle>-0     (-----) [000] d..2 29480.547376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24170     ksoftirqd/0-3     (    3) [000] d.s2 29480.547387: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24171          <idle>-0     (-----) [002] dnh4 29480.547406: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24172     ksoftirqd/0-3     (    3) [000] d.s3 29480.547413: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24173          <idle>-0     (-----) [002] dnh5 29480.547446: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24174     ksoftirqd/0-3     (    3) [000] d..2 29480.547447: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24175          <idle>-0     (-----) [002] .n.1 29480.547498: cpu_idle: state=4294967295 cpu_id=2
24176          <idle>-0     (-----) [002] d..2 29480.547522: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24177 smem_native_cds-87    (   87) [002] d..2 29480.547606: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24178          <idle>-0     (-----) [002] d..1 29480.547626: cpu_idle: state=2 cpu_id=2
24179          <idle>-0     (-----) [001] .n.1 29480.547767: cpu_idle: state=4294967295 cpu_id=1
24180          <idle>-0     (-----) [001] d..2 29480.547798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24181  HwBinder:771_4-20182 (  771) [001] d..2 29480.547884: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24182  HwBinder:771_4-20182 (  771) [001] d..3 29480.547919: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24183  HwBinder:771_4-20182 (  771) [001] d..2 29480.547951: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24184          <idle>-0     (-----) [001] d..1 29480.547971: cpu_idle: state=2 cpu_id=1
24185  kworker/u16:10-23868 (23868) [000] d..2 29480.548094: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24186 cdsp_smem_glink-88    (   88) [000] d..2 29480.548153: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24187          <idle>-0     (-----) [000] d..1 29480.548173: cpu_idle: state=2 cpu_id=0
24188          <idle>-0     (-----) [003] d.s3 29480.548478: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24189          <idle>-0     (-----) [003] d.s4 29480.548540: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24190          <idle>-0     (-----) [003] dns4 29480.548555: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24191          <idle>-0     (-----) [003] .n.1 29480.548576: cpu_idle: state=4294967295 cpu_id=3
24192          <idle>-0     (-----) [003] d..2 29480.548596: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24193  kworker/u16:10-23868 (23868) [003] d..2 29480.548746: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24194          <idle>-0     (-----) [003] d..1 29480.548763: cpu_idle: state=2 cpu_id=3
24195          <idle>-0     (-----) [002] d.h4 29480.552746: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24196          <idle>-0     (-----) [002] dnh5 29480.552783: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24197          <idle>-0     (-----) [002] dnh4 29480.552814: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24198          <idle>-0     (-----) [002] dnh5 29480.552840: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24199          <idle>-0     (-----) [002] .n.1 29480.552888: cpu_idle: state=4294967295 cpu_id=2
24200          <idle>-0     (-----) [002] d..2 29480.552909: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24201 smem_native_cds-87    (   87) [002] d..2 29480.552966: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24202          <idle>-0     (-----) [002] d..2 29480.552974: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24203          <idle>-0     (-----) [002] dn.3 29480.552983: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24204          <idle>-0     (-----) [002] d..2 29480.552994: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24205     ksoftirqd/2-26    (   26) [002] d..2 29480.553023: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24206          <idle>-0     (-----) [000] .n.1 29480.553027: cpu_idle: state=4294967295 cpu_id=0
24207          <idle>-0     (-----) [002] d..1 29480.553043: cpu_idle: state=2 cpu_id=2
24208          <idle>-0     (-----) [000] d..2 29480.553060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24209  HwBinder:771_4-20182 (  771) [000] d..2 29480.553135: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24210  HwBinder:771_4-20182 (  771) [000] dn.3 29480.553170: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24211  HwBinder:771_4-20182 (  771) [000] d..2 29480.553183: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24212 cdsp_smem_glink-88    (   88) [000] d..2 29480.553230: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24213  HwBinder:771_4-20182 (  771) [000] d..2 29480.553256: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24214          <idle>-0     (-----) [000] d..1 29480.553276: cpu_idle: state=2 cpu_id=0
24215          <idle>-0     (-----) [002] d.h4 29480.557894: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24216          <idle>-0     (-----) [000] d..2 29480.557900: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24217          <idle>-0     (-----) [000] dn.3 29480.557920: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24218          <idle>-0     (-----) [002] dnh5 29480.557936: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24219          <idle>-0     (-----) [000] dnH3 29480.558008: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
24220          <idle>-0     (-----) [002] dnh4 29480.558013: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24221          <idle>-0     (-----) [000] dnH3 29480.558026: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24222          <idle>-0     (-----) [000] dnH4 29480.558045: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24223          <idle>-0     (-----) [002] dnh5 29480.558046: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24224          <idle>-0     (-----) [000] dns3 29480.558058: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24225          <idle>-0     (-----) [002] .n.1 29480.558095: cpu_idle: state=4294967295 cpu_id=2
24226          <idle>-0     (-----) [000] dns4 29480.558103: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24227          <idle>-0     (-----) [002] d..2 29480.558117: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24228          <idle>-0     (-----) [000] .n.1 29480.558117: cpu_idle: state=4294967295 cpu_id=0
24229          <idle>-0     (-----) [000] d..2 29480.558144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24230     ksoftirqd/0-3     (    3) [000] d..2 29480.558160: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24231 smem_native_cds-87    (   87) [002] d..2 29480.558180: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24232          <idle>-0     (-----) [002] d..1 29480.558238: cpu_idle: state=2 cpu_id=2
24233  kworker/u16:10-23868 (23868) [000] d..2 29480.558319: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24234          <idle>-0     (-----) [000] d..1 29480.558339: cpu_idle: state=2 cpu_id=0
24235          <idle>-0     (-----) [003] .n.1 29480.558368: cpu_idle: state=4294967295 cpu_id=3
24236          <idle>-0     (-----) [003] d..2 29480.558392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24237          <idle>-0     (-----) [001] .n.1 29480.558429: cpu_idle: state=4294967295 cpu_id=1
24238         sugov:0-559   (  559) [003] d..2 29480.558437: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24239          <idle>-0     (-----) [003] d..1 29480.558453: cpu_idle: state=2 cpu_id=3
24240          <idle>-0     (-----) [001] d..2 29480.558461: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24241  HwBinder:771_4-20182 (  771) [001] d..2 29480.558556: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24242  HwBinder:771_4-20182 (  771) [001] dn.3 29480.558615: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24243  HwBinder:771_4-20182 (  771) [001] d..2 29480.558626: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24244 cdsp_smem_glink-88    (   88) [001] d..2 29480.558670: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24245  HwBinder:771_4-20182 (  771) [001] d..2 29480.558698: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24246          <idle>-0     (-----) [001] d..1 29480.558717: cpu_idle: state=2 cpu_id=1
24247          <idle>-0     (-----) [005] dnh2 29480.559072: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
24248          <idle>-0     (-----) [005] .n.1 29480.559081: cpu_idle: state=4294967295 cpu_id=5
24249          <idle>-0     (-----) [005] d..2 29480.559094: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24250         sugov:4-560   (  560) [005] d..2 29480.559115: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24251          <idle>-0     (-----) [005] d..1 29480.559126: cpu_idle: state=2 cpu_id=5
24252          <idle>-0     (-----) [005] ...1 29480.562868: cpu_idle: state=4294967295 cpu_id=5
24253          <idle>-0     (-----) [005] d..1 29480.562873: cpu_idle: state=2 cpu_id=5
24254          <idle>-0     (-----) [002] d.h4 29480.562917: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24255          <idle>-0     (-----) [002] dnh5 29480.562956: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24256          <idle>-0     (-----) [002] dnh4 29480.562986: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24257          <idle>-0     (-----) [002] dnh5 29480.563015: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24258          <idle>-0     (-----) [002] .n.1 29480.563061: cpu_idle: state=4294967295 cpu_id=2
24259          <idle>-0     (-----) [002] d..2 29480.563083: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24260 smem_native_cds-87    (   87) [002] d..2 29480.563139: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24261          <idle>-0     (-----) [002] d..2 29480.563145: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24262          <idle>-0     (-----) [002] dn.3 29480.563158: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24263          <idle>-0     (-----) [002] d..2 29480.563168: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24264          <idle>-0     (-----) [000] .n.1 29480.563187: cpu_idle: state=4294967295 cpu_id=0
24265     ksoftirqd/2-26    (   26) [002] d.s2 29480.563192: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
24266          <idle>-0     (-----) [000] d..2 29480.563220: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24267     ksoftirqd/2-26    (   26) [002] dns3 29480.563228: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
24268     ksoftirqd/2-26    (   26) [002] d..2 29480.563243: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
24269  HwBinder:771_4-20182 (  771) [000] d..2 29480.563300: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24270  HwBinder:771_4-20182 (  771) [000] d..3 29480.563369: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
24271     kworker/2:2-13636 (13636) [002] d..2 29480.563394: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24272  HwBinder:771_4-20182 (  771) [000] d..2 29480.563408: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24273          <idle>-0     (-----) [000] d..1 29480.563430: cpu_idle: state=2 cpu_id=0
24274 cdsp_smem_glink-88    (   88) [002] d..2 29480.563442: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24275     ksoftirqd/2-26    (   26) [002] d..2 29480.563467: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24276          <idle>-0     (-----) [002] d..1 29480.563490: cpu_idle: state=2 cpu_id=2
24277          <idle>-0     (-----) [002] d.h4 29480.568452: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24278          <idle>-0     (-----) [002] dnh5 29480.568485: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24279          <idle>-0     (-----) [002] dnh4 29480.568518: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24280          <idle>-0     (-----) [002] dnh5 29480.568535: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24281          <idle>-0     (-----) [002] .n.1 29480.568582: cpu_idle: state=4294967295 cpu_id=2
24282          <idle>-0     (-----) [002] d..2 29480.568603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24283 smem_native_cds-87    (   87) [002] d..2 29480.568661: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24284          <idle>-0     (-----) [002] d..2 29480.568668: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24285          <idle>-0     (-----) [002] dn.3 29480.568679: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24286          <idle>-0     (-----) [002] d..2 29480.568689: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24287     ksoftirqd/2-26    (   26) [002] d.s2 29480.568700: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24288     ksoftirqd/2-26    (   26) [002] d.s3 29480.568744: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24289          <idle>-0     (-----) [000] .n.1 29480.568750: cpu_idle: state=4294967295 cpu_id=0
24290     ksoftirqd/2-26    (   26) [002] d..2 29480.568765: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24291          <idle>-0     (-----) [000] d..2 29480.568786: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24292  HwBinder:771_4-20182 (  771) [000] d..2 29480.568891: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
24293  HwBinder:771_4-20182 (  771) [000] d..3 29480.568934: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
24294  HwBinder:771_4-20182 (  771) [000] d..2 29480.569005: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24295          <idle>-0     (-----) [000] d..1 29480.569038: cpu_idle: state=2 cpu_id=0
24296  kworker/u16:10-23868 (23868) [002] d..2 29480.569048: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24297 cdsp_smem_glink-88    (   88) [002] d..2 29480.569112: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24298          <idle>-0     (-----) [002] d..1 29480.569135: cpu_idle: state=2 cpu_id=2
24299          <idle>-0     (-----) [002] d.h4 29480.574106: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24300          <idle>-0     (-----) [002] dnh5 29480.574139: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24301          <idle>-0     (-----) [002] dnh4 29480.574172: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24302          <idle>-0     (-----) [002] dnh5 29480.574189: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24303          <idle>-0     (-----) [002] .n.1 29480.574234: cpu_idle: state=4294967295 cpu_id=2
24304          <idle>-0     (-----) [002] d..2 29480.574255: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24305 smem_native_cds-87    (   87) [002] d..2 29480.574315: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24306          <idle>-0     (-----) [002] d..2 29480.574322: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24307          <idle>-0     (-----) [002] dn.3 29480.574333: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24308          <idle>-0     (-----) [002] d..2 29480.574343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24309     ksoftirqd/2-26    (   26) [002] d..2 29480.574373: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24310          <idle>-0     (-----) [002] d..1 29480.574391: cpu_idle: state=2 cpu_id=2
24311          <idle>-0     (-----) [000] .n.1 29480.574398: cpu_idle: state=4294967295 cpu_id=0
24312          <idle>-0     (-----) [000] d..2 29480.574433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24313  HwBinder:771_4-20182 (  771) [000] d..2 29480.574555: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
24314  HwBinder:771_4-20182 (  771) [000] dn.3 29480.574615: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24315  HwBinder:771_4-20182 (  771) [000] d..2 29480.574628: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24316 cdsp_smem_glink-88    (   88) [000] d..2 29480.574675: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24317  HwBinder:771_4-20182 (  771) [000] d..2 29480.574705: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24318          <idle>-0     (-----) [000] d..1 29480.574729: cpu_idle: state=2 cpu_id=0
24319          <idle>-0     (-----) [000] d..2 29480.578592: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24320          <idle>-0     (-----) [002] d.h4 29480.578596: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24321          <idle>-0     (-----) [000] dn.3 29480.578610: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24322          <idle>-0     (-----) [002] dnh5 29480.578679: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24323          <idle>-0     (-----) [000] dnH3 29480.578706: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
24324          <idle>-0     (-----) [002] dnh4 29480.578717: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24325          <idle>-0     (-----) [000] dnH3 29480.578724: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24326          <idle>-0     (-----) [000] dnH4 29480.578742: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24327          <idle>-0     (-----) [002] dnh5 29480.578747: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24328          <idle>-0     (-----) [000] dns3 29480.578756: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24329          <idle>-0     (-----) [002] .n.1 29480.578795: cpu_idle: state=4294967295 cpu_id=2
24330          <idle>-0     (-----) [000] dns4 29480.578806: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24331          <idle>-0     (-----) [002] d..2 29480.578820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24332          <idle>-0     (-----) [000] .n.1 29480.578821: cpu_idle: state=4294967295 cpu_id=0
24333          <idle>-0     (-----) [000] d..2 29480.578848: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24334     ksoftirqd/0-3     (    3) [000] d..2 29480.578863: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24335 smem_native_cds-87    (   87) [002] d..2 29480.578881: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24336          <idle>-0     (-----) [002] d..1 29480.578939: cpu_idle: state=2 cpu_id=2
24337  kworker/u16:10-23868 (23868) [000] d..2 29480.579019: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24338          <idle>-0     (-----) [000] d..1 29480.579040: cpu_idle: state=2 cpu_id=0
24339          <idle>-0     (-----) [003] .n.1 29480.579063: cpu_idle: state=4294967295 cpu_id=3
24340          <idle>-0     (-----) [003] d..2 29480.579089: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24341         sugov:0-559   (  559) [003] .... 29480.579120: clk_set_rate: pwrcl_clk 652800000
24342          <idle>-0     (-----) [001] .n.1 29480.579129: cpu_idle: state=4294967295 cpu_id=1
24343         sugov:0-559   (  559) [003] .... 29480.579133: clk_set_rate: cpu3_pwrcl_clk 748800000
24344         sugov:0-559   (  559) [003] .... 29480.579147: clk_set_rate: cpu2_pwrcl_clk 748800000
24345         sugov:0-559   (  559) [003] .... 29480.579159: clk_set_rate: cpu1_pwrcl_clk 748800000
24346          <idle>-0     (-----) [001] d..2 29480.579162: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24347         sugov:0-559   (  559) [003] .... 29480.579170: clk_set_rate: cpu0_pwrcl_clk 652800000
24348  HwBinder:771_4-20182 (  771) [001] d..2 29480.579255: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24349         sugov:0-559   (  559) [003] .... 29480.579288: cpu_frequency: state=652800 cpu_id=0
24350         sugov:0-559   (  559) [003] .... 29480.579307: cpu_frequency: state=652800 cpu_id=1
24351         sugov:0-559   (  559) [003] .... 29480.579313: cpu_frequency: state=652800 cpu_id=2
24352         sugov:0-559   (  559) [003] .... 29480.579318: cpu_frequency: state=652800 cpu_id=3
24353  HwBinder:771_4-20182 (  771) [001] d..3 29480.579321: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
24354         sugov:0-559   (  559) [003] d..2 29480.579349: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24355  HwBinder:771_4-20182 (  771) [001] d..2 29480.579360: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24356          <idle>-0     (-----) [001] d..1 29480.579383: cpu_idle: state=2 cpu_id=1
24357 cdsp_smem_glink-88    (   88) [003] d..2 29480.579435: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24358          <idle>-0     (-----) [003] d..1 29480.579459: cpu_idle: state=2 cpu_id=3
24359          <idle>-0     (-----) [005] dnh2 29480.579782: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
24360          <idle>-0     (-----) [005] .n.1 29480.579791: cpu_idle: state=4294967295 cpu_id=5
24361          <idle>-0     (-----) [005] d..2 29480.579803: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24362         sugov:4-560   (  560) [005] d..2 29480.579824: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24363          <idle>-0     (-----) [005] d..1 29480.579834: cpu_idle: state=2 cpu_id=5
24364          <idle>-0     (-----) [002] d.h4 29480.584007: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24365          <idle>-0     (-----) [002] dnh5 29480.584042: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24366          <idle>-0     (-----) [002] dnh4 29480.584077: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24367          <idle>-0     (-----) [002] dnh5 29480.584105: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24368          <idle>-0     (-----) [002] .n.1 29480.584155: cpu_idle: state=4294967295 cpu_id=2
24369          <idle>-0     (-----) [002] d..2 29480.584178: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24370 smem_native_cds-87    (   87) [002] d..2 29480.584243: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24371          <idle>-0     (-----) [002] d..2 29480.584250: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24372          <idle>-0     (-----) [002] dn.3 29480.584265: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24373          <idle>-0     (-----) [002] d..2 29480.584277: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24374          <idle>-0     (-----) [000] .n.1 29480.584303: cpu_idle: state=4294967295 cpu_id=0
24375     ksoftirqd/2-26    (   26) [002] d..2 29480.584310: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24376          <idle>-0     (-----) [002] d..1 29480.584331: cpu_idle: state=2 cpu_id=2
24377          <idle>-0     (-----) [000] d..2 29480.584340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24378  HwBinder:771_4-20182 (  771) [000] d..2 29480.584423: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
24379  HwBinder:771_4-20182 (  771) [000] dn.3 29480.584488: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24380  HwBinder:771_4-20182 (  771) [000] d..2 29480.584501: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24381 cdsp_smem_glink-88    (   88) [000] d..2 29480.584548: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24382  HwBinder:771_4-20182 (  771) [000] d..2 29480.584580: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24383          <idle>-0     (-----) [000] d..1 29480.584602: cpu_idle: state=2 cpu_id=0
24384          <idle>-0     (-----) [000] d..2 29480.589252: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24385          <idle>-0     (-----) [002] d.h4 29480.589253: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24386          <idle>-0     (-----) [000] dn.3 29480.589271: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24387          <idle>-0     (-----) [000] .n.1 29480.589276: cpu_idle: state=4294967295 cpu_id=0
24388          <idle>-0     (-----) [002] dnh5 29480.589295: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24389          <idle>-0     (-----) [000] d..2 29480.589301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24390     ksoftirqd/0-3     (    3) [000] d.s2 29480.589314: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24391          <idle>-0     (-----) [002] dnh4 29480.589332: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24392     ksoftirqd/0-3     (    3) [000] d.s3 29480.589347: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24393          <idle>-0     (-----) [002] dnh5 29480.589369: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24394     ksoftirqd/0-3     (    3) [000] d..2 29480.589378: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24395          <idle>-0     (-----) [002] .n.1 29480.589422: cpu_idle: state=4294967295 cpu_id=2
24396          <idle>-0     (-----) [002] d..2 29480.589448: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24397 smem_native_cds-87    (   87) [002] d..2 29480.589538: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24398  kworker/u16:10-23868 (23868) [000] d..2 29480.589544: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24399          <idle>-0     (-----) [002] d..1 29480.589560: cpu_idle: state=2 cpu_id=2
24400          <idle>-0     (-----) [000] d..1 29480.589570: cpu_idle: state=2 cpu_id=0
24401          <idle>-0     (-----) [001] .n.1 29480.589699: cpu_idle: state=4294967295 cpu_id=1
24402          <idle>-0     (-----) [001] d..2 29480.589732: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24403  HwBinder:771_4-20182 (  771) [001] d..2 29480.589809: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24404  HwBinder:771_4-20182 (  771) [001] d..3 29480.589873: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24405  HwBinder:771_4-20182 (  771) [001] d..2 29480.589893: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24406 cdsp_smem_glink-88    (   88) [001] d..2 29480.589958: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24407          <idle>-0     (-----) [001] d..1 29480.589979: cpu_idle: state=2 cpu_id=1
24408          <idle>-0     (-----) [001] ...1 29480.593793: cpu_idle: state=4294967295 cpu_id=1
24409          <idle>-0     (-----) [001] d..1 29480.593802: cpu_idle: state=2 cpu_id=1
24410          <idle>-0     (-----) [002] d.h4 29480.593836: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24411          <idle>-0     (-----) [002] dnh5 29480.593876: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24412          <idle>-0     (-----) [002] dnh4 29480.593909: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24413          <idle>-0     (-----) [002] dnh5 29480.593939: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24414          <idle>-0     (-----) [002] .n.1 29480.593987: cpu_idle: state=4294967295 cpu_id=2
24415          <idle>-0     (-----) [002] d..2 29480.594010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24416 smem_native_cds-87    (   87) [002] d..2 29480.594075: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24417          <idle>-0     (-----) [002] d..2 29480.594083: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24418          <idle>-0     (-----) [002] dn.3 29480.594095: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24419          <idle>-0     (-----) [002] d..2 29480.594106: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24420          <idle>-0     (-----) [000] .n.1 29480.594118: cpu_idle: state=4294967295 cpu_id=0
24421     ksoftirqd/2-26    (   26) [002] d..2 29480.594137: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24422          <idle>-0     (-----) [000] d..2 29480.594156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24423          <idle>-0     (-----) [002] d..1 29480.594158: cpu_idle: state=2 cpu_id=2
24424  HwBinder:771_4-20182 (  771) [000] d..2 29480.594237: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24425  HwBinder:771_4-20182 (  771) [000] d..3 29480.594302: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24426  HwBinder:771_4-20182 (  771) [000] d..2 29480.594321: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24427 cdsp_smem_glink-88    (   88) [000] d..2 29480.594388: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24428          <idle>-0     (-----) [000] d..1 29480.594411: cpu_idle: state=2 cpu_id=0
24429          <idle>-0     (-----) [002] d.h4 29480.599056: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24430          <idle>-0     (-----) [000] d..2 29480.599062: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24431          <idle>-0     (-----) [000] dn.3 29480.599084: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24432          <idle>-0     (-----) [002] dnh5 29480.599101: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24433          <idle>-0     (-----) [000] dnH3 29480.599179: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
24434          <idle>-0     (-----) [002] dnh4 29480.599186: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24435          <idle>-0     (-----) [000] dnH3 29480.599197: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24436          <idle>-0     (-----) [000] dnH4 29480.599215: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24437          <idle>-0     (-----) [002] dnh5 29480.599219: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24438          <idle>-0     (-----) [000] dns3 29480.599231: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24439          <idle>-0     (-----) [000] dns4 29480.599258: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24440          <idle>-0     (-----) [002] .n.1 29480.599271: cpu_idle: state=4294967295 cpu_id=2
24441          <idle>-0     (-----) [000] .n.1 29480.599275: cpu_idle: state=4294967295 cpu_id=0
24442          <idle>-0     (-----) [002] d..2 29480.599295: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24443          <idle>-0     (-----) [000] d..2 29480.599305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24444     ksoftirqd/0-3     (    3) [000] d..2 29480.599322: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24445 smem_native_cds-87    (   87) [002] d..2 29480.599362: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24446          <idle>-0     (-----) [002] d..1 29480.599425: cpu_idle: state=2 cpu_id=2
24447          <idle>-0     (-----) [003] .n.1 29480.599549: cpu_idle: state=4294967295 cpu_id=3
24448          <idle>-0     (-----) [003] d..2 29480.599574: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24449          <idle>-0     (-----) [001] .n.1 29480.599614: cpu_idle: state=4294967295 cpu_id=1
24450         sugov:0-559   (  559) [003] d..2 29480.599622: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24451          <idle>-0     (-----) [003] d..1 29480.599640: cpu_idle: state=2 cpu_id=3
24452          <idle>-0     (-----) [001] d..2 29480.599649: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24453  kworker/u16:10-23868 (23868) [000] d..2 29480.599760: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24454          <idle>-0     (-----) [000] d..1 29480.599783: cpu_idle: state=2 cpu_id=0
24455  HwBinder:771_4-20182 (  771) [001] d..2 29480.599835: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24456  HwBinder:771_4-20182 (  771) [001] d..3 29480.599900: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24457  HwBinder:771_4-20182 (  771) [001] d..2 29480.599920: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24458 cdsp_smem_glink-88    (   88) [001] d..2 29480.599983: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24459          <idle>-0     (-----) [001] d..1 29480.600005: cpu_idle: state=2 cpu_id=1
24460          <idle>-0     (-----) [003] d.s3 29480.600139: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24461          <idle>-0     (-----) [003] d.s4 29480.600193: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
24462          <idle>-0     (-----) [003] dns4 29480.600202: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24463          <idle>-0     (-----) [003] .n.1 29480.600215: cpu_idle: state=4294967295 cpu_id=3
24464          <idle>-0     (-----) [003] d..2 29480.600235: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24465          <idle>-0     (-----) [005] dnh2 29480.600263: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
24466          <idle>-0     (-----) [005] .n.1 29480.600274: cpu_idle: state=4294967295 cpu_id=5
24467  kworker/u16:10-23868 (23868) [003] d..2 29480.600285: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24468          <idle>-0     (-----) [005] d..2 29480.600290: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24469          <idle>-0     (-----) [003] d..1 29480.600304: cpu_idle: state=2 cpu_id=3
24470         sugov:4-560   (  560) [005] d..2 29480.600313: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24471          <idle>-0     (-----) [005] d..1 29480.600325: cpu_idle: state=2 cpu_id=5
24472          <idle>-0     (-----) [005] ...1 29480.604212: cpu_idle: state=4294967295 cpu_id=5
24473          <idle>-0     (-----) [005] d..1 29480.604218: cpu_idle: state=2 cpu_id=5
24474          <idle>-0     (-----) [002] d.h4 29480.604261: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24475          <idle>-0     (-----) [002] dnh5 29480.604298: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24476          <idle>-0     (-----) [002] dnh4 29480.604332: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24477          <idle>-0     (-----) [002] dnh5 29480.604360: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24478          <idle>-0     (-----) [002] .n.1 29480.604412: cpu_idle: state=4294967295 cpu_id=2
24479          <idle>-0     (-----) [002] d..2 29480.604435: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24480 smem_native_cds-87    (   87) [002] d..2 29480.604498: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24481          <idle>-0     (-----) [002] d..2 29480.604509: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24482          <idle>-0     (-----) [002] dn.3 29480.604524: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24483          <idle>-0     (-----) [002] d..2 29480.604536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24484          <idle>-0     (-----) [000] .n.1 29480.604553: cpu_idle: state=4294967295 cpu_id=0
24485     ksoftirqd/2-26    (   26) [002] d..2 29480.604566: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24486          <idle>-0     (-----) [002] d..1 29480.604587: cpu_idle: state=2 cpu_id=2
24487          <idle>-0     (-----) [000] d..2 29480.604589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24488  HwBinder:771_4-20182 (  771) [000] d..2 29480.604669: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24489  HwBinder:771_4-20182 (  771) [000] d..3 29480.604733: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24490  HwBinder:771_4-20182 (  771) [000] d..2 29480.604753: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24491 cdsp_smem_glink-88    (   88) [000] d..2 29480.604818: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24492          <idle>-0     (-----) [000] d..1 29480.604840: cpu_idle: state=2 cpu_id=0
24493          <idle>-0     (-----) [000] d..2 29480.609489: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24494          <idle>-0     (-----) [002] d.h4 29480.609492: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24495          <idle>-0     (-----) [000] dn.3 29480.609508: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24496          <idle>-0     (-----) [000] .n.1 29480.609516: cpu_idle: state=4294967295 cpu_id=0
24497          <idle>-0     (-----) [002] dnh5 29480.609533: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24498          <idle>-0     (-----) [000] d..2 29480.609541: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24499     ksoftirqd/0-3     (    3) [000] d.s2 29480.609552: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24500          <idle>-0     (-----) [002] dnh4 29480.609571: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24501          <idle>-0     (-----) [002] dnh5 29480.609605: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24502     ksoftirqd/0-3     (    3) [000] d.s3 29480.609614: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24503     ksoftirqd/0-3     (    3) [000] d..2 29480.609635: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24504          <idle>-0     (-----) [002] .n.1 29480.609658: cpu_idle: state=4294967295 cpu_id=2
24505          <idle>-0     (-----) [002] d..2 29480.609685: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24506 smem_native_cds-87    (   87) [002] d..2 29480.609752: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24507          <idle>-0     (-----) [002] d..1 29480.609813: cpu_idle: state=2 cpu_id=2
24508  kworker/u16:10-23868 (23868) [000] d..2 29480.609845: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24509          <idle>-0     (-----) [000] d..1 29480.609869: cpu_idle: state=2 cpu_id=0
24510          <idle>-0     (-----) [001] .n.1 29480.609929: cpu_idle: state=4294967295 cpu_id=1
24511          <idle>-0     (-----) [001] d..2 29480.609962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24512  HwBinder:771_4-20182 (  771) [001] d..2 29480.610042: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24513  HwBinder:771_4-20182 (  771) [001] d..3 29480.610108: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24514  HwBinder:771_4-20182 (  771) [001] d..2 29480.610128: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24515 cdsp_smem_glink-88    (   88) [001] d..2 29480.610195: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24516          <idle>-0     (-----) [001] d..1 29480.610215: cpu_idle: state=2 cpu_id=1
24517          <idle>-0     (-----) [001] ...1 29480.614044: cpu_idle: state=4294967295 cpu_id=1
24518          <idle>-0     (-----) [001] d..1 29480.614053: cpu_idle: state=2 cpu_id=1
24519          <idle>-0     (-----) [002] d.h4 29480.614086: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24520          <idle>-0     (-----) [002] dnh5 29480.614126: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24521          <idle>-0     (-----) [002] dnh4 29480.614160: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24522          <idle>-0     (-----) [002] dnh5 29480.614190: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24523          <idle>-0     (-----) [002] .n.1 29480.614241: cpu_idle: state=4294967295 cpu_id=2
24524          <idle>-0     (-----) [002] d..2 29480.614264: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24525 smem_native_cds-87    (   87) [002] d..2 29480.614328: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24526          <idle>-0     (-----) [002] d..2 29480.614334: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24527          <idle>-0     (-----) [002] dn.3 29480.614346: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24528          <idle>-0     (-----) [002] d..2 29480.614358: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24529          <idle>-0     (-----) [000] .n.1 29480.614372: cpu_idle: state=4294967295 cpu_id=0
24530     ksoftirqd/2-26    (   26) [002] d..2 29480.614389: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24531          <idle>-0     (-----) [000] d..2 29480.614408: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24532          <idle>-0     (-----) [002] d..1 29480.614409: cpu_idle: state=2 cpu_id=2
24533  HwBinder:771_4-20182 (  771) [000] d..2 29480.614489: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24534  HwBinder:771_4-20182 (  771) [000] d..3 29480.614554: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24535  HwBinder:771_4-20182 (  771) [000] d..2 29480.614574: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24536 cdsp_smem_glink-88    (   88) [000] d..2 29480.614641: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24537          <idle>-0     (-----) [000] d..1 29480.614663: cpu_idle: state=2 cpu_id=0
24538          <idle>-0     (-----) [002] d.h4 29480.619308: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24539          <idle>-0     (-----) [000] d..2 29480.619310: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24540          <idle>-0     (-----) [000] dn.3 29480.619331: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24541          <idle>-0     (-----) [002] dnh5 29480.619355: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24542          <idle>-0     (-----) [000] dnH3 29480.619434: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
24543          <idle>-0     (-----) [002] dnh4 29480.619440: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24544          <idle>-0     (-----) [000] dnH3 29480.619453: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24545          <idle>-0     (-----) [000] dnH4 29480.619471: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24546          <idle>-0     (-----) [002] dnh5 29480.619475: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24547          <idle>-0     (-----) [000] dns3 29480.619486: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24548          <idle>-0     (-----) [000] dns4 29480.619512: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24549          <idle>-0     (-----) [000] .n.1 29480.619527: cpu_idle: state=4294967295 cpu_id=0
24550          <idle>-0     (-----) [002] .n.1 29480.619531: cpu_idle: state=4294967295 cpu_id=2
24551          <idle>-0     (-----) [000] d..2 29480.619550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24552          <idle>-0     (-----) [002] d..2 29480.619560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24553     ksoftirqd/0-3     (    3) [000] d..2 29480.619567: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24554 smem_native_cds-87    (   87) [002] d..2 29480.619629: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24555          <idle>-0     (-----) [002] d..1 29480.619691: cpu_idle: state=2 cpu_id=2
24556  kworker/u16:10-23868 (23868) [000] d..2 29480.619778: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24557          <idle>-0     (-----) [003] .n.1 29480.619795: cpu_idle: state=4294967295 cpu_id=3
24558          <idle>-0     (-----) [000] d..1 29480.619802: cpu_idle: state=2 cpu_id=0
24559          <idle>-0     (-----) [003] d..2 29480.619822: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24560         sugov:0-559   (  559) [003] d..2 29480.619869: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24561          <idle>-0     (-----) [001] .n.1 29480.619873: cpu_idle: state=4294967295 cpu_id=1
24562          <idle>-0     (-----) [003] d..1 29480.619888: cpu_idle: state=2 cpu_id=3
24563          <idle>-0     (-----) [001] d..2 29480.619906: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24564  HwBinder:771_4-20182 (  771) [001] d..2 29480.619991: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24565  HwBinder:771_4-20182 (  771) [001] d..3 29480.620055: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24566  HwBinder:771_4-20182 (  771) [001] d..2 29480.620074: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24567 cdsp_smem_glink-88    (   88) [001] d..2 29480.620136: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24568          <idle>-0     (-----) [001] d..1 29480.620158: cpu_idle: state=2 cpu_id=1
24569          <idle>-0     (-----) [005] dnh2 29480.620525: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
24570          <idle>-0     (-----) [005] .n.1 29480.620535: cpu_idle: state=4294967295 cpu_id=5
24571          <idle>-0     (-----) [005] d..2 29480.620549: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24572         sugov:4-560   (  560) [005] d..2 29480.620574: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24573          <idle>-0     (-----) [005] d..2 29480.620579: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
24574          <idle>-0     (-----) [005] dn.3 29480.620592: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
24575          <idle>-0     (-----) [005] d..2 29480.620601: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/5 next_pid=50 next_prio=120
24576     ksoftirqd/5-50    (   50) [005] d.s2 29480.620622: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
24577     ksoftirqd/5-50    (   50) [005] d.s3 29480.620643: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
24578     ksoftirqd/5-50    (   50) [005] d..2 29480.620654: sched_switch: prev_comm=ksoftirqd/5 prev_pid=50 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
24579     kworker/5:0-24254 (24254) [005] d..2 29480.620709: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24580          <idle>-0     (-----) [005] d..1 29480.620719: cpu_idle: state=2 cpu_id=5
24581          <idle>-0     (-----) [005] ...1 29480.624457: cpu_idle: state=4294967295 cpu_id=5
24582          <idle>-0     (-----) [005] d..1 29480.624462: cpu_idle: state=2 cpu_id=5
24583          <idle>-0     (-----) [002] d.h4 29480.624510: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24584          <idle>-0     (-----) [002] dnh5 29480.624554: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24585          <idle>-0     (-----) [002] dnh4 29480.624588: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24586          <idle>-0     (-----) [002] dnh5 29480.624619: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24587          <idle>-0     (-----) [002] .n.1 29480.624668: cpu_idle: state=4294967295 cpu_id=2
24588          <idle>-0     (-----) [002] d..2 29480.624691: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24589 smem_native_cds-87    (   87) [002] d..2 29480.624754: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24590          <idle>-0     (-----) [002] d..2 29480.624759: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24591          <idle>-0     (-----) [002] dn.3 29480.624773: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24592          <idle>-0     (-----) [000] .n.1 29480.624783: cpu_idle: state=4294967295 cpu_id=0
24593          <idle>-0     (-----) [002] d..2 29480.624785: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24594     ksoftirqd/2-26    (   26) [002] d..2 29480.624813: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24595          <idle>-0     (-----) [000] d..2 29480.624818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24596          <idle>-0     (-----) [002] d..1 29480.624833: cpu_idle: state=2 cpu_id=2
24597  HwBinder:771_4-20182 (  771) [000] d..2 29480.624897: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24598  HwBinder:771_4-20182 (  771) [000] d..3 29480.624967: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24599  HwBinder:771_4-20182 (  771) [000] d..2 29480.624985: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24600 cdsp_smem_glink-88    (   88) [000] d..2 29480.625047: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24601          <idle>-0     (-----) [000] d..1 29480.625070: cpu_idle: state=2 cpu_id=0
24602          <idle>-0     (-----) [000] d..2 29480.628942: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24603          <idle>-0     (-----) [002] d.h4 29480.628950: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24604          <idle>-0     (-----) [000] dn.3 29480.628960: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24605          <idle>-0     (-----) [000] .n.1 29480.628966: cpu_idle: state=4294967295 cpu_id=0
24606          <idle>-0     (-----) [000] d..2 29480.628989: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24607          <idle>-0     (-----) [002] dnh5 29480.628991: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24608     ksoftirqd/0-3     (    3) [000] d.s2 29480.629002: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24609          <idle>-0     (-----) [002] dnh4 29480.629025: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24610     ksoftirqd/0-3     (    3) [000] d.s3 29480.629029: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24611          <idle>-0     (-----) [002] dnh5 29480.629062: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24612     ksoftirqd/0-3     (    3) [000] d..2 29480.629063: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24613          <idle>-0     (-----) [002] .n.1 29480.629113: cpu_idle: state=4294967295 cpu_id=2
24614          <idle>-0     (-----) [002] d..2 29480.629141: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24615 smem_native_cds-87    (   87) [002] d..2 29480.629232: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24616  kworker/u16:10-23868 (23868) [000] d..2 29480.629235: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24617          <idle>-0     (-----) [002] d..1 29480.629252: cpu_idle: state=2 cpu_id=2
24618          <idle>-0     (-----) [000] d..1 29480.629260: cpu_idle: state=2 cpu_id=0
24619          <idle>-0     (-----) [001] .n.1 29480.629391: cpu_idle: state=4294967295 cpu_id=1
24620          <idle>-0     (-----) [001] d..2 29480.629424: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24621  HwBinder:771_4-20182 (  771) [001] d..2 29480.629503: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24622  HwBinder:771_4-20182 (  771) [001] d..3 29480.629568: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24623  HwBinder:771_4-20182 (  771) [001] d..2 29480.629588: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24624 cdsp_smem_glink-88    (   88) [001] d..2 29480.629657: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24625          <idle>-0     (-----) [001] d..1 29480.629678: cpu_idle: state=2 cpu_id=1
24626          <idle>-0     (-----) [002] d.h4 29480.632208: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24627          <idle>-0     (-----) [002] dnh5 29480.632245: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24628          <idle>-0     (-----) [002] .n.1 29480.632263: cpu_idle: state=4294967295 cpu_id=2
24629          <idle>-0     (-----) [002] d..2 29480.632287: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24630 smem_native_cds-87    (   87) [002] d..2 29480.632355: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24631          <idle>-0     (-----) [002] d..2 29480.632362: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24632          <idle>-0     (-----) [002] dn.3 29480.632374: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24633          <idle>-0     (-----) [002] d..2 29480.632385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24634     ksoftirqd/2-26    (   26) [002] d..2 29480.632413: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24635          <idle>-0     (-----) [002] d..1 29480.632432: cpu_idle: state=2 cpu_id=2
24636          <idle>-0     (-----) [002] d.h4 29480.634471: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24637          <idle>-0     (-----) [002] d.h5 29480.634512: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24638          <idle>-0     (-----) [002] d..2 29480.634563: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24639          <idle>-0     (-----) [002] dn.3 29480.634574: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24640          <idle>-0     (-----) [002] .n.1 29480.634580: cpu_idle: state=4294967295 cpu_id=2
24641          <idle>-0     (-----) [002] d..2 29480.634603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24642     ksoftirqd/2-26    (   26) [002] d..2 29480.634650: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24643          <idle>-0     (-----) [002] d..1 29480.634670: cpu_idle: state=2 cpu_id=2
24644          <idle>-0     (-----) [000] .n.1 29480.634861: cpu_idle: state=4294967295 cpu_id=0
24645          <idle>-0     (-----) [000] d..2 29480.634894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24646  HwBinder:771_4-20182 (  771) [000] d.H2 29480.637213: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
24647  HwBinder:771_4-20182 (  771) [000] d.H2 29480.637249: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24648  HwBinder:771_4-20182 (  771) [000] d.H3 29480.637269: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24649  HwBinder:771_4-20182 (  771) [000] d.s2 29480.637280: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24650  HwBinder:771_4-20182 (  771) [000] d.s3 29480.637332: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24651          <idle>-0     (-----) [001] d.s3 29480.637528: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
24652          <idle>-0     (-----) [001] dns4 29480.637568: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
24653          <idle>-0     (-----) [003] .n.1 29480.637597: cpu_idle: state=4294967295 cpu_id=3
24654          <idle>-0     (-----) [001] .n.1 29480.637606: cpu_idle: state=4294967295 cpu_id=1
24655          <idle>-0     (-----) [003] d..2 29480.637627: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24656          <idle>-0     (-----) [001] d..2 29480.637630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
24657         sugov:0-559   (  559) [003] .... 29480.637662: clk_set_rate: pwrcl_clk 748800000
24658         sugov:0-559   (  559) [003] .... 29480.637674: clk_set_rate: cpu3_pwrcl_clk 652800000
24659         sugov:0-559   (  559) [003] .... 29480.637687: clk_set_rate: cpu2_pwrcl_clk 652800000
24660         sugov:0-559   (  559) [003] .... 29480.637698: clk_set_rate: cpu1_pwrcl_clk 652800000
24661         sugov:0-559   (  559) [003] .... 29480.637709: clk_set_rate: cpu0_pwrcl_clk 748800000
24662         sugov:0-559   (  559) [003] .... 29480.637722: cpu_frequency: state=748800 cpu_id=0
24663         sugov:0-559   (  559) [003] .... 29480.637741: cpu_frequency: state=748800 cpu_id=1
24664         sugov:0-559   (  559) [003] .... 29480.637747: cpu_frequency: state=748800 cpu_id=2
24665         sugov:0-559   (  559) [003] .... 29480.637752: cpu_frequency: state=748800 cpu_id=3
24666         sugov:0-559   (  559) [003] d..2 29480.637777: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24667     kworker/1:1-13678 (13678) [001] d..2 29480.637923: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24668          <idle>-0     (-----) [001] d..1 29480.637943: cpu_idle: state=2 cpu_id=1
24669  kworker/u16:10-23868 (23868) [003] d..2 29480.638014: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24670          <idle>-0     (-----) [003] d..1 29480.638037: cpu_idle: state=2 cpu_id=3
24671          <idle>-0     (-----) [006] dnh2 29480.638362: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
24672          <idle>-0     (-----) [006] .n.1 29480.638383: cpu_idle: state=4294967295 cpu_id=6
24673          <idle>-0     (-----) [006] d..2 29480.638401: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24674         sugov:4-560   (  560) [006] d..2 29480.638430: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24675          <idle>-0     (-----) [006] d..1 29480.638449: cpu_idle: state=2 cpu_id=6
24676  HwBinder:771_4-20182 (  771) [000] d.h2 29480.638656: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
24677  HwBinder:771_4-20182 (  771) [000] dnh3 29480.638698: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
24678  HwBinder:771_4-20182 (  771) [000] d..2 29480.638745: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
24679     kworker/0:0-13450 (13450) [000] d..2 29480.638768: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
24680     kworker/0:0-13450 (13450) [000] d..3 29480.638779: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
24681     kworker/0:0-13450 (13450) [000] d..3 29480.638793: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
24682     kworker/0:0-13450 (13450) [000] d..2 29480.638811: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24683          <idle>-0     (-----) [001] .n.1 29480.639096: cpu_idle: state=4294967295 cpu_id=1
24684          <idle>-0     (-----) [001] d..2 29480.639128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
24685  HwBinder:771_4-20182 (  771) [000] d..2 29480.639289: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24686     kworker/1:1-13678 (13678) [001] d..2 29480.639318: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24687  HwBinder:771_4-20182 (  771) [000] d..3 29480.639337: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24688          <idle>-0     (-----) [001] d..2 29480.639356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24689  HwBinder:771_4-20182 (  771) [000] d..2 29480.639378: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24690 cdsp_smem_glink-88    (   88) [001] d..2 29480.639418: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24691          <idle>-0     (-----) [000] d..1 29480.639422: cpu_idle: state=2 cpu_id=0
24692          <idle>-0     (-----) [001] d..1 29480.639436: cpu_idle: state=2 cpu_id=1
24693          <idle>-0     (-----) [001] ...1 29480.644003: cpu_idle: state=4294967295 cpu_id=1
24694          <idle>-0     (-----) [001] d..1 29480.644012: cpu_idle: state=2 cpu_id=1
24695          <idle>-0     (-----) [002] d.h4 29480.644040: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24696          <idle>-0     (-----) [002] dnh5 29480.644077: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24697          <idle>-0     (-----) [002] .n.1 29480.644094: cpu_idle: state=4294967295 cpu_id=2
24698          <idle>-0     (-----) [002] d..2 29480.644115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24699 smem_native_cds-87    (   87) [002] d..2 29480.644174: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24700          <idle>-0     (-----) [002] d..2 29480.644180: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24701          <idle>-0     (-----) [002] dn.3 29480.644193: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24702          <idle>-0     (-----) [002] d..2 29480.644203: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24703     ksoftirqd/2-26    (   26) [002] d..2 29480.644227: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24704          <idle>-0     (-----) [002] d..1 29480.644245: cpu_idle: state=2 cpu_id=2
24705          <idle>-0     (-----) [000] ...1 29480.644325: cpu_idle: state=4294967295 cpu_id=0
24706          <idle>-0     (-----) [000] d..1 29480.644338: cpu_idle: state=2 cpu_id=0
24707          <idle>-0     (-----) [002] d.h4 29480.648092: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24708          <idle>-0     (-----) [002] d.h5 29480.648123: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24709          <idle>-0     (-----) [002] d..2 29480.648172: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24710          <idle>-0     (-----) [002] dn.3 29480.648183: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24711          <idle>-0     (-----) [002] .n.1 29480.648189: cpu_idle: state=4294967295 cpu_id=2
24712          <idle>-0     (-----) [002] d..2 29480.648210: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24713     ksoftirqd/2-26    (   26) [002] d.s2 29480.648224: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
24714     ksoftirqd/2-26    (   26) [002] d.s3 29480.648271: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24715     ksoftirqd/2-26    (   26) [002] d..2 29480.648291: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24716          <idle>-0     (-----) [000] .n.1 29480.648493: cpu_idle: state=4294967295 cpu_id=0
24717  kworker/u16:10-23868 (23868) [002] d..2 29480.648516: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24718          <idle>-0     (-----) [000] d..2 29480.648526: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24719          <idle>-0     (-----) [002] d..1 29480.648538: cpu_idle: state=2 cpu_id=2
24720  HwBinder:771_4-20182 (  771) [000] d..2 29480.648769: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24721  HwBinder:771_4-20182 (  771) [000] d..3 29480.648831: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24722  HwBinder:771_4-20182 (  771) [000] d..2 29480.648849: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24723 cdsp_smem_glink-88    (   88) [000] d..2 29480.648909: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24724          <idle>-0     (-----) [000] d..1 29480.648935: cpu_idle: state=2 cpu_id=0
24725          <idle>-0     (-----) [002] d.h4 29480.652680: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24726          <idle>-0     (-----) [002] dnh5 29480.652719: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24727          <idle>-0     (-----) [002] dnh4 29480.652751: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24728          <idle>-0     (-----) [002] dnh5 29480.652769: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24729          <idle>-0     (-----) [002] .n.1 29480.652815: cpu_idle: state=4294967295 cpu_id=2
24730          <idle>-0     (-----) [002] d..2 29480.652837: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24731 smem_native_cds-87    (   87) [002] d..2 29480.652895: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24732          <idle>-0     (-----) [002] d..2 29480.652901: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24733          <idle>-0     (-----) [002] dn.3 29480.652911: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24734          <idle>-0     (-----) [002] d..2 29480.652921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24735     ksoftirqd/2-26    (   26) [002] d..2 29480.652947: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24736          <idle>-0     (-----) [002] d..1 29480.652964: cpu_idle: state=2 cpu_id=2
24737          <idle>-0     (-----) [000] .n.1 29480.653101: cpu_idle: state=4294967295 cpu_id=0
24738          <idle>-0     (-----) [000] d..2 29480.653132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24739  HwBinder:771_4-20182 (  771) [000] d..2 29480.653209: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24740  HwBinder:771_4-20182 (  771) [000] d..3 29480.653242: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24741  HwBinder:771_4-20182 (  771) [000] d..2 29480.653261: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24742 cdsp_smem_glink-88    (   88) [000] d..2 29480.653322: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24743          <idle>-0     (-----) [000] d..1 29480.653342: cpu_idle: state=2 cpu_id=0
24744          <idle>-0     (-----) [002] d.h4 29480.657953: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24745          <idle>-0     (-----) [000] d..2 29480.657957: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24746          <idle>-0     (-----) [000] dn.3 29480.657977: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24747          <idle>-0     (-----) [002] dnh5 29480.657996: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24748          <idle>-0     (-----) [000] dnH3 29480.658070: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
24749          <idle>-0     (-----) [002] dnh4 29480.658075: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24750          <idle>-0     (-----) [000] dnH3 29480.658087: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24751          <idle>-0     (-----) [000] dnH4 29480.658105: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24752          <idle>-0     (-----) [002] dnh5 29480.658108: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24753          <idle>-0     (-----) [000] dns3 29480.658120: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
24754          <idle>-0     (-----) [002] .n.1 29480.658157: cpu_idle: state=4294967295 cpu_id=2
24755          <idle>-0     (-----) [000] dns4 29480.658167: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24756          <idle>-0     (-----) [002] d..2 29480.658181: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24757          <idle>-0     (-----) [000] .n.1 29480.658182: cpu_idle: state=4294967295 cpu_id=0
24758          <idle>-0     (-----) [000] d..2 29480.658210: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24759     ksoftirqd/0-3     (    3) [000] d..2 29480.658226: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24760 smem_native_cds-87    (   87) [002] d..2 29480.658242: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24761          <idle>-0     (-----) [002] d..1 29480.658302: cpu_idle: state=2 cpu_id=2
24762  kworker/u16:10-23868 (23868) [000] d..2 29480.658381: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24763          <idle>-0     (-----) [000] d..1 29480.658402: cpu_idle: state=2 cpu_id=0
24764          <idle>-0     (-----) [003] .n.1 29480.658419: cpu_idle: state=4294967295 cpu_id=3
24765          <idle>-0     (-----) [003] d..2 29480.658444: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24766         sugov:0-559   (  559) [003] d..2 29480.658488: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24767          <idle>-0     (-----) [001] .n.1 29480.658495: cpu_idle: state=4294967295 cpu_id=1
24768          <idle>-0     (-----) [003] d..1 29480.658505: cpu_idle: state=2 cpu_id=3
24769          <idle>-0     (-----) [001] d..2 29480.658527: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24770  HwBinder:771_4-20182 (  771) [001] d..2 29480.658597: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24771  HwBinder:771_4-20182 (  771) [001] d..3 29480.658657: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24772  HwBinder:771_4-20182 (  771) [001] d..2 29480.658674: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24773 cdsp_smem_glink-88    (   88) [001] d..2 29480.658732: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24774          <idle>-0     (-----) [001] d..1 29480.658752: cpu_idle: state=2 cpu_id=1
24775          <idle>-0     (-----) [006] dnh2 29480.659135: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
24776          <idle>-0     (-----) [006] .n.1 29480.659144: cpu_idle: state=4294967295 cpu_id=6
24777          <idle>-0     (-----) [006] d..2 29480.659157: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24778         sugov:4-560   (  560) [006] d..2 29480.659177: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24779          <idle>-0     (-----) [006] d..1 29480.659187: cpu_idle: state=2 cpu_id=6
24780          <idle>-0     (-----) [006] ...1 29480.662932: cpu_idle: state=4294967295 cpu_id=6
24781          <idle>-0     (-----) [006] d..1 29480.662937: cpu_idle: state=2 cpu_id=6
24782          <idle>-0     (-----) [002] d.h4 29480.662982: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24783          <idle>-0     (-----) [002] dnh5 29480.663020: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24784          <idle>-0     (-----) [002] dnh4 29480.663052: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24785          <idle>-0     (-----) [002] dnh5 29480.663078: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24786          <idle>-0     (-----) [002] .n.1 29480.663126: cpu_idle: state=4294967295 cpu_id=2
24787          <idle>-0     (-----) [002] d..2 29480.663148: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24788 smem_native_cds-87    (   87) [002] d..2 29480.663206: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24789          <idle>-0     (-----) [002] d..2 29480.663211: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24790          <idle>-0     (-----) [002] dn.3 29480.663225: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24791          <idle>-0     (-----) [002] d..2 29480.663236: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24792     ksoftirqd/2-26    (   26) [002] d.s2 29480.663247: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
24793     ksoftirqd/2-26    (   26) [002] dns3 29480.663260: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
24794          <idle>-0     (-----) [000] .n.1 29480.663263: cpu_idle: state=4294967295 cpu_id=0
24795     ksoftirqd/2-26    (   26) [002] d..2 29480.663272: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
24796          <idle>-0     (-----) [000] d..2 29480.663296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24797     kworker/2:2-13636 (13636) [002] d..2 29480.663315: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24798     ksoftirqd/2-26    (   26) [002] d..2 29480.663337: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24799          <idle>-0     (-----) [002] d..1 29480.663358: cpu_idle: state=2 cpu_id=2
24800  HwBinder:771_4-20182 (  771) [000] d..2 29480.663370: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24801  HwBinder:771_4-20182 (  771) [000] d..3 29480.663432: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24802  HwBinder:771_4-20182 (  771) [000] d..2 29480.663450: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24803 cdsp_smem_glink-88    (   88) [000] d..2 29480.663511: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24804          <idle>-0     (-----) [000] d..1 29480.663531: cpu_idle: state=2 cpu_id=0
24805          <idle>-0     (-----) [000] d..2 29480.668143: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24806          <idle>-0     (-----) [002] d.h4 29480.668146: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24807          <idle>-0     (-----) [000] dn.3 29480.668160: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24808          <idle>-0     (-----) [000] .n.1 29480.668166: cpu_idle: state=4294967295 cpu_id=0
24809          <idle>-0     (-----) [002] dnh5 29480.668184: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24810          <idle>-0     (-----) [000] d..2 29480.668187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24811     ksoftirqd/0-3     (    3) [000] d.s2 29480.668197: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24812          <idle>-0     (-----) [002] dnh4 29480.668218: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24813     ksoftirqd/0-3     (    3) [000] d.s3 29480.668224: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24814     ksoftirqd/0-3     (    3) [000] d..2 29480.668249: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24815          <idle>-0     (-----) [002] dnh5 29480.668271: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24816          <idle>-0     (-----) [002] .n.1 29480.668318: cpu_idle: state=4294967295 cpu_id=2
24817          <idle>-0     (-----) [002] d..2 29480.668343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24818  kworker/u16:10-23868 (23868) [000] d..2 29480.668364: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24819          <idle>-0     (-----) [000] d..1 29480.668385: cpu_idle: state=2 cpu_id=0
24820 smem_native_cds-87    (   87) [002] d..2 29480.668402: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24821          <idle>-0     (-----) [002] d..1 29480.668425: cpu_idle: state=2 cpu_id=2
24822          <idle>-0     (-----) [001] .n.1 29480.668604: cpu_idle: state=4294967295 cpu_id=1
24823          <idle>-0     (-----) [001] d..2 29480.668635: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24824  HwBinder:771_4-20182 (  771) [001] d..2 29480.668707: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24825  HwBinder:771_4-20182 (  771) [001] d..3 29480.668769: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24826  HwBinder:771_4-20182 (  771) [001] d..2 29480.668786: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24827 cdsp_smem_glink-88    (   88) [001] d..2 29480.668846: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24828          <idle>-0     (-----) [001] d..1 29480.668866: cpu_idle: state=2 cpu_id=1
24829          <idle>-0     (-----) [001] ...1 29480.672680: cpu_idle: state=4294967295 cpu_id=1
24830          <idle>-0     (-----) [001] d..1 29480.672688: cpu_idle: state=2 cpu_id=1
24831          <idle>-0     (-----) [002] d.h4 29480.672731: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24832          <idle>-0     (-----) [002] dnh5 29480.672767: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24833          <idle>-0     (-----) [002] dnh4 29480.672799: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24834          <idle>-0     (-----) [002] dnh5 29480.672827: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24835          <idle>-0     (-----) [002] .n.1 29480.672873: cpu_idle: state=4294967295 cpu_id=2
24836          <idle>-0     (-----) [002] d..2 29480.672895: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24837 smem_native_cds-87    (   87) [002] d..2 29480.672953: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24838          <idle>-0     (-----) [002] d..2 29480.672959: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24839          <idle>-0     (-----) [002] dn.3 29480.672969: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24840          <idle>-0     (-----) [002] d..2 29480.672980: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24841          <idle>-0     (-----) [000] .n.1 29480.673002: cpu_idle: state=4294967295 cpu_id=0
24842     ksoftirqd/2-26    (   26) [002] d..2 29480.673008: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24843          <idle>-0     (-----) [002] d..1 29480.673026: cpu_idle: state=2 cpu_id=2
24844          <idle>-0     (-----) [000] d..2 29480.673036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24845  HwBinder:771_4-20182 (  771) [000] d..2 29480.673109: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24846  HwBinder:771_4-20182 (  771) [000] d..3 29480.673168: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24847  HwBinder:771_4-20182 (  771) [000] d..2 29480.673187: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24848 cdsp_smem_glink-88    (   88) [000] d..2 29480.673248: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24849          <idle>-0     (-----) [000] d..1 29480.673268: cpu_idle: state=2 cpu_id=0
24850          <idle>-0     (-----) [002] d.h4 29480.677883: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24851          <idle>-0     (-----) [000] d..2 29480.677888: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24852          <idle>-0     (-----) [000] dn.3 29480.677909: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24853          <idle>-0     (-----) [002] dnh5 29480.677925: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24854          <idle>-0     (-----) [000] dnH3 29480.677999: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
24855          <idle>-0     (-----) [002] dnh4 29480.678004: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24856          <idle>-0     (-----) [000] dns3 29480.678026: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24857          <idle>-0     (-----) [002] dnh5 29480.678037: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24858          <idle>-0     (-----) [000] dns4 29480.678052: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24859          <idle>-0     (-----) [000] .n.1 29480.678064: cpu_idle: state=4294967295 cpu_id=0
24860          <idle>-0     (-----) [002] .n.1 29480.678087: cpu_idle: state=4294967295 cpu_id=2
24861          <idle>-0     (-----) [000] d..2 29480.678089: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24862     ksoftirqd/0-3     (    3) [000] d..2 29480.678105: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24863          <idle>-0     (-----) [002] d..2 29480.678114: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24864 smem_native_cds-87    (   87) [002] d..2 29480.678200: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24865          <idle>-0     (-----) [002] d..1 29480.678219: cpu_idle: state=2 cpu_id=2
24866          <idle>-0     (-----) [001] .n.1 29480.678365: cpu_idle: state=4294967295 cpu_id=1
24867          <idle>-0     (-----) [001] d..2 29480.678394: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24868  HwBinder:771_4-20182 (  771) [001] d..2 29480.678465: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24869  HwBinder:771_4-20182 (  771) [001] d..3 29480.678502: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24870  HwBinder:771_4-20182 (  771) [001] d..2 29480.678535: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24871          <idle>-0     (-----) [001] d..1 29480.678557: cpu_idle: state=2 cpu_id=1
24872          <idle>-0     (-----) [002] ...1 29480.678704: cpu_idle: state=4294967295 cpu_id=2
24873  kworker/u16:10-23868 (23868) [000] d..2 29480.678710: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24874          <idle>-0     (-----) [002] d..1 29480.678716: cpu_idle: state=2 cpu_id=2
24875 cdsp_smem_glink-88    (   88) [000] d..2 29480.678771: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24876          <idle>-0     (-----) [000] d..1 29480.678792: cpu_idle: state=2 cpu_id=0
24877          <idle>-0     (-----) [006] dnh2 29480.679064: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
24878          <idle>-0     (-----) [006] .n.1 29480.679072: cpu_idle: state=4294967295 cpu_id=6
24879          <idle>-0     (-----) [006] d..2 29480.679087: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24880         sugov:4-560   (  560) [006] d..2 29480.679107: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24881          <idle>-0     (-----) [006] d..1 29480.679117: cpu_idle: state=2 cpu_id=6
24882          <idle>-0     (-----) [006] ...1 29480.683038: cpu_idle: state=4294967295 cpu_id=6
24883          <idle>-0     (-----) [006] d..1 29480.683043: cpu_idle: state=2 cpu_id=6
24884          <idle>-0     (-----) [002] d.h4 29480.683088: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24885          <idle>-0     (-----) [002] dnh5 29480.683127: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24886          <idle>-0     (-----) [002] dnh4 29480.683159: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24887          <idle>-0     (-----) [002] dnh5 29480.683186: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24888          <idle>-0     (-----) [002] .n.1 29480.683232: cpu_idle: state=4294967295 cpu_id=2
24889          <idle>-0     (-----) [002] d..2 29480.683254: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24890 smem_native_cds-87    (   87) [002] d..2 29480.683311: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24891          <idle>-0     (-----) [002] d..2 29480.683318: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24892          <idle>-0     (-----) [002] dn.3 29480.683331: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24893          <idle>-0     (-----) [002] d..2 29480.683342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24894          <idle>-0     (-----) [000] .n.1 29480.683362: cpu_idle: state=4294967295 cpu_id=0
24895     ksoftirqd/2-26    (   26) [002] d..2 29480.683369: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24896          <idle>-0     (-----) [002] d..1 29480.683388: cpu_idle: state=2 cpu_id=2
24897          <idle>-0     (-----) [000] d..2 29480.683397: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24898  HwBinder:771_4-20182 (  771) [000] d..2 29480.683471: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24899  HwBinder:771_4-20182 (  771) [000] d..3 29480.683507: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24900  HwBinder:771_4-20182 (  771) [000] d..2 29480.683524: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24901 cdsp_smem_glink-88    (   88) [000] d..2 29480.683582: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24902          <idle>-0     (-----) [000] d..1 29480.683601: cpu_idle: state=2 cpu_id=0
24903          <idle>-0     (-----) [000] d..2 29480.687455: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24904          <idle>-0     (-----) [002] d.h4 29480.687464: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24905          <idle>-0     (-----) [000] dn.3 29480.687472: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24906          <idle>-0     (-----) [000] .n.1 29480.687478: cpu_idle: state=4294967295 cpu_id=0
24907          <idle>-0     (-----) [000] d..2 29480.687498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24908          <idle>-0     (-----) [002] dnh5 29480.687503: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24909     ksoftirqd/0-3     (    3) [000] d.s2 29480.687508: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24910     ksoftirqd/0-3     (    3) [000] d.s3 29480.687534: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24911          <idle>-0     (-----) [002] dnh4 29480.687536: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24912     ksoftirqd/0-3     (    3) [000] d..2 29480.687554: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24913          <idle>-0     (-----) [002] dnh5 29480.687577: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24914          <idle>-0     (-----) [002] .n.1 29480.687623: cpu_idle: state=4294967295 cpu_id=2
24915          <idle>-0     (-----) [002] d..2 29480.687651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24916  kworker/u16:10-23868 (23868) [000] d..2 29480.687669: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24917          <idle>-0     (-----) [000] d..1 29480.687690: cpu_idle: state=2 cpu_id=0
24918 smem_native_cds-87    (   87) [002] d..2 29480.687712: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24919          <idle>-0     (-----) [002] d..1 29480.687735: cpu_idle: state=2 cpu_id=2
24920          <idle>-0     (-----) [001] .n.1 29480.687911: cpu_idle: state=4294967295 cpu_id=1
24921          <idle>-0     (-----) [001] d..2 29480.687940: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24922  HwBinder:771_4-20182 (  771) [001] d..2 29480.688018: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24923  HwBinder:771_4-20182 (  771) [001] d..3 29480.688073: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24924  HwBinder:771_4-20182 (  771) [001] d..2 29480.688091: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24925 cdsp_smem_glink-88    (   88) [001] d..2 29480.688148: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24926          <idle>-0     (-----) [001] d..1 29480.688168: cpu_idle: state=2 cpu_id=1
24927          <idle>-0     (-----) [001] ...1 29480.692745: cpu_idle: state=4294967295 cpu_id=1
24928          <idle>-0     (-----) [001] d..1 29480.692754: cpu_idle: state=2 cpu_id=1
24929          <idle>-0     (-----) [002] d.h4 29480.692784: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24930          <idle>-0     (-----) [002] dnh5 29480.692821: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24931          <idle>-0     (-----) [002] dnh4 29480.692853: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24932          <idle>-0     (-----) [002] dnh5 29480.692880: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24933          <idle>-0     (-----) [002] .n.1 29480.692926: cpu_idle: state=4294967295 cpu_id=2
24934          <idle>-0     (-----) [002] d..2 29480.692947: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24935 smem_native_cds-87    (   87) [002] d..2 29480.693005: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24936          <idle>-0     (-----) [002] d..2 29480.693011: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24937          <idle>-0     (-----) [002] dn.3 29480.693023: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
24938          <idle>-0     (-----) [002] d..2 29480.693034: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
24939          <idle>-0     (-----) [000] .n.1 29480.693064: cpu_idle: state=4294967295 cpu_id=0
24940     ksoftirqd/2-26    (   26) [002] d..2 29480.693067: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24941          <idle>-0     (-----) [002] d..1 29480.693087: cpu_idle: state=2 cpu_id=2
24942          <idle>-0     (-----) [000] d..2 29480.693099: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24943  HwBinder:771_4-20182 (  771) [000] d..2 29480.693174: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
24944  HwBinder:771_4-20182 (  771) [000] d..3 29480.693234: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24945  HwBinder:771_4-20182 (  771) [000] d..2 29480.693253: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24946 cdsp_smem_glink-88    (   88) [000] d..2 29480.693314: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24947          <idle>-0     (-----) [000] d..1 29480.693335: cpu_idle: state=2 cpu_id=0
24948          <idle>-0     (-----) [002] d.h4 29480.697949: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24949          <idle>-0     (-----) [000] d..2 29480.697953: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24950          <idle>-0     (-----) [000] dn.3 29480.697974: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
24951          <idle>-0     (-----) [002] dnh5 29480.697991: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24952          <idle>-0     (-----) [000] dnH3 29480.698065: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
24953          <idle>-0     (-----) [002] dnh4 29480.698072: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24954          <idle>-0     (-----) [000] dnH3 29480.698082: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
24955          <idle>-0     (-----) [000] dnH4 29480.698099: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
24956          <idle>-0     (-----) [002] dnh5 29480.698103: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24957          <idle>-0     (-----) [000] dns3 29480.698114: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24958          <idle>-0     (-----) [000] dns4 29480.698137: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
24959          <idle>-0     (-----) [002] .n.1 29480.698153: cpu_idle: state=4294967295 cpu_id=2
24960          <idle>-0     (-----) [000] .n.1 29480.698155: cpu_idle: state=4294967295 cpu_id=0
24961          <idle>-0     (-----) [002] d..2 29480.698175: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
24962          <idle>-0     (-----) [000] d..2 29480.698181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
24963     ksoftirqd/0-3     (    3) [000] d..2 29480.698196: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
24964 smem_native_cds-87    (   87) [002] d..2 29480.698237: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24965          <idle>-0     (-----) [002] d..1 29480.698295: cpu_idle: state=2 cpu_id=2
24966          <idle>-0     (-----) [003] .n.1 29480.698426: cpu_idle: state=4294967295 cpu_id=3
24967          <idle>-0     (-----) [003] d..2 29480.698450: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
24968  kworker/u16:10-23868 (23868) [000] d..2 29480.698474: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24969         sugov:0-559   (  559) [003] .... 29480.698482: clk_set_rate: pwrcl_clk 652800000
24970          <idle>-0     (-----) [001] .n.1 29480.698492: cpu_idle: state=4294967295 cpu_id=1
24971         sugov:0-559   (  559) [003] .... 29480.698493: clk_set_rate: cpu3_pwrcl_clk 748800000
24972          <idle>-0     (-----) [000] d..1 29480.698496: cpu_idle: state=2 cpu_id=0
24973         sugov:0-559   (  559) [003] .... 29480.698505: clk_set_rate: cpu2_pwrcl_clk 748800000
24974         sugov:0-559   (  559) [003] .... 29480.698518: clk_set_rate: cpu1_pwrcl_clk 748800000
24975          <idle>-0     (-----) [001] d..2 29480.698523: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
24976         sugov:0-559   (  559) [003] .... 29480.698528: clk_set_rate: cpu0_pwrcl_clk 652800000
24977         sugov:0-559   (  559) [003] .... 29480.698594: cpu_frequency: state=652800 cpu_id=0
24978  HwBinder:771_4-20182 (  771) [001] d..2 29480.698606: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
24979         sugov:0-559   (  559) [003] .... 29480.698612: cpu_frequency: state=652800 cpu_id=1
24980         sugov:0-559   (  559) [003] .... 29480.698619: cpu_frequency: state=652800 cpu_id=2
24981         sugov:0-559   (  559) [003] .... 29480.698624: cpu_frequency: state=652800 cpu_id=3
24982         sugov:0-559   (  559) [003] d..2 29480.698674: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24983  HwBinder:771_4-20182 (  771) [001] d..3 29480.698693: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
24984          <idle>-0     (-----) [003] d..2 29480.698709: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
24985  HwBinder:771_4-20182 (  771) [001] d..2 29480.698736: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24986          <idle>-0     (-----) [001] d..1 29480.698764: cpu_idle: state=2 cpu_id=1
24987 cdsp_smem_glink-88    (   88) [003] d..2 29480.698780: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24988          <idle>-0     (-----) [003] d..1 29480.698799: cpu_idle: state=2 cpu_id=3
24989          <idle>-0     (-----) [006] dnh2 29480.699138: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
24990          <idle>-0     (-----) [006] .n.1 29480.699148: cpu_idle: state=4294967295 cpu_id=6
24991          <idle>-0     (-----) [006] d..2 29480.699162: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
24992         sugov:4-560   (  560) [006] d..2 29480.699186: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24993          <idle>-0     (-----) [006] d..1 29480.699196: cpu_idle: state=2 cpu_id=6
24994          <idle>-0     (-----) [002] d.h4 29480.703286: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24995          <idle>-0     (-----) [002] dnh5 29480.703322: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
24996          <idle>-0     (-----) [002] dnh4 29480.703357: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
24997          <idle>-0     (-----) [002] dnh5 29480.703386: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
24998          <idle>-0     (-----) [002] .n.1 29480.703435: cpu_idle: state=4294967295 cpu_id=2
24999          <idle>-0     (-----) [002] d..2 29480.703458: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25000 smem_native_cds-87    (   87) [002] d..2 29480.703522: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25001          <idle>-0     (-----) [002] d..2 29480.703528: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25002          <idle>-0     (-----) [002] dn.3 29480.703543: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25003          <idle>-0     (-----) [002] d..2 29480.703553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25004     ksoftirqd/2-26    (   26) [002] d..2 29480.703583: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25005          <idle>-0     (-----) [000] .n.1 29480.703604: cpu_idle: state=4294967295 cpu_id=0
25006          <idle>-0     (-----) [002] d..1 29480.703604: cpu_idle: state=2 cpu_id=2
25007          <idle>-0     (-----) [000] d..2 29480.703642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25008  HwBinder:771_4-20182 (  771) [000] d..2 29480.703809: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25009  HwBinder:771_4-20182 (  771) [000] d..3 29480.703874: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25010  HwBinder:771_4-20182 (  771) [000] d..2 29480.703894: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25011 cdsp_smem_glink-88    (   88) [000] d..2 29480.703967: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25012          <idle>-0     (-----) [000] d..1 29480.703990: cpu_idle: state=2 cpu_id=0
25013          <idle>-0     (-----) [000] d..2 29480.708632: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25014          <idle>-0     (-----) [002] d.h4 29480.708636: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25015          <idle>-0     (-----) [000] dn.3 29480.708648: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25016          <idle>-0     (-----) [000] .n.1 29480.708654: cpu_idle: state=4294967295 cpu_id=0
25017          <idle>-0     (-----) [000] d..2 29480.708677: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25018          <idle>-0     (-----) [002] dnh5 29480.708678: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25019     ksoftirqd/0-3     (    3) [000] d.s2 29480.708689: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25020          <idle>-0     (-----) [002] dnh4 29480.708715: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25021     ksoftirqd/0-3     (    3) [000] d.s3 29480.708715: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25022          <idle>-0     (-----) [002] dnh5 29480.708750: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25023     ksoftirqd/0-3     (    3) [000] d..2 29480.708751: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25024          <idle>-0     (-----) [002] .n.1 29480.708800: cpu_idle: state=4294967295 cpu_id=2
25025          <idle>-0     (-----) [002] d..2 29480.708827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25026 smem_native_cds-87    (   87) [002] d..2 29480.708919: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25027  kworker/u16:10-23868 (23868) [000] d..2 29480.708922: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25028          <idle>-0     (-----) [002] d..1 29480.708941: cpu_idle: state=2 cpu_id=2
25029          <idle>-0     (-----) [000] d..1 29480.708946: cpu_idle: state=2 cpu_id=0
25030          <idle>-0     (-----) [001] .n.1 29480.709076: cpu_idle: state=4294967295 cpu_id=1
25031          <idle>-0     (-----) [001] d..2 29480.709109: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25032  HwBinder:771_4-20182 (  771) [001] d..2 29480.709193: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25033  HwBinder:771_4-20182 (  771) [001] d..3 29480.709259: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25034  HwBinder:771_4-20182 (  771) [001] d..2 29480.709279: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25035 cdsp_smem_glink-88    (   88) [001] d..2 29480.709341: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25036          <idle>-0     (-----) [001] d..1 29480.709363: cpu_idle: state=2 cpu_id=1
25037          <idle>-0     (-----) [002] d.h4 29480.713121: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25038          <idle>-0     (-----) [002] dnh5 29480.713162: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25039          <idle>-0     (-----) [002] dnh4 29480.713195: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25040          <idle>-0     (-----) [002] dnh5 29480.713224: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25041          <idle>-0     (-----) [002] .n.1 29480.713274: cpu_idle: state=4294967295 cpu_id=2
25042          <idle>-0     (-----) [002] d..2 29480.713297: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25043 smem_native_cds-87    (   87) [002] d..2 29480.713359: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25044          <idle>-0     (-----) [002] d..2 29480.713366: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25045          <idle>-0     (-----) [002] dn.3 29480.713379: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25046          <idle>-0     (-----) [002] d..2 29480.713390: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25047          <idle>-0     (-----) [000] .n.1 29480.713407: cpu_idle: state=4294967295 cpu_id=0
25048     ksoftirqd/2-26    (   26) [002] d..2 29480.713420: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25049          <idle>-0     (-----) [002] d..1 29480.713442: cpu_idle: state=2 cpu_id=2
25050          <idle>-0     (-----) [000] d..2 29480.713444: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25051  HwBinder:771_4-20182 (  771) [000] d..2 29480.713524: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25052  HwBinder:771_4-20182 (  771) [000] d..3 29480.713588: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25053  HwBinder:771_4-20182 (  771) [000] d..2 29480.713608: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25054 cdsp_smem_glink-88    (   88) [000] d..2 29480.713672: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25055          <idle>-0     (-----) [000] d..1 29480.713694: cpu_idle: state=2 cpu_id=0
25056          <idle>-0     (-----) [002] d.h4 29480.718340: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25057          <idle>-0     (-----) [000] d..2 29480.718345: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25058          <idle>-0     (-----) [000] dn.3 29480.718367: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25059          <idle>-0     (-----) [002] dnh5 29480.718385: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25060          <idle>-0     (-----) [000] dnH3 29480.718465: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25061          <idle>-0     (-----) [002] dnh4 29480.718471: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25062          <idle>-0     (-----) [000] dnH3 29480.718485: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25063          <idle>-0     (-----) [000] dnH4 29480.718505: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25064          <idle>-0     (-----) [002] dnh5 29480.718506: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25065          <idle>-0     (-----) [000] dns3 29480.718519: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25066          <idle>-0     (-----) [000] dns4 29480.718546: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25067          <idle>-0     (-----) [002] .n.1 29480.718560: cpu_idle: state=4294967295 cpu_id=2
25068          <idle>-0     (-----) [000] .n.1 29480.718562: cpu_idle: state=4294967295 cpu_id=0
25069          <idle>-0     (-----) [002] d..2 29480.718584: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25070          <idle>-0     (-----) [000] d..2 29480.718590: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25071     ksoftirqd/0-3     (    3) [000] d..2 29480.718607: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25072 smem_native_cds-87    (   87) [002] d..2 29480.718651: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25073          <idle>-0     (-----) [002] d..1 29480.718714: cpu_idle: state=2 cpu_id=2
25074  kworker/u16:10-23868 (23868) [000] d..2 29480.718800: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25075          <idle>-0     (-----) [000] d..1 29480.718823: cpu_idle: state=2 cpu_id=0
25076          <idle>-0     (-----) [003] .n.1 29480.718833: cpu_idle: state=4294967295 cpu_id=3
25077          <idle>-0     (-----) [003] d..2 29480.718860: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25078          <idle>-0     (-----) [001] .n.1 29480.718906: cpu_idle: state=4294967295 cpu_id=1
25079         sugov:0-559   (  559) [003] d..2 29480.718907: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25080          <idle>-0     (-----) [003] d..1 29480.718926: cpu_idle: state=2 cpu_id=3
25081          <idle>-0     (-----) [001] d..2 29480.718940: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25082  HwBinder:771_4-20182 (  771) [001] d..2 29480.719018: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25083  HwBinder:771_4-20182 (  771) [001] d..3 29480.719083: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25084  HwBinder:771_4-20182 (  771) [001] d..2 29480.719101: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25085 cdsp_smem_glink-88    (   88) [001] d..2 29480.719163: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25086          <idle>-0     (-----) [001] d..1 29480.719185: cpu_idle: state=2 cpu_id=1
25087          <idle>-0     (-----) [006] dnh2 29480.719561: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25088          <idle>-0     (-----) [006] .n.1 29480.719571: cpu_idle: state=4294967295 cpu_id=6
25089          <idle>-0     (-----) [006] d..2 29480.719582: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25090         sugov:4-560   (  560) [006] d..2 29480.719603: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25091          <idle>-0     (-----) [006] d..1 29480.719614: cpu_idle: state=2 cpu_id=6
25092          <idle>-0     (-----) [006] ...1 29480.723366: cpu_idle: state=4294967295 cpu_id=6
25093          <idle>-0     (-----) [006] d..1 29480.723371: cpu_idle: state=2 cpu_id=6
25094          <idle>-0     (-----) [002] d.h4 29480.723419: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25095          <idle>-0     (-----) [002] dnh5 29480.723461: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25096          <idle>-0     (-----) [002] dnh4 29480.723494: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25097          <idle>-0     (-----) [002] dnh5 29480.723523: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25098          <idle>-0     (-----) [002] .n.1 29480.723571: cpu_idle: state=4294967295 cpu_id=2
25099          <idle>-0     (-----) [002] d..2 29480.723595: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25100 smem_native_cds-87    (   87) [002] d..2 29480.723660: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25101          <idle>-0     (-----) [002] d..2 29480.723668: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25102          <idle>-0     (-----) [002] dn.3 29480.723683: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25103          <idle>-0     (-----) [002] d..2 29480.723694: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25104          <idle>-0     (-----) [000] .n.1 29480.723703: cpu_idle: state=4294967295 cpu_id=0
25105     ksoftirqd/2-26    (   26) [002] d..2 29480.723724: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25106          <idle>-0     (-----) [000] d..2 29480.723788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25107          <idle>-0     (-----) [002] d..1 29480.723814: cpu_idle: state=2 cpu_id=2
25108  HwBinder:771_4-20182 (  771) [000] d..2 29480.723868: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25109  HwBinder:771_4-20182 (  771) [000] d..3 29480.723932: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25110  HwBinder:771_4-20182 (  771) [000] d..2 29480.723953: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25111 cdsp_smem_glink-88    (   88) [000] d..2 29480.724024: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25112          <idle>-0     (-----) [000] d..1 29480.724046: cpu_idle: state=2 cpu_id=0
25113          <idle>-0     (-----) [000] d..2 29480.727909: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25114          <idle>-0     (-----) [002] d.h4 29480.727918: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25115          <idle>-0     (-----) [000] dn.3 29480.727925: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25116          <idle>-0     (-----) [000] .n.1 29480.727932: cpu_idle: state=4294967295 cpu_id=0
25117          <idle>-0     (-----) [000] d..2 29480.727954: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25118          <idle>-0     (-----) [002] dnh5 29480.727959: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25119     ksoftirqd/0-3     (    3) [000] d.s2 29480.727971: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25120          <idle>-0     (-----) [002] dnh4 29480.727994: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25121     ksoftirqd/0-3     (    3) [000] d.s3 29480.727997: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25122          <idle>-0     (-----) [002] dnh5 29480.728032: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25123     ksoftirqd/0-3     (    3) [000] d..2 29480.728034: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25124          <idle>-0     (-----) [002] .n.1 29480.728083: cpu_idle: state=4294967295 cpu_id=2
25125          <idle>-0     (-----) [002] d..2 29480.728109: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25126 smem_native_cds-87    (   87) [002] d..2 29480.728200: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25127  kworker/u16:10-23868 (23868) [000] d..2 29480.728204: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25128          <idle>-0     (-----) [002] d..1 29480.728223: cpu_idle: state=2 cpu_id=2
25129          <idle>-0     (-----) [000] d..1 29480.728229: cpu_idle: state=2 cpu_id=0
25130          <idle>-0     (-----) [001] .n.1 29480.728359: cpu_idle: state=4294967295 cpu_id=1
25131          <idle>-0     (-----) [001] d..2 29480.728392: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25132  HwBinder:771_4-20182 (  771) [001] d..2 29480.728493: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25133  HwBinder:771_4-20182 (  771) [001] d..3 29480.728557: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25134  HwBinder:771_4-20182 (  771) [001] d..2 29480.728577: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25135 cdsp_smem_glink-88    (   88) [001] d..2 29480.728644: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25136          <idle>-0     (-----) [001] d..1 29480.728666: cpu_idle: state=2 cpu_id=1
25137          <idle>-0     (-----) [001] ...1 29480.733270: cpu_idle: state=4294967295 cpu_id=1
25138          <idle>-0     (-----) [001] d..1 29480.733279: cpu_idle: state=2 cpu_id=1
25139          <idle>-0     (-----) [002] d.h4 29480.733312: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25140          <idle>-0     (-----) [002] dnh5 29480.733351: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25141          <idle>-0     (-----) [002] dnh4 29480.733385: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25142          <idle>-0     (-----) [002] dnh5 29480.733414: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25143          <idle>-0     (-----) [002] .n.1 29480.733464: cpu_idle: state=4294967295 cpu_id=2
25144          <idle>-0     (-----) [002] d..2 29480.733489: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25145 smem_native_cds-87    (   87) [002] d..2 29480.733552: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25146          <idle>-0     (-----) [002] d..2 29480.733559: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25147          <idle>-0     (-----) [002] dn.3 29480.733572: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25148          <idle>-0     (-----) [002] d..2 29480.733583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25149          <idle>-0     (-----) [000] .n.1 29480.733598: cpu_idle: state=4294967295 cpu_id=0
25150     ksoftirqd/2-26    (   26) [002] d..2 29480.733613: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25151          <idle>-0     (-----) [002] d..1 29480.733634: cpu_idle: state=2 cpu_id=2
25152          <idle>-0     (-----) [000] d..2 29480.733635: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25153  HwBinder:771_4-20182 (  771) [000] d..2 29480.733715: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25154  HwBinder:771_4-20182 (  771) [000] d..3 29480.733781: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25155  HwBinder:771_4-20182 (  771) [000] d..2 29480.733856: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25156 cdsp_smem_glink-88    (   88) [000] d..2 29480.733931: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25157          <idle>-0     (-----) [000] d..1 29480.733953: cpu_idle: state=2 cpu_id=0
25158          <idle>-0     (-----) [002] d.h4 29480.738603: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25159          <idle>-0     (-----) [000] d..2 29480.738609: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25160          <idle>-0     (-----) [000] dn.3 29480.738631: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25161          <idle>-0     (-----) [002] dnh5 29480.738650: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25162          <idle>-0     (-----) [000] dnH3 29480.738729: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25163          <idle>-0     (-----) [002] dnh4 29480.738732: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25164          <idle>-0     (-----) [000] dnH3 29480.738749: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25165          <idle>-0     (-----) [000] dnH4 29480.738767: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25166          <idle>-0     (-----) [002] dnh5 29480.738768: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25167          <idle>-0     (-----) [000] dns3 29480.738782: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25168          <idle>-0     (-----) [000] dns4 29480.738808: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25169          <idle>-0     (-----) [002] .n.1 29480.738818: cpu_idle: state=4294967295 cpu_id=2
25170          <idle>-0     (-----) [000] .n.1 29480.738825: cpu_idle: state=4294967295 cpu_id=0
25171          <idle>-0     (-----) [002] d..2 29480.738842: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25172          <idle>-0     (-----) [000] d..2 29480.738854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25173     ksoftirqd/0-3     (    3) [000] d..2 29480.738871: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25174 smem_native_cds-87    (   87) [002] d..2 29480.738908: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25175          <idle>-0     (-----) [002] d..1 29480.738971: cpu_idle: state=2 cpu_id=2
25176  kworker/u16:10-23868 (23868) [000] d..2 29480.739057: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25177          <idle>-0     (-----) [000] d..1 29480.739081: cpu_idle: state=2 cpu_id=0
25178          <idle>-0     (-----) [003] .n.1 29480.739097: cpu_idle: state=4294967295 cpu_id=3
25179          <idle>-0     (-----) [003] d..2 29480.739123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25180          <idle>-0     (-----) [001] .n.1 29480.739164: cpu_idle: state=4294967295 cpu_id=1
25181         sugov:0-559   (  559) [003] d..2 29480.739169: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25182          <idle>-0     (-----) [003] d..1 29480.739188: cpu_idle: state=2 cpu_id=3
25183          <idle>-0     (-----) [001] d..2 29480.739198: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25184  HwBinder:771_4-20182 (  771) [001] d..2 29480.739276: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25185  HwBinder:771_4-20182 (  771) [001] d..3 29480.739341: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25186  HwBinder:771_4-20182 (  771) [001] d..2 29480.739360: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25187 cdsp_smem_glink-88    (   88) [001] d..2 29480.739421: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25188          <idle>-0     (-----) [001] d..1 29480.739444: cpu_idle: state=2 cpu_id=1
25189          <idle>-0     (-----) [006] dnh2 29480.739820: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25190          <idle>-0     (-----) [006] .n.1 29480.739830: cpu_idle: state=4294967295 cpu_id=6
25191          <idle>-0     (-----) [006] d..2 29480.739842: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25192         sugov:4-560   (  560) [006] d..2 29480.739863: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25193          <idle>-0     (-----) [006] d..1 29480.739873: cpu_idle: state=2 cpu_id=6
25194          <idle>-0     (-----) [006] ...1 29480.743626: cpu_idle: state=4294967295 cpu_id=6
25195          <idle>-0     (-----) [006] d..1 29480.743631: cpu_idle: state=2 cpu_id=6
25196          <idle>-0     (-----) [002] d.h4 29480.743679: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25197          <idle>-0     (-----) [002] dnh5 29480.743721: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25198          <idle>-0     (-----) [002] dnh4 29480.743753: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25199          <idle>-0     (-----) [002] dnh5 29480.743782: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25200          <idle>-0     (-----) [002] .n.1 29480.743831: cpu_idle: state=4294967295 cpu_id=2
25201          <idle>-0     (-----) [002] d..2 29480.743854: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25202 smem_native_cds-87    (   87) [002] d..2 29480.743917: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25203          <idle>-0     (-----) [002] d..2 29480.743923: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25204          <idle>-0     (-----) [002] dn.3 29480.743939: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25205          <idle>-0     (-----) [002] d..2 29480.743949: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25206          <idle>-0     (-----) [000] .n.1 29480.743958: cpu_idle: state=4294967295 cpu_id=0
25207     ksoftirqd/2-26    (   26) [002] d.s2 29480.743964: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25208     ksoftirqd/2-26    (   26) [002] dns3 29480.743979: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25209     ksoftirqd/2-26    (   26) [002] d..2 29480.743993: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
25210          <idle>-0     (-----) [000] d..2 29480.743993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25211     kworker/2:2-13636 (13636) [002] d..2 29480.744032: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25212     ksoftirqd/2-26    (   26) [002] d..2 29480.744054: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25213  HwBinder:771_4-20182 (  771) [000] d..2 29480.744073: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25214          <idle>-0     (-----) [002] d..1 29480.744075: cpu_idle: state=2 cpu_id=2
25215  HwBinder:771_4-20182 (  771) [000] d..3 29480.744140: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25216  HwBinder:771_4-20182 (  771) [000] d..2 29480.744159: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25217 cdsp_smem_glink-88    (   88) [000] d..2 29480.744222: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25218          <idle>-0     (-----) [000] d..1 29480.744243: cpu_idle: state=2 cpu_id=0
25219          <idle>-0     (-----) [000] d..2 29480.748122: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25220          <idle>-0     (-----) [002] d.h4 29480.748130: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25221          <idle>-0     (-----) [000] dn.3 29480.748138: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25222          <idle>-0     (-----) [000] .n.1 29480.748146: cpu_idle: state=4294967295 cpu_id=0
25223          <idle>-0     (-----) [000] d..2 29480.748169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25224          <idle>-0     (-----) [002] dnh5 29480.748170: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25225     ksoftirqd/0-3     (    3) [000] d.s2 29480.748182: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25226          <idle>-0     (-----) [002] dnh4 29480.748203: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25227     ksoftirqd/0-3     (    3) [000] d.s3 29480.748209: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25228          <idle>-0     (-----) [002] dnh5 29480.748243: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25229     ksoftirqd/0-3     (    3) [000] d..2 29480.748244: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25230          <idle>-0     (-----) [002] .n.1 29480.748292: cpu_idle: state=4294967295 cpu_id=2
25231          <idle>-0     (-----) [002] d..2 29480.748319: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25232 smem_native_cds-87    (   87) [002] d..2 29480.748409: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25233          <idle>-0     (-----) [002] d..1 29480.748430: cpu_idle: state=2 cpu_id=2
25234  kworker/u16:10-23868 (23868) [000] d..2 29480.748515: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25235          <idle>-0     (-----) [000] d..1 29480.748539: cpu_idle: state=2 cpu_id=0
25236          <idle>-0     (-----) [001] .n.1 29480.748564: cpu_idle: state=4294967295 cpu_id=1
25237          <idle>-0     (-----) [001] d..2 29480.748597: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25238  HwBinder:771_4-20182 (  771) [001] d..2 29480.748682: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25239  HwBinder:771_4-20182 (  771) [001] d..3 29480.748745: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25240  HwBinder:771_4-20182 (  771) [001] d..2 29480.748765: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25241 cdsp_smem_glink-88    (   88) [001] d..2 29480.748829: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25242          <idle>-0     (-----) [001] d..1 29480.748851: cpu_idle: state=2 cpu_id=1
25243          <idle>-0     (-----) [001] ...1 29480.753639: cpu_idle: state=4294967295 cpu_id=1
25244          <idle>-0     (-----) [001] d..1 29480.753648: cpu_idle: state=2 cpu_id=1
25245          <idle>-0     (-----) [002] d.h4 29480.753679: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25246          <idle>-0     (-----) [002] dnh5 29480.753718: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25247          <idle>-0     (-----) [002] dnh4 29480.753750: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25248          <idle>-0     (-----) [002] dnh5 29480.753780: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25249          <idle>-0     (-----) [002] .n.1 29480.753828: cpu_idle: state=4294967295 cpu_id=2
25250          <idle>-0     (-----) [002] d..2 29480.753852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25251 smem_native_cds-87    (   87) [002] d..2 29480.753916: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25252          <idle>-0     (-----) [002] d..2 29480.753923: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25253          <idle>-0     (-----) [002] dn.3 29480.753935: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25254          <idle>-0     (-----) [002] d..2 29480.753946: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25255          <idle>-0     (-----) [000] .n.1 29480.753963: cpu_idle: state=4294967295 cpu_id=0
25256     ksoftirqd/2-26    (   26) [002] d..2 29480.753976: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25257          <idle>-0     (-----) [002] d..1 29480.753998: cpu_idle: state=2 cpu_id=2
25258          <idle>-0     (-----) [000] d..2 29480.753999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25259  HwBinder:771_4-20182 (  771) [000] d..2 29480.754080: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25260  HwBinder:771_4-20182 (  771) [000] d..3 29480.754145: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25261  HwBinder:771_4-20182 (  771) [000] d..2 29480.754164: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25262 cdsp_smem_glink-88    (   88) [000] d..2 29480.754227: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25263          <idle>-0     (-----) [000] d..1 29480.754247: cpu_idle: state=2 cpu_id=0
25264          <idle>-0     (-----) [000] d..2 29480.758125: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25265          <idle>-0     (-----) [002] d.h4 29480.758129: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25266          <idle>-0     (-----) [000] dn.3 29480.758144: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25267          <idle>-0     (-----) [002] dnh5 29480.758219: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25268          <idle>-0     (-----) [000] dnH3 29480.758248: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25269          <idle>-0     (-----) [002] dnh4 29480.758256: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25270          <idle>-0     (-----) [000] dnH3 29480.758267: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25271          <idle>-0     (-----) [000] dnH4 29480.758287: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25272          <idle>-0     (-----) [002] dnh5 29480.758290: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25273          <idle>-0     (-----) [000] dns3 29480.758302: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25274          <idle>-0     (-----) [000] dns4 29480.758328: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25275          <idle>-0     (-----) [002] .n.1 29480.758341: cpu_idle: state=4294967295 cpu_id=2
25276          <idle>-0     (-----) [000] .n.1 29480.758343: cpu_idle: state=4294967295 cpu_id=0
25277          <idle>-0     (-----) [002] d..2 29480.758364: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25278          <idle>-0     (-----) [000] d..2 29480.758372: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25279     ksoftirqd/0-3     (    3) [000] d..2 29480.758388: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25280 smem_native_cds-87    (   87) [002] d..2 29480.758431: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25281          <idle>-0     (-----) [002] d..1 29480.758492: cpu_idle: state=2 cpu_id=2
25282  kworker/u16:10-23868 (23868) [000] d..2 29480.758578: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25283          <idle>-0     (-----) [000] d..1 29480.758601: cpu_idle: state=2 cpu_id=0
25284          <idle>-0     (-----) [003] .n.1 29480.758612: cpu_idle: state=4294967295 cpu_id=3
25285          <idle>-0     (-----) [003] d..2 29480.758639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25286          <idle>-0     (-----) [001] .n.1 29480.758684: cpu_idle: state=4294967295 cpu_id=1
25287         sugov:0-559   (  559) [003] d..2 29480.758685: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25288          <idle>-0     (-----) [003] d..1 29480.758704: cpu_idle: state=2 cpu_id=3
25289          <idle>-0     (-----) [001] d..2 29480.758718: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25290  HwBinder:771_4-20182 (  771) [001] d..2 29480.758797: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25291  HwBinder:771_4-20182 (  771) [001] d..3 29480.758861: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25292  HwBinder:771_4-20182 (  771) [001] d..2 29480.758881: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25293 cdsp_smem_glink-88    (   88) [001] d..2 29480.758944: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25294          <idle>-0     (-----) [001] d..1 29480.758966: cpu_idle: state=2 cpu_id=1
25295          <idle>-0     (-----) [006] dnh2 29480.759336: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25296          <idle>-0     (-----) [006] .n.1 29480.759346: cpu_idle: state=4294967295 cpu_id=6
25297          <idle>-0     (-----) [006] d..2 29480.759358: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25298         sugov:4-560   (  560) [006] d..2 29480.759380: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25299          <idle>-0     (-----) [006] d..1 29480.759391: cpu_idle: state=2 cpu_id=6
25300          <idle>-0     (-----) [002] d.h4 29480.763570: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25301          <idle>-0     (-----) [002] dnh5 29480.763605: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25302          <idle>-0     (-----) [002] dnh4 29480.763637: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25303          <idle>-0     (-----) [002] dnh5 29480.763666: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25304          <idle>-0     (-----) [002] .n.1 29480.763712: cpu_idle: state=4294967295 cpu_id=2
25305          <idle>-0     (-----) [002] d..2 29480.763735: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25306 smem_native_cds-87    (   87) [002] d.s4 29480.763785: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25307 smem_native_cds-87    (   87) [002] d.s5 29480.763802: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25308 smem_native_cds-87    (   87) [002] d..2 29480.763854: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
25309          <idle>-0     (-----) [000] .n.1 29480.763863: cpu_idle: state=4294967295 cpu_id=0
25310          <idle>-0     (-----) [000] d..2 29480.763900: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25311     kworker/2:2-13636 (13636) [002] d..2 29480.763921: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25312          <idle>-0     (-----) [002] d..1 29480.763944: cpu_idle: state=2 cpu_id=2
25313  HwBinder:771_4-20182 (  771) [000] d.s2 29480.767116: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25314  HwBinder:771_4-20182 (  771) [000] dns3 29480.767151: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25315  HwBinder:771_4-20182 (  771) [000] d..2 29480.767181: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25316  kworker/u16:10-23868 (23868) [000] d..2 29480.767281: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25317  HwBinder:771_4-20182 (  771) [000] d..2 29480.771734: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25318  HwBinder:771_4-20182 (  771) [000] d..3 29480.771800: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25319  HwBinder:771_4-20182 (  771) [000] d..2 29480.771823: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25320 cdsp_smem_glink-88    (   88) [000] d..2 29480.771903: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25321          <idle>-0     (-----) [000] d..1 29480.771936: cpu_idle: state=2 cpu_id=0
25322          <idle>-0     (-----) [002] d.h4 29480.776601: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25323          <idle>-0     (-----) [000] d..2 29480.776601: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25324          <idle>-0     (-----) [000] dn.3 29480.776617: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25325          <idle>-0     (-----) [000] .n.1 29480.776624: cpu_idle: state=4294967295 cpu_id=0
25326          <idle>-0     (-----) [002] dnh5 29480.776644: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25327          <idle>-0     (-----) [000] d..2 29480.776647: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25328          <idle>-0     (-----) [002] .n.1 29480.776663: cpu_idle: state=4294967295 cpu_id=2
25329          <idle>-0     (-----) [002] d..2 29480.776692: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25330     ksoftirqd/0-3     (    3) [000] d..2 29480.776694: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25331          <idle>-0     (-----) [000] d..1 29480.776711: cpu_idle: state=2 cpu_id=0
25332 smem_native_cds-87    (   87) [002] d..2 29480.776758: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25333          <idle>-0     (-----) [002] d..1 29480.776782: cpu_idle: state=2 cpu_id=2
25334          <idle>-0     (-----) [002] d.h4 29480.784633: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25335          <idle>-0     (-----) [000] d..2 29480.784750: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25336          <idle>-0     (-----) [000] dn.3 29480.784887: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25337          <idle>-0     (-----) [002] d.h5 29480.784913: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25338          <idle>-0     (-----) [002] ...1 29480.785300: cpu_idle: state=4294967295 cpu_id=2
25339          <idle>-0     (-----) [000] dnH3 29480.785316: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25340          <idle>-0     (-----) [002] d..1 29480.785367: cpu_idle: state=2 cpu_id=2
25341          <idle>-0     (-----) [000] dnH3 29480.785392: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25342          <idle>-0     (-----) [000] dnH4 29480.785449: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25343          <idle>-0     (-----) [000] dns3 29480.785514: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25344          <idle>-0     (-----) [000] dns4 29480.785668: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
25345          <idle>-0     (-----) [000] .n.1 29480.785702: cpu_idle: state=4294967295 cpu_id=0
25346          <idle>-0     (-----) [000] d..2 29480.785841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25347          <idle>-0     (-----) [003] .n.1 29480.785862: cpu_idle: state=4294967295 cpu_id=3
25348     ksoftirqd/0-3     (    3) [000] d..2 29480.785921: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25349          <idle>-0     (-----) [003] d..2 29480.785927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25350         sugov:0-559   (  559) [003] .... 29480.786078: clk_set_rate: pwrcl_clk 902400000
25351         sugov:0-559   (  559) [003] .... 29480.786170: clk_set_rate: cpu3_pwrcl_clk 652800000
25352         sugov:0-559   (  559) [003] .... 29480.786191: clk_set_rate: cpu2_pwrcl_clk 652800000
25353         sugov:0-559   (  559) [003] .... 29480.786202: clk_set_rate: cpu1_pwrcl_clk 652800000
25354         sugov:0-559   (  559) [003] .... 29480.786220: clk_set_rate: cpu0_pwrcl_clk 902400000
25355         sugov:0-559   (  559) [003] .... 29480.786237: cpu_frequency: state=902400 cpu_id=0
25356         sugov:0-559   (  559) [003] .... 29480.786339: cpu_frequency: state=902400 cpu_id=1
25357         sugov:0-559   (  559) [003] .... 29480.786343: cpu_frequency: state=902400 cpu_id=2
25358         sugov:0-559   (  559) [003] .... 29480.786347: cpu_frequency: state=902400 cpu_id=3
25359         sugov:0-559   (  559) [003] d..2 29480.786442: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25360          <idle>-0     (-----) [006] dnh2 29480.786545: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25361          <idle>-0     (-----) [006] .n.1 29480.786567: cpu_idle: state=4294967295 cpu_id=6
25362          <idle>-0     (-----) [006] d..2 29480.786593: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25363         sugov:4-560   (  560) [006] d..2 29480.786691: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25364          <idle>-0     (-----) [006] d..1 29480.786719: cpu_idle: state=2 cpu_id=6
25365  HwBinder:771_4-20182 (  771) [000] d..2 29480.786956: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25366  kworker/u16:10-23868 (23868) [003] d..2 29480.787011: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25367  HwBinder:771_4-20182 (  771) [000] d..3 29480.787041: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25368          <idle>-0     (-----) [003] d..2 29480.787055: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25369  HwBinder:771_4-20182 (  771) [000] d..2 29480.787295: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25370          <idle>-0     (-----) [000] d..1 29480.787332: cpu_idle: state=2 cpu_id=0
25371 cdsp_smem_glink-88    (   88) [003] d..2 29480.787357: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25372          <idle>-0     (-----) [003] d..1 29480.787373: cpu_idle: state=2 cpu_id=3
25373          <idle>-0     (-----) [003] ...1 29480.792161: cpu_idle: state=4294967295 cpu_id=3
25374          <idle>-0     (-----) [003] d..1 29480.792170: cpu_idle: state=2 cpu_id=3
25375          <idle>-0     (-----) [002] d.h4 29480.792201: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25376          <idle>-0     (-----) [002] dnh5 29480.792250: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25377          <idle>-0     (-----) [002] dnh4 29480.792284: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25378          <idle>-0     (-----) [002] dnh5 29480.792301: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25379          <idle>-0     (-----) [002] .n.1 29480.792342: cpu_idle: state=4294967295 cpu_id=2
25380          <idle>-0     (-----) [002] d..2 29480.792371: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25381          <idle>-0     (-----) [000] .n.1 29480.792468: cpu_idle: state=4294967295 cpu_id=0
25382 smem_native_cds-87    (   87) [002] d..2 29480.792481: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25383          <idle>-0     (-----) [002] d..2 29480.792494: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25384          <idle>-0     (-----) [000] d..2 29480.792499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25385          <idle>-0     (-----) [002] dn.3 29480.792521: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25386          <idle>-0     (-----) [002] d..2 29480.792536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25387     ksoftirqd/2-26    (   26) [002] d..2 29480.792585: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25388  HwBinder:771_4-20182 (  771) [000] d..2 29480.792593: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25389          <idle>-0     (-----) [002] d..1 29480.792604: cpu_idle: state=2 cpu_id=2
25390  HwBinder:771_4-20182 (  771) [000] d..3 29480.792659: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25391  HwBinder:771_4-20182 (  771) [000] d..2 29480.792676: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25392 cdsp_smem_glink-88    (   88) [000] d..2 29480.792735: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25393          <idle>-0     (-----) [000] d..1 29480.792755: cpu_idle: state=2 cpu_id=0
25394          <idle>-0     (-----) [002] d.h4 29480.797314: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25395          <idle>-0     (-----) [000] d..2 29480.797325: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25396          <idle>-0     (-----) [000] dn.3 29480.797343: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25397          <idle>-0     (-----) [002] dnh5 29480.797352: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25398          <idle>-0     (-----) [000] dnH3 29480.797428: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25399          <idle>-0     (-----) [002] dnh4 29480.797431: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25400          <idle>-0     (-----) [000] dns3 29480.797460: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
25401          <idle>-0     (-----) [002] dnh5 29480.797466: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25402          <idle>-0     (-----) [000] dns4 29480.797503: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25403          <idle>-0     (-----) [002] .n.1 29480.797511: cpu_idle: state=4294967295 cpu_id=2
25404          <idle>-0     (-----) [000] dns3 29480.797523: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
25405          <idle>-0     (-----) [002] d..2 29480.797533: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25406          <idle>-0     (-----) [000] dns4 29480.797541: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
25407          <idle>-0     (-----) [000] .n.1 29480.797561: cpu_idle: state=4294967295 cpu_id=0
25408          <idle>-0     (-----) [000] d..2 29480.797586: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25409 smem_native_cds-87    (   87) [002] d..2 29480.797589: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25410     ksoftirqd/0-3     (    3) [000] d..2 29480.797601: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
25411          <idle>-0     (-----) [002] d..1 29480.797606: cpu_idle: state=2 cpu_id=2
25412     kworker/0:0-13450 (13450) [000] d..2 29480.797647: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25413          <idle>-0     (-----) [001] .n.1 29480.797823: cpu_idle: state=4294967295 cpu_id=1
25414          <idle>-0     (-----) [001] d..2 29480.797875: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25415  HwBinder:771_4-20182 (  771) [001] d..2 29480.797961: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25416  HwBinder:771_4-20182 (  771) [001] d..3 29480.797996: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25417  HwBinder:771_4-20182 (  771) [001] d..2 29480.798039: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25418          <idle>-0     (-----) [001] d..1 29480.798066: cpu_idle: state=2 cpu_id=1
25419  kworker/u16:10-23868 (23868) [000] d..2 29480.798288: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25420 cdsp_smem_glink-88    (   88) [000] d..2 29480.798340: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25421          <idle>-0     (-----) [000] d..1 29480.798358: cpu_idle: state=2 cpu_id=0
25422          <idle>-0     (-----) [006] dnh2 29480.798503: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25423          <idle>-0     (-----) [006] .n.1 29480.798514: cpu_idle: state=4294967295 cpu_id=6
25424          <idle>-0     (-----) [006] d..2 29480.798526: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25425         sugov:4-560   (  560) [006] d..2 29480.798547: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25426          <idle>-0     (-----) [006] d..1 29480.798558: cpu_idle: state=2 cpu_id=6
25427          <idle>-0     (-----) [003] d.s3 29480.798675: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25428          <idle>-0     (-----) [003] d.s4 29480.798706: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
25429          <idle>-0     (-----) [003] d.s4 29480.798725: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25430          <idle>-0     (-----) [003] ...1 29480.798746: cpu_idle: state=4294967295 cpu_id=3
25431          <idle>-0     (-----) [003] d..1 29480.798754: cpu_idle: state=2 cpu_id=3
25432          <idle>-0     (-----) [000] .n.1 29480.799079: cpu_idle: state=4294967295 cpu_id=0
25433          <idle>-0     (-----) [000] d..2 29480.799104: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25434  kworker/u16:10-23868 (23868) [000] d..2 29480.799167: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25435          <idle>-0     (-----) [000] d..1 29480.799182: cpu_idle: state=2 cpu_id=0
25436          <idle>-0     (-----) [002] d.h4 29480.803121: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25437          <idle>-0     (-----) [002] dnh5 29480.803154: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25438          <idle>-0     (-----) [002] dnh4 29480.803183: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25439          <idle>-0     (-----) [002] dnh5 29480.803207: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25440          <idle>-0     (-----) [002] .n.1 29480.803277: cpu_idle: state=4294967295 cpu_id=2
25441          <idle>-0     (-----) [002] d..2 29480.803297: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25442 smem_native_cds-87    (   87) [002] d..2 29480.803350: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25443          <idle>-0     (-----) [002] d..2 29480.803355: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25444          <idle>-0     (-----) [002] dn.3 29480.803367: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25445          <idle>-0     (-----) [002] d..2 29480.803376: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25446     ksoftirqd/2-26    (   26) [002] d..2 29480.803399: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25447          <idle>-0     (-----) [002] d..1 29480.803415: cpu_idle: state=2 cpu_id=2
25448          <idle>-0     (-----) [000] .n.1 29480.803521: cpu_idle: state=4294967295 cpu_id=0
25449          <idle>-0     (-----) [000] d..2 29480.803550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25450  HwBinder:771_4-20182 (  771) [000] d..2 29480.803618: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25451  HwBinder:771_4-20182 (  771) [000] d..3 29480.803648: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25452  HwBinder:771_4-20182 (  771) [000] d..2 29480.803662: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25453 cdsp_smem_glink-88    (   88) [000] d..2 29480.803715: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25454          <idle>-0     (-----) [000] d..1 29480.803733: cpu_idle: state=2 cpu_id=0
25455          <idle>-0     (-----) [002] d.h4 29480.807505: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25456          <idle>-0     (-----) [000] d..2 29480.807506: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25457          <idle>-0     (-----) [000] dn.3 29480.807522: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25458          <idle>-0     (-----) [000] .n.1 29480.807528: cpu_idle: state=4294967295 cpu_id=0
25459          <idle>-0     (-----) [002] dnh5 29480.807541: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25460          <idle>-0     (-----) [000] d..2 29480.807546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25461     ksoftirqd/0-3     (    3) [000] d.s2 29480.807560: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25462          <idle>-0     (-----) [002] dnh4 29480.807572: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25463     ksoftirqd/0-3     (    3) [000] d.s3 29480.807585: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25464          <idle>-0     (-----) [002] dnh5 29480.807603: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25465     ksoftirqd/0-3     (    3) [000] d..2 29480.807609: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25466          <idle>-0     (-----) [002] .n.1 29480.807647: cpu_idle: state=4294967295 cpu_id=2
25467          <idle>-0     (-----) [002] d..2 29480.807671: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25468 smem_native_cds-87    (   87) [002] d..2 29480.807749: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25469  kworker/u16:10-23868 (23868) [000] d..2 29480.807753: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25470          <idle>-0     (-----) [002] d..1 29480.807766: cpu_idle: state=2 cpu_id=2
25471          <idle>-0     (-----) [000] d..1 29480.807775: cpu_idle: state=2 cpu_id=0
25472          <idle>-0     (-----) [001] .n.1 29480.807954: cpu_idle: state=4294967295 cpu_id=1
25473          <idle>-0     (-----) [001] d..2 29480.807982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25474  HwBinder:771_4-20182 (  771) [001] d..2 29480.808052: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25475  HwBinder:771_4-20182 (  771) [001] d..3 29480.808105: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25476  HwBinder:771_4-20182 (  771) [001] d..2 29480.808122: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25477 cdsp_smem_glink-88    (   88) [001] d..2 29480.808179: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25478          <idle>-0     (-----) [001] d..1 29480.808196: cpu_idle: state=2 cpu_id=1
25479          <idle>-0     (-----) [001] ...1 29480.812724: cpu_idle: state=4294967295 cpu_id=1
25480          <idle>-0     (-----) [001] d..1 29480.812733: cpu_idle: state=2 cpu_id=1
25481          <idle>-0     (-----) [002] d.h4 29480.812760: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25482          <idle>-0     (-----) [002] dnh5 29480.812792: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25483          <idle>-0     (-----) [002] dnh4 29480.812824: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25484          <idle>-0     (-----) [002] dnh5 29480.812851: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25485          <idle>-0     (-----) [002] .n.1 29480.812894: cpu_idle: state=4294967295 cpu_id=2
25486          <idle>-0     (-----) [002] d..2 29480.812914: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25487 smem_native_cds-87    (   87) [002] d..2 29480.812968: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25488          <idle>-0     (-----) [002] d..2 29480.812973: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25489          <idle>-0     (-----) [002] dn.3 29480.812982: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25490          <idle>-0     (-----) [002] d..2 29480.812991: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25491     ksoftirqd/2-26    (   26) [002] d..2 29480.813015: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25492          <idle>-0     (-----) [002] d..1 29480.813031: cpu_idle: state=2 cpu_id=2
25493          <idle>-0     (-----) [000] .n.1 29480.813038: cpu_idle: state=4294967295 cpu_id=0
25494          <idle>-0     (-----) [000] d..2 29480.813068: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25495  HwBinder:771_4-20182 (  771) [000] d..2 29480.813137: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25496  HwBinder:771_4-20182 (  771) [000] d..3 29480.813190: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25497  HwBinder:771_4-20182 (  771) [000] d..2 29480.813207: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25498 cdsp_smem_glink-88    (   88) [000] d..2 29480.813261: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25499          <idle>-0     (-----) [000] d..1 29480.813280: cpu_idle: state=2 cpu_id=0
25500          <idle>-0     (-----) [002] d.h4 29480.817838: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25501          <idle>-0     (-----) [000] d..2 29480.817843: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25502          <idle>-0     (-----) [000] dn.3 29480.817862: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25503          <idle>-0     (-----) [002] dnh5 29480.817877: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25504          <idle>-0     (-----) [000] dnH3 29480.817944: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25505          <idle>-0     (-----) [002] dnh4 29480.817951: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25506          <idle>-0     (-----) [000] dnH3 29480.817961: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25507          <idle>-0     (-----) [000] dnH4 29480.817978: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25508          <idle>-0     (-----) [002] dnh5 29480.817982: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25509          <idle>-0     (-----) [000] dns3 29480.817992: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25510          <idle>-0     (-----) [000] dns4 29480.818013: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25511          <idle>-0     (-----) [000] .n.1 29480.818025: cpu_idle: state=4294967295 cpu_id=0
25512          <idle>-0     (-----) [002] .n.1 29480.818028: cpu_idle: state=4294967295 cpu_id=2
25513          <idle>-0     (-----) [000] d..2 29480.818043: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25514          <idle>-0     (-----) [002] d..2 29480.818055: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25515     ksoftirqd/0-3     (    3) [000] d..2 29480.818058: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25516 smem_native_cds-87    (   87) [002] d..2 29480.818124: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25517          <idle>-0     (-----) [002] d..1 29480.818164: cpu_idle: state=2 cpu_id=2
25518  kworker/u16:10-23868 (23868) [000] d..2 29480.818233: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25519          <idle>-0     (-----) [000] d..1 29480.818253: cpu_idle: state=2 cpu_id=0
25520          <idle>-0     (-----) [003] .n.1 29480.818322: cpu_idle: state=4294967295 cpu_id=3
25521          <idle>-0     (-----) [003] d..2 29480.818343: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25522          <idle>-0     (-----) [001] .n.1 29480.818361: cpu_idle: state=4294967295 cpu_id=1
25523         sugov:0-559   (  559) [003] .... 29480.818373: clk_set_rate: pwrcl_clk 748800000
25524         sugov:0-559   (  559) [003] .... 29480.818384: clk_set_rate: cpu3_pwrcl_clk 902400000
25525          <idle>-0     (-----) [001] d..2 29480.818392: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25526         sugov:0-559   (  559) [003] .... 29480.818396: clk_set_rate: cpu2_pwrcl_clk 902400000
25527         sugov:0-559   (  559) [003] .... 29480.818407: clk_set_rate: cpu1_pwrcl_clk 902400000
25528         sugov:0-559   (  559) [003] .... 29480.818417: clk_set_rate: cpu0_pwrcl_clk 748800000
25529  HwBinder:771_4-20182 (  771) [001] d..2 29480.818482: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25530         sugov:0-559   (  559) [003] .... 29480.818534: cpu_frequency: state=748800 cpu_id=0
25531  HwBinder:771_4-20182 (  771) [001] d..3 29480.818541: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25532         sugov:0-559   (  559) [003] .... 29480.818550: cpu_frequency: state=748800 cpu_id=1
25533         sugov:0-559   (  559) [003] .... 29480.818557: cpu_frequency: state=748800 cpu_id=2
25534         sugov:0-559   (  559) [003] .... 29480.818562: cpu_frequency: state=748800 cpu_id=3
25535  HwBinder:771_4-20182 (  771) [001] d..2 29480.818576: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25536         sugov:0-559   (  559) [003] d..2 29480.818589: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25537          <idle>-0     (-----) [001] d..1 29480.818596: cpu_idle: state=2 cpu_id=1
25538 cdsp_smem_glink-88    (   88) [003] d..2 29480.818667: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25539          <idle>-0     (-----) [003] d..1 29480.818689: cpu_idle: state=2 cpu_id=3
25540          <idle>-0     (-----) [006] dnh2 29480.819013: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25541          <idle>-0     (-----) [006] .n.1 29480.819022: cpu_idle: state=4294967295 cpu_id=6
25542          <idle>-0     (-----) [006] d..2 29480.819035: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25543         sugov:4-560   (  560) [006] d..2 29480.819057: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25544          <idle>-0     (-----) [006] d..1 29480.819067: cpu_idle: state=2 cpu_id=6
25545          <idle>-0     (-----) [006] ...1 29480.822813: cpu_idle: state=4294967295 cpu_id=6
25546          <idle>-0     (-----) [006] d..1 29480.822818: cpu_idle: state=2 cpu_id=6
25547          <idle>-0     (-----) [002] d.h4 29480.822862: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25548          <idle>-0     (-----) [002] dnh5 29480.822901: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25549          <idle>-0     (-----) [002] dnh4 29480.822932: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25550          <idle>-0     (-----) [002] dnh5 29480.822959: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25551          <idle>-0     (-----) [002] .n.1 29480.823008: cpu_idle: state=4294967295 cpu_id=2
25552          <idle>-0     (-----) [002] d..2 29480.823030: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25553 smem_native_cds-87    (   87) [002] d..2 29480.823089: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25554          <idle>-0     (-----) [002] d..2 29480.823095: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25555          <idle>-0     (-----) [002] dn.3 29480.823109: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25556          <idle>-0     (-----) [002] d..2 29480.823120: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25557          <idle>-0     (-----) [000] .n.1 29480.823147: cpu_idle: state=4294967295 cpu_id=0
25558     ksoftirqd/2-26    (   26) [002] d..2 29480.823150: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25559          <idle>-0     (-----) [002] d..1 29480.823169: cpu_idle: state=2 cpu_id=2
25560          <idle>-0     (-----) [000] d..2 29480.823181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25561  HwBinder:771_4-20182 (  771) [000] d..2 29480.823255: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25562  HwBinder:771_4-20182 (  771) [000] d..3 29480.823315: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25563  HwBinder:771_4-20182 (  771) [000] d..2 29480.823333: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25564 cdsp_smem_glink-88    (   88) [000] d..2 29480.823392: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25565          <idle>-0     (-----) [000] d..1 29480.823412: cpu_idle: state=2 cpu_id=0
25566          <idle>-0     (-----) [002] d.h4 29480.828032: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25567          <idle>-0     (-----) [000] d..2 29480.828033: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25568          <idle>-0     (-----) [000] dn.3 29480.828052: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25569          <idle>-0     (-----) [000] .n.1 29480.828057: cpu_idle: state=4294967295 cpu_id=0
25570          <idle>-0     (-----) [002] dnh5 29480.828070: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25571          <idle>-0     (-----) [000] d..2 29480.828078: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25572     ksoftirqd/0-3     (    3) [000] d.s2 29480.828090: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25573          <idle>-0     (-----) [002] dnh4 29480.828105: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25574     ksoftirqd/0-3     (    3) [000] d.s3 29480.828121: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25575          <idle>-0     (-----) [002] dnh5 29480.828141: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25576     ksoftirqd/0-3     (    3) [000] d..2 29480.828149: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25577          <idle>-0     (-----) [002] .n.1 29480.828191: cpu_idle: state=4294967295 cpu_id=2
25578          <idle>-0     (-----) [002] d..2 29480.828216: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25579 smem_native_cds-87    (   87) [002] d..2 29480.828304: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25580  kworker/u16:10-23868 (23868) [000] d..2 29480.828308: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25581          <idle>-0     (-----) [002] d..1 29480.828324: cpu_idle: state=2 cpu_id=2
25582          <idle>-0     (-----) [000] d..1 29480.828331: cpu_idle: state=2 cpu_id=0
25583          <idle>-0     (-----) [001] .n.1 29480.828472: cpu_idle: state=4294967295 cpu_id=1
25584          <idle>-0     (-----) [001] d..2 29480.828502: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25585  HwBinder:771_4-20182 (  771) [001] d..2 29480.828599: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25586  HwBinder:771_4-20182 (  771) [001] d..3 29480.828662: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25587  HwBinder:771_4-20182 (  771) [001] d..2 29480.828680: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25588 cdsp_smem_glink-88    (   88) [001] d..2 29480.828740: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25589          <idle>-0     (-----) [001] d..1 29480.828760: cpu_idle: state=2 cpu_id=1
25590          <idle>-0     (-----) [001] ...1 29480.832555: cpu_idle: state=4294967295 cpu_id=1
25591          <idle>-0     (-----) [001] d..1 29480.832563: cpu_idle: state=2 cpu_id=1
25592          <idle>-0     (-----) [002] d.h4 29480.832598: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25593          <idle>-0     (-----) [002] dnh5 29480.832634: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25594          <idle>-0     (-----) [002] dnh4 29480.832667: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25595          <idle>-0     (-----) [002] dnh5 29480.832696: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25596          <idle>-0     (-----) [002] .n.1 29480.832741: cpu_idle: state=4294967295 cpu_id=2
25597          <idle>-0     (-----) [002] d..2 29480.832763: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25598 smem_native_cds-87    (   87) [002] d..2 29480.832822: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25599          <idle>-0     (-----) [002] d..2 29480.832828: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25600          <idle>-0     (-----) [002] dn.3 29480.832838: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25601          <idle>-0     (-----) [002] d..2 29480.832849: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25602          <idle>-0     (-----) [000] .n.1 29480.832871: cpu_idle: state=4294967295 cpu_id=0
25603     ksoftirqd/2-26    (   26) [002] d..2 29480.832877: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25604          <idle>-0     (-----) [002] d..1 29480.832896: cpu_idle: state=2 cpu_id=2
25605          <idle>-0     (-----) [000] d..2 29480.832906: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25606  HwBinder:771_4-20182 (  771) [000] d..2 29480.832986: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25607  HwBinder:771_4-20182 (  771) [000] d..3 29480.833047: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25608  HwBinder:771_4-20182 (  771) [000] d..2 29480.833066: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25609 cdsp_smem_glink-88    (   88) [000] d..2 29480.833127: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25610          <idle>-0     (-----) [000] d..1 29480.833151: cpu_idle: state=2 cpu_id=0
25611          <idle>-0     (-----) [002] d.h4 29480.840743: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25612          <idle>-0     (-----) [000] d..2 29480.840856: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25613          <idle>-0     (-----) [000] dn.3 29480.840988: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25614          <idle>-0     (-----) [002] dnh5 29480.841005: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25615          <idle>-0     (-----) [000] .n.1 29480.841036: cpu_idle: state=4294967295 cpu_id=0
25616          <idle>-0     (-----) [002] dnh4 29480.841102: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25617          <idle>-0     (-----) [002] dnh5 29480.841209: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25618          <idle>-0     (-----) [000] d..2 29480.841228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25619     ksoftirqd/0-3     (    3) [000] d.s2 29480.841324: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25620     ksoftirqd/0-3     (    3) [000] d.s3 29480.841562: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25621          <idle>-0     (-----) [001] .n.1 29480.841600: cpu_idle: state=4294967295 cpu_id=1
25622     ksoftirqd/0-3     (    3) [000] d..2 29480.841622: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25623          <idle>-0     (-----) [002] dnh3 29480.841646: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25624          <idle>-0     (-----) [001] d..2 29480.841668: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25625          <idle>-0     (-----) [002] dnh3 29480.841714: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25626          <idle>-0     (-----) [002] dnh4 29480.841772: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25627          <idle>-0     (-----) [002] .n.1 29480.841787: cpu_idle: state=4294967295 cpu_id=2
25628          <idle>-0     (-----) [002] d..2 29480.841825: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25629 smem_native_cds-87    (   87) [002] d..2 29480.842033: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25630          <idle>-0     (-----) [002] d..1 29480.842116: cpu_idle: state=2 cpu_id=2
25631          <idle>-0     (-----) [003] .n.1 29480.842158: cpu_idle: state=4294967295 cpu_id=3
25632  kworker/u16:10-23868 (23868) [000] d..2 29480.842199: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25633          <idle>-0     (-----) [003] d..2 29480.842209: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25634  HwBinder:771_4-20182 (  771) [001] d..2 29480.842211: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25635          <idle>-0     (-----) [000] d..1 29480.842230: cpu_idle: state=2 cpu_id=0
25636  HwBinder:771_4-20182 (  771) [001] d..3 29480.842324: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25637         sugov:0-559   (  559) [003] .... 29480.842337: clk_set_rate: pwrcl_clk 652800000
25638  HwBinder:771_4-20182 (  771) [001] d..2 29480.842396: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25639          <idle>-0     (-----) [001] d..1 29480.842427: cpu_idle: state=2 cpu_id=1
25640         sugov:0-559   (  559) [003] .... 29480.842431: clk_set_rate: cpu3_pwrcl_clk 748800000
25641         sugov:0-559   (  559) [003] .... 29480.842450: clk_set_rate: cpu2_pwrcl_clk 748800000
25642         sugov:0-559   (  559) [003] .... 29480.842461: clk_set_rate: cpu1_pwrcl_clk 748800000
25643         sugov:0-559   (  559) [003] .... 29480.842472: clk_set_rate: cpu0_pwrcl_clk 652800000
25644         sugov:0-559   (  559) [003] .... 29480.842598: cpu_frequency: state=652800 cpu_id=0
25645         sugov:0-559   (  559) [003] .... 29480.842693: cpu_frequency: state=652800 cpu_id=1
25646         sugov:0-559   (  559) [003] .... 29480.842699: cpu_frequency: state=652800 cpu_id=2
25647         sugov:0-559   (  559) [003] .... 29480.842706: cpu_frequency: state=652800 cpu_id=3
25648         sugov:0-559   (  559) [003] d..2 29480.842759: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25649          <idle>-0     (-----) [006] dnh2 29480.842875: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25650 cdsp_smem_glink-88    (   88) [003] d..2 29480.842884: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25651          <idle>-0     (-----) [006] .n.1 29480.842895: cpu_idle: state=4294967295 cpu_id=6
25652          <idle>-0     (-----) [003] d..1 29480.842910: cpu_idle: state=2 cpu_id=3
25653          <idle>-0     (-----) [006] d..2 29480.842921: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25654         sugov:4-560   (  560) [006] d..2 29480.842968: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25655          <idle>-0     (-----) [006] d..1 29480.842992: cpu_idle: state=2 cpu_id=6
25656          <idle>-0     (-----) [002] d.h4 29480.845981: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25657          <idle>-0     (-----) [002] dnh5 29480.846018: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25658          <idle>-0     (-----) [002] dnh4 29480.846051: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25659          <idle>-0     (-----) [002] dnh5 29480.846085: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25660          <idle>-0     (-----) [002] .n.1 29480.846144: cpu_idle: state=4294967295 cpu_id=2
25661          <idle>-0     (-----) [002] d..2 29480.846166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25662 smem_native_cds-87    (   87) [002] d..2 29480.846238: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25663          <idle>-0     (-----) [002] d..2 29480.846247: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25664          <idle>-0     (-----) [000] .n.1 29480.846265: cpu_idle: state=4294967295 cpu_id=0
25665          <idle>-0     (-----) [002] dn.3 29480.846275: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25666          <idle>-0     (-----) [002] d..2 29480.846292: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25667          <idle>-0     (-----) [000] d..2 29480.846301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25668     ksoftirqd/2-26    (   26) [002] d..2 29480.846347: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25669          <idle>-0     (-----) [002] d..1 29480.846367: cpu_idle: state=2 cpu_id=2
25670  HwBinder:771_4-20182 (  771) [000] d..2 29480.846584: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25671  HwBinder:771_4-20182 (  771) [000] d..3 29480.846657: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25672  HwBinder:771_4-20182 (  771) [000] d..2 29480.846677: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25673 cdsp_smem_glink-88    (   88) [000] d..2 29480.846745: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25674          <idle>-0     (-----) [000] d..1 29480.846767: cpu_idle: state=2 cpu_id=0
25675          <idle>-0     (-----) [000] d..2 29480.851538: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25676          <idle>-0     (-----) [002] d.h4 29480.851547: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25677          <idle>-0     (-----) [000] dn.3 29480.851554: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25678          <idle>-0     (-----) [000] .n.1 29480.851562: cpu_idle: state=4294967295 cpu_id=0
25679          <idle>-0     (-----) [000] d..2 29480.851584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25680          <idle>-0     (-----) [002] dnh5 29480.851590: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25681     ksoftirqd/0-3     (    3) [000] d.s2 29480.851600: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25682          <idle>-0     (-----) [002] dnh4 29480.851623: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25683     ksoftirqd/0-3     (    3) [000] d.s3 29480.851630: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25684          <idle>-0     (-----) [002] dnh5 29480.851666: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25685     ksoftirqd/0-3     (    3) [000] d..2 29480.851668: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25686          <idle>-0     (-----) [002] .n.1 29480.851721: cpu_idle: state=4294967295 cpu_id=2
25687          <idle>-0     (-----) [002] d..2 29480.851748: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25688 smem_native_cds-87    (   87) [002] d..2 29480.851811: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25689          <idle>-0     (-----) [002] d..1 29480.851832: cpu_idle: state=2 cpu_id=2
25690  kworker/u16:10-23868 (23868) [000] d..2 29480.851975: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25691          <idle>-0     (-----) [000] d..1 29480.851998: cpu_idle: state=2 cpu_id=0
25692          <idle>-0     (-----) [001] .n.1 29480.852000: cpu_idle: state=4294967295 cpu_id=1
25693          <idle>-0     (-----) [001] d..2 29480.852033: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25694  HwBinder:771_4-20182 (  771) [001] d..2 29480.852130: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25695  HwBinder:771_4-20182 (  771) [001] d..3 29480.852192: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25696  HwBinder:771_4-20182 (  771) [001] d..2 29480.852210: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25697 cdsp_smem_glink-88    (   88) [001] d..2 29480.852274: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25698          <idle>-0     (-----) [001] d..1 29480.852295: cpu_idle: state=2 cpu_id=1
25699          <idle>-0     (-----) [002] d.h4 29480.856054: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25700          <idle>-0     (-----) [002] dnh5 29480.856093: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25701          <idle>-0     (-----) [002] dnh4 29480.856128: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25702          <idle>-0     (-----) [002] dnh5 29480.856157: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25703          <idle>-0     (-----) [002] .n.1 29480.856206: cpu_idle: state=4294967295 cpu_id=2
25704          <idle>-0     (-----) [002] d..2 29480.856229: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25705 smem_native_cds-87    (   87) [002] d..2 29480.856295: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25706          <idle>-0     (-----) [002] d..2 29480.856302: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25707          <idle>-0     (-----) [002] dn.3 29480.856314: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25708          <idle>-0     (-----) [002] d..2 29480.856325: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25709          <idle>-0     (-----) [000] .n.1 29480.856342: cpu_idle: state=4294967295 cpu_id=0
25710     ksoftirqd/2-26    (   26) [002] d..2 29480.856356: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25711          <idle>-0     (-----) [002] d..1 29480.856376: cpu_idle: state=2 cpu_id=2
25712          <idle>-0     (-----) [000] d..2 29480.856380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25713  HwBinder:771_4-20182 (  771) [000] d..2 29480.856464: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25714  HwBinder:771_4-20182 (  771) [000] d..3 29480.856527: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25715  HwBinder:771_4-20182 (  771) [000] d..2 29480.856548: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25716 cdsp_smem_glink-88    (   88) [000] d..2 29480.856612: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25717          <idle>-0     (-----) [000] d..1 29480.856634: cpu_idle: state=2 cpu_id=0
25718          <idle>-0     (-----) [002] d.h4 29480.861279: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25719          <idle>-0     (-----) [000] d..2 29480.861286: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25720          <idle>-0     (-----) [000] dn.3 29480.861308: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25721          <idle>-0     (-----) [002] dnh5 29480.861324: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25722          <idle>-0     (-----) [000] dnH3 29480.861410: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25723          <idle>-0     (-----) [002] dnh4 29480.861412: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25724          <idle>-0     (-----) [000] dnH3 29480.861434: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25725          <idle>-0     (-----) [002] dnh5 29480.861447: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25726          <idle>-0     (-----) [000] dnH4 29480.861453: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25727          <idle>-0     (-----) [000] dns3 29480.861467: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25728          <idle>-0     (-----) [000] dns4 29480.861494: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25729          <idle>-0     (-----) [002] .n.1 29480.861499: cpu_idle: state=4294967295 cpu_id=2
25730          <idle>-0     (-----) [000] .n.1 29480.861509: cpu_idle: state=4294967295 cpu_id=0
25731          <idle>-0     (-----) [002] d..2 29480.861524: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25732          <idle>-0     (-----) [000] d..2 29480.861538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25733     ksoftirqd/0-3     (    3) [000] d..2 29480.861555: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25734 smem_native_cds-87    (   87) [002] d..2 29480.861595: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25735          <idle>-0     (-----) [002] d..1 29480.861652: cpu_idle: state=2 cpu_id=2
25736  kworker/u16:10-23868 (23868) [000] d..2 29480.861735: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25737          <idle>-0     (-----) [000] d..1 29480.861758: cpu_idle: state=2 cpu_id=0
25738          <idle>-0     (-----) [001] .n.1 29480.861774: cpu_idle: state=4294967295 cpu_id=1
25739          <idle>-0     (-----) [001] d..2 29480.861808: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25740          <idle>-0     (-----) [003] .n.1 29480.861837: cpu_idle: state=4294967295 cpu_id=3
25741          <idle>-0     (-----) [003] d..2 29480.861866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25742  HwBinder:771_4-20182 (  771) [001] d..2 29480.861889: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25743         sugov:0-559   (  559) [003] .... 29480.861899: clk_set_rate: pwrcl_clk 748800000
25744         sugov:0-559   (  559) [003] .... 29480.861912: clk_set_rate: cpu3_pwrcl_clk 652800000
25745         sugov:0-559   (  559) [003] .... 29480.861924: clk_set_rate: cpu2_pwrcl_clk 652800000
25746         sugov:0-559   (  559) [003] .... 29480.861936: clk_set_rate: cpu1_pwrcl_clk 652800000
25747         sugov:0-559   (  559) [003] .... 29480.861947: clk_set_rate: cpu0_pwrcl_clk 748800000
25748  HwBinder:771_4-20182 (  771) [001] d..3 29480.861954: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25749         sugov:0-559   (  559) [003] .... 29480.861961: cpu_frequency: state=748800 cpu_id=0
25750         sugov:0-559   (  559) [003] .... 29480.861979: cpu_frequency: state=748800 cpu_id=1
25751         sugov:0-559   (  559) [003] .... 29480.861987: cpu_frequency: state=748800 cpu_id=2
25752         sugov:0-559   (  559) [003] .... 29480.861991: cpu_frequency: state=748800 cpu_id=3
25753  HwBinder:771_4-20182 (  771) [001] d..2 29480.861994: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25754          <idle>-0     (-----) [001] d..1 29480.862014: cpu_idle: state=2 cpu_id=1
25755         sugov:0-559   (  559) [003] d..2 29480.862019: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25756 cdsp_smem_glink-88    (   88) [003] d..2 29480.862098: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25757          <idle>-0     (-----) [003] d..1 29480.862118: cpu_idle: state=2 cpu_id=3
25758          <idle>-0     (-----) [006] dnh2 29480.862489: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25759          <idle>-0     (-----) [006] .n.1 29480.862498: cpu_idle: state=4294967295 cpu_id=6
25760          <idle>-0     (-----) [006] d..2 29480.862510: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25761         sugov:4-560   (  560) [006] d..2 29480.862531: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25762          <idle>-0     (-----) [006] d..1 29480.862541: cpu_idle: state=2 cpu_id=6
25763          <idle>-0     (-----) [006] ...1 29480.866290: cpu_idle: state=4294967295 cpu_id=6
25764          <idle>-0     (-----) [006] d..1 29480.866296: cpu_idle: state=2 cpu_id=6
25765          <idle>-0     (-----) [002] d.h4 29480.866340: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25766          <idle>-0     (-----) [002] dnh5 29480.866380: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25767          <idle>-0     (-----) [002] dnh4 29480.866411: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25768          <idle>-0     (-----) [002] dnh5 29480.866438: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25769          <idle>-0     (-----) [002] .n.1 29480.866485: cpu_idle: state=4294967295 cpu_id=2
25770          <idle>-0     (-----) [002] d..2 29480.866508: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25771 smem_native_cds-87    (   87) [002] d..2 29480.866567: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25772          <idle>-0     (-----) [002] d..2 29480.866574: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25773          <idle>-0     (-----) [002] dn.3 29480.866588: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25774          <idle>-0     (-----) [002] d..2 29480.866597: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25775     ksoftirqd/2-26    (   26) [002] d.s2 29480.866622: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25776          <idle>-0     (-----) [000] .n.1 29480.866623: cpu_idle: state=4294967295 cpu_id=0
25777          <idle>-0     (-----) [000] d..2 29480.866656: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25778     ksoftirqd/2-26    (   26) [002] dns3 29480.866659: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25779     ksoftirqd/2-26    (   26) [002] d..2 29480.866674: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
25780  HwBinder:771_4-20182 (  771) [000] d..2 29480.866734: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
25781  HwBinder:771_4-20182 (  771) [000] d..3 29480.866801: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
25782     kworker/2:2-13636 (13636) [002] d..2 29480.866833: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25783  HwBinder:771_4-20182 (  771) [000] d..2 29480.866838: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25784     ksoftirqd/2-26    (   26) [002] d..2 29480.866845: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25785          <idle>-0     (-----) [000] d..1 29480.866859: cpu_idle: state=2 cpu_id=0
25786 cdsp_smem_glink-88    (   88) [002] d..2 29480.866902: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25787          <idle>-0     (-----) [002] d..1 29480.866926: cpu_idle: state=2 cpu_id=2
25788          <idle>-0     (-----) [002] d.h4 29480.871908: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25789          <idle>-0     (-----) [002] dnh5 29480.871941: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25790          <idle>-0     (-----) [002] dnh4 29480.871974: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25791          <idle>-0     (-----) [002] dnh5 29480.871992: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25792          <idle>-0     (-----) [002] .n.1 29480.872039: cpu_idle: state=4294967295 cpu_id=2
25793          <idle>-0     (-----) [002] d..2 29480.872060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25794 smem_native_cds-87    (   87) [002] d..2 29480.872122: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25795          <idle>-0     (-----) [002] d..2 29480.872129: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25796          <idle>-0     (-----) [002] dn.3 29480.872139: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25797          <idle>-0     (-----) [002] d..2 29480.872150: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25798     ksoftirqd/2-26    (   26) [002] d.s2 29480.872166: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25799     ksoftirqd/2-26    (   26) [002] dns3 29480.872178: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
25800     ksoftirqd/2-26    (   26) [002] dns2 29480.872182: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25801          <idle>-0     (-----) [000] .n.1 29480.872200: cpu_idle: state=4294967295 cpu_id=0
25802     ksoftirqd/2-26    (   26) [002] dns3 29480.872228: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
25803          <idle>-0     (-----) [000] d..2 29480.872238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25804     ksoftirqd/2-26    (   26) [002] d..2 29480.872246: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
25805     kworker/2:2-13636 (13636) [002] d..2 29480.872296: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25806  HwBinder:771_4-20182 (  771) [000] d..2 29480.872362: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
25807  HwBinder:771_4-20182 (  771) [000] d..3 29480.872406: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
25808  HwBinder:771_4-20182 (  771) [000] d..2 29480.872458: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25809          <idle>-0     (-----) [000] d..1 29480.872501: cpu_idle: state=2 cpu_id=0
25810  kworker/u16:10-23868 (23868) [002] d..2 29480.872509: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25811     ksoftirqd/2-26    (   26) [002] d..2 29480.872524: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25812 cdsp_smem_glink-88    (   88) [002] d..2 29480.872588: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25813          <idle>-0     (-----) [002] d..1 29480.872612: cpu_idle: state=2 cpu_id=2
25814          <idle>-0     (-----) [002] d.h4 29480.877586: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25815          <idle>-0     (-----) [002] dnh5 29480.877627: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25816          <idle>-0     (-----) [002] dnh4 29480.877659: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25817          <idle>-0     (-----) [002] dnh5 29480.877679: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25818          <idle>-0     (-----) [002] dnh3 29480.877796: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25819          <idle>-0     (-----) [002] .n.1 29480.877820: cpu_idle: state=4294967295 cpu_id=2
25820          <idle>-0     (-----) [002] d..2 29480.877845: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25821          <idle>-0     (-----) [000] .n.1 29480.877876: cpu_idle: state=4294967295 cpu_id=0
25822 smem_native_cds-87    (   87) [002] d..2 29480.877907: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25823          <idle>-0     (-----) [000] d..2 29480.877912: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25824          <idle>-0     (-----) [002] d..2 29480.877913: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25825          <idle>-0     (-----) [002] dn.3 29480.877926: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25826          <idle>-0     (-----) [002] d..2 29480.877937: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25827     ksoftirqd/2-26    (   26) [002] d..2 29480.877963: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25828          <idle>-0     (-----) [002] d..1 29480.877981: cpu_idle: state=2 cpu_id=2
25829  HwBinder:771_4-20182 (  771) [000] d..2 29480.877991: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
25830  HwBinder:771_4-20182 (  771) [000] d..3 29480.878056: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25831  HwBinder:771_4-20182 (  771) [000] d..2 29480.878075: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25832 cdsp_smem_glink-88    (   88) [000] d..2 29480.878137: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25833          <idle>-0     (-----) [000] d..1 29480.878158: cpu_idle: state=2 cpu_id=0
25834          <idle>-0     (-----) [006] dnh2 29480.878872: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25835          <idle>-0     (-----) [006] .n.1 29480.878881: cpu_idle: state=4294967295 cpu_id=6
25836          <idle>-0     (-----) [006] d..2 29480.878893: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25837         sugov:4-560   (  560) [006] d..2 29480.878915: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25838          <idle>-0     (-----) [006] d..1 29480.878925: cpu_idle: state=2 cpu_id=6
25839          <idle>-0     (-----) [006] ...1 29480.882661: cpu_idle: state=4294967295 cpu_id=6
25840          <idle>-0     (-----) [006] d..1 29480.882666: cpu_idle: state=2 cpu_id=6
25841          <idle>-0     (-----) [002] d.h4 29480.882711: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25842          <idle>-0     (-----) [002] dnh5 29480.882751: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25843          <idle>-0     (-----) [002] dnh4 29480.882783: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25844          <idle>-0     (-----) [002] dnh5 29480.882805: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25845          <idle>-0     (-----) [002] .n.1 29480.882853: cpu_idle: state=4294967295 cpu_id=2
25846          <idle>-0     (-----) [002] d..2 29480.882874: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25847 smem_native_cds-87    (   87) [002] d..2 29480.882932: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25848          <idle>-0     (-----) [002] d..2 29480.882938: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25849          <idle>-0     (-----) [002] dn.3 29480.882950: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25850          <idle>-0     (-----) [002] d..2 29480.882959: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25851     ksoftirqd/2-26    (   26) [002] d.s2 29480.882970: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
25852          <idle>-0     (-----) [000] .n.1 29480.882987: cpu_idle: state=4294967295 cpu_id=0
25853     ksoftirqd/2-26    (   26) [002] dns3 29480.882993: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
25854     ksoftirqd/2-26    (   26) [002] d..2 29480.883009: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25855          <idle>-0     (-----) [000] d..2 29480.883019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25856  HwBinder:771_4-20182 (  771) [000] d..2 29480.883142: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25857  kworker/u16:10-23868 (23868) [002] d..2 29480.883165: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25858     ksoftirqd/2-26    (   26) [002] d..2 29480.883202: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25859  HwBinder:771_4-20182 (  771) [000] d..3 29480.883220: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
25860          <idle>-0     (-----) [002] d..2 29480.883236: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25861  HwBinder:771_4-20182 (  771) [000] d..2 29480.883261: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25862          <idle>-0     (-----) [000] d..1 29480.883285: cpu_idle: state=2 cpu_id=0
25863 cdsp_smem_glink-88    (   88) [002] d..2 29480.883295: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25864          <idle>-0     (-----) [002] d..1 29480.883313: cpu_idle: state=2 cpu_id=2
25865          <idle>-0     (-----) [002] d.h4 29480.888289: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25866          <idle>-0     (-----) [002] dnh5 29480.888321: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25867          <idle>-0     (-----) [002] dnh4 29480.888354: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25868          <idle>-0     (-----) [002] dnh5 29480.888371: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25869          <idle>-0     (-----) [002] .n.1 29480.888418: cpu_idle: state=4294967295 cpu_id=2
25870          <idle>-0     (-----) [002] d..2 29480.888439: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25871 smem_native_cds-87    (   87) [002] d..2 29480.888501: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25872          <idle>-0     (-----) [002] d..2 29480.888508: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25873          <idle>-0     (-----) [002] dn.3 29480.888518: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25874          <idle>-0     (-----) [002] d..2 29480.888528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25875     ksoftirqd/2-26    (   26) [002] d..2 29480.888554: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25876          <idle>-0     (-----) [002] d..1 29480.888573: cpu_idle: state=2 cpu_id=2
25877          <idle>-0     (-----) [000] .n.1 29480.888578: cpu_idle: state=4294967295 cpu_id=0
25878          <idle>-0     (-----) [000] d..2 29480.888613: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25879  HwBinder:771_4-20182 (  771) [000] d..2 29480.888687: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
25880  HwBinder:771_4-20182 (  771) [000] d..3 29480.888748: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25881  HwBinder:771_4-20182 (  771) [000] d..2 29480.888765: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25882 cdsp_smem_glink-88    (   88) [000] d..2 29480.888827: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25883          <idle>-0     (-----) [000] d..1 29480.888847: cpu_idle: state=2 cpu_id=0
25884          <idle>-0     (-----) [000] d..2 29480.893466: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25885          <idle>-0     (-----) [002] d.h4 29480.893470: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25886          <idle>-0     (-----) [000] dn.3 29480.893486: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
25887          <idle>-0     (-----) [000] .n.1 29480.893492: cpu_idle: state=4294967295 cpu_id=0
25888          <idle>-0     (-----) [002] dnh5 29480.893510: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25889          <idle>-0     (-----) [000] d..2 29480.893516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
25890     ksoftirqd/0-3     (    3) [000] d.s2 29480.893529: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
25891          <idle>-0     (-----) [002] dnh4 29480.893546: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25892          <idle>-0     (-----) [002] dnh5 29480.893576: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25893     ksoftirqd/0-3     (    3) [000] d.s3 29480.893584: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25894     ksoftirqd/0-3     (    3) [000] d..2 29480.893603: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25895          <idle>-0     (-----) [002] .n.1 29480.893626: cpu_idle: state=4294967295 cpu_id=2
25896          <idle>-0     (-----) [002] d..2 29480.893651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25897 smem_native_cds-87    (   87) [002] d..2 29480.893725: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25898          <idle>-0     (-----) [001] .n.1 29480.893878: cpu_idle: state=4294967295 cpu_id=1
25899          <idle>-0     (-----) [002] d..1 29480.893901: cpu_idle: state=2 cpu_id=2
25900          <idle>-0     (-----) [001] d..2 29480.893912: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25901  kworker/u16:10-23868 (23868) [000] d..2 29480.893934: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25902          <idle>-0     (-----) [000] d..1 29480.893957: cpu_idle: state=2 cpu_id=0
25903  HwBinder:771_4-20182 (  771) [001] d..2 29480.894002: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
25904  HwBinder:771_4-20182 (  771) [001] d..3 29480.894059: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25905  HwBinder:771_4-20182 (  771) [001] d..2 29480.894077: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25906 cdsp_smem_glink-88    (   88) [001] d..2 29480.894139: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25907          <idle>-0     (-----) [001] d..1 29480.894159: cpu_idle: state=2 cpu_id=1
25908          <idle>-0     (-----) [001] ...1 29480.897965: cpu_idle: state=4294967295 cpu_id=1
25909          <idle>-0     (-----) [001] d..1 29480.897973: cpu_idle: state=2 cpu_id=1
25910          <idle>-0     (-----) [002] d.h4 29480.898013: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25911          <idle>-0     (-----) [002] dnh5 29480.898055: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25912          <idle>-0     (-----) [002] dnh4 29480.898086: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
25913          <idle>-0     (-----) [002] dnh5 29480.898114: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25914          <idle>-0     (-----) [002] dnh3 29480.898227: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
25915          <idle>-0     (-----) [002] dnh3 29480.898244: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
25916          <idle>-0     (-----) [002] dnh4 29480.898261: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
25917          <idle>-0     (-----) [002] .n.1 29480.898272: cpu_idle: state=4294967295 cpu_id=2
25918          <idle>-0     (-----) [000] .n.1 29480.898286: cpu_idle: state=4294967295 cpu_id=0
25919          <idle>-0     (-----) [002] d..2 29480.898293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25920          <idle>-0     (-----) [000] d..2 29480.898322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25921 smem_native_cds-87    (   87) [002] d..2 29480.898353: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25922          <idle>-0     (-----) [002] d..2 29480.898360: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25923          <idle>-0     (-----) [002] dn.3 29480.898373: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25924          <idle>-0     (-----) [002] d..2 29480.898384: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25925  HwBinder:771_4-20182 (  771) [000] d..2 29480.898403: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25926     ksoftirqd/2-26    (   26) [002] d..2 29480.898408: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25927          <idle>-0     (-----) [002] d..1 29480.898428: cpu_idle: state=2 cpu_id=2
25928  HwBinder:771_4-20182 (  771) [000] d..3 29480.898457: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25929  HwBinder:771_4-20182 (  771) [000] d..2 29480.898495: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25930          <idle>-0     (-----) [000] d..1 29480.898519: cpu_idle: state=2 cpu_id=0
25931          <idle>-0     (-----) [003] .n.1 29480.898592: cpu_idle: state=4294967295 cpu_id=3
25932          <idle>-0     (-----) [003] d..2 29480.898616: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
25933         sugov:0-559   (  559) [003] .... 29480.898646: clk_set_rate: pwrcl_clk 652800000
25934         sugov:0-559   (  559) [003] .... 29480.898658: clk_set_rate: cpu3_pwrcl_clk 748800000
25935         sugov:0-559   (  559) [003] .... 29480.898669: clk_set_rate: cpu2_pwrcl_clk 748800000
25936         sugov:0-559   (  559) [003] .... 29480.898680: clk_set_rate: cpu1_pwrcl_clk 748800000
25937         sugov:0-559   (  559) [003] .... 29480.898692: clk_set_rate: cpu0_pwrcl_clk 652800000
25938          <idle>-0     (-----) [001] .n.1 29480.898782: cpu_idle: state=4294967295 cpu_id=1
25939         sugov:0-559   (  559) [003] .... 29480.898808: cpu_frequency: state=652800 cpu_id=0
25940          <idle>-0     (-----) [001] d..2 29480.898813: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25941         sugov:0-559   (  559) [003] .... 29480.898826: cpu_frequency: state=652800 cpu_id=1
25942         sugov:0-559   (  559) [003] .... 29480.898831: cpu_frequency: state=652800 cpu_id=2
25943         sugov:0-559   (  559) [003] .... 29480.898836: cpu_frequency: state=652800 cpu_id=3
25944         sugov:0-559   (  559) [003] d..2 29480.898884: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25945 cdsp_smem_glink-88    (   88) [001] d..2 29480.898898: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25946          <idle>-0     (-----) [003] d..1 29480.898904: cpu_idle: state=2 cpu_id=3
25947          <idle>-0     (-----) [001] d..1 29480.898921: cpu_idle: state=2 cpu_id=1
25948          <idle>-0     (-----) [006] dnh2 29480.899313: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
25949          <idle>-0     (-----) [006] .n.1 29480.899322: cpu_idle: state=4294967295 cpu_id=6
25950          <idle>-0     (-----) [006] d..2 29480.899334: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
25951         sugov:4-560   (  560) [006] d..2 29480.899354: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25952          <idle>-0     (-----) [006] d..1 29480.899364: cpu_idle: state=2 cpu_id=6
25953          <idle>-0     (-----) [002] d.h4 29480.903614: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25954          <idle>-0     (-----) [002] dnh5 29480.903650: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25955          <idle>-0     (-----) [002] dnh4 29480.903683: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25956          <idle>-0     (-----) [002] dnh5 29480.903703: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25957          <idle>-0     (-----) [002] .n.1 29480.903752: cpu_idle: state=4294967295 cpu_id=2
25958          <idle>-0     (-----) [002] d..2 29480.903775: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25959 smem_native_cds-87    (   87) [002] d..2 29480.903838: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25960          <idle>-0     (-----) [002] d..2 29480.903846: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25961          <idle>-0     (-----) [002] dn.3 29480.903858: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25962          <idle>-0     (-----) [002] d..2 29480.903871: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25963     ksoftirqd/2-26    (   26) [002] d.s2 29480.903883: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25964          <idle>-0     (-----) [000] .n.1 29480.903906: cpu_idle: state=4294967295 cpu_id=0
25965     ksoftirqd/2-26    (   26) [002] dns3 29480.903935: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
25966          <idle>-0     (-----) [000] d..2 29480.903945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25967     ksoftirqd/2-26    (   26) [002] d..2 29480.903955: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25968  HwBinder:771_4-20182 (  771) [000] d..2 29480.904053: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
25969  HwBinder:771_4-20182 (  771) [000] d..3 29480.904127: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
25970  HwBinder:771_4-20182 (  771) [000] d..2 29480.904190: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25971          <idle>-0     (-----) [000] d..1 29480.904214: cpu_idle: state=2 cpu_id=0
25972  kworker/u16:10-23868 (23868) [002] d..2 29480.904608: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25973     ksoftirqd/2-26    (   26) [002] d..2 29480.904624: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
25974 cdsp_smem_glink-88    (   88) [002] d..2 29480.904687: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25975          <idle>-0     (-----) [002] d..1 29480.904710: cpu_idle: state=2 cpu_id=2
25976          <idle>-0     (-----) [003] d.s3 29480.904996: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
25977          <idle>-0     (-----) [003] d.s4 29480.905064: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
25978          <idle>-0     (-----) [003] dns4 29480.905081: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
25979          <idle>-0     (-----) [003] .n.1 29480.905100: cpu_idle: state=4294967295 cpu_id=3
25980          <idle>-0     (-----) [003] d..2 29480.905122: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
25981  kworker/u16:10-23868 (23868) [003] d..2 29480.905219: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25982          <idle>-0     (-----) [003] d..1 29480.905237: cpu_idle: state=2 cpu_id=3
25983          <idle>-0     (-----) [002] d.h4 29480.909245: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25984          <idle>-0     (-----) [002] dnh5 29480.909287: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
25985          <idle>-0     (-----) [002] dnh4 29480.909319: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25986          <idle>-0     (-----) [002] dnh5 29480.909339: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
25987          <idle>-0     (-----) [002] .n.1 29480.909388: cpu_idle: state=4294967295 cpu_id=2
25988          <idle>-0     (-----) [002] d..2 29480.909410: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
25989 smem_native_cds-87    (   87) [002] d..2 29480.909474: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25990          <idle>-0     (-----) [002] d..2 29480.909482: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25991          <idle>-0     (-----) [002] dn.3 29480.909493: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
25992          <idle>-0     (-----) [002] d..2 29480.909505: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
25993          <idle>-0     (-----) [000] .n.1 29480.909529: cpu_idle: state=4294967295 cpu_id=0
25994     ksoftirqd/2-26    (   26) [002] d..2 29480.909536: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25995          <idle>-0     (-----) [002] d..1 29480.909557: cpu_idle: state=2 cpu_id=2
25996          <idle>-0     (-----) [000] d..2 29480.909565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
25997  HwBinder:771_4-20182 (  771) [000] d.s2 29480.913774: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
25998  HwBinder:771_4-20182 (  771) [000] dns3 29480.913840: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
25999  HwBinder:771_4-20182 (  771) [000] d..2 29480.913868: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26000  kworker/u16:10-23868 (23868) [000] .... 29480.913924: clk_set_rate: l3_cluster0_vote_clk 403200000
26001  kworker/u16:10-23868 (23868) [000] .... 29480.913942: clk_set_rate: l3_clk 403200000
26002  kworker/u16:10-23868 (23868) [000] d..2 29480.914042: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26003  HwBinder:771_4-20182 (  771) [000] d.H2 29480.917180: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26004  HwBinder:771_4-20182 (  771) [000] d.H2 29480.917205: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26005  HwBinder:771_4-20182 (  771) [000] d.H3 29480.917224: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26006          <idle>-0     (-----) [003] .n.1 29480.917533: cpu_idle: state=4294967295 cpu_id=3
26007          <idle>-0     (-----) [003] d..2 29480.917563: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26008         sugov:0-559   (  559) [003] .... 29480.917596: clk_set_rate: pwrcl_clk 902400000
26009         sugov:0-559   (  559) [003] .... 29480.917609: clk_set_rate: cpu3_pwrcl_clk 652800000
26010         sugov:0-559   (  559) [003] .... 29480.917620: clk_set_rate: cpu2_pwrcl_clk 652800000
26011         sugov:0-559   (  559) [003] .... 29480.917632: clk_set_rate: cpu1_pwrcl_clk 652800000
26012         sugov:0-559   (  559) [003] .... 29480.917643: clk_set_rate: cpu0_pwrcl_clk 902400000
26013         sugov:0-559   (  559) [003] .... 29480.917656: cpu_frequency: state=902400 cpu_id=0
26014         sugov:0-559   (  559) [003] .... 29480.917673: cpu_frequency: state=902400 cpu_id=1
26015         sugov:0-559   (  559) [003] .... 29480.917679: cpu_frequency: state=902400 cpu_id=2
26016         sugov:0-559   (  559) [003] .... 29480.917684: cpu_frequency: state=902400 cpu_id=3
26017  HwBinder:771_4-20182 (  771) [000] d..2 29480.917724: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26018         sugov:0-559   (  559) [003] d..2 29480.917731: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26019          <idle>-0     (-----) [003] d..1 29480.917745: cpu_idle: state=2 cpu_id=3
26020  HwBinder:771_4-20182 (  771) [000] d..3 29480.917768: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26021  HwBinder:771_4-20182 (  771) [000] d..2 29480.917799: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26022          <idle>-0     (-----) [000] d..1 29480.917830: cpu_idle: state=2 cpu_id=0
26023          <idle>-0     (-----) [002] .n.1 29480.918067: cpu_idle: state=4294967295 cpu_id=2
26024          <idle>-0     (-----) [002] d..2 29480.918088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26025 cdsp_smem_glink-88    (   88) [002] d..2 29480.918144: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26026          <idle>-0     (-----) [002] d..1 29480.918160: cpu_idle: state=2 cpu_id=2
26027          <idle>-0     (-----) [006] dnh2 29480.918258: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26028          <idle>-0     (-----) [006] .n.1 29480.918268: cpu_idle: state=4294967295 cpu_id=6
26029          <idle>-0     (-----) [006] d..2 29480.918282: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26030         sugov:4-560   (  560) [006] d..2 29480.918304: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26031          <idle>-0     (-----) [006] d..1 29480.918314: cpu_idle: state=2 cpu_id=6
26032          <idle>-0     (-----) [002] d.h4 29480.925108: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26033          <idle>-0     (-----) [000] d..2 29480.925213: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26034          <idle>-0     (-----) [000] dn.3 29480.925343: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26035          <idle>-0     (-----) [002] dnh5 29480.925348: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26036          <idle>-0     (-----) [000] .n.1 29480.925387: cpu_idle: state=4294967295 cpu_id=0
26037          <idle>-0     (-----) [002] .n.1 29480.925395: cpu_idle: state=4294967295 cpu_id=2
26038          <idle>-0     (-----) [000] d..2 29480.925529: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26039          <idle>-0     (-----) [002] d..2 29480.925529: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26040     ksoftirqd/0-3     (    3) [000] d.s2 29480.925610: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26041     ksoftirqd/0-3     (    3) [000] d.s3 29480.925675: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26042     ksoftirqd/0-3     (    3) [000] d..2 29480.925714: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26043 smem_native_cds-87    (   87) [002] d..2 29480.925821: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26044          <idle>-0     (-----) [002] d.h4 29480.925937: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26045          <idle>-0     (-----) [002] d.h5 29480.926033: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26046          <idle>-0     (-----) [002] d..1 29480.926208: cpu_idle: state=2 cpu_id=2
26047          <idle>-0     (-----) [001] .n.1 29480.926399: cpu_idle: state=4294967295 cpu_id=1
26048          <idle>-0     (-----) [001] d..2 29480.926452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26049          <idle>-0     (-----) [002] ...1 29480.926885: cpu_idle: state=4294967295 cpu_id=2
26050          <idle>-0     (-----) [002] d..1 29480.926894: cpu_idle: state=2 cpu_id=2
26051  kworker/u16:10-23868 (23868) [000] .... 29480.926960: clk_set_rate: l3_cluster0_vote_clk 300000000
26052  kworker/u16:10-23868 (23868) [000] .... 29480.926979: clk_set_rate: l3_clk 300000000
26053  kworker/u16:10-23868 (23868) [000] d..2 29480.927428: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26054          <idle>-0     (-----) [000] d..1 29480.927458: cpu_idle: state=2 cpu_id=0
26055  HwBinder:771_4-20182 (  771) [001] d..2 29480.927607: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26056  HwBinder:771_4-20182 (  771) [001] d..3 29480.927724: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26057  HwBinder:771_4-20182 (  771) [001] d..2 29480.927777: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26058          <idle>-0     (-----) [001] d..1 29480.927817: cpu_idle: state=2 cpu_id=1
26059          <idle>-0     (-----) [002] .n.1 29480.928074: cpu_idle: state=4294967295 cpu_id=2
26060          <idle>-0     (-----) [002] d..2 29480.928099: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26061 cdsp_smem_glink-88    (   88) [002] d..2 29480.928231: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26062          <idle>-0     (-----) [002] d..1 29480.928249: cpu_idle: state=2 cpu_id=2
26063          <idle>-0     (-----) [002] d.h4 29480.933319: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26064          <idle>-0     (-----) [002] dnh5 29480.933349: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26065          <idle>-0     (-----) [002] dnh4 29480.933381: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26066          <idle>-0     (-----) [002] dnh5 29480.933410: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26067          <idle>-0     (-----) [002] .n.1 29480.933455: cpu_idle: state=4294967295 cpu_id=2
26068          <idle>-0     (-----) [002] d..2 29480.933478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26069 smem_native_cds-87    (   87) [002] d..2 29480.933537: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26070          <idle>-0     (-----) [002] d..2 29480.933545: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26071          <idle>-0     (-----) [002] dn.3 29480.933575: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26072          <idle>-0     (-----) [002] d..2 29480.933589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26073          <idle>-0     (-----) [000] .n.1 29480.933602: cpu_idle: state=4294967295 cpu_id=0
26074          <idle>-0     (-----) [000] d..2 29480.933636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26075     ksoftirqd/2-26    (   26) [002] d..2 29480.933637: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26076          <idle>-0     (-----) [002] d..1 29480.933655: cpu_idle: state=2 cpu_id=2
26077  HwBinder:771_4-20182 (  771) [000] d.s2 29480.933769: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26078  HwBinder:771_4-20182 (  771) [000] dns3 29480.933798: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26079  HwBinder:771_4-20182 (  771) [000] d..2 29480.933823: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26080  kworker/u16:10-23868 (23868) [000] d..2 29480.933874: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26081  HwBinder:771_4-20182 (  771) [000] d..2 29480.933894: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26082  HwBinder:771_4-20182 (  771) [000] d..3 29480.933931: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26083  HwBinder:771_4-20182 (  771) [000] d..2 29480.933970: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26084          <idle>-0     (-----) [000] d..1 29480.933990: cpu_idle: state=2 cpu_id=0
26085          <idle>-0     (-----) [002] .n.1 29480.934238: cpu_idle: state=4294967295 cpu_id=2
26086          <idle>-0     (-----) [002] d..2 29480.934266: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26087 cdsp_smem_glink-88    (   88) [002] d..2 29480.934331: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26088          <idle>-0     (-----) [002] d..1 29480.934347: cpu_idle: state=2 cpu_id=2
26089          <idle>-0     (-----) [002] d.h4 29480.939268: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26090          <idle>-0     (-----) [002] dnh5 29480.939314: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26091          <idle>-0     (-----) [002] dnh4 29480.939345: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26092          <idle>-0     (-----) [002] dnh5 29480.939365: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26093          <idle>-0     (-----) [000] .n.1 29480.939615: cpu_idle: state=4294967295 cpu_id=0
26094          <idle>-0     (-----) [000] d..2 29480.939645: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26095          <idle>-0     (-----) [002] dnh3 29480.939660: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26096  HwBinder:771_4-20182 (  771) [000] d..2 29480.939717: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26097          <idle>-0     (-----) [002] dnh3 29480.939728: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26098  HwBinder:771_4-20182 (  771) [000] d..3 29480.939756: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26099          <idle>-0     (-----) [002] dnh4 29480.939786: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26100          <idle>-0     (-----) [002] .n.1 29480.939800: cpu_idle: state=4294967295 cpu_id=2
26101  HwBinder:771_4-20182 (  771) [000] d..2 29480.939808: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26102          <idle>-0     (-----) [000] d..2 29480.939814: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26103          <idle>-0     (-----) [002] d..2 29480.939825: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26104          <idle>-0     (-----) [000] dn.3 29480.939826: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26105          <idle>-0     (-----) [000] d..2 29480.939837: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26106     ksoftirqd/0-3     (    3) [000] d.s2 29480.939846: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26107 smem_native_cds-87    (   87) [002] d..2 29480.939864: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26108     ksoftirqd/0-3     (    3) [000] d.s3 29480.939865: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26109     ksoftirqd/0-3     (    3) [000] d..2 29480.939879: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26110 cdsp_smem_glink-88    (   88) [002] d..2 29480.939920: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26111          <idle>-0     (-----) [002] d..1 29480.939971: cpu_idle: state=2 cpu_id=2
26112  kworker/u16:10-23868 (23868) [000] d..2 29480.940006: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26113          <idle>-0     (-----) [000] d..1 29480.940027: cpu_idle: state=2 cpu_id=0
26114          <idle>-0     (-----) [003] .n.1 29480.940198: cpu_idle: state=4294967295 cpu_id=3
26115          <idle>-0     (-----) [003] d..2 29480.940249: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26116         sugov:0-559   (  559) [003] .... 29480.940354: clk_set_rate: pwrcl_clk 748800000
26117         sugov:0-559   (  559) [003] .... 29480.940372: clk_set_rate: cpu3_pwrcl_clk 902400000
26118         sugov:0-559   (  559) [003] .... 29480.940465: clk_set_rate: cpu2_pwrcl_clk 902400000
26119         sugov:0-559   (  559) [003] .... 29480.940476: clk_set_rate: cpu1_pwrcl_clk 902400000
26120         sugov:0-559   (  559) [003] .... 29480.940486: clk_set_rate: cpu0_pwrcl_clk 748800000
26121         sugov:0-559   (  559) [003] .... 29480.940608: cpu_frequency: state=748800 cpu_id=0
26122         sugov:0-559   (  559) [003] .... 29480.940700: cpu_frequency: state=748800 cpu_id=1
26123         sugov:0-559   (  559) [003] .... 29480.940707: cpu_frequency: state=748800 cpu_id=2
26124         sugov:0-559   (  559) [003] .... 29480.940712: cpu_frequency: state=748800 cpu_id=3
26125         sugov:0-559   (  559) [003] d..2 29480.940775: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26126          <idle>-0     (-----) [003] d..1 29480.940798: cpu_idle: state=2 cpu_id=3
26127          <idle>-0     (-----) [006] dnh2 29480.940882: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26128          <idle>-0     (-----) [006] .n.1 29480.940904: cpu_idle: state=4294967295 cpu_id=6
26129          <idle>-0     (-----) [006] d..2 29480.940930: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26130         sugov:4-560   (  560) [006] d..2 29480.940976: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26131          <idle>-0     (-----) [006] d..1 29480.941000: cpu_idle: state=2 cpu_id=6
26132          <idle>-0     (-----) [002] d.h4 29480.943926: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26133          <idle>-0     (-----) [002] dnh5 29480.943962: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26134          <idle>-0     (-----) [002] dnh4 29480.943993: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26135          <idle>-0     (-----) [002] dnh5 29480.944011: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26136          <idle>-0     (-----) [002] .n.1 29480.944057: cpu_idle: state=4294967295 cpu_id=2
26137          <idle>-0     (-----) [002] d..2 29480.944079: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26138 smem_native_cds-87    (   87) [002] d..2 29480.944138: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26139          <idle>-0     (-----) [002] d..2 29480.944145: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26140          <idle>-0     (-----) [002] dn.3 29480.944157: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26141          <idle>-0     (-----) [002] d..2 29480.944168: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26142     ksoftirqd/2-26    (   26) [002] d.s2 29480.944181: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26143          <idle>-0     (-----) [000] .n.1 29480.944208: cpu_idle: state=4294967295 cpu_id=0
26144     ksoftirqd/2-26    (   26) [002] dns3 29480.944229: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26145          <idle>-0     (-----) [000] d..2 29480.944245: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26146     ksoftirqd/2-26    (   26) [002] d..2 29480.944246: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26147  kworker/u16:10-23868 (23868) [002] d..2 29480.944311: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26148  HwBinder:771_4-20182 (  771) [000] d..2 29480.944325: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26149     ksoftirqd/2-26    (   26) [002] d..2 29480.944340: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26150          <idle>-0     (-----) [002] dn.1 29480.944362: cpu_idle: state=2 cpu_id=2
26151  HwBinder:771_4-20182 (  771) [000] d..3 29480.944366: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26152          <idle>-0     (-----) [002] .n.1 29480.944393: cpu_idle: state=4294967295 cpu_id=2
26153  HwBinder:771_4-20182 (  771) [000] d..2 29480.944406: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26154          <idle>-0     (-----) [002] d..2 29480.944409: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26155          <idle>-0     (-----) [000] d..1 29480.944430: cpu_idle: state=2 cpu_id=0
26156 cdsp_smem_glink-88    (   88) [002] d..2 29480.944467: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26157          <idle>-0     (-----) [002] d..1 29480.944481: cpu_idle: state=2 cpu_id=2
26158          <idle>-0     (-----) [002] d.h4 29480.949453: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26159          <idle>-0     (-----) [002] dnh5 29480.949486: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26160          <idle>-0     (-----) [002] dnh4 29480.949518: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26161          <idle>-0     (-----) [002] dnh5 29480.949535: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26162          <idle>-0     (-----) [002] .n.1 29480.949582: cpu_idle: state=4294967295 cpu_id=2
26163          <idle>-0     (-----) [002] d..2 29480.949603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26164 smem_native_cds-87    (   87) [002] d..2 29480.949660: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26165          <idle>-0     (-----) [002] d..2 29480.949667: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26166          <idle>-0     (-----) [002] dn.3 29480.949685: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26167          <idle>-0     (-----) [002] d..2 29480.949694: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26168     ksoftirqd/2-26    (   26) [002] d.s2 29480.949704: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26169     ksoftirqd/2-26    (   26) [002] dns3 29480.949725: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26170          <idle>-0     (-----) [000] .n.1 29480.949733: cpu_idle: state=4294967295 cpu_id=0
26171     ksoftirqd/2-26    (   26) [002] d..2 29480.949739: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26172          <idle>-0     (-----) [000] d..2 29480.949769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26173  kworker/u16:10-23868 (23868) [002] d..2 29480.949884: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26174  HwBinder:771_4-20182 (  771) [000] d..2 29480.949888: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26175     ksoftirqd/2-26    (   26) [002] d..2 29480.949909: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26176  HwBinder:771_4-20182 (  771) [000] d..3 29480.949932: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26177          <idle>-0     (-----) [002] d..2 29480.949946: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26178  HwBinder:771_4-20182 (  771) [000] d..2 29480.949972: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26179          <idle>-0     (-----) [000] d..1 29480.949995: cpu_idle: state=2 cpu_id=0
26180 cdsp_smem_glink-88    (   88) [002] d..2 29480.950004: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26181          <idle>-0     (-----) [002] d..1 29480.950018: cpu_idle: state=2 cpu_id=2
26182          <idle>-0     (-----) [002] d.h4 29480.954985: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26183          <idle>-0     (-----) [002] dnh5 29480.955019: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26184          <idle>-0     (-----) [002] dnh4 29480.955052: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26185          <idle>-0     (-----) [002] dnh5 29480.955071: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26186          <idle>-0     (-----) [002] .n.1 29480.955116: cpu_idle: state=4294967295 cpu_id=2
26187          <idle>-0     (-----) [002] d..2 29480.955137: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26188 smem_native_cds-87    (   87) [002] d..2 29480.955198: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26189          <idle>-0     (-----) [002] d..2 29480.955205: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26190          <idle>-0     (-----) [002] dn.3 29480.955215: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26191          <idle>-0     (-----) [002] d..2 29480.955225: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26192     ksoftirqd/2-26    (   26) [002] d.s2 29480.955236: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26193     ksoftirqd/2-26    (   26) [002] dns3 29480.955257: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26194          <idle>-0     (-----) [000] .n.1 29480.955275: cpu_idle: state=4294967295 cpu_id=0
26195     ksoftirqd/2-26    (   26) [002] d..2 29480.955276: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26196          <idle>-0     (-----) [000] d..2 29480.955310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26197  HwBinder:771_4-20182 (  771) [000] d..2 29480.955385: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26198  HwBinder:771_4-20182 (  771) [000] d..3 29480.955426: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26199  HwBinder:771_4-20182 (  771) [000] d..2 29480.955493: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26200          <idle>-0     (-----) [000] d..1 29480.955513: cpu_idle: state=2 cpu_id=0
26201  kworker/u16:10-23868 (23868) [002] d..2 29480.955852: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26202     ksoftirqd/2-26    (   26) [002] d..2 29480.955867: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26203 cdsp_smem_glink-88    (   88) [002] d..2 29480.955922: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26204          <idle>-0     (-----) [002] d..1 29480.955942: cpu_idle: state=2 cpu_id=2
26205          <idle>-0     (-----) [003] d.s3 29480.956255: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26206          <idle>-0     (-----) [003] d.s4 29480.956320: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
26207          <idle>-0     (-----) [003] dns4 29480.956337: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26208          <idle>-0     (-----) [003] .n.1 29480.956358: cpu_idle: state=4294967295 cpu_id=3
26209          <idle>-0     (-----) [003] d..2 29480.956378: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26210  kworker/u16:10-23868 (23868) [003] d..2 29480.956530: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26211          <idle>-0     (-----) [003] d..1 29480.956547: cpu_idle: state=2 cpu_id=3
26212          <idle>-0     (-----) [002] d.h4 29480.960542: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26213          <idle>-0     (-----) [002] dnh5 29480.960587: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26214          <idle>-0     (-----) [002] dnh4 29480.960620: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26215          <idle>-0     (-----) [002] dnh5 29480.960640: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26216          <idle>-0     (-----) [002] dnh3 29480.960758: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26217          <idle>-0     (-----) [002] dnh3 29480.960775: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26218          <idle>-0     (-----) [002] dnh4 29480.960793: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26219          <idle>-0     (-----) [002] .n.1 29480.960804: cpu_idle: state=4294967295 cpu_id=2
26220          <idle>-0     (-----) [000] .n.1 29480.960823: cpu_idle: state=4294967295 cpu_id=0
26221          <idle>-0     (-----) [002] d..2 29480.960827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26222          <idle>-0     (-----) [000] d..2 29480.960858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26223 smem_native_cds-87    (   87) [002] d..2 29480.960887: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26224          <idle>-0     (-----) [002] d..2 29480.960894: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26225          <idle>-0     (-----) [002] dn.3 29480.960907: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26226          <idle>-0     (-----) [002] d..2 29480.960917: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26227     ksoftirqd/2-26    (   26) [002] d.s2 29480.960927: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26228  HwBinder:771_4-20182 (  771) [000] d..2 29480.960943: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26229     ksoftirqd/2-26    (   26) [002] d.s3 29480.960946: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26230     ksoftirqd/2-26    (   26) [002] d..2 29480.960974: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26231  HwBinder:771_4-20182 (  771) [000] d..3 29480.960993: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26232          <idle>-0     (-----) [002] d..2 29480.961005: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26233  HwBinder:771_4-20182 (  771) [000] d..2 29480.961032: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26234          <idle>-0     (-----) [000] d..1 29480.961055: cpu_idle: state=2 cpu_id=0
26235 cdsp_smem_glink-88    (   88) [002] d..2 29480.961060: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26236          <idle>-0     (-----) [002] d..1 29480.961077: cpu_idle: state=2 cpu_id=2
26237          <idle>-0     (-----) [003] .n.1 29480.961101: cpu_idle: state=4294967295 cpu_id=3
26238          <idle>-0     (-----) [003] d..2 29480.961126: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26239         sugov:0-559   (  559) [003] .... 29480.961157: clk_set_rate: pwrcl_clk 652800000
26240         sugov:0-559   (  559) [003] .... 29480.961169: clk_set_rate: cpu3_pwrcl_clk 748800000
26241         sugov:0-559   (  559) [003] .... 29480.961180: clk_set_rate: cpu2_pwrcl_clk 748800000
26242         sugov:0-559   (  559) [003] .... 29480.961196: clk_set_rate: cpu1_pwrcl_clk 748800000
26243         sugov:0-559   (  559) [003] .... 29480.961208: clk_set_rate: cpu0_pwrcl_clk 652800000
26244         sugov:0-559   (  559) [003] .... 29480.961324: cpu_frequency: state=652800 cpu_id=0
26245         sugov:0-559   (  559) [003] .... 29480.961342: cpu_frequency: state=652800 cpu_id=1
26246         sugov:0-559   (  559) [003] .... 29480.961348: cpu_frequency: state=652800 cpu_id=2
26247         sugov:0-559   (  559) [003] .... 29480.961354: cpu_frequency: state=652800 cpu_id=3
26248         sugov:0-559   (  559) [003] d..2 29480.961379: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26249  kworker/u16:10-23868 (23868) [003] d..2 29480.961466: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26250          <idle>-0     (-----) [003] d..1 29480.961487: cpu_idle: state=2 cpu_id=3
26251          <idle>-0     (-----) [006] dnh2 29480.961837: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26252          <idle>-0     (-----) [006] .n.1 29480.961848: cpu_idle: state=4294967295 cpu_id=6
26253          <idle>-0     (-----) [006] d..2 29480.961860: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26254         sugov:4-560   (  560) [006] d..2 29480.961883: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26255          <idle>-0     (-----) [006] d..1 29480.961893: cpu_idle: state=2 cpu_id=6
26256          <idle>-0     (-----) [006] ...1 29480.965653: cpu_idle: state=4294967295 cpu_id=6
26257          <idle>-0     (-----) [006] d..1 29480.965657: cpu_idle: state=2 cpu_id=6
26258          <idle>-0     (-----) [002] d.h4 29480.965706: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26259          <idle>-0     (-----) [002] dnh5 29480.965748: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26260          <idle>-0     (-----) [002] dnh4 29480.965782: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26261          <idle>-0     (-----) [002] dnh5 29480.965809: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26262          <idle>-0     (-----) [002] .n.1 29480.965859: cpu_idle: state=4294967295 cpu_id=2
26263          <idle>-0     (-----) [002] d..2 29480.965883: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26264 smem_native_cds-87    (   87) [002] d..2 29480.965944: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26265          <idle>-0     (-----) [002] d..2 29480.965951: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26266          <idle>-0     (-----) [002] dn.3 29480.965962: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26267          <idle>-0     (-----) [002] d..2 29480.965975: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26268     ksoftirqd/2-26    (   26) [002] d.s2 29480.965986: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26269          <idle>-0     (-----) [000] .n.1 29480.965995: cpu_idle: state=4294967295 cpu_id=0
26270          <idle>-0     (-----) [000] d..2 29480.966030: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26271     ksoftirqd/2-26    (   26) [002] dns3 29480.966039: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26272     ksoftirqd/2-26    (   26) [002] dns2 29480.966060: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
26273     ksoftirqd/2-26    (   26) [002] dns3 29480.966093: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
26274     ksoftirqd/2-26    (   26) [002] d..2 29480.966109: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
26275  HwBinder:771_4-20182 (  771) [000] d..2 29480.966115: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26276  HwBinder:771_4-20182 (  771) [000] d..3 29480.966163: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26277  HwBinder:771_4-20182 (  771) [000] d..2 29480.966214: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26278          <idle>-0     (-----) [000] d..1 29480.966237: cpu_idle: state=2 cpu_id=0
26279     kworker/2:2-13636 (13636) [002] d..2 29480.966270: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26280  kworker/u16:10-23868 (23868) [002] d..2 29480.966326: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26281     ksoftirqd/2-26    (   26) [002] d..2 29480.966339: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26282 cdsp_smem_glink-88    (   88) [002] d..2 29480.966402: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26283          <idle>-0     (-----) [002] d..1 29480.966426: cpu_idle: state=2 cpu_id=2
26284          <idle>-0     (-----) [002] d.h4 29480.971431: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26285          <idle>-0     (-----) [002] dnh5 29480.971466: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26286          <idle>-0     (-----) [002] dnh4 29480.971499: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26287          <idle>-0     (-----) [002] dnh5 29480.971519: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26288          <idle>-0     (-----) [002] .n.1 29480.971568: cpu_idle: state=4294967295 cpu_id=2
26289          <idle>-0     (-----) [002] d..2 29480.971591: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26290 smem_native_cds-87    (   87) [002] d..2 29480.971657: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26291          <idle>-0     (-----) [002] d..2 29480.971664: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26292          <idle>-0     (-----) [002] dn.3 29480.971675: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26293          <idle>-0     (-----) [002] d..2 29480.971688: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26294     ksoftirqd/2-26    (   26) [002] d.s2 29480.971698: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26295     ksoftirqd/2-26    (   26) [002] dns3 29480.971721: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26296          <idle>-0     (-----) [000] .n.1 29480.971725: cpu_idle: state=4294967295 cpu_id=0
26297     ksoftirqd/2-26    (   26) [002] d..2 29480.971736: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26298          <idle>-0     (-----) [000] d..2 29480.971764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26299  kworker/u16:10-23868 (23868) [002] d..2 29480.971892: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26300  HwBinder:771_4-20182 (  771) [000] d..2 29480.971917: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26301     ksoftirqd/2-26    (   26) [002] d..2 29480.971919: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26302          <idle>-0     (-----) [002] d..1 29480.971940: cpu_idle: state=2 cpu_id=2
26303  HwBinder:771_4-20182 (  771) [000] d..3 29480.971990: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26304  HwBinder:771_4-20182 (  771) [000] d..2 29480.972010: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26305 cdsp_smem_glink-88    (   88) [000] d..2 29480.972078: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26306          <idle>-0     (-----) [000] d..1 29480.972099: cpu_idle: state=2 cpu_id=0
26307          <idle>-0     (-----) [000] d..2 29480.975973: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26308          <idle>-0     (-----) [002] d.h4 29480.975980: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26309          <idle>-0     (-----) [000] dn.3 29480.975992: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26310          <idle>-0     (-----) [000] .n.1 29480.976000: cpu_idle: state=4294967295 cpu_id=0
26311          <idle>-0     (-----) [002] dnh5 29480.976022: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26312          <idle>-0     (-----) [000] d..2 29480.976022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26313     ksoftirqd/0-3     (    3) [000] d.s2 29480.976037: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26314          <idle>-0     (-----) [002] dnh4 29480.976056: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26315          <idle>-0     (-----) [002] dnh5 29480.976089: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26316     ksoftirqd/0-3     (    3) [000] d.s3 29480.976097: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26317     ksoftirqd/0-3     (    3) [000] d..2 29480.976116: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26318          <idle>-0     (-----) [002] .n.1 29480.976155: cpu_idle: state=4294967295 cpu_id=2
26319          <idle>-0     (-----) [002] d..2 29480.976181: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26320  kworker/u16:10-23868 (23868) [000] d..2 29480.976198: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26321          <idle>-0     (-----) [000] d..1 29480.976220: cpu_idle: state=2 cpu_id=0
26322 smem_native_cds-87    (   87) [002] d..2 29480.976247: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26323          <idle>-0     (-----) [002] d..1 29480.976270: cpu_idle: state=2 cpu_id=2
26324          <idle>-0     (-----) [001] .n.1 29480.976408: cpu_idle: state=4294967295 cpu_id=1
26325          <idle>-0     (-----) [001] d..2 29480.976440: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26326  HwBinder:771_4-20182 (  771) [001] d..2 29480.976524: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26327  HwBinder:771_4-20182 (  771) [001] d..3 29480.976589: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26328  HwBinder:771_4-20182 (  771) [001] d..2 29480.976608: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26329 cdsp_smem_glink-88    (   88) [001] d..2 29480.976677: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26330          <idle>-0     (-----) [001] d..1 29480.976700: cpu_idle: state=2 cpu_id=1
26331          <idle>-0     (-----) [002] d.h4 29480.981596: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26332          <idle>-0     (-----) [002] dnh5 29480.981638: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26333          <idle>-0     (-----) [002] dnh4 29480.981671: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26334          <idle>-0     (-----) [002] dnh5 29480.981701: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26335          <idle>-0     (-----) [002] dnh3 29480.981823: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26336          <idle>-0     (-----) [002] dnh3 29480.981843: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26337          <idle>-0     (-----) [002] dnh4 29480.981862: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26338          <idle>-0     (-----) [002] .n.1 29480.981872: cpu_idle: state=4294967295 cpu_id=2
26339          <idle>-0     (-----) [000] .n.1 29480.981886: cpu_idle: state=4294967295 cpu_id=0
26340          <idle>-0     (-----) [002] d..2 29480.981897: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26341          <idle>-0     (-----) [000] d..2 29480.981925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26342 smem_native_cds-87    (   87) [002] d..2 29480.981963: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26343          <idle>-0     (-----) [002] d..2 29480.981970: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26344          <idle>-0     (-----) [002] dn.3 29480.981984: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26345          <idle>-0     (-----) [002] d..2 29480.981994: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26346     ksoftirqd/2-26    (   26) [002] d.s2 29480.982005: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26347  HwBinder:771_4-20182 (  771) [000] d..2 29480.982011: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26348     ksoftirqd/2-26    (   26) [002] d.s3 29480.982055: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26349     ksoftirqd/2-26    (   26) [002] d..2 29480.982083: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26350  HwBinder:771_4-20182 (  771) [000] d..3 29480.982088: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26351          <idle>-0     (-----) [002] d..1 29480.982104: cpu_idle: state=2 cpu_id=2
26352  HwBinder:771_4-20182 (  771) [000] d..2 29480.982132: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26353          <idle>-0     (-----) [000] d..1 29480.982158: cpu_idle: state=2 cpu_id=0
26354          <idle>-0     (-----) [003] .n.1 29480.982175: cpu_idle: state=4294967295 cpu_id=3
26355          <idle>-0     (-----) [003] d..2 29480.982201: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26356         sugov:0-559   (  559) [003] d..2 29480.982227: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26357  kworker/u16:10-23868 (23868) [003] d..2 29480.982295: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26358 cdsp_smem_glink-88    (   88) [003] d..2 29480.982366: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26359          <idle>-0     (-----) [003] d..1 29480.982385: cpu_idle: state=2 cpu_id=3
26360          <idle>-0     (-----) [006] dnh2 29480.982895: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26361          <idle>-0     (-----) [006] .n.1 29480.982904: cpu_idle: state=4294967295 cpu_id=6
26362          <idle>-0     (-----) [006] d..2 29480.982917: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26363         sugov:4-560   (  560) [006] d..2 29480.982938: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26364          <idle>-0     (-----) [006] d..1 29480.982948: cpu_idle: state=2 cpu_id=6
26365          <idle>-0     (-----) [002] d.h4 29480.986857: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26366          <idle>-0     (-----) [002] dnh5 29480.986892: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26367          <idle>-0     (-----) [002] dnh4 29480.986925: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26368          <idle>-0     (-----) [002] dnh5 29480.986945: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26369          <idle>-0     (-----) [002] .n.1 29480.986994: cpu_idle: state=4294967295 cpu_id=2
26370          <idle>-0     (-----) [002] d..2 29480.987017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26371 smem_native_cds-87    (   87) [002] d..2 29480.987082: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26372          <idle>-0     (-----) [002] d.s4 29480.987139: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26373          <idle>-0     (-----) [000] .n.1 29480.987178: cpu_idle: state=4294967295 cpu_id=0
26374          <idle>-0     (-----) [002] dns5 29480.987184: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26375          <idle>-0     (-----) [000] d..2 29480.987217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26376          <idle>-0     (-----) [002] d..2 29480.987224: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26377  kworker/u16:10-23868 (23868) [002] d..2 29480.987302: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26378          <idle>-0     (-----) [002] d..1 29480.987326: cpu_idle: state=2 cpu_id=2
26379  HwBinder:771_4-20182 (  771) [000] d..2 29480.987348: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26380  HwBinder:771_4-20182 (  771) [000] d..3 29480.987417: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26381  HwBinder:771_4-20182 (  771) [000] d..2 29480.987436: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26382 cdsp_smem_glink-88    (   88) [000] d..2 29480.987500: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26383          <idle>-0     (-----) [000] d..1 29480.987522: cpu_idle: state=2 cpu_id=0
26384          <idle>-0     (-----) [000] d..2 29480.992167: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26385          <idle>-0     (-----) [002] d.h4 29480.992169: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26386          <idle>-0     (-----) [000] dn.3 29480.992187: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26387          <idle>-0     (-----) [000] .n.1 29480.992194: cpu_idle: state=4294967295 cpu_id=0
26388          <idle>-0     (-----) [002] dnh5 29480.992210: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26389          <idle>-0     (-----) [000] d..2 29480.992218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26390     ksoftirqd/0-3     (    3) [000] d.s2 29480.992232: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26391          <idle>-0     (-----) [002] dnh4 29480.992247: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26392          <idle>-0     (-----) [002] dnh5 29480.992281: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26393     ksoftirqd/0-3     (    3) [000] d.s3 29480.992290: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26394     ksoftirqd/0-3     (    3) [000] d..2 29480.992309: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26395          <idle>-0     (-----) [002] .n.1 29480.992335: cpu_idle: state=4294967295 cpu_id=2
26396          <idle>-0     (-----) [002] d..2 29480.992363: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26397  kworker/u16:10-23868 (23868) [000] d..2 29480.992456: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26398 smem_native_cds-87    (   87) [002] d..2 29480.992457: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26399          <idle>-0     (-----) [000] d..1 29480.992477: cpu_idle: state=2 cpu_id=0
26400          <idle>-0     (-----) [002] d..1 29480.992483: cpu_idle: state=2 cpu_id=2
26401          <idle>-0     (-----) [001] .n.1 29480.992596: cpu_idle: state=4294967295 cpu_id=1
26402          <idle>-0     (-----) [001] d..2 29480.992629: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26403  HwBinder:771_4-20182 (  771) [001] d..2 29480.992722: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26404  HwBinder:771_4-20182 (  771) [001] d..3 29480.992786: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26405  HwBinder:771_4-20182 (  771) [001] d..2 29480.992807: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26406 cdsp_smem_glink-88    (   88) [001] d..2 29480.992871: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26407          <idle>-0     (-----) [001] d..1 29480.992893: cpu_idle: state=2 cpu_id=1
26408          <idle>-0     (-----) [001] ...1 29480.996708: cpu_idle: state=4294967295 cpu_id=1
26409          <idle>-0     (-----) [001] d..1 29480.996717: cpu_idle: state=2 cpu_id=1
26410          <idle>-0     (-----) [002] d.h4 29480.996750: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26411          <idle>-0     (-----) [002] dnh5 29480.996790: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26412          <idle>-0     (-----) [002] dnh4 29480.996822: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26413          <idle>-0     (-----) [002] dnh5 29480.996853: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26414          <idle>-0     (-----) [002] .n.1 29480.996901: cpu_idle: state=4294967295 cpu_id=2
26415          <idle>-0     (-----) [002] d..2 29480.996924: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26416 smem_native_cds-87    (   87) [002] d..2 29480.996987: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26417          <idle>-0     (-----) [002] d..2 29480.996995: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26418          <idle>-0     (-----) [002] dn.3 29480.997006: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26419          <idle>-0     (-----) [002] d..2 29480.997018: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26420     ksoftirqd/2-26    (   26) [002] d.s2 29480.997035: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
26421          <idle>-0     (-----) [000] .n.1 29480.997038: cpu_idle: state=4294967295 cpu_id=0
26422     ksoftirqd/2-26    (   26) [002] dns3 29480.997052: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
26423     ksoftirqd/2-26    (   26) [002] d..2 29480.997174: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
26424          <idle>-0     (-----) [000] dnH3 29480.997184: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26425          <idle>-0     (-----) [000] dnH3 29480.997208: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26426     kworker/2:2-13636 (13636) [002] d..2 29480.997226: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26427          <idle>-0     (-----) [000] dnH4 29480.997229: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26428     ksoftirqd/2-26    (   26) [002] d.s2 29480.997234: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26429          <idle>-0     (-----) [000] d..2 29480.997271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26430     ksoftirqd/2-26    (   26) [002] d.s3 29480.997295: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26431     ksoftirqd/2-26    (   26) [002] d..2 29480.997337: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26432  HwBinder:771_4-20182 (  771) [000] d..2 29480.997352: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26433          <idle>-0     (-----) [002] d..1 29480.997359: cpu_idle: state=2 cpu_id=2
26434  HwBinder:771_4-20182 (  771) [000] d..3 29480.997415: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26435  HwBinder:771_4-20182 (  771) [000] d..2 29480.997456: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26436          <idle>-0     (-----) [000] d..1 29480.997483: cpu_idle: state=2 cpu_id=0
26437          <idle>-0     (-----) [003] .n.1 29480.997548: cpu_idle: state=4294967295 cpu_id=3
26438          <idle>-0     (-----) [003] d..2 29480.997575: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26439         sugov:0-559   (  559) [003] d..2 29480.997603: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26440  kworker/u16:10-23868 (23868) [003] d..2 29480.997665: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26441 cdsp_smem_glink-88    (   88) [003] d..2 29480.997735: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26442          <idle>-0     (-----) [003] d..1 29480.997755: cpu_idle: state=2 cpu_id=3
26443          <idle>-0     (-----) [006] dnh2 29480.998259: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26444          <idle>-0     (-----) [006] .n.1 29480.998268: cpu_idle: state=4294967295 cpu_id=6
26445          <idle>-0     (-----) [006] d..2 29480.998279: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26446         sugov:4-560   (  560) [006] d..2 29480.998300: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26447          <idle>-0     (-----) [006] d..1 29480.998310: cpu_idle: state=2 cpu_id=6
26448          <idle>-0     (-----) [006] ...1 29481.002059: cpu_idle: state=4294967295 cpu_id=6
26449          <idle>-0     (-----) [006] d..1 29481.002065: cpu_idle: state=2 cpu_id=6
26450          <idle>-0     (-----) [002] d.h4 29481.002113: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26451          <idle>-0     (-----) [002] dnh5 29481.002159: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26452          <idle>-0     (-----) [002] dnh4 29481.002194: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26453          <idle>-0     (-----) [002] dnh5 29481.002213: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26454          <idle>-0     (-----) [002] .n.1 29481.002261: cpu_idle: state=4294967295 cpu_id=2
26455          <idle>-0     (-----) [002] d..2 29481.002284: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26456 smem_native_cds-87    (   87) [002] d..2 29481.002348: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26457          <idle>-0     (-----) [002] d..2 29481.002356: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26458          <idle>-0     (-----) [002] dn.3 29481.002367: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26459          <idle>-0     (-----) [002] d..2 29481.002379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26460     ksoftirqd/2-26    (   26) [002] d.s2 29481.002390: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26461          <idle>-0     (-----) [000] .n.1 29481.002399: cpu_idle: state=4294967295 cpu_id=0
26462          <idle>-0     (-----) [000] d..2 29481.002434: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26463     ksoftirqd/2-26    (   26) [002] dns3 29481.002444: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26464     ksoftirqd/2-26    (   26) [002] d..2 29481.002460: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26465  HwBinder:771_4-20182 (  771) [000] d..2 29481.002546: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26466  HwBinder:771_4-20182 (  771) [000] d..3 29481.002628: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26467  HwBinder:771_4-20182 (  771) [000] d..2 29481.002684: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26468          <idle>-0     (-----) [000] d..1 29481.002719: cpu_idle: state=2 cpu_id=0
26469  kworker/u16:10-23868 (23868) [002] d..2 29481.002729: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26470     ksoftirqd/2-26    (   26) [002] d..2 29481.002745: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26471 cdsp_smem_glink-88    (   88) [002] d..2 29481.002805: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26472          <idle>-0     (-----) [002] d..1 29481.002830: cpu_idle: state=2 cpu_id=2
26473          <idle>-0     (-----) [002] d.h4 29481.007821: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26474          <idle>-0     (-----) [002] dnh5 29481.007856: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26475          <idle>-0     (-----) [002] dnh4 29481.007893: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26476          <idle>-0     (-----) [002] dnh5 29481.007911: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26477          <idle>-0     (-----) [002] .n.1 29481.007960: cpu_idle: state=4294967295 cpu_id=2
26478          <idle>-0     (-----) [002] d..2 29481.007983: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26479 smem_native_cds-87    (   87) [002] d..2 29481.008048: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26480          <idle>-0     (-----) [002] d..2 29481.008057: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26481          <idle>-0     (-----) [002] dn.3 29481.008067: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26482          <idle>-0     (-----) [002] d..2 29481.008079: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26483     ksoftirqd/2-26    (   26) [002] d.s2 29481.008090: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26484          <idle>-0     (-----) [000] .n.1 29481.008110: cpu_idle: state=4294967295 cpu_id=0
26485     ksoftirqd/2-26    (   26) [002] d.s3 29481.008112: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26486     ksoftirqd/2-26    (   26) [002] d..2 29481.008132: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26487          <idle>-0     (-----) [000] d..2 29481.008147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26488  HwBinder:771_4-20182 (  771) [000] d..2 29481.008228: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26489  HwBinder:771_4-20182 (  771) [000] d..3 29481.008271: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26490  HwBinder:771_4-20182 (  771) [000] d..2 29481.008317: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26491          <idle>-0     (-----) [000] d..1 29481.008339: cpu_idle: state=2 cpu_id=0
26492  kworker/u16:10-23868 (23868) [002] d..2 29481.008407: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26493 cdsp_smem_glink-88    (   88) [002] d..2 29481.008468: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26494          <idle>-0     (-----) [002] d..1 29481.008491: cpu_idle: state=2 cpu_id=2
26495          <idle>-0     (-----) [003] d.s3 29481.008758: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26496          <idle>-0     (-----) [003] d.s4 29481.008810: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
26497          <idle>-0     (-----) [003] dns4 29481.008820: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26498          <idle>-0     (-----) [003] .n.1 29481.008832: cpu_idle: state=4294967295 cpu_id=3
26499          <idle>-0     (-----) [003] d..2 29481.008853: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26500  kworker/u16:10-23868 (23868) [003] d..2 29481.008945: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26501          <idle>-0     (-----) [003] d..1 29481.008964: cpu_idle: state=2 cpu_id=3
26502          <idle>-0     (-----) [002] d.h4 29481.012894: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26503          <idle>-0     (-----) [002] dnh5 29481.012934: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26504          <idle>-0     (-----) [002] dnh4 29481.012967: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26505          <idle>-0     (-----) [002] dnh5 29481.012986: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26506          <idle>-0     (-----) [002] .n.1 29481.013034: cpu_idle: state=4294967295 cpu_id=2
26507          <idle>-0     (-----) [002] d..2 29481.013057: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26508 smem_native_cds-87    (   87) [002] d..2 29481.013120: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26509          <idle>-0     (-----) [002] d..2 29481.013127: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26510          <idle>-0     (-----) [002] dn.3 29481.013138: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26511          <idle>-0     (-----) [002] d..2 29481.013149: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26512     ksoftirqd/2-26    (   26) [002] d.s2 29481.013160: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26513          <idle>-0     (-----) [000] .n.1 29481.013180: cpu_idle: state=4294967295 cpu_id=0
26514     ksoftirqd/2-26    (   26) [002] d.s3 29481.013212: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26515          <idle>-0     (-----) [000] d..2 29481.013216: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26516     ksoftirqd/2-26    (   26) [002] d..2 29481.013233: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26517  kworker/u16:10-23868 (23868) [002] d..2 29481.013377: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26518          <idle>-0     (-----) [002] d..1 29481.013399: cpu_idle: state=2 cpu_id=2
26519  HwBinder:771_4-20182 (  771) [000] d..2 29481.013456: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26520  HwBinder:771_4-20182 (  771) [000] d..3 29481.013525: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26521  HwBinder:771_4-20182 (  771) [000] d..2 29481.013546: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26522 cdsp_smem_glink-88    (   88) [000] d..2 29481.013608: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26523          <idle>-0     (-----) [000] d..1 29481.013631: cpu_idle: state=2 cpu_id=0
26524          <idle>-0     (-----) [002] d.h4 29481.015641: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26525          <idle>-0     (-----) [002] dnh5 29481.015676: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26526          <idle>-0     (-----) [002] .n.1 29481.015695: cpu_idle: state=4294967295 cpu_id=2
26527          <idle>-0     (-----) [002] d..2 29481.015719: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26528 smem_native_cds-87    (   87) [002] d..2 29481.015785: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26529          <idle>-0     (-----) [002] d..2 29481.015791: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26530          <idle>-0     (-----) [002] dn.3 29481.015803: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26531          <idle>-0     (-----) [002] d..2 29481.015814: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26532     ksoftirqd/2-26    (   26) [002] d..2 29481.015845: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26533          <idle>-0     (-----) [002] d..1 29481.015866: cpu_idle: state=0 cpu_id=2
26534          <idle>-0     (-----) [002] d.h4 29481.017682: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26535          <idle>-0     (-----) [002] d.h5 29481.017712: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26536          <idle>-0     (-----) [002] d..2 29481.017760: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26537          <idle>-0     (-----) [002] dn.3 29481.017771: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26538          <idle>-0     (-----) [002] dnH3 29481.017852: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26539          <idle>-0     (-----) [002] dnH3 29481.017871: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26540          <idle>-0     (-----) [002] dnH4 29481.017889: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26541          <idle>-0     (-----) [002] dns3 29481.017902: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26542          <idle>-0     (-----) [002] dns4 29481.017949: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26543          <idle>-0     (-----) [002] .n.1 29481.017962: cpu_idle: state=4294967295 cpu_id=2
26544          <idle>-0     (-----) [002] d..2 29481.017982: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26545     ksoftirqd/2-26    (   26) [002] d..2 29481.018017: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26546          <idle>-0     (-----) [000] .n.1 29481.018029: cpu_idle: state=4294967295 cpu_id=0
26547          <idle>-0     (-----) [002] d..1 29481.018034: cpu_idle: state=0 cpu_id=2
26548          <idle>-0     (-----) [000] d..2 29481.018075: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26549  HwBinder:771_4-20182 (  771) [000] d..2 29481.018154: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26550          <idle>-0     (-----) [003] .n.1 29481.018214: cpu_idle: state=4294967295 cpu_id=3
26551  HwBinder:771_4-20182 (  771) [000] d..3 29481.018231: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26552          <idle>-0     (-----) [003] d..2 29481.018257: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26553  HwBinder:771_4-20182 (  771) [000] d..2 29481.018284: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26554         sugov:0-559   (  559) [003] d..2 29481.018286: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26555          <idle>-0     (-----) [000] d..1 29481.018311: cpu_idle: state=2 cpu_id=0
26556  kworker/u16:10-23868 (23868) [003] d..2 29481.018349: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26557 cdsp_smem_glink-88    (   88) [003] d..2 29481.018423: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26558          <idle>-0     (-----) [003] d..1 29481.018444: cpu_idle: state=2 cpu_id=3
26559          <idle>-0     (-----) [006] dnh2 29481.018940: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26560          <idle>-0     (-----) [006] .n.1 29481.018950: cpu_idle: state=4294967295 cpu_id=6
26561          <idle>-0     (-----) [006] d..2 29481.018961: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26562         sugov:4-560   (  560) [006] d..2 29481.018984: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26563          <idle>-0     (-----) [006] d..1 29481.018994: cpu_idle: state=2 cpu_id=6
26564          <idle>-0     (-----) [002] ...1 29481.019889: cpu_idle: state=4294967295 cpu_id=2
26565          <idle>-0     (-----) [002] d..1 29481.019897: cpu_idle: state=2 cpu_id=2
26566          <idle>-0     (-----) [002] d.h4 29481.024890: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26567          <idle>-0     (-----) [002] dnh5 29481.024929: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26568          <idle>-0     (-----) [002] dnh4 29481.024962: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26569          <idle>-0     (-----) [002] dnh5 29481.024982: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26570          <idle>-0     (-----) [002] .n.1 29481.025030: cpu_idle: state=4294967295 cpu_id=2
26571          <idle>-0     (-----) [002] d..2 29481.025054: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26572 smem_native_cds-87    (   87) [002] d..2 29481.025119: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26573          <idle>-0     (-----) [002] d..2 29481.025126: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26574          <idle>-0     (-----) [002] dn.3 29481.025137: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26575          <idle>-0     (-----) [002] d..2 29481.025149: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26576     ksoftirqd/2-26    (   26) [002] d.s2 29481.025161: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26577          <idle>-0     (-----) [000] .n.1 29481.025183: cpu_idle: state=4294967295 cpu_id=0
26578     ksoftirqd/2-26    (   26) [002] d.s3 29481.025210: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26579          <idle>-0     (-----) [000] d..2 29481.025223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26580     ksoftirqd/2-26    (   26) [002] d..2 29481.025229: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26581  HwBinder:771_4-20182 (  771) [000] d..2 29481.025358: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26582  kworker/u16:10-23868 (23868) [002] d..2 29481.025375: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26583          <idle>-0     (-----) [002] d..1 29481.025397: cpu_idle: state=2 cpu_id=2
26584  HwBinder:771_4-20182 (  771) [000] d..3 29481.025429: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26585  HwBinder:771_4-20182 (  771) [000] d..2 29481.025471: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26586          <idle>-0     (-----) [000] d..1 29481.025497: cpu_idle: state=2 cpu_id=0
26587          <idle>-0     (-----) [002] .n.1 29481.025865: cpu_idle: state=4294967295 cpu_id=2
26588          <idle>-0     (-----) [002] d..2 29481.025894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26589 cdsp_smem_glink-88    (   88) [002] d..2 29481.025971: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26590          <idle>-0     (-----) [002] d..1 29481.025990: cpu_idle: state=2 cpu_id=2
26591          <idle>-0     (-----) [002] d.h4 29481.030993: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26592          <idle>-0     (-----) [002] dnh5 29481.031028: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26593          <idle>-0     (-----) [002] dnh4 29481.031061: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26594          <idle>-0     (-----) [002] dnh5 29481.031080: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26595          <idle>-0     (-----) [002] .n.1 29481.031127: cpu_idle: state=4294967295 cpu_id=2
26596          <idle>-0     (-----) [002] d..2 29481.031151: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26597 smem_native_cds-87    (   87) [002] d..2 29481.031215: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26598          <idle>-0     (-----) [002] d..2 29481.031222: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26599          <idle>-0     (-----) [002] dn.3 29481.031235: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26600          <idle>-0     (-----) [002] d..2 29481.031245: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26601     ksoftirqd/2-26    (   26) [002] d.s2 29481.031257: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26602     ksoftirqd/2-26    (   26) [002] d.s3 29481.031278: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26603          <idle>-0     (-----) [000] .n.1 29481.031290: cpu_idle: state=4294967295 cpu_id=0
26604     ksoftirqd/2-26    (   26) [002] d..2 29481.031300: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26605          <idle>-0     (-----) [000] d..2 29481.031327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26606  kworker/u16:10-23868 (23868) [002] d..2 29481.031374: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26607          <idle>-0     (-----) [002] d..1 29481.031396: cpu_idle: state=2 cpu_id=2
26608  HwBinder:771_4-20182 (  771) [000] d..2 29481.031409: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26609  HwBinder:771_4-20182 (  771) [000] d..3 29481.031477: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26610  HwBinder:771_4-20182 (  771) [000] d..2 29481.031496: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26611 cdsp_smem_glink-88    (   88) [000] d..2 29481.031561: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26612          <idle>-0     (-----) [000] d..1 29481.031582: cpu_idle: state=2 cpu_id=0
26613          <idle>-0     (-----) [000] d..2 29481.036229: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26614          <idle>-0     (-----) [002] d.h4 29481.036235: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26615          <idle>-0     (-----) [000] dn.3 29481.036248: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26616          <idle>-0     (-----) [000] .n.1 29481.036256: cpu_idle: state=4294967295 cpu_id=0
26617          <idle>-0     (-----) [002] dnh5 29481.036277: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26618          <idle>-0     (-----) [000] d..2 29481.036282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26619     ksoftirqd/0-3     (    3) [000] d.s2 29481.036296: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26620          <idle>-0     (-----) [002] dnh4 29481.036313: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26621          <idle>-0     (-----) [002] dnh5 29481.036345: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26622     ksoftirqd/0-3     (    3) [000] d.s3 29481.036355: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26623     ksoftirqd/0-3     (    3) [000] d..2 29481.036375: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26624          <idle>-0     (-----) [002] .n.1 29481.036399: cpu_idle: state=4294967295 cpu_id=2
26625          <idle>-0     (-----) [002] d..2 29481.036427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26626  kworker/u16:10-23868 (23868) [000] d..2 29481.036516: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26627 smem_native_cds-87    (   87) [002] d..2 29481.036519: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26628          <idle>-0     (-----) [000] d..1 29481.036537: cpu_idle: state=2 cpu_id=0
26629          <idle>-0     (-----) [002] d..1 29481.036543: cpu_idle: state=2 cpu_id=2
26630          <idle>-0     (-----) [001] .n.1 29481.036677: cpu_idle: state=4294967295 cpu_id=1
26631          <idle>-0     (-----) [001] d..2 29481.036711: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26632  HwBinder:771_4-20182 (  771) [001] d..2 29481.036796: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26633  HwBinder:771_4-20182 (  771) [001] d..3 29481.036866: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26634  HwBinder:771_4-20182 (  771) [001] d..2 29481.036885: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26635 cdsp_smem_glink-88    (   88) [001] d..2 29481.036948: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26636          <idle>-0     (-----) [001] d..1 29481.036970: cpu_idle: state=2 cpu_id=1
26637          <idle>-0     (-----) [001] ...1 29481.040760: cpu_idle: state=4294967295 cpu_id=1
26638          <idle>-0     (-----) [001] d..1 29481.040769: cpu_idle: state=2 cpu_id=1
26639          <idle>-0     (-----) [002] d.h4 29481.040805: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26640          <idle>-0     (-----) [002] dnh5 29481.040852: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26641          <idle>-0     (-----) [002] dnh4 29481.040886: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26642          <idle>-0     (-----) [002] dnh5 29481.040917: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26643          <idle>-0     (-----) [002] dnh3 29481.041037: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26644          <idle>-0     (-----) [002] dnh3 29481.041056: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26645          <idle>-0     (-----) [002] dnh4 29481.041077: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26646          <idle>-0     (-----) [000] .n.1 29481.041082: cpu_idle: state=4294967295 cpu_id=0
26647          <idle>-0     (-----) [002] .n.1 29481.041089: cpu_idle: state=4294967295 cpu_id=2
26648          <idle>-0     (-----) [000] d..2 29481.041114: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26649          <idle>-0     (-----) [002] d..2 29481.041119: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26650 smem_native_cds-87    (   87) [002] d..2 29481.041185: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26651          <idle>-0     (-----) [002] d..2 29481.041191: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26652  HwBinder:771_4-20182 (  771) [000] d..2 29481.041195: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26653          <idle>-0     (-----) [002] dn.3 29481.041205: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26654          <idle>-0     (-----) [002] d..2 29481.041216: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26655     ksoftirqd/2-26    (   26) [002] d.s2 29481.041227: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26656  HwBinder:771_4-20182 (  771) [000] d..3 29481.041264: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26657     ksoftirqd/2-26    (   26) [002] d.s3 29481.041287: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26658  HwBinder:771_4-20182 (  771) [000] d..2 29481.041322: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26659     ksoftirqd/2-26    (   26) [002] d..2 29481.041327: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26660          <idle>-0     (-----) [000] d..1 29481.041345: cpu_idle: state=2 cpu_id=0
26661          <idle>-0     (-----) [002] d..1 29481.041352: cpu_idle: state=2 cpu_id=2
26662          <idle>-0     (-----) [003] .n.1 29481.041388: cpu_idle: state=4294967295 cpu_id=3
26663          <idle>-0     (-----) [003] d..2 29481.041415: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26664         sugov:0-559   (  559) [003] d..2 29481.041441: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26665  kworker/u16:10-23868 (23868) [003] d..2 29481.041503: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26666 cdsp_smem_glink-88    (   88) [003] d..2 29481.041572: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26667          <idle>-0     (-----) [003] d..1 29481.041591: cpu_idle: state=2 cpu_id=3
26668          <idle>-0     (-----) [006] dnh2 29481.042106: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26669          <idle>-0     (-----) [006] .n.1 29481.042116: cpu_idle: state=4294967295 cpu_id=6
26670          <idle>-0     (-----) [006] d..2 29481.042128: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26671         sugov:4-560   (  560) [006] d..2 29481.042155: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26672          <idle>-0     (-----) [006] d..1 29481.042164: cpu_idle: state=2 cpu_id=6
26673          <idle>-0     (-----) [002] d.h4 29481.046341: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26674          <idle>-0     (-----) [002] dnh5 29481.046377: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26675          <idle>-0     (-----) [002] dnh4 29481.046409: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26676          <idle>-0     (-----) [002] dnh5 29481.046429: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26677          <idle>-0     (-----) [002] .n.1 29481.046478: cpu_idle: state=4294967295 cpu_id=2
26678          <idle>-0     (-----) [002] d..2 29481.046501: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26679 smem_native_cds-87    (   87) [002] d..2 29481.046564: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26680          <idle>-0     (-----) [002] d..2 29481.046572: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26681          <idle>-0     (-----) [002] dn.3 29481.046582: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26682          <idle>-0     (-----) [002] d..2 29481.046595: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26683     ksoftirqd/2-26    (   26) [002] d.s2 29481.046605: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26684          <idle>-0     (-----) [000] .n.1 29481.046634: cpu_idle: state=4294967295 cpu_id=0
26685     ksoftirqd/2-26    (   26) [002] d.s3 29481.046654: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26686          <idle>-0     (-----) [000] d..2 29481.046672: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26687     ksoftirqd/2-26    (   26) [002] d..2 29481.046674: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26688  HwBinder:771_4-20182 (  771) [000] d..2 29481.046800: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
26689  kworker/u16:10-23868 (23868) [002] d..2 29481.046815: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26690          <idle>-0     (-----) [002] d..1 29481.046838: cpu_idle: state=2 cpu_id=2
26691  HwBinder:771_4-20182 (  771) [000] d..3 29481.046871: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26692  HwBinder:771_4-20182 (  771) [000] d..2 29481.046911: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26693          <idle>-0     (-----) [000] d..1 29481.046939: cpu_idle: state=2 cpu_id=0
26694          <idle>-0     (-----) [002] .n.1 29481.047307: cpu_idle: state=4294967295 cpu_id=2
26695          <idle>-0     (-----) [002] d..2 29481.047341: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26696 cdsp_smem_glink-88    (   88) [002] d..2 29481.047423: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26697          <idle>-0     (-----) [002] d..2 29481.047430: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26698          <idle>-0     (-----) [002] dn.3 29481.047444: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26699          <idle>-0     (-----) [002] d..2 29481.047455: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26700     ksoftirqd/2-26    (   26) [002] d..2 29481.047482: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26701          <idle>-0     (-----) [002] d..1 29481.047500: cpu_idle: state=2 cpu_id=2
26702          <idle>-0     (-----) [002] d.h4 29481.052504: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26703          <idle>-0     (-----) [002] dnh5 29481.052539: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26704          <idle>-0     (-----) [002] dnh4 29481.052572: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26705          <idle>-0     (-----) [002] dnh5 29481.052592: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26706          <idle>-0     (-----) [002] .n.1 29481.052642: cpu_idle: state=4294967295 cpu_id=2
26707          <idle>-0     (-----) [002] d..2 29481.052666: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26708 smem_native_cds-87    (   87) [002] d..2 29481.052730: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26709          <idle>-0     (-----) [002] d..2 29481.052736: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26710          <idle>-0     (-----) [002] dn.3 29481.052748: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26711          <idle>-0     (-----) [002] d..2 29481.052759: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26712     ksoftirqd/2-26    (   26) [002] d.s2 29481.052771: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26713     ksoftirqd/2-26    (   26) [002] d.s3 29481.052792: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26714          <idle>-0     (-----) [000] .n.1 29481.052799: cpu_idle: state=4294967295 cpu_id=0
26715     ksoftirqd/2-26    (   26) [002] d..2 29481.052811: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26716          <idle>-0     (-----) [000] d..2 29481.052837: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26717  kworker/u16:10-23868 (23868) [002] d..2 29481.052884: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26718          <idle>-0     (-----) [002] d..1 29481.052908: cpu_idle: state=2 cpu_id=2
26719  HwBinder:771_4-20182 (  771) [000] d.s2 29481.053777: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26720  HwBinder:771_4-20182 (  771) [000] dns3 29481.053840: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26721  HwBinder:771_4-20182 (  771) [000] d..2 29481.053868: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26722  kworker/u16:10-23868 (23868) [000] d..2 29481.053935: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26723  HwBinder:771_4-20182 (  771) [000] d.H2 29481.057186: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26724  HwBinder:771_4-20182 (  771) [000] d.H2 29481.057210: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26725  HwBinder:771_4-20182 (  771) [000] d.H3 29481.057230: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26726  HwBinder:771_4-20182 (  771) [000] d.s2 29481.057241: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26727  HwBinder:771_4-20182 (  771) [000] d.s3 29481.057293: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26728          <idle>-0     (-----) [003] .n.1 29481.057550: cpu_idle: state=4294967295 cpu_id=3
26729          <idle>-0     (-----) [003] d..2 29481.057583: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26730         sugov:0-559   (  559) [003] .... 29481.057616: clk_set_rate: pwrcl_clk 825600000
26731         sugov:0-559   (  559) [003] .... 29481.057630: clk_set_rate: cpu3_pwrcl_clk 652800000
26732         sugov:0-559   (  559) [003] .... 29481.057644: clk_set_rate: cpu2_pwrcl_clk 652800000
26733         sugov:0-559   (  559) [003] .... 29481.057655: clk_set_rate: cpu1_pwrcl_clk 652800000
26734         sugov:0-559   (  559) [003] .... 29481.057667: clk_set_rate: cpu0_pwrcl_clk 825600000
26735         sugov:0-559   (  559) [003] .... 29481.057681: cpu_frequency: state=825600 cpu_id=0
26736         sugov:0-559   (  559) [003] .... 29481.057701: cpu_frequency: state=825600 cpu_id=1
26737         sugov:0-559   (  559) [003] .... 29481.057706: cpu_frequency: state=825600 cpu_id=2
26738         sugov:0-559   (  559) [003] .... 29481.057712: cpu_frequency: state=825600 cpu_id=3
26739         sugov:0-559   (  559) [003] d..2 29481.057739: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26740  kworker/u16:10-23868 (23868) [003] d..2 29481.057890: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26741          <idle>-0     (-----) [003] d..1 29481.057907: cpu_idle: state=2 cpu_id=3
26742          <idle>-0     (-----) [006] dnh2 29481.058256: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26743          <idle>-0     (-----) [006] .n.1 29481.058266: cpu_idle: state=4294967295 cpu_id=6
26744          <idle>-0     (-----) [006] d..2 29481.058278: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26745         sugov:4-560   (  560) [006] d..2 29481.058301: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26746          <idle>-0     (-----) [006] d..1 29481.058311: cpu_idle: state=2 cpu_id=6
26747  HwBinder:771_4-20182 (  771) [000] d.s2 29481.060432: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26748  HwBinder:771_4-20182 (  771) [000] dns3 29481.060481: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26749  HwBinder:771_4-20182 (  771) [000] d..2 29481.060502: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26750  kworker/u16:10-23868 (23868) [000] d..2 29481.060558: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26751  HwBinder:771_4-20182 (  771) [000] d..2 29481.061067: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26752  HwBinder:771_4-20182 (  771) [000] d..3 29481.061124: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26753  HwBinder:771_4-20182 (  771) [000] d..2 29481.061143: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26754 cdsp_smem_glink-88    (   88) [000] d..2 29481.061211: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26755          <idle>-0     (-----) [000] d..1 29481.061240: cpu_idle: state=2 cpu_id=0
26756          <idle>-0     (-----) [002] d.h4 29481.065818: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26757          <idle>-0     (-----) [000] d..2 29481.065823: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26758          <idle>-0     (-----) [000] dn.3 29481.065844: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26759          <idle>-0     (-----) [000] .n.1 29481.065850: cpu_idle: state=4294967295 cpu_id=0
26760          <idle>-0     (-----) [002] dnh5 29481.065860: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26761          <idle>-0     (-----) [000] d..2 29481.065870: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26762     ksoftirqd/0-3     (    3) [000] d.s2 29481.065879: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26763          <idle>-0     (-----) [002] .n.1 29481.065879: cpu_idle: state=4294967295 cpu_id=2
26764     ksoftirqd/0-3     (    3) [000] d.s3 29481.065904: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26765          <idle>-0     (-----) [002] d..2 29481.065905: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26766     ksoftirqd/0-3     (    3) [000] d.s2 29481.065919: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
26767     ksoftirqd/0-3     (    3) [000] d.s3 29481.065947: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
26768     ksoftirqd/0-3     (    3) [000] d..2 29481.065968: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26769 smem_native_cds-87    (   87) [002] d..2 29481.065977: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26770          <idle>-0     (-----) [002] d..1 29481.065998: cpu_idle: state=2 cpu_id=2
26771          <idle>-0     (-----) [002] ...1 29481.066451: cpu_idle: state=4294967295 cpu_id=2
26772          <idle>-0     (-----) [002] d..1 29481.066463: cpu_idle: state=2 cpu_id=2
26773  kworker/u16:10-23868 (23868) [000] .... 29481.066904: clk_set_rate: l3_cluster0_vote_clk 403200000
26774          <idle>-0     (-----) [002] ...1 29481.066905: cpu_idle: state=4294967295 cpu_id=2
26775  kworker/u16:10-23868 (23868) [000] .... 29481.066913: clk_set_rate: l3_clk 403200000
26776          <idle>-0     (-----) [002] d..1 29481.066915: cpu_idle: state=2 cpu_id=2
26777  kworker/u16:10-23868 (23868) [000] d..2 29481.066953: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
26778     kworker/0:0-13450 (13450) [000] d..2 29481.067021: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26779          <idle>-0     (-----) [000] d..1 29481.067038: cpu_idle: state=2 cpu_id=0
26780          <idle>-0     (-----) [000] d..2 29481.071535: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26781          <idle>-0     (-----) [002] d.h4 29481.071547: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26782          <idle>-0     (-----) [000] dn.3 29481.071549: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26783          <idle>-0     (-----) [000] .n.1 29481.071560: cpu_idle: state=4294967295 cpu_id=0
26784          <idle>-0     (-----) [000] d..2 29481.071582: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26785          <idle>-0     (-----) [002] d.h5 29481.071587: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26786     ksoftirqd/0-3     (    3) [000] d.s2 29481.071591: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26787     ksoftirqd/0-3     (    3) [000] d.s3 29481.071613: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26788     ksoftirqd/0-3     (    3) [000] d..2 29481.071627: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26789          <idle>-0     (-----) [002] ...1 29481.071635: cpu_idle: state=4294967295 cpu_id=2
26790          <idle>-0     (-----) [002] d..1 29481.071644: cpu_idle: state=2 cpu_id=2
26791  kworker/u16:10-23868 (23868) [000] d..2 29481.071689: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26792          <idle>-0     (-----) [000] d..1 29481.071706: cpu_idle: state=2 cpu_id=0
26793          <idle>-0     (-----) [001] .n.1 29481.071882: cpu_idle: state=4294967295 cpu_id=1
26794          <idle>-0     (-----) [001] d..2 29481.071908: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26795  HwBinder:771_4-20182 (  771) [001] d..2 29481.072122: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26796  HwBinder:771_4-20182 (  771) [001] d..3 29481.072177: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26797  HwBinder:771_4-20182 (  771) [001] d..2 29481.072197: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26798 cdsp_smem_glink-88    (   88) [001] d..2 29481.072250: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26799          <idle>-0     (-----) [001] d..1 29481.072273: cpu_idle: state=2 cpu_id=1
26800          <idle>-0     (-----) [001] ...1 29481.075926: cpu_idle: state=4294967295 cpu_id=1
26801          <idle>-0     (-----) [001] d..1 29481.075933: cpu_idle: state=2 cpu_id=1
26802          <idle>-0     (-----) [002] d.h4 29481.075962: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26803          <idle>-0     (-----) [002] dnh5 29481.075994: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26804          <idle>-0     (-----) [002] dnh4 29481.076023: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26805          <idle>-0     (-----) [002] dnh5 29481.076049: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26806          <idle>-0     (-----) [002] .n.1 29481.076091: cpu_idle: state=4294967295 cpu_id=2
26807          <idle>-0     (-----) [002] d..2 29481.076111: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26808 smem_native_cds-87    (   87) [002] d..2 29481.076161: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26809          <idle>-0     (-----) [002] d..2 29481.076167: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26810          <idle>-0     (-----) [002] dn.3 29481.076178: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26811          <idle>-0     (-----) [002] d..2 29481.076192: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26812     ksoftirqd/2-26    (   26) [002] d.s2 29481.076203: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26813          <idle>-0     (-----) [000] .n.1 29481.076227: cpu_idle: state=4294967295 cpu_id=0
26814     ksoftirqd/2-26    (   26) [002] dns3 29481.076242: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26815     ksoftirqd/2-26    (   26) [002] d..2 29481.076256: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26816          <idle>-0     (-----) [000] d..2 29481.076260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26817  kworker/u16:10-23868 (23868) [002] .... 29481.076314: clk_set_rate: l3_cluster0_vote_clk 300000000
26818  kworker/u16:10-23868 (23868) [002] .... 29481.076322: clk_set_rate: l3_clk 300000000
26819  HwBinder:771_4-20182 (  771) [000] d..2 29481.076349: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26820  HwBinder:771_4-20182 (  771) [000] d..3 29481.076422: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26821  HwBinder:771_4-20182 (  771) [000] d..2 29481.076470: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26822          <idle>-0     (-----) [000] d..1 29481.076511: cpu_idle: state=2 cpu_id=0
26823  kworker/u16:10-23868 (23868) [002] d..2 29481.076519: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26824     ksoftirqd/2-26    (   26) [002] d..2 29481.076532: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26825 cdsp_smem_glink-88    (   88) [002] d..2 29481.076589: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26826          <idle>-0     (-----) [002] d..1 29481.076611: cpu_idle: state=2 cpu_id=2
26827          <idle>-0     (-----) [002] d.h4 29481.081533: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26828          <idle>-0     (-----) [002] dnh5 29481.081571: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26829          <idle>-0     (-----) [002] dnh4 29481.081601: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26830          <idle>-0     (-----) [002] dnh5 29481.081621: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26831          <idle>-0     (-----) [002] dnh3 29481.081731: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26832          <idle>-0     (-----) [002] dnh3 29481.081748: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
26833          <idle>-0     (-----) [002] dnh4 29481.081763: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
26834          <idle>-0     (-----) [002] .n.1 29481.081774: cpu_idle: state=4294967295 cpu_id=2
26835          <idle>-0     (-----) [002] d..2 29481.081796: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26836          <idle>-0     (-----) [000] .n.1 29481.081821: cpu_idle: state=4294967295 cpu_id=0
26837 smem_native_cds-87    (   87) [002] d..2 29481.081854: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26838          <idle>-0     (-----) [000] d..2 29481.081858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26839          <idle>-0     (-----) [002] d..2 29481.081861: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26840          <idle>-0     (-----) [002] dn.3 29481.081873: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26841          <idle>-0     (-----) [002] d..2 29481.081883: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26842     ksoftirqd/2-26    (   26) [002] d.s2 29481.081893: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26843  HwBinder:771_4-20182 (  771) [000] d..2 29481.081930: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26844     ksoftirqd/2-26    (   26) [002] d.s3 29481.081934: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26845     ksoftirqd/2-26    (   26) [002] d..2 29481.081961: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26846  HwBinder:771_4-20182 (  771) [000] d..3 29481.081979: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26847          <idle>-0     (-----) [002] d..2 29481.081991: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26848  HwBinder:771_4-20182 (  771) [000] d..2 29481.082017: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26849          <idle>-0     (-----) [000] d..1 29481.082039: cpu_idle: state=2 cpu_id=0
26850 cdsp_smem_glink-88    (   88) [002] d..2 29481.082049: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26851          <idle>-0     (-----) [002] d..1 29481.082066: cpu_idle: state=2 cpu_id=2
26852          <idle>-0     (-----) [003] .n.1 29481.082078: cpu_idle: state=4294967295 cpu_id=3
26853          <idle>-0     (-----) [003] d..2 29481.082102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
26854         sugov:0-559   (  559) [003] .... 29481.082131: clk_set_rate: pwrcl_clk 902400000
26855         sugov:0-559   (  559) [003] .... 29481.082143: clk_set_rate: cpu3_pwrcl_clk 825600000
26856         sugov:0-559   (  559) [003] .... 29481.082154: clk_set_rate: cpu2_pwrcl_clk 825600000
26857         sugov:0-559   (  559) [003] .... 29481.082164: clk_set_rate: cpu1_pwrcl_clk 825600000
26858         sugov:0-559   (  559) [003] .... 29481.082177: clk_set_rate: cpu0_pwrcl_clk 902400000
26859         sugov:0-559   (  559) [003] .... 29481.082189: cpu_frequency: state=902400 cpu_id=0
26860         sugov:0-559   (  559) [003] .... 29481.082208: cpu_frequency: state=902400 cpu_id=1
26861         sugov:0-559   (  559) [003] .... 29481.082213: cpu_frequency: state=902400 cpu_id=2
26862         sugov:0-559   (  559) [003] .... 29481.082216: cpu_frequency: state=902400 cpu_id=3
26863         sugov:0-559   (  559) [003] d..2 29481.082239: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26864  kworker/u16:10-23868 (23868) [003] d..2 29481.082304: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26865          <idle>-0     (-----) [003] d..1 29481.082323: cpu_idle: state=2 cpu_id=3
26866          <idle>-0     (-----) [006] dnh2 29481.082809: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26867          <idle>-0     (-----) [006] .n.1 29481.082818: cpu_idle: state=4294967295 cpu_id=6
26868          <idle>-0     (-----) [006] d..2 29481.082831: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26869         sugov:4-560   (  560) [006] d..2 29481.082854: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26870          <idle>-0     (-----) [006] d..1 29481.082864: cpu_idle: state=2 cpu_id=6
26871          <idle>-0     (-----) [006] ...1 29481.086595: cpu_idle: state=4294967295 cpu_id=6
26872          <idle>-0     (-----) [006] d..1 29481.086599: cpu_idle: state=2 cpu_id=6
26873          <idle>-0     (-----) [002] d.h4 29481.086642: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26874          <idle>-0     (-----) [002] dnh5 29481.086678: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26875          <idle>-0     (-----) [002] dnh4 29481.086708: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26876          <idle>-0     (-----) [002] dnh5 29481.086723: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26877          <idle>-0     (-----) [002] .n.1 29481.086767: cpu_idle: state=4294967295 cpu_id=2
26878          <idle>-0     (-----) [002] d..2 29481.086790: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26879 smem_native_cds-87    (   87) [002] d..2 29481.086843: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26880          <idle>-0     (-----) [002] d..2 29481.086849: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26881          <idle>-0     (-----) [002] dn.3 29481.086859: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26882          <idle>-0     (-----) [002] d..2 29481.086867: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26883     ksoftirqd/2-26    (   26) [002] d.s2 29481.086877: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
26884          <idle>-0     (-----) [000] .n.1 29481.086915: cpu_idle: state=4294967295 cpu_id=0
26885     ksoftirqd/2-26    (   26) [002] dns3 29481.086916: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26886     ksoftirqd/2-26    (   26) [002] d..2 29481.086930: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26887          <idle>-0     (-----) [000] d..2 29481.086945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26888  HwBinder:771_4-20182 (  771) [000] d..2 29481.087048: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26889  kworker/u16:10-23868 (23868) [002] d..2 29481.087050: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26890  HwBinder:771_4-20182 (  771) [000] d..3 29481.087089: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26891     ksoftirqd/2-26    (   26) [002] d..2 29481.087112: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26892  HwBinder:771_4-20182 (  771) [000] d..2 29481.087178: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26893 cdsp_smem_glink-88    (   88) [002] d..2 29481.087179: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26894          <idle>-0     (-----) [000] d..1 29481.087196: cpu_idle: state=2 cpu_id=0
26895          <idle>-0     (-----) [002] d..1 29481.087202: cpu_idle: state=2 cpu_id=2
26896          <idle>-0     (-----) [002] d.h4 29481.092116: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26897          <idle>-0     (-----) [002] dnh5 29481.092147: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26898          <idle>-0     (-----) [002] dnh4 29481.092177: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26899          <idle>-0     (-----) [002] dnh5 29481.092191: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26900          <idle>-0     (-----) [002] .n.1 29481.092234: cpu_idle: state=4294967295 cpu_id=2
26901          <idle>-0     (-----) [002] d..2 29481.092253: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26902 smem_native_cds-87    (   87) [002] d..2 29481.092307: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26903          <idle>-0     (-----) [002] d..2 29481.092312: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26904          <idle>-0     (-----) [002] dn.3 29481.092322: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26905          <idle>-0     (-----) [002] d..2 29481.092331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26906     ksoftirqd/2-26    (   26) [002] d.s2 29481.092341: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26907     ksoftirqd/2-26    (   26) [002] dns3 29481.092359: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26908     ksoftirqd/2-26    (   26) [002] d..2 29481.092369: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26909          <idle>-0     (-----) [000] .n.1 29481.092400: cpu_idle: state=4294967295 cpu_id=0
26910  kworker/u16:10-23868 (23868) [002] d..2 29481.092419: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26911          <idle>-0     (-----) [000] d..2 29481.092433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26912     ksoftirqd/2-26    (   26) [002] d..2 29481.092442: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26913          <idle>-0     (-----) [002] d..1 29481.092461: cpu_idle: state=2 cpu_id=2
26914  HwBinder:771_4-20182 (  771) [000] d..2 29481.092500: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
26915  HwBinder:771_4-20182 (  771) [000] d..3 29481.092557: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26916  HwBinder:771_4-20182 (  771) [000] d..2 29481.092573: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26917 cdsp_smem_glink-88    (   88) [000] d..2 29481.092629: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26918          <idle>-0     (-----) [000] d..1 29481.092648: cpu_idle: state=2 cpu_id=0
26919          <idle>-0     (-----) [002] d.h4 29481.097205: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26920          <idle>-0     (-----) [000] d..2 29481.097215: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26921          <idle>-0     (-----) [000] dn.3 29481.097233: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26922          <idle>-0     (-----) [002] dnh5 29481.097242: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26923          <idle>-0     (-----) [000] dnH3 29481.097312: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
26924          <idle>-0     (-----) [002] dnh4 29481.097317: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26925          <idle>-0     (-----) [000] dns3 29481.097338: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26926          <idle>-0     (-----) [002] dnh5 29481.097348: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26927          <idle>-0     (-----) [000] dns4 29481.097381: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26928          <idle>-0     (-----) [002] .n.1 29481.097393: cpu_idle: state=4294967295 cpu_id=2
26929          <idle>-0     (-----) [000] .n.1 29481.097394: cpu_idle: state=4294967295 cpu_id=0
26930          <idle>-0     (-----) [000] d..2 29481.097413: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26931          <idle>-0     (-----) [002] d..2 29481.097420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26932     ksoftirqd/0-3     (    3) [000] d..2 29481.097427: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26933 smem_native_cds-87    (   87) [002] d..2 29481.097479: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26934          <idle>-0     (-----) [002] d..1 29481.097531: cpu_idle: state=2 cpu_id=2
26935  kworker/u16:10-23868 (23868) [000] d..2 29481.097575: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26936          <idle>-0     (-----) [000] d..1 29481.097594: cpu_idle: state=2 cpu_id=0
26937          <idle>-0     (-----) [001] .n.1 29481.097650: cpu_idle: state=4294967295 cpu_id=1
26938          <idle>-0     (-----) [001] d..2 29481.097679: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26939  HwBinder:771_4-20182 (  771) [001] d..2 29481.097741: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26940  HwBinder:771_4-20182 (  771) [001] d..3 29481.097794: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26941  HwBinder:771_4-20182 (  771) [001] d..2 29481.097810: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26942 cdsp_smem_glink-88    (   88) [001] d..2 29481.097861: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26943          <idle>-0     (-----) [001] d..1 29481.097879: cpu_idle: state=2 cpu_id=1
26944          <idle>-0     (-----) [006] dnh2 29481.098383: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
26945          <idle>-0     (-----) [006] .n.1 29481.098393: cpu_idle: state=4294967295 cpu_id=6
26946          <idle>-0     (-----) [006] d..2 29481.098406: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
26947         sugov:4-560   (  560) [006] d..2 29481.098427: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26948          <idle>-0     (-----) [006] d..1 29481.098436: cpu_idle: state=2 cpu_id=6
26949          <idle>-0     (-----) [006] ...1 29481.102162: cpu_idle: state=4294967295 cpu_id=6
26950          <idle>-0     (-----) [006] d..1 29481.102166: cpu_idle: state=2 cpu_id=6
26951          <idle>-0     (-----) [002] d.h4 29481.102207: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26952          <idle>-0     (-----) [002] dnh5 29481.102244: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26953          <idle>-0     (-----) [002] dnh4 29481.102275: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26954          <idle>-0     (-----) [002] dnh5 29481.102299: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26955          <idle>-0     (-----) [002] .n.1 29481.102344: cpu_idle: state=4294967295 cpu_id=2
26956          <idle>-0     (-----) [002] d..2 29481.102365: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26957 smem_native_cds-87    (   87) [002] d..2 29481.102416: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26958          <idle>-0     (-----) [002] d..2 29481.102423: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26959          <idle>-0     (-----) [002] dn.3 29481.102435: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
26960          <idle>-0     (-----) [002] d..2 29481.102445: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26961     ksoftirqd/2-26    (   26) [002] d.s2 29481.102455: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26962          <idle>-0     (-----) [000] .n.1 29481.102480: cpu_idle: state=4294967295 cpu_id=0
26963     ksoftirqd/2-26    (   26) [002] dns3 29481.102495: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26964     ksoftirqd/2-26    (   26) [002] d..2 29481.102511: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26965          <idle>-0     (-----) [000] d..2 29481.102513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26966  kworker/u16:10-23868 (23868) [002] d..2 29481.102561: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
26967     ksoftirqd/2-26    (   26) [002] d..2 29481.102582: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26968  HwBinder:771_4-20182 (  771) [000] d..2 29481.102584: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26969          <idle>-0     (-----) [002] d..1 29481.102601: cpu_idle: state=2 cpu_id=2
26970  HwBinder:771_4-20182 (  771) [000] d..3 29481.102641: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26971  HwBinder:771_4-20182 (  771) [000] d..2 29481.102657: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26972 cdsp_smem_glink-88    (   88) [000] d..2 29481.102712: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26973          <idle>-0     (-----) [000] d..1 29481.102731: cpu_idle: state=2 cpu_id=0
26974          <idle>-0     (-----) [002] d.h4 29481.107288: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26975          <idle>-0     (-----) [000] d..2 29481.107288: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26976          <idle>-0     (-----) [000] dn.3 29481.107303: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
26977          <idle>-0     (-----) [000] .n.1 29481.107310: cpu_idle: state=4294967295 cpu_id=0
26978          <idle>-0     (-----) [002] dnh5 29481.107324: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
26979          <idle>-0     (-----) [000] d..2 29481.107328: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
26980     ksoftirqd/0-3     (    3) [000] d.s2 29481.107339: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
26981          <idle>-0     (-----) [002] dnh4 29481.107356: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
26982          <idle>-0     (-----) [002] dnh5 29481.107383: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
26983     ksoftirqd/0-3     (    3) [000] d.s3 29481.107390: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
26984     ksoftirqd/0-3     (    3) [000] d..2 29481.107407: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
26985          <idle>-0     (-----) [002] .n.1 29481.107430: cpu_idle: state=4294967295 cpu_id=2
26986          <idle>-0     (-----) [002] d..2 29481.107455: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
26987 smem_native_cds-87    (   87) [002] d..2 29481.107531: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26988          <idle>-0     (-----) [002] d..1 29481.107549: cpu_idle: state=2 cpu_id=2
26989  kworker/u16:10-23868 (23868) [000] d..2 29481.107633: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26990          <idle>-0     (-----) [000] d..1 29481.107654: cpu_idle: state=2 cpu_id=0
26991          <idle>-0     (-----) [001] .n.1 29481.107708: cpu_idle: state=4294967295 cpu_id=1
26992          <idle>-0     (-----) [001] d..2 29481.107735: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
26993  HwBinder:771_4-20182 (  771) [001] d..2 29481.107800: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
26994  HwBinder:771_4-20182 (  771) [001] d..3 29481.107852: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
26995  HwBinder:771_4-20182 (  771) [001] d..2 29481.107868: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
26996 cdsp_smem_glink-88    (   88) [001] d..2 29481.107923: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26997          <idle>-0     (-----) [001] d..1 29481.107941: cpu_idle: state=2 cpu_id=1
26998          <idle>-0     (-----) [001] ...1 29481.111699: cpu_idle: state=4294967295 cpu_id=1
26999          <idle>-0     (-----) [001] d..1 29481.111706: cpu_idle: state=2 cpu_id=1
27000          <idle>-0     (-----) [002] d.h4 29481.111746: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27001          <idle>-0     (-----) [002] dnh5 29481.111779: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27002          <idle>-0     (-----) [002] dnh4 29481.111808: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27003          <idle>-0     (-----) [002] dnh5 29481.111834: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27004          <idle>-0     (-----) [002] .n.1 29481.111877: cpu_idle: state=4294967295 cpu_id=2
27005          <idle>-0     (-----) [002] d..2 29481.111897: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27006 smem_native_cds-87    (   87) [002] d..2 29481.111951: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27007          <idle>-0     (-----) [002] d..2 29481.111957: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27008          <idle>-0     (-----) [002] dn.3 29481.111967: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27009          <idle>-0     (-----) [002] d..2 29481.111975: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27010     ksoftirqd/2-26    (   26) [002] d.s2 29481.111985: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27011          <idle>-0     (-----) [000] .n.1 29481.112017: cpu_idle: state=4294967295 cpu_id=0
27012     ksoftirqd/2-26    (   26) [002] dns3 29481.112026: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27013     ksoftirqd/2-26    (   26) [002] d..2 29481.112038: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27014          <idle>-0     (-----) [000] d..2 29481.112048: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27015  kworker/u16:10-23868 (23868) [002] d..2 29481.112088: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27016     ksoftirqd/2-26    (   26) [002] d..2 29481.112110: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27017  HwBinder:771_4-20182 (  771) [000] d..2 29481.112123: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27018          <idle>-0     (-----) [002] d..1 29481.112130: cpu_idle: state=2 cpu_id=2
27019  HwBinder:771_4-20182 (  771) [000] d..3 29481.112180: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27020  HwBinder:771_4-20182 (  771) [000] d..2 29481.112196: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27021 cdsp_smem_glink-88    (   88) [000] d..2 29481.112255: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27022          <idle>-0     (-----) [000] d..1 29481.112272: cpu_idle: state=2 cpu_id=0
27023          <idle>-0     (-----) [002] d.h4 29481.116970: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27024          <idle>-0     (-----) [002] dnh5 29481.117000: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27025          <idle>-0     (-----) [002] dnh4 29481.117031: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27026          <idle>-0     (-----) [002] dnh5 29481.117047: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27027          <idle>-0     (-----) [002] dnh3 29481.117157: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27028          <idle>-0     (-----) [002] dnh3 29481.117174: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27029          <idle>-0     (-----) [002] dnh4 29481.117189: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27030          <idle>-0     (-----) [002] .n.1 29481.117197: cpu_idle: state=4294967295 cpu_id=2
27031          <idle>-0     (-----) [002] d..2 29481.117219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27032 smem_native_cds-87    (   87) [002] d..2 29481.117274: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27033          <idle>-0     (-----) [000] .n.1 29481.117277: cpu_idle: state=4294967295 cpu_id=0
27034          <idle>-0     (-----) [002] d..2 29481.117279: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27035          <idle>-0     (-----) [002] dn.3 29481.117290: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27036          <idle>-0     (-----) [002] d..2 29481.117300: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27037     ksoftirqd/2-26    (   26) [002] d.s2 29481.117309: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27038          <idle>-0     (-----) [000] d..2 29481.117314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27039     ksoftirqd/2-26    (   26) [002] dns3 29481.117328: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27040     ksoftirqd/2-26    (   26) [002] d..2 29481.117339: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27041  HwBinder:771_4-20182 (  771) [000] d..2 29481.117401: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27042  HwBinder:771_4-20182 (  771) [000] d..3 29481.117461: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27043          <idle>-0     (-----) [003] .n.1 29481.117494: cpu_idle: state=4294967295 cpu_id=3
27044  HwBinder:771_4-20182 (  771) [000] d..2 29481.117503: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27045          <idle>-0     (-----) [003] d..2 29481.117518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27046          <idle>-0     (-----) [000] d..1 29481.117543: cpu_idle: state=2 cpu_id=0
27047         sugov:0-559   (  559) [003] .... 29481.117568: clk_set_rate: pwrcl_clk 652800000
27048  kworker/u16:10-23868 (23868) [002] d..2 29481.117579: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27049         sugov:0-559   (  559) [003] .... 29481.117580: clk_set_rate: cpu3_pwrcl_clk 902400000
27050         sugov:0-559   (  559) [003] .... 29481.117592: clk_set_rate: cpu2_pwrcl_clk 902400000
27051         sugov:0-559   (  559) [003] .... 29481.117602: clk_set_rate: cpu1_pwrcl_clk 902400000
27052     ksoftirqd/2-26    (   26) [002] d..2 29481.117602: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27053         sugov:0-559   (  559) [003] .... 29481.117612: clk_set_rate: cpu0_pwrcl_clk 652800000
27054          <idle>-0     (-----) [002] d..1 29481.117620: cpu_idle: state=2 cpu_id=2
27055         sugov:0-559   (  559) [003] .... 29481.117729: cpu_frequency: state=652800 cpu_id=0
27056         sugov:0-559   (  559) [003] .... 29481.117746: cpu_frequency: state=652800 cpu_id=1
27057         sugov:0-559   (  559) [003] .... 29481.117752: cpu_frequency: state=652800 cpu_id=2
27058         sugov:0-559   (  559) [003] .... 29481.117758: cpu_frequency: state=652800 cpu_id=3
27059         sugov:0-559   (  559) [003] d..2 29481.117785: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27060 cdsp_smem_glink-88    (   88) [003] d..2 29481.117857: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27061          <idle>-0     (-----) [003] d..1 29481.117877: cpu_idle: state=2 cpu_id=3
27062          <idle>-0     (-----) [006] dnh2 29481.118247: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27063          <idle>-0     (-----) [006] .n.1 29481.118257: cpu_idle: state=4294967295 cpu_id=6
27064          <idle>-0     (-----) [006] d..2 29481.118270: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27065         sugov:4-560   (  560) [006] d..2 29481.118292: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27066          <idle>-0     (-----) [006] d..1 29481.118301: cpu_idle: state=2 cpu_id=6
27067          <idle>-0     (-----) [002] d.h4 29481.122555: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27068          <idle>-0     (-----) [002] dnh5 29481.122590: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27069          <idle>-0     (-----) [002] dnh4 29481.122624: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27070          <idle>-0     (-----) [002] dnh5 29481.122643: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27071          <idle>-0     (-----) [002] .n.1 29481.122694: cpu_idle: state=4294967295 cpu_id=2
27072          <idle>-0     (-----) [002] d..2 29481.122717: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27073 smem_native_cds-87    (   87) [002] d..2 29481.122781: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27074          <idle>-0     (-----) [002] d..2 29481.122788: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27075          <idle>-0     (-----) [002] dn.3 29481.122800: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27076          <idle>-0     (-----) [002] d..2 29481.122811: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27077     ksoftirqd/2-26    (   26) [002] d.s2 29481.122823: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27078          <idle>-0     (-----) [000] .n.1 29481.122843: cpu_idle: state=4294967295 cpu_id=0
27079     ksoftirqd/2-26    (   26) [002] dns3 29481.122844: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27080     ksoftirqd/2-26    (   26) [002] dns2 29481.122851: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27081     ksoftirqd/2-26    (   26) [002] dns3 29481.122866: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27082     ksoftirqd/2-26    (   26) [002] d..2 29481.122880: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
27083          <idle>-0     (-----) [000] d..2 29481.122880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27084     kworker/2:2-13636 (13636) [002] d..2 29481.122921: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27085  HwBinder:771_4-20182 (  771) [000] d..2 29481.122963: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27086  kworker/u16:10-23868 (23868) [002] d..2 29481.122979: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27087     ksoftirqd/2-26    (   26) [002] d..2 29481.123008: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27088          <idle>-0     (-----) [002] d..1 29481.123030: cpu_idle: state=2 cpu_id=2
27089  HwBinder:771_4-20182 (  771) [000] d..3 29481.123039: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27090          <idle>-0     (-----) [002] .n.1 29481.123063: cpu_idle: state=4294967295 cpu_id=2
27091  HwBinder:771_4-20182 (  771) [000] d..2 29481.123082: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27092          <idle>-0     (-----) [002] d..2 29481.123083: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27093          <idle>-0     (-----) [000] d..1 29481.123110: cpu_idle: state=2 cpu_id=0
27094 cdsp_smem_glink-88    (   88) [002] d..2 29481.123147: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27095          <idle>-0     (-----) [002] d..1 29481.123163: cpu_idle: state=2 cpu_id=2
27096          <idle>-0     (-----) [002] d.h4 29481.128157: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27097          <idle>-0     (-----) [002] dnh5 29481.128194: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27098          <idle>-0     (-----) [002] dnh4 29481.128228: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27099          <idle>-0     (-----) [002] dnh5 29481.128248: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27100          <idle>-0     (-----) [002] .n.1 29481.128298: cpu_idle: state=4294967295 cpu_id=2
27101          <idle>-0     (-----) [002] d..2 29481.128322: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27102 smem_native_cds-87    (   87) [002] d..2 29481.128387: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27103          <idle>-0     (-----) [002] d..2 29481.128394: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27104          <idle>-0     (-----) [002] dn.3 29481.128405: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27105          <idle>-0     (-----) [002] d..2 29481.128417: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27106     ksoftirqd/2-26    (   26) [002] d.s2 29481.128428: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27107     ksoftirqd/2-26    (   26) [002] dns3 29481.128450: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27108          <idle>-0     (-----) [000] .n.1 29481.128451: cpu_idle: state=4294967295 cpu_id=0
27109     ksoftirqd/2-26    (   26) [002] d..2 29481.128469: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27110          <idle>-0     (-----) [000] d..2 29481.128491: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27111  kworker/u16:10-23868 (23868) [002] d..2 29481.128618: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27112  HwBinder:771_4-20182 (  771) [000] d..2 29481.128643: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27113     ksoftirqd/2-26    (   26) [002] d..2 29481.128644: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27114          <idle>-0     (-----) [002] d..1 29481.128665: cpu_idle: state=2 cpu_id=2
27115  HwBinder:771_4-20182 (  771) [000] d..3 29481.128714: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27116  HwBinder:771_4-20182 (  771) [000] d..2 29481.128734: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27117 cdsp_smem_glink-88    (   88) [000] d..2 29481.128799: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27118          <idle>-0     (-----) [000] d..1 29481.128821: cpu_idle: state=2 cpu_id=0
27119          <idle>-0     (-----) [000] d..2 29481.133459: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27120          <idle>-0     (-----) [002] d.h4 29481.133462: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27121          <idle>-0     (-----) [000] dn.3 29481.133479: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27122          <idle>-0     (-----) [000] .n.1 29481.133485: cpu_idle: state=4294967295 cpu_id=0
27123          <idle>-0     (-----) [002] dnh5 29481.133503: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27124          <idle>-0     (-----) [000] d..2 29481.133509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
27125     ksoftirqd/0-3     (    3) [000] d.s2 29481.133522: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27126          <idle>-0     (-----) [002] dnh4 29481.133537: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27127          <idle>-0     (-----) [002] dnh5 29481.133570: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27128     ksoftirqd/0-3     (    3) [000] d.s3 29481.133582: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27129     ksoftirqd/0-3     (    3) [000] d..2 29481.133601: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27130          <idle>-0     (-----) [002] .n.1 29481.133621: cpu_idle: state=4294967295 cpu_id=2
27131          <idle>-0     (-----) [002] d..2 29481.133649: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27132  kworker/u16:10-23868 (23868) [000] d..2 29481.133684: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27133          <idle>-0     (-----) [000] d..1 29481.133706: cpu_idle: state=2 cpu_id=0
27134 smem_native_cds-87    (   87) [002] d..2 29481.133713: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27135          <idle>-0     (-----) [002] d..1 29481.133738: cpu_idle: state=2 cpu_id=2
27136          <idle>-0     (-----) [001] .n.1 29481.133885: cpu_idle: state=4294967295 cpu_id=1
27137          <idle>-0     (-----) [001] d..2 29481.133919: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27138  HwBinder:771_4-20182 (  771) [001] d..2 29481.134002: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27139  HwBinder:771_4-20182 (  771) [001] d..3 29481.134070: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27140  HwBinder:771_4-20182 (  771) [001] d..2 29481.134091: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27141 cdsp_smem_glink-88    (   88) [001] d..2 29481.134164: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27142          <idle>-0     (-----) [001] d..2 29481.134174: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
27143          <idle>-0     (-----) [001] dn.3 29481.134201: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
27144          <idle>-0     (-----) [001] d..2 29481.134217: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
27145     ksoftirqd/1-18    (   18) [001] d..2 29481.134271: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27146          <idle>-0     (-----) [001] d..1 29481.134290: cpu_idle: state=2 cpu_id=1
27147          <idle>-0     (-----) [002] d.h4 29481.138050: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27148          <idle>-0     (-----) [002] dnh5 29481.138100: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27149          <idle>-0     (-----) [002] dnh4 29481.138134: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27150          <idle>-0     (-----) [002] dnh5 29481.138165: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27151          <idle>-0     (-----) [002] dnh3 29481.138285: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27152          <idle>-0     (-----) [002] dnh3 29481.138305: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27153          <idle>-0     (-----) [002] dnh4 29481.138324: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27154          <idle>-0     (-----) [000] .n.1 29481.138333: cpu_idle: state=4294967295 cpu_id=0
27155          <idle>-0     (-----) [002] .n.1 29481.138337: cpu_idle: state=4294967295 cpu_id=2
27156          <idle>-0     (-----) [000] d..2 29481.138365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27157          <idle>-0     (-----) [002] d..2 29481.138369: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27158 smem_native_cds-87    (   87) [002] d..2 29481.138433: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27159          <idle>-0     (-----) [002] d..2 29481.138439: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27160  HwBinder:771_4-20182 (  771) [000] d..2 29481.138446: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27161          <idle>-0     (-----) [002] dn.3 29481.138452: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27162          <idle>-0     (-----) [002] d..2 29481.138463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27163     ksoftirqd/2-26    (   26) [002] d.s2 29481.138474: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27164  HwBinder:771_4-20182 (  771) [000] d..3 29481.138514: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27165     ksoftirqd/2-26    (   26) [002] d.s3 29481.138535: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27166  HwBinder:771_4-20182 (  771) [000] d..2 29481.138566: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27167     ksoftirqd/2-26    (   26) [002] d..2 29481.138572: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27168          <idle>-0     (-----) [000] d..1 29481.138588: cpu_idle: state=2 cpu_id=0
27169          <idle>-0     (-----) [002] d..1 29481.138598: cpu_idle: state=2 cpu_id=2
27170          <idle>-0     (-----) [003] .n.1 29481.138637: cpu_idle: state=4294967295 cpu_id=3
27171          <idle>-0     (-----) [003] d..2 29481.138663: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27172         sugov:0-559   (  559) [003] d..2 29481.138689: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27173  kworker/u16:10-23868 (23868) [003] d..2 29481.138760: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27174 cdsp_smem_glink-88    (   88) [003] d..2 29481.138830: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27175          <idle>-0     (-----) [003] d..1 29481.138850: cpu_idle: state=2 cpu_id=3
27176          <idle>-0     (-----) [006] dnh2 29481.139352: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27177          <idle>-0     (-----) [006] .n.1 29481.139362: cpu_idle: state=4294967295 cpu_id=6
27178          <idle>-0     (-----) [006] d..2 29481.139374: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27179         sugov:4-560   (  560) [006] d..2 29481.139394: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27180          <idle>-0     (-----) [006] d..1 29481.139404: cpu_idle: state=2 cpu_id=6
27181          <idle>-0     (-----) [006] ...1 29481.143186: cpu_idle: state=4294967295 cpu_id=6
27182          <idle>-0     (-----) [006] d..1 29481.143190: cpu_idle: state=2 cpu_id=6
27183          <idle>-0     (-----) [002] d.h4 29481.143239: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27184          <idle>-0     (-----) [002] dnh5 29481.143281: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27185          <idle>-0     (-----) [002] dnh4 29481.143314: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27186          <idle>-0     (-----) [002] dnh5 29481.143333: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27187          <idle>-0     (-----) [002] .n.1 29481.143409: cpu_idle: state=4294967295 cpu_id=2
27188          <idle>-0     (-----) [002] d..2 29481.143432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27189 smem_native_cds-87    (   87) [002] d..2 29481.143498: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27190          <idle>-0     (-----) [002] d..2 29481.143505: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27191          <idle>-0     (-----) [000] .n.1 29481.143515: cpu_idle: state=4294967295 cpu_id=0
27192          <idle>-0     (-----) [002] dn.3 29481.143517: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27193          <idle>-0     (-----) [002] d..2 29481.143528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27194     ksoftirqd/2-26    (   26) [002] d.s2 29481.143539: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27195          <idle>-0     (-----) [000] d..2 29481.143551: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27196     ksoftirqd/2-26    (   26) [002] dns3 29481.143588: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27197     ksoftirqd/2-26    (   26) [002] d..2 29481.143604: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27198  HwBinder:771_4-20182 (  771) [000] d..2 29481.143630: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27199  kworker/u16:10-23868 (23868) [002] d..2 29481.143662: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27200     ksoftirqd/2-26    (   26) [002] d..2 29481.143695: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27201  HwBinder:771_4-20182 (  771) [000] d..3 29481.143714: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27202          <idle>-0     (-----) [002] d..2 29481.143781: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27203  HwBinder:771_4-20182 (  771) [000] d..2 29481.143818: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27204          <idle>-0     (-----) [000] d..1 29481.143842: cpu_idle: state=2 cpu_id=0
27205 cdsp_smem_glink-88    (   88) [002] d..2 29481.143848: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27206          <idle>-0     (-----) [002] d..1 29481.143869: cpu_idle: state=2 cpu_id=2
27207          <idle>-0     (-----) [002] d.h4 29481.148864: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27208          <idle>-0     (-----) [002] dnh5 29481.148899: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27209          <idle>-0     (-----) [002] dnh4 29481.148934: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27210          <idle>-0     (-----) [002] dnh5 29481.148953: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27211          <idle>-0     (-----) [002] .n.1 29481.149003: cpu_idle: state=4294967295 cpu_id=2
27212          <idle>-0     (-----) [002] d..2 29481.149026: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27213 smem_native_cds-87    (   87) [002] d..2 29481.149091: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27214          <idle>-0     (-----) [002] d..2 29481.149097: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27215          <idle>-0     (-----) [002] dn.3 29481.149110: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27216          <idle>-0     (-----) [002] d..2 29481.149123: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27217     ksoftirqd/2-26    (   26) [002] d.s2 29481.149134: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27218     ksoftirqd/2-26    (   26) [002] dns3 29481.149155: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27219          <idle>-0     (-----) [000] .n.1 29481.149157: cpu_idle: state=4294967295 cpu_id=0
27220     ksoftirqd/2-26    (   26) [002] d..2 29481.149170: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27221          <idle>-0     (-----) [000] d..2 29481.149196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27222  kworker/u16:10-23868 (23868) [002] d..2 29481.149323: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27223  HwBinder:771_4-20182 (  771) [000] d..2 29481.149324: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27224     ksoftirqd/2-26    (   26) [002] d..2 29481.149358: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27225  HwBinder:771_4-20182 (  771) [000] d..3 29481.149377: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27226          <idle>-0     (-----) [002] d..2 29481.149393: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27227  HwBinder:771_4-20182 (  771) [000] d..2 29481.149421: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27228          <idle>-0     (-----) [000] d..1 29481.149444: cpu_idle: state=2 cpu_id=0
27229 cdsp_smem_glink-88    (   88) [002] d..2 29481.149455: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27230          <idle>-0     (-----) [002] d..1 29481.149474: cpu_idle: state=2 cpu_id=2
27231          <idle>-0     (-----) [002] d.h4 29481.154478: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27232          <idle>-0     (-----) [002] dnh5 29481.154513: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27233          <idle>-0     (-----) [002] dnh4 29481.154549: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27234          <idle>-0     (-----) [002] dnh5 29481.154568: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27235          <idle>-0     (-----) [002] .n.1 29481.154619: cpu_idle: state=4294967295 cpu_id=2
27236          <idle>-0     (-----) [002] d..2 29481.154642: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27237 smem_native_cds-87    (   87) [002] d..2 29481.154707: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27238          <idle>-0     (-----) [002] d..2 29481.154713: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27239          <idle>-0     (-----) [002] dn.3 29481.154724: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27240          <idle>-0     (-----) [002] d..2 29481.154737: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27241     ksoftirqd/2-26    (   26) [002] d.s2 29481.154749: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27242     ksoftirqd/2-26    (   26) [002] dns3 29481.154769: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27243          <idle>-0     (-----) [000] .n.1 29481.154772: cpu_idle: state=4294967295 cpu_id=0
27244     ksoftirqd/2-26    (   26) [002] d..2 29481.154783: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27245          <idle>-0     (-----) [000] d..2 29481.154812: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27246  kworker/u16:10-23868 (23868) [002] d..2 29481.154841: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27247     ksoftirqd/2-26    (   26) [002] d..2 29481.154870: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27248          <idle>-0     (-----) [002] d..1 29481.154892: cpu_idle: state=2 cpu_id=2
27249  HwBinder:771_4-20182 (  771) [000] d..2 29481.154924: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27250  HwBinder:771_4-20182 (  771) [000] d..3 29481.154993: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27251  HwBinder:771_4-20182 (  771) [000] d..2 29481.155014: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27252 cdsp_smem_glink-88    (   88) [000] d..2 29481.155081: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27253          <idle>-0     (-----) [000] d..1 29481.155102: cpu_idle: state=2 cpu_id=0
27254          <idle>-0     (-----) [000] d..2 29481.158985: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27255          <idle>-0     (-----) [002] d.h4 29481.158994: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27256          <idle>-0     (-----) [000] dn.3 29481.159005: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27257          <idle>-0     (-----) [002] dnh5 29481.159081: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27258          <idle>-0     (-----) [000] dnH3 29481.159113: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27259          <idle>-0     (-----) [002] dnh4 29481.159115: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27260          <idle>-0     (-----) [000] dnH3 29481.159132: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27261          <idle>-0     (-----) [002] dnh5 29481.159149: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27262          <idle>-0     (-----) [000] dnH4 29481.159151: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27263          <idle>-0     (-----) [000] dns3 29481.159166: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27264          <idle>-0     (-----) [002] .n.1 29481.159198: cpu_idle: state=4294967295 cpu_id=2
27265          <idle>-0     (-----) [000] dns4 29481.159215: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27266          <idle>-0     (-----) [002] d..2 29481.159227: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27267          <idle>-0     (-----) [000] .n.1 29481.159232: cpu_idle: state=4294967295 cpu_id=0
27268          <idle>-0     (-----) [000] d..2 29481.159259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
27269     ksoftirqd/0-3     (    3) [000] d..2 29481.159277: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27270 smem_native_cds-87    (   87) [002] d..2 29481.159294: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27271          <idle>-0     (-----) [002] d..1 29481.159345: cpu_idle: state=2 cpu_id=2
27272          <idle>-0     (-----) [001] .n.1 29481.159469: cpu_idle: state=4294967295 cpu_id=1
27273          <idle>-0     (-----) [001] d..2 29481.159503: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27274          <idle>-0     (-----) [003] .n.1 29481.159540: cpu_idle: state=4294967295 cpu_id=3
27275          <idle>-0     (-----) [003] d..2 29481.159567: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27276  HwBinder:771_4-20182 (  771) [001] d..2 29481.159579: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27277         sugov:0-559   (  559) [003] d..2 29481.159614: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27278          <idle>-0     (-----) [003] d..1 29481.159631: cpu_idle: state=2 cpu_id=3
27279  HwBinder:771_4-20182 (  771) [001] d..3 29481.159653: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27280  HwBinder:771_4-20182 (  771) [001] d..2 29481.159693: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27281          <idle>-0     (-----) [001] d..1 29481.159718: cpu_idle: state=2 cpu_id=1
27282          <idle>-0     (-----) [002] ...1 29481.159823: cpu_idle: state=4294967295 cpu_id=2
27283          <idle>-0     (-----) [002] d..1 29481.159835: cpu_idle: state=2 cpu_id=2
27284  kworker/u16:10-23868 (23868) [000] d..2 29481.159977: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27285          <idle>-0     (-----) [000] d..1 29481.159997: cpu_idle: state=2 cpu_id=0
27286          <idle>-0     (-----) [003] .n.1 29481.160078: cpu_idle: state=4294967295 cpu_id=3
27287          <idle>-0     (-----) [003] d..2 29481.160107: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27288 cdsp_smem_glink-88    (   88) [003] d..2 29481.160181: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27289          <idle>-0     (-----) [003] d..1 29481.160199: cpu_idle: state=2 cpu_id=3
27290          <idle>-0     (-----) [006] dnh2 29481.160239: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27291          <idle>-0     (-----) [006] .n.1 29481.160250: cpu_idle: state=4294967295 cpu_id=6
27292          <idle>-0     (-----) [006] d..2 29481.160263: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27293         sugov:4-560   (  560) [006] d..2 29481.160287: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27294          <idle>-0     (-----) [006] d..1 29481.160298: cpu_idle: state=2 cpu_id=6
27295          <idle>-0     (-----) [002] d.h4 29481.164190: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27296          <idle>-0     (-----) [002] dnh5 29481.164226: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27297          <idle>-0     (-----) [002] dnh4 29481.164259: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27298          <idle>-0     (-----) [002] dnh5 29481.164288: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27299          <idle>-0     (-----) [002] .n.1 29481.164338: cpu_idle: state=4294967295 cpu_id=2
27300          <idle>-0     (-----) [002] d..2 29481.164361: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27301 smem_native_cds-87    (   87) [002] d..2 29481.164425: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27302          <idle>-0     (-----) [002] d..2 29481.164432: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27303          <idle>-0     (-----) [002] dn.3 29481.164446: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27304          <idle>-0     (-----) [002] d..2 29481.164457: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27305     ksoftirqd/2-26    (   26) [002] d.s2 29481.164468: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27306          <idle>-0     (-----) [000] .n.1 29481.164513: cpu_idle: state=4294967295 cpu_id=0
27307     ksoftirqd/2-26    (   26) [002] d.s3 29481.164523: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27308     ksoftirqd/2-26    (   26) [002] d.s2 29481.164532: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27309     ksoftirqd/2-26    (   26) [002] dns3 29481.164548: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27310          <idle>-0     (-----) [000] d..2 29481.164551: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27311     ksoftirqd/2-26    (   26) [002] d..2 29481.164560: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
27312     kworker/2:2-13636 (13636) [002] d..2 29481.164608: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27313  HwBinder:771_4-20182 (  771) [000] d..2 29481.164635: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27314  kworker/u16:10-23868 (23868) [002] d..2 29481.164665: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27315     ksoftirqd/2-26    (   26) [002] d..2 29481.164701: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27316  HwBinder:771_4-20182 (  771) [000] d..3 29481.164719: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27317          <idle>-0     (-----) [002] d..2 29481.164739: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27318  HwBinder:771_4-20182 (  771) [000] d..2 29481.164761: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27319          <idle>-0     (-----) [000] d..1 29481.164786: cpu_idle: state=2 cpu_id=0
27320 cdsp_smem_glink-88    (   88) [002] d..2 29481.164801: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27321          <idle>-0     (-----) [002] d..1 29481.164820: cpu_idle: state=2 cpu_id=2
27322          <idle>-0     (-----) [002] d.h4 29481.169826: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27323          <idle>-0     (-----) [002] dnh5 29481.169862: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27324          <idle>-0     (-----) [002] dnh4 29481.169896: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27325          <idle>-0     (-----) [002] dnh5 29481.169916: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27326          <idle>-0     (-----) [002] .n.1 29481.169965: cpu_idle: state=4294967295 cpu_id=2
27327          <idle>-0     (-----) [002] d..2 29481.169988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27328 smem_native_cds-87    (   87) [002] d..2 29481.170050: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27329          <idle>-0     (-----) [002] d..2 29481.170058: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27330          <idle>-0     (-----) [002] dn.3 29481.170070: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27331          <idle>-0     (-----) [002] d..2 29481.170081: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27332     ksoftirqd/2-26    (   26) [002] d.s2 29481.170093: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27333     ksoftirqd/2-26    (   26) [002] d.s3 29481.170113: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27334          <idle>-0     (-----) [000] .n.1 29481.170122: cpu_idle: state=4294967295 cpu_id=0
27335     ksoftirqd/2-26    (   26) [002] d..2 29481.170132: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27336          <idle>-0     (-----) [000] d..2 29481.170161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27337  HwBinder:771_4-20182 (  771) [000] d..2 29481.170286: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27338  kworker/u16:10-23868 (23868) [002] d..2 29481.170295: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27339          <idle>-0     (-----) [002] d..1 29481.170318: cpu_idle: state=2 cpu_id=2
27340  HwBinder:771_4-20182 (  771) [000] d..3 29481.170341: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27341  HwBinder:771_4-20182 (  771) [000] d..2 29481.170381: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27342          <idle>-0     (-----) [000] d..1 29481.170407: cpu_idle: state=2 cpu_id=0
27343          <idle>-0     (-----) [002] .n.1 29481.170778: cpu_idle: state=4294967295 cpu_id=2
27344          <idle>-0     (-----) [002] d..2 29481.170812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27345 cdsp_smem_glink-88    (   88) [002] d..2 29481.170893: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27346          <idle>-0     (-----) [002] d..2 29481.170901: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27347          <idle>-0     (-----) [002] dn.3 29481.170913: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27348          <idle>-0     (-----) [002] d..2 29481.170926: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27349     ksoftirqd/2-26    (   26) [002] d..2 29481.170953: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27350          <idle>-0     (-----) [002] d..1 29481.170972: cpu_idle: state=2 cpu_id=2
27351          <idle>-0     (-----) [002] d.h4 29481.175976: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27352          <idle>-0     (-----) [002] dnh5 29481.176011: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27353          <idle>-0     (-----) [002] dnh4 29481.176043: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27354          <idle>-0     (-----) [002] dnh5 29481.176063: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27355          <idle>-0     (-----) [002] .n.1 29481.176112: cpu_idle: state=4294967295 cpu_id=2
27356          <idle>-0     (-----) [002] d..2 29481.176136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27357 smem_native_cds-87    (   87) [002] d..2 29481.176196: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27358          <idle>-0     (-----) [002] d..2 29481.176204: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27359          <idle>-0     (-----) [002] dn.3 29481.176214: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27360          <idle>-0     (-----) [002] d..2 29481.176227: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27361     ksoftirqd/2-26    (   26) [002] d.s2 29481.176238: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27362     ksoftirqd/2-26    (   26) [002] d.s3 29481.176260: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27363          <idle>-0     (-----) [000] .n.1 29481.176273: cpu_idle: state=4294967295 cpu_id=0
27364     ksoftirqd/2-26    (   26) [002] d..2 29481.176278: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27365          <idle>-0     (-----) [000] d..2 29481.176312: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27366  kworker/u16:10-23868 (23868) [002] d..2 29481.176353: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27367          <idle>-0     (-----) [002] d..1 29481.176377: cpu_idle: state=2 cpu_id=2
27368  HwBinder:771_4-20182 (  771) [000] d..2 29481.176403: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27369  HwBinder:771_4-20182 (  771) [000] d..3 29481.176472: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27370  HwBinder:771_4-20182 (  771) [000] d..2 29481.176491: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27371 cdsp_smem_glink-88    (   88) [000] d..2 29481.176556: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27372          <idle>-0     (-----) [000] d..1 29481.176578: cpu_idle: state=2 cpu_id=0
27373          <idle>-0     (-----) [000] d..2 29481.180459: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27374          <idle>-0     (-----) [002] d.h4 29481.180462: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27375          <idle>-0     (-----) [000] dn.3 29481.180479: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27376          <idle>-0     (-----) [002] dnh5 29481.180555: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27377          <idle>-0     (-----) [000] dnH3 29481.180583: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27378          <idle>-0     (-----) [002] dnh4 29481.180590: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27379          <idle>-0     (-----) [000] dnH3 29481.180601: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27380          <idle>-0     (-----) [000] dnH4 29481.180620: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27381          <idle>-0     (-----) [002] dnh5 29481.180624: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27382          <idle>-0     (-----) [000] dns3 29481.180636: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27383          <idle>-0     (-----) [000] dns4 29481.180687: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27384          <idle>-0     (-----) [002] .n.1 29481.180692: cpu_idle: state=4294967295 cpu_id=2
27385          <idle>-0     (-----) [000] .n.1 29481.180702: cpu_idle: state=4294967295 cpu_id=0
27386          <idle>-0     (-----) [002] d..2 29481.180717: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27387          <idle>-0     (-----) [000] d..2 29481.180732: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
27388     ksoftirqd/0-3     (    3) [000] d..2 29481.180749: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27389 smem_native_cds-87    (   87) [002] d..2 29481.180785: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27390          <idle>-0     (-----) [002] d..1 29481.180845: cpu_idle: state=2 cpu_id=2
27391  kworker/u16:10-23868 (23868) [000] d..2 29481.180897: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27392          <idle>-0     (-----) [000] d..1 29481.180919: cpu_idle: state=2 cpu_id=0
27393          <idle>-0     (-----) [003] .n.1 29481.180949: cpu_idle: state=4294967295 cpu_id=3
27394          <idle>-0     (-----) [003] d..2 29481.180975: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27395         sugov:0-559   (  559) [003] d..2 29481.181022: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27396          <idle>-0     (-----) [001] .n.1 29481.181027: cpu_idle: state=4294967295 cpu_id=1
27397          <idle>-0     (-----) [003] d..1 29481.181041: cpu_idle: state=2 cpu_id=3
27398          <idle>-0     (-----) [001] d..2 29481.181060: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27399  HwBinder:771_4-20182 (  771) [001] d..2 29481.181137: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27400  HwBinder:771_4-20182 (  771) [001] d..3 29481.181202: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27401  HwBinder:771_4-20182 (  771) [001] d..2 29481.181220: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27402 cdsp_smem_glink-88    (   88) [001] d..2 29481.181282: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27403          <idle>-0     (-----) [001] d..1 29481.181304: cpu_idle: state=2 cpu_id=1
27404          <idle>-0     (-----) [006] dnh2 29481.181674: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27405          <idle>-0     (-----) [006] .n.1 29481.181685: cpu_idle: state=4294967295 cpu_id=6
27406          <idle>-0     (-----) [006] d..2 29481.181698: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27407         sugov:4-560   (  560) [006] d..2 29481.181719: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27408          <idle>-0     (-----) [006] d..1 29481.181730: cpu_idle: state=2 cpu_id=6
27409          <idle>-0     (-----) [002] d.h4 29481.188747: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27410          <idle>-0     (-----) [000] d..2 29481.188866: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27411          <idle>-0     (-----) [000] dn.3 29481.188995: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27412          <idle>-0     (-----) [002] dnh5 29481.188997: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27413          <idle>-0     (-----) [000] .n.1 29481.189044: cpu_idle: state=4294967295 cpu_id=0
27414          <idle>-0     (-----) [002] dnh4 29481.189095: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27415          <idle>-0     (-----) [002] dnh5 29481.189165: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27416          <idle>-0     (-----) [000] d..2 29481.189212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
27417          <idle>-0     (-----) [002] .n.1 29481.189289: cpu_idle: state=4294967295 cpu_id=2
27418     ksoftirqd/0-3     (    3) [000] d.s2 29481.189310: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27419          <idle>-0     (-----) [002] d..2 29481.189342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27420     ksoftirqd/0-3     (    3) [000] d.s3 29481.189385: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27421     ksoftirqd/0-3     (    3) [000] d..2 29481.189435: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27422          <idle>-0     (-----) [001] .n.1 29481.189561: cpu_idle: state=4294967295 cpu_id=1
27423 smem_native_cds-87    (   87) [002] d..2 29481.189592: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27424          <idle>-0     (-----) [001] d..2 29481.189625: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27425          <idle>-0     (-----) [002] d..1 29481.189683: cpu_idle: state=2 cpu_id=2
27426  kworker/u16:10-23868 (23868) [000] d..2 29481.189792: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27427          <idle>-0     (-----) [000] d..1 29481.189829: cpu_idle: state=2 cpu_id=0
27428  HwBinder:771_4-20182 (  771) [001] d..2 29481.190123: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27429  HwBinder:771_4-20182 (  771) [001] d..3 29481.190189: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27430  HwBinder:771_4-20182 (  771) [001] d..2 29481.190232: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27431 cdsp_smem_glink-88    (   88) [001] d..2 29481.190372: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27432          <idle>-0     (-----) [001] d..1 29481.190410: cpu_idle: state=2 cpu_id=1
27433          <idle>-0     (-----) [002] d.h4 29481.194267: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27434          <idle>-0     (-----) [002] dnh5 29481.194307: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27435          <idle>-0     (-----) [002] dnh4 29481.194343: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27436          <idle>-0     (-----) [002] dnh5 29481.194403: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27437          <idle>-0     (-----) [002] .n.1 29481.194453: cpu_idle: state=4294967295 cpu_id=2
27438          <idle>-0     (-----) [002] d..2 29481.194477: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27439 smem_native_cds-87    (   87) [002] d..2 29481.194543: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27440          <idle>-0     (-----) [000] .n.1 29481.194545: cpu_idle: state=4294967295 cpu_id=0
27441          <idle>-0     (-----) [002] d..2 29481.194552: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27442          <idle>-0     (-----) [000] d..2 29481.194581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27443          <idle>-0     (-----) [002] dn.3 29481.194592: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27444          <idle>-0     (-----) [002] d..2 29481.194608: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27445     ksoftirqd/2-26    (   26) [002] d.s2 29481.194639: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27446     ksoftirqd/2-26    (   26) [002] d.s3 29481.194738: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27447     ksoftirqd/2-26    (   26) [002] d..2 29481.194764: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27448  kworker/u16:10-23868 (23868) [002] d..2 29481.195071: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27449          <idle>-0     (-----) [002] d..1 29481.195095: cpu_idle: state=2 cpu_id=2
27450  HwBinder:771_4-20182 (  771) [000] d.H2 29481.197578: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27451  HwBinder:771_4-20182 (  771) [000] d.H2 29481.197668: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27452  HwBinder:771_4-20182 (  771) [000] d.H3 29481.197737: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27453  HwBinder:771_4-20182 (  771) [000] d.s2 29481.197754: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27454  HwBinder:771_4-20182 (  771) [000] d.s3 29481.197808: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27455          <idle>-0     (-----) [003] .n.1 29481.198142: cpu_idle: state=4294967295 cpu_id=3
27456          <idle>-0     (-----) [003] d..2 29481.198206: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27457         sugov:0-559   (  559) [003] .... 29481.198344: clk_set_rate: pwrcl_clk 748800000
27458         sugov:0-559   (  559) [003] .... 29481.198438: clk_set_rate: cpu3_pwrcl_clk 652800000
27459         sugov:0-559   (  559) [003] .... 29481.198459: clk_set_rate: cpu2_pwrcl_clk 652800000
27460         sugov:0-559   (  559) [003] .... 29481.198470: clk_set_rate: cpu1_pwrcl_clk 652800000
27461         sugov:0-559   (  559) [003] .... 29481.198482: clk_set_rate: cpu0_pwrcl_clk 748800000
27462         sugov:0-559   (  559) [003] .... 29481.198500: cpu_frequency: state=748800 cpu_id=0
27463         sugov:0-559   (  559) [003] .... 29481.198591: cpu_frequency: state=748800 cpu_id=1
27464         sugov:0-559   (  559) [003] .... 29481.198597: cpu_frequency: state=748800 cpu_id=2
27465         sugov:0-559   (  559) [003] .... 29481.198602: cpu_frequency: state=748800 cpu_id=3
27466         sugov:0-559   (  559) [003] d..2 29481.198656: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27467  kworker/u16:10-23868 (23868) [003] d..2 29481.198765: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27468          <idle>-0     (-----) [003] d..1 29481.198792: cpu_idle: state=2 cpu_id=3
27469          <idle>-0     (-----) [006] dnh2 29481.198815: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27470          <idle>-0     (-----) [006] .n.1 29481.198836: cpu_idle: state=4294967295 cpu_id=6
27471          <idle>-0     (-----) [006] d..2 29481.198861: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27472         sugov:4-560   (  560) [006] d..2 29481.198903: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27473          <idle>-0     (-----) [006] d..1 29481.198927: cpu_idle: state=2 cpu_id=6
27474  HwBinder:771_4-20182 (  771) [000] d..2 29481.203353: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27475  HwBinder:771_4-20182 (  771) [000] d..3 29481.203421: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27476  HwBinder:771_4-20182 (  771) [000] d..2 29481.203441: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27477 cdsp_smem_glink-88    (   88) [000] d..2 29481.203514: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27478          <idle>-0     (-----) [000] d..1 29481.203545: cpu_idle: state=2 cpu_id=0
27479          <idle>-0     (-----) [002] d.h4 29481.208286: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27480          <idle>-0     (-----) [000] d..2 29481.208287: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27481          <idle>-0     (-----) [000] dn.3 29481.208306: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27482          <idle>-0     (-----) [000] .n.1 29481.208313: cpu_idle: state=4294967295 cpu_id=0
27483          <idle>-0     (-----) [002] dnh5 29481.208331: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27484          <idle>-0     (-----) [000] d..2 29481.208333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
27485     ksoftirqd/0-3     (    3) [000] d.s2 29481.208344: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27486          <idle>-0     (-----) [002] .n.1 29481.208351: cpu_idle: state=4294967295 cpu_id=2
27487          <idle>-0     (-----) [002] d..2 29481.208377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27488     ksoftirqd/0-3     (    3) [000] d.s3 29481.208395: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27489     ksoftirqd/0-3     (    3) [000] d..2 29481.208421: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27490 smem_native_cds-87    (   87) [002] d..2 29481.208443: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27491          <idle>-0     (-----) [002] d..1 29481.208489: cpu_idle: state=2 cpu_id=2
27492          <idle>-0     (-----) [002] ...1 29481.208945: cpu_idle: state=4294967295 cpu_id=2
27493  kworker/u16:10-23868 (23868) [000] .... 29481.208951: clk_set_rate: l3_cluster0_vote_clk 403200000
27494          <idle>-0     (-----) [002] d..1 29481.208956: cpu_idle: state=2 cpu_id=2
27495  kworker/u16:10-23868 (23868) [000] .... 29481.208968: clk_set_rate: l3_clk 403200000
27496  kworker/u16:10-23868 (23868) [000] d..2 29481.209517: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27497          <idle>-0     (-----) [000] d..1 29481.209536: cpu_idle: state=2 cpu_id=0
27498          <idle>-0     (-----) [003] d.s3 29481.210432: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27499          <idle>-0     (-----) [003] d.s4 29481.210481: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
27500          <idle>-0     (-----) [003] dns4 29481.210491: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27501          <idle>-0     (-----) [003] .n.1 29481.210503: cpu_idle: state=4294967295 cpu_id=3
27502          <idle>-0     (-----) [003] d..2 29481.210522: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27503          <idle>-0     (-----) [002] d.h4 29481.210602: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27504          <idle>-0     (-----) [002] d.h5 29481.210635: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27505          <idle>-0     (-----) [002] d..2 29481.210673: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27506          <idle>-0     (-----) [002] dn.3 29481.210685: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27507          <idle>-0     (-----) [002] .n.1 29481.210691: cpu_idle: state=4294967295 cpu_id=2
27508          <idle>-0     (-----) [002] d..2 29481.210713: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27509     ksoftirqd/2-26    (   26) [002] d..2 29481.210755: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27510          <idle>-0     (-----) [002] d..1 29481.210771: cpu_idle: state=2 cpu_id=2
27511  kworker/u16:10-23868 (23868) [003] d..2 29481.210867: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
27512          <idle>-0     (-----) [000] .n.1 29481.210909: cpu_idle: state=4294967295 cpu_id=0
27513          <idle>-0     (-----) [003] d.s4 29481.210912: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27514          <idle>-0     (-----) [003] d.s5 29481.210925: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
27515          <idle>-0     (-----) [003] dns5 29481.210931: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27516          <idle>-0     (-----) [000] d..2 29481.210936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27517          <idle>-0     (-----) [003] d..2 29481.210948: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27518  kworker/u16:10-23868 (23868) [003] d..2 29481.210981: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27519          <idle>-0     (-----) [003] d..1 29481.210999: cpu_idle: state=2 cpu_id=3
27520  HwBinder:771_4-20182 (  771) [000] d..2 29481.211199: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27521  HwBinder:771_4-20182 (  771) [000] d..3 29481.211229: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27522  HwBinder:771_4-20182 (  771) [000] d..2 29481.211245: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27523 cdsp_smem_glink-88    (   88) [000] d..2 29481.211296: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27524          <idle>-0     (-----) [000] d..1 29481.211320: cpu_idle: state=2 cpu_id=0
27525          <idle>-0     (-----) [002] d.h4 29481.215122: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27526          <idle>-0     (-----) [002] dnh5 29481.215156: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27527          <idle>-0     (-----) [002] dnh4 29481.215183: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27528          <idle>-0     (-----) [002] dnh5 29481.215200: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27529          <idle>-0     (-----) [002] .n.1 29481.215241: cpu_idle: state=4294967295 cpu_id=2
27530          <idle>-0     (-----) [002] d..2 29481.215260: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27531 smem_native_cds-87    (   87) [002] d..2 29481.215314: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27532          <idle>-0     (-----) [002] d..2 29481.215319: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27533          <idle>-0     (-----) [002] dn.3 29481.215328: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27534          <idle>-0     (-----) [002] d..2 29481.215338: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27535     ksoftirqd/2-26    (   26) [002] d..2 29481.215362: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27536          <idle>-0     (-----) [002] d..1 29481.215379: cpu_idle: state=2 cpu_id=2
27537          <idle>-0     (-----) [000] .n.1 29481.215480: cpu_idle: state=4294967295 cpu_id=0
27538          <idle>-0     (-----) [000] d..2 29481.215508: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27539  HwBinder:771_4-20182 (  771) [000] d..2 29481.215582: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27540  HwBinder:771_4-20182 (  771) [000] d..3 29481.215613: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27541  HwBinder:771_4-20182 (  771) [000] d..2 29481.215629: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27542 cdsp_smem_glink-88    (   88) [000] d..2 29481.215680: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27543          <idle>-0     (-----) [000] d..1 29481.215697: cpu_idle: state=2 cpu_id=0
27544          <idle>-0     (-----) [002] d.h4 29481.219312: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27545          <idle>-0     (-----) [002] dnh5 29481.219352: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27546          <idle>-0     (-----) [002] dnh4 29481.219379: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27547          <idle>-0     (-----) [002] dnh5 29481.219398: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27548          <idle>-0     (-----) [002] dnh3 29481.219503: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27549          <idle>-0     (-----) [002] dnh3 29481.219522: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27550          <idle>-0     (-----) [002] dnh4 29481.219537: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27551          <idle>-0     (-----) [002] .n.1 29481.219546: cpu_idle: state=4294967295 cpu_id=2
27552          <idle>-0     (-----) [002] d..2 29481.219566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27553 smem_native_cds-87    (   87) [002] d..2 29481.219619: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27554          <idle>-0     (-----) [002] d..2 29481.219624: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27555          <idle>-0     (-----) [002] dn.3 29481.219636: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27556          <idle>-0     (-----) [002] d..2 29481.219645: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27557     ksoftirqd/2-26    (   26) [002] d.s2 29481.219654: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27558          <idle>-0     (-----) [000] .n.1 29481.219658: cpu_idle: state=4294967295 cpu_id=0
27559          <idle>-0     (-----) [000] d..2 29481.219689: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27560     ksoftirqd/2-26    (   26) [002] d.s3 29481.219698: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27561     ksoftirqd/2-26    (   26) [002] d..2 29481.219711: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27562  kworker/u16:10-23868 (23868) [002] .... 29481.219769: clk_set_rate: l3_cluster0_vote_clk 300000000
27563  kworker/u16:10-23868 (23868) [002] .... 29481.219774: clk_set_rate: l3_clk 300000000
27564  HwBinder:771_4-20182 (  771) [000] d..2 29481.219783: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27565          <idle>-0     (-----) [003] .n.1 29481.219799: cpu_idle: state=4294967295 cpu_id=3
27566          <idle>-0     (-----) [003] d..2 29481.219827: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27567  kworker/u16:10-23868 (23868) [002] d..2 29481.219831: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27568          <idle>-0     (-----) [002] d..1 29481.219851: cpu_idle: state=2 cpu_id=2
27569  HwBinder:771_4-20182 (  771) [000] d..3 29481.219854: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27570         sugov:0-559   (  559) [003] .... 29481.219861: clk_set_rate: pwrcl_clk 979200000
27571         sugov:0-559   (  559) [003] .... 29481.219877: clk_set_rate: cpu3_pwrcl_clk 748800000
27572         sugov:0-559   (  559) [003] .... 29481.219888: clk_set_rate: cpu2_pwrcl_clk 748800000
27573  HwBinder:771_4-20182 (  771) [000] d..2 29481.219894: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27574         sugov:0-559   (  559) [003] .... 29481.219898: clk_set_rate: cpu1_pwrcl_clk 748800000
27575         sugov:0-559   (  559) [003] .... 29481.219908: clk_set_rate: cpu0_pwrcl_clk 979200000
27576          <idle>-0     (-----) [000] d..1 29481.219918: cpu_idle: state=2 cpu_id=0
27577         sugov:0-559   (  559) [003] .... 29481.219920: cpu_frequency: state=979200 cpu_id=0
27578         sugov:0-559   (  559) [003] .... 29481.219941: cpu_frequency: state=979200 cpu_id=1
27579         sugov:0-559   (  559) [003] .... 29481.219946: cpu_frequency: state=979200 cpu_id=2
27580         sugov:0-559   (  559) [003] .... 29481.219952: cpu_frequency: state=979200 cpu_id=3
27581         sugov:0-559   (  559) [003] d..2 29481.219979: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27582 cdsp_smem_glink-88    (   88) [003] d..2 29481.220035: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27583          <idle>-0     (-----) [003] d..1 29481.220052: cpu_idle: state=2 cpu_id=3
27584          <idle>-0     (-----) [006] dnh2 29481.220484: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27585          <idle>-0     (-----) [006] .n.1 29481.220494: cpu_idle: state=4294967295 cpu_id=6
27586          <idle>-0     (-----) [006] d..2 29481.220506: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27587         sugov:4-560   (  560) [006] d..2 29481.220531: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27588          <idle>-0     (-----) [006] d..2 29481.220534: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
27589          <idle>-0     (-----) [006] dn.3 29481.220547: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
27590          <idle>-0     (-----) [006] d..2 29481.220554: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/6 next_pid=58 next_prio=120
27591     ksoftirqd/6-58    (   58) [006] d.s2 29481.220565: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27592     ksoftirqd/6-58    (   58) [006] d..2 29481.220601: sched_switch: prev_comm=ksoftirqd/6 prev_pid=58 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27593          <idle>-0     (-----) [006] d..1 29481.220611: cpu_idle: state=2 cpu_id=6
27594          <idle>-0     (-----) [002] d.h4 29481.220623: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27595          <idle>-0     (-----) [002] dnh5 29481.220663: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27596          <idle>-0     (-----) [002] dnh2 29481.220685: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27597          <idle>-0     (-----) [002] .n.1 29481.220693: cpu_idle: state=4294967295 cpu_id=2
27598          <idle>-0     (-----) [002] d..2 29481.220716: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27599 smem_native_cds-87    (   87) [002] d..2 29481.220749: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27600  kworker/u16:10-23868 (23868) [002] d.h4 29481.220972: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27601  kworker/u16:10-23868 (23868) [002] d.h5 29481.220992: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27602  kworker/u16:10-23868 (23868) [002] d..2 29481.221053: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
27603          <idle>-0     (-----) [002] d..1 29481.221072: cpu_idle: state=2 cpu_id=2
27604          <idle>-0     (-----) [003] d.s3 29481.221288: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27605          <idle>-0     (-----) [003] d.s4 29481.221303: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
27606          <idle>-0     (-----) [000] .n.1 29481.221304: cpu_idle: state=4294967295 cpu_id=0
27607          <idle>-0     (-----) [003] d.s4 29481.221314: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27608          <idle>-0     (-----) [003] ...1 29481.221333: cpu_idle: state=4294967295 cpu_id=3
27609          <idle>-0     (-----) [000] d..2 29481.221334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27610          <idle>-0     (-----) [003] d..1 29481.221341: cpu_idle: state=2 cpu_id=3
27611  HwBinder:771_4-20182 (  771) [000] d..2 29481.221399: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27612  HwBinder:771_4-20182 (  771) [000] d..3 29481.221451: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27613  HwBinder:771_4-20182 (  771) [000] d..2 29481.221479: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27614          <idle>-0     (-----) [000] d..1 29481.221497: cpu_idle: state=2 cpu_id=0
27615          <idle>-0     (-----) [002] .n.1 29481.221624: cpu_idle: state=4294967295 cpu_id=2
27616          <idle>-0     (-----) [002] d..2 29481.221650: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27617 cdsp_smem_glink-88    (   88) [002] d..2 29481.221698: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27618  kworker/u16:10-23868 (23868) [002] d..2 29481.221740: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27619          <idle>-0     (-----) [002] d..1 29481.221755: cpu_idle: state=2 cpu_id=2
27620          <idle>-0     (-----) [002] d.h4 29481.226828: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27621          <idle>-0     (-----) [002] dnh5 29481.226856: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27622          <idle>-0     (-----) [002] dnh4 29481.226886: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27623          <idle>-0     (-----) [002] dnh5 29481.226900: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27624          <idle>-0     (-----) [002] .n.1 29481.226942: cpu_idle: state=4294967295 cpu_id=2
27625          <idle>-0     (-----) [002] d..2 29481.226960: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27626 smem_native_cds-87    (   87) [002] d..2 29481.227010: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27627          <idle>-0     (-----) [002] d..2 29481.227016: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27628          <idle>-0     (-----) [002] dn.3 29481.227024: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27629          <idle>-0     (-----) [002] d..2 29481.227036: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27630     ksoftirqd/2-26    (   26) [002] d..2 29481.227058: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27631          <idle>-0     (-----) [000] .n.1 29481.227109: cpu_idle: state=4294967295 cpu_id=0
27632          <idle>-0     (-----) [002] d.s4 29481.227110: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27633          <idle>-0     (-----) [002] dns5 29481.227128: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27634          <idle>-0     (-----) [000] d..2 29481.227139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27635          <idle>-0     (-----) [002] d..2 29481.227156: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27636  HwBinder:771_4-20182 (  771) [000] d..2 29481.227229: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27637  kworker/u16:10-23868 (23868) [002] d..2 29481.227245: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27638          <idle>-0     (-----) [002] d..1 29481.227263: cpu_idle: state=2 cpu_id=2
27639  HwBinder:771_4-20182 (  771) [000] d..3 29481.227269: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27640          <idle>-0     (-----) [002] .n.1 29481.227290: cpu_idle: state=4294967295 cpu_id=2
27641  HwBinder:771_4-20182 (  771) [000] d..2 29481.227302: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27642          <idle>-0     (-----) [002] d..2 29481.227304: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27643          <idle>-0     (-----) [000] d..1 29481.227322: cpu_idle: state=2 cpu_id=0
27644 cdsp_smem_glink-88    (   88) [002] d..2 29481.227355: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27645          <idle>-0     (-----) [002] d..1 29481.227366: cpu_idle: state=2 cpu_id=2
27646          <idle>-0     (-----) [002] d.h4 29481.232264: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27647          <idle>-0     (-----) [002] dnh5 29481.232293: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27648          <idle>-0     (-----) [002] dnh4 29481.232324: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27649          <idle>-0     (-----) [002] dnh5 29481.232338: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27650          <idle>-0     (-----) [002] .n.1 29481.232379: cpu_idle: state=4294967295 cpu_id=2
27651          <idle>-0     (-----) [002] d..2 29481.232398: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27652 smem_native_cds-87    (   87) [002] d..2 29481.232448: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27653          <idle>-0     (-----) [002] d..2 29481.232454: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27654          <idle>-0     (-----) [002] dn.3 29481.232462: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27655          <idle>-0     (-----) [002] d..2 29481.232471: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27656     ksoftirqd/2-26    (   26) [002] d.s2 29481.232480: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27657     ksoftirqd/2-26    (   26) [002] d.s3 29481.232496: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27658     ksoftirqd/2-26    (   26) [002] d..2 29481.232509: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27659          <idle>-0     (-----) [000] .n.1 29481.232546: cpu_idle: state=4294967295 cpu_id=0
27660          <idle>-0     (-----) [000] d..2 29481.232575: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27661  kworker/u16:10-23868 (23868) [002] d..2 29481.232581: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27662          <idle>-0     (-----) [002] d..1 29481.232602: cpu_idle: state=2 cpu_id=2
27663  HwBinder:771_4-20182 (  771) [000] d..2 29481.232642: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27664  HwBinder:771_4-20182 (  771) [000] d..3 29481.232695: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27665  HwBinder:771_4-20182 (  771) [000] d..2 29481.232711: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27666 cdsp_smem_glink-88    (   88) [000] d..2 29481.232765: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27667          <idle>-0     (-----) [000] d..1 29481.232782: cpu_idle: state=2 cpu_id=0
27668          <idle>-0     (-----) [002] d.h4 29481.234974: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27669          <idle>-0     (-----) [002] dnh5 29481.235002: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27670          <idle>-0     (-----) [002] .n.1 29481.235015: cpu_idle: state=4294967295 cpu_id=2
27671          <idle>-0     (-----) [002] d..2 29481.235035: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27672 smem_native_cds-87    (   87) [002] d..2 29481.235086: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27673          <idle>-0     (-----) [002] d..2 29481.235091: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27674          <idle>-0     (-----) [002] dn.3 29481.235099: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27675          <idle>-0     (-----) [002] d..2 29481.235107: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27676     ksoftirqd/2-26    (   26) [002] d..2 29481.235128: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27677          <idle>-0     (-----) [002] d..1 29481.235143: cpu_idle: state=2 cpu_id=2
27678          <idle>-0     (-----) [002] d.h4 29481.236716: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27679          <idle>-0     (-----) [002] d.h5 29481.236745: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27680          <idle>-0     (-----) [002] ...1 29481.236791: cpu_idle: state=4294967295 cpu_id=2
27681          <idle>-0     (-----) [002] d..1 29481.236799: cpu_idle: state=2 cpu_id=2
27682          <idle>-0     (-----) [000] .n.1 29481.237047: cpu_idle: state=4294967295 cpu_id=0
27683          <idle>-0     (-----) [000] d..2 29481.237081: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27684  HwBinder:771_4-20182 (  771) [000] d.H4 29481.237186: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27685  HwBinder:771_4-20182 (  771) [000] d.s4 29481.237210: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27686  HwBinder:771_4-20182 (  771) [000] d.s5 29481.237252: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27687  HwBinder:771_4-20182 (  771) [000] d..2 29481.237328: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27688  HwBinder:771_4-20182 (  771) [000] d..3 29481.237350: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27689  HwBinder:771_4-20182 (  771) [000] d..2 29481.237366: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27690 cdsp_smem_glink-88    (   88) [000] d..2 29481.237408: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27691  kworker/u16:10-23868 (23868) [000] d..2 29481.237465: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27692          <idle>-0     (-----) [000] d..1 29481.237482: cpu_idle: state=2 cpu_id=0
27693          <idle>-0     (-----) [006] dnh2 29481.238261: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27694          <idle>-0     (-----) [006] .n.1 29481.238271: cpu_idle: state=4294967295 cpu_id=6
27695          <idle>-0     (-----) [006] d..2 29481.238283: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27696         sugov:4-560   (  560) [006] d..2 29481.238303: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27697          <idle>-0     (-----) [006] d..1 29481.238313: cpu_idle: state=2 cpu_id=6
27698          <idle>-0     (-----) [003] d.h2 29481.239387: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
27699          <idle>-0     (-----) [003] dnh3 29481.239418: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
27700          <idle>-0     (-----) [003] .n.1 29481.239431: cpu_idle: state=4294967295 cpu_id=3
27701          <idle>-0     (-----) [003] d..2 29481.239447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
27702 bluetooth@1.0-s-24508 (  759) [003] d..2 29481.239671: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27703          <idle>-0     (-----) [003] d..1 29481.239687: cpu_idle: state=2 cpu_id=3
27704          <idle>-0     (-----) [002] d.h4 29481.239715: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27705          <idle>-0     (-----) [002] dnh5 29481.239751: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27706          <idle>-0     (-----) [002] .n.1 29481.239766: cpu_idle: state=4294967295 cpu_id=2
27707          <idle>-0     (-----) [002] d..2 29481.239787: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27708 smem_native_cds-87    (   87) [002] d..2 29481.239831: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27709          <idle>-0     (-----) [002] d..1 29481.239847: cpu_idle: state=2 cpu_id=2
27710          <idle>-0     (-----) [002] d.h4 29481.244754: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27711          <idle>-0     (-----) [002] d.h5 29481.244781: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27712          <idle>-0     (-----) [002] d..2 29481.244821: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27713          <idle>-0     (-----) [002] dn.3 29481.244834: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27714          <idle>-0     (-----) [002] .n.1 29481.244839: cpu_idle: state=4294967295 cpu_id=2
27715          <idle>-0     (-----) [002] d..2 29481.244858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27716     ksoftirqd/2-26    (   26) [002] d.s2 29481.244868: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27717     ksoftirqd/2-26    (   26) [002] d.s3 29481.244908: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27718     ksoftirqd/2-26    (   26) [002] d.s2 29481.244927: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27719     ksoftirqd/2-26    (   26) [002] dns3 29481.244956: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27720     ksoftirqd/2-26    (   26) [002] d..2 29481.244968: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
27721          <idle>-0     (-----) [000] .n.1 29481.245023: cpu_idle: state=4294967295 cpu_id=0
27722     kworker/2:2-13636 (13636) [002] d..2 29481.245032: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27723     ksoftirqd/2-26    (   26) [002] d..2 29481.245042: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27724          <idle>-0     (-----) [000] d..2 29481.245056: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27725  HwBinder:771_4-20182 (  771) [000] d..2 29481.245143: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27726  kworker/u16:10-23868 (23868) [002] d..2 29481.245159: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27727          <idle>-0     (-----) [002] d..1 29481.245177: cpu_idle: state=2 cpu_id=2
27728  HwBinder:771_4-20182 (  771) [000] d..3 29481.245192: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27729          <idle>-0     (-----) [002] .n.1 29481.245204: cpu_idle: state=4294967295 cpu_id=2
27730          <idle>-0     (-----) [002] d..2 29481.245220: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27731  HwBinder:771_4-20182 (  771) [000] d..2 29481.245227: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27732          <idle>-0     (-----) [000] d..1 29481.245249: cpu_idle: state=2 cpu_id=0
27733 cdsp_smem_glink-88    (   88) [002] d..2 29481.245275: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27734          <idle>-0     (-----) [002] d..1 29481.245287: cpu_idle: state=2 cpu_id=2
27735          <idle>-0     (-----) [002] d.h4 29481.250188: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27736          <idle>-0     (-----) [002] dnh5 29481.250216: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27737          <idle>-0     (-----) [002] dnh4 29481.250246: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27738          <idle>-0     (-----) [002] dnh5 29481.250261: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27739          <idle>-0     (-----) [002] .n.1 29481.250303: cpu_idle: state=4294967295 cpu_id=2
27740          <idle>-0     (-----) [002] d..2 29481.250321: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27741 smem_native_cds-87    (   87) [002] d..2 29481.250372: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27742          <idle>-0     (-----) [002] d..2 29481.250377: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27743          <idle>-0     (-----) [002] dn.3 29481.250386: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27744          <idle>-0     (-----) [002] dns3 29481.250423: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27745          <idle>-0     (-----) [002] dns4 29481.250439: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27746          <idle>-0     (-----) [002] d..2 29481.250458: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27747          <idle>-0     (-----) [000] .n.1 29481.250470: cpu_idle: state=4294967295 cpu_id=0
27748     ksoftirqd/2-26    (   26) [002] d..2 29481.250470: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27749          <idle>-0     (-----) [000] d..2 29481.250513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27750  kworker/u16:10-23868 (23868) [002] d..2 29481.250578: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27751          <idle>-0     (-----) [002] d..1 29481.250595: cpu_idle: state=2 cpu_id=2
27752  HwBinder:771_4-20182 (  771) [000] d..2 29481.250607: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27753  HwBinder:771_4-20182 (  771) [000] d..3 29481.250661: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27754  HwBinder:771_4-20182 (  771) [000] d..2 29481.250677: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27755 cdsp_smem_glink-88    (   88) [000] d..2 29481.250728: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27756          <idle>-0     (-----) [000] d..1 29481.250745: cpu_idle: state=2 cpu_id=0
27757          <idle>-0     (-----) [000] d..2 29481.255284: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27758          <idle>-0     (-----) [002] d.h4 29481.255288: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27759          <idle>-0     (-----) [000] dn.3 29481.255299: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27760          <idle>-0     (-----) [000] .n.1 29481.255305: cpu_idle: state=4294967295 cpu_id=0
27761          <idle>-0     (-----) [000] d..2 29481.255323: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
27762          <idle>-0     (-----) [002] dnh5 29481.255323: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27763     ksoftirqd/0-3     (    3) [000] d.s2 29481.255335: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27764          <idle>-0     (-----) [002] dnh4 29481.255353: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27765          <idle>-0     (-----) [002] dnh5 29481.255379: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27766     ksoftirqd/0-3     (    3) [000] d.s3 29481.255387: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27767     ksoftirqd/0-3     (    3) [000] d..2 29481.255402: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27768          <idle>-0     (-----) [002] .n.1 29481.255422: cpu_idle: state=4294967295 cpu_id=2
27769          <idle>-0     (-----) [002] d..2 29481.255444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27770  kworker/u16:10-23868 (23868) [000] d..2 29481.255484: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27771 smem_native_cds-87    (   87) [002] d..2 29481.255499: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27772          <idle>-0     (-----) [000] d..1 29481.255502: cpu_idle: state=2 cpu_id=0
27773          <idle>-0     (-----) [002] d..1 29481.255518: cpu_idle: state=2 cpu_id=2
27774          <idle>-0     (-----) [001] .n.1 29481.255708: cpu_idle: state=4294967295 cpu_id=1
27775          <idle>-0     (-----) [001] d..2 29481.255735: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27776  HwBinder:771_4-20182 (  771) [001] d..2 29481.255801: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27777  HwBinder:771_4-20182 (  771) [001] d..3 29481.255853: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27778  HwBinder:771_4-20182 (  771) [001] d..2 29481.255868: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27779 cdsp_smem_glink-88    (   88) [001] d..2 29481.255921: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27780          <idle>-0     (-----) [001] d..1 29481.255939: cpu_idle: state=2 cpu_id=1
27781          <idle>-0     (-----) [002] d.h4 29481.260570: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27782          <idle>-0     (-----) [002] dnh5 29481.260605: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27783          <idle>-0     (-----) [002] dnh4 29481.260634: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27784          <idle>-0     (-----) [002] dnh5 29481.260659: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27785          <idle>-0     (-----) [002] dnh3 29481.260759: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27786          <idle>-0     (-----) [002] dnh3 29481.260774: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27787          <idle>-0     (-----) [002] dnh4 29481.260788: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27788          <idle>-0     (-----) [002] .n.1 29481.260797: cpu_idle: state=4294967295 cpu_id=2
27789          <idle>-0     (-----) [002] d..2 29481.260816: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27790 smem_native_cds-87    (   87) [002] d..2 29481.260868: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27791          <idle>-0     (-----) [002] d..2 29481.260874: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27792          <idle>-0     (-----) [000] .n.1 29481.260876: cpu_idle: state=4294967295 cpu_id=0
27793          <idle>-0     (-----) [002] dn.3 29481.260884: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27794          <idle>-0     (-----) [002] d..2 29481.260893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27795     ksoftirqd/2-26    (   26) [002] d.s2 29481.260903: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27796          <idle>-0     (-----) [000] d..2 29481.260907: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27797     ksoftirqd/2-26    (   26) [002] d.s3 29481.260950: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27798     ksoftirqd/2-26    (   26) [002] d..2 29481.260965: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27799  HwBinder:771_4-20182 (  771) [000] d..2 29481.260978: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27800  HwBinder:771_4-20182 (  771) [000] d..3 29481.261040: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27801  HwBinder:771_4-20182 (  771) [000] d..2 29481.261085: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27802          <idle>-0     (-----) [003] .n.1 29481.261095: cpu_idle: state=4294967295 cpu_id=3
27803          <idle>-0     (-----) [003] d..2 29481.261118: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27804          <idle>-0     (-----) [000] d..1 29481.261123: cpu_idle: state=2 cpu_id=0
27805         sugov:0-559   (  559) [003] .... 29481.261177: clk_set_rate: pwrcl_clk 652800000
27806         sugov:0-559   (  559) [003] .... 29481.261188: clk_set_rate: cpu3_pwrcl_clk 979200000
27807         sugov:0-559   (  559) [003] .... 29481.261199: clk_set_rate: cpu2_pwrcl_clk 979200000
27808         sugov:0-559   (  559) [003] .... 29481.261209: clk_set_rate: cpu1_pwrcl_clk 979200000
27809         sugov:0-559   (  559) [003] .... 29481.261221: clk_set_rate: cpu0_pwrcl_clk 652800000
27810         sugov:0-559   (  559) [003] .... 29481.261337: cpu_frequency: state=652800 cpu_id=0
27811         sugov:0-559   (  559) [003] .... 29481.261356: cpu_frequency: state=652800 cpu_id=1
27812         sugov:0-559   (  559) [003] .... 29481.261362: cpu_frequency: state=652800 cpu_id=2
27813         sugov:0-559   (  559) [003] .... 29481.261367: cpu_frequency: state=652800 cpu_id=3
27814         sugov:0-559   (  559) [003] d..2 29481.261394: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27815 cdsp_smem_glink-88    (   88) [003] d..2 29481.261468: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27816          <idle>-0     (-----) [003] d..1 29481.261489: cpu_idle: state=2 cpu_id=3
27817  kworker/u16:10-23868 (23868) [002] d..2 29481.261581: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
27818          <idle>-0     (-----) [002] d..1 29481.261607: cpu_idle: state=2 cpu_id=2
27819          <idle>-0     (-----) [006] dnh2 29481.261852: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27820          <idle>-0     (-----) [006] .n.1 29481.261862: cpu_idle: state=4294967295 cpu_id=6
27821          <idle>-0     (-----) [006] d..2 29481.261874: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27822         sugov:4-560   (  560) [006] d..2 29481.261895: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27823          <idle>-0     (-----) [006] d..1 29481.261904: cpu_idle: state=2 cpu_id=6
27824          <idle>-0     (-----) [003] d.s3 29481.262044: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27825          <idle>-0     (-----) [003] d.s4 29481.262100: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
27826          <idle>-0     (-----) [003] dns4 29481.262109: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27827          <idle>-0     (-----) [003] .n.1 29481.262122: cpu_idle: state=4294967295 cpu_id=3
27828          <idle>-0     (-----) [003] d..2 29481.262143: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27829  kworker/u16:10-23868 (23868) [003] d..2 29481.262250: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27830          <idle>-0     (-----) [003] d..1 29481.262271: cpu_idle: state=2 cpu_id=3
27831          <idle>-0     (-----) [002] d.h4 29481.266202: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27832          <idle>-0     (-----) [002] dnh5 29481.266241: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27833          <idle>-0     (-----) [002] dnh4 29481.266273: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27834          <idle>-0     (-----) [002] dnh5 29481.266293: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27835          <idle>-0     (-----) [002] .n.1 29481.266340: cpu_idle: state=4294967295 cpu_id=2
27836          <idle>-0     (-----) [002] d..2 29481.266364: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27837 smem_native_cds-87    (   87) [002] d..2 29481.266429: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27838          <idle>-0     (-----) [002] d..2 29481.266436: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27839          <idle>-0     (-----) [002] dn.3 29481.266447: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27840          <idle>-0     (-----) [002] d..2 29481.266458: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27841     ksoftirqd/2-26    (   26) [002] d.s2 29481.266469: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
27842          <idle>-0     (-----) [000] .n.1 29481.266485: cpu_idle: state=4294967295 cpu_id=0
27843     ksoftirqd/2-26    (   26) [002] d.s3 29481.266519: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27844          <idle>-0     (-----) [000] d..2 29481.266521: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27845     ksoftirqd/2-26    (   26) [002] d.s2 29481.266534: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27846     ksoftirqd/2-26    (   26) [002] dns3 29481.266550: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
27847     ksoftirqd/2-26    (   26) [002] d..2 29481.266562: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
27848  HwBinder:771_4-20182 (  771) [000] d..2 29481.266631: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
27849  HwBinder:771_4-20182 (  771) [000] d..3 29481.266708: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27850     kworker/2:2-13636 (13636) [002] d..2 29481.266728: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27851     ksoftirqd/2-26    (   26) [002] d..2 29481.266742: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27852  HwBinder:771_4-20182 (  771) [000] d..2 29481.266769: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27853 cdsp_smem_glink-88    (   88) [002] d..2 29481.266789: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27854          <idle>-0     (-----) [000] d..1 29481.266792: cpu_idle: state=2 cpu_id=0
27855  kworker/u16:10-23868 (23868) [002] d..2 29481.266884: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27856          <idle>-0     (-----) [002] d..1 29481.266912: cpu_idle: state=2 cpu_id=2
27857          <idle>-0     (-----) [002] d.h4 29481.271915: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27858          <idle>-0     (-----) [002] dnh5 29481.271950: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27859          <idle>-0     (-----) [002] dnh4 29481.271982: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27860          <idle>-0     (-----) [002] dnh5 29481.272001: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27861          <idle>-0     (-----) [002] .n.1 29481.272049: cpu_idle: state=4294967295 cpu_id=2
27862          <idle>-0     (-----) [002] d..2 29481.272073: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27863 smem_native_cds-87    (   87) [002] d..2 29481.272135: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27864          <idle>-0     (-----) [002] d..2 29481.272142: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27865          <idle>-0     (-----) [002] dn.3 29481.272153: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27866          <idle>-0     (-----) [002] d..2 29481.272166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27867     ksoftirqd/2-26    (   26) [002] d.s2 29481.272176: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27868     ksoftirqd/2-26    (   26) [002] d.s3 29481.272198: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27869          <idle>-0     (-----) [000] .n.1 29481.272209: cpu_idle: state=4294967295 cpu_id=0
27870     ksoftirqd/2-26    (   26) [002] d..2 29481.272214: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27871          <idle>-0     (-----) [000] d..2 29481.272249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27872  kworker/u16:10-23868 (23868) [002] d..2 29481.272336: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27873          <idle>-0     (-----) [002] d..1 29481.272357: cpu_idle: state=2 cpu_id=2
27874  HwBinder:771_4-20182 (  771) [000] d..2 29481.272360: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27875  HwBinder:771_4-20182 (  771) [000] d..3 29481.272429: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27876  HwBinder:771_4-20182 (  771) [000] d..2 29481.272449: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27877 cdsp_smem_glink-88    (   88) [000] d..2 29481.272514: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27878          <idle>-0     (-----) [000] d..1 29481.272536: cpu_idle: state=2 cpu_id=0
27879          <idle>-0     (-----) [000] d..2 29481.276413: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27880          <idle>-0     (-----) [002] d.h4 29481.276422: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27881          <idle>-0     (-----) [000] dn.3 29481.276432: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27882          <idle>-0     (-----) [000] .n.1 29481.276438: cpu_idle: state=4294967295 cpu_id=0
27883          <idle>-0     (-----) [000] d..2 29481.276460: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
27884          <idle>-0     (-----) [002] dnh5 29481.276462: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27885     ksoftirqd/0-3     (    3) [000] d.s2 29481.276473: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27886          <idle>-0     (-----) [002] dnh4 29481.276496: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27887          <idle>-0     (-----) [002] dnh5 29481.276529: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27888     ksoftirqd/0-3     (    3) [000] d.s3 29481.276538: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27889     ksoftirqd/0-3     (    3) [000] d..2 29481.276558: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27890          <idle>-0     (-----) [002] .n.1 29481.276579: cpu_idle: state=4294967295 cpu_id=2
27891          <idle>-0     (-----) [002] d..2 29481.276606: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27892  kworker/u16:10-23868 (23868) [000] d..2 29481.276663: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27893 smem_native_cds-87    (   87) [002] d..2 29481.276670: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27894          <idle>-0     (-----) [000] d..1 29481.276684: cpu_idle: state=2 cpu_id=0
27895          <idle>-0     (-----) [002] d..1 29481.276694: cpu_idle: state=2 cpu_id=2
27896          <idle>-0     (-----) [001] .n.1 29481.276870: cpu_idle: state=4294967295 cpu_id=1
27897          <idle>-0     (-----) [001] d..2 29481.276902: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27898  HwBinder:771_4-20182 (  771) [001] d..2 29481.276981: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27899  HwBinder:771_4-20182 (  771) [001] d..3 29481.277041: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27900  HwBinder:771_4-20182 (  771) [001] d..2 29481.277070: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27901 cdsp_smem_glink-88    (   88) [001] d.H4 29481.277195: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27902 cdsp_smem_glink-88    (   88) [001] d.H4 29481.277217: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27903 cdsp_smem_glink-88    (   88) [001] d.H5 29481.277235: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27904 cdsp_smem_glink-88    (   88) [001] d..2 29481.277327: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27905          <idle>-0     (-----) [001] d..1 29481.277351: cpu_idle: state=2 cpu_id=1
27906          <idle>-0     (-----) [003] .n.1 29481.277549: cpu_idle: state=4294967295 cpu_id=3
27907          <idle>-0     (-----) [003] d..2 29481.277573: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
27908         sugov:0-559   (  559) [003] d..2 29481.277618: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27909          <idle>-0     (-----) [003] d..1 29481.277635: cpu_idle: state=2 cpu_id=3
27910          <idle>-0     (-----) [006] dnh2 29481.278274: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
27911          <idle>-0     (-----) [006] .n.1 29481.278283: cpu_idle: state=4294967295 cpu_id=6
27912          <idle>-0     (-----) [006] d..2 29481.278295: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
27913         sugov:4-560   (  560) [006] d..2 29481.278316: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27914          <idle>-0     (-----) [006] d..1 29481.278326: cpu_idle: state=2 cpu_id=6
27915          <idle>-0     (-----) [006] ...1 29481.281251: cpu_idle: state=4294967295 cpu_id=6
27916          <idle>-0     (-----) [006] d..1 29481.281256: cpu_idle: state=2 cpu_id=6
27917          <idle>-0     (-----) [002] d.h4 29481.281306: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27918          <idle>-0     (-----) [002] dnh5 29481.281351: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27919          <idle>-0     (-----) [002] dnh4 29481.281387: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27920          <idle>-0     (-----) [002] dnh5 29481.281417: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27921          <idle>-0     (-----) [002] .n.1 29481.281466: cpu_idle: state=4294967295 cpu_id=2
27922          <idle>-0     (-----) [002] d..2 29481.281490: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27923 smem_native_cds-87    (   87) [002] d..2 29481.281553: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27924          <idle>-0     (-----) [002] d..2 29481.281559: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27925          <idle>-0     (-----) [002] dn.3 29481.281572: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27926          <idle>-0     (-----) [002] d..2 29481.281583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27927          <idle>-0     (-----) [000] .n.1 29481.281586: cpu_idle: state=4294967295 cpu_id=0
27928     ksoftirqd/2-26    (   26) [002] d.s2 29481.281595: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
27929          <idle>-0     (-----) [000] d..2 29481.281621: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27930     ksoftirqd/2-26    (   26) [002] d.s3 29481.281648: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27931     ksoftirqd/2-26    (   26) [002] d..2 29481.281666: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27932  HwBinder:771_4-20182 (  771) [000] d..2 29481.281727: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
27933  kworker/u16:10-23868 (23868) [002] d..2 29481.281758: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27934          <idle>-0     (-----) [002] d..1 29481.281779: cpu_idle: state=2 cpu_id=2
27935  HwBinder:771_4-20182 (  771) [000] d..3 29481.281802: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27936  HwBinder:771_4-20182 (  771) [000] d..2 29481.281843: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27937          <idle>-0     (-----) [000] d..1 29481.281869: cpu_idle: state=2 cpu_id=0
27938          <idle>-0     (-----) [002] .n.1 29481.282240: cpu_idle: state=4294967295 cpu_id=2
27939          <idle>-0     (-----) [002] d..2 29481.282267: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27940 cdsp_smem_glink-88    (   88) [002] d..2 29481.282341: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27941          <idle>-0     (-----) [002] d..1 29481.282360: cpu_idle: state=2 cpu_id=2
27942          <idle>-0     (-----) [002] d.h4 29481.287360: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27943          <idle>-0     (-----) [002] dnh5 29481.287396: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27944          <idle>-0     (-----) [002] dnh4 29481.287435: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27945          <idle>-0     (-----) [002] dnh5 29481.287454: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27946          <idle>-0     (-----) [002] .n.1 29481.287505: cpu_idle: state=4294967295 cpu_id=2
27947          <idle>-0     (-----) [002] d..2 29481.287528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27948 smem_native_cds-87    (   87) [002] d..2 29481.287591: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27949          <idle>-0     (-----) [002] d..2 29481.287600: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27950          <idle>-0     (-----) [002] dn.3 29481.287611: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27951          <idle>-0     (-----) [002] d..2 29481.287623: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27952     ksoftirqd/2-26    (   26) [002] d.s2 29481.287634: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27953     ksoftirqd/2-26    (   26) [002] d.s3 29481.287654: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27954          <idle>-0     (-----) [000] .n.1 29481.287655: cpu_idle: state=4294967295 cpu_id=0
27955     ksoftirqd/2-26    (   26) [002] d..2 29481.287672: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27956          <idle>-0     (-----) [000] d..2 29481.287693: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27957  HwBinder:771_4-20182 (  771) [000] d..2 29481.287803: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27958  kworker/u16:10-23868 (23868) [002] d..2 29481.287806: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27959          <idle>-0     (-----) [002] d..1 29481.287828: cpu_idle: state=2 cpu_id=2
27960  HwBinder:771_4-20182 (  771) [000] d..3 29481.287851: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27961  HwBinder:771_4-20182 (  771) [000] d..2 29481.287894: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27962          <idle>-0     (-----) [000] d..1 29481.287919: cpu_idle: state=2 cpu_id=0
27963          <idle>-0     (-----) [002] .n.1 29481.288288: cpu_idle: state=4294967295 cpu_id=2
27964          <idle>-0     (-----) [002] d..2 29481.288317: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27965 cdsp_smem_glink-88    (   88) [002] d..2 29481.288392: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27966          <idle>-0     (-----) [002] d..1 29481.288411: cpu_idle: state=2 cpu_id=2
27967          <idle>-0     (-----) [002] d.h4 29481.293417: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27968          <idle>-0     (-----) [002] dnh5 29481.293452: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27969          <idle>-0     (-----) [002] dnh4 29481.293486: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27970          <idle>-0     (-----) [002] dnh5 29481.293506: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27971          <idle>-0     (-----) [002] .n.1 29481.293556: cpu_idle: state=4294967295 cpu_id=2
27972          <idle>-0     (-----) [002] d..2 29481.293581: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
27973 smem_native_cds-87    (   87) [002] d..2 29481.293647: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27974          <idle>-0     (-----) [002] d..2 29481.293653: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27975          <idle>-0     (-----) [002] dn.3 29481.293664: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
27976          <idle>-0     (-----) [002] d..2 29481.293677: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
27977     ksoftirqd/2-26    (   26) [002] d.s2 29481.293688: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27978     ksoftirqd/2-26    (   26) [002] d.s3 29481.293709: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27979          <idle>-0     (-----) [000] .n.1 29481.293711: cpu_idle: state=4294967295 cpu_id=0
27980     ksoftirqd/2-26    (   26) [002] d..2 29481.293726: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
27981          <idle>-0     (-----) [000] d..2 29481.293795: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
27982  kworker/u16:10-23868 (23868) [002] d..2 29481.293890: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27983          <idle>-0     (-----) [002] d..1 29481.293913: cpu_idle: state=2 cpu_id=2
27984  HwBinder:771_4-20182 (  771) [000] d..2 29481.293937: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
27985  HwBinder:771_4-20182 (  771) [000] d..3 29481.294006: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
27986  HwBinder:771_4-20182 (  771) [000] d..2 29481.294027: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
27987 cdsp_smem_glink-88    (   88) [000] d..2 29481.294092: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27988          <idle>-0     (-----) [000] d..1 29481.294114: cpu_idle: state=2 cpu_id=0
27989          <idle>-0     (-----) [002] d.h4 29481.297973: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27990          <idle>-0     (-----) [000] d..2 29481.297975: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27991          <idle>-0     (-----) [000] dn.3 29481.297995: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
27992          <idle>-0     (-----) [002] dnh5 29481.298022: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
27993          <idle>-0     (-----) [000] dnH3 29481.298100: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
27994          <idle>-0     (-----) [002] dnh4 29481.298105: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
27995          <idle>-0     (-----) [000] dnH3 29481.298119: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
27996          <idle>-0     (-----) [000] dnH4 29481.298139: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
27997          <idle>-0     (-----) [002] dnh5 29481.298141: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
27998          <idle>-0     (-----) [000] dns3 29481.298154: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
27999          <idle>-0     (-----) [002] .n.1 29481.298193: cpu_idle: state=4294967295 cpu_id=2
28000          <idle>-0     (-----) [000] dns4 29481.298204: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28001          <idle>-0     (-----) [002] d..2 29481.298218: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28002          <idle>-0     (-----) [000] .n.1 29481.298219: cpu_idle: state=4294967295 cpu_id=0
28003          <idle>-0     (-----) [000] d..2 29481.298248: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
28004     ksoftirqd/0-3     (    3) [000] d..2 29481.298264: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28005 smem_native_cds-87    (   87) [002] d..2 29481.298287: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28006          <idle>-0     (-----) [002] d..1 29481.298348: cpu_idle: state=2 cpu_id=2
28007  kworker/u16:10-23868 (23868) [000] d..2 29481.298415: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28008          <idle>-0     (-----) [000] d..1 29481.298438: cpu_idle: state=2 cpu_id=0
28009          <idle>-0     (-----) [003] .n.1 29481.298464: cpu_idle: state=4294967295 cpu_id=3
28010          <idle>-0     (-----) [003] d..2 29481.298491: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
28011          <idle>-0     (-----) [001] .n.1 29481.298532: cpu_idle: state=4294967295 cpu_id=1
28012         sugov:0-559   (  559) [003] d..2 29481.298537: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28013          <idle>-0     (-----) [003] d..1 29481.298555: cpu_idle: state=2 cpu_id=3
28014          <idle>-0     (-----) [001] d..2 29481.298567: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28015  HwBinder:771_4-20182 (  771) [001] d..2 29481.298647: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28016  HwBinder:771_4-20182 (  771) [001] d..3 29481.298710: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28017  HwBinder:771_4-20182 (  771) [001] d..2 29481.298730: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28018 cdsp_smem_glink-88    (   88) [001] d..2 29481.298793: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28019          <idle>-0     (-----) [001] d..1 29481.298815: cpu_idle: state=2 cpu_id=1
28020          <idle>-0     (-----) [006] dnh2 29481.299184: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28021          <idle>-0     (-----) [006] .n.1 29481.299194: cpu_idle: state=4294967295 cpu_id=6
28022          <idle>-0     (-----) [006] d..2 29481.299206: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28023         sugov:4-560   (  560) [006] d..2 29481.299227: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28024          <idle>-0     (-----) [006] d..1 29481.299238: cpu_idle: state=2 cpu_id=6
28025          <idle>-0     (-----) [002] d.h4 29481.303416: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28026          <idle>-0     (-----) [002] dnh5 29481.303452: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28027          <idle>-0     (-----) [002] dnh4 29481.303487: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28028          <idle>-0     (-----) [002] dnh5 29481.303516: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28029          <idle>-0     (-----) [002] .n.1 29481.303565: cpu_idle: state=4294967295 cpu_id=2
28030          <idle>-0     (-----) [002] d..2 29481.303589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28031 smem_native_cds-87    (   87) [002] d..2 29481.303653: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28032          <idle>-0     (-----) [002] d..2 29481.303661: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28033          <idle>-0     (-----) [002] dn.3 29481.303675: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28034          <idle>-0     (-----) [002] d..2 29481.303687: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28035          <idle>-0     (-----) [000] .n.1 29481.303711: cpu_idle: state=4294967295 cpu_id=0
28036     ksoftirqd/2-26    (   26) [002] d..2 29481.303718: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28037          <idle>-0     (-----) [000] d..2 29481.303750: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28038          <idle>-0     (-----) [002] d.s4 29481.303772: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
28039          <idle>-0     (-----) [002] d.s4 29481.303797: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28040          <idle>-0     (-----) [002] dns5 29481.303828: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28041  HwBinder:771_4-20182 (  771) [000] d..2 29481.303837: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28042          <idle>-0     (-----) [002] d..2 29481.303858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28043  HwBinder:771_4-20182 (  771) [000] d..3 29481.303914: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28044  HwBinder:771_4-20182 (  771) [000] d..2 29481.304011: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28045          <idle>-0     (-----) [000] d..1 29481.304059: cpu_idle: state=2 cpu_id=0
28046  kworker/u16:10-23868 (23868) [002] d..2 29481.304080: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28047 cdsp_smem_glink-88    (   88) [002] d..2 29481.304143: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28048          <idle>-0     (-----) [002] d..1 29481.304168: cpu_idle: state=2 cpu_id=2
28049          <idle>-0     (-----) [006] dnh2 29481.304857: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
28050          <idle>-0     (-----) [006] .n.1 29481.304867: cpu_idle: state=4294967295 cpu_id=6
28051          <idle>-0     (-----) [006] d..2 29481.304883: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
28052     kworker/6:0-21469 (21469) [006] d..2 29481.304923: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28053          <idle>-0     (-----) [006] d..1 29481.304934: cpu_idle: state=2 cpu_id=6
28054          <idle>-0     (-----) [006] ...1 29481.308689: cpu_idle: state=4294967295 cpu_id=6
28055          <idle>-0     (-----) [006] d..1 29481.308694: cpu_idle: state=2 cpu_id=6
28056          <idle>-0     (-----) [002] d.h4 29481.308744: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28057          <idle>-0     (-----) [002] dnh5 29481.308787: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28058          <idle>-0     (-----) [002] dnh4 29481.308821: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28059          <idle>-0     (-----) [002] dnh5 29481.308841: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28060          <idle>-0     (-----) [002] .n.1 29481.308890: cpu_idle: state=4294967295 cpu_id=2
28061          <idle>-0     (-----) [002] d..2 29481.308916: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28062 smem_native_cds-87    (   87) [002] d..2 29481.308979: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28063          <idle>-0     (-----) [002] d..2 29481.308987: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28064          <idle>-0     (-----) [002] dn.3 29481.309000: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28065          <idle>-0     (-----) [002] d..2 29481.309010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28066     ksoftirqd/2-26    (   26) [002] d.s2 29481.309021: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28067          <idle>-0     (-----) [000] .n.1 29481.309027: cpu_idle: state=4294967295 cpu_id=0
28068     ksoftirqd/2-26    (   26) [002] d.s3 29481.309044: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28069          <idle>-0     (-----) [000] d..2 29481.309064: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28070     ksoftirqd/2-26    (   26) [002] d..2 29481.309064: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28071  HwBinder:771_4-20182 (  771) [000] d..2 29481.309170: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28072  kworker/u16:10-23868 (23868) [002] d..2 29481.309195: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28073  HwBinder:771_4-20182 (  771) [000] d..3 29481.309216: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28074          <idle>-0     (-----) [002] d..2 29481.309234: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28075  HwBinder:771_4-20182 (  771) [000] d..2 29481.309259: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28076          <idle>-0     (-----) [000] d..1 29481.309285: cpu_idle: state=2 cpu_id=0
28077 cdsp_smem_glink-88    (   88) [002] d..2 29481.309297: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28078          <idle>-0     (-----) [002] d..1 29481.309316: cpu_idle: state=2 cpu_id=2
28079          <idle>-0     (-----) [002] d.h4 29481.314322: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28080          <idle>-0     (-----) [002] dnh5 29481.314357: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28081          <idle>-0     (-----) [002] dnh4 29481.314390: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28082          <idle>-0     (-----) [002] dnh5 29481.314409: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28083          <idle>-0     (-----) [002] .n.1 29481.314459: cpu_idle: state=4294967295 cpu_id=2
28084          <idle>-0     (-----) [002] d..2 29481.314482: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28085 smem_native_cds-87    (   87) [002] d..2 29481.314546: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28086          <idle>-0     (-----) [002] d..2 29481.314552: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28087          <idle>-0     (-----) [002] dn.3 29481.314569: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28088          <idle>-0     (-----) [002] d..2 29481.314581: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28089     ksoftirqd/2-26    (   26) [002] d.s2 29481.314592: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28090     ksoftirqd/2-26    (   26) [002] d.s3 29481.314613: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28091          <idle>-0     (-----) [000] .n.1 29481.314616: cpu_idle: state=4294967295 cpu_id=0
28092     ksoftirqd/2-26    (   26) [002] d..2 29481.314633: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28093          <idle>-0     (-----) [000] d..2 29481.314653: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28094  HwBinder:771_4-20182 (  771) [000] d..2 29481.314743: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28095  HwBinder:771_4-20182 (  771) [000] d..3 29481.314792: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28096  HwBinder:771_4-20182 (  771) [000] d..2 29481.314856: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28097          <idle>-0     (-----) [000] d..1 29481.314903: cpu_idle: state=2 cpu_id=0
28098  kworker/u16:10-23868 (23868) [002] d..2 29481.314922: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28099 cdsp_smem_glink-88    (   88) [002] d..2 29481.314984: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28100          <idle>-0     (-----) [002] d..1 29481.315009: cpu_idle: state=2 cpu_id=2
28101          <idle>-0     (-----) [002] d.h4 29481.320009: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28102          <idle>-0     (-----) [002] dnh5 29481.320053: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28103          <idle>-0     (-----) [002] dnh4 29481.320087: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28104          <idle>-0     (-----) [002] dnh5 29481.320107: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28105          <idle>-0     (-----) [002] dnh3 29481.320232: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28106          <idle>-0     (-----) [002] dnh3 29481.320251: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
28107          <idle>-0     (-----) [002] dnh4 29481.320269: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
28108          <idle>-0     (-----) [002] .n.1 29481.320282: cpu_idle: state=4294967295 cpu_id=2
28109          <idle>-0     (-----) [000] .n.1 29481.320302: cpu_idle: state=4294967295 cpu_id=0
28110          <idle>-0     (-----) [002] d..2 29481.320306: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28111          <idle>-0     (-----) [000] d..2 29481.320340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28112 smem_native_cds-87    (   87) [002] d..2 29481.320374: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28113          <idle>-0     (-----) [002] d..2 29481.320381: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28114          <idle>-0     (-----) [002] dn.3 29481.320394: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28115  HwBinder:771_4-20182 (  771) [000] d.s3 29481.320436: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28116          <idle>-0     (-----) [002] d..2 29481.320467: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28117  HwBinder:771_4-20182 (  771) [000] d.s4 29481.320485: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28118     ksoftirqd/2-26    (   26) [002] d..2 29481.320501: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28119  HwBinder:771_4-20182 (  771) [000] d.s3 29481.320513: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=001
28120  HwBinder:771_4-20182 (  771) [000] d.s4 29481.320581: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
28121          <idle>-0     (-----) [003] .n.1 29481.320583: cpu_idle: state=4294967295 cpu_id=3
28122          <idle>-0     (-----) [003] d..2 29481.320614: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
28123         sugov:0-559   (  559) [003] d..2 29481.320645: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
28124  HwBinder:771_4-20182 (  771) [000] d..2 29481.320655: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28125  HwBinder:771_4-20182 (  771) [000] d..3 29481.320683: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28126  HwBinder:771_4-20182 (  771) [000] d..2 29481.320735: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28127  kworker/u16:16-25995 (25995) [003] d..2 29481.320739: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28128          <idle>-0     (-----) [000] d..1 29481.320760: cpu_idle: state=2 cpu_id=0
28129          <idle>-0     (-----) [003] d..1 29481.320774: cpu_idle: state=2 cpu_id=3
28130  kworker/u16:10-23868 (23868) [002] d..2 29481.320810: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28131 cdsp_smem_glink-88    (   88) [002] d..2 29481.320875: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28132          <idle>-0     (-----) [002] d..1 29481.320898: cpu_idle: state=2 cpu_id=2
28133          <idle>-0     (-----) [006] dnh2 29481.321308: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28134          <idle>-0     (-----) [006] .n.1 29481.321317: cpu_idle: state=4294967295 cpu_id=6
28135          <idle>-0     (-----) [006] d..2 29481.321330: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28136         sugov:4-560   (  560) [006] d..2 29481.321352: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28137          <idle>-0     (-----) [006] d..1 29481.321363: cpu_idle: state=2 cpu_id=6
28138          <idle>-0     (-----) [006] ...1 29481.325116: cpu_idle: state=4294967295 cpu_id=6
28139          <idle>-0     (-----) [006] d..1 29481.325121: cpu_idle: state=2 cpu_id=6
28140          <idle>-0     (-----) [002] d.h4 29481.325169: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28141          <idle>-0     (-----) [002] dnh5 29481.325212: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28142          <idle>-0     (-----) [002] dnh4 29481.325245: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28143          <idle>-0     (-----) [002] dnh5 29481.325265: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28144          <idle>-0     (-----) [002] .n.1 29481.325313: cpu_idle: state=4294967295 cpu_id=2
28145          <idle>-0     (-----) [002] d..2 29481.325337: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28146 smem_native_cds-87    (   87) [002] d..2 29481.325401: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28147          <idle>-0     (-----) [002] d..2 29481.325407: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28148          <idle>-0     (-----) [002] dn.3 29481.325418: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28149          <idle>-0     (-----) [002] d..2 29481.325431: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28150     ksoftirqd/2-26    (   26) [002] d.s2 29481.325442: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28151          <idle>-0     (-----) [000] .n.1 29481.325454: cpu_idle: state=4294967295 cpu_id=0
28152     ksoftirqd/2-26    (   26) [002] d.s3 29481.325465: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28153     ksoftirqd/2-26    (   26) [002] d..2 29481.325483: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28154          <idle>-0     (-----) [000] d..2 29481.325488: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28155  kworker/u16:10-23868 (23868) [002] d..2 29481.325575: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28156  HwBinder:771_4-20182 (  771) [000] d..2 29481.325594: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28157          <idle>-0     (-----) [002] d..1 29481.325597: cpu_idle: state=2 cpu_id=2
28158  HwBinder:771_4-20182 (  771) [000] d..3 29481.325664: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28159  HwBinder:771_4-20182 (  771) [000] d..2 29481.325683: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28160 cdsp_smem_glink-88    (   88) [000] d..2 29481.325747: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28161          <idle>-0     (-----) [000] d..1 29481.325769: cpu_idle: state=2 cpu_id=0
28162          <idle>-0     (-----) [002] d.h4 29481.330411: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28163          <idle>-0     (-----) [000] d..2 29481.330412: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28164          <idle>-0     (-----) [000] dn.3 29481.330433: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28165          <idle>-0     (-----) [000] .n.1 29481.330441: cpu_idle: state=4294967295 cpu_id=0
28166          <idle>-0     (-----) [002] dnh5 29481.330454: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28167          <idle>-0     (-----) [000] d..2 29481.330465: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
28168     ksoftirqd/0-3     (    3) [000] d.s2 29481.330482: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28169          <idle>-0     (-----) [002] dnh4 29481.330490: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28170     ksoftirqd/0-3     (    3) [000] d.s3 29481.330499: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28171     ksoftirqd/0-3     (    3) [000] d.s2 29481.330504: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28172          <idle>-0     (-----) [002] dnh5 29481.330524: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28173     ksoftirqd/0-3     (    3) [000] d.s3 29481.330561: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
28174          <idle>-0     (-----) [002] .n.1 29481.330576: cpu_idle: state=4294967295 cpu_id=2
28175          <idle>-0     (-----) [002] d..2 29481.330605: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28176     ksoftirqd/0-3     (    3) [000] d..2 29481.330631: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28177 smem_native_cds-87    (   87) [002] d..2 29481.330645: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28178     kworker/2:2-13636 (13636) [002] d..2 29481.330699: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28179          <idle>-0     (-----) [002] d..1 29481.330761: cpu_idle: state=2 cpu_id=2
28180  kworker/u16:10-23868 (23868) [000] d..2 29481.330787: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28181          <idle>-0     (-----) [000] d..1 29481.330812: cpu_idle: state=2 cpu_id=0
28182          <idle>-0     (-----) [001] .n.1 29481.330841: cpu_idle: state=4294967295 cpu_id=1
28183          <idle>-0     (-----) [001] d..2 29481.330874: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28184  HwBinder:771_4-20182 (  771) [001] d.s2 29481.333785: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28185  HwBinder:771_4-20182 (  771) [001] d.s3 29481.333844: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
28186  HwBinder:771_4-20182 (  771) [001] dnH2 29481.337185: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28187  HwBinder:771_4-20182 (  771) [001] dnH2 29481.337206: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
28188  HwBinder:771_4-20182 (  771) [001] dnH3 29481.337226: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
28189  HwBinder:771_4-20182 (  771) [001] d..2 29481.337249: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28190  kworker/u16:10-23868 (23868) [001] .... 29481.337288: clk_set_rate: l3_cluster0_vote_clk 403200000
28191  kworker/u16:10-23868 (23868) [001] .... 29481.337296: clk_set_rate: l3_clk 403200000
28192  kworker/u16:10-23868 (23868) [001] d..2 29481.337345: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28193          <idle>-0     (-----) [003] .n.1 29481.337548: cpu_idle: state=4294967295 cpu_id=3
28194          <idle>-0     (-----) [003] d..2 29481.337577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
28195         sugov:0-559   (  559) [003] d..2 29481.337631: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28196          <idle>-0     (-----) [003] d..1 29481.337648: cpu_idle: state=2 cpu_id=3
28197          <idle>-0     (-----) [006] dnh2 29481.338252: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28198          <idle>-0     (-----) [006] .n.1 29481.338261: cpu_idle: state=4294967295 cpu_id=6
28199          <idle>-0     (-----) [006] d..2 29481.338273: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28200         sugov:4-560   (  560) [006] d..2 29481.338295: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28201          <idle>-0     (-----) [006] d..1 29481.338304: cpu_idle: state=2 cpu_id=6
28202  HwBinder:771_4-20182 (  771) [001] d..2 29481.338546: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28203  HwBinder:771_4-20182 (  771) [001] d..3 29481.338604: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28204  HwBinder:771_4-20182 (  771) [001] d..2 29481.338624: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28205 cdsp_smem_glink-88    (   88) [001] d..2 29481.338686: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28206          <idle>-0     (-----) [001] d..1 29481.338713: cpu_idle: state=2 cpu_id=1
28207          <idle>-0     (-----) [001] ...1 29481.343258: cpu_idle: state=4294967295 cpu_id=1
28208          <idle>-0     (-----) [001] d..1 29481.343267: cpu_idle: state=2 cpu_id=1
28209          <idle>-0     (-----) [002] d.h4 29481.343297: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28210          <idle>-0     (-----) [002] dnh5 29481.343335: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28211          <idle>-0     (-----) [002] .n.1 29481.343352: cpu_idle: state=4294967295 cpu_id=2
28212          <idle>-0     (-----) [002] d..2 29481.343375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28213 smem_native_cds-87    (   87) [002] d..2 29481.343438: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28214          <idle>-0     (-----) [002] d..2 29481.343443: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28215          <idle>-0     (-----) [002] dn.3 29481.343457: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28216          <idle>-0     (-----) [002] d..2 29481.343467: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28217     ksoftirqd/2-26    (   26) [002] d.s2 29481.343480: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
28218     ksoftirqd/2-26    (   26) [002] dns3 29481.343526: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28219     ksoftirqd/2-26    (   26) [002] d..2 29481.343542: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28220          <idle>-0     (-----) [000] ...1 29481.343576: cpu_idle: state=4294967295 cpu_id=0
28221          <idle>-0     (-----) [000] d..1 29481.343589: cpu_idle: state=2 cpu_id=0
28222  kworker/u16:10-23868 (23868) [002] d..2 29481.343618: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28223     ksoftirqd/2-26    (   26) [002] d..2 29481.343643: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28224          <idle>-0     (-----) [002] d..1 29481.343666: cpu_idle: state=2 cpu_id=2
28225          <idle>-0     (-----) [002] d.h4 29481.351418: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28226          <idle>-0     (-----) [000] d..2 29481.351484: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28227          <idle>-0     (-----) [000] dn.3 29481.351631: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28228          <idle>-0     (-----) [002] d.h5 29481.351690: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28229          <idle>-0     (-----) [000] .n.1 29481.351697: cpu_idle: state=4294967295 cpu_id=0
28230          <idle>-0     (-----) [002] ...1 29481.351841: cpu_idle: state=4294967295 cpu_id=2
28231          <idle>-0     (-----) [000] d..2 29481.351865: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
28232          <idle>-0     (-----) [002] d..1 29481.351897: cpu_idle: state=2 cpu_id=2
28233     ksoftirqd/0-3     (    3) [000] d.s2 29481.351957: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28234     ksoftirqd/0-3     (    3) [000] d.s3 29481.352138: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28235     ksoftirqd/0-3     (    3) [000] d..2 29481.352194: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28236  kworker/u16:10-23868 (23868) [000] .... 29481.352452: clk_set_rate: l3_cluster0_vote_clk 300000000
28237  kworker/u16:10-23868 (23868) [000] .... 29481.352486: clk_set_rate: l3_clk 300000000
28238  kworker/u16:10-23868 (23868) [000] d..2 29481.352923: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28239  HwBinder:771_4-20182 (  771) [000] d..2 29481.354352: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28240  HwBinder:771_4-20182 (  771) [000] d..3 29481.354440: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28241  HwBinder:771_4-20182 (  771) [000] d..2 29481.354479: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28242 cdsp_smem_glink-88    (   88) [000] d..2 29481.354727: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28243          <idle>-0     (-----) [000] d..1 29481.354793: cpu_idle: state=2 cpu_id=0
28244          <idle>-0     (-----) [002] d.h4 29481.358847: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28245          <idle>-0     (-----) [000] d..2 29481.358851: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28246          <idle>-0     (-----) [000] dn.3 29481.358872: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28247          <idle>-0     (-----) [002] dnh5 29481.358917: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28248          <idle>-0     (-----) [002] dnh4 29481.359142: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28249          <idle>-0     (-----) [002] dnh5 29481.359184: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28250          <idle>-0     (-----) [000] dnH3 29481.359203: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28251          <idle>-0     (-----) [002] .n.1 29481.359235: cpu_idle: state=4294967295 cpu_id=2
28252          <idle>-0     (-----) [000] dnH3 29481.359269: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
28253          <idle>-0     (-----) [002] d..2 29481.359272: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28254          <idle>-0     (-----) [000] dnH4 29481.359327: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
28255          <idle>-0     (-----) [000] dns3 29481.359358: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
28256          <idle>-0     (-----) [000] dns4 29481.359387: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
28257          <idle>-0     (-----) [000] dns3 29481.359401: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
28258          <idle>-0     (-----) [000] dns4 29481.359419: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
28259          <idle>-0     (-----) [000] .n.1 29481.359437: cpu_idle: state=4294967295 cpu_id=0
28260 smem_native_cds-87    (   87) [002] d..2 29481.359459: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28261          <idle>-0     (-----) [000] d..2 29481.359465: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
28262          <idle>-0     (-----) [002] d..1 29481.359481: cpu_idle: state=2 cpu_id=2
28263     ksoftirqd/0-3     (    3) [000] d..2 29481.359482: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
28264          <idle>-0     (-----) [001] .n.1 29481.359559: cpu_idle: state=4294967295 cpu_id=1
28265     kworker/0:0-13450 (13450) [000] d..2 29481.359584: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28266          <idle>-0     (-----) [000] d..1 29481.359606: cpu_idle: state=2 cpu_id=0
28267          <idle>-0     (-----) [001] d..2 29481.359622: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
28268     kworker/1:1-13678 (13678) [001] d..2 29481.359670: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28269          <idle>-0     (-----) [003] .n.1 29481.359718: cpu_idle: state=4294967295 cpu_id=3
28270          <idle>-0     (-----) [003] d..2 29481.359772: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
28271  HwBinder:771_4-20182 (  771) [001] d..2 29481.359775: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28272  HwBinder:771_4-20182 (  771) [001] d..3 29481.359841: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28273         sugov:0-559   (  559) [003] .... 29481.359884: clk_set_rate: pwrcl_clk 748800000
28274  HwBinder:771_4-20182 (  771) [001] d..2 29481.359887: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28275         sugov:0-559   (  559) [003] .... 29481.359904: clk_set_rate: cpu3_pwrcl_clk 652800000
28276          <idle>-0     (-----) [001] d..1 29481.359915: cpu_idle: state=2 cpu_id=1
28277         sugov:0-559   (  559) [003] .... 29481.359925: clk_set_rate: cpu2_pwrcl_clk 652800000
28278         sugov:0-559   (  559) [003] .... 29481.359935: clk_set_rate: cpu1_pwrcl_clk 652800000
28279         sugov:0-559   (  559) [003] .... 29481.359948: clk_set_rate: cpu0_pwrcl_clk 748800000
28280         sugov:0-559   (  559) [003] .... 29481.359966: cpu_frequency: state=748800 cpu_id=0
28281         sugov:0-559   (  559) [003] .... 29481.360053: cpu_frequency: state=748800 cpu_id=1
28282         sugov:0-559   (  559) [003] .... 29481.360058: cpu_frequency: state=748800 cpu_id=2
28283         sugov:0-559   (  559) [003] .... 29481.360063: cpu_frequency: state=748800 cpu_id=3
28284         sugov:0-559   (  559) [003] d..2 29481.360113: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28285 cdsp_smem_glink-88    (   88) [003] d..2 29481.360188: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28286          <idle>-0     (-----) [003] d..1 29481.360213: cpu_idle: state=2 cpu_id=3
28287          <idle>-0     (-----) [006] dnh2 29481.360416: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28288          <idle>-0     (-----) [006] .n.1 29481.360437: cpu_idle: state=4294967295 cpu_id=6
28289          <idle>-0     (-----) [006] d..2 29481.360462: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28290         sugov:4-560   (  560) [006] d..2 29481.360512: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28291          <idle>-0     (-----) [006] d..2 29481.360517: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
28292          <idle>-0     (-----) [006] dn.3 29481.360532: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
28293          <idle>-0     (-----) [006] d..2 29481.360542: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/6 next_pid=58 next_prio=120
28294     ksoftirqd/6-58    (   58) [006] d.s2 29481.360560: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28295     ksoftirqd/6-58    (   58) [006] d..2 29481.360594: sched_switch: prev_comm=ksoftirqd/6 prev_pid=58 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28296          <idle>-0     (-----) [006] d..1 29481.360617: cpu_idle: state=2 cpu_id=6
28297          <idle>-0     (-----) [000] dnh2 29481.360974: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28298          <idle>-0     (-----) [000] .n.1 29481.360987: cpu_idle: state=4294967295 cpu_id=0
28299          <idle>-0     (-----) [000] d..2 29481.361008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28300  kworker/u16:10-23868 (23868) [000] d..2 29481.361125: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28301          <idle>-0     (-----) [000] d..1 29481.361143: cpu_idle: state=2 cpu_id=0
28302          <idle>-0     (-----) [002] d.h4 29481.364890: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28303          <idle>-0     (-----) [002] dnh5 29481.364927: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28304          <idle>-0     (-----) [002] dnh4 29481.364962: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28305          <idle>-0     (-----) [002] dnh5 29481.364987: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28306          <idle>-0     (-----) [002] .n.1 29481.365036: cpu_idle: state=4294967295 cpu_id=2
28307          <idle>-0     (-----) [002] d..2 29481.365058: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28308 smem_native_cds-87    (   87) [002] d..2 29481.365119: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28309          <idle>-0     (-----) [002] d..2 29481.365126: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28310          <idle>-0     (-----) [002] dn.3 29481.365151: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28311          <idle>-0     (-----) [002] d..2 29481.365168: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28312     ksoftirqd/2-26    (   26) [002] d.s2 29481.365200: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28313     ksoftirqd/2-26    (   26) [002] dns3 29481.365248: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28314     ksoftirqd/2-26    (   26) [002] dns2 29481.365271: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28315     ksoftirqd/2-26    (   26) [002] dns3 29481.365302: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28316          <idle>-0     (-----) [000] .n.1 29481.365309: cpu_idle: state=4294967295 cpu_id=0
28317     ksoftirqd/2-26    (   26) [002] d..2 29481.365320: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28318          <idle>-0     (-----) [000] d..2 29481.365341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28319  HwBinder:771_4-20182 (  771) [000] d..2 29481.365419: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28320  HwBinder:771_4-20182 (  771) [000] d..3 29481.365490: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28321  HwBinder:771_4-20182 (  771) [000] d..2 29481.365528: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28322          <idle>-0     (-----) [000] d..1 29481.365549: cpu_idle: state=2 cpu_id=0
28323  kworker/u16:10-23868 (23868) [002] d..2 29481.365849: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28324     kworker/2:2-13636 (13636) [002] d..2 29481.365979: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28325     ksoftirqd/2-26    (   26) [002] d..2 29481.365992: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28326 cdsp_smem_glink-88    (   88) [002] d..2 29481.366047: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28327          <idle>-0     (-----) [002] d..1 29481.366068: cpu_idle: state=2 cpu_id=2
28328          <idle>-0     (-----) [003] d.s3 29481.366231: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28329          <idle>-0     (-----) [003] d.s4 29481.366293: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
28330          <idle>-0     (-----) [003] dns4 29481.366310: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28331          <idle>-0     (-----) [003] .n.1 29481.366326: cpu_idle: state=4294967295 cpu_id=3
28332          <idle>-0     (-----) [003] d..2 29481.366348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28333  kworker/u16:10-23868 (23868) [003] d..2 29481.366493: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28334          <idle>-0     (-----) [003] d..1 29481.366511: cpu_idle: state=2 cpu_id=3
28335          <idle>-0     (-----) [002] d.h4 29481.370494: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28336          <idle>-0     (-----) [002] dnh5 29481.370532: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28337          <idle>-0     (-----) [002] dnh4 29481.370564: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28338          <idle>-0     (-----) [002] dnh5 29481.370581: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28339          <idle>-0     (-----) [002] .n.1 29481.370631: cpu_idle: state=4294967295 cpu_id=2
28340          <idle>-0     (-----) [002] d..2 29481.370652: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28341 smem_native_cds-87    (   87) [002] d..2 29481.370711: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28342          <idle>-0     (-----) [002] d..2 29481.370717: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28343          <idle>-0     (-----) [002] dn.3 29481.370728: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28344          <idle>-0     (-----) [002] d..2 29481.370740: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28345     ksoftirqd/2-26    (   26) [002] d.s2 29481.370757: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28346     ksoftirqd/2-26    (   26) [002] dns3 29481.370768: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28347          <idle>-0     (-----) [000] .n.1 29481.370772: cpu_idle: state=4294967295 cpu_id=0
28348     ksoftirqd/2-26    (   26) [002] dns2 29481.370774: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28349          <idle>-0     (-----) [000] d..2 29481.370805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28350     ksoftirqd/2-26    (   26) [002] dns3 29481.370819: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28351     ksoftirqd/2-26    (   26) [002] d..2 29481.370837: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28352  HwBinder:771_4-20182 (  771) [000] d..2 29481.370880: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28353     kworker/2:2-13636 (13636) [002] d..2 29481.370884: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28354  HwBinder:771_4-20182 (  771) [000] d..3 29481.370926: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28355  HwBinder:771_4-20182 (  771) [000] d..2 29481.370990: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28356          <idle>-0     (-----) [000] d..1 29481.371022: cpu_idle: state=2 cpu_id=0
28357  kworker/u16:10-23868 (23868) [002] d..2 29481.371086: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28358     ksoftirqd/2-26    (   26) [002] d..2 29481.371099: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28359 cdsp_smem_glink-88    (   88) [002] d..2 29481.371159: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28360          <idle>-0     (-----) [002] d..1 29481.371179: cpu_idle: state=2 cpu_id=2
28361          <idle>-0     (-----) [002] d.h4 29481.376247: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28362          <idle>-0     (-----) [002] dnh5 29481.376280: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28363          <idle>-0     (-----) [002] dnh4 29481.376312: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28364          <idle>-0     (-----) [002] dnh5 29481.376329: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28365          <idle>-0     (-----) [002] .n.1 29481.376378: cpu_idle: state=4294967295 cpu_id=2
28366          <idle>-0     (-----) [002] d..2 29481.376399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28367 smem_native_cds-87    (   87) [002] d..2 29481.376459: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28368          <idle>-0     (-----) [002] d..2 29481.376466: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28369          <idle>-0     (-----) [002] dn.3 29481.376477: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28370          <idle>-0     (-----) [002] d..2 29481.376487: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28371     ksoftirqd/2-26    (   26) [002] d..2 29481.376515: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28372          <idle>-0     (-----) [002] d..1 29481.376533: cpu_idle: state=2 cpu_id=2
28373          <idle>-0     (-----) [000] .n.1 29481.376535: cpu_idle: state=4294967295 cpu_id=0
28374          <idle>-0     (-----) [000] d..2 29481.376570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28375  HwBinder:771_4-20182 (  771) [000] d..2 29481.376648: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28376  HwBinder:771_4-20182 (  771) [000] d..3 29481.376710: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28377  HwBinder:771_4-20182 (  771) [000] d..2 29481.376729: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28378 cdsp_smem_glink-88    (   88) [000] d..2 29481.376790: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28379          <idle>-0     (-----) [000] d..1 29481.376809: cpu_idle: state=2 cpu_id=0
28380          <idle>-0     (-----) [002] d.h4 29481.381425: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28381          <idle>-0     (-----) [000] d..2 29481.381435: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28382          <idle>-0     (-----) [000] dn.3 29481.381457: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28383          <idle>-0     (-----) [002] dnh5 29481.381468: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28384          <idle>-0     (-----) [000] dnH3 29481.381548: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28385          <idle>-0     (-----) [002] dnh4 29481.381550: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28386          <idle>-0     (-----) [000] dnH3 29481.381566: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
28387          <idle>-0     (-----) [002] dnh5 29481.381581: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28388          <idle>-0     (-----) [000] dnH4 29481.381583: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
28389          <idle>-0     (-----) [000] dns3 29481.381597: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28390          <idle>-0     (-----) [002] .n.1 29481.381632: cpu_idle: state=4294967295 cpu_id=2
28391          <idle>-0     (-----) [000] dns4 29481.381643: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28392          <idle>-0     (-----) [002] d..2 29481.381655: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28393          <idle>-0     (-----) [000] .n.1 29481.381659: cpu_idle: state=4294967295 cpu_id=0
28394          <idle>-0     (-----) [000] d..2 29481.381685: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
28395     ksoftirqd/0-3     (    3) [000] d..2 29481.381701: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28396 smem_native_cds-87    (   87) [002] d..2 29481.381717: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28397          <idle>-0     (-----) [002] d..1 29481.381765: cpu_idle: state=2 cpu_id=2
28398          <idle>-0     (-----) [001] .n.1 29481.381907: cpu_idle: state=4294967295 cpu_id=1
28399          <idle>-0     (-----) [001] d..2 29481.381937: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28400          <idle>-0     (-----) [003] .n.1 29481.381964: cpu_idle: state=4294967295 cpu_id=3
28401          <idle>-0     (-----) [003] d..2 29481.381989: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
28402  HwBinder:771_4-20182 (  771) [001] d..2 29481.382010: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28403         sugov:0-559   (  559) [003] .... 29481.382020: clk_set_rate: pwrcl_clk 652800000
28404         sugov:0-559   (  559) [003] .... 29481.382032: clk_set_rate: cpu3_pwrcl_clk 748800000
28405         sugov:0-559   (  559) [003] .... 29481.382044: clk_set_rate: cpu2_pwrcl_clk 748800000
28406         sugov:0-559   (  559) [003] .... 29481.382053: clk_set_rate: cpu1_pwrcl_clk 748800000
28407         sugov:0-559   (  559) [003] .... 29481.382065: clk_set_rate: cpu0_pwrcl_clk 652800000
28408  HwBinder:771_4-20182 (  771) [001] d..3 29481.382074: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28409  HwBinder:771_4-20182 (  771) [001] d..2 29481.382116: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28410          <idle>-0     (-----) [001] d..1 29481.382139: cpu_idle: state=2 cpu_id=1
28411         sugov:0-559   (  559) [003] .... 29481.382182: cpu_frequency: state=652800 cpu_id=0
28412         sugov:0-559   (  559) [003] .... 29481.382201: cpu_frequency: state=652800 cpu_id=1
28413         sugov:0-559   (  559) [003] .... 29481.382206: cpu_frequency: state=652800 cpu_id=2
28414         sugov:0-559   (  559) [003] .... 29481.382212: cpu_frequency: state=652800 cpu_id=3
28415         sugov:0-559   (  559) [003] d..2 29481.382240: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28416          <idle>-0     (-----) [002] ...1 29481.382255: cpu_idle: state=4294967295 cpu_id=2
28417          <idle>-0     (-----) [002] d..1 29481.382268: cpu_idle: state=2 cpu_id=2
28418 cdsp_smem_glink-88    (   88) [003] d..2 29481.382342: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28419          <idle>-0     (-----) [003] d..1 29481.382362: cpu_idle: state=2 cpu_id=3
28420  kworker/u16:10-23868 (23868) [000] d..2 29481.382406: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28421          <idle>-0     (-----) [000] d..1 29481.382427: cpu_idle: state=2 cpu_id=0
28422          <idle>-0     (-----) [006] dnh2 29481.382625: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28423          <idle>-0     (-----) [006] .n.1 29481.382635: cpu_idle: state=4294967295 cpu_id=6
28424          <idle>-0     (-----) [006] d..2 29481.382647: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28425         sugov:4-560   (  560) [006] d..2 29481.382670: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28426          <idle>-0     (-----) [006] d..1 29481.382680: cpu_idle: state=2 cpu_id=6
28427          <idle>-0     (-----) [006] ...1 29481.386438: cpu_idle: state=4294967295 cpu_id=6
28428          <idle>-0     (-----) [006] d..1 29481.386442: cpu_idle: state=2 cpu_id=6
28429          <idle>-0     (-----) [002] d.h4 29481.386497: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28430          <idle>-0     (-----) [002] dnh5 29481.386538: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28431          <idle>-0     (-----) [002] dnh4 29481.386571: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28432          <idle>-0     (-----) [002] dnh5 29481.386599: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28433          <idle>-0     (-----) [002] .n.1 29481.386649: cpu_idle: state=4294967295 cpu_id=2
28434          <idle>-0     (-----) [002] d..2 29481.386672: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28435 smem_native_cds-87    (   87) [002] d..2 29481.386738: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28436          <idle>-0     (-----) [002] d..2 29481.386743: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28437          <idle>-0     (-----) [002] dn.3 29481.386758: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28438          <idle>-0     (-----) [000] .n.1 29481.386769: cpu_idle: state=4294967295 cpu_id=0
28439          <idle>-0     (-----) [002] d..2 29481.386770: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28440     ksoftirqd/2-26    (   26) [002] d..2 29481.386800: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28441          <idle>-0     (-----) [000] d..2 29481.386805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28442          <idle>-0     (-----) [002] d..1 29481.386820: cpu_idle: state=2 cpu_id=2
28443  HwBinder:771_4-20182 (  771) [000] d..2 29481.386897: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28444  HwBinder:771_4-20182 (  771) [000] d..3 29481.386962: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28445  HwBinder:771_4-20182 (  771) [000] d..2 29481.386983: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28446 cdsp_smem_glink-88    (   88) [000] d..2 29481.387048: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28447          <idle>-0     (-----) [000] d..1 29481.387068: cpu_idle: state=2 cpu_id=0
28448          <idle>-0     (-----) [002] d.h4 29481.389283: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28449          <idle>-0     (-----) [002] dnh5 29481.389319: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28450          <idle>-0     (-----) [002] .n.1 29481.389338: cpu_idle: state=4294967295 cpu_id=2
28451          <idle>-0     (-----) [002] d..2 29481.389361: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28452 smem_native_cds-87    (   87) [002] d..2 29481.389430: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28453          <idle>-0     (-----) [002] d..2 29481.389437: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28454          <idle>-0     (-----) [002] dn.3 29481.389449: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28455          <idle>-0     (-----) [002] d..2 29481.389459: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28456     ksoftirqd/2-26    (   26) [002] d..2 29481.389487: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28457          <idle>-0     (-----) [002] d..1 29481.389506: cpu_idle: state=2 cpu_id=2
28458          <idle>-0     (-----) [002] d.h4 29481.390978: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28459          <idle>-0     (-----) [002] d.h5 29481.391011: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28460          <idle>-0     (-----) [002] d..2 29481.391059: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28461          <idle>-0     (-----) [002] dn.3 29481.391070: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28462          <idle>-0     (-----) [002] .n.1 29481.391077: cpu_idle: state=4294967295 cpu_id=2
28463          <idle>-0     (-----) [002] d..2 29481.391100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28464     ksoftirqd/2-26    (   26) [002] d.s2 29481.391112: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28465     ksoftirqd/2-26    (   26) [002] dns3 29481.391164: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28466     ksoftirqd/2-26    (   26) [002] d..2 29481.391181: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28467  kworker/u16:10-23868 (23868) [002] d..2 29481.391280: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28468     ksoftirqd/2-26    (   26) [002] d..2 29481.391321: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28469          <idle>-0     (-----) [000] .n.1 29481.391332: cpu_idle: state=4294967295 cpu_id=0
28470          <idle>-0     (-----) [002] d..1 29481.391343: cpu_idle: state=2 cpu_id=2
28471          <idle>-0     (-----) [000] d..2 29481.391373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28472  HwBinder:771_4-20182 (  771) [000] d..2 29481.391451: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28473  HwBinder:771_4-20182 (  771) [000] d..3 29481.391490: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28474  HwBinder:771_4-20182 (  771) [000] d..2 29481.391510: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28475 cdsp_smem_glink-88    (   88) [000] d..2 29481.391575: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28476          <idle>-0     (-----) [000] d..1 29481.391597: cpu_idle: state=0 cpu_id=0
28477          <idle>-0     (-----) [002] d.h4 29481.394350: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28478          <idle>-0     (-----) [002] dnh5 29481.394393: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28479          <idle>-0     (-----) [002] .n.1 29481.394412: cpu_idle: state=4294967295 cpu_id=2
28480          <idle>-0     (-----) [002] d..2 29481.394438: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28481 smem_native_cds-87    (   87) [002] d..2 29481.394516: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28482          <idle>-0     (-----) [002] d..2 29481.394522: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28483          <idle>-0     (-----) [002] dn.3 29481.394534: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28484          <idle>-0     (-----) [002] d..2 29481.394544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28485     ksoftirqd/2-26    (   26) [002] d..2 29481.394571: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28486          <idle>-0     (-----) [002] d..1 29481.394593: cpu_idle: state=2 cpu_id=2
28487          <idle>-0     (-----) [000] d.h2 29481.395429: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
28488          <idle>-0     (-----) [000] dnh3 29481.395469: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
28489          <idle>-0     (-----) [000] .n.1 29481.395547: cpu_idle: state=4294967295 cpu_id=0
28490          <idle>-0     (-----) [000] d..2 29481.395565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
28491          <idle>-0     (-----) [002] d.h4 29481.396059: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28492          <idle>-0     (-----) [002] d.h5 29481.396104: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28493          <idle>-0     (-----) [002] ...1 29481.396159: cpu_idle: state=4294967295 cpu_id=2
28494          <idle>-0     (-----) [002] d..1 29481.396184: cpu_idle: state=0 cpu_id=2
28495 PowerManagerSer-24006 (23968) [000] d..2 29481.396245: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28496          <idle>-0     (-----) [000] d..1 29481.396271: cpu_idle: state=2 cpu_id=0
28497          <idle>-0     (-----) [001] .n.1 29481.396445: cpu_idle: state=4294967295 cpu_id=1
28498          <idle>-0     (-----) [001] d..2 29481.396476: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28499  HwBinder:771_4-20182 (  771) [001] d..2 29481.396586: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28500  HwBinder:771_4-20182 (  771) [001] d..3 29481.396654: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28501  HwBinder:771_4-20182 (  771) [001] d..2 29481.396672: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28502 cdsp_smem_glink-88    (   88) [001] d..2 29481.396736: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28503          <idle>-0     (-----) [001] d..1 29481.396758: cpu_idle: state=2 cpu_id=1
28504          <idle>-0     (-----) [002] d.h4 29481.398866: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28505          <idle>-0     (-----) [002] dnh5 29481.398898: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28506          <idle>-0     (-----) [002] dnh3 29481.398988: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28507          <idle>-0     (-----) [002] dnh3 29481.399009: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
28508          <idle>-0     (-----) [002] dnh4 29481.399027: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
28509          <idle>-0     (-----) [002] .n.1 29481.399038: cpu_idle: state=4294967295 cpu_id=2
28510          <idle>-0     (-----) [002] d..2 29481.399060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28511 smem_native_cds-87    (   87) [002] d..2 29481.399124: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28512          <idle>-0     (-----) [002] d..2 29481.399130: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28513          <idle>-0     (-----) [002] dn.3 29481.399142: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28514          <idle>-0     (-----) [002] d..2 29481.399153: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28515     ksoftirqd/2-26    (   26) [002] d..2 29481.399181: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28516          <idle>-0     (-----) [002] d..1 29481.399203: cpu_idle: state=0 cpu_id=2
28517          <idle>-0     (-----) [003] .n.1 29481.399345: cpu_idle: state=4294967295 cpu_id=3
28518          <idle>-0     (-----) [003] d..2 29481.399378: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
28519         sugov:0-559   (  559) [003] .... 29481.399412: clk_set_rate: pwrcl_clk 748800000
28520         sugov:0-559   (  559) [003] .... 29481.399424: clk_set_rate: cpu3_pwrcl_clk 652800000
28521         sugov:0-559   (  559) [003] .... 29481.399437: clk_set_rate: cpu2_pwrcl_clk 652800000
28522         sugov:0-559   (  559) [003] .... 29481.399449: clk_set_rate: cpu1_pwrcl_clk 652800000
28523         sugov:0-559   (  559) [003] .... 29481.399462: clk_set_rate: cpu0_pwrcl_clk 748800000
28524         sugov:0-559   (  559) [003] .... 29481.399475: cpu_frequency: state=748800 cpu_id=0
28525         sugov:0-559   (  559) [003] .... 29481.399495: cpu_frequency: state=748800 cpu_id=1
28526         sugov:0-559   (  559) [003] .... 29481.399500: cpu_frequency: state=748800 cpu_id=2
28527         sugov:0-559   (  559) [003] .... 29481.399505: cpu_frequency: state=748800 cpu_id=3
28528         sugov:0-559   (  559) [003] d..2 29481.399560: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28529          <idle>-0     (-----) [003] d..1 29481.399582: cpu_idle: state=2 cpu_id=3
28530          <idle>-0     (-----) [006] dnh2 29481.400049: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28531          <idle>-0     (-----) [006] .n.1 29481.400058: cpu_idle: state=4294967295 cpu_id=6
28532          <idle>-0     (-----) [006] d..2 29481.400071: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28533         sugov:4-560   (  560) [006] d..2 29481.400093: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28534          <idle>-0     (-----) [006] d..1 29481.400103: cpu_idle: state=2 cpu_id=6
28535          <idle>-0     (-----) [002] d.h4 29481.401449: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28536          <idle>-0     (-----) [002] d.h5 29481.401480: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28537          <idle>-0     (-----) [002] d..2 29481.401525: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28538          <idle>-0     (-----) [002] dn.3 29481.401535: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28539          <idle>-0     (-----) [002] .n.1 29481.401541: cpu_idle: state=4294967295 cpu_id=2
28540          <idle>-0     (-----) [002] d..2 29481.401558: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28541     ksoftirqd/2-26    (   26) [002] d.s2 29481.401567: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28542     ksoftirqd/2-26    (   26) [002] dns3 29481.401588: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28543     ksoftirqd/2-26    (   26) [002] d..2 29481.401603: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28544  kworker/u16:10-23868 (23868) [002] d..2 29481.401693: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28545     ksoftirqd/2-26    (   26) [002] d..2 29481.401726: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28546          <idle>-0     (-----) [002] d..1 29481.401746: cpu_idle: state=0 cpu_id=2
28547          <idle>-0     (-----) [000] .n.1 29481.401786: cpu_idle: state=4294967295 cpu_id=0
28548          <idle>-0     (-----) [000] d..2 29481.401823: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28549  HwBinder:771_4-20182 (  771) [000] d..2 29481.401903: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28550  HwBinder:771_4-20182 (  771) [000] d..3 29481.401970: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28551  HwBinder:771_4-20182 (  771) [000] d..2 29481.401990: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28552 cdsp_smem_glink-88    (   88) [000] d..2 29481.402058: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28553          <idle>-0     (-----) [000] d..1 29481.402082: cpu_idle: state=2 cpu_id=0
28554          <idle>-0     (-----) [002] d.h4 29481.404654: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28555          <idle>-0     (-----) [002] dnh5 29481.404676: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28556          <idle>-0     (-----) [002] .n.1 29481.404692: cpu_idle: state=4294967295 cpu_id=2
28557          <idle>-0     (-----) [002] d..2 29481.404708: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28558 smem_native_cds-87    (   87) [002] d..2 29481.404762: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28559          <idle>-0     (-----) [002] d..2 29481.404767: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28560          <idle>-0     (-----) [002] dn.3 29481.404776: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28561          <idle>-0     (-----) [002] d..2 29481.404787: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28562     ksoftirqd/2-26    (   26) [002] d..2 29481.404811: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28563          <idle>-0     (-----) [002] d..1 29481.404828: cpu_idle: state=0 cpu_id=2
28564          <idle>-0     (-----) [002] d.h4 29481.407650: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28565          <idle>-0     (-----) [002] d.h5 29481.407671: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28566          <idle>-0     (-----) [002] d..2 29481.407716: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28567          <idle>-0     (-----) [002] dn.3 29481.407726: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28568          <idle>-0     (-----) [002] .n.1 29481.407732: cpu_idle: state=4294967295 cpu_id=2
28569          <idle>-0     (-----) [002] d..2 29481.407748: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28570     ksoftirqd/2-26    (   26) [002] d..2 29481.407780: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28571          <idle>-0     (-----) [002] d..1 29481.407797: cpu_idle: state=0 cpu_id=2
28572          <idle>-0     (-----) [000] .n.1 29481.407981: cpu_idle: state=4294967295 cpu_id=0
28573          <idle>-0     (-----) [000] d..2 29481.408021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28574  HwBinder:771_4-20182 (  771) [000] d..2 29481.408100: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28575  HwBinder:771_4-20182 (  771) [000] d..3 29481.408139: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28576  HwBinder:771_4-20182 (  771) [000] d..2 29481.408160: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28577 cdsp_smem_glink-88    (   88) [000] d..2 29481.408228: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28578          <idle>-0     (-----) [000] d..1 29481.408258: cpu_idle: state=0 cpu_id=0
28579          <idle>-0     (-----) [002] d.h4 29481.410926: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28580          <idle>-0     (-----) [002] dnh5 29481.410946: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28581          <idle>-0     (-----) [002] .n.1 29481.410959: cpu_idle: state=4294967295 cpu_id=2
28582          <idle>-0     (-----) [002] d..2 29481.410976: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28583 smem_native_cds-87    (   87) [002] d..2 29481.411032: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28584          <idle>-0     (-----) [002] d..2 29481.411037: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28585          <idle>-0     (-----) [002] dn.3 29481.411047: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28586          <idle>-0     (-----) [002] d..2 29481.411057: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28587     ksoftirqd/2-26    (   26) [002] d.s2 29481.411066: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28588     ksoftirqd/2-26    (   26) [002] dns3 29481.411085: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28589     ksoftirqd/2-26    (   26) [002] d..2 29481.411099: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28590  kworker/u16:10-23868 (23868) [002] d..2 29481.411185: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28591     ksoftirqd/2-26    (   26) [002] d..2 29481.411210: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28592          <idle>-0     (-----) [002] d..1 29481.411230: cpu_idle: state=0 cpu_id=2
28593          <idle>-0     (-----) [000] d..2 29481.413748: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28594          <idle>-0     (-----) [000] dn.3 29481.413765: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28595          <idle>-0     (-----) [000] .n.1 29481.413770: cpu_idle: state=4294967295 cpu_id=0
28596          <idle>-0     (-----) [000] d..2 29481.413791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
28597     ksoftirqd/0-3     (    3) [000] d.s2 29481.413805: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28598     ksoftirqd/0-3     (    3) [000] d.s3 29481.413856: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28599     ksoftirqd/0-3     (    3) [000] d..2 29481.413874: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28600          <idle>-0     (-----) [002] d.h4 29481.413946: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28601          <idle>-0     (-----) [002] d.h5 29481.413980: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28602          <idle>-0     (-----) [002] ...1 29481.414033: cpu_idle: state=4294967295 cpu_id=2
28603          <idle>-0     (-----) [002] d..1 29481.414040: cpu_idle: state=0 cpu_id=2
28604  kworker/u16:10-23868 (23868) [000] d..2 29481.414161: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28605          <idle>-0     (-----) [000] d..1 29481.414182: cpu_idle: state=2 cpu_id=0
28606          <idle>-0     (-----) [001] .n.1 29481.414288: cpu_idle: state=4294967295 cpu_id=1
28607          <idle>-0     (-----) [001] d..2 29481.414320: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28608  HwBinder:771_4-20182 (  771) [001] d..2 29481.414437: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28609          <idle>-0     (-----) [003] d.s3 29481.414497: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28610  HwBinder:771_4-20182 (  771) [001] d..3 29481.414497: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28611  HwBinder:771_4-20182 (  771) [001] d..2 29481.414514: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28612          <idle>-0     (-----) [003] d.s4 29481.414518: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
28613          <idle>-0     (-----) [003] d.s4 29481.414531: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28614          <idle>-0     (-----) [003] ...1 29481.414549: cpu_idle: state=4294967295 cpu_id=3
28615          <idle>-0     (-----) [003] d..1 29481.414559: cpu_idle: state=2 cpu_id=3
28616 cdsp_smem_glink-88    (   88) [001] d..2 29481.414575: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28617          <idle>-0     (-----) [001] d..1 29481.414597: cpu_idle: state=2 cpu_id=1
28618          <idle>-0     (-----) [000] .n.1 29481.414844: cpu_idle: state=4294967295 cpu_id=0
28619          <idle>-0     (-----) [000] d..2 29481.414871: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28620  kworker/u16:10-23868 (23868) [000] d..2 29481.414922: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28621          <idle>-0     (-----) [000] d..1 29481.414940: cpu_idle: state=2 cpu_id=0
28622          <idle>-0     (-----) [002] d.h4 29481.417125: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28623          <idle>-0     (-----) [002] dnh5 29481.417152: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28624          <idle>-0     (-----) [002] dnh3 29481.417235: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28625          <idle>-0     (-----) [002] .n.1 29481.417258: cpu_idle: state=4294967295 cpu_id=2
28626          <idle>-0     (-----) [002] d..2 29481.417278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28627 smem_native_cds-87    (   87) [002] d..2 29481.417335: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28628          <idle>-0     (-----) [002] d..2 29481.417340: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28629          <idle>-0     (-----) [002] dn.3 29481.417352: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28630          <idle>-0     (-----) [002] d..2 29481.417367: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28631     ksoftirqd/2-26    (   26) [002] d..2 29481.417391: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28632          <idle>-0     (-----) [002] d..1 29481.417408: cpu_idle: state=0 cpu_id=2
28633          <idle>-0     (-----) [006] dnh2 29481.418305: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28634          <idle>-0     (-----) [006] .n.1 29481.418316: cpu_idle: state=4294967295 cpu_id=6
28635          <idle>-0     (-----) [006] d..2 29481.418330: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28636         sugov:4-560   (  560) [006] d..2 29481.418356: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28637          <idle>-0     (-----) [006] d..1 29481.418368: cpu_idle: state=2 cpu_id=6
28638          <idle>-0     (-----) [002] d.h4 29481.418734: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
28639          <idle>-0     (-----) [002] d.h5 29481.418764: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28640          <idle>-0     (-----) [002] ...1 29481.418813: cpu_idle: state=4294967295 cpu_id=2
28641          <idle>-0     (-----) [002] d..1 29481.418820: cpu_idle: state=0 cpu_id=2
28642          <idle>-0     (-----) [000] .n.1 29481.419070: cpu_idle: state=4294967295 cpu_id=0
28643          <idle>-0     (-----) [000] d..2 29481.419103: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28644  HwBinder:771_4-20182 (  771) [000] d..2 29481.419187: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
28645  HwBinder:771_4-20182 (  771) [000] d..3 29481.419257: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28646  HwBinder:771_4-20182 (  771) [000] d..2 29481.419278: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28647 cdsp_smem_glink-88    (   88) [000] d..2 29481.419340: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28648          <idle>-0     (-----) [000] d..1 29481.419362: cpu_idle: state=2 cpu_id=0
28649          <idle>-0     (-----) [002] d.h4 29481.421966: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28650          <idle>-0     (-----) [002] dnh5 29481.421985: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28651          <idle>-0     (-----) [002] .n.1 29481.421997: cpu_idle: state=4294967295 cpu_id=2
28652          <idle>-0     (-----) [002] d..2 29481.422014: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28653 smem_native_cds-87    (   87) [002] d..2 29481.422068: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28654          <idle>-0     (-----) [002] d..2 29481.422072: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28655          <idle>-0     (-----) [002] dn.3 29481.422082: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28656          <idle>-0     (-----) [002] d..2 29481.422091: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28657     ksoftirqd/2-26    (   26) [002] d.s2 29481.422100: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
28658     ksoftirqd/2-26    (   26) [002] d.s3 29481.422145: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28659     ksoftirqd/2-26    (   26) [002] d..2 29481.422164: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28660  kworker/u16:10-23868 (23868) [002] d..2 29481.422262: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28661          <idle>-0     (-----) [002] d..1 29481.422282: cpu_idle: state=2 cpu_id=2
28662          <idle>-0     (-----) [002] d.h4 29481.427439: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28663          <idle>-0     (-----) [002] d.h5 29481.427471: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28664          <idle>-0     (-----) [002] d..2 29481.427519: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28665          <idle>-0     (-----) [002] dn.3 29481.427529: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28666          <idle>-0     (-----) [002] .n.1 29481.427535: cpu_idle: state=4294967295 cpu_id=2
28667          <idle>-0     (-----) [002] d..2 29481.427557: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28668     ksoftirqd/2-26    (   26) [002] d..2 29481.427601: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28669          <idle>-0     (-----) [002] d..1 29481.427619: cpu_idle: state=2 cpu_id=2
28670          <idle>-0     (-----) [000] .n.1 29481.427719: cpu_idle: state=4294967295 cpu_id=0
28671          <idle>-0     (-----) [000] d..2 29481.427752: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28672  HwBinder:771_4-20182 (  771) [000] d..2 29481.427824: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28673  HwBinder:771_4-20182 (  771) [000] d..3 29481.427860: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28674  HwBinder:771_4-20182 (  771) [000] d..2 29481.427878: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28675 cdsp_smem_glink-88    (   88) [000] d..2 29481.427940: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28676          <idle>-0     (-----) [000] d..1 29481.427959: cpu_idle: state=2 cpu_id=0
28677          <idle>-0     (-----) [002] d.h4 29481.430035: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28678          <idle>-0     (-----) [002] dnh5 29481.430067: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28679          <idle>-0     (-----) [002] .n.1 29481.430082: cpu_idle: state=4294967295 cpu_id=2
28680          <idle>-0     (-----) [002] d..2 29481.430101: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28681 smem_native_cds-87    (   87) [002] d..2 29481.430155: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28682          <idle>-0     (-----) [002] d..1 29481.430175: cpu_idle: state=2 cpu_id=2
28683          <idle>-0     (-----) [002] d.h4 29481.431841: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28684          <idle>-0     (-----) [002] d.h5 29481.431872: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28685          <idle>-0     (-----) [002] d..2 29481.431917: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28686          <idle>-0     (-----) [002] dn.3 29481.431927: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28687          <idle>-0     (-----) [002] .n.1 29481.431934: cpu_idle: state=4294967295 cpu_id=2
28688          <idle>-0     (-----) [002] d..2 29481.431955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28689     ksoftirqd/2-26    (   26) [002] d.s2 29481.431965: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28690     ksoftirqd/2-26    (   26) [002] d.s3 29481.431988: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28691     ksoftirqd/2-26    (   26) [002] d..2 29481.432005: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28692  kworker/u16:10-23868 (23868) [002] d..2 29481.432117: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28693          <idle>-0     (-----) [002] d..1 29481.432135: cpu_idle: state=0 cpu_id=2
28694          <idle>-0     (-----) [000] .n.1 29481.432181: cpu_idle: state=4294967295 cpu_id=0
28695          <idle>-0     (-----) [000] d..2 29481.432222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28696  HwBinder:771_4-20182 (  771) [000] d..2 29481.432295: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28697  HwBinder:771_4-20182 (  771) [000] d..3 29481.432335: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28698  HwBinder:771_4-20182 (  771) [000] d..2 29481.432351: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28699 cdsp_smem_glink-88    (   88) [000] d..2 29481.432416: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28700          <idle>-0     (-----) [000] d..1 29481.432440: cpu_idle: state=2 cpu_id=0
28701          <idle>-0     (-----) [002] d.h4 29481.434698: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28702          <idle>-0     (-----) [002] dnh5 29481.434719: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28703          <idle>-0     (-----) [002] .n.1 29481.434733: cpu_idle: state=4294967295 cpu_id=2
28704          <idle>-0     (-----) [002] d..2 29481.434750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28705 smem_native_cds-87    (   87) [002] d..2 29481.434803: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28706          <idle>-0     (-----) [002] d..2 29481.434809: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28707          <idle>-0     (-----) [002] dn.3 29481.434818: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28708          <idle>-0     (-----) [002] d..2 29481.434827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28709     ksoftirqd/2-26    (   26) [002] d..2 29481.434850: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28710          <idle>-0     (-----) [002] d..1 29481.434861: cpu_idle: state=0 cpu_id=2
28711          <idle>-0     (-----) [002] d.h4 29481.436452: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28712          <idle>-0     (-----) [002] d.h5 29481.436472: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28713          <idle>-0     (-----) [002] ...1 29481.436540: cpu_idle: state=4294967295 cpu_id=2
28714          <idle>-0     (-----) [002] d..1 29481.436547: cpu_idle: state=0 cpu_id=2
28715          <idle>-0     (-----) [000] .n.1 29481.436778: cpu_idle: state=4294967295 cpu_id=0
28716          <idle>-0     (-----) [000] d..2 29481.436810: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28717  HwBinder:771_4-20182 (  771) [000] d..2 29481.436889: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28718  HwBinder:771_4-20182 (  771) [000] d..3 29481.436926: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28719  HwBinder:771_4-20182 (  771) [000] d..2 29481.436945: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28720 cdsp_smem_glink-88    (   88) [000] d..2 29481.437007: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28721          <idle>-0     (-----) [000] d..1 29481.437029: cpu_idle: state=2 cpu_id=0
28722          <idle>-0     (-----) [002] d.H3 29481.437216: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
28723          <idle>-0     (-----) [002] d.H3 29481.437235: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
28724          <idle>-0     (-----) [002] d.H4 29481.437254: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
28725          <idle>-0     (-----) [002] d.s4 29481.437287: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28726          <idle>-0     (-----) [002] dns5 29481.437302: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28727          <idle>-0     (-----) [002] .n.1 29481.437335: cpu_idle: state=4294967295 cpu_id=2
28728          <idle>-0     (-----) [002] d..2 29481.437348: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28729          <idle>-0     (-----) [003] .n.1 29481.437560: cpu_idle: state=4294967295 cpu_id=3
28730     kworker/2:2-13636 (13636) [002] d..3 29481.437575: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28731          <idle>-0     (-----) [003] d..2 29481.437590: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
28732         sugov:0-559   (  559) [003] .... 29481.437623: clk_set_rate: pwrcl_clk 652800000
28733     kworker/2:2-13636 (13636) [002] d..4 29481.437630: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28734         sugov:0-559   (  559) [003] .... 29481.437634: clk_set_rate: cpu3_pwrcl_clk 748800000
28735         sugov:0-559   (  559) [003] .... 29481.437647: clk_set_rate: cpu2_pwrcl_clk 748800000
28736         sugov:0-559   (  559) [003] .... 29481.437658: clk_set_rate: cpu1_pwrcl_clk 748800000
28737         sugov:0-559   (  559) [003] .... 29481.437668: clk_set_rate: cpu0_pwrcl_clk 652800000
28738     kworker/2:2-13636 (13636) [002] d..3 29481.437669: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
28739     kworker/2:2-13636 (13636) [002] dn.4 29481.437708: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
28740     kworker/2:2-13636 (13636) [002] d..2 29481.437725: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
28741    kworker/2:1H-850   (  850) [002] d..2 29481.437785: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28742         sugov:0-559   (  559) [003] .... 29481.437787: cpu_frequency: state=652800 cpu_id=0
28743         sugov:0-559   (  559) [003] .... 29481.437804: cpu_frequency: state=652800 cpu_id=1
28744         sugov:0-559   (  559) [003] .... 29481.437811: cpu_frequency: state=652800 cpu_id=2
28745         sugov:0-559   (  559) [003] .... 29481.437816: cpu_frequency: state=652800 cpu_id=3
28746     kworker/2:2-13636 (13636) [002] d..2 29481.437830: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28747          <idle>-0     (-----) [002] d..1 29481.437846: cpu_idle: state=0 cpu_id=2
28748         sugov:0-559   (  559) [003] d..2 29481.437846: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28749          <idle>-0     (-----) [006] dnh2 29481.438283: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
28750          <idle>-0     (-----) [006] .n.1 29481.438292: cpu_idle: state=4294967295 cpu_id=6
28751          <idle>-0     (-----) [006] d..2 29481.438306: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
28752         sugov:4-560   (  560) [006] d..2 29481.438330: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28753          <idle>-0     (-----) [006] d..1 29481.438341: cpu_idle: state=2 cpu_id=6
28754  kworker/u16:10-23868 (23868) [003] d..2 29481.438388: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
28755          <idle>-0     (-----) [003] d..1 29481.438413: cpu_idle: state=2 cpu_id=3
28756          <idle>-0     (-----) [002] d.h4 29481.439115: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28757          <idle>-0     (-----) [002] dnh5 29481.439140: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28758          <idle>-0     (-----) [002] .n.1 29481.439154: cpu_idle: state=4294967295 cpu_id=2
28759          <idle>-0     (-----) [002] d..2 29481.439166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28760 smem_native_cds-87    (   87) [002] d..2 29481.439209: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28761          <idle>-0     (-----) [002] d..1 29481.439222: cpu_idle: state=0 cpu_id=2
28762          <idle>-0     (-----) [003] d.s3 29481.439470: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28763          <idle>-0     (-----) [003] d.s4 29481.439505: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
28764          <idle>-0     (-----) [003] dns4 29481.439514: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28765          <idle>-0     (-----) [003] .n.1 29481.439527: cpu_idle: state=4294967295 cpu_id=3
28766          <idle>-0     (-----) [003] d..2 29481.439549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28767  kworker/u16:10-23868 (23868) [003] d..2 29481.439737: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
28768          <idle>-0     (-----) [003] d.s4 29481.439778: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28769          <idle>-0     (-----) [003] d.s5 29481.439790: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
28770          <idle>-0     (-----) [003] dns5 29481.439796: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28771          <idle>-0     (-----) [002] d.h4 29481.439802: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28772          <idle>-0     (-----) [003] d..2 29481.439813: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28773          <idle>-0     (-----) [002] d.h5 29481.439827: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28774  kworker/u16:10-23868 (23868) [003] d..1 29481.439853: clk_enable: gcc_ufs_phy_axi_clk_src
28775          <idle>-0     (-----) [002] ...1 29481.439869: cpu_idle: state=4294967295 cpu_id=2
28776          <idle>-0     (-----) [002] d..1 29481.439876: cpu_idle: state=0 cpu_id=2
28777  kworker/u16:10-23868 (23868) [003] d..1 29481.439888: clk_enable: gcc_ufs_phy_axi_clk
28778  kworker/u16:10-23868 (23868) [003] d..1 29481.439903: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
28779  kworker/u16:10-23868 (23868) [003] d..1 29481.439919: clk_enable: gcc_aggre_ufs_phy_axi_clk
28780  kworker/u16:10-23868 (23868) [003] d..1 29481.439930: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
28781  kworker/u16:10-23868 (23868) [003] d..1 29481.439942: clk_enable: gcc_ufs_phy_ahb_clk
28782  kworker/u16:10-23868 (23868) [003] d..1 29481.439961: clk_enable: gcc_ufs_phy_unipro_core_clk_src
28783  kworker/u16:10-23868 (23868) [003] d..1 29481.439970: clk_enable: gcc_ufs_phy_unipro_core_clk
28784  kworker/u16:10-23868 (23868) [003] d..1 29481.439979: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
28785  kworker/u16:10-23868 (23868) [003] d..1 29481.439993: clk_enable: gcc_ufs_phy_ice_core_clk_src
28786  kworker/u16:10-23868 (23868) [003] d..1 29481.440001: clk_enable: gcc_ufs_phy_ice_core_clk
28787          <idle>-0     (-----) [000] .n.1 29481.440005: cpu_idle: state=4294967295 cpu_id=0
28788  kworker/u16:10-23868 (23868) [003] d..1 29481.440011: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
28789          <idle>-0     (-----) [000] d..2 29481.440037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28790  kworker/u16:10-23868 (23868) [003] d..1 29481.440041: clk_enable: gcc_ufs_mem_clkref_clk
28791  kworker/u16:10-23868 (23868) [003] d..1 29481.440056: clk_enable: gcc_ufs_phy_phy_aux_clk_src
28792  kworker/u16:10-23868 (23868) [003] d..1 29481.440065: clk_enable: gcc_ufs_phy_phy_aux_clk
28793  kworker/u16:10-23868 (23868) [003] d..1 29481.440074: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
28794  kworker/u16:10-23868 (23868) [003] d..3 29481.440156: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
28795  HwBinder:771_4-20182 (  771) [000] d..2 29481.440175: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28796  kworker/u16:10-23868 (23868) [003] dn.4 29481.440201: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
28797  kworker/u16:10-23868 (23868) [003] d..2 29481.440216: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
28798  HwBinder:771_4-20182 (  771) [000] d..3 29481.440246: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28799          <idle>-0     (-----) [002] ...1 29481.440285: cpu_idle: state=4294967295 cpu_id=2
28800  HwBinder:771_4-20182 (  771) [000] d..2 29481.440289: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28801          <idle>-0     (-----) [002] d..1 29481.440290: cpu_idle: state=0 cpu_id=2
28802  kworker/u16:16-25995 (25995) [003] d..2 29481.440297: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28803          <idle>-0     (-----) [000] d..1 29481.440314: cpu_idle: state=0 cpu_id=0
28804          <idle>-0     (-----) [002] d.s3 29481.440433: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
28805          <idle>-0     (-----) [002] dns4 29481.440447: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
28806          <idle>-0     (-----) [002] dns3 29481.440454: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
28807          <idle>-0     (-----) [001] ...1 29481.440454: cpu_idle: state=4294967295 cpu_id=1
28808          <idle>-0     (-----) [001] d..1 29481.440467: cpu_idle: state=0 cpu_id=1
28809          <idle>-0     (-----) [002] dns4 29481.440506: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
28810          <idle>-0     (-----) [002] .n.1 29481.440524: cpu_idle: state=4294967295 cpu_id=2
28811          <idle>-0     (-----) [002] d..2 29481.440537: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
28812    kworker/2:1H-850   (  850) [002] d..2 29481.440565: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
28813  kworker/u16:16-25995 (25995) [002] d..2 29481.440599: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28814          <idle>-0     (-----) [002] d..1 29481.440660: cpu_idle: state=0 cpu_id=2
28815  kworker/u16:10-23868 (23868) [003] d..2 29481.440675: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28816 cdsp_smem_glink-88    (   88) [003] d..2 29481.440742: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28817          <idle>-0     (-----) [003] d..1 29481.440764: cpu_idle: state=0 cpu_id=3
28818          <idle>-0     (-----) [001] d.h4 29481.441176: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28819          <idle>-0     (-----) [001] d.h5 29481.441206: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28820          <idle>-0     (-----) [003] .n.1 29481.441214: cpu_idle: state=4294967295 cpu_id=3
28821          <idle>-0     (-----) [003] d..2 29481.441231: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28822          <idle>-0     (-----) [001] d.s4 29481.441263: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28823  kworker/u16:10-23868 (23868) [003] d..2 29481.441269: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28824          <idle>-0     (-----) [001] d.s5 29481.441275: sched_blocked_reason: pid=13636 iowait=1 caller=blk_execute_rq+0xc0/0x118
28825          <idle>-0     (-----) [003] d..1 29481.441281: cpu_idle: state=0 cpu_id=3
28826          <idle>-0     (-----) [001] d.s5 29481.441285: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28827          <idle>-0     (-----) [002] .n.1 29481.441293: cpu_idle: state=4294967295 cpu_id=2
28828          <idle>-0     (-----) [002] d..2 29481.441310: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28829          <idle>-0     (-----) [001] ...1 29481.441315: cpu_idle: state=4294967295 cpu_id=1
28830          <idle>-0     (-----) [001] d..1 29481.441324: cpu_idle: state=0 cpu_id=1
28831     kworker/2:2-13636 (13636) [002] d.h3 29481.441404: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28832     kworker/2:2-13636 (13636) [002] d.h4 29481.441431: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28833     kworker/2:2-13636 (13636) [002] d..2 29481.441486: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28834          <idle>-0     (-----) [001] d.h4 29481.441501: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28835          <idle>-0     (-----) [001] d.h5 29481.441514: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_exec_dev_cmd+0x3a4/0x74c
28836          <idle>-0     (-----) [001] d.h5 29481.441523: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28837 smem_native_cds-87    (   87) [002] d..2 29481.441537: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28838          <idle>-0     (-----) [001] ...1 29481.441557: cpu_idle: state=4294967295 cpu_id=1
28839          <idle>-0     (-----) [001] d..1 29481.441563: cpu_idle: state=0 cpu_id=1
28840     kworker/2:2-13636 (13636) [002] d..3 29481.441591: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
28841     kworker/2:2-13636 (13636) [002] d..4 29481.441643: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28842     kworker/2:2-13636 (13636) [002] d..2 29481.441671: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28843  kworker/u16:10-23868 (23868) [002] d..2 29481.441709: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28844          <idle>-0     (-----) [001] d.h4 29481.441716: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28845          <idle>-0     (-----) [002] dn.1 29481.441732: cpu_idle: state=0 cpu_id=2
28846          <idle>-0     (-----) [001] d.h5 29481.441736: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28847          <idle>-0     (-----) [002] .n.1 29481.441744: cpu_idle: state=4294967295 cpu_id=2
28848          <idle>-0     (-----) [001] d.s4 29481.441759: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28849          <idle>-0     (-----) [002] d..2 29481.441759: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28850          <idle>-0     (-----) [001] d.s5 29481.441773: sched_blocked_reason: pid=13636 iowait=1 caller=blk_execute_rq+0xc0/0x118
28851          <idle>-0     (-----) [001] d.s5 29481.441783: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28852  kworker/u16:10-23868 (23868) [002] d..2 29481.441797: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28853          <idle>-0     (-----) [001] ...1 29481.441815: cpu_idle: state=4294967295 cpu_id=1
28854          <idle>-0     (-----) [001] d..1 29481.441822: cpu_idle: state=0 cpu_id=1
28855     kworker/2:2-13636 (13636) [002] d..2 29481.441862: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28856          <idle>-0     (-----) [001] d.h4 29481.441868: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28857          <idle>-0     (-----) [001] d.h5 29481.441878: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_uic_pwr_ctrl+0x3dc/0x758
28858          <idle>-0     (-----) [002] d..1 29481.441879: cpu_idle: state=0 cpu_id=2
28859          <idle>-0     (-----) [001] d.h5 29481.441888: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28860          <idle>-0     (-----) [002] .n.1 29481.441895: cpu_idle: state=4294967295 cpu_id=2
28861          <idle>-0     (-----) [001] ...1 29481.441903: cpu_idle: state=4294967295 cpu_id=1
28862          <idle>-0     (-----) [002] d..2 29481.441909: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28863          <idle>-0     (-----) [001] d..1 29481.441914: cpu_idle: state=0 cpu_id=1
28864     kworker/2:2-13636 (13636) [002] d..2 29481.441949: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28865          <idle>-0     (-----) [002] d..1 29481.441962: cpu_idle: state=0 cpu_id=2
28866          <idle>-0     (-----) [002] d.h4 29481.442139: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28867          <idle>-0     (-----) [002] d.h5 29481.442165: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28868          <idle>-0     (-----) [000] .n.1 29481.442173: cpu_idle: state=4294967295 cpu_id=0
28869          <idle>-0     (-----) [000] d..2 29481.442191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28870          <idle>-0     (-----) [002] ...1 29481.442212: cpu_idle: state=4294967295 cpu_id=2
28871          <idle>-0     (-----) [002] d..1 29481.442219: cpu_idle: state=0 cpu_id=2
28872  HwBinder:771_4-20182 (  771) [000] d..2 29481.442251: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28873  HwBinder:771_4-20182 (  771) [000] d..3 29481.442305: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28874  HwBinder:771_4-20182 (  771) [000] d..2 29481.442322: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28875 cdsp_smem_glink-88    (   88) [000] d..2 29481.442377: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28876          <idle>-0     (-----) [000] d..1 29481.442399: cpu_idle: state=0 cpu_id=0
28877          <idle>-0     (-----) [001] ...1 29481.443166: cpu_idle: state=4294967295 cpu_id=1
28878          <idle>-0     (-----) [001] d..1 29481.443172: cpu_idle: state=0 cpu_id=1
28879          <idle>-0     (-----) [002] d.h4 29481.443522: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28880          <idle>-0     (-----) [002] dnh5 29481.443543: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28881          <idle>-0     (-----) [002] .n.1 29481.443555: cpu_idle: state=4294967295 cpu_id=2
28882          <idle>-0     (-----) [002] d..2 29481.443569: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28883 smem_native_cds-87    (   87) [002] d..2 29481.443616: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28884          <idle>-0     (-----) [002] d..1 29481.443630: cpu_idle: state=0 cpu_id=2
28885          <idle>-0     (-----) [002] d.h2 29481.444049: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28886          <idle>-0     (-----) [002] d.h3 29481.444060: sched_blocked_reason: pid=13636 iowait=0 caller=ufshcd_vreg_set_lpm+0x64/0x248
28887          <idle>-0     (-----) [002] dnh3 29481.444067: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28888          <idle>-0     (-----) [002] .n.1 29481.444077: cpu_idle: state=4294967295 cpu_id=2
28889          <idle>-0     (-----) [002] d..2 29481.444094: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28890     kworker/2:2-13636 (13636) [002] d..1 29481.444258: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
28891          <idle>-0     (-----) [003] d..2 29481.444270: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
28892     kworker/2:2-13636 (13636) [002] d..1 29481.444270: clk_disable: gcc_ufs_phy_phy_aux_clk
28893     kworker/2:2-13636 (13636) [002] d..1 29481.444281: clk_disable: gcc_ufs_phy_phy_aux_clk_src
28894          <idle>-0     (-----) [003] dn.3 29481.444291: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
28895     kworker/2:2-13636 (13636) [002] d.h4 29481.444316: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28896     kworker/2:2-13636 (13636) [002] d.h5 29481.444342: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28897          <idle>-0     (-----) [000] .n.1 29481.444350: cpu_idle: state=4294967295 cpu_id=0
28898          <idle>-0     (-----) [000] d..2 29481.444369: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28899     kworker/2:2-13636 (13636) [002] d..1 29481.444384: clk_disable: gcc_ufs_mem_clkref_clk
28900          <idle>-0     (-----) [003] .n.1 29481.444414: cpu_idle: state=4294967295 cpu_id=3
28901  HwBinder:771_4-20182 (  771) [000] d..2 29481.444427: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28902          <idle>-0     (-----) [003] d..2 29481.444434: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
28903     kworker/2:2-13636 (13636) [002] d..1 29481.444446: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
28904     kworker/2:2-13636 (13636) [002] d..1 29481.444453: clk_disable: gcc_ufs_phy_axi_clk
28905     kworker/2:2-13636 (13636) [002] d..1 29481.444464: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
28906     kworker/2:2-13636 (13636) [002] d..1 29481.444471: clk_disable: gcc_aggre_ufs_phy_axi_clk
28907     ksoftirqd/3-34    (   34) [003] d..2 29481.444479: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28908     kworker/2:2-13636 (13636) [002] d..1 29481.444481: clk_disable: gcc_ufs_phy_axi_clk_src
28909     kworker/2:2-13636 (13636) [002] d..1 29481.444488: clk_disable: gcc_ufs_phy_ahb_clk
28910  HwBinder:771_4-20182 (  771) [000] d..3 29481.444495: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28911     kworker/2:2-13636 (13636) [002] d..1 29481.444498: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
28912     kworker/2:2-13636 (13636) [002] d..1 29481.444504: clk_disable: gcc_ufs_phy_unipro_core_clk
28913          <idle>-0     (-----) [003] d..2 29481.444507: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28914     kworker/2:2-13636 (13636) [002] d..1 29481.444513: clk_disable: gcc_ufs_phy_unipro_core_clk_src
28915     kworker/2:2-13636 (13636) [002] d..1 29481.444520: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
28916     kworker/2:2-13636 (13636) [002] d..1 29481.444526: clk_disable: gcc_ufs_phy_ice_core_clk
28917  HwBinder:771_4-20182 (  771) [000] d..2 29481.444529: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28918     kworker/2:2-13636 (13636) [002] d..1 29481.444535: clk_disable: gcc_ufs_phy_ice_core_clk_src
28919          <idle>-0     (-----) [000] d..1 29481.444550: cpu_idle: state=0 cpu_id=0
28920 cdsp_smem_glink-88    (   88) [003] d..2 29481.444560: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28921          <idle>-0     (-----) [003] d..1 29481.444574: cpu_idle: state=0 cpu_id=3
28922     kworker/2:2-13636 (13636) [002] d..1 29481.444628: clk_disable: gcc_ufs_phy_tx_symbol_0_clk
28923          <idle>-0     (-----) [003] ...1 29481.444672: cpu_idle: state=4294967295 cpu_id=3
28924          <idle>-0     (-----) [003] d..1 29481.444684: cpu_idle: state=0 cpu_id=3
28925     kworker/2:2-13636 (13636) [002] d..1 29481.445141: clk_disable: gcc_ufs_phy_rx_symbol_0_clk
28926     kworker/2:2-13636 (13636) [002] d.h4 29481.445669: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28927     kworker/2:2-13636 (13636) [002] dnh5 29481.445699: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28928     kworker/2:2-13636 (13636) [002] d..2 29481.445719: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28929 smem_native_cds-87    (   87) [002] d..2 29481.445752: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28930     kworker/2:2-13636 (13636) [002] d..1 29481.445758: clk_disable: gcc_ufs_phy_rx_symbol_1_clk
28931     kworker/2:2-13636 (13636) [002] d.h4 29481.446522: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28932     kworker/2:2-13636 (13636) [002] d.h5 29481.446550: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28933          <idle>-0     (-----) [000] .n.1 29481.446558: cpu_idle: state=4294967295 cpu_id=0
28934          <idle>-0     (-----) [000] d..2 29481.446573: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28935          <idle>-0     (-----) [003] ...1 29481.446584: cpu_idle: state=4294967295 cpu_id=3
28936          <idle>-0     (-----) [003] d..1 29481.446590: cpu_idle: state=0 cpu_id=3
28937  HwBinder:771_4-20182 (  771) [000] d..2 29481.446630: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
28938  HwBinder:771_4-20182 (  771) [000] d..3 29481.446689: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28939     kworker/2:2-13636 (13636) [002] d..2 29481.446710: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28940  HwBinder:771_4-20182 (  771) [000] d..2 29481.446743: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28941          <idle>-0     (-----) [000] d..1 29481.446764: cpu_idle: state=0 cpu_id=0
28942 cdsp_smem_glink-88    (   88) [002] d..2 29481.446777: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28943          <idle>-0     (-----) [002] d..1 29481.446800: cpu_idle: state=0 cpu_id=2
28944          <idle>-0     (-----) [002] d.h4 29481.449880: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28945          <idle>-0     (-----) [002] dnh5 29481.449905: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28946          <idle>-0     (-----) [002] .n.1 29481.449920: cpu_idle: state=4294967295 cpu_id=2
28947          <idle>-0     (-----) [002] d..2 29481.449939: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28948          <idle>-0     (-----) [000] d..2 29481.449973: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28949          <idle>-0     (-----) [000] dn.3 29481.449988: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
28950          <idle>-0     (-----) [000] .n.1 29481.449996: cpu_idle: state=4294967295 cpu_id=0
28951 smem_native_cds-87    (   87) [002] d..2 29481.450009: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28952          <idle>-0     (-----) [000] d..2 29481.450014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
28953          <idle>-0     (-----) [002] d..1 29481.450021: cpu_idle: state=0 cpu_id=2
28954     ksoftirqd/0-3     (    3) [000] d..2 29481.450049: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28955          <idle>-0     (-----) [000] d..1 29481.450061: cpu_idle: state=0 cpu_id=0
28956          <idle>-0     (-----) [002] d.s3 29481.450431: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28957          <idle>-0     (-----) [002] dns4 29481.450444: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
28958          <idle>-0     (-----) [002] dns3 29481.450452: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28959          <idle>-0     (-----) [002] dns4 29481.450472: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
28960          <idle>-0     (-----) [002] .n.1 29481.450491: cpu_idle: state=4294967295 cpu_id=2
28961          <idle>-0     (-----) [002] d..2 29481.450503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
28962          <idle>-0     (-----) [000] ...1 29481.450532: cpu_idle: state=4294967295 cpu_id=0
28963          <idle>-0     (-----) [001] ...1 29481.450533: cpu_idle: state=4294967295 cpu_id=1
28964          <idle>-0     (-----) [003] ...1 29481.450536: cpu_idle: state=4294967295 cpu_id=3
28965          <idle>-0     (-----) [000] d..1 29481.450540: cpu_idle: state=0 cpu_id=0
28966          <idle>-0     (-----) [001] d..1 29481.450541: cpu_idle: state=0 cpu_id=1
28967          <idle>-0     (-----) [003] d..1 29481.450541: cpu_idle: state=0 cpu_id=3
28968     kworker/2:2-13636 (13636) [002] d..2 29481.450544: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
28969  kworker/u16:10-23868 (23868) [002] d..2 29481.450670: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28970          <idle>-0     (-----) [002] d..1 29481.450693: cpu_idle: state=0 cpu_id=2
28971          <idle>-0     (-----) [001] ...1 29481.451791: cpu_idle: state=4294967295 cpu_id=1
28972          <idle>-0     (-----) [001] d..1 29481.451797: cpu_idle: state=2 cpu_id=1
28973          <idle>-0     (-----) [002] d.h4 29481.452095: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28974          <idle>-0     (-----) [002] d.h5 29481.452122: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28975          <idle>-0     (-----) [000] .n.1 29481.452128: cpu_idle: state=4294967295 cpu_id=0
28976          <idle>-0     (-----) [000] d..2 29481.452147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
28977          <idle>-0     (-----) [002] ...1 29481.452180: cpu_idle: state=4294967295 cpu_id=2
28978          <idle>-0     (-----) [002] d..1 29481.452187: cpu_idle: state=0 cpu_id=2
28979  HwBinder:771_4-20182 (  771) [000] d..2 29481.452216: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
28980  HwBinder:771_4-20182 (  771) [000] d..3 29481.452278: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
28981  HwBinder:771_4-20182 (  771) [000] d..2 29481.452298: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
28982 cdsp_smem_glink-88    (   88) [000] d..2 29481.452360: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28983          <idle>-0     (-----) [000] d..1 29481.452382: cpu_idle: state=0 cpu_id=0
28984          <idle>-0     (-----) [002] d.h4 29481.452419: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28985          <idle>-0     (-----) [002] dnh5 29481.452443: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
28986          <idle>-0     (-----) [002] .n.1 29481.452455: cpu_idle: state=4294967295 cpu_id=2
28987          <idle>-0     (-----) [002] d..2 29481.452476: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
28988 smem_native_cds-87    (   87) [002] d..2 29481.452531: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28989          <idle>-0     (-----) [002] d..1 29481.452549: cpu_idle: state=0 cpu_id=2
28990          <idle>-0     (-----) [002] d..2 29481.454151: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28991          <idle>-0     (-----) [002] dn.3 29481.454166: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
28992          <idle>-0     (-----) [002] .n.1 29481.454172: cpu_idle: state=4294967295 cpu_id=2
28993          <idle>-0     (-----) [002] d..2 29481.454188: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
28994     ksoftirqd/2-26    (   26) [002] d..2 29481.454227: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28995          <idle>-0     (-----) [002] d..1 29481.454241: cpu_idle: state=2 cpu_id=2
28996          <idle>-0     (-----) [002] d.h4 29481.454821: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28997          <idle>-0     (-----) [002] d.h5 29481.454855: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
28998          <idle>-0     (-----) [000] .n.1 29481.454863: cpu_idle: state=4294967295 cpu_id=0
28999          <idle>-0     (-----) [000] d..2 29481.454881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29000          <idle>-0     (-----) [002] ...1 29481.454913: cpu_idle: state=4294967295 cpu_id=2
29001          <idle>-0     (-----) [002] d..1 29481.454927: cpu_idle: state=0 cpu_id=2
29002  HwBinder:771_4-20182 (  771) [000] d..2 29481.454939: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29003  HwBinder:771_4-20182 (  771) [000] d..3 29481.454968: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29004  HwBinder:771_4-20182 (  771) [000] d..2 29481.454984: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29005 cdsp_smem_glink-88    (   88) [000] d..2 29481.455042: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29006          <idle>-0     (-----) [000] d..1 29481.455061: cpu_idle: state=0 cpu_id=0
29007          <idle>-0     (-----) [002] d.h4 29481.457745: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29008          <idle>-0     (-----) [002] dnh5 29481.457779: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29009          <idle>-0     (-----) [002] dnh3 29481.457869: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29010          <idle>-0     (-----) [002] dnh3 29481.457887: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29011          <idle>-0     (-----) [002] dnh4 29481.457906: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29012          <idle>-0     (-----) [003] .n.1 29481.457911: cpu_idle: state=4294967295 cpu_id=3
29013          <idle>-0     (-----) [002] .n.1 29481.457916: cpu_idle: state=4294967295 cpu_id=2
29014          <idle>-0     (-----) [003] d..2 29481.457928: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29015          <idle>-0     (-----) [002] d..2 29481.457938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29016         sugov:0-559   (  559) [003] d..2 29481.457976: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29017          <idle>-0     (-----) [003] d..2 29481.457981: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
29018          <idle>-0     (-----) [003] dn.3 29481.457998: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
29019 smem_native_cds-87    (   87) [002] d..2 29481.458002: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29020          <idle>-0     (-----) [003] d..2 29481.458010: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
29021          <idle>-0     (-----) [002] d..1 29481.458022: cpu_idle: state=0 cpu_id=2
29022     ksoftirqd/3-34    (   34) [003] d..2 29481.458041: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29023          <idle>-0     (-----) [003] d..1 29481.458056: cpu_idle: state=2 cpu_id=3
29024          <idle>-0     (-----) [000] ...1 29481.458080: cpu_idle: state=4294967295 cpu_id=0
29025          <idle>-0     (-----) [000] d..1 29481.458087: cpu_idle: state=2 cpu_id=0
29026          <idle>-0     (-----) [006] dnh2 29481.458930: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29027          <idle>-0     (-----) [006] .n.1 29481.458939: cpu_idle: state=4294967295 cpu_id=6
29028          <idle>-0     (-----) [006] d..2 29481.458951: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29029         sugov:4-560   (  560) [006] d..2 29481.458973: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29030          <idle>-0     (-----) [006] d..1 29481.458982: cpu_idle: state=2 cpu_id=6
29031          <idle>-0     (-----) [002] d.h4 29481.460146: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29032          <idle>-0     (-----) [002] d.h5 29481.460172: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29033          <idle>-0     (-----) [002] ...1 29481.460225: cpu_idle: state=4294967295 cpu_id=2
29034          <idle>-0     (-----) [002] d..1 29481.460232: cpu_idle: state=0 cpu_id=2
29035          <idle>-0     (-----) [000] .n.1 29481.460483: cpu_idle: state=4294967295 cpu_id=0
29036          <idle>-0     (-----) [000] d..2 29481.460523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29037  HwBinder:771_4-20182 (  771) [000] d..2 29481.460607: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29038  HwBinder:771_4-20182 (  771) [000] d..3 29481.460652: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29039  HwBinder:771_4-20182 (  771) [000] d..2 29481.460669: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29040 cdsp_smem_glink-88    (   88) [000] d..2 29481.460741: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29041          <idle>-0     (-----) [000] d..2 29481.460749: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
29042          <idle>-0     (-----) [000] dn.3 29481.460762: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
29043          <idle>-0     (-----) [000] d..2 29481.460775: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
29044     ksoftirqd/0-3     (    3) [000] d.s2 29481.460786: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29045     ksoftirqd/0-3     (    3) [000] d.s3 29481.460836: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29046     ksoftirqd/0-3     (    3) [000] d..2 29481.460856: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29047  kworker/u16:10-23868 (23868) [000] d..2 29481.460966: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29048          <idle>-0     (-----) [000] d..1 29481.460990: cpu_idle: state=2 cpu_id=0
29049          <idle>-0     (-----) [002] d.h4 29481.463312: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29050          <idle>-0     (-----) [002] dnh5 29481.463334: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29051          <idle>-0     (-----) [002] .n.1 29481.463347: cpu_idle: state=4294967295 cpu_id=2
29052          <idle>-0     (-----) [002] d..2 29481.463364: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29053 smem_native_cds-87    (   87) [002] d..2 29481.463413: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29054          <idle>-0     (-----) [002] d..1 29481.463431: cpu_idle: state=0 cpu_id=2
29055          <idle>-0     (-----) [002] d.h4 29481.466346: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29056          <idle>-0     (-----) [002] d.h5 29481.466367: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29057          <idle>-0     (-----) [002] d..2 29481.466412: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29058          <idle>-0     (-----) [002] dn.3 29481.466426: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29059          <idle>-0     (-----) [002] .n.1 29481.466433: cpu_idle: state=4294967295 cpu_id=2
29060          <idle>-0     (-----) [002] d..2 29481.466450: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29061     ksoftirqd/2-26    (   26) [002] d.s2 29481.466461: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29062     ksoftirqd/2-26    (   26) [002] d.s3 29481.466509: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29063     ksoftirqd/2-26    (   26) [002] d.s2 29481.466517: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
29064     ksoftirqd/2-26    (   26) [002] d.s3 29481.466531: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
29065     ksoftirqd/2-26    (   26) [002] d..2 29481.466547: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
29066     kworker/2:2-13636 (13636) [002] d..2 29481.466590: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29067          <idle>-0     (-----) [000] .n.1 29481.466680: cpu_idle: state=4294967295 cpu_id=0
29068          <idle>-0     (-----) [000] d..2 29481.466717: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29069  kworker/u16:10-23868 (23868) [002] d..2 29481.466740: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29070          <idle>-0     (-----) [002] d..1 29481.466762: cpu_idle: state=0 cpu_id=2
29071          <idle>-0     (-----) [002] ...1 29481.470363: cpu_idle: state=4294967295 cpu_id=2
29072          <idle>-0     (-----) [002] d..1 29481.470369: cpu_idle: state=2 cpu_id=2
29073  HwBinder:771_4-20182 (  771) [000] d.s2 29481.470444: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29074  HwBinder:771_4-20182 (  771) [000] d.s3 29481.470508: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29075  HwBinder:771_4-20182 (  771) [000] d..2 29481.473783: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29076  kworker/u16:10-23868 (23868) [000] .... 29481.473824: clk_set_rate: l3_cluster0_vote_clk 403200000
29077  kworker/u16:10-23868 (23868) [000] .... 29481.473833: clk_set_rate: l3_clk 403200000
29078  kworker/u16:10-23868 (23868) [000] d..2 29481.474132: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29079          <idle>-0     (-----) [003] d.s3 29481.475015: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29080          <idle>-0     (-----) [003] d.s4 29481.475055: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29081          <idle>-0     (-----) [003] dns4 29481.475064: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29082          <idle>-0     (-----) [003] .n.1 29481.475076: cpu_idle: state=4294967295 cpu_id=3
29083          <idle>-0     (-----) [003] d..2 29481.475101: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29084  kworker/u16:10-23868 (23868) [003] d..2 29481.475162: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29085          <idle>-0     (-----) [003] d..1 29481.475181: cpu_idle: state=2 cpu_id=3
29086  HwBinder:771_4-20182 (  771) [000] d.H2 29481.477172: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29087  HwBinder:771_4-20182 (  771) [000] d.H2 29481.477193: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29088  HwBinder:771_4-20182 (  771) [000] d.H3 29481.477211: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29089          <idle>-0     (-----) [003] .n.1 29481.477481: cpu_idle: state=4294967295 cpu_id=3
29090          <idle>-0     (-----) [003] d..2 29481.477512: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29091         sugov:0-559   (  559) [003] .... 29481.477544: clk_set_rate: pwrcl_clk 1056000000
29092         sugov:0-559   (  559) [003] .... 29481.477555: clk_set_rate: cpu3_pwrcl_clk 652800000
29093         sugov:0-559   (  559) [003] .... 29481.477567: clk_set_rate: cpu2_pwrcl_clk 652800000
29094         sugov:0-559   (  559) [003] .... 29481.477578: clk_set_rate: cpu1_pwrcl_clk 652800000
29095         sugov:0-559   (  559) [003] .... 29481.477588: clk_set_rate: cpu0_pwrcl_clk 1056000000
29096         sugov:0-559   (  559) [003] .... 29481.477598: cpu_frequency: state=1056000 cpu_id=0
29097         sugov:0-559   (  559) [003] .... 29481.477617: cpu_frequency: state=1056000 cpu_id=1
29098         sugov:0-559   (  559) [003] .... 29481.477623: cpu_frequency: state=1056000 cpu_id=2
29099         sugov:0-559   (  559) [003] .... 29481.477628: cpu_frequency: state=1056000 cpu_id=3
29100         sugov:0-559   (  559) [003] d..2 29481.477674: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29101          <idle>-0     (-----) [003] d..1 29481.477691: cpu_idle: state=0 cpu_id=3
29102          <idle>-0     (-----) [006] dnh2 29481.478151: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29103          <idle>-0     (-----) [006] .n.1 29481.478160: cpu_idle: state=4294967295 cpu_id=6
29104          <idle>-0     (-----) [006] d..2 29481.478174: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29105         sugov:4-560   (  560) [006] d..2 29481.478198: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29106          <idle>-0     (-----) [006] d..1 29481.478208: cpu_idle: state=2 cpu_id=6
29107          <idle>-0     (-----) [003] ...1 29481.483701: cpu_idle: state=4294967295 cpu_id=3
29108          <idle>-0     (-----) [003] d..1 29481.483705: cpu_idle: state=2 cpu_id=3
29109  HwBinder:771_4-20182 (  771) [000] d.s2 29481.483752: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29110  HwBinder:771_4-20182 (  771) [000] d.s3 29481.483793: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29111          <idle>-0     (-----) [003] .n.1 29481.484069: cpu_idle: state=4294967295 cpu_id=3
29112          <idle>-0     (-----) [003] d..2 29481.484095: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29113  HwBinder:771_4-20182 (  771) [000] d..2 29481.484193: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29114  HwBinder:771_4-20182 (  771) [000] d..3 29481.484245: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29115  HwBinder:771_4-20182 (  771) [000] d..2 29481.484277: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29116          <idle>-0     (-----) [000] d..1 29481.484297: cpu_idle: state=2 cpu_id=0
29117  kworker/u16:10-23868 (23868) [003] d..2 29481.484305: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29118 cdsp_smem_glink-88    (   88) [003] d..2 29481.484344: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29119  kworker/u16:10-23868 (23868) [003] d..2 29481.484372: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
29120          <idle>-0     (-----) [003] d..1 29481.484390: cpu_idle: state=0 cpu_id=3
29121          <idle>-0     (-----) [003] d.s3 29481.484910: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29122          <idle>-0     (-----) [003] d.s4 29481.484920: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29123          <idle>-0     (-----) [003] dns4 29481.484925: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29124          <idle>-0     (-----) [003] .n.1 29481.484932: cpu_idle: state=4294967295 cpu_id=3
29125          <idle>-0     (-----) [003] d..2 29481.484942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29126  kworker/u16:10-23868 (23868) [003] .... 29481.484998: clk_set_rate: l3_cluster0_vote_clk 652800000
29127  kworker/u16:10-23868 (23868) [003] .... 29481.485002: clk_set_rate: l3_clk 652800000
29128  kworker/u16:10-23868 (23868) [003] d..2 29481.485042: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29129          <idle>-0     (-----) [003] d..1 29481.485059: cpu_idle: state=0 cpu_id=3
29130          <idle>-0     (-----) [002] d.h4 29481.485638: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29131          <idle>-0     (-----) [002] dnh5 29481.485663: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29132          <idle>-0     (-----) [002] .n.1 29481.485674: cpu_idle: state=4294967295 cpu_id=2
29133          <idle>-0     (-----) [002] d..2 29481.485689: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29134 smem_native_cds-87    (   87) [002] d..2 29481.485727: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29135          <idle>-0     (-----) [002] d..1 29481.485742: cpu_idle: state=0 cpu_id=2
29136          <idle>-0     (-----) [002] d..2 29481.489453: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29137          <idle>-0     (-----) [002] dn.3 29481.489462: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29138          <idle>-0     (-----) [002] .n.1 29481.489465: cpu_idle: state=4294967295 cpu_id=2
29139          <idle>-0     (-----) [002] d..2 29481.489475: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29140     ksoftirqd/2-26    (   26) [002] d..2 29481.489500: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29141          <idle>-0     (-----) [002] d..1 29481.489509: cpu_idle: state=2 cpu_id=2
29142          <idle>-0     (-----) [002] d.h4 29481.490629: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29143          <idle>-0     (-----) [002] d.h5 29481.490648: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29144          <idle>-0     (-----) [002] d..2 29481.490676: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29145          <idle>-0     (-----) [002] dn.3 29481.490683: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29146          <idle>-0     (-----) [002] .n.1 29481.490687: cpu_idle: state=4294967295 cpu_id=2
29147          <idle>-0     (-----) [002] d..2 29481.490700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29148     ksoftirqd/2-26    (   26) [002] d..2 29481.490728: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29149          <idle>-0     (-----) [002] d..1 29481.490739: cpu_idle: state=2 cpu_id=2
29150          <idle>-0     (-----) [000] .n.1 29481.490827: cpu_idle: state=4294967295 cpu_id=0
29151          <idle>-0     (-----) [000] d..2 29481.490846: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29152          <idle>-0     (-----) [003] ...1 29481.491065: cpu_idle: state=4294967295 cpu_id=3
29153          <idle>-0     (-----) [003] d..1 29481.491069: cpu_idle: state=2 cpu_id=3
29154  HwBinder:771_4-20182 (  771) [000] d..2 29481.491110: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29155  HwBinder:771_4-20182 (  771) [000] dn.3 29481.491148: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29156  HwBinder:771_4-20182 (  771) [000] d..2 29481.491157: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29157 cdsp_smem_glink-88    (   88) [000] d..2 29481.491184: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29158  HwBinder:771_4-20182 (  771) [000] d..2 29481.491203: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29159          <idle>-0     (-----) [000] d..1 29481.491216: cpu_idle: state=2 cpu_id=0
29160          <idle>-0     (-----) [002] d.h4 29481.494456: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29161          <idle>-0     (-----) [002] dnh5 29481.494478: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29162          <idle>-0     (-----) [002] dnh4 29481.494495: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29163          <idle>-0     (-----) [002] dnh5 29481.494507: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29164          <idle>-0     (-----) [002] .n.1 29481.494535: cpu_idle: state=4294967295 cpu_id=2
29165          <idle>-0     (-----) [002] d..2 29481.494549: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29166 smem_native_cds-87    (   87) [002] d..2 29481.494584: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29167          <idle>-0     (-----) [002] d..2 29481.494589: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29168          <idle>-0     (-----) [002] dn.3 29481.494596: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29169          <idle>-0     (-----) [002] d..2 29481.494603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29170     ksoftirqd/2-26    (   26) [002] d.s2 29481.494609: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29171     ksoftirqd/2-26    (   26) [002] d.s3 29481.494640: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29172     ksoftirqd/2-26    (   26) [002] d.s2 29481.494646: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
29173     ksoftirqd/2-26    (   26) [002] d.s3 29481.494655: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
29174     ksoftirqd/2-26    (   26) [002] d..2 29481.494665: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
29175     kworker/2:2-13636 (13636) [002] d..2 29481.494690: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29176          <idle>-0     (-----) [000] .n.1 29481.494696: cpu_idle: state=4294967295 cpu_id=0
29177  kworker/u16:10-23868 (23868) [002] .... 29481.494710: clk_set_rate: l3_cluster0_vote_clk 300000000
29178  kworker/u16:10-23868 (23868) [002] .... 29481.494715: clk_set_rate: l3_clk 300000000
29179          <idle>-0     (-----) [000] d..2 29481.494716: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29180  HwBinder:771_4-20182 (  771) [000] d..2 29481.494807: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29181  HwBinder:771_4-20182 (  771) [000] d..3 29481.494865: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29182  kworker/u16:10-23868 (23868) [002] d..2 29481.494879: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29183  HwBinder:771_4-20182 (  771) [000] d..2 29481.494909: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29184 cdsp_smem_glink-88    (   88) [002] d..2 29481.494920: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29185          <idle>-0     (-----) [000] d..1 29481.494925: cpu_idle: state=2 cpu_id=0
29186  kworker/u16:10-23868 (23868) [002] d..2 29481.495017: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29187          <idle>-0     (-----) [002] d..1 29481.495034: cpu_idle: state=2 cpu_id=2
29188          <idle>-0     (-----) [003] d.s3 29481.495256: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29189          <idle>-0     (-----) [003] d.s4 29481.495270: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29190          <idle>-0     (-----) [003] d.s4 29481.495280: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29191          <idle>-0     (-----) [003] ...1 29481.495295: cpu_idle: state=4294967295 cpu_id=3
29192          <idle>-0     (-----) [003] d..1 29481.495302: cpu_idle: state=2 cpu_id=3
29193          <idle>-0     (-----) [002] dnh4 29481.495533: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29194          <idle>-0     (-----) [002] dnh5 29481.495565: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29195          <idle>-0     (-----) [002] .n.1 29481.495578: cpu_idle: state=4294967295 cpu_id=2
29196          <idle>-0     (-----) [002] d..2 29481.495594: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29197 smem_native_cds-87    (   87) [002] d..2 29481.495627: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29198  kworker/u16:10-23868 (23868) [002] d..2 29481.495668: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29199          <idle>-0     (-----) [002] d..1 29481.495682: cpu_idle: state=2 cpu_id=2
29200          <idle>-0     (-----) [002] d.h4 29481.500848: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29201          <idle>-0     (-----) [002] d.h5 29481.500882: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29202          <idle>-0     (-----) [002] d..2 29481.500922: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29203          <idle>-0     (-----) [002] dn.3 29481.500931: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29204          <idle>-0     (-----) [002] dnH3 29481.501008: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29205          <idle>-0     (-----) [002] dnH3 29481.501025: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29206          <idle>-0     (-----) [002] dnH4 29481.501039: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29207          <idle>-0     (-----) [002] .n.1 29481.501052: cpu_idle: state=4294967295 cpu_id=2
29208          <idle>-0     (-----) [002] d..2 29481.501071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29209     ksoftirqd/2-26    (   26) [002] d..2 29481.501101: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29210          <idle>-0     (-----) [002] d..1 29481.501115: cpu_idle: state=2 cpu_id=2
29211          <idle>-0     (-----) [000] .n.1 29481.501116: cpu_idle: state=4294967295 cpu_id=0
29212          <idle>-0     (-----) [000] d..2 29481.501146: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29213  HwBinder:771_4-20182 (  771) [000] d..2 29481.501209: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29214  HwBinder:771_4-20182 (  771) [000] d..3 29481.501261: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29215  HwBinder:771_4-20182 (  771) [000] d..2 29481.501291: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29216          <idle>-0     (-----) [000] d..1 29481.501308: cpu_idle: state=2 cpu_id=0
29217          <idle>-0     (-----) [003] .n.1 29481.501354: cpu_idle: state=4294967295 cpu_id=3
29218          <idle>-0     (-----) [003] d..2 29481.501376: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29219         sugov:0-559   (  559) [003] d..2 29481.501397: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29220 cdsp_smem_glink-88    (   88) [003] d..2 29481.501457: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29221          <idle>-0     (-----) [003] d..1 29481.501471: cpu_idle: state=2 cpu_id=3
29222          <idle>-0     (-----) [006] dnh2 29481.502129: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29223          <idle>-0     (-----) [006] .n.1 29481.502139: cpu_idle: state=4294967295 cpu_id=6
29224          <idle>-0     (-----) [006] d..2 29481.502151: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29225         sugov:4-560   (  560) [006] d..2 29481.502174: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29226          <idle>-0     (-----) [006] d..1 29481.502183: cpu_idle: state=2 cpu_id=6
29227          <idle>-0     (-----) [006] ...1 29481.505918: cpu_idle: state=4294967295 cpu_id=6
29228          <idle>-0     (-----) [006] d..1 29481.505923: cpu_idle: state=2 cpu_id=6
29229          <idle>-0     (-----) [002] d.h4 29481.505961: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29230          <idle>-0     (-----) [002] dnh5 29481.505997: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29231          <idle>-0     (-----) [002] dnh4 29481.506028: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29232          <idle>-0     (-----) [002] dnh5 29481.506043: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29233          <idle>-0     (-----) [002] .n.1 29481.506086: cpu_idle: state=4294967295 cpu_id=2
29234          <idle>-0     (-----) [002] d..2 29481.506107: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29235 smem_native_cds-87    (   87) [002] d..2 29481.506156: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29236          <idle>-0     (-----) [002] d..2 29481.506160: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29237          <idle>-0     (-----) [002] dn.3 29481.506168: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29238          <idle>-0     (-----) [002] d..2 29481.506175: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29239     ksoftirqd/2-26    (   26) [002] d.s2 29481.506184: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29240     ksoftirqd/2-26    (   26) [002] d.s3 29481.506201: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29241     ksoftirqd/2-26    (   26) [002] d..2 29481.506216: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29242          <idle>-0     (-----) [000] .n.1 29481.506232: cpu_idle: state=4294967295 cpu_id=0
29243          <idle>-0     (-----) [000] d..2 29481.506258: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29244  kworker/u16:10-23868 (23868) [002] d..2 29481.506336: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29245  HwBinder:771_4-20182 (  771) [000] d..2 29481.506343: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29246          <idle>-0     (-----) [002] d..1 29481.506354: cpu_idle: state=2 cpu_id=2
29247  HwBinder:771_4-20182 (  771) [000] d..3 29481.506389: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29248  HwBinder:771_4-20182 (  771) [000] d..2 29481.506419: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29249          <idle>-0     (-----) [000] d..1 29481.506440: cpu_idle: state=2 cpu_id=0
29250          <idle>-0     (-----) [003] .n.1 29481.506688: cpu_idle: state=4294967295 cpu_id=3
29251          <idle>-0     (-----) [003] d..2 29481.506712: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29252 cdsp_smem_glink-88    (   88) [003] d..2 29481.506770: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29253          <idle>-0     (-----) [003] d..1 29481.506783: cpu_idle: state=2 cpu_id=3
29254          <idle>-0     (-----) [002] d.h4 29481.510466: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29255          <idle>-0     (-----) [002] dnh5 29481.510498: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29256          <idle>-0     (-----) [002] dnh4 29481.510528: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29257          <idle>-0     (-----) [002] dnh5 29481.510542: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29258          <idle>-0     (-----) [002] .n.1 29481.510581: cpu_idle: state=4294967295 cpu_id=2
29259          <idle>-0     (-----) [002] d..2 29481.510598: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29260 smem_native_cds-87    (   87) [002] d..2 29481.510646: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29261          <idle>-0     (-----) [002] d..2 29481.510651: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29262          <idle>-0     (-----) [002] dn.3 29481.510661: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29263          <idle>-0     (-----) [002] d..2 29481.510669: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29264     ksoftirqd/2-26    (   26) [002] d..2 29481.510690: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29265          <idle>-0     (-----) [002] d..1 29481.510705: cpu_idle: state=2 cpu_id=2
29266          <idle>-0     (-----) [000] .n.1 29481.510738: cpu_idle: state=4294967295 cpu_id=0
29267          <idle>-0     (-----) [000] d..2 29481.510767: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29268  HwBinder:771_4-20182 (  771) [000] d..2 29481.510830: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29269  HwBinder:771_4-20182 (  771) [000] d..3 29481.510871: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29270  HwBinder:771_4-20182 (  771) [000] d..2 29481.510897: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29271          <idle>-0     (-----) [000] d..1 29481.510913: cpu_idle: state=2 cpu_id=0
29272          <idle>-0     (-----) [003] .n.1 29481.511189: cpu_idle: state=4294967295 cpu_id=3
29273          <idle>-0     (-----) [003] d..2 29481.511213: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29274 cdsp_smem_glink-88    (   88) [003] d..2 29481.511274: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29275          <idle>-0     (-----) [003] d..1 29481.511288: cpu_idle: state=2 cpu_id=3
29276          <idle>-0     (-----) [003] ...1 29481.515792: cpu_idle: state=4294967295 cpu_id=3
29277          <idle>-0     (-----) [003] d..1 29481.515798: cpu_idle: state=2 cpu_id=3
29278          <idle>-0     (-----) [002] d.h4 29481.515829: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29279          <idle>-0     (-----) [002] dnh5 29481.515860: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29280          <idle>-0     (-----) [002] dnh4 29481.515888: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29281          <idle>-0     (-----) [002] dnh5 29481.515903: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29282          <idle>-0     (-----) [002] .n.1 29481.515941: cpu_idle: state=4294967295 cpu_id=2
29283          <idle>-0     (-----) [002] d..2 29481.515958: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29284 smem_native_cds-87    (   87) [002] d..2 29481.516005: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29285          <idle>-0     (-----) [002] d..2 29481.516010: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29286          <idle>-0     (-----) [002] dn.3 29481.516018: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29287          <idle>-0     (-----) [002] d..2 29481.516026: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29288     ksoftirqd/2-26    (   26) [002] d.s2 29481.516035: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29289     ksoftirqd/2-26    (   26) [002] d.s3 29481.516051: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29290     ksoftirqd/2-26    (   26) [002] d..2 29481.516066: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29291          <idle>-0     (-----) [000] .n.1 29481.516095: cpu_idle: state=4294967295 cpu_id=0
29292          <idle>-0     (-----) [000] d..2 29481.516123: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29293  HwBinder:771_4-20182 (  771) [000] d..2 29481.516201: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29294  HwBinder:771_4-20182 (  771) [000] d..3 29481.516258: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29295  kworker/u16:10-23868 (23868) [002] d..2 29481.516276: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29296  HwBinder:771_4-20182 (  771) [000] d..2 29481.516287: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29297          <idle>-0     (-----) [000] d..1 29481.516304: cpu_idle: state=2 cpu_id=0
29298 cdsp_smem_glink-88    (   88) [002] d..2 29481.516320: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29299  kworker/u16:10-23868 (23868) [002] d..2 29481.516468: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29300          <idle>-0     (-----) [002] d..1 29481.516485: cpu_idle: state=2 cpu_id=2
29301          <idle>-0     (-----) [003] d.s3 29481.516794: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29302          <idle>-0     (-----) [003] d.s4 29481.516834: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29303          <idle>-0     (-----) [003] dns4 29481.516841: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29304          <idle>-0     (-----) [003] .n.1 29481.516850: cpu_idle: state=4294967295 cpu_id=3
29305          <idle>-0     (-----) [003] d..2 29481.516867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29306  kworker/u16:10-23868 (23868) [003] d..2 29481.516906: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29307          <idle>-0     (-----) [003] d..1 29481.516919: cpu_idle: state=2 cpu_id=3
29308          <idle>-0     (-----) [002] d.h4 29481.520736: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29309          <idle>-0     (-----) [002] dnh5 29481.520775: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29310          <idle>-0     (-----) [002] dnh4 29481.520805: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29311          <idle>-0     (-----) [002] dnh5 29481.520822: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29312          <idle>-0     (-----) [002] dnh3 29481.520922: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29313          <idle>-0     (-----) [002] .n.1 29481.520942: cpu_idle: state=4294967295 cpu_id=2
29314          <idle>-0     (-----) [002] d..2 29481.520962: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29315          <idle>-0     (-----) [000] .n.1 29481.521009: cpu_idle: state=4294967295 cpu_id=0
29316 smem_native_cds-87    (   87) [002] d..2 29481.521016: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29317          <idle>-0     (-----) [002] d..2 29481.521021: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29318          <idle>-0     (-----) [002] dn.3 29481.521031: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29319          <idle>-0     (-----) [000] d..2 29481.521038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29320          <idle>-0     (-----) [002] d..2 29481.521041: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29321     ksoftirqd/2-26    (   26) [002] d..2 29481.521060: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29322          <idle>-0     (-----) [002] d..1 29481.521076: cpu_idle: state=2 cpu_id=2
29323  HwBinder:771_4-20182 (  771) [000] d..2 29481.521104: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29324  HwBinder:771_4-20182 (  771) [000] dn.3 29481.521158: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29325  HwBinder:771_4-20182 (  771) [000] d..2 29481.521170: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29326 cdsp_smem_glink-88    (   88) [000] d..2 29481.521210: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29327  HwBinder:771_4-20182 (  771) [000] d..2 29481.521232: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29328          <idle>-0     (-----) [000] d..1 29481.521248: cpu_idle: state=2 cpu_id=0
29329          <idle>-0     (-----) [006] dnh2 29481.522003: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29330          <idle>-0     (-----) [006] .n.1 29481.522013: cpu_idle: state=4294967295 cpu_id=6
29331          <idle>-0     (-----) [006] d..2 29481.522024: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29332         sugov:4-560   (  560) [006] d..2 29481.522047: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29333          <idle>-0     (-----) [006] d..1 29481.522057: cpu_idle: state=2 cpu_id=6
29334          <idle>-0     (-----) [006] ...1 29481.525776: cpu_idle: state=4294967295 cpu_id=6
29335          <idle>-0     (-----) [006] d..1 29481.525782: cpu_idle: state=2 cpu_id=6
29336          <idle>-0     (-----) [002] d.h4 29481.525818: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29337          <idle>-0     (-----) [002] dnh5 29481.525853: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29338          <idle>-0     (-----) [002] dnh4 29481.525882: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29339          <idle>-0     (-----) [002] dnh5 29481.525897: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29340          <idle>-0     (-----) [002] .n.1 29481.525943: cpu_idle: state=4294967295 cpu_id=2
29341          <idle>-0     (-----) [002] d..2 29481.525965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29342 smem_native_cds-87    (   87) [002] d..2 29481.526014: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29343          <idle>-0     (-----) [002] d..2 29481.526018: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29344          <idle>-0     (-----) [002] dn.3 29481.526026: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29345          <idle>-0     (-----) [002] d..2 29481.526034: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29346     ksoftirqd/2-26    (   26) [002] d.s2 29481.526046: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29347     ksoftirqd/2-26    (   26) [002] d.s3 29481.526082: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29348          <idle>-0     (-----) [000] .n.1 29481.526091: cpu_idle: state=4294967295 cpu_id=0
29349     ksoftirqd/2-26    (   26) [002] d..2 29481.526098: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29350          <idle>-0     (-----) [000] d..2 29481.526117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29351  HwBinder:771_4-20182 (  771) [000] d..2 29481.526200: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29352  HwBinder:771_4-20182 (  771) [000] d..3 29481.526261: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29353  kworker/u16:10-23868 (23868) [002] d..2 29481.526279: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29354  HwBinder:771_4-20182 (  771) [000] d..2 29481.526298: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29355          <idle>-0     (-----) [000] d..1 29481.526315: cpu_idle: state=2 cpu_id=0
29356 cdsp_smem_glink-88    (   88) [002] d..2 29481.526322: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29357  kworker/u16:10-23868 (23868) [002] d..2 29481.526360: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29358          <idle>-0     (-----) [002] d..1 29481.526380: cpu_idle: state=2 cpu_id=2
29359          <idle>-0     (-----) [002] d.h4 29481.531258: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29360          <idle>-0     (-----) [002] dnh5 29481.531285: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29361          <idle>-0     (-----) [002] dnh4 29481.531315: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29362          <idle>-0     (-----) [002] dnh5 29481.531329: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29363          <idle>-0     (-----) [002] .n.1 29481.531368: cpu_idle: state=4294967295 cpu_id=2
29364          <idle>-0     (-----) [002] d..2 29481.531386: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29365 smem_native_cds-87    (   87) [002] d..2 29481.531434: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29366          <idle>-0     (-----) [002] d..2 29481.531438: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29367          <idle>-0     (-----) [002] dn.3 29481.531447: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29368          <idle>-0     (-----) [002] d..2 29481.531455: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29369     ksoftirqd/2-26    (   26) [002] d..2 29481.531475: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29370          <idle>-0     (-----) [002] d..1 29481.531490: cpu_idle: state=2 cpu_id=2
29371          <idle>-0     (-----) [000] .n.1 29481.531530: cpu_idle: state=4294967295 cpu_id=0
29372          <idle>-0     (-----) [000] d..2 29481.531560: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29373  HwBinder:771_4-20182 (  771) [000] d..2 29481.531629: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29374  HwBinder:771_4-20182 (  771) [000] dn.3 29481.531676: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29375  HwBinder:771_4-20182 (  771) [000] d..2 29481.531685: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29376 cdsp_smem_glink-88    (   88) [000] d..2 29481.531724: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29377  HwBinder:771_4-20182 (  771) [000] d..2 29481.531749: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29378          <idle>-0     (-----) [000] d..1 29481.531765: cpu_idle: state=2 cpu_id=0
29379          <idle>-0     (-----) [000] d..2 29481.535547: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
29380          <idle>-0     (-----) [002] d.h4 29481.535555: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29381          <idle>-0     (-----) [000] dn.3 29481.535563: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
29382          <idle>-0     (-----) [000] .n.1 29481.535568: cpu_idle: state=4294967295 cpu_id=0
29383          <idle>-0     (-----) [000] d..2 29481.535586: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
29384          <idle>-0     (-----) [002] dnh5 29481.535588: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29385     ksoftirqd/0-3     (    3) [000] d.s2 29481.535596: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29386          <idle>-0     (-----) [002] .n.1 29481.535604: cpu_idle: state=4294967295 cpu_id=2
29387          <idle>-0     (-----) [002] d..2 29481.535627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29388     ksoftirqd/0-3     (    3) [000] d.s3 29481.535646: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29389     ksoftirqd/0-3     (    3) [000] d..2 29481.535662: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29390 smem_native_cds-87    (   87) [002] d..2 29481.535681: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29391          <idle>-0     (-----) [002] d..1 29481.535720: cpu_idle: state=2 cpu_id=2
29392          <idle>-0     (-----) [002] d.h4 29481.536194: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29393  kworker/u16:10-23868 (23868) [000] d..2 29481.536213: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29394          <idle>-0     (-----) [000] d..1 29481.536230: cpu_idle: state=2 cpu_id=0
29395          <idle>-0     (-----) [002] d.h5 29481.536237: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
29396          <idle>-0     (-----) [002] ...1 29481.536279: cpu_idle: state=4294967295 cpu_id=2
29397          <idle>-0     (-----) [002] d..1 29481.536288: cpu_idle: state=2 cpu_id=2
29398          <idle>-0     (-----) [001] .n.1 29481.536569: cpu_idle: state=4294967295 cpu_id=1
29399          <idle>-0     (-----) [001] d..2 29481.536599: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29400  HwBinder:771_4-20182 (  771) [001] d..2 29481.536662: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29401  HwBinder:771_4-20182 (  771) [001] dn.3 29481.536711: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
29402  HwBinder:771_4-20182 (  771) [001] d..2 29481.536722: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29403 cdsp_smem_glink-88    (   88) [001] d..2 29481.536761: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29404  HwBinder:771_4-20182 (  771) [001] d..2 29481.536784: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29405          <idle>-0     (-----) [001] d..1 29481.536801: cpu_idle: state=2 cpu_id=1
29406          <idle>-0     (-----) [002] d.h4 29481.544530: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29407          <idle>-0     (-----) [000] d..2 29481.544626: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
29408          <idle>-0     (-----) [000] dn.3 29481.544756: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
29409          <idle>-0     (-----) [002] dnh5 29481.544773: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29410          <idle>-0     (-----) [000] .n.1 29481.544800: cpu_idle: state=4294967295 cpu_id=0
29411          <idle>-0     (-----) [002] dnh4 29481.544860: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
29412          <idle>-0     (-----) [002] dnh5 29481.544924: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
29413          <idle>-0     (-----) [000] d..2 29481.544964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
29414     ksoftirqd/0-3     (    3) [000] d.s2 29481.545051: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29415     ksoftirqd/0-3     (    3) [000] d.s3 29481.545302: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29416          <idle>-0     (-----) [001] .n.1 29481.545305: cpu_idle: state=4294967295 cpu_id=1
29417          <idle>-0     (-----) [002] dnh3 29481.545332: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29418     ksoftirqd/0-3     (    3) [000] d..2 29481.545356: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29419          <idle>-0     (-----) [001] d..2 29481.545370: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29420          <idle>-0     (-----) [002] dnh3 29481.545398: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29421          <idle>-0     (-----) [002] dnh4 29481.545452: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29422          <idle>-0     (-----) [002] .n.1 29481.545467: cpu_idle: state=4294967295 cpu_id=2
29423          <idle>-0     (-----) [002] d..2 29481.545503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29424 smem_native_cds-87    (   87) [002] d..2 29481.545734: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29425          <idle>-0     (-----) [002] d..1 29481.545810: cpu_idle: state=2 cpu_id=2
29426          <idle>-0     (-----) [003] .n.1 29481.545828: cpu_idle: state=4294967295 cpu_id=3
29427          <idle>-0     (-----) [003] d..2 29481.545879: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29428  HwBinder:771_4-20182 (  771) [001] d..2 29481.545912: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
29429  kworker/u16:10-23868 (23868) [000] d..2 29481.545986: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29430          <idle>-0     (-----) [000] d..1 29481.546013: cpu_idle: state=2 cpu_id=0
29431         sugov:0-559   (  559) [003] .... 29481.546020: clk_set_rate: pwrcl_clk 748800000
29432  HwBinder:771_4-20182 (  771) [001] d..3 29481.546044: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29433  HwBinder:771_4-20182 (  771) [001] d..2 29481.546103: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29434         sugov:0-559   (  559) [003] .... 29481.546112: clk_set_rate: cpu3_pwrcl_clk 1056000000
29435          <idle>-0     (-----) [001] d..1 29481.546128: cpu_idle: state=2 cpu_id=1
29436         sugov:0-559   (  559) [003] .... 29481.546132: clk_set_rate: cpu2_pwrcl_clk 1056000000
29437         sugov:0-559   (  559) [003] .... 29481.546141: clk_set_rate: cpu1_pwrcl_clk 1056000000
29438         sugov:0-559   (  559) [003] .... 29481.546151: clk_set_rate: cpu0_pwrcl_clk 748800000
29439         sugov:0-559   (  559) [003] .... 29481.546274: cpu_frequency: state=748800 cpu_id=0
29440         sugov:0-559   (  559) [003] .... 29481.546361: cpu_frequency: state=748800 cpu_id=1
29441         sugov:0-559   (  559) [003] .... 29481.546366: cpu_frequency: state=748800 cpu_id=2
29442         sugov:0-559   (  559) [003] .... 29481.546372: cpu_frequency: state=748800 cpu_id=3
29443         sugov:0-559   (  559) [003] d..2 29481.546423: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29444 cdsp_smem_glink-88    (   88) [003] d..2 29481.546549: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29445          <idle>-0     (-----) [006] dnh2 29481.546560: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29446          <idle>-0     (-----) [003] d..1 29481.546573: cpu_idle: state=2 cpu_id=3
29447          <idle>-0     (-----) [006] .n.1 29481.546581: cpu_idle: state=4294967295 cpu_id=6
29448          <idle>-0     (-----) [006] d..2 29481.546604: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29449         sugov:4-560   (  560) [006] d..2 29481.546651: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29450          <idle>-0     (-----) [006] d..1 29481.546674: cpu_idle: state=2 cpu_id=6
29451          <idle>-0     (-----) [002] d.h4 29481.549646: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29452          <idle>-0     (-----) [002] dnh5 29481.549681: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29453          <idle>-0     (-----) [002] dnh4 29481.549713: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
29454          <idle>-0     (-----) [002] dnh5 29481.549750: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29455          <idle>-0     (-----) [002] .n.1 29481.549795: cpu_idle: state=4294967295 cpu_id=2
29456          <idle>-0     (-----) [002] d..2 29481.549816: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29457 smem_native_cds-87    (   87) [002] d..2 29481.549875: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29458          <idle>-0     (-----) [002] d..2 29481.549884: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29459          <idle>-0     (-----) [002] dn.3 29481.549912: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29460          <idle>-0     (-----) [002] d..2 29481.549928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29461          <idle>-0     (-----) [000] .n.1 29481.549930: cpu_idle: state=4294967295 cpu_id=0
29462          <idle>-0     (-----) [000] d..2 29481.549963: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29463     ksoftirqd/2-26    (   26) [002] d..2 29481.549980: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29464          <idle>-0     (-----) [002] d..1 29481.549999: cpu_idle: state=2 cpu_id=2
29465  HwBinder:771_4-20182 (  771) [000] d..2 29481.550244: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29466  HwBinder:771_4-20182 (  771) [000] dn.3 29481.550316: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29467  HwBinder:771_4-20182 (  771) [000] d..2 29481.550330: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29468 cdsp_smem_glink-88    (   88) [000] d..2 29481.550378: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29469  HwBinder:771_4-20182 (  771) [000] d..2 29481.550406: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29470          <idle>-0     (-----) [000] d.h4 29481.550545: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29471          <idle>-0     (-----) [000] dnh5 29481.550570: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29472          <idle>-0     (-----) [000] d..2 29481.550655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29473  kworker/u16:10-23868 (23868) [000] d..3 29481.550696: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
29474  kworker/u16:10-23868 (23868) [000] dn.4 29481.550724: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
29475  kworker/u16:10-23868 (23868) [000] d..2 29481.550737: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
29476     kworker/0:0-13450 (13450) [000] d..3 29481.550762: sched_waking: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
29477     kworker/0:0-13450 (13450) [000] d..4 29481.550804: sched_wakeup: comm=msm_irqbalance pid=805 prio=120 target_cpu=001
29478     kworker/0:0-13450 (13450) [000] d..2 29481.550868: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29479  kworker/u16:10-23868 (23868) [000] d..2 29481.550896: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29480          <idle>-0     (-----) [000] d..1 29481.550916: cpu_idle: state=2 cpu_id=0
29481          <idle>-0     (-----) [001] .n.1 29481.551112: cpu_idle: state=4294967295 cpu_id=1
29482          <idle>-0     (-----) [001] d..2 29481.551142: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
29483          <idle>-0     (-----) [002] d.h4 29481.552921: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29484          <idle>-0     (-----) [002] dnh5 29481.552955: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29485          <idle>-0     (-----) [002] .n.1 29481.552971: cpu_idle: state=4294967295 cpu_id=2
29486          <idle>-0     (-----) [002] d..2 29481.552992: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29487 smem_native_cds-87    (   87) [002] d..2 29481.553045: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29488          <idle>-0     (-----) [002] d..1 29481.553063: cpu_idle: state=2 cpu_id=2
29489<...>-805 ( 805) [001] d.s3 29481.553851: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29490<...>-805 ( 805) [001] d.s4 29481.553910: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29491          <idle>-0     (-----) [000] .n.1 29481.554215: cpu_idle: state=4294967295 cpu_id=0
29492          <idle>-0     (-----) [000] d..2 29481.554249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29493  kworker/u16:10-23868 (23868) [000] .... 29481.554324: clk_set_rate: l3_cluster0_vote_clk 403200000
29494  kworker/u16:10-23868 (23868) [000] .... 29481.554347: clk_set_rate: l3_clk 403200000
29495  kworker/u16:10-23868 (23868) [000] d..2 29481.554516: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29496          <idle>-0     (-----) [000] d..1 29481.554534: cpu_idle: state=2 cpu_id=0
29497          <idle>-0     (-----) [002] d.h4 29481.554864: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29498          <idle>-0     (-----) [002] d.h5 29481.554893: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29499          <idle>-0     (-----) [002] ...1 29481.554942: cpu_idle: state=4294967295 cpu_id=2
29500          <idle>-0     (-----) [002] d..1 29481.554951: cpu_idle: state=2 cpu_id=2
29501          <idle>-0     (-----) [000] .n.1 29481.555186: cpu_idle: state=4294967295 cpu_id=0
29502          <idle>-0     (-----) [000] d..2 29481.555212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29503  HwBinder:771_4-20182 (  771) [000] d..2 29481.555299: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29504  HwBinder:771_4-20182 (  771) [000] dn.3 29481.555332: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29505  HwBinder:771_4-20182 (  771) [000] d..2 29481.555343: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29506 cdsp_smem_glink-88    (   88) [000] d..2 29481.555387: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29507  HwBinder:771_4-20182 (  771) [000] d..2 29481.555414: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29508          <idle>-0     (-----) [000] d..1 29481.555432: cpu_idle: state=2 cpu_id=0
29509<...>-805 ( 805) [001] d.H2 29481.557181: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29510<...>-805 ( 805) [001] d.H2 29481.557203: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29511<...>-805 ( 805) [001] d.H3 29481.557221: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29512          <idle>-0     (-----) [003] .n.1 29481.557512: cpu_idle: state=4294967295 cpu_id=3
29513          <idle>-0     (-----) [003] d..2 29481.557537: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29514         sugov:0-559   (  559) [003] d..2 29481.557582: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29515          <idle>-0     (-----) [003] d..1 29481.557596: cpu_idle: state=2 cpu_id=3
29516          <idle>-0     (-----) [002] d.h4 29481.558092: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29517          <idle>-0     (-----) [002] dnh5 29481.558124: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29518          <idle>-0     (-----) [002] .n.1 29481.558139: cpu_idle: state=4294967295 cpu_id=2
29519          <idle>-0     (-----) [002] d..2 29481.558157: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29520 smem_native_cds-87    (   87) [002] d..2 29481.558206: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29521          <idle>-0     (-----) [002] d..1 29481.558222: cpu_idle: state=2 cpu_id=2
29522          <idle>-0     (-----) [006] dnh2 29481.558236: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29523          <idle>-0     (-----) [006] .n.1 29481.558246: cpu_idle: state=4294967295 cpu_id=6
29524          <idle>-0     (-----) [006] d..2 29481.558259: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29525         sugov:4-560   (  560) [006] d..2 29481.558282: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29526          <idle>-0     (-----) [006] d..1 29481.558291: cpu_idle: state=2 cpu_id=6
29527          <idle>-0     (-----) [002] d.h4 29481.559877: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29528          <idle>-0     (-----) [002] d.h5 29481.559906: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29529          <idle>-0     (-----) [002] ...1 29481.559956: cpu_idle: state=4294967295 cpu_id=2
29530          <idle>-0     (-----) [002] d..1 29481.559977: cpu_idle: state=0 cpu_id=2
29531          <idle>-0     (-----) [000] .n.1 29481.560214: cpu_idle: state=4294967295 cpu_id=0
29532          <idle>-0     (-----) [000] d..2 29481.560253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29533  HwBinder:771_4-20182 (  771) [000] d..2 29481.560324: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29534  HwBinder:771_4-20182 (  771) [000] dn.3 29481.560363: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29535  HwBinder:771_4-20182 (  771) [000] d..2 29481.560375: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29536 cdsp_smem_glink-88    (   88) [000] d..2 29481.560474: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29537  HwBinder:771_4-20182 (  771) [000] d..2 29481.560511: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29538          <idle>-0     (-----) [000] d..1 29481.560531: cpu_idle: state=2 cpu_id=0
29539          <idle>-0     (-----) [002] d.h4 29481.562803: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29540          <idle>-0     (-----) [002] dnh5 29481.562824: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29541          <idle>-0     (-----) [002] .n.1 29481.562837: cpu_idle: state=4294967295 cpu_id=2
29542          <idle>-0     (-----) [002] d..2 29481.562855: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29543 smem_native_cds-87    (   87) [002] d..2 29481.562908: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29544          <idle>-0     (-----) [002] d..1 29481.562925: cpu_idle: state=0 cpu_id=2
29545<...>-805 ( 805) [001] d.s2 29481.563769: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29546<...>-805 ( 805) [001] d.s3 29481.563831: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29547          <idle>-0     (-----) [002] .n.1 29481.563837: cpu_idle: state=4294967295 cpu_id=2
29548          <idle>-0     (-----) [002] d..2 29481.563855: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29549<...>-805 ( 805) [001] d.s2 29481.563858: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
29550<...>-805 ( 805) [001] dns3 29481.563885: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
29551<...>-805 ( 805) [001] d..2 29481.563913: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
29552  kworker/u16:10-23868 (23868) [002] .... 29481.564028: clk_set_rate: l3_cluster0_vote_clk 576000000
29553  kworker/u16:10-23868 (23868) [002] .... 29481.564035: clk_set_rate: l3_clk 576000000
29554     kworker/1:1-13678 (13678) [001] d..2 29481.564082: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=805 next_prio=120
29555  kworker/u16:10-23868 (23868) [002] d.h3 29481.564314: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29556  kworker/u16:10-23868 (23868) [002] d.h4 29481.564338: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29557          <idle>-0     (-----) [000] .n.1 29481.564617: cpu_idle: state=4294967295 cpu_id=0
29558          <idle>-0     (-----) [000] d..2 29481.564642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29559  kworker/u16:10-23868 (23868) [002] d..2 29481.564672: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29560          <idle>-0     (-----) [002] d..1 29481.564693: cpu_idle: state=0 cpu_id=2
29561  HwBinder:771_4-20182 (  771) [000] d..2 29481.564702: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29562  HwBinder:771_4-20182 (  771) [000] dn.3 29481.564732: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29563  HwBinder:771_4-20182 (  771) [000] d..2 29481.564742: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29564 cdsp_smem_glink-88    (   88) [000] d..2 29481.564782: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29565  HwBinder:771_4-20182 (  771) [000] d..2 29481.564811: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29566          <idle>-0     (-----) [000] d..1 29481.564833: cpu_idle: state=0 cpu_id=0
29567          <idle>-0     (-----) [003] d.s3 29481.565000: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29568          <idle>-0     (-----) [003] d.s4 29481.565029: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29569          <idle>-0     (-----) [003] d.s4 29481.565047: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29570          <idle>-0     (-----) [002] .n.1 29481.565055: cpu_idle: state=4294967295 cpu_id=2
29571          <idle>-0     (-----) [003] ...1 29481.565069: cpu_idle: state=4294967295 cpu_id=3
29572          <idle>-0     (-----) [002] d..2 29481.565070: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29573          <idle>-0     (-----) [003] d..1 29481.565078: cpu_idle: state=2 cpu_id=3
29574<...>-805 ( 805) [001] d..2 29481.565159: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
29575  kworker/u16:10-23868 (23868) [002] d..2 29481.565187: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29576          <idle>-0     (-----) [002] d..1 29481.565201: cpu_idle: state=0 cpu_id=2
29577<...>-805 ( 805) [001] d..3 29481.565225: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
29578          <idle>-0     (-----) [002] .n.1 29481.565231: cpu_idle: state=4294967295 cpu_id=2
29579          <idle>-0     (-----) [002] d..2 29481.565246: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
29580         rcuop/0-10    (   10) [002] d..2 29481.565282: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
29581         rcuop/0-10    (   10) [002] d..3 29481.565347: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
29582         rcuop/0-10    (   10) [002] d..2 29481.565367: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
29583     rcu_preempt-7     (    7) [002] d..2 29481.565427: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29584          <idle>-0     (-----) [002] d..1 29481.565438: cpu_idle: state=0 cpu_id=2
29585<...>-805 ( 805) [001] d..2 29481.565859: sched_switch: prev_comm=msm_irqbalance prev_pid=805 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29586          <idle>-0     (-----) [001] d..1 29481.565881: cpu_idle: state=2 cpu_id=1
29587          <idle>-0     (-----) [002] d.h4 29481.567410: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29588          <idle>-0     (-----) [002] dnh5 29481.567427: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29589          <idle>-0     (-----) [002] .n.1 29481.567439: cpu_idle: state=4294967295 cpu_id=2
29590          <idle>-0     (-----) [002] d..2 29481.567453: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29591 smem_native_cds-87    (   87) [002] d..2 29481.567502: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29592          <idle>-0     (-----) [002] d..2 29481.567507: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29593          <idle>-0     (-----) [002] dn.3 29481.567519: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29594          <idle>-0     (-----) [002] d..2 29481.567529: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29595     ksoftirqd/2-26    (   26) [002] d..2 29481.567555: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29596          <idle>-0     (-----) [002] d..1 29481.567565: cpu_idle: state=0 cpu_id=2
29597          <idle>-0     (-----) [002] d.h4 29481.569795: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29598          <idle>-0     (-----) [002] d.h5 29481.569815: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29599          <idle>-0     (-----) [000] .n.1 29481.569825: cpu_idle: state=4294967295 cpu_id=0
29600          <idle>-0     (-----) [000] d..2 29481.569839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29601          <idle>-0     (-----) [002] ...1 29481.569859: cpu_idle: state=4294967295 cpu_id=2
29602          <idle>-0     (-----) [002] d..1 29481.569865: cpu_idle: state=0 cpu_id=2
29603  HwBinder:771_4-20182 (  771) [000] d..2 29481.569887: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29604  HwBinder:771_4-20182 (  771) [000] dn.3 29481.569913: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29605  HwBinder:771_4-20182 (  771) [000] d..2 29481.569923: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29606 cdsp_smem_glink-88    (   88) [000] d..2 29481.569965: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29607  HwBinder:771_4-20182 (  771) [000] d..2 29481.569991: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29608          <idle>-0     (-----) [000] d..1 29481.570009: cpu_idle: state=0 cpu_id=0
29609          <idle>-0     (-----) [002] d.h4 29481.570030: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29610          <idle>-0     (-----) [002] dnh5 29481.570049: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29611          <idle>-0     (-----) [002] .n.1 29481.570060: cpu_idle: state=4294967295 cpu_id=2
29612          <idle>-0     (-----) [002] d..2 29481.570070: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29613 smem_native_cds-87    (   87) [002] d..2 29481.570115: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29614          <idle>-0     (-----) [002] d..1 29481.570124: cpu_idle: state=0 cpu_id=2
29615          <idle>-0     (-----) [002] d.s2 29481.570431: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
29616          <idle>-0     (-----) [002] dns3 29481.570448: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
29617          <idle>-0     (-----) [002] .n.1 29481.570481: cpu_idle: state=4294967295 cpu_id=2
29618          <idle>-0     (-----) [002] d..2 29481.570490: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
29619     rcu_preempt-7     (    7) [002] d..2 29481.570532: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
29620     rcu_preempt-7     (    7) [002] d..3 29481.570549: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
29621     rcu_preempt-7     (    7) [002] d..2 29481.570569: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
29622         rcuop/0-10    (   10) [002] d..2 29481.570578: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
29623         rcuop/0-10    (   10) [002] d..3 29481.570632: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
29624         rcuop/0-10    (   10) [002] d..2 29481.570640: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
29625         rcuop/0-10    (   10) [002] d..3 29481.570655: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
29626         rcuop/0-10    (   10) [002] d..2 29481.570665: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
29627         rcuop/1-21    (   21) [002] d..2 29481.570700: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
29628     rcu_preempt-7     (    7) [002] d..2 29481.570731: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29629          <idle>-0     (-----) [002] d..1 29481.570748: cpu_idle: state=2 cpu_id=2
29630          <idle>-0     (-----) [002] d.h4 29481.571729: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29631          <idle>-0     (-----) [002] d.h5 29481.571751: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29632          <idle>-0     (-----) [000] .n.1 29481.571759: cpu_idle: state=4294967295 cpu_id=0
29633          <idle>-0     (-----) [000] d..2 29481.571772: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29634          <idle>-0     (-----) [002] ...1 29481.571797: cpu_idle: state=4294967295 cpu_id=2
29635          <idle>-0     (-----) [002] d..1 29481.571804: cpu_idle: state=0 cpu_id=2
29636  HwBinder:771_4-20182 (  771) [000] d..2 29481.571872: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29637  HwBinder:771_4-20182 (  771) [000] dn.3 29481.571899: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29638  HwBinder:771_4-20182 (  771) [000] d..2 29481.571910: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29639 cdsp_smem_glink-88    (   88) [000] d..2 29481.571950: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29640  HwBinder:771_4-20182 (  771) [000] d..2 29481.571981: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29641          <idle>-0     (-----) [000] d..1 29481.571999: cpu_idle: state=0 cpu_id=0
29642          <idle>-0     (-----) [002] d.h4 29481.574612: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29643          <idle>-0     (-----) [002] dnh5 29481.574635: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29644          <idle>-0     (-----) [002] .n.1 29481.574646: cpu_idle: state=4294967295 cpu_id=2
29645          <idle>-0     (-----) [002] d..2 29481.574665: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29646 smem_native_cds-87    (   87) [002] d..2 29481.574724: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29647          <idle>-0     (-----) [002] d..2 29481.574731: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29648          <idle>-0     (-----) [002] dn.3 29481.574739: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29649          <idle>-0     (-----) [002] d..2 29481.574749: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29650     ksoftirqd/2-26    (   26) [002] d.s2 29481.574759: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29651     ksoftirqd/2-26    (   26) [002] d.s3 29481.574778: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29652     ksoftirqd/2-26    (   26) [002] d..2 29481.574794: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29653  kworker/u16:10-23868 (23868) [002] .... 29481.574820: clk_set_rate: l3_cluster0_vote_clk 300000000
29654  kworker/u16:10-23868 (23868) [002] .... 29481.574826: clk_set_rate: l3_clk 300000000
29655  kworker/u16:10-23868 (23868) [002] d..2 29481.574934: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29656          <idle>-0     (-----) [002] d..1 29481.574949: cpu_idle: state=0 cpu_id=2
29657          <idle>-0     (-----) [002] d.h4 29481.576658: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29658          <idle>-0     (-----) [002] d.h5 29481.576683: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29659          <idle>-0     (-----) [000] .n.1 29481.576691: cpu_idle: state=4294967295 cpu_id=0
29660          <idle>-0     (-----) [000] d..2 29481.576706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29661          <idle>-0     (-----) [002] ...1 29481.576731: cpu_idle: state=4294967295 cpu_id=2
29662          <idle>-0     (-----) [002] d..1 29481.576737: cpu_idle: state=0 cpu_id=2
29663  HwBinder:771_4-20182 (  771) [000] d..2 29481.576761: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29664  HwBinder:771_4-20182 (  771) [000] dn.3 29481.576788: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29665  HwBinder:771_4-20182 (  771) [000] d..2 29481.576799: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29666 cdsp_smem_glink-88    (   88) [000] d..2 29481.576841: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29667  HwBinder:771_4-20182 (  771) [000] d..2 29481.576868: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29668          <idle>-0     (-----) [000] d..1 29481.576886: cpu_idle: state=2 cpu_id=0
29669          <idle>-0     (-----) [002] d.h4 29481.576910: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29670          <idle>-0     (-----) [002] dnh5 29481.576930: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29671          <idle>-0     (-----) [002] .n.1 29481.576941: cpu_idle: state=4294967295 cpu_id=2
29672          <idle>-0     (-----) [002] d..2 29481.576953: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29673 smem_native_cds-87    (   87) [002] d..2 29481.577002: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29674          <idle>-0     (-----) [002] d..1 29481.577012: cpu_idle: state=0 cpu_id=2
29675          <idle>-0     (-----) [002] d.H3 29481.577212: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29676          <idle>-0     (-----) [002] d.H3 29481.577232: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29677          <idle>-0     (-----) [002] d.H4 29481.577250: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29678          <idle>-0     (-----) [002] d.s2 29481.577259: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
29679          <idle>-0     (-----) [002] dns3 29481.577280: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
29680          <idle>-0     (-----) [002] .n.1 29481.577293: cpu_idle: state=4294967295 cpu_id=2
29681          <idle>-0     (-----) [002] d..2 29481.577305: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
29682     rcu_preempt-7     (    7) [002] d..2 29481.577319: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
29683     rcu_preempt-7     (    7) [002] d..3 29481.577338: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
29684     rcu_preempt-7     (    7) [002] d..2 29481.577351: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
29685         rcuop/0-10    (   10) [002] d..2 29481.577357: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
29686         rcuop/0-10    (   10) [002] d..3 29481.577373: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
29687         rcuop/0-10    (   10) [002] d..2 29481.577383: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
29688         rcuop/1-21    (   21) [002] d..2 29481.577420: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29689          <idle>-0     (-----) [002] d..1 29481.577441: cpu_idle: state=0 cpu_id=2
29690          <idle>-0     (-----) [003] .n.1 29481.577559: cpu_idle: state=4294967295 cpu_id=3
29691          <idle>-0     (-----) [003] d..2 29481.577590: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29692         sugov:0-559   (  559) [003] .... 29481.577623: clk_set_rate: pwrcl_clk 652800000
29693         sugov:0-559   (  559) [003] .... 29481.577636: clk_set_rate: cpu3_pwrcl_clk 748800000
29694         sugov:0-559   (  559) [003] .... 29481.577648: clk_set_rate: cpu2_pwrcl_clk 748800000
29695         sugov:0-559   (  559) [003] .... 29481.577659: clk_set_rate: cpu1_pwrcl_clk 748800000
29696         sugov:0-559   (  559) [003] .... 29481.577670: clk_set_rate: cpu0_pwrcl_clk 652800000
29697         sugov:0-559   (  559) [003] .... 29481.577787: cpu_frequency: state=652800 cpu_id=0
29698         sugov:0-559   (  559) [003] .... 29481.577808: cpu_frequency: state=652800 cpu_id=1
29699         sugov:0-559   (  559) [003] .... 29481.577814: cpu_frequency: state=652800 cpu_id=2
29700         sugov:0-559   (  559) [003] .... 29481.577819: cpu_frequency: state=652800 cpu_id=3
29701         sugov:0-559   (  559) [003] d..2 29481.577874: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29702          <idle>-0     (-----) [003] d..1 29481.577896: cpu_idle: state=2 cpu_id=3
29703          <idle>-0     (-----) [002] d.h4 29481.578099: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29704          <idle>-0     (-----) [002] d.h5 29481.578119: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29705          <idle>-0     (-----) [002] ...1 29481.578171: cpu_idle: state=4294967295 cpu_id=2
29706          <idle>-0     (-----) [002] d..1 29481.578179: cpu_idle: state=0 cpu_id=2
29707          <idle>-0     (-----) [006] dnh2 29481.578277: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29708          <idle>-0     (-----) [006] .n.1 29481.578287: cpu_idle: state=4294967295 cpu_id=6
29709          <idle>-0     (-----) [006] d..2 29481.578299: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29710         sugov:4-560   (  560) [006] d..2 29481.578321: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29711          <idle>-0     (-----) [006] d..1 29481.578331: cpu_idle: state=2 cpu_id=6
29712          <idle>-0     (-----) [000] .n.1 29481.578439: cpu_idle: state=4294967295 cpu_id=0
29713          <idle>-0     (-----) [000] d..2 29481.578473: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29714  HwBinder:771_4-20182 (  771) [000] d..2 29481.578560: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29715  HwBinder:771_4-20182 (  771) [000] dn.3 29481.578604: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29716  HwBinder:771_4-20182 (  771) [000] d..2 29481.578617: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29717 cdsp_smem_glink-88    (   88) [000] d..2 29481.578667: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29718  HwBinder:771_4-20182 (  771) [000] d..2 29481.578700: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29719          <idle>-0     (-----) [000] d..1 29481.578724: cpu_idle: state=0 cpu_id=0
29720          <idle>-0     (-----) [002] d.h4 29481.581170: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29721          <idle>-0     (-----) [002] dnh5 29481.581197: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29722          <idle>-0     (-----) [002] .n.1 29481.581209: cpu_idle: state=4294967295 cpu_id=2
29723          <idle>-0     (-----) [002] d..2 29481.581232: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29724 smem_native_cds-87    (   87) [002] d..2 29481.581300: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29725          <idle>-0     (-----) [002] d..2 29481.581307: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29726          <idle>-0     (-----) [002] dn.3 29481.581321: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29727          <idle>-0     (-----) [002] d..2 29481.581331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29728     ksoftirqd/2-26    (   26) [002] d..2 29481.581359: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29729          <idle>-0     (-----) [002] d..1 29481.581378: cpu_idle: state=2 cpu_id=2
29730          <idle>-0     (-----) [002] d.h4 29481.583836: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29731          <idle>-0     (-----) [002] d.h5 29481.583869: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29732          <idle>-0     (-----) [000] .n.1 29481.583878: cpu_idle: state=4294967295 cpu_id=0
29733          <idle>-0     (-----) [000] d..2 29481.583897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29734          <idle>-0     (-----) [002] d..2 29481.583923: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29735          <idle>-0     (-----) [002] dn.3 29481.583934: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29736          <idle>-0     (-----) [002] .n.1 29481.583940: cpu_idle: state=4294967295 cpu_id=2
29737  HwBinder:771_4-20182 (  771) [000] d..2 29481.583955: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29738          <idle>-0     (-----) [002] d..2 29481.583967: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29739     ksoftirqd/2-26    (   26) [002] d.s2 29481.583979: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29740     ksoftirqd/2-26    (   26) [002] d.s3 29481.584010: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29741  HwBinder:771_4-20182 (  771) [000] d..3 29481.584032: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29742     ksoftirqd/2-26    (   26) [002] d..2 29481.584061: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29743  HwBinder:771_4-20182 (  771) [000] d..2 29481.584106: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29744 cdsp_smem_glink-88    (   88) [002] d..2 29481.584112: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29745     ksoftirqd/2-26    (   26) [002] d..2 29481.584125: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29746          <idle>-0     (-----) [000] d..1 29481.584129: cpu_idle: state=0 cpu_id=0
29747  kworker/u16:10-23868 (23868) [002] d..2 29481.584251: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29748          <idle>-0     (-----) [002] d..1 29481.584280: cpu_idle: state=0 cpu_id=2
29749          <idle>-0     (-----) [002] d.h4 29481.586864: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29750          <idle>-0     (-----) [002] dnh5 29481.586889: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29751          <idle>-0     (-----) [002] .n.1 29481.586906: cpu_idle: state=4294967295 cpu_id=2
29752          <idle>-0     (-----) [002] d..2 29481.586922: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29753 smem_native_cds-87    (   87) [002] d..2 29481.586974: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29754          <idle>-0     (-----) [002] d..1 29481.586994: cpu_idle: state=0 cpu_id=2
29755          <idle>-0     (-----) [002] d.h4 29481.589228: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29756          <idle>-0     (-----) [002] d.h5 29481.589254: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29757          <idle>-0     (-----) [000] .n.1 29481.589263: cpu_idle: state=4294967295 cpu_id=0
29758          <idle>-0     (-----) [000] d..2 29481.589282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29759          <idle>-0     (-----) [002] d..2 29481.589301: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29760          <idle>-0     (-----) [002] dn.3 29481.589313: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29761          <idle>-0     (-----) [002] .n.1 29481.589319: cpu_idle: state=4294967295 cpu_id=2
29762          <idle>-0     (-----) [002] d..2 29481.589339: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29763     ksoftirqd/2-26    (   26) [002] d..2 29481.589381: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29764          <idle>-0     (-----) [002] d..1 29481.589399: cpu_idle: state=0 cpu_id=2
29765  HwBinder:771_4-20182 (  771) [000] d..2 29481.589549: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29766  HwBinder:771_4-20182 (  771) [000] dn.3 29481.589615: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29767  HwBinder:771_4-20182 (  771) [000] d..2 29481.589629: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29768 cdsp_smem_glink-88    (   88) [000] d..2 29481.589681: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29769  HwBinder:771_4-20182 (  771) [000] d..2 29481.589714: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29770          <idle>-0     (-----) [000] d..1 29481.589738: cpu_idle: state=0 cpu_id=0
29771          <idle>-0     (-----) [002] d.h4 29481.592458: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29772          <idle>-0     (-----) [002] dnh5 29481.592482: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29773          <idle>-0     (-----) [002] .n.1 29481.592497: cpu_idle: state=4294967295 cpu_id=2
29774          <idle>-0     (-----) [002] d..2 29481.592514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29775 smem_native_cds-87    (   87) [002] d..2 29481.592574: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29776          <idle>-0     (-----) [002] d..2 29481.592580: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29777          <idle>-0     (-----) [002] dn.3 29481.592592: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29778          <idle>-0     (-----) [002] d..2 29481.592603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29779     ksoftirqd/2-26    (   26) [002] d..2 29481.592630: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29780          <idle>-0     (-----) [002] d..1 29481.592652: cpu_idle: state=0 cpu_id=2
29781          <idle>-0     (-----) [002] d.h4 29481.595542: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29782          <idle>-0     (-----) [002] d.h5 29481.595566: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29783          <idle>-0     (-----) [000] .n.1 29481.595575: cpu_idle: state=4294967295 cpu_id=0
29784          <idle>-0     (-----) [000] d..2 29481.595594: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29785          <idle>-0     (-----) [002] d..2 29481.595613: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29786          <idle>-0     (-----) [002] dn.3 29481.595624: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29787          <idle>-0     (-----) [002] .n.1 29481.595631: cpu_idle: state=4294967295 cpu_id=2
29788          <idle>-0     (-----) [002] d..2 29481.595650: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29789  HwBinder:771_4-20182 (  771) [000] d..2 29481.595655: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29790     ksoftirqd/2-26    (   26) [002] d.s2 29481.595659: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29791     ksoftirqd/2-26    (   26) [002] d.s3 29481.595682: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29792     ksoftirqd/2-26    (   26) [002] d..2 29481.595703: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29793  HwBinder:771_4-20182 (  771) [000] d..3 29481.595736: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29794  kworker/u16:10-23868 (23868) [002] d..2 29481.595761: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29795  HwBinder:771_4-20182 (  771) [000] d..2 29481.595798: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29796 cdsp_smem_glink-88    (   88) [002] d..2 29481.595811: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29797          <idle>-0     (-----) [000] d..1 29481.595820: cpu_idle: state=0 cpu_id=0
29798  kworker/u16:10-23868 (23868) [002] d.h3 29481.595877: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29799  kworker/u16:10-23868 (23868) [002] dnh4 29481.595903: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29800  kworker/u16:10-23868 (23868) [002] d..2 29481.595924: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29801 smem_native_cds-87    (   87) [002] d..2 29481.595961: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29802  kworker/u16:10-23868 (23868) [002] d..2 29481.596043: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29803          <idle>-0     (-----) [002] d..1 29481.596068: cpu_idle: state=0 cpu_id=2
29804          <idle>-0     (-----) [002] d.h4 29481.598337: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29805          <idle>-0     (-----) [002] d.h5 29481.598369: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29806          <idle>-0     (-----) [000] .n.1 29481.598378: cpu_idle: state=4294967295 cpu_id=0
29807          <idle>-0     (-----) [000] d..2 29481.598397: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29808          <idle>-0     (-----) [002] d..2 29481.598422: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29809          <idle>-0     (-----) [002] dn.3 29481.598436: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29810  HwBinder:771_4-20182 (  771) [000] d..2 29481.598456: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29811  HwBinder:771_4-20182 (  771) [000] d..3 29481.598526: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29812          <idle>-0     (-----) [002] dnH3 29481.598539: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29813          <idle>-0     (-----) [002] dnH3 29481.598558: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29814  HwBinder:771_4-20182 (  771) [000] d..2 29481.598568: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29815          <idle>-0     (-----) [002] dnH4 29481.598578: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29816          <idle>-0     (-----) [000] d..1 29481.598590: cpu_idle: state=0 cpu_id=0
29817          <idle>-0     (-----) [002] .n.1 29481.598596: cpu_idle: state=4294967295 cpu_id=2
29818          <idle>-0     (-----) [002] d..2 29481.598622: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29819 cdsp_smem_glink-88    (   88) [002] d..2 29481.598673: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29820     ksoftirqd/2-26    (   26) [002] d..2 29481.598706: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29821          <idle>-0     (-----) [002] d.h5 29481.598737: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29822          <idle>-0     (-----) [002] dnh6 29481.598763: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29823          <idle>-0     (-----) [002] d..2 29481.598782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29824 smem_native_cds-87    (   87) [002] d..2 29481.598829: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29825          <idle>-0     (-----) [002] d..1 29481.598854: cpu_idle: state=0 cpu_id=2
29826          <idle>-0     (-----) [003] .n.1 29481.598889: cpu_idle: state=4294967295 cpu_id=3
29827          <idle>-0     (-----) [003] d..2 29481.598918: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29828         sugov:0-559   (  559) [003] d..2 29481.598967: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29829          <idle>-0     (-----) [003] d..1 29481.598984: cpu_idle: state=2 cpu_id=3
29830          <idle>-0     (-----) [006] dnh2 29481.599600: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29831          <idle>-0     (-----) [006] .n.1 29481.599609: cpu_idle: state=4294967295 cpu_id=6
29832          <idle>-0     (-----) [006] d..2 29481.599621: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29833         sugov:4-560   (  560) [006] d..2 29481.599644: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29834          <idle>-0     (-----) [006] d..1 29481.599654: cpu_idle: state=2 cpu_id=6
29835          <idle>-0     (-----) [002] d.h4 29481.600749: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29836          <idle>-0     (-----) [002] d.h5 29481.600773: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29837          <idle>-0     (-----) [000] .n.1 29481.600781: cpu_idle: state=4294967295 cpu_id=0
29838          <idle>-0     (-----) [000] d..2 29481.600800: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29839          <idle>-0     (-----) [002] d..2 29481.600822: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29840          <idle>-0     (-----) [002] dn.3 29481.600832: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29841          <idle>-0     (-----) [002] .n.1 29481.600838: cpu_idle: state=4294967295 cpu_id=2
29842          <idle>-0     (-----) [002] d..2 29481.600858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29843     ksoftirqd/2-26    (   26) [002] d..2 29481.600900: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29844          <idle>-0     (-----) [002] d..1 29481.600917: cpu_idle: state=0 cpu_id=2
29845  HwBinder:771_4-20182 (  771) [000] d.s2 29481.603795: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29846  HwBinder:771_4-20182 (  771) [000] d.s3 29481.603861: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29847          <idle>-0     (-----) [002] ...1 29481.604366: cpu_idle: state=4294967295 cpu_id=2
29848          <idle>-0     (-----) [002] d..1 29481.604372: cpu_idle: state=2 cpu_id=2
29849  HwBinder:771_4-20182 (  771) [000] d..2 29481.607124: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29850  kworker/u16:10-23868 (23868) [000] d..2 29481.607454: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29851          <idle>-0     (-----) [003] d.s3 29481.608364: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29852          <idle>-0     (-----) [003] d.s4 29481.608410: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29853          <idle>-0     (-----) [003] dns4 29481.608421: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29854          <idle>-0     (-----) [003] .n.1 29481.608435: cpu_idle: state=4294967295 cpu_id=3
29855          <idle>-0     (-----) [003] d..2 29481.608463: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29856  kworker/u16:10-23868 (23868) [003] .... 29481.608600: clk_set_rate: l3_cluster0_vote_clk 403200000
29857  kworker/u16:10-23868 (23868) [003] .... 29481.608607: clk_set_rate: l3_clk 403200000
29858  kworker/u16:10-23868 (23868) [003] d..2 29481.608684: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29859          <idle>-0     (-----) [003] d..1 29481.608706: cpu_idle: state=2 cpu_id=3
29860  HwBinder:771_4-20182 (  771) [000] d.s2 29481.613759: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29861  HwBinder:771_4-20182 (  771) [000] d.s3 29481.613813: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29862  HwBinder:771_4-20182 (  771) [000] dnH3 29481.617177: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29863  HwBinder:771_4-20182 (  771) [000] dnH3 29481.617201: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29864  HwBinder:771_4-20182 (  771) [000] dnH4 29481.617220: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29865  HwBinder:771_4-20182 (  771) [000] dns3 29481.617239: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
29866  HwBinder:771_4-20182 (  771) [000] dns4 29481.617255: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
29867  HwBinder:771_4-20182 (  771) [000] d..2 29481.617274: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
29868     kworker/0:0-13450 (13450) [000] d..2 29481.617322: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29869          <idle>-0     (-----) [003] .n.1 29481.617510: cpu_idle: state=4294967295 cpu_id=3
29870          <idle>-0     (-----) [003] d..2 29481.617540: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29871         sugov:0-559   (  559) [003] .... 29481.617575: clk_set_rate: pwrcl_clk 1228800000
29872  kworker/u16:10-23868 (23868) [000] d..2 29481.617588: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29873         sugov:0-559   (  559) [003] d.s1 29481.617616: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
29874         sugov:0-559   (  559) [003] d.s2 29481.617645: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
29875         sugov:0-559   (  559) [003] .... 29481.617662: clk_set_rate: cpu3_pwrcl_clk 652800000
29876         sugov:0-559   (  559) [003] .... 29481.617676: clk_set_rate: cpu2_pwrcl_clk 652800000
29877         sugov:0-559   (  559) [003] .... 29481.617687: clk_set_rate: cpu1_pwrcl_clk 652800000
29878         sugov:0-559   (  559) [003] .... 29481.617696: clk_set_rate: cpu0_pwrcl_clk 1228800000
29879         sugov:0-559   (  559) [003] .... 29481.617708: cpu_frequency: state=1228800 cpu_id=0
29880         sugov:0-559   (  559) [003] .... 29481.617729: cpu_frequency: state=1228800 cpu_id=1
29881         sugov:0-559   (  559) [003] .... 29481.617736: cpu_frequency: state=1228800 cpu_id=2
29882         sugov:0-559   (  559) [003] .... 29481.617741: cpu_frequency: state=1228800 cpu_id=3
29883         sugov:0-559   (  559) [003] d..2 29481.617765: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
29884     ksoftirqd/3-34    (   34) [003] d.s2 29481.617785: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
29885     ksoftirqd/3-34    (   34) [003] d.s3 29481.617828: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29886     ksoftirqd/3-34    (   34) [003] d.s3 29481.617836: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29887     ksoftirqd/3-34    (   34) [003] d..2 29481.617849: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29888  kworker/u16:10-23868 (23868) [003] .... 29481.617914: clk_set_rate: l3_cluster0_vote_clk 576000000
29889  kworker/u16:10-23868 (23868) [003] .... 29481.617919: clk_set_rate: l3_clk 576000000
29890  kworker/u16:10-23868 (23868) [003] d..2 29481.618014: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29891          <idle>-0     (-----) [003] d..1 29481.618028: cpu_idle: state=2 cpu_id=3
29892          <idle>-0     (-----) [006] dnh2 29481.618162: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
29893          <idle>-0     (-----) [006] .n.1 29481.618171: cpu_idle: state=4294967295 cpu_id=6
29894          <idle>-0     (-----) [006] d..2 29481.618182: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
29895         sugov:4-560   (  560) [006] d..2 29481.618201: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29896          <idle>-0     (-----) [006] d..1 29481.618210: cpu_idle: state=2 cpu_id=6
29897          <idle>-0     (-----) [001] d.h2 29481.623871: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
29898          <idle>-0     (-----) [001] dnh3 29481.623892: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
29899          <idle>-0     (-----) [001] .n.1 29481.623902: cpu_idle: state=4294967295 cpu_id=1
29900          <idle>-0     (-----) [001] d..2 29481.623919: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
29901 irq/79-1436400.-24613 (24613) [001] d..2 29481.624106: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
29902          <idle>-0     (-----) [001] d..1 29481.624118: cpu_idle: state=2 cpu_id=1
29903          <idle>-0     (-----) [003] d.s3 29481.624361: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
29904          <idle>-0     (-----) [003] d.s4 29481.624373: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
29905          <idle>-0     (-----) [003] ...1 29481.624385: cpu_idle: state=4294967295 cpu_id=3
29906          <idle>-0     (-----) [003] d..1 29481.624392: cpu_idle: state=2 cpu_id=3
29907          <idle>-0     (-----) [001] .n.1 29481.624604: cpu_idle: state=4294967295 cpu_id=1
29908          <idle>-0     (-----) [001] d..2 29481.624618: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
29909 irq/79-1436400.-24613 (24613) [001] d..2 29481.624663: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29910          <idle>-0     (-----) [001] d..1 29481.624673: cpu_idle: state=2 cpu_id=1
29911  HwBinder:771_4-20182 (  771) [000] d.s2 29481.627080: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29912  HwBinder:771_4-20182 (  771) [000] d.s3 29481.627115: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29913          <idle>-0     (-----) [003] .n.1 29481.627350: cpu_idle: state=4294967295 cpu_id=3
29914          <idle>-0     (-----) [003] d..2 29481.627372: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29915  kworker/u16:10-23868 (23868) [003] d..2 29481.627576: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
29916          <idle>-0     (-----) [003] d..1 29481.627591: cpu_idle: state=0 cpu_id=3
29917          <idle>-0     (-----) [003] d.s3 29481.628222: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29918          <idle>-0     (-----) [003] d.s4 29481.628231: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
29919          <idle>-0     (-----) [003] dns4 29481.628236: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29920          <idle>-0     (-----) [003] .n.1 29481.628243: cpu_idle: state=4294967295 cpu_id=3
29921          <idle>-0     (-----) [003] d..2 29481.628252: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29922  kworker/u16:10-23868 (23868) [003] .... 29481.628326: clk_set_rate: l3_cluster0_vote_clk 940800000
29923  kworker/u16:10-23868 (23868) [003] .... 29481.628330: clk_set_rate: l3_clk 940800000
29924  kworker/u16:10-23868 (23868) [003] d..2 29481.628364: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29925          <idle>-0     (-----) [003] d..1 29481.628376: cpu_idle: state=0 cpu_id=3
29926  HwBinder:771_4-20182 (  771) [000] d..2 29481.630223: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
29927  HwBinder:771_4-20182 (  771) [000] d..3 29481.630266: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29928          <idle>-0     (-----) [003] .n.1 29481.630272: cpu_idle: state=4294967295 cpu_id=3
29929          <idle>-0     (-----) [003] d..2 29481.630281: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29930  HwBinder:771_4-20182 (  771) [000] d..2 29481.630288: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29931          <idle>-0     (-----) [000] d..1 29481.630306: cpu_idle: state=2 cpu_id=0
29932 cdsp_smem_glink-88    (   88) [003] d..2 29481.630318: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29933          <idle>-0     (-----) [003] d..1 29481.630327: cpu_idle: state=0 cpu_id=3
29934          <idle>-0     (-----) [002] d.h4 29481.631374: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29935          <idle>-0     (-----) [002] dnh5 29481.631394: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29936          <idle>-0     (-----) [002] .n.1 29481.631404: cpu_idle: state=4294967295 cpu_id=2
29937          <idle>-0     (-----) [002] d..2 29481.631417: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29938 smem_native_cds-87    (   87) [002] d..2 29481.631461: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29939          <idle>-0     (-----) [002] d..2 29481.631465: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29940          <idle>-0     (-----) [002] dn.3 29481.631475: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29941          <idle>-0     (-----) [002] d..2 29481.631482: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29942     ksoftirqd/2-26    (   26) [002] d..2 29481.631499: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29943          <idle>-0     (-----) [002] d..1 29481.631512: cpu_idle: state=0 cpu_id=2
29944          <idle>-0     (-----) [002] d..2 29481.635006: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29945          <idle>-0     (-----) [002] dn.3 29481.635013: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29946          <idle>-0     (-----) [002] .n.1 29481.635015: cpu_idle: state=4294967295 cpu_id=2
29947          <idle>-0     (-----) [002] d..2 29481.635024: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29948     ksoftirqd/2-26    (   26) [002] d..2 29481.635040: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29949          <idle>-0     (-----) [002] d..1 29481.635048: cpu_idle: state=2 cpu_id=2
29950          <idle>-0     (-----) [002] d.h4 29481.635528: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29951          <idle>-0     (-----) [002] d.h5 29481.635545: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29952          <idle>-0     (-----) [002] ...1 29481.635577: cpu_idle: state=4294967295 cpu_id=2
29953          <idle>-0     (-----) [002] d..1 29481.635584: cpu_idle: state=0 cpu_id=2
29954          <idle>-0     (-----) [000] .n.1 29481.635707: cpu_idle: state=4294967295 cpu_id=0
29955          <idle>-0     (-----) [000] d..2 29481.635724: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29956  HwBinder:771_4-20182 (  771) [000] d..2 29481.636266: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29957  HwBinder:771_4-20182 (  771) [000] dn.3 29481.636295: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29958  HwBinder:771_4-20182 (  771) [000] d..2 29481.636302: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
29959 cdsp_smem_glink-88    (   88) [000] d..2 29481.636328: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29960          <idle>-0     (-----) [003] ...1 29481.636331: cpu_idle: state=4294967295 cpu_id=3
29961          <idle>-0     (-----) [003] d..1 29481.636334: cpu_idle: state=2 cpu_id=3
29962  HwBinder:771_4-20182 (  771) [000] d..2 29481.636343: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29963          <idle>-0     (-----) [000] d..1 29481.636354: cpu_idle: state=2 cpu_id=0
29964          <idle>-0     (-----) [002] d.h4 29481.636865: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29965          <idle>-0     (-----) [002] dnh5 29481.636878: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
29966          <idle>-0     (-----) [002] .n.1 29481.636885: cpu_idle: state=4294967295 cpu_id=2
29967          <idle>-0     (-----) [002] d..2 29481.636894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
29968 smem_native_cds-87    (   87) [002] d..2 29481.636923: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29969          <idle>-0     (-----) [002] d..1 29481.636932: cpu_idle: state=0 cpu_id=2
29970          <idle>-0     (-----) [002] d.h4 29481.637479: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29971          <idle>-0     (-----) [002] d.h5 29481.637494: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
29972          <idle>-0     (-----) [002] d..2 29481.637517: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29973          <idle>-0     (-----) [002] dn.3 29481.637524: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
29974          <idle>-0     (-----) [002] dnH3 29481.637591: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
29975          <idle>-0     (-----) [002] dnH3 29481.637605: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
29976          <idle>-0     (-----) [002] dnH4 29481.637616: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
29977          <idle>-0     (-----) [002] dns3 29481.637624: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
29978          <idle>-0     (-----) [000] .n.1 29481.637647: cpu_idle: state=4294967295 cpu_id=0
29979          <idle>-0     (-----) [002] dns4 29481.637651: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
29980          <idle>-0     (-----) [002] .n.1 29481.637661: cpu_idle: state=4294967295 cpu_id=2
29981          <idle>-0     (-----) [000] d..2 29481.637664: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
29982          <idle>-0     (-----) [002] d..2 29481.637673: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
29983     ksoftirqd/2-26    (   26) [002] d..2 29481.637682: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
29984  HwBinder:771_4-20182 (  771) [000] d..2 29481.637723: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
29985  kworker/u16:10-23868 (23868) [002] .... 29481.637724: clk_set_rate: l3_cluster0_vote_clk 403200000
29986  kworker/u16:10-23868 (23868) [002] .... 29481.637728: clk_set_rate: l3_clk 403200000
29987  HwBinder:771_4-20182 (  771) [000] d..3 29481.637770: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
29988          <idle>-0     (-----) [003] .n.1 29481.637794: cpu_idle: state=4294967295 cpu_id=3
29989  HwBinder:771_4-20182 (  771) [000] d..2 29481.637803: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29990          <idle>-0     (-----) [003] d..2 29481.637815: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
29991          <idle>-0     (-----) [000] d..1 29481.637839: cpu_idle: state=0 cpu_id=0
29992         sugov:0-559   (  559) [003] .... 29481.637851: clk_set_rate: pwrcl_clk 1612800000
29993          <idle>-0     (-----) [000] ...1 29481.637854: cpu_idle: state=4294967295 cpu_id=0
29994          <idle>-0     (-----) [000] d..1 29481.637857: cpu_idle: state=0 cpu_id=0
29995         sugov:0-559   (  559) [003] .... 29481.637873: clk_set_rate: cpu3_pwrcl_clk 1228800000
29996         sugov:0-559   (  559) [003] .... 29481.637889: clk_set_rate: cpu2_pwrcl_clk 1228800000
29997         sugov:0-559   (  559) [003] .... 29481.637897: clk_set_rate: cpu1_pwrcl_clk 1228800000
29998         sugov:0-559   (  559) [003] .... 29481.637907: clk_set_rate: cpu0_pwrcl_clk 1612800000
29999         sugov:0-559   (  559) [003] .... 29481.637916: cpu_frequency: state=1612800 cpu_id=0
30000         sugov:0-559   (  559) [003] .... 29481.637939: cpu_frequency: state=1612800 cpu_id=1
30001         sugov:0-559   (  559) [003] .... 29481.637943: cpu_frequency: state=1612800 cpu_id=2
30002         sugov:0-559   (  559) [003] .... 29481.637946: cpu_frequency: state=1612800 cpu_id=3
30003         sugov:0-559   (  559) [003] d..2 29481.637966: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30004 cdsp_smem_glink-88    (   88) [003] d..2 29481.638011: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30005          <idle>-0     (-----) [003] d..1 29481.638027: cpu_idle: state=0 cpu_id=3
30006  kworker/u16:10-23868 (23868) [002] d..2 29481.638035: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30007          <idle>-0     (-----) [002] d..1 29481.638048: cpu_idle: state=0 cpu_id=2
30008          <idle>-0     (-----) [003] d.s3 29481.638072: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30009          <idle>-0     (-----) [003] d.s4 29481.638101: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30010          <idle>-0     (-----) [003] dns4 29481.638107: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30011          <idle>-0     (-----) [003] .n.1 29481.638115: cpu_idle: state=4294967295 cpu_id=3
30012          <idle>-0     (-----) [003] d..2 29481.638123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30013  kworker/u16:10-23868 (23868) [003] d..2 29481.638151: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30014          <idle>-0     (-----) [003] d..1 29481.638160: cpu_idle: state=0 cpu_id=3
30015          <idle>-0     (-----) [006] dnh2 29481.638427: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
30016          <idle>-0     (-----) [006] .n.1 29481.638437: cpu_idle: state=4294967295 cpu_id=6
30017          <idle>-0     (-----) [006] d..2 29481.638450: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30018         sugov:4-560   (  560) [006] d..2 29481.638473: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30019          <idle>-0     (-----) [006] d..1 29481.638484: cpu_idle: state=2 cpu_id=6
30020          <idle>-0     (-----) [002] d.h4 29481.639117: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30021          <idle>-0     (-----) [002] dnh5 29481.639133: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30022          <idle>-0     (-----) [002] .n.1 29481.639143: cpu_idle: state=4294967295 cpu_id=2
30023          <idle>-0     (-----) [002] d..2 29481.639152: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30024 smem_native_cds-87    (   87) [002] d..2 29481.639177: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30025          <idle>-0     (-----) [002] d..1 29481.639186: cpu_idle: state=0 cpu_id=2
30026          <idle>-0     (-----) [002] d.h4 29481.640234: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30027          <idle>-0     (-----) [002] d.h5 29481.640248: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30028          <idle>-0     (-----) [000] .n.1 29481.640253: cpu_idle: state=4294967295 cpu_id=0
30029          <idle>-0     (-----) [000] d..2 29481.640262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30030          <idle>-0     (-----) [002] ...1 29481.640277: cpu_idle: state=4294967295 cpu_id=2
30031          <idle>-0     (-----) [002] d..1 29481.640281: cpu_idle: state=0 cpu_id=2
30032  HwBinder:771_4-20182 (  771) [000] d..2 29481.640295: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
30033  HwBinder:771_4-20182 (  771) [000] d..3 29481.640330: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30034          <idle>-0     (-----) [002] .n.1 29481.640335: cpu_idle: state=4294967295 cpu_id=2
30035          <idle>-0     (-----) [002] d..2 29481.640345: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30036  HwBinder:771_4-20182 (  771) [000] d..2 29481.640349: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30037          <idle>-0     (-----) [000] d..1 29481.640360: cpu_idle: state=0 cpu_id=0
30038 cdsp_smem_glink-88    (   88) [002] d..2 29481.640380: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30039          <idle>-0     (-----) [002] d..1 29481.640389: cpu_idle: state=0 cpu_id=2
30040          <idle>-0     (-----) [002] d.h4 29481.640418: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30041          <idle>-0     (-----) [002] dnh5 29481.640426: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30042          <idle>-0     (-----) [002] .n.1 29481.640448: cpu_idle: state=4294967295 cpu_id=2
30043          <idle>-0     (-----) [002] d..2 29481.640457: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30044 smem_native_cds-87    (   87) [002] d..2 29481.640487: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30045          <idle>-0     (-----) [002] d..2 29481.640490: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30046          <idle>-0     (-----) [002] dn.3 29481.640495: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30047          <idle>-0     (-----) [002] d..2 29481.640501: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30048     ksoftirqd/2-26    (   26) [002] d..2 29481.640517: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30049          <idle>-0     (-----) [002] d..1 29481.640525: cpu_idle: state=0 cpu_id=2
30050          <idle>-0     (-----) [002] d.h4 29481.641165: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30051          <idle>-0     (-----) [002] d.h5 29481.641177: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30052          <idle>-0     (-----) [000] .n.1 29481.641184: cpu_idle: state=4294967295 cpu_id=0
30053          <idle>-0     (-----) [000] d..2 29481.641194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30054          <idle>-0     (-----) [002] ...1 29481.641206: cpu_idle: state=4294967295 cpu_id=2
30055          <idle>-0     (-----) [002] d..1 29481.641209: cpu_idle: state=0 cpu_id=2
30056  HwBinder:771_4-20182 (  771) [000] d..2 29481.641226: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30057  HwBinder:771_4-20182 (  771) [000] d..3 29481.641241: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30058          <idle>-0     (-----) [002] .n.1 29481.641246: cpu_idle: state=4294967295 cpu_id=2
30059          <idle>-0     (-----) [002] d..2 29481.641255: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30060  HwBinder:771_4-20182 (  771) [000] d..2 29481.641258: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30061          <idle>-0     (-----) [000] d..1 29481.641268: cpu_idle: state=0 cpu_id=0
30062 cdsp_smem_glink-88    (   88) [002] d..2 29481.641291: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30063          <idle>-0     (-----) [002] d..1 29481.641298: cpu_idle: state=0 cpu_id=2
30064          <idle>-0     (-----) [002] d.h4 29481.641321: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30065          <idle>-0     (-----) [002] dnh5 29481.641332: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30066          <idle>-0     (-----) [002] .n.1 29481.641341: cpu_idle: state=4294967295 cpu_id=2
30067          <idle>-0     (-----) [002] d..2 29481.641347: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30068 smem_native_cds-87    (   87) [002] d..2 29481.641372: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30069          <idle>-0     (-----) [002] d..1 29481.641380: cpu_idle: state=0 cpu_id=2
30070          <idle>-0     (-----) [002] d.h4 29481.642159: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30071          <idle>-0     (-----) [002] d.h5 29481.642172: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30072          <idle>-0     (-----) [000] .n.1 29481.642178: cpu_idle: state=4294967295 cpu_id=0
30073          <idle>-0     (-----) [000] d..2 29481.642187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30074          <idle>-0     (-----) [002] ...1 29481.642200: cpu_idle: state=4294967295 cpu_id=2
30075          <idle>-0     (-----) [002] d..1 29481.642203: cpu_idle: state=0 cpu_id=2
30076  HwBinder:771_4-20182 (  771) [000] d..2 29481.642216: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30077  HwBinder:771_4-20182 (  771) [000] d..3 29481.642230: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30078          <idle>-0     (-----) [002] .n.1 29481.642235: cpu_idle: state=4294967295 cpu_id=2
30079          <idle>-0     (-----) [002] d..2 29481.642245: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30080  HwBinder:771_4-20182 (  771) [000] d..2 29481.642246: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30081          <idle>-0     (-----) [000] d..1 29481.642256: cpu_idle: state=0 cpu_id=0
30082 cdsp_smem_glink-88    (   88) [002] d..2 29481.642280: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30083          <idle>-0     (-----) [002] d..1 29481.642289: cpu_idle: state=0 cpu_id=2
30084          <idle>-0     (-----) [002] d.h4 29481.642308: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30085          <idle>-0     (-----) [002] dnh5 29481.642316: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30086          <idle>-0     (-----) [002] .n.1 29481.642323: cpu_idle: state=4294967295 cpu_id=2
30087          <idle>-0     (-----) [002] d..2 29481.642332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30088 smem_native_cds-87    (   87) [002] d..2 29481.642356: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30089          <idle>-0     (-----) [002] d..1 29481.642364: cpu_idle: state=0 cpu_id=2
30090          <idle>-0     (-----) [002] d.h4 29481.643150: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30091          <idle>-0     (-----) [002] d.h5 29481.643164: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30092          <idle>-0     (-----) [000] .n.1 29481.643170: cpu_idle: state=4294967295 cpu_id=0
30093          <idle>-0     (-----) [000] d..2 29481.643178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30094          <idle>-0     (-----) [002] ...1 29481.643194: cpu_idle: state=4294967295 cpu_id=2
30095          <idle>-0     (-----) [002] d..1 29481.643197: cpu_idle: state=0 cpu_id=2
30096  HwBinder:771_4-20182 (  771) [000] d..2 29481.643206: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30097  HwBinder:771_4-20182 (  771) [000] dn.3 29481.643237: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30098  HwBinder:771_4-20182 (  771) [000] d..2 29481.643243: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30099 cdsp_smem_glink-88    (   88) [000] d..2 29481.643274: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30100  HwBinder:771_4-20182 (  771) [000] d..2 29481.643287: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30101          <idle>-0     (-----) [000] d..1 29481.643297: cpu_idle: state=0 cpu_id=0
30102          <idle>-0     (-----) [002] d.h4 29481.643309: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30103          <idle>-0     (-----) [002] dnh5 29481.643316: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30104          <idle>-0     (-----) [002] .n.1 29481.643323: cpu_idle: state=4294967295 cpu_id=2
30105          <idle>-0     (-----) [002] d..2 29481.643331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30106 smem_native_cds-87    (   87) [002] d..2 29481.643357: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30107          <idle>-0     (-----) [002] d..1 29481.643365: cpu_idle: state=0 cpu_id=2
30108          <idle>-0     (-----) [002] d.h4 29481.644131: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30109          <idle>-0     (-----) [002] d.h5 29481.644143: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30110          <idle>-0     (-----) [000] .n.1 29481.644149: cpu_idle: state=4294967295 cpu_id=0
30111          <idle>-0     (-----) [000] d..2 29481.644159: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30112          <idle>-0     (-----) [003] d..2 29481.644164: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30113          <idle>-0     (-----) [002] ...1 29481.644170: cpu_idle: state=4294967295 cpu_id=2
30114          <idle>-0     (-----) [002] d..1 29481.644173: cpu_idle: state=0 cpu_id=2
30115          <idle>-0     (-----) [003] dn.3 29481.644176: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30116          <idle>-0     (-----) [003] .n.1 29481.644180: cpu_idle: state=4294967295 cpu_id=3
30117          <idle>-0     (-----) [003] d..2 29481.644189: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
30118  HwBinder:771_4-20182 (  771) [000] d..2 29481.644193: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30119     ksoftirqd/3-34    (   34) [003] d..2 29481.644222: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30120  HwBinder:771_4-20182 (  771) [000] d..3 29481.644232: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
30121          <idle>-0     (-----) [003] d..2 29481.644238: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30122  HwBinder:771_4-20182 (  771) [000] d..2 29481.644256: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30123          <idle>-0     (-----) [000] d..1 29481.644267: cpu_idle: state=0 cpu_id=0
30124 cdsp_smem_glink-88    (   88) [003] d..2 29481.644277: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30125          <idle>-0     (-----) [003] d..1 29481.644284: cpu_idle: state=2 cpu_id=3
30126          <idle>-0     (-----) [002] d.h4 29481.644305: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30127          <idle>-0     (-----) [002] dnh5 29481.644316: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30128          <idle>-0     (-----) [002] .n.1 29481.644322: cpu_idle: state=4294967295 cpu_id=2
30129          <idle>-0     (-----) [002] d..2 29481.644331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30130 smem_native_cds-87    (   87) [002] d..2 29481.644356: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30131          <idle>-0     (-----) [002] d..1 29481.644364: cpu_idle: state=0 cpu_id=2
30132          <idle>-0     (-----) [002] d.h4 29481.645084: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30133          <idle>-0     (-----) [002] d.h5 29481.645096: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30134          <idle>-0     (-----) [000] .n.1 29481.645102: cpu_idle: state=4294967295 cpu_id=0
30135          <idle>-0     (-----) [000] d..2 29481.645110: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30136          <idle>-0     (-----) [002] ...1 29481.645124: cpu_idle: state=4294967295 cpu_id=2
30137          <idle>-0     (-----) [002] d..1 29481.645127: cpu_idle: state=0 cpu_id=2
30138  HwBinder:771_4-20182 (  771) [000] d..2 29481.645141: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
30139  HwBinder:771_4-20182 (  771) [000] d..3 29481.645155: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
30140  HwBinder:771_4-20182 (  771) [000] d..2 29481.645171: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30141          <idle>-0     (-----) [000] d..1 29481.645182: cpu_idle: state=0 cpu_id=0
30142          <idle>-0     (-----) [003] .n.1 29481.645393: cpu_idle: state=4294967295 cpu_id=3
30143          <idle>-0     (-----) [003] d..2 29481.645412: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30144 cdsp_smem_glink-88    (   88) [003] d..2 29481.645459: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30145          <idle>-0     (-----) [003] d..1 29481.645469: cpu_idle: state=2 cpu_id=3
30146          <idle>-0     (-----) [002] d.h4 29481.646571: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30147          <idle>-0     (-----) [002] dnh5 29481.646581: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30148          <idle>-0     (-----) [002] .n.1 29481.646588: cpu_idle: state=4294967295 cpu_id=2
30149          <idle>-0     (-----) [002] d..2 29481.646596: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30150 smem_native_cds-87    (   87) [002] d..2 29481.646621: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30151          <idle>-0     (-----) [002] d..1 29481.646628: cpu_idle: state=0 cpu_id=2
30152          <idle>-0     (-----) [000] ...1 29481.647059: cpu_idle: state=4294967295 cpu_id=0
30153          <idle>-0     (-----) [000] d..1 29481.647062: cpu_idle: state=2 cpu_id=0
30154          <idle>-0     (-----) [002] d.h4 29481.647568: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30155          <idle>-0     (-----) [002] d.h5 29481.647580: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30156          <idle>-0     (-----) [002] d..2 29481.647606: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30157          <idle>-0     (-----) [002] dn.3 29481.647612: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30158          <idle>-0     (-----) [002] .n.1 29481.647615: cpu_idle: state=4294967295 cpu_id=2
30159          <idle>-0     (-----) [002] d..2 29481.647624: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30160     ksoftirqd/2-26    (   26) [002] d.s2 29481.647631: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30161     ksoftirqd/2-26    (   26) [002] d.s3 29481.647657: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30162     ksoftirqd/2-26    (   26) [002] d..2 29481.647668: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30163          <idle>-0     (-----) [000] .n.1 29481.647811: cpu_idle: state=4294967295 cpu_id=0
30164  kworker/u16:10-23868 (23868) [002] d..2 29481.647816: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30165          <idle>-0     (-----) [002] d..1 29481.647830: cpu_idle: state=0 cpu_id=2
30166          <idle>-0     (-----) [000] d..2 29481.647832: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30167  HwBinder:771_4-20182 (  771) [000] d..2 29481.647890: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
30168  HwBinder:771_4-20182 (  771) [000] d..3 29481.647930: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30169          <idle>-0     (-----) [002] .n.1 29481.647936: cpu_idle: state=4294967295 cpu_id=2
30170          <idle>-0     (-----) [002] d..2 29481.647947: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30171  HwBinder:771_4-20182 (  771) [000] d..2 29481.647952: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30172          <idle>-0     (-----) [000] d..1 29481.647967: cpu_idle: state=0 cpu_id=0
30173 cdsp_smem_glink-88    (   88) [002] d..2 29481.647982: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30174          <idle>-0     (-----) [002] d..1 29481.647991: cpu_idle: state=0 cpu_id=2
30175          <idle>-0     (-----) [003] d.s3 29481.648091: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30176          <idle>-0     (-----) [003] d.s4 29481.648104: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30177          <idle>-0     (-----) [003] d.s4 29481.648113: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30178          <idle>-0     (-----) [002] .n.1 29481.648119: cpu_idle: state=4294967295 cpu_id=2
30179          <idle>-0     (-----) [003] ...1 29481.648125: cpu_idle: state=4294967295 cpu_id=3
30180          <idle>-0     (-----) [002] d..2 29481.648126: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30181          <idle>-0     (-----) [003] d..1 29481.648132: cpu_idle: state=0 cpu_id=3
30182  kworker/u16:10-23868 (23868) [002] .... 29481.648169: clk_set_rate: l3_cluster0_vote_clk 300000000
30183  kworker/u16:10-23868 (23868) [002] .... 29481.648174: clk_set_rate: l3_clk 300000000
30184  kworker/u16:10-23868 (23868) [002] d..2 29481.648217: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30185          <idle>-0     (-----) [002] d..1 29481.648230: cpu_idle: state=0 cpu_id=2
30186          <idle>-0     (-----) [002] d.h4 29481.649031: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30187          <idle>-0     (-----) [002] dnh5 29481.649049: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30188          <idle>-0     (-----) [002] .n.1 29481.649060: cpu_idle: state=4294967295 cpu_id=2
30189          <idle>-0     (-----) [002] d..2 29481.649069: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30190 smem_native_cds-87    (   87) [002] d..2 29481.649096: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30191          <idle>-0     (-----) [002] d..1 29481.649105: cpu_idle: state=0 cpu_id=2
30192          <idle>-0     (-----) [000] ...1 29481.649859: cpu_idle: state=4294967295 cpu_id=0
30193          <idle>-0     (-----) [000] d..1 29481.649864: cpu_idle: state=2 cpu_id=0
30194          <idle>-0     (-----) [002] d.h4 29481.650524: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30195          <idle>-0     (-----) [002] d.h5 29481.650539: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30196          <idle>-0     (-----) [002] d..2 29481.650565: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30197          <idle>-0     (-----) [002] dn.3 29481.650572: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30198          <idle>-0     (-----) [002] .n.1 29481.650575: cpu_idle: state=4294967295 cpu_id=2
30199          <idle>-0     (-----) [002] d..2 29481.650585: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30200     ksoftirqd/2-26    (   26) [002] d..2 29481.650608: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30201          <idle>-0     (-----) [002] d..1 29481.650616: cpu_idle: state=0 cpu_id=2
30202          <idle>-0     (-----) [001] d.s3 29481.650731: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
30203          <idle>-0     (-----) [001] dns4 29481.650750: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
30204          <idle>-0     (-----) [001] .n.1 29481.650781: cpu_idle: state=4294967295 cpu_id=1
30205          <idle>-0     (-----) [000] .n.1 29481.650786: cpu_idle: state=4294967295 cpu_id=0
30206          <idle>-0     (-----) [001] d..2 29481.650800: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
30207          <idle>-0     (-----) [000] d..2 29481.650811: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30208  HwBinder:771_4-20182 (  771) [000] d..2 29481.650863: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30209  HwBinder:771_4-20182 (  771) [000] d..3 29481.650905: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
30210  HwBinder:771_4-20182 (  771) [000] d..2 29481.650927: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30211          <idle>-0     (-----) [000] d..1 29481.650943: cpu_idle: state=0 cpu_id=0
30212     kworker/1:1-13678 (13678) [001] d..2 29481.650954: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30213 cdsp_smem_glink-88    (   88) [001] d..2 29481.650997: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30214          <idle>-0     (-----) [001] d..1 29481.651009: cpu_idle: state=2 cpu_id=1
30215          <idle>-0     (-----) [000] d.h3 29481.651712: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
30216          <idle>-0     (-----) [000] dnh4 29481.651728: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
30217          <idle>-0     (-----) [000] .n.1 29481.651755: cpu_idle: state=4294967295 cpu_id=0
30218          <idle>-0     (-----) [000] d..2 29481.651765: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
30219     kworker/0:0-13450 (13450) [000] d..2 29481.651774: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
30220     kworker/0:0-13450 (13450) [000] d..3 29481.651783: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
30221     kworker/0:0-13450 (13450) [000] d..3 29481.651789: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
30222     kworker/0:0-13450 (13450) [000] d..2 29481.651806: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30223          <idle>-0     (-----) [000] d..1 29481.651815: cpu_idle: state=0 cpu_id=0
30224          <idle>-0     (-----) [002] d.h4 29481.651955: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30225          <idle>-0     (-----) [002] dnh5 29481.651968: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30226          <idle>-0     (-----) [002] .n.1 29481.651976: cpu_idle: state=4294967295 cpu_id=2
30227          <idle>-0     (-----) [002] d..2 29481.651985: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30228 smem_native_cds-87    (   87) [002] d..2 29481.652012: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30229          <idle>-0     (-----) [002] d..1 29481.652021: cpu_idle: state=2 cpu_id=2
30230          <idle>-0     (-----) [001] .n.1 29481.652028: cpu_idle: state=4294967295 cpu_id=1
30231          <idle>-0     (-----) [001] d..2 29481.652049: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
30232     kworker/1:1-13678 (13678) [001] d..2 29481.652179: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30233          <idle>-0     (-----) [001] d..1 29481.652195: cpu_idle: state=0 cpu_id=1
30234          <idle>-0     (-----) [002] d.h4 29481.653398: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30235          <idle>-0     (-----) [002] d.h5 29481.653421: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30236          <idle>-0     (-----) [000] .n.1 29481.653427: cpu_idle: state=4294967295 cpu_id=0
30237          <idle>-0     (-----) [000] d..2 29481.653436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30238          <idle>-0     (-----) [002] ...1 29481.653458: cpu_idle: state=4294967295 cpu_id=2
30239          <idle>-0     (-----) [002] d..1 29481.653467: cpu_idle: state=0 cpu_id=2
30240  HwBinder:771_4-20182 (  771) [000] d..2 29481.653477: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
30241  HwBinder:771_4-20182 (  771) [000] dn.3 29481.653514: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30242  HwBinder:771_4-20182 (  771) [000] d..2 29481.653522: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30243 cdsp_smem_glink-88    (   88) [000] d..2 29481.653555: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30244  HwBinder:771_4-20182 (  771) [000] d..2 29481.653571: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30245          <idle>-0     (-----) [000] d..1 29481.653584: cpu_idle: state=0 cpu_id=0
30246          <idle>-0     (-----) [003] d..2 29481.654142: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30247          <idle>-0     (-----) [003] dn.3 29481.654151: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30248          <idle>-0     (-----) [003] .n.1 29481.654153: cpu_idle: state=4294967295 cpu_id=3
30249          <idle>-0     (-----) [003] d..2 29481.654165: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
30250     ksoftirqd/3-34    (   34) [003] d..2 29481.654198: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30251          <idle>-0     (-----) [003] d..1 29481.654207: cpu_idle: state=2 cpu_id=3
30252          <idle>-0     (-----) [002] d.h4 29481.654665: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30253          <idle>-0     (-----) [002] dnh5 29481.654680: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30254          <idle>-0     (-----) [002] .n.1 29481.654688: cpu_idle: state=4294967295 cpu_id=2
30255          <idle>-0     (-----) [002] d..2 29481.654700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30256 smem_native_cds-87    (   87) [002] d..2 29481.654736: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30257          <idle>-0     (-----) [002] d..1 29481.654746: cpu_idle: state=0 cpu_id=2
30258          <idle>-0     (-----) [002] d.h4 29481.656092: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30259          <idle>-0     (-----) [002] d.h5 29481.656107: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30260          <idle>-0     (-----) [000] .n.1 29481.656113: cpu_idle: state=4294967295 cpu_id=0
30261          <idle>-0     (-----) [000] d..2 29481.656124: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30262          <idle>-0     (-----) [002] ...1 29481.656138: cpu_idle: state=4294967295 cpu_id=2
30263          <idle>-0     (-----) [002] d..1 29481.656141: cpu_idle: state=0 cpu_id=2
30264  HwBinder:771_4-20182 (  771) [000] d..2 29481.656175: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30265  HwBinder:771_4-20182 (  771) [000] dn.3 29481.656195: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30266  HwBinder:771_4-20182 (  771) [000] d..2 29481.656202: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30267 cdsp_smem_glink-88    (   88) [000] d..2 29481.656230: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30268  HwBinder:771_4-20182 (  771) [000] d..2 29481.656246: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30269          <idle>-0     (-----) [000] d..1 29481.656259: cpu_idle: state=0 cpu_id=0
30270          <idle>-0     (-----) [002] d.h4 29481.656271: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30271          <idle>-0     (-----) [002] dnh5 29481.656279: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30272          <idle>-0     (-----) [002] .n.1 29481.656286: cpu_idle: state=4294967295 cpu_id=2
30273          <idle>-0     (-----) [002] d..2 29481.656294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30274 smem_native_cds-87    (   87) [002] d..2 29481.656324: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30275          <idle>-0     (-----) [002] d..1 29481.656333: cpu_idle: state=0 cpu_id=2
30276          <idle>-0     (-----) [002] d.h4 29481.657087: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30277          <idle>-0     (-----) [002] d.h5 29481.657105: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30278          <idle>-0     (-----) [000] .n.1 29481.657111: cpu_idle: state=4294967295 cpu_id=0
30279          <idle>-0     (-----) [000] d..2 29481.657122: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30280          <idle>-0     (-----) [002] d..2 29481.657133: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30281          <idle>-0     (-----) [002] dn.3 29481.657141: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30282  HwBinder:771_4-20182 (  771) [000] d..2 29481.657154: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30283          <idle>-0     (-----) [002] dnH3 29481.657219: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
30284  HwBinder:771_4-20182 (  771) [000] d..3 29481.657224: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30285  HwBinder:771_4-20182 (  771) [000] d..2 29481.657248: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30286          <idle>-0     (-----) [002] dns3 29481.657253: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30287          <idle>-0     (-----) [000] d..1 29481.657260: cpu_idle: state=0 cpu_id=0
30288          <idle>-0     (-----) [002] dns4 29481.657269: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30289          <idle>-0     (-----) [002] .n.1 29481.657279: cpu_idle: state=4294967295 cpu_id=2
30290          <idle>-0     (-----) [002] d..2 29481.657293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30291 cdsp_smem_glink-88    (   88) [002] d..2 29481.657328: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30292     ksoftirqd/2-26    (   26) [002] d..2 29481.657336: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30293  kworker/u16:10-23868 (23868) [002] d..2 29481.657408: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30294          <idle>-0     (-----) [002] d..1 29481.657422: cpu_idle: state=0 cpu_id=2
30295          <idle>-0     (-----) [001] ...1 29481.658201: cpu_idle: state=4294967295 cpu_id=1
30296          <idle>-0     (-----) [001] d..1 29481.658204: cpu_idle: state=2 cpu_id=1
30297          <idle>-0     (-----) [007] dnh2 29481.658249: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
30298          <idle>-0     (-----) [007] .n.1 29481.658262: cpu_idle: state=4294967295 cpu_id=7
30299          <idle>-0     (-----) [007] d..2 29481.658279: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30300         sugov:4-560   (  560) [007] d..2 29481.658306: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30301          <idle>-0     (-----) [007] d..1 29481.658320: cpu_idle: state=2 cpu_id=7
30302          <idle>-0     (-----) [002] d.h4 29481.658487: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30303          <idle>-0     (-----) [002] dnh5 29481.658504: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30304          <idle>-0     (-----) [002] .n.1 29481.658514: cpu_idle: state=4294967295 cpu_id=2
30305          <idle>-0     (-----) [002] d..2 29481.658522: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30306 smem_native_cds-87    (   87) [002] d..2 29481.658550: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30307          <idle>-0     (-----) [002] d..1 29481.658560: cpu_idle: state=0 cpu_id=2
30308          <idle>-0     (-----) [002] d.h4 29481.659568: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30309          <idle>-0     (-----) [002] d.h5 29481.659584: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30310          <idle>-0     (-----) [000] .n.1 29481.659591: cpu_idle: state=4294967295 cpu_id=0
30311          <idle>-0     (-----) [000] d..2 29481.659601: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30312          <idle>-0     (-----) [002] ...1 29481.659615: cpu_idle: state=4294967295 cpu_id=2
30313          <idle>-0     (-----) [002] d..1 29481.659618: cpu_idle: state=0 cpu_id=2
30314  HwBinder:771_4-20182 (  771) [000] d..2 29481.659659: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30315  HwBinder:771_4-20182 (  771) [000] dn.3 29481.659695: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30316  HwBinder:771_4-20182 (  771) [000] d..2 29481.659703: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30317 cdsp_smem_glink-88    (   88) [000] d..2 29481.659734: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30318  HwBinder:771_4-20182 (  771) [000] d..2 29481.659750: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30319          <idle>-0     (-----) [000] d..1 29481.659762: cpu_idle: state=2 cpu_id=0
30320          <idle>-0     (-----) [002] d.h4 29481.661071: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30321          <idle>-0     (-----) [002] dnh5 29481.661082: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30322          <idle>-0     (-----) [002] .n.1 29481.661089: cpu_idle: state=4294967295 cpu_id=2
30323          <idle>-0     (-----) [002] d..2 29481.661099: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30324 smem_native_cds-87    (   87) [002] d..2 29481.661130: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30325          <idle>-0     (-----) [002] d..2 29481.661132: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30326          <idle>-0     (-----) [002] dn.3 29481.661138: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30327          <idle>-0     (-----) [002] d..2 29481.661144: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30328     ksoftirqd/2-26    (   26) [002] d..2 29481.661158: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30329          <idle>-0     (-----) [002] d..1 29481.661168: cpu_idle: state=0 cpu_id=2
30330          <idle>-0     (-----) [002] d.h4 29481.662311: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30331          <idle>-0     (-----) [002] d.h5 29481.662324: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30332          <idle>-0     (-----) [002] ...1 29481.662352: cpu_idle: state=4294967295 cpu_id=2
30333          <idle>-0     (-----) [002] d..1 29481.662356: cpu_idle: state=0 cpu_id=2
30334          <idle>-0     (-----) [000] .n.1 29481.662565: cpu_idle: state=4294967295 cpu_id=0
30335          <idle>-0     (-----) [000] d..2 29481.662595: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30336  HwBinder:771_4-20182 (  771) [000] d..2 29481.662649: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30337  HwBinder:771_4-20182 (  771) [000] dn.3 29481.662677: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30338  HwBinder:771_4-20182 (  771) [000] d..2 29481.662685: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30339 cdsp_smem_glink-88    (   88) [000] d..2 29481.662716: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30340  HwBinder:771_4-20182 (  771) [000] d..2 29481.662736: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30341          <idle>-0     (-----) [000] d..1 29481.662752: cpu_idle: state=0 cpu_id=0
30342          <idle>-0     (-----) [002] d.h4 29481.663684: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30343          <idle>-0     (-----) [002] dnh5 29481.663696: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30344          <idle>-0     (-----) [002] .n.1 29481.663703: cpu_idle: state=4294967295 cpu_id=2
30345          <idle>-0     (-----) [002] d..2 29481.663715: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30346 smem_native_cds-87    (   87) [002] d.s3 29481.663767: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
30347 smem_native_cds-87    (   87) [002] d.s4 29481.663787: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
30348 smem_native_cds-87    (   87) [002] d..2 29481.663809: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
30349     kworker/2:2-13636 (13636) [002] d..2 29481.663895: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30350          <idle>-0     (-----) [002] d..1 29481.663908: cpu_idle: state=0 cpu_id=2
30351          <idle>-0     (-----) [002] d.h4 29481.664818: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30352          <idle>-0     (-----) [002] d.h5 29481.664834: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30353          <idle>-0     (-----) [000] .n.1 29481.664841: cpu_idle: state=4294967295 cpu_id=0
30354          <idle>-0     (-----) [000] d..2 29481.664851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30355          <idle>-0     (-----) [002] ...1 29481.664867: cpu_idle: state=4294967295 cpu_id=2
30356          <idle>-0     (-----) [002] d..1 29481.664870: cpu_idle: state=0 cpu_id=2
30357  HwBinder:771_4-20182 (  771) [000] d.s2 29481.667115: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30358  HwBinder:771_4-20182 (  771) [000] d.s3 29481.667155: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
30359  HwBinder:771_4-20182 (  771) [000] d..2 29481.670441: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30360  kworker/u16:10-23868 (23868) [000] d..2 29481.670635: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30361          <idle>-0     (-----) [003] d.s3 29481.671487: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
30362          <idle>-0     (-----) [003] d.s4 29481.671514: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30363          <idle>-0     (-----) [003] dns4 29481.671521: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30364          <idle>-0     (-----) [003] .n.1 29481.671528: cpu_idle: state=4294967295 cpu_id=3
30365          <idle>-0     (-----) [003] d..2 29481.671543: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30366  kworker/u16:10-23868 (23868) [003] .... 29481.671633: clk_set_rate: l3_cluster0_vote_clk 652800000
30367  kworker/u16:10-23868 (23868) [003] .... 29481.671637: clk_set_rate: l3_clk 652800000
30368  kworker/u16:10-23868 (23868) [003] d..2 29481.671733: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30369          <idle>-0     (-----) [003] d..1 29481.671744: cpu_idle: state=0 cpu_id=3
30370  HwBinder:771_4-20182 (  771) [000] d.s2 29481.673748: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30371  HwBinder:771_4-20182 (  771) [000] d.s3 29481.673780: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30372          <idle>-0     (-----) [002] .n.1 29481.673784: cpu_idle: state=4294967295 cpu_id=2
30373          <idle>-0     (-----) [002] d..2 29481.673794: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30374  kworker/u16:10-23868 (23868) [002] d..2 29481.673953: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30375          <idle>-0     (-----) [002] d..1 29481.673962: cpu_idle: state=0 cpu_id=2
30376          <idle>-0     (-----) [003] d.s3 29481.673972: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30377          <idle>-0     (-----) [003] d.s4 29481.673980: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30378          <idle>-0     (-----) [003] d.s4 29481.673986: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30379          <idle>-0     (-----) [002] .n.1 29481.673991: cpu_idle: state=4294967295 cpu_id=2
30380          <idle>-0     (-----) [003] ...1 29481.673994: cpu_idle: state=4294967295 cpu_id=3
30381          <idle>-0     (-----) [003] d..1 29481.673997: cpu_idle: state=0 cpu_id=3
30382          <idle>-0     (-----) [002] d..2 29481.673999: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30383  kworker/u16:10-23868 (23868) [002] d..2 29481.674016: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30384          <idle>-0     (-----) [002] d..1 29481.674023: cpu_idle: state=0 cpu_id=2
30385          <idle>-0     (-----) [002] ...1 29481.675869: cpu_idle: state=4294967295 cpu_id=2
30386          <idle>-0     (-----) [002] d..1 29481.675871: cpu_idle: state=2 cpu_id=2
30387  HwBinder:771_4-20182 (  771) [000] d.H2 29481.677130: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
30388  HwBinder:771_4-20182 (  771) [000] d.H2 29481.677145: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30389  HwBinder:771_4-20182 (  771) [000] d.H3 29481.677157: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
30390          <idle>-0     (-----) [003] .n.1 29481.677161: cpu_idle: state=4294967295 cpu_id=3
30391          <idle>-0     (-----) [003] d..2 29481.677170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30392         sugov:0-559   (  559) [003] .... 29481.677194: clk_set_rate: pwrcl_clk 1766400000
30393         sugov:0-559   (  559) [003] d..2 29481.677281: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
30394          <idle>-0     (-----) [003] d..1 29481.677289: cpu_idle: state=0 cpu_id=3
30395          <idle>-0     (-----) [003] d.s3 29481.677410: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30396          <idle>-0     (-----) [003] d.s4 29481.677428: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30397          <idle>-0     (-----) [003] ...1 29481.677435: cpu_idle: state=4294967295 cpu_id=3
30398          <idle>-0     (-----) [003] d..1 29481.677438: cpu_idle: state=0 cpu_id=3
30399          <idle>-0     (-----) [002] .n.1 29481.677654: cpu_idle: state=4294967295 cpu_id=2
30400          <idle>-0     (-----) [002] d..2 29481.677668: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30401         sugov:0-559   (  559) [002] .... 29481.677685: clk_set_rate: cpu3_pwrcl_clk 1612800000
30402         sugov:0-559   (  559) [002] .... 29481.677695: clk_set_rate: cpu2_pwrcl_clk 1612800000
30403         sugov:0-559   (  559) [002] .... 29481.677704: clk_set_rate: cpu1_pwrcl_clk 1612800000
30404         sugov:0-559   (  559) [002] .... 29481.677711: clk_set_rate: cpu0_pwrcl_clk 1766400000
30405         sugov:0-559   (  559) [002] .... 29481.677721: cpu_frequency: state=1766400 cpu_id=0
30406         sugov:0-559   (  559) [002] d..2 29481.677873: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30407          <idle>-0     (-----) [002] d..1 29481.677884: cpu_idle: state=0 cpu_id=2
30408          <idle>-0     (-----) [003] d.s3 29481.677894: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
30409          <idle>-0     (-----) [003] d.s4 29481.677905: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30410          <idle>-0     (-----) [003] ...1 29481.677911: cpu_idle: state=4294967295 cpu_id=3
30411          <idle>-0     (-----) [002] .n.1 29481.677911: cpu_idle: state=4294967295 cpu_id=2
30412          <idle>-0     (-----) [003] d..1 29481.677914: cpu_idle: state=2 cpu_id=3
30413          <idle>-0     (-----) [002] d..2 29481.677917: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30414         sugov:0-559   (  559) [002] .... 29481.677923: cpu_frequency: state=1766400 cpu_id=1
30415         sugov:0-559   (  559) [002] .... 29481.677927: cpu_frequency: state=1766400 cpu_id=2
30416         sugov:0-559   (  559) [002] .... 29481.677929: cpu_frequency: state=1766400 cpu_id=3
30417         sugov:0-559   (  559) [002] d..2 29481.677943: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30418          <idle>-0     (-----) [002] d..1 29481.677949: cpu_idle: state=0 cpu_id=2
30419          <idle>-0     (-----) [007] dnh2 29481.678111: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
30420          <idle>-0     (-----) [007] .n.1 29481.678120: cpu_idle: state=4294967295 cpu_id=7
30421          <idle>-0     (-----) [007] d..2 29481.678132: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30422         sugov:4-560   (  560) [007] d..2 29481.678153: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30423          <idle>-0     (-----) [007] d..1 29481.678164: cpu_idle: state=2 cpu_id=7
30424  HwBinder:771_4-20182 (  771) [000] d.s2 29481.680410: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30425  HwBinder:771_4-20182 (  771) [000] d.s3 29481.680438: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30426          <idle>-0     (-----) [002] .n.1 29481.680443: cpu_idle: state=4294967295 cpu_id=2
30427          <idle>-0     (-----) [002] d..2 29481.680454: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30428  kworker/u16:10-23868 (23868) [002] .... 29481.680492: clk_set_rate: l3_cluster0_vote_clk 1305600000
30429  kworker/u16:10-23868 (23868) [002] .... 29481.680495: clk_set_rate: l3_clk 1305600000
30430  kworker/u16:10-23868 (23868) [002] d..2 29481.680661: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30431          <idle>-0     (-----) [002] d..1 29481.680669: cpu_idle: state=0 cpu_id=2
30432          <idle>-0     (-----) [003] d.s3 29481.681589: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30433          <idle>-0     (-----) [003] d.s4 29481.681598: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30434          <idle>-0     (-----) [003] d.s4 29481.681605: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30435          <idle>-0     (-----) [002] .n.1 29481.681610: cpu_idle: state=4294967295 cpu_id=2
30436          <idle>-0     (-----) [003] ...1 29481.681612: cpu_idle: state=4294967295 cpu_id=3
30437          <idle>-0     (-----) [002] d..2 29481.681617: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30438          <idle>-0     (-----) [003] d..1 29481.681618: cpu_idle: state=0 cpu_id=3
30439  kworker/u16:10-23868 (23868) [002] d..2 29481.681631: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30440          <idle>-0     (-----) [002] d..1 29481.681638: cpu_idle: state=0 cpu_id=2
30441  HwBinder:771_4-20182 (  771) [000] d..2 29481.683886: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30442  HwBinder:771_4-20182 (  771) [000] dn.3 29481.683902: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30443  HwBinder:771_4-20182 (  771) [000] d..2 29481.683908: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30444 cdsp_smem_glink-88    (   88) [000] d..2 29481.683930: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30445  HwBinder:771_4-20182 (  771) [000] d..2 29481.683948: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30446          <idle>-0     (-----) [000] d..1 29481.683960: cpu_idle: state=0 cpu_id=0
30447          <idle>-0     (-----) [002] d.h4 29481.684712: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30448          <idle>-0     (-----) [002] dnh5 29481.684723: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30449          <idle>-0     (-----) [002] .n.1 29481.684730: cpu_idle: state=4294967295 cpu_id=2
30450          <idle>-0     (-----) [002] d..2 29481.684737: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30451 smem_native_cds-87    (   87) [002] d..2 29481.684759: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30452          <idle>-0     (-----) [002] d..1 29481.684766: cpu_idle: state=0 cpu_id=2
30453          <idle>-0     (-----) [003] d..2 29481.687619: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30454          <idle>-0     (-----) [003] dn.3 29481.687627: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30455          <idle>-0     (-----) [003] .n.1 29481.687629: cpu_idle: state=4294967295 cpu_id=3
30456          <idle>-0     (-----) [003] d..2 29481.687638: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
30457     ksoftirqd/3-34    (   34) [003] d..2 29481.687658: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30458          <idle>-0     (-----) [003] d..1 29481.687664: cpu_idle: state=2 cpu_id=3
30459          <idle>-0     (-----) [000] ...1 29481.689960: cpu_idle: state=4294967295 cpu_id=0
30460          <idle>-0     (-----) [000] d..1 29481.689963: cpu_idle: state=2 cpu_id=0
30461          <idle>-0     (-----) [002] d..2 29481.690766: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30462          <idle>-0     (-----) [002] dn.3 29481.690774: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30463          <idle>-0     (-----) [002] .n.1 29481.690776: cpu_idle: state=4294967295 cpu_id=2
30464          <idle>-0     (-----) [002] d..2 29481.690783: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30465     ksoftirqd/2-26    (   26) [002] d.s2 29481.690788: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30466     ksoftirqd/2-26    (   26) [002] d.s3 29481.690796: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30467     ksoftirqd/2-26    (   26) [002] d..2 29481.690803: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30468  kworker/u16:10-23868 (23868) [002] d..2 29481.690908: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30469          <idle>-0     (-----) [002] d..1 29481.690915: cpu_idle: state=2 cpu_id=2
30470          <idle>-0     (-----) [003] d.s3 29481.691089: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30471          <idle>-0     (-----) [003] d.s4 29481.691110: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30472          <idle>-0     (-----) [003] dns4 29481.691113: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30473          <idle>-0     (-----) [003] .n.1 29481.691118: cpu_idle: state=4294967295 cpu_id=3
30474          <idle>-0     (-----) [003] d..2 29481.691126: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30475  kworker/u16:10-23868 (23868) [003] .... 29481.691157: clk_set_rate: l3_cluster0_vote_clk 480000000
30476  kworker/u16:10-23868 (23868) [003] .... 29481.691160: clk_set_rate: l3_clk 480000000
30477  kworker/u16:10-23868 (23868) [003] d..2 29481.691197: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30478          <idle>-0     (-----) [003] d..1 29481.691213: cpu_idle: state=0 cpu_id=3
30479          <idle>-0     (-----) [002] d.h4 29481.691454: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30480          <idle>-0     (-----) [002] d.h5 29481.691478: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30481          <idle>-0     (-----) [002] ...1 29481.691509: cpu_idle: state=4294967295 cpu_id=2
30482          <idle>-0     (-----) [002] d..1 29481.691517: cpu_idle: state=2 cpu_id=2
30483          <idle>-0     (-----) [000] .n.1 29481.691655: cpu_idle: state=4294967295 cpu_id=0
30484          <idle>-0     (-----) [000] d..2 29481.691674: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30485  HwBinder:771_4-20182 (  771) [000] d..2 29481.692100: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30486  HwBinder:771_4-20182 (  771) [000] dn.3 29481.692121: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30487  HwBinder:771_4-20182 (  771) [000] d..2 29481.692128: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30488 cdsp_smem_glink-88    (   88) [000] d..2 29481.692154: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30489  HwBinder:771_4-20182 (  771) [000] d..2 29481.692172: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30490          <idle>-0     (-----) [000] d..1 29481.692185: cpu_idle: state=0 cpu_id=0
30491          <idle>-0     (-----) [002] d.h4 29481.693384: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30492          <idle>-0     (-----) [002] dnh5 29481.693404: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30493          <idle>-0     (-----) [002] .n.1 29481.693413: cpu_idle: state=4294967295 cpu_id=2
30494          <idle>-0     (-----) [002] d..2 29481.693424: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30495 smem_native_cds-87    (   87) [002] d..2 29481.693453: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30496          <idle>-0     (-----) [002] d..1 29481.693463: cpu_idle: state=0 cpu_id=2
30497          <idle>-0     (-----) [002] d.h4 29481.693933: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30498          <idle>-0     (-----) [002] d.h5 29481.693947: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30499          <idle>-0     (-----) [000] .n.1 29481.693954: cpu_idle: state=4294967295 cpu_id=0
30500          <idle>-0     (-----) [000] d..2 29481.693963: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30501          <idle>-0     (-----) [002] d..2 29481.693971: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30502          <idle>-0     (-----) [002] dn.3 29481.693976: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30503          <idle>-0     (-----) [002] .n.1 29481.693979: cpu_idle: state=4294967295 cpu_id=2
30504          <idle>-0     (-----) [002] d..2 29481.693988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30505  HwBinder:771_4-20182 (  771) [000] d..2 29481.693999: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30506     ksoftirqd/2-26    (   26) [002] d..2 29481.694008: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30507          <idle>-0     (-----) [002] d..1 29481.694016: cpu_idle: state=0 cpu_id=2
30508  HwBinder:771_4-20182 (  771) [000] d..3 29481.694034: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30509          <idle>-0     (-----) [002] .n.1 29481.694039: cpu_idle: state=4294967295 cpu_id=2
30510          <idle>-0     (-----) [002] d..2 29481.694046: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30511  HwBinder:771_4-20182 (  771) [000] d..2 29481.694050: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30512          <idle>-0     (-----) [000] d..1 29481.694061: cpu_idle: state=0 cpu_id=0
30513 cdsp_smem_glink-88    (   88) [002] d..2 29481.694077: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30514          <idle>-0     (-----) [002] d..1 29481.694084: cpu_idle: state=0 cpu_id=2
30515          <idle>-0     (-----) [002] d.h4 29481.694111: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30516          <idle>-0     (-----) [002] dnh5 29481.694119: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30517          <idle>-0     (-----) [002] .n.1 29481.694127: cpu_idle: state=4294967295 cpu_id=2
30518          <idle>-0     (-----) [002] d..2 29481.694133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30519 smem_native_cds-87    (   87) [002] d..2 29481.694155: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30520          <idle>-0     (-----) [002] d..1 29481.694163: cpu_idle: state=0 cpu_id=2
30521          <idle>-0     (-----) [002] d.h4 29481.694596: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30522          <idle>-0     (-----) [002] d.h5 29481.694606: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30523          <idle>-0     (-----) [000] .n.1 29481.694612: cpu_idle: state=4294967295 cpu_id=0
30524          <idle>-0     (-----) [000] d..2 29481.694620: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30525          <idle>-0     (-----) [002] ...1 29481.694632: cpu_idle: state=4294967295 cpu_id=2
30526          <idle>-0     (-----) [002] d..1 29481.694634: cpu_idle: state=0 cpu_id=2
30527  HwBinder:771_4-20182 (  771) [000] d..2 29481.694647: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30528  HwBinder:771_4-20182 (  771) [000] d..3 29481.694671: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30529          <idle>-0     (-----) [002] .n.1 29481.694676: cpu_idle: state=4294967295 cpu_id=2
30530          <idle>-0     (-----) [002] d..2 29481.694684: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30531  HwBinder:771_4-20182 (  771) [000] d..2 29481.694686: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30532          <idle>-0     (-----) [000] d..1 29481.694695: cpu_idle: state=0 cpu_id=0
30533 cdsp_smem_glink-88    (   88) [002] d..2 29481.694715: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30534          <idle>-0     (-----) [002] d..1 29481.694722: cpu_idle: state=0 cpu_id=2
30535          <idle>-0     (-----) [002] d.h4 29481.694750: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30536          <idle>-0     (-----) [002] dnh5 29481.694758: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30537          <idle>-0     (-----) [002] .n.1 29481.694765: cpu_idle: state=4294967295 cpu_id=2
30538          <idle>-0     (-----) [002] d..2 29481.694771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30539 smem_native_cds-87    (   87) [002] d..2 29481.694792: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30540          <idle>-0     (-----) [002] d..1 29481.694799: cpu_idle: state=0 cpu_id=2
30541          <idle>-0     (-----) [002] d.h4 29481.695255: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30542          <idle>-0     (-----) [002] d.h5 29481.695266: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30543          <idle>-0     (-----) [000] .n.1 29481.695272: cpu_idle: state=4294967295 cpu_id=0
30544          <idle>-0     (-----) [000] d..2 29481.695280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30545          <idle>-0     (-----) [002] ...1 29481.695293: cpu_idle: state=4294967295 cpu_id=2
30546          <idle>-0     (-----) [002] d..1 29481.695296: cpu_idle: state=0 cpu_id=2
30547  HwBinder:771_4-20182 (  771) [000] d..2 29481.695306: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30548  HwBinder:771_4-20182 (  771) [000] d..3 29481.695319: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30549          <idle>-0     (-----) [002] .n.1 29481.695324: cpu_idle: state=4294967295 cpu_id=2
30550          <idle>-0     (-----) [002] d..2 29481.695332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30551  HwBinder:771_4-20182 (  771) [000] d..2 29481.695334: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30552          <idle>-0     (-----) [000] d..1 29481.695341: cpu_idle: state=2 cpu_id=0
30553 cdsp_smem_glink-88    (   88) [002] d..2 29481.695363: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30554          <idle>-0     (-----) [002] d..1 29481.695369: cpu_idle: state=0 cpu_id=2
30555          <idle>-0     (-----) [002] d.h4 29481.695394: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30556          <idle>-0     (-----) [002] dnh5 29481.695404: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30557          <idle>-0     (-----) [002] .n.1 29481.695412: cpu_idle: state=4294967295 cpu_id=2
30558          <idle>-0     (-----) [002] d..2 29481.695418: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30559 smem_native_cds-87    (   87) [002] d..2 29481.695439: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30560          <idle>-0     (-----) [002] d..1 29481.695446: cpu_idle: state=0 cpu_id=2
30561          <idle>-0     (-----) [002] d.h4 29481.695902: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30562          <idle>-0     (-----) [002] d.h5 29481.695912: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30563          <idle>-0     (-----) [002] ...1 29481.695938: cpu_idle: state=4294967295 cpu_id=2
30564          <idle>-0     (-----) [002] d..1 29481.695940: cpu_idle: state=0 cpu_id=2
30565          <idle>-0     (-----) [000] .n.1 29481.696138: cpu_idle: state=4294967295 cpu_id=0
30566          <idle>-0     (-----) [000] d..2 29481.696155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30567  HwBinder:771_4-20182 (  771) [000] d..2 29481.696196: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30568  HwBinder:771_4-20182 (  771) [000] d..3 29481.696212: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30569          <idle>-0     (-----) [002] .n.1 29481.696217: cpu_idle: state=4294967295 cpu_id=2
30570          <idle>-0     (-----) [002] d..2 29481.696226: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30571  HwBinder:771_4-20182 (  771) [000] d..2 29481.696231: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30572          <idle>-0     (-----) [000] d..1 29481.696241: cpu_idle: state=0 cpu_id=0
30573 cdsp_smem_glink-88    (   88) [002] d..2 29481.696256: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30574          <idle>-0     (-----) [002] d..1 29481.696264: cpu_idle: state=0 cpu_id=2
30575          <idle>-0     (-----) [003] d..2 29481.697222: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30576          <idle>-0     (-----) [003] dn.3 29481.697232: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
30577          <idle>-0     (-----) [003] dnH3 29481.697294: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
30578          <idle>-0     (-----) [003] dnH3 29481.697307: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
30579          <idle>-0     (-----) [003] dnH4 29481.697317: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30580          <idle>-0     (-----) [002] .n.1 29481.697322: cpu_idle: state=4294967295 cpu_id=2
30581          <idle>-0     (-----) [003] .n.1 29481.697326: cpu_idle: state=4294967295 cpu_id=3
30582          <idle>-0     (-----) [002] d..2 29481.697330: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30583          <idle>-0     (-----) [003] d..2 29481.697337: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
30584         sugov:0-559   (  559) [002] d.h3 29481.697351: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30585     ksoftirqd/3-34    (   34) [003] d..2 29481.697354: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30586          <idle>-0     (-----) [003] d..1 29481.697361: cpu_idle: state=2 cpu_id=3
30587         sugov:0-559   (  559) [002] d.h4 29481.697376: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=003
30588         sugov:0-559   (  559) [002] .... 29481.697396: clk_set_rate: pwrcl_clk 1420800000
30589         sugov:0-559   (  559) [002] .... 29481.697456: clk_set_rate: cpu3_pwrcl_clk 1766400000
30590         sugov:0-559   (  559) [002] .... 29481.697466: clk_set_rate: cpu2_pwrcl_clk 1766400000
30591         sugov:0-559   (  559) [002] .... 29481.697474: clk_set_rate: cpu1_pwrcl_clk 1766400000
30592         sugov:0-559   (  559) [002] .... 29481.697482: clk_set_rate: cpu0_pwrcl_clk 1420800000
30593         sugov:0-559   (  559) [002] .... 29481.697597: cpu_frequency: state=1420800 cpu_id=0
30594          <idle>-0     (-----) [003] .n.1 29481.697732: cpu_idle: state=4294967295 cpu_id=3
30595          <idle>-0     (-----) [003] d..2 29481.697747: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30596         sugov:0-559   (  559) [002] d..2 29481.697754: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30597          <idle>-0     (-----) [002] d..1 29481.697767: cpu_idle: state=0 cpu_id=2
30598 smem_native_cds-87    (   87) [003] d.s4 29481.697776: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
30599 smem_native_cds-87    (   87) [003] d.s5 29481.697793: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
30600          <idle>-0     (-----) [002] .n.1 29481.697799: cpu_idle: state=4294967295 cpu_id=2
30601          <idle>-0     (-----) [002] d..2 29481.697807: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30602         sugov:0-559   (  559) [002] .... 29481.697816: cpu_frequency: state=1420800 cpu_id=1
30603         sugov:0-559   (  559) [002] .... 29481.697821: cpu_frequency: state=1420800 cpu_id=2
30604         sugov:0-559   (  559) [002] .... 29481.697823: cpu_frequency: state=1420800 cpu_id=3
30605 smem_native_cds-87    (   87) [003] d..2 29481.697832: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30606         sugov:0-559   (  559) [002] d..2 29481.697840: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30607          <idle>-0     (-----) [003] d..1 29481.697845: cpu_idle: state=0 cpu_id=3
30608          <idle>-0     (-----) [002] d..1 29481.697848: cpu_idle: state=0 cpu_id=2
30609          <idle>-0     (-----) [002] d.h4 29481.697970: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30610          <idle>-0     (-----) [002] d.h5 29481.697987: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30611          <idle>-0     (-----) [000] .n.1 29481.697993: cpu_idle: state=4294967295 cpu_id=0
30612          <idle>-0     (-----) [000] d..2 29481.698003: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30613          <idle>-0     (-----) [002] ...1 29481.698018: cpu_idle: state=4294967295 cpu_id=2
30614          <idle>-0     (-----) [002] d..1 29481.698021: cpu_idle: state=0 cpu_id=2
30615  HwBinder:771_4-20182 (  771) [000] d..2 29481.698031: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30616  HwBinder:771_4-20182 (  771) [000] dn.3 29481.698065: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30617  HwBinder:771_4-20182 (  771) [000] d..2 29481.698071: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30618 cdsp_smem_glink-88    (   88) [000] d..2 29481.698099: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30619  HwBinder:771_4-20182 (  771) [000] d..2 29481.698113: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30620          <idle>-0     (-----) [000] d..1 29481.698124: cpu_idle: state=0 cpu_id=0
30621          <idle>-0     (-----) [002] d.h4 29481.698139: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=003
30622          <idle>-0     (-----) [002] dnh5 29481.698166: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30623          <idle>-0     (-----) [002] .n.1 29481.698173: cpu_idle: state=4294967295 cpu_id=2
30624          <idle>-0     (-----) [002] d..2 29481.698182: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30625 smem_native_cds-87    (   87) [002] d..2 29481.698210: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30626          <idle>-0     (-----) [002] d..1 29481.698219: cpu_idle: state=0 cpu_id=2
30627          <idle>-0     (-----) [007] dnh2 29481.698276: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
30628          <idle>-0     (-----) [007] .n.1 29481.698285: cpu_idle: state=4294967295 cpu_id=7
30629          <idle>-0     (-----) [007] d..2 29481.698297: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30630         sugov:4-560   (  560) [007] d..2 29481.698319: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30631          <idle>-0     (-----) [007] d..1 29481.698329: cpu_idle: state=2 cpu_id=7
30632          <idle>-0     (-----) [002] d.h4 29481.698581: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30633          <idle>-0     (-----) [002] d.h5 29481.698592: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30634          <idle>-0     (-----) [000] .n.1 29481.698599: cpu_idle: state=4294967295 cpu_id=0
30635          <idle>-0     (-----) [000] d..2 29481.698607: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30636          <idle>-0     (-----) [002] ...1 29481.698621: cpu_idle: state=4294967295 cpu_id=2
30637          <idle>-0     (-----) [002] d..1 29481.698624: cpu_idle: state=0 cpu_id=2
30638  HwBinder:771_4-20182 (  771) [000] d..2 29481.698640: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30639  HwBinder:771_4-20182 (  771) [000] dn.3 29481.698656: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30640  HwBinder:771_4-20182 (  771) [000] d..2 29481.698663: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30641 cdsp_smem_glink-88    (   88) [000] d..2 29481.698690: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30642  HwBinder:771_4-20182 (  771) [000] d..2 29481.698704: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30643          <idle>-0     (-----) [000] d..1 29481.698714: cpu_idle: state=0 cpu_id=0
30644          <idle>-0     (-----) [002] d.h4 29481.698730: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30645          <idle>-0     (-----) [002] dnh5 29481.698737: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30646          <idle>-0     (-----) [002] .n.1 29481.698743: cpu_idle: state=4294967295 cpu_id=2
30647          <idle>-0     (-----) [002] d..2 29481.698753: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30648 smem_native_cds-87    (   87) [002] d..2 29481.698779: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30649          <idle>-0     (-----) [002] d..1 29481.698789: cpu_idle: state=0 cpu_id=2
30650          <idle>-0     (-----) [002] d.h4 29481.699589: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30651          <idle>-0     (-----) [002] d.h5 29481.699601: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30652          <idle>-0     (-----) [000] .n.1 29481.699608: cpu_idle: state=4294967295 cpu_id=0
30653          <idle>-0     (-----) [000] d..2 29481.699616: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30654          <idle>-0     (-----) [002] ...1 29481.699631: cpu_idle: state=4294967295 cpu_id=2
30655          <idle>-0     (-----) [002] d..1 29481.699634: cpu_idle: state=0 cpu_id=2
30656  HwBinder:771_4-20182 (  771) [000] d..2 29481.699645: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30657  HwBinder:771_4-20182 (  771) [000] dn.3 29481.699660: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30658  HwBinder:771_4-20182 (  771) [000] d..2 29481.699667: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30659 cdsp_smem_glink-88    (   88) [000] d..2 29481.699694: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30660  HwBinder:771_4-20182 (  771) [000] d..2 29481.699708: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30661          <idle>-0     (-----) [000] d..1 29481.699718: cpu_idle: state=0 cpu_id=0
30662          <idle>-0     (-----) [002] d.h4 29481.699733: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30663          <idle>-0     (-----) [002] dnh5 29481.699741: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30664          <idle>-0     (-----) [002] .n.1 29481.699748: cpu_idle: state=4294967295 cpu_id=2
30665          <idle>-0     (-----) [002] d..2 29481.699756: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30666 smem_native_cds-87    (   87) [002] d..2 29481.699783: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30667          <idle>-0     (-----) [002] d..1 29481.699791: cpu_idle: state=0 cpu_id=2
30668          <idle>-0     (-----) [002] d.h4 29481.700596: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30669          <idle>-0     (-----) [002] d.h5 29481.700610: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30670          <idle>-0     (-----) [000] .n.1 29481.700616: cpu_idle: state=4294967295 cpu_id=0
30671          <idle>-0     (-----) [000] d..2 29481.700629: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30672          <idle>-0     (-----) [002] d..2 29481.700637: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30673          <idle>-0     (-----) [002] dn.3 29481.700644: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30674          <idle>-0     (-----) [002] .n.1 29481.700647: cpu_idle: state=4294967295 cpu_id=2
30675          <idle>-0     (-----) [002] d..2 29481.700657: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30676     ksoftirqd/2-26    (   26) [002] d.s2 29481.700663: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30677  HwBinder:771_4-20182 (  771) [000] d..2 29481.700665: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30678     ksoftirqd/2-26    (   26) [002] d.s3 29481.700698: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30679  HwBinder:771_4-20182 (  771) [000] d..3 29481.700709: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30680     ksoftirqd/2-26    (   26) [002] d..2 29481.700724: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30681  HwBinder:771_4-20182 (  771) [000] d..2 29481.700731: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30682          <idle>-0     (-----) [000] d..1 29481.700741: cpu_idle: state=0 cpu_id=0
30683 cdsp_smem_glink-88    (   88) [002] d..2 29481.700753: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30684     ksoftirqd/2-26    (   26) [002] d..2 29481.700761: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30685  kworker/u16:10-23868 (23868) [002] .... 29481.700780: clk_set_rate: l3_cluster0_vote_clk 403200000
30686  kworker/u16:10-23868 (23868) [002] .... 29481.700784: clk_set_rate: l3_clk 403200000
30687  kworker/u16:10-23868 (23868) [002] d..2 29481.700987: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
30688          <idle>-0     (-----) [002] d..1 29481.701002: cpu_idle: state=0 cpu_id=2
30689          <idle>-0     (-----) [003] d.s3 29481.701019: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30690          <idle>-0     (-----) [003] d.s4 29481.701028: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
30691          <idle>-0     (-----) [003] d.s4 29481.701035: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30692          <idle>-0     (-----) [002] .n.1 29481.701042: cpu_idle: state=4294967295 cpu_id=2
30693          <idle>-0     (-----) [003] ...1 29481.701045: cpu_idle: state=4294967295 cpu_id=3
30694          <idle>-0     (-----) [003] d..1 29481.701048: cpu_idle: state=0 cpu_id=3
30695          <idle>-0     (-----) [002] d..2 29481.701052: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30696  kworker/u16:10-23868 (23868) [002] d..2 29481.701076: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30697          <idle>-0     (-----) [002] d..1 29481.701084: cpu_idle: state=0 cpu_id=2
30698          <idle>-0     (-----) [002] ...1 29481.702451: cpu_idle: state=4294967295 cpu_id=2
30699          <idle>-0     (-----) [002] d..1 29481.702455: cpu_idle: state=2 cpu_id=2
30700          <idle>-0     (-----) [000] ...1 29481.702715: cpu_idle: state=4294967295 cpu_id=0
30701          <idle>-0     (-----) [000] d..1 29481.702718: cpu_idle: state=2 cpu_id=0
30702          <idle>-0     (-----) [002] d.h4 29481.703966: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30703          <idle>-0     (-----) [002] dnh5 29481.703988: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30704          <idle>-0     (-----) [002] .n.1 29481.703999: cpu_idle: state=4294967295 cpu_id=2
30705          <idle>-0     (-----) [002] d..2 29481.704014: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30706 smem_native_cds-87    (   87) [002] d..2 29481.704054: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30707          <idle>-0     (-----) [002] d..2 29481.704058: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30708          <idle>-0     (-----) [002] dn.3 29481.704065: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30709          <idle>-0     (-----) [002] d..2 29481.704071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30710     ksoftirqd/2-26    (   26) [002] d..2 29481.704088: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30711          <idle>-0     (-----) [002] d..1 29481.704101: cpu_idle: state=0 cpu_id=2
30712          <idle>-0     (-----) [002] ...1 29481.705531: cpu_idle: state=4294967295 cpu_id=2
30713          <idle>-0     (-----) [002] d..1 29481.705534: cpu_idle: state=2 cpu_id=2
30714          <idle>-0     (-----) [002] d.h4 29481.707202: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30715          <idle>-0     (-----) [002] d.h5 29481.707223: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30716          <idle>-0     (-----) [002] d..2 29481.707255: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30717          <idle>-0     (-----) [002] dn.3 29481.707261: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30718          <idle>-0     (-----) [002] .n.1 29481.707266: cpu_idle: state=4294967295 cpu_id=2
30719          <idle>-0     (-----) [002] d..2 29481.707279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30720     ksoftirqd/2-26    (   26) [002] d..2 29481.707306: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30721          <idle>-0     (-----) [002] d..1 29481.707319: cpu_idle: state=0 cpu_id=2
30722          <idle>-0     (-----) [000] .n.1 29481.707504: cpu_idle: state=4294967295 cpu_id=0
30723          <idle>-0     (-----) [000] d..2 29481.707527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30724  HwBinder:771_4-20182 (  771) [000] d..2 29481.707582: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30725  HwBinder:771_4-20182 (  771) [000] dn.3 29481.707622: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30726  HwBinder:771_4-20182 (  771) [000] d..2 29481.707631: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30727 cdsp_smem_glink-88    (   88) [000] d..2 29481.707666: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30728  HwBinder:771_4-20182 (  771) [000] d..2 29481.707685: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30729          <idle>-0     (-----) [000] d..1 29481.707700: cpu_idle: state=0 cpu_id=0
30730          <idle>-0     (-----) [000] ...1 29481.709713: cpu_idle: state=4294967295 cpu_id=0
30731          <idle>-0     (-----) [000] d..1 29481.709718: cpu_idle: state=2 cpu_id=0
30732          <idle>-0     (-----) [002] d.h4 29481.710132: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30733          <idle>-0     (-----) [002] dnh5 29481.710145: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30734          <idle>-0     (-----) [002] .n.1 29481.710153: cpu_idle: state=4294967295 cpu_id=2
30735          <idle>-0     (-----) [002] d..2 29481.710163: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30736 smem_native_cds-87    (   87) [002] d..2 29481.710192: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30737          <idle>-0     (-----) [002] d..1 29481.710202: cpu_idle: state=0 cpu_id=2
30738          <idle>-0     (-----) [002] d.h4 29481.712922: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30739          <idle>-0     (-----) [002] d.h5 29481.712936: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30740          <idle>-0     (-----) [002] d..2 29481.712967: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30741          <idle>-0     (-----) [002] dn.3 29481.712973: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30742          <idle>-0     (-----) [002] .n.1 29481.712977: cpu_idle: state=4294967295 cpu_id=2
30743          <idle>-0     (-----) [002] d..2 29481.712986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30744     ksoftirqd/2-26    (   26) [002] d.s2 29481.712993: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30745     ksoftirqd/2-26    (   26) [002] d.s3 29481.713006: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30746     ksoftirqd/2-26    (   26) [002] d..2 29481.713016: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30747  kworker/u16:10-23868 (23868) [002] .... 29481.713066: clk_set_rate: l3_cluster0_vote_clk 300000000
30748  kworker/u16:10-23868 (23868) [002] .... 29481.713070: clk_set_rate: l3_clk 300000000
30749  kworker/u16:10-23868 (23868) [002] d..2 29481.713117: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30750          <idle>-0     (-----) [002] d..1 29481.713131: cpu_idle: state=0 cpu_id=2
30751          <idle>-0     (-----) [000] .n.1 29481.713226: cpu_idle: state=4294967295 cpu_id=0
30752          <idle>-0     (-----) [000] d..2 29481.713252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30753  HwBinder:771_4-20182 (  771) [000] d..2 29481.713308: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30754  HwBinder:771_4-20182 (  771) [000] dn.3 29481.713336: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30755  HwBinder:771_4-20182 (  771) [000] d..2 29481.713346: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30756 cdsp_smem_glink-88    (   88) [000] d..2 29481.713384: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30757  HwBinder:771_4-20182 (  771) [000] d..2 29481.713405: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30758          <idle>-0     (-----) [000] d..1 29481.713420: cpu_idle: state=2 cpu_id=0
30759          <idle>-0     (-----) [002] d.h4 29481.716157: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30760          <idle>-0     (-----) [002] dnh5 29481.716173: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30761          <idle>-0     (-----) [002] .n.1 29481.716184: cpu_idle: state=4294967295 cpu_id=2
30762          <idle>-0     (-----) [002] d..2 29481.716196: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30763 smem_native_cds-87    (   87) [002] d..2 29481.716234: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30764          <idle>-0     (-----) [002] d..2 29481.716238: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30765          <idle>-0     (-----) [002] dn.3 29481.716245: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30766          <idle>-0     (-----) [002] d..2 29481.716251: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30767     ksoftirqd/2-26    (   26) [002] d..2 29481.716267: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30768          <idle>-0     (-----) [002] d..1 29481.716279: cpu_idle: state=0 cpu_id=2
30769          <idle>-0     (-----) [002] d.h4 29481.719161: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30770          <idle>-0     (-----) [002] d.h5 29481.719183: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30771          <idle>-0     (-----) [002] d..2 29481.719216: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30772          <idle>-0     (-----) [002] dn.3 29481.719223: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30773          <idle>-0     (-----) [002] dnH3 29481.719288: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
30774          <idle>-0     (-----) [002] dnH3 29481.719301: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
30775          <idle>-0     (-----) [002] dnH4 29481.719320: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
30776          <idle>-0     (-----) [003] .n.1 29481.719326: cpu_idle: state=4294967295 cpu_id=3
30777          <idle>-0     (-----) [002] .n.1 29481.719332: cpu_idle: state=4294967295 cpu_id=2
30778          <idle>-0     (-----) [003] d..2 29481.719337: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30779          <idle>-0     (-----) [002] d..2 29481.719350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30780         sugov:0-559   (  559) [003] .... 29481.719361: clk_set_rate: pwrcl_clk 652800000
30781     ksoftirqd/2-26    (   26) [002] d..2 29481.719371: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30782         sugov:0-559   (  559) [003] .... 29481.719372: clk_set_rate: cpu3_pwrcl_clk 1420800000
30783         sugov:0-559   (  559) [003] .... 29481.719382: clk_set_rate: cpu2_pwrcl_clk 1420800000
30784          <idle>-0     (-----) [002] d..1 29481.719383: cpu_idle: state=0 cpu_id=2
30785         sugov:0-559   (  559) [003] .... 29481.719392: clk_set_rate: cpu1_pwrcl_clk 1420800000
30786         sugov:0-559   (  559) [003] .... 29481.719402: clk_set_rate: cpu0_pwrcl_clk 652800000
30787          <idle>-0     (-----) [000] .n.1 29481.719485: cpu_idle: state=4294967295 cpu_id=0
30788         sugov:0-559   (  559) [003] .... 29481.719518: cpu_frequency: state=652800 cpu_id=0
30789          <idle>-0     (-----) [000] d..2 29481.719521: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30790         sugov:0-559   (  559) [003] .... 29481.719541: cpu_frequency: state=652800 cpu_id=1
30791         sugov:0-559   (  559) [003] .... 29481.719546: cpu_frequency: state=652800 cpu_id=2
30792         sugov:0-559   (  559) [003] .... 29481.719551: cpu_frequency: state=652800 cpu_id=3
30793         sugov:0-559   (  559) [003] d..2 29481.719600: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30794          <idle>-0     (-----) [003] d..1 29481.719622: cpu_idle: state=0 cpu_id=3
30795  HwBinder:771_4-20182 (  771) [000] d..2 29481.719630: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30796  HwBinder:771_4-20182 (  771) [000] d..3 29481.719684: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30797          <idle>-0     (-----) [002] .n.1 29481.719692: cpu_idle: state=4294967295 cpu_id=2
30798          <idle>-0     (-----) [002] d..2 29481.719707: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30799  HwBinder:771_4-20182 (  771) [000] d..2 29481.719723: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30800          <idle>-0     (-----) [000] d..1 29481.719747: cpu_idle: state=2 cpu_id=0
30801 cdsp_smem_glink-88    (   88) [002] d..2 29481.719768: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30802          <idle>-0     (-----) [002] d..1 29481.719785: cpu_idle: state=2 cpu_id=2
30803          <idle>-0     (-----) [007] dnh2 29481.720389: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
30804          <idle>-0     (-----) [007] .n.1 29481.720400: cpu_idle: state=4294967295 cpu_id=7
30805          <idle>-0     (-----) [007] d..2 29481.720415: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30806         sugov:4-560   (  560) [007] d..2 29481.720444: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30807          <idle>-0     (-----) [007] d..2 29481.720449: sched_waking: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
30808          <idle>-0     (-----) [007] dn.3 29481.720466: sched_wakeup: comm=ksoftirqd/7 pid=66 prio=120 target_cpu=007
30809          <idle>-0     (-----) [007] d..2 29481.720475: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/7 next_pid=66 next_prio=120
30810<...>-66 ( 66) [007] d.s2 29481.720490: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30811<...>-66 ( 66) [007] d..2 29481.720540: sched_switch: prev_comm=ksoftirqd/7 prev_pid=66 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30812          <idle>-0     (-----) [003] dnh2 29481.720541: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30813          <idle>-0     (-----) [007] d..1 29481.720551: cpu_idle: state=2 cpu_id=7
30814          <idle>-0     (-----) [003] .n.1 29481.720551: cpu_idle: state=4294967295 cpu_id=3
30815          <idle>-0     (-----) [003] d..2 29481.720568: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30816  kworker/u16:10-23868 (23868) [003] d..2 29481.720749: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30817          <idle>-0     (-----) [003] d..1 29481.720767: cpu_idle: state=2 cpu_id=3
30818          <idle>-0     (-----) [002] d.h4 29481.724826: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30819          <idle>-0     (-----) [002] dnh5 29481.724866: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30820          <idle>-0     (-----) [002] dnh4 29481.724899: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30821          <idle>-0     (-----) [002] dnh5 29481.724917: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30822          <idle>-0     (-----) [002] .n.1 29481.724966: cpu_idle: state=4294967295 cpu_id=2
30823          <idle>-0     (-----) [002] d..2 29481.724988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30824 smem_native_cds-87    (   87) [002] d..2 29481.725050: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30825          <idle>-0     (-----) [002] d..2 29481.725057: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30826          <idle>-0     (-----) [002] dn.3 29481.725068: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30827          <idle>-0     (-----) [002] d..2 29481.725079: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30828     ksoftirqd/2-26    (   26) [002] d.s2 29481.725090: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
30829     ksoftirqd/2-26    (   26) [002] d.s3 29481.725138: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30830          <idle>-0     (-----) [000] .n.1 29481.725141: cpu_idle: state=4294967295 cpu_id=0
30831     ksoftirqd/2-26    (   26) [002] d..2 29481.725155: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30832          <idle>-0     (-----) [000] d..2 29481.725177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30833  kworker/u16:10-23868 (23868) [002] d..2 29481.725252: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30834          <idle>-0     (-----) [002] d..1 29481.725273: cpu_idle: state=2 cpu_id=2
30835  HwBinder:771_4-20182 (  771) [000] d..2 29481.725281: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30836  HwBinder:771_4-20182 (  771) [000] d..3 29481.725339: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30837  HwBinder:771_4-20182 (  771) [000] d..2 29481.725380: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30838          <idle>-0     (-----) [000] d..1 29481.725404: cpu_idle: state=2 cpu_id=0
30839          <idle>-0     (-----) [002] .n.1 29481.725725: cpu_idle: state=4294967295 cpu_id=2
30840          <idle>-0     (-----) [002] d..2 29481.725754: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30841 cdsp_smem_glink-88    (   88) [002] d..2 29481.725826: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30842          <idle>-0     (-----) [002] d..1 29481.725844: cpu_idle: state=2 cpu_id=2
30843          <idle>-0     (-----) [002] d.h4 29481.731296: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30844          <idle>-0     (-----) [002] dnh5 29481.731331: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30845          <idle>-0     (-----) [002] dnh4 29481.731365: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30846          <idle>-0     (-----) [002] dnh5 29481.731386: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30847          <idle>-0     (-----) [002] .n.1 29481.731436: cpu_idle: state=4294967295 cpu_id=2
30848          <idle>-0     (-----) [002] d..2 29481.731458: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30849 smem_native_cds-87    (   87) [002] d..2 29481.731521: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30850          <idle>-0     (-----) [002] d..2 29481.731527: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30851          <idle>-0     (-----) [002] dn.3 29481.731538: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30852          <idle>-0     (-----) [002] d..2 29481.731551: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30853     ksoftirqd/2-26    (   26) [002] d.s2 29481.731561: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30854     ksoftirqd/2-26    (   26) [002] d.s3 29481.731582: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30855     ksoftirqd/2-26    (   26) [002] d..2 29481.731601: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30856          <idle>-0     (-----) [000] .n.1 29481.731603: cpu_idle: state=4294967295 cpu_id=0
30857          <idle>-0     (-----) [000] d..2 29481.731666: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30858  kworker/u16:10-23868 (23868) [002] d..2 29481.731789: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30859  HwBinder:771_4-20182 (  771) [000] d..2 29481.731792: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30860          <idle>-0     (-----) [002] d..1 29481.731811: cpu_idle: state=2 cpu_id=2
30861  HwBinder:771_4-20182 (  771) [000] d..3 29481.731850: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30862  HwBinder:771_4-20182 (  771) [000] d..2 29481.731890: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30863          <idle>-0     (-----) [000] d..1 29481.731916: cpu_idle: state=2 cpu_id=0
30864          <idle>-0     (-----) [002] .n.1 29481.732278: cpu_idle: state=4294967295 cpu_id=2
30865          <idle>-0     (-----) [002] d..2 29481.732307: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30866 cdsp_smem_glink-88    (   88) [002] d..2 29481.732382: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30867          <idle>-0     (-----) [002] d..1 29481.732399: cpu_idle: state=2 cpu_id=2
30868          <idle>-0     (-----) [002] d.h4 29481.737415: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30869          <idle>-0     (-----) [002] dnh5 29481.737458: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30870          <idle>-0     (-----) [002] dnh4 29481.737492: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30871          <idle>-0     (-----) [002] dnh5 29481.737513: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30872          <idle>-0     (-----) [002] dnh3 29481.737641: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
30873          <idle>-0     (-----) [002] dnh3 29481.737660: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30874          <idle>-0     (-----) [002] dnh4 29481.737677: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
30875          <idle>-0     (-----) [002] .n.1 29481.737689: cpu_idle: state=4294967295 cpu_id=2
30876          <idle>-0     (-----) [002] d..2 29481.737713: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30877          <idle>-0     (-----) [000] .n.1 29481.737714: cpu_idle: state=4294967295 cpu_id=0
30878          <idle>-0     (-----) [000] d..2 29481.737752: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30879 smem_native_cds-87    (   87) [002] d..2 29481.737779: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30880          <idle>-0     (-----) [002] d..2 29481.737786: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30881          <idle>-0     (-----) [002] dn.3 29481.737799: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30882          <idle>-0     (-----) [002] d..2 29481.737811: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30883     ksoftirqd/2-26    (   26) [002] d..2 29481.737837: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30884  HwBinder:771_4-20182 (  771) [000] d..2 29481.737851: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30885          <idle>-0     (-----) [002] d..1 29481.737857: cpu_idle: state=2 cpu_id=2
30886  HwBinder:771_4-20182 (  771) [000] d..3 29481.737921: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
30887  HwBinder:771_4-20182 (  771) [000] d..2 29481.737963: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30888          <idle>-0     (-----) [000] d..1 29481.737987: cpu_idle: state=2 cpu_id=0
30889          <idle>-0     (-----) [003] .n.1 29481.738010: cpu_idle: state=4294967295 cpu_id=3
30890          <idle>-0     (-----) [003] d..2 29481.738036: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30891         sugov:0-559   (  559) [003] d..2 29481.738062: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30892 cdsp_smem_glink-88    (   88) [003] d..2 29481.738135: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30893          <idle>-0     (-----) [003] d..1 29481.738154: cpu_idle: state=2 cpu_id=3
30894          <idle>-0     (-----) [007] dnh2 29481.738733: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
30895          <idle>-0     (-----) [007] .n.1 29481.738743: cpu_idle: state=4294967295 cpu_id=7
30896          <idle>-0     (-----) [007] d..2 29481.738757: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
30897         sugov:4-560   (  560) [007] d..2 29481.738780: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30898          <idle>-0     (-----) [007] d..1 29481.738792: cpu_idle: state=2 cpu_id=7
30899          <idle>-0     (-----) [007] ...1 29481.742558: cpu_idle: state=4294967295 cpu_id=7
30900          <idle>-0     (-----) [007] d..1 29481.742564: cpu_idle: state=2 cpu_id=7
30901          <idle>-0     (-----) [002] d.h4 29481.742611: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30902          <idle>-0     (-----) [002] dnh5 29481.742653: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30903          <idle>-0     (-----) [002] dnh4 29481.742687: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30904          <idle>-0     (-----) [002] dnh5 29481.742706: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30905          <idle>-0     (-----) [002] .n.1 29481.742756: cpu_idle: state=4294967295 cpu_id=2
30906          <idle>-0     (-----) [002] d..2 29481.742780: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30907 smem_native_cds-87    (   87) [002] d..2 29481.742840: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30908          <idle>-0     (-----) [002] d..2 29481.742848: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30909          <idle>-0     (-----) [002] dn.3 29481.742859: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30910          <idle>-0     (-----) [002] d..2 29481.742870: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30911     ksoftirqd/2-26    (   26) [002] d.s2 29481.742881: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30912          <idle>-0     (-----) [000] .n.1 29481.742894: cpu_idle: state=4294967295 cpu_id=0
30913     ksoftirqd/2-26    (   26) [002] d.s3 29481.742907: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30914     ksoftirqd/2-26    (   26) [002] d.s2 29481.742927: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
30915          <idle>-0     (-----) [000] d..2 29481.742930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30916     ksoftirqd/2-26    (   26) [002] dns3 29481.742952: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
30917     ksoftirqd/2-26    (   26) [002] d..2 29481.742967: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
30918  HwBinder:771_4-20182 (  771) [000] d..2 29481.743029: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=003
30919     kworker/2:2-13636 (13636) [002] d..2 29481.743029: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30920     ksoftirqd/2-26    (   26) [002] d..2 29481.743042: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30921  HwBinder:771_4-20182 (  771) [000] d..3 29481.743108: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30922  kworker/u16:10-23868 (23868) [002] d..2 29481.743134: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30923  HwBinder:771_4-20182 (  771) [000] d..2 29481.743162: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30924 cdsp_smem_glink-88    (   88) [002] d..2 29481.743183: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30925          <idle>-0     (-----) [000] d..1 29481.743184: cpu_idle: state=2 cpu_id=0
30926  kworker/u16:10-23868 (23868) [002] d..2 29481.743292: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30927          <idle>-0     (-----) [002] d..1 29481.743317: cpu_idle: state=2 cpu_id=2
30928          <idle>-0     (-----) [002] d.h4 29481.748323: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30929          <idle>-0     (-----) [002] dnh5 29481.748358: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30930          <idle>-0     (-----) [002] dnh4 29481.748393: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30931          <idle>-0     (-----) [002] dnh5 29481.748415: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30932          <idle>-0     (-----) [002] .n.1 29481.748463: cpu_idle: state=4294967295 cpu_id=2
30933          <idle>-0     (-----) [002] d..2 29481.748485: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30934 smem_native_cds-87    (   87) [002] d..2 29481.748551: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30935          <idle>-0     (-----) [002] d..2 29481.748557: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30936          <idle>-0     (-----) [002] dn.3 29481.748570: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30937          <idle>-0     (-----) [002] d..2 29481.748580: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30938     ksoftirqd/2-26    (   26) [002] d..2 29481.748610: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30939          <idle>-0     (-----) [000] .n.1 29481.748625: cpu_idle: state=4294967295 cpu_id=0
30940          <idle>-0     (-----) [002] d..1 29481.748629: cpu_idle: state=2 cpu_id=2
30941          <idle>-0     (-----) [000] d..2 29481.748662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30942  HwBinder:771_4-20182 (  771) [000] d..2 29481.748744: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
30943  HwBinder:771_4-20182 (  771) [000] dn.3 29481.748812: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30944  HwBinder:771_4-20182 (  771) [000] d..2 29481.748828: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30945 cdsp_smem_glink-88    (   88) [000] d..2 29481.748876: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30946  HwBinder:771_4-20182 (  771) [000] d..2 29481.748906: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30947          <idle>-0     (-----) [000] d..1 29481.748927: cpu_idle: state=2 cpu_id=0
30948          <idle>-0     (-----) [002] d.h4 29481.753759: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30949          <idle>-0     (-----) [000] d..2 29481.753762: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
30950          <idle>-0     (-----) [000] dn.3 29481.753793: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
30951          <idle>-0     (-----) [002] dnh5 29481.753800: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30952          <idle>-0     (-----) [000] .n.1 29481.753802: cpu_idle: state=4294967295 cpu_id=0
30953          <idle>-0     (-----) [000] d..2 29481.753826: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
30954          <idle>-0     (-----) [002] dnh4 29481.753836: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30955     ksoftirqd/0-3     (    3) [000] d.s2 29481.753855: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30956          <idle>-0     (-----) [002] dnh5 29481.753870: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
30957     ksoftirqd/0-3     (    3) [000] d.s3 29481.753884: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
30958          <idle>-0     (-----) [002] .n.1 29481.753922: cpu_idle: state=4294967295 cpu_id=2
30959     ksoftirqd/0-3     (    3) [000] d..2 29481.753934: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30960          <idle>-0     (-----) [002] d..2 29481.753951: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30961          <idle>-0     (-----) [000] d..1 29481.753953: cpu_idle: state=2 cpu_id=0
30962 smem_native_cds-87    (   87) [002] d..2 29481.753991: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
30963  kworker/u16:10-23868 (23868) [002] d..2 29481.754113: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30964          <idle>-0     (-----) [002] d..1 29481.754136: cpu_idle: state=2 cpu_id=2
30965          <idle>-0     (-----) [001] .n.1 29481.754212: cpu_idle: state=4294967295 cpu_id=1
30966          <idle>-0     (-----) [001] d..2 29481.754255: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30967  HwBinder:771_4-20182 (  771) [001] d..2 29481.754348: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
30968  HwBinder:771_4-20182 (  771) [001] dn.3 29481.754416: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
30969  HwBinder:771_4-20182 (  771) [001] d..2 29481.754429: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
30970 cdsp_smem_glink-88    (   88) [001] d..2 29481.754479: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30971  HwBinder:771_4-20182 (  771) [001] d..2 29481.754512: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30972          <idle>-0     (-----) [001] d..1 29481.754537: cpu_idle: state=2 cpu_id=1
30973          <idle>-0     (-----) [002] d.h4 29481.758298: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30974          <idle>-0     (-----) [002] dnh5 29481.758345: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
30975          <idle>-0     (-----) [002] dnh4 29481.758381: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
30976          <idle>-0     (-----) [002] dnh5 29481.758411: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
30977          <idle>-0     (-----) [002] dnh3 29481.758532: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
30978          <idle>-0     (-----) [002] dnh3 29481.758551: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
30979          <idle>-0     (-----) [002] dnh4 29481.758569: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
30980          <idle>-0     (-----) [002] .n.1 29481.758581: cpu_idle: state=4294967295 cpu_id=2
30981          <idle>-0     (-----) [000] .n.1 29481.758587: cpu_idle: state=4294967295 cpu_id=0
30982          <idle>-0     (-----) [002] d..2 29481.758605: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
30983          <idle>-0     (-----) [000] d..2 29481.758624: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
30984 smem_native_cds-87    (   87) [002] d..2 29481.758670: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30985          <idle>-0     (-----) [002] d..2 29481.758676: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30986          <idle>-0     (-----) [002] dn.3 29481.758689: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
30987          <idle>-0     (-----) [002] d..2 29481.758701: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
30988  HwBinder:771_4-20182 (  771) [000] d..2 29481.758717: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
30989     ksoftirqd/2-26    (   26) [002] d..2 29481.758729: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30990          <idle>-0     (-----) [002] d..1 29481.758748: cpu_idle: state=2 cpu_id=2
30991  HwBinder:771_4-20182 (  771) [000] d..3 29481.758775: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
30992  HwBinder:771_4-20182 (  771) [000] d..2 29481.758816: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30993          <idle>-0     (-----) [000] d..1 29481.758841: cpu_idle: state=2 cpu_id=0
30994          <idle>-0     (-----) [003] .n.1 29481.758902: cpu_idle: state=4294967295 cpu_id=3
30995          <idle>-0     (-----) [003] d..2 29481.758928: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
30996         sugov:0-559   (  559) [003] d..2 29481.758973: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30997          <idle>-0     (-----) [003] d..1 29481.758991: cpu_idle: state=2 cpu_id=3
30998          <idle>-0     (-----) [001] .n.1 29481.759094: cpu_idle: state=4294967295 cpu_id=1
30999          <idle>-0     (-----) [001] d..2 29481.759123: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
31000 cdsp_smem_glink-88    (   88) [001] d..2 29481.759197: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31001          <idle>-0     (-----) [001] d..1 29481.759215: cpu_idle: state=2 cpu_id=1
31002          <idle>-0     (-----) [007] dnh2 29481.759614: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
31003          <idle>-0     (-----) [007] .n.1 29481.759624: cpu_idle: state=4294967295 cpu_id=7
31004          <idle>-0     (-----) [007] d..2 29481.759637: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
31005         sugov:4-560   (  560) [007] d..2 29481.759659: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31006          <idle>-0     (-----) [007] d..1 29481.759672: cpu_idle: state=2 cpu_id=7
31007          <idle>-0     (-----) [007] ...1 29481.763425: cpu_idle: state=4294967295 cpu_id=7
31008          <idle>-0     (-----) [007] d..1 29481.763430: cpu_idle: state=2 cpu_id=7
31009          <idle>-0     (-----) [002] d.h4 29481.763479: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31010          <idle>-0     (-----) [002] dnh5 29481.763521: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31011          <idle>-0     (-----) [002] dnh4 29481.763556: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31012          <idle>-0     (-----) [002] dnh5 29481.763575: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31013          <idle>-0     (-----) [002] .n.1 29481.763624: cpu_idle: state=4294967295 cpu_id=2
31014          <idle>-0     (-----) [002] d..2 29481.763647: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
31015 smem_native_cds-87    (   87) [002] d..2 29481.763710: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31016          <idle>-0     (-----) [002] d..2 29481.763716: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31017          <idle>-0     (-----) [002] dn.3 29481.763729: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31018          <idle>-0     (-----) [000] .n.1 29481.763757: cpu_idle: state=4294967295 cpu_id=0
31019          <idle>-0     (-----) [002] dns3 29481.763785: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
31020          <idle>-0     (-----) [000] d..2 29481.763792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31021          <idle>-0     (-----) [002] dns4 29481.763810: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
31022          <idle>-0     (-----) [002] dns3 29481.763819: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
31023          <idle>-0     (-----) [002] dns4 29481.763834: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
31024          <idle>-0     (-----) [002] d..2 29481.763862: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
31025  HwBinder:771_4-20182 (  771) [000] d..2 29481.763877: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=001
31026  HwBinder:771_4-20182 (  771) [000] d..3 29481.763950: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
31027     kworker/2:2-13636 (13636) [002] d..2 29481.763977: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
31028  HwBinder:771_4-20182 (  771) [000] d..2 29481.763998: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31029          <idle>-0     (-----) [000] d..1 29481.764020: cpu_idle: state=2 cpu_id=0
31030 cdsp_smem_glink-88    (   88) [002] d..2 29481.764027: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
31031     ksoftirqd/2-26    (   26) [002] d..2 29481.764040: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31032  kworker/u16:10-23868 (23868) [002] d..2 29481.764154: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31033          <idle>-0     (-----) [002] d..1 29481.764177: cpu_idle: state=2 cpu_id=2
31034          <idle>-0     (-----) [002] d.h4 29481.769178: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31035          <idle>-0     (-----) [002] dnh5 29481.769214: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31036          <idle>-0     (-----) [002] dnh4 29481.769249: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31037          <idle>-0     (-----) [002] dnh5 29481.769267: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31038          <idle>-0     (-----) [002] .n.1 29481.769318: cpu_idle: state=4294967295 cpu_id=2
31039          <idle>-0     (-----) [002] d..2 29481.769341: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
31040 smem_native_cds-87    (   87) [002] d..2 29481.769404: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31041          <idle>-0     (-----) [002] d..2 29481.769411: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31042          <idle>-0     (-----) [002] dn.3 29481.769423: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31043          <idle>-0     (-----) [002] d..2 29481.769434: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
31044     ksoftirqd/2-26    (   26) [002] d..2 29481.769466: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31045          <idle>-0     (-----) [000] .n.1 29481.769471: cpu_idle: state=4294967295 cpu_id=0
31046          <idle>-0     (-----) [002] d..1 29481.769487: cpu_idle: state=2 cpu_id=2
31047          <idle>-0     (-----) [000] d..2 29481.769508: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31048  HwBinder:771_4-20182 (  771) [000] d..1 29481.769600: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31049  HwBinder:771_4-20182 (  771) [000] dn.2 29481.769655: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31050  HwBinder:771_4-20182 (  771) [000] d..2 29481.769673: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
31051 neuralnetworks@-13852 (  771) [000] d..2 29481.769796: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31052  HwBinder:771_4-20182 (  771) [000] d..1 29481.769807: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31053  HwBinder:771_4-20182 (  771) [000] dn.2 29481.769829: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31054  HwBinder:771_4-20182 (  771) [000] d..2 29481.769838: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
31055 neuralnetworks@-13852 (  771) [000] d..2 29481.769937: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
31056 neuralnetworks@-13852 (  771) [000] d..3 29481.769990: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
31057 neuralnetworks@-13852 (  771) [000] d..2 29481.770008: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
31058 cdsp_smem_glink-88    (   88) [000] d..2 29481.770056: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31059  HwBinder:771_4-20182 (  771) [000] d..2 29481.770102: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31060          <idle>-0     (-----) [000] d..1 29481.770124: cpu_idle: state=2 cpu_id=0
31061          <idle>-0     (-----) [000] d..2 29481.774004: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
31062          <idle>-0     (-----) [002] d.h4 29481.774012: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31063          <idle>-0     (-----) [000] dn.3 29481.774024: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
31064          <idle>-0     (-----) [000] .n.1 29481.774032: cpu_idle: state=4294967295 cpu_id=0
31065          <idle>-0     (-----) [000] d..2 29481.774054: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
31066          <idle>-0     (-----) [002] dnh5 29481.774055: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31067     ksoftirqd/0-3     (    3) [000] d.s2 29481.774069: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
31068          <idle>-0     (-----) [002] .n.1 29481.774073: cpu_idle: state=4294967295 cpu_id=2
31069          <idle>-0     (-----) [002] d..2 29481.774103: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
31070     ksoftirqd/0-3     (    3) [000] d.s3 29481.774128: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31071     ksoftirqd/0-3     (    3) [000] d..2 29481.774151: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31072 smem_native_cds-87    (   87) [002] d..2 29481.774173: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31073          <idle>-0     (-----) [002] d..1 29481.774193: cpu_idle: state=2 cpu_id=2
31074  kworker/u16:10-23868 (23868) [000] d..2 29481.774539: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
31075          <idle>-0     (-----) [000] d..1 29481.774561: cpu_idle: state=2 cpu_id=0
31076          <idle>-0     (-----) [003] d.s3 29481.774878: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31077          <idle>-0     (-----) [003] d.s4 29481.774931: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
31078          <idle>-0     (-----) [003] dns4 29481.774940: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
31079          <idle>-0     (-----) [003] .n.1 29481.774956: cpu_idle: state=4294967295 cpu_id=3
31080          <idle>-0     (-----) [003] d..2 29481.774978: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31081  kworker/u16:10-23868 (23868) [003] d..2 29481.775030: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31082          <idle>-0     (-----) [003] d..1 29481.775048: cpu_idle: state=2 cpu_id=3
31083          <idle>-0     (-----) [002] d.h4 29481.781070: sched_waking: comm=cdsprpcd pid=900 prio=120 target_cpu=002
31084          <idle>-0     (-----) [000] d..2 29481.781162: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
31085          <idle>-0     (-----) [002] dnh5 29481.781179: sched_wakeup: comm=cdsprpcd pid=900 prio=120 target_cpu=002
31086          <idle>-0     (-----) [000] dn.3 29481.781196: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
31087          <idle>-0     (-----) [000] .n.1 29481.781209: cpu_idle: state=4294967295 cpu_id=0
31088          <idle>-0     (-----) [002] dnh4 29481.781241: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31089          <idle>-0     (-----) [000] d..2 29481.781272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
31090          <idle>-0     (-----) [002] dnh5 29481.781292: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31091     ksoftirqd/0-3     (    3) [000] d..2 29481.781316: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
31092 neuralnetworks@-13852 (  771) [000] d..1 29481.781379: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31093          <idle>-0     (-----) [002] dnh3 29481.781498: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
31094 neuralnetworks@-13852 (  771) [000] d..2 29481.781504: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
31095          <idle>-0     (-----) [002] dnh3 29481.781529: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
31096          <idle>-0     (-----) [002] dnh4 29481.781554: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
31097          <idle>-0     (-----) [002] .n.1 29481.781566: cpu_idle: state=4294967295 cpu_id=2
31098          <idle>-0     (-----) [002] d..2 29481.781598: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsprpcd next_pid=900 next_prio=120
31099 neuralnetworks@-13852 (  771) [000] d..2 29481.781621: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31100          <idle>-0     (-----) [000] d..1 29481.781657: cpu_idle: state=2 cpu_id=0
31101          <idle>-0     (-----) [001] .n.1 29481.781681: cpu_idle: state=4294967295 cpu_id=1
31102          <idle>-0     (-----) [001] d..2 29481.781720: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31103          <idle>-0     (-----) [003] .n.1 29481.781737: cpu_idle: state=4294967295 cpu_id=3
31104          <idle>-0     (-----) [003] d..2 29481.781769: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
31105         sugov:0-559   (  559) [003] d..2 29481.781824: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31106  HwBinder:771_4-20182 (  771) [001] d..2 29481.781838: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
31107        cdsprpcd-900   (  849) [002] d..2 29481.781843: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
31108          <idle>-0     (-----) [003] d..1 29481.781843: cpu_idle: state=2 cpu_id=3
31109  HwBinder:771_4-20182 (  771) [001] d..3 29481.781931: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
31110        cdsprpcd-900   (  849) [002] d..3 29481.781952: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
31111  HwBinder:771_4-20182 (  771) [001] d..2 29481.781994: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31112          <idle>-0     (-----) [001] d..1 29481.782017: cpu_idle: state=2 cpu_id=1
31113        cdsprpcd-900   (  849) [002] d..2 29481.782169: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
31114        cdsprpcd-900   (  849) [002] d..3 29481.782224: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
31115          <idle>-0     (-----) [007] dnh2 29481.782255: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
31116          <idle>-0     (-----) [007] .n.1 29481.782266: cpu_idle: state=4294967295 cpu_id=7
31117          <idle>-0     (-----) [007] d..2 29481.782280: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
31118         sugov:4-560   (  560) [007] d..2 29481.782306: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31119          <idle>-0     (-----) [007] d..1 29481.782318: cpu_idle: state=2 cpu_id=7
31120        cdsprpcd-900   (  849) [002] d..2 29481.782368: sched_switch: prev_comm=cdsprpcd prev_pid=900 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
31121         rcuop/2-29    (   29) [002] d..2 29481.782383: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
31122         rcuop/2-29    (   29) [002] d..3 29481.782416: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
31123         rcuop/2-29    (   29) [002] d..2 29481.782431: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
31124     logd.writer-563   (  555) [002] d..2 29481.782666: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31125     rcu_preempt-7     (    7) [002] d..2 29481.782701: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
31126 cdsp_smem_glink-88    (   88) [002] d.h4 29481.782756: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31127 cdsp_smem_glink-88    (   88) [002] d.h5 29481.782790: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31128 cdsp_smem_glink-88    (   88) [002] d..2 29481.782849: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=87 next_prio=120
31129 smem_native_cds-87    (   87) [002] d..2 29481.782917: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31130          <idle>-0     (-----) [002] d..1 29481.782943: cpu_idle: state=0 cpu_id=2
31131          <idle>-0     (-----) [002] d.s2 29481.787126: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
31132          <idle>-0     (-----) [002] dns3 29481.787148: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
31133          <idle>-0     (-----) [002] dns3 29481.787165: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
31134          <idle>-0     (-----) [002] dns4 29481.787219: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
31135          <idle>-0     (-----) [002] .n.1 29481.787263: cpu_idle: state=4294967295 cpu_id=2
31136          <idle>-0     (-----) [002] d..2 29481.787282: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31137     rcu_preempt-7     (    7) [002] d..2 29481.787308: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
31138     rcu_preempt-7     (    7) [002] d..3 29481.787326: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
31139     rcu_preempt-7     (    7) [002] d..2 29481.787342: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
31140         rcuop/2-29    (   29) [002] d..2 29481.787387: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31141  kworker/u16:10-23868 (23868) [002] d..2 29481.787607: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31142          <idle>-0     (-----) [002] d..1 29481.787628: cpu_idle: state=2 cpu_id=2
31143          <idle>-0     (-----) [002] d.h4 29481.806639: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
31144          <idle>-0     (-----) [000] d..2 29481.806739: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
31145          <idle>-0     (-----) [002] d.h5 29481.806764: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31146          <idle>-0     (-----) [000] dn.3 29481.806795: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
31147          <idle>-0     (-----) [000] .n.1 29481.806815: cpu_idle: state=4294967295 cpu_id=0
31148          <idle>-0     (-----) [000] d..2 29481.806872: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
31149     ksoftirqd/0-3     (    3) [000] d.s2 29481.806903: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
31150          <idle>-0     (-----) [002] d..2 29481.807008: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31151          <idle>-0     (-----) [002] dn.3 29481.807028: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31152          <idle>-0     (-----) [002] dnh3 29481.807051: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
31153     ksoftirqd/0-3     (    3) [000] d.s3 29481.807057: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31154          <idle>-0     (-----) [002] dnh3 29481.807080: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
31155          <idle>-0     (-----) [002] dnh4 29481.807106: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
31156          <idle>-0     (-----) [002] .n.1 29481.807127: cpu_idle: state=4294967295 cpu_id=2
31157          <idle>-0     (-----) [002] d..2 29481.807156: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
31158     ksoftirqd/0-3     (    3) [000] d..2 29481.807167: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31159     ksoftirqd/2-26    (   26) [002] d..2 29481.807236: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31160  HwBinder:771_4-20182 (  771) [000] d..1 29481.807246: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31161          <idle>-0     (-----) [003] .n.1 29481.807285: cpu_idle: state=4294967295 cpu_id=3
31162  HwBinder:771_4-20182 (  771) [000] d..2 29481.807304: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=003
31163          <idle>-0     (-----) [003] d..2 29481.807320: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
31164         sugov:0-559   (  559) [003] d..2 29481.807359: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
31165 neuralnetworks@-13852 (  771) [003] d..2 29481.807496: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31166          <idle>-0     (-----) [003] d..1 29481.807526: cpu_idle: state=2 cpu_id=3
31167  HwBinder:771_4-20182 (  771) [000] ...1 29481.807574: tracing_mark_write: B|771|HIDL::IPreparedModelCallback::notify::client
31168  kworker/u16:10-23868 (23868) [002] d..2 29481.807580: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31169  HwBinder:771_4-20182 (  771) [000] ...1 29481.807588: tracing_mark_write: E|771
31170          <idle>-0     (-----) [002] d..1 29481.807606: cpu_idle: state=2 cpu_id=2
31171          <idle>-0     (-----) [007] dnh2 29481.807810: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
31172  HwBinder:771_4-20182 (  771) [000] .... 29481.807811: binder_transaction: transaction=1693583 dest_node=1693581 dest_proc=13707 dest_thread=0 reply=0 flags=0x11 code=0x1
31173          <idle>-0     (-----) [007] .n.1 29481.807821: cpu_idle: state=4294967295 cpu_id=7
31174          <idle>-0     (-----) [007] d..2 29481.807833: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
31175         sugov:4-560   (  560) [007] d..2 29481.807859: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31176  HwBinder:771_4-20182 (  771) [000] d..4 29481.807864: sched_waking: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=002
31177          <idle>-0     (-----) [007] d..1 29481.807870: cpu_idle: state=2 cpu_id=7
31178  HwBinder:771_4-20182 (  771) [000] d..5 29481.807911: sched_wakeup: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=001
31179  HwBinder:771_4-20182 (  771) [000] ...1 29481.807996: tracing_mark_write: E|771
31180  HwBinder:771_4-20182 (  771) [000] .... 29481.808024: binder_transaction: transaction=1693586 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
31181  HwBinder:771_4-20182 (  771) [000] d..2 29481.808035: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
31182          <idle>-0     (-----) [001] .n.1 29481.808191: cpu_idle: state=4294967295 cpu_id=1
31183          <idle>-0     (-----) [001] d..2 29481.808231: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
31184  HwBinder:771_4-20182 (  771) [000] d..2 29481.808238: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31185 HwBinder:13707_-13708 (13707) [001] .... 29481.808255: binder_transaction_received: transaction=1693583
31186          <idle>-0     (-----) [000] d..1 29481.808269: cpu_idle: state=2 cpu_id=0
31187 HwBinder:13707_-13708 (13707) [001] ...1 29481.808601: tracing_mark_write: B|13707|HIDL::IPreparedModelCallback::notify::server
31188 HwBinder:13707_-13708 (13707) [001] ...1 29481.808625: tracing_mark_write: E|13707
31189 HwBinder:13707_-13708 (13707) [001] d..2 29481.808727: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31190          <idle>-0     (-----) [001] d..1 29481.808755: cpu_idle: state=2 cpu_id=1
31191          <idle>-0     (-----) [006] dnh2 29481.808837: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
31192          <idle>-0     (-----) [006] .n.1 29481.808848: cpu_idle: state=4294967295 cpu_id=6
31193          <idle>-0     (-----) [006] d..2 29481.808865: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
31194 NeuralNetworksT-13707 (13707) [006] .... 29481.808877: binder_transaction_received: transaction=1693586
31195 NeuralNetworksT-13707 (13707) [006] ...1 29481.808967: tracing_mark_write: E|13707
31196 NeuralNetworksT-13707 (13707) [006] ...1 29481.809050: tracing_mark_write: E|13707
31197 NeuralNetworksT-13707 (13707) [006] ...1 29481.809054: tracing_mark_write: E|13707
31198 NeuralNetworksT-13707 (13707) [006] ...1 29481.809058: tracing_mark_write: E|13707
31199 NeuralNetworksT-13707 (13707) [006] ...1 29481.809089: tracing_mark_write: B|13707|[NN_LA_PE]executeWithCompilation example
31200 NeuralNetworksT-13707 (13707) [006] ...1 29481.809338: tracing_mark_write: B|13707|[NN_LR_PE]ANeuralNetworksExecution_create
31201 NeuralNetworksT-13707 (13707) [006] d..2 29481.809436: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
31202 NeuralNetworksT-13707 (13707) [006] ...1 29481.809502: tracing_mark_write: E|13707
31203 NeuralNetworksT-13707 (13707) [006] ...1 29481.809510: tracing_mark_write: B|13707|[SW][NN_LA_PIO]executeWithCompilation example
31204 NeuralNetworksT-13707 (13707) [006] ...1 29481.809518: tracing_mark_write: B|13707|[NN_LR_PIO]ANeuralNetworksExecution_setInput
31205 NeuralNetworksT-13707 (13707) [006] ...1 29481.809526: tracing_mark_write: E|13707
31206 NeuralNetworksT-13707 (13707) [006] ...1 29481.809543: tracing_mark_write: B|13707|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
31207 NeuralNetworksT-13707 (13707) [006] ...1 29481.809549: tracing_mark_write: E|13707
31208 NeuralNetworksT-13707 (13707) [006] ...1 29481.809553: tracing_mark_write: B|13707|[SW][NN_LA_PE]executeWithCompilation example
31209 NeuralNetworksT-13707 (13707) [006] ...1 29481.809558: tracing_mark_write: B|13707|[NN_LR_PE]ANeuralNetworksExecution_startCompute
31210          <idle>-0     (-----) [002] dnh2 29481.809714: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
31211          <idle>-0     (-----) [002] .n.1 29481.809728: cpu_idle: state=4294967295 cpu_id=2
31212 NeuralNetworksT-13707 (13707) [006] ...1 29481.809738: tracing_mark_write: E|13707
31213 NeuralNetworksT-13707 (13707) [006] ...1 29481.809744: tracing_mark_write: B|13707|[NN_LR_PE]ANeuralNetworksEvent_wait
31214          <idle>-0     (-----) [002] d..2 29481.809749: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
31215 NeuralNetworksT-13707 (13707) [006] d..2 29481.809768: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31216          <idle>-0     (-----) [006] d..1 29481.809787: cpu_idle: state=2 cpu_id=6
31217          <idle>-0     (-----) [000] .n.1 29481.809894: cpu_idle: state=4294967295 cpu_id=0
31218          <idle>-0     (-----) [000] d..2 29481.809925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13709 next_prio=120
31219     logd.writer-563   (  555) [002] d..2 29481.809972: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31220          <idle>-0     (-----) [002] d..1 29481.809994: cpu_idle: state=2 cpu_id=2
31221 NeuralNetworksT-13709 (13707) [000] d..2 29481.810118: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=002
31222 NeuralNetworksT-13709 (13707) [000] d..3 29481.810155: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
31223 NeuralNetworksT-13709 (13707) [000] ...1 29481.810612: tracing_mark_write: B|13707|[NN_LR_PIO]StepExecutor::startComputeOnDevice
31224 NeuralNetworksT-13709 (13707) [000] ...1 29481.810638: tracing_mark_write: B|13707|HIDL::IAllocator::allocate::client
31225 NeuralNetworksT-13709 (13707) [000] ...1 29481.810645: tracing_mark_write: E|13707
31226 NeuralNetworksT-13709 (13707) [000] .... 29481.810693: binder_transaction: transaction=1693587 dest_node=729 dest_proc=753 dest_thread=0 reply=0 flags=0x10 code=0x1
31227 NeuralNetworksT-13709 (13707) [000] d..4 29481.810712: sched_waking: comm=allocator@1.0-s pid=753 prio=120 target_cpu=006
31228 NeuralNetworksT-13709 (13707) [000] d..5 29481.810796: sched_wakeup: comm=allocator@1.0-s pid=753 prio=120 target_cpu=001
31229 NeuralNetworksT-13709 (13707) [000] d.h5 29481.810853: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
31230 NeuralNetworksT-13709 (13707) [000] d.h5 29481.810870: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
31231 NeuralNetworksT-13709 (13707) [000] d.h6 29481.810886: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
31232 NeuralNetworksT-13709 (13707) [000] d..2 29481.810929: sched_switch: prev_comm=NeuralNetworksT prev_pid=13709 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
31233          <idle>-0     (-----) [001] .n.1 29481.810957: cpu_idle: state=4294967295 cpu_id=1
31234          <idle>-0     (-----) [001] d..2 29481.810995: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=allocator@1.0-s next_pid=753 next_prio=120
31235 allocator@1.0-s-753   (  753) [001] .... 29481.811014: binder_transaction_received: transaction=1693587
31236          <idle>-0     (-----) [003] .n.1 29481.811062: cpu_idle: state=4294967295 cpu_id=3
31237 allocator@1.0-s-753   (  753) [001] ...2 29481.811092: tracing_mark_write: B|753|HIDL::IAllocator::allocate::server
31238          <idle>-0     (-----) [003] d..2 29481.811093: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
31239         sugov:0-559   (  559) [003] d..2 29481.811146: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31240          <idle>-0     (-----) [003] d..1 29481.811163: cpu_idle: state=2 cpu_id=3
31241     logd.writer-563   (  555) [000] d..2 29481.811175: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
31242     logd.writer-563   (  555) [000] d..3 29481.811246: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
31243 allocator@1.0-s-753   (  753) [001] ...1 29481.811399: tracing_mark_write: E|753
31244 allocator@1.0-s-753   (  753) [001] .... 29481.811419: binder_transaction: transaction=1693588 dest_node=0 dest_proc=13707 dest_thread=13709 reply=1 flags=0x0 code=0x0
31245 allocator@1.0-s-753   (  753) [001] d..2 29481.811448: sched_waking: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=000
31246 allocator@1.0-s-753   (  753) [001] d..3 29481.811518: sched_wakeup: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=001
31247          <idle>-0     (-----) [007] dnh2 29481.811573: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
31248          <idle>-0     (-----) [007] .n.1 29481.811583: cpu_idle: state=4294967295 cpu_id=7
31249          <idle>-0     (-----) [007] d..2 29481.811595: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
31250 allocator@1.0-s-753   (  753) [001] d..2 29481.811598: sched_switch: prev_comm=allocator@1.0-s prev_pid=753 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
31251         rcuop/0-10    (   10) [001] d..2 29481.811613: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
31252         sugov:4-560   (  560) [007] d..2 29481.811616: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31253          <idle>-0     (-----) [007] d..1 29481.811625: cpu_idle: state=2 cpu_id=7
31254     logd.writer-563   (  555) [000] d..2 29481.811640: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31255         rcuop/0-10    (   10) [001] d..3 29481.811672: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31256         rcuop/0-10    (   10) [001] d..2 29481.811690: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13709 next_prio=120
31257          <idle>-0     (-----) [000] d..2 29481.811699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31258 NeuralNetworksT-13709 (13707) [001] .... 29481.811700: binder_transaction_received: transaction=1693588
31259     rcu_preempt-7     (    7) [000] d..2 29481.811739: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31260          <idle>-0     (-----) [000] d..1 29481.811753: cpu_idle: state=0 cpu_id=0
31261 NeuralNetworksT-13709 (13707) [001] d..2 29481.811940: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
31262 NeuralNetworksT-13709 (13707) [001] d..3 29481.811974: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
31263 NeuralNetworksT-13709 (13707) [001] ...1 29481.812076: tracing_mark_write: B|13707|HIDL::IAllocator::allocate::client
31264 NeuralNetworksT-13709 (13707) [001] ...1 29481.812087: tracing_mark_write: E|13707
31265 NeuralNetworksT-13709 (13707) [001] .... 29481.812121: binder_transaction: transaction=1693589 dest_node=729 dest_proc=753 dest_thread=0 reply=0 flags=0x10 code=0x1
31266 NeuralNetworksT-13709 (13707) [001] d..4 29481.812133: sched_waking: comm=allocator@1.0-s pid=753 prio=120 target_cpu=001
31267 NeuralNetworksT-13709 (13707) [001] d..5 29481.812176: sched_wakeup: comm=allocator@1.0-s pid=753 prio=120 target_cpu=000
31268          <idle>-0     (-----) [000] .n.1 29481.812183: cpu_idle: state=4294967295 cpu_id=0
31269          <idle>-0     (-----) [000] d..2 29481.812199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=allocator@1.0-s next_pid=753 next_prio=120
31270 NeuralNetworksT-13709 (13707) [001] d..2 29481.812201: sched_switch: prev_comm=NeuralNetworksT prev_pid=13709 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
31271 allocator@1.0-s-753   (  753) [000] .... 29481.812216: binder_transaction_received: transaction=1693589
31272 allocator@1.0-s-753   (  753) [000] ...2 29481.812259: tracing_mark_write: B|753|HIDL::IAllocator::allocate::server
31273     logd.writer-563   (  555) [001] d..2 29481.812373: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31274 allocator@1.0-s-753   (  753) [000] d..2 29481.812393: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
31275          <idle>-0     (-----) [001] d..1 29481.812400: cpu_idle: state=2 cpu_id=1
31276 allocator@1.0-s-753   (  753) [000] d..3 29481.812429: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
31277 allocator@1.0-s-753   (  753) [000] ...1 29481.812487: tracing_mark_write: E|753
31278 allocator@1.0-s-753   (  753) [000] .... 29481.812505: binder_transaction: transaction=1693590 dest_node=0 dest_proc=13707 dest_thread=13709 reply=1 flags=0x0 code=0x0
31279 allocator@1.0-s-753   (  753) [000] d..2 29481.812525: sched_waking: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=001
31280 allocator@1.0-s-753   (  753) [000] d..3 29481.812559: sched_wakeup: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=001
31281 allocator@1.0-s-753   (  753) [000] d..2 29481.812624: sched_switch: prev_comm=allocator@1.0-s prev_pid=753 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
31282          <idle>-0     (-----) [001] .n.1 29481.812718: cpu_idle: state=4294967295 cpu_id=1
31283     logd.writer-563   (  555) [000] d..2 29481.812735: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31284          <idle>-0     (-----) [001] d..2 29481.812751: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13709 next_prio=120
31285          <idle>-0     (-----) [000] d..1 29481.812762: cpu_idle: state=0 cpu_id=0
31286 NeuralNetworksT-13709 (13707) [001] .... 29481.812768: binder_transaction_received: transaction=1693590
31287 NeuralNetworksT-13709 (13707) [001] d..2 29481.812943: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
31288 NeuralNetworksT-13709 (13707) [001] d..3 29481.812982: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
31289 NeuralNetworksT-13709 (13707) [001] ...1 29481.813530: tracing_mark_write: B|13707|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
31290 NeuralNetworksT-13709 (13707) [001] ...1 29481.813908: tracing_mark_write: B|13707|HIDL::IPreparedModel::execute::client
31291 NeuralNetworksT-13709 (13707) [001] ...1 29481.813918: tracing_mark_write: E|13707
31292 NeuralNetworksT-13709 (13707) [001] .... 29481.814061: binder_transaction: transaction=1693591 dest_node=1693584 dest_proc=771 dest_thread=0 reply=0 flags=0x10 code=0x1
31293 NeuralNetworksT-13709 (13707) [001] d..4 29481.814104: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31294 NeuralNetworksT-13709 (13707) [001] d..5 29481.814136: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31295          <idle>-0     (-----) [000] .n.1 29481.814145: cpu_idle: state=4294967295 cpu_id=0
31296 NeuralNetworksT-13709 (13707) [001] d..2 29481.814162: sched_switch: prev_comm=NeuralNetworksT prev_pid=13709 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
31297          <idle>-0     (-----) [000] d..2 29481.814169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31298  HwBinder:771_4-20182 (  771) [000] .... 29481.814185: binder_transaction_received: transaction=1693591
31299  HwBinder:771_4-20182 (  771) [000] ...1 29481.814296: tracing_mark_write: B|771|HIDL::IPreparedModel::execute::server
31300     logd.writer-563   (  555) [001] d..2 29481.814379: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31301          <idle>-0     (-----) [001] d..1 29481.814406: cpu_idle: state=2 cpu_id=1
31302  HwBinder:771_4-20182 (  771) [000] d..2 29481.814421: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=002
31303  HwBinder:771_4-20182 (  771) [000] d..3 29481.814495: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
31304  HwBinder:771_4-20182 (  771) [000] d..2 29481.814516: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
31305 cdsp_smem_glink-88    (   88) [000] d..2 29481.814579: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31306          <idle>-0     (-----) [000] d..1 29481.814598: cpu_idle: state=0 cpu_id=0
31307          <idle>-0     (-----) [002] d.h4 29481.814750: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31308          <idle>-0     (-----) [002] dnh5 29481.814798: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31309          <idle>-0     (-----) [002] dnh4 29481.814823: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31310          <idle>-0     (-----) [002] dnh5 29481.814840: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31311          <idle>-0     (-----) [000] .n.1 29481.814850: cpu_idle: state=4294967295 cpu_id=0
31312          <idle>-0     (-----) [000] d..2 29481.814863: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31313          <idle>-0     (-----) [002] .n.1 29481.814889: cpu_idle: state=4294967295 cpu_id=2
31314          <idle>-0     (-----) [002] d..2 29481.814914: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
31315 smem_native_cds-87    (   87) [002] d..2 29481.814975: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31316          <idle>-0     (-----) [002] d..1 29481.814995: cpu_idle: state=2 cpu_id=2
31317  HwBinder:771_4-20182 (  771) [000] d..1 29481.815006: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=003
31318  HwBinder:771_4-20182 (  771) [000] d..2 29481.815065: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31319  HwBinder:771_4-20182 (  771) [000] d..2 29481.815332: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
31320  HwBinder:771_4-20182 (  771) [000] d..3 29481.815367: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
31321  HwBinder:771_4-20182 (  771) [000] d..2 29481.815387: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
31322 neuralnetworks@-13852 (  771) [000] d..2 29481.815438: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
31323 cdsp_smem_glink-88    (   88) [000] d..2 29481.815492: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31324          <idle>-0     (-----) [000] d..1 29481.815510: cpu_idle: state=0 cpu_id=0
31325          <idle>-0     (-----) [002] d.h4 29481.815655: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31326          <idle>-0     (-----) [002] dnh5 29481.815687: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31327          <idle>-0     (-----) [002] .n.1 29481.815703: cpu_idle: state=4294967295 cpu_id=2
31328          <idle>-0     (-----) [002] d..2 29481.815728: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
31329 smem_native_cds-87    (   87) [002] d..2 29481.815794: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31330          <idle>-0     (-----) [002] d..1 29481.815816: cpu_idle: state=2 cpu_id=2
31331          <idle>-0     (-----) [000] d.H3 29481.817174: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
31332          <idle>-0     (-----) [000] d.H3 29481.817194: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
31333          <idle>-0     (-----) [000] d.H4 29481.817211: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
31334          <idle>-0     (-----) [000] d.s2 29481.817222: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31335          <idle>-0     (-----) [000] dns3 29481.817244: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31336          <idle>-0     (-----) [000] dns3 29481.817252: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
31337          <idle>-0     (-----) [000] dns4 29481.817295: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31338          <idle>-0     (-----) [000] .n.1 29481.817326: cpu_idle: state=4294967295 cpu_id=0
31339          <idle>-0     (-----) [000] d..2 29481.817340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31340     rcu_preempt-7     (    7) [000] d..2 29481.817370: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31341          <idle>-0     (-----) [003] .n.1 29481.817371: cpu_idle: state=4294967295 cpu_id=3
31342          <idle>-0     (-----) [003] d..2 29481.817403: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
31343  kworker/u16:10-23868 (23868) [000] .... 29481.817454: clk_set_rate: l3_cluster0_vote_clk 403200000
31344  kworker/u16:10-23868 (23868) [000] .... 29481.817464: clk_set_rate: l3_clk 403200000
31345         sugov:0-559   (  559) [003] .... 29481.817528: clk_set_rate: pwrcl_clk 825600000
31346         sugov:0-559   (  559) [003] .... 29481.817546: clk_set_rate: cpu3_pwrcl_clk 652800000
31347         sugov:0-559   (  559) [003] .... 29481.817558: clk_set_rate: cpu2_pwrcl_clk 652800000
31348         sugov:0-559   (  559) [003] .... 29481.817566: clk_set_rate: cpu1_pwrcl_clk 652800000
31349         sugov:0-559   (  559) [003] .... 29481.817576: clk_set_rate: cpu0_pwrcl_clk 825600000
31350         sugov:0-559   (  559) [003] .... 29481.817589: cpu_frequency: state=825600 cpu_id=0
31351         sugov:0-559   (  559) [003] .... 29481.817637: cpu_frequency: state=825600 cpu_id=1
31352         sugov:0-559   (  559) [003] .... 29481.817642: cpu_frequency: state=825600 cpu_id=2
31353         sugov:0-559   (  559) [003] .... 29481.817646: cpu_frequency: state=825600 cpu_id=3
31354         sugov:0-559   (  559) [003] d..2 29481.817690: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31355          <idle>-0     (-----) [003] d..1 29481.817705: cpu_idle: state=2 cpu_id=3
31356  kworker/u16:10-23868 (23868) [000] d..2 29481.817850: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
31357          <idle>-0     (-----) [000] d..1 29481.817868: cpu_idle: state=0 cpu_id=0
31358          <idle>-0     (-----) [007] dnh2 29481.817882: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
31359          <idle>-0     (-----) [007] .n.1 29481.817891: cpu_idle: state=4294967295 cpu_id=7
31360          <idle>-0     (-----) [007] d..2 29481.817903: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
31361         sugov:4-560   (  560) [007] d..2 29481.817926: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31362          <idle>-0     (-----) [007] d..1 29481.817936: cpu_idle: state=2 cpu_id=7
31363          <idle>-0     (-----) [003] d.s3 29481.818044: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31364          <idle>-0     (-----) [003] d.s4 29481.818062: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
31365          <idle>-0     (-----) [003] d.s4 29481.818076: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31366          <idle>-0     (-----) [000] .n.1 29481.818082: cpu_idle: state=4294967295 cpu_id=0
31367          <idle>-0     (-----) [003] ...1 29481.818092: cpu_idle: state=4294967295 cpu_id=3
31368          <idle>-0     (-----) [000] d..2 29481.818095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31369          <idle>-0     (-----) [003] d..1 29481.818100: cpu_idle: state=2 cpu_id=3
31370  kworker/u16:10-23868 (23868) [000] d..2 29481.818128: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31371          <idle>-0     (-----) [000] d..1 29481.818139: cpu_idle: state=0 cpu_id=0
31372          <idle>-0     (-----) [002] d.h4 29481.821669: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31373          <idle>-0     (-----) [002] d.h5 29481.821698: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31374          <idle>-0     (-----) [000] .n.1 29481.821704: cpu_idle: state=4294967295 cpu_id=0
31375          <idle>-0     (-----) [000] d..2 29481.821718: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31376          <idle>-0     (-----) [002] d..2 29481.821730: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31377          <idle>-0     (-----) [002] dn.3 29481.821741: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
31378          <idle>-0     (-----) [002] .n.1 29481.821746: cpu_idle: state=4294967295 cpu_id=2
31379          <idle>-0     (-----) [002] d..2 29481.821765: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
31380  HwBinder:771_4-20182 (  771) [000] d..1 29481.821787: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31381     ksoftirqd/2-26    (   26) [002] d..2 29481.821805: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31382          <idle>-0     (-----) [002] d..1 29481.821824: cpu_idle: state=0 cpu_id=2
31383  HwBinder:771_4-20182 (  771) [000] d..2 29481.821840: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=002
31384          <idle>-0     (-----) [002] .n.1 29481.821846: cpu_idle: state=4294967295 cpu_id=2
31385          <idle>-0     (-----) [002] d..2 29481.821859: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
31386 neuralnetworks@-13852 (  771) [002] d..2 29481.821909: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31387          <idle>-0     (-----) [002] d..1 29481.821924: cpu_idle: state=0 cpu_id=2
31388  HwBinder:771_4-20182 (  771) [000] ...1 29481.821998: tracing_mark_write: B|771|HIDL::IExecutionCallback::notify::client
31389  HwBinder:771_4-20182 (  771) [000] ...1 29481.822006: tracing_mark_write: E|771
31390  HwBinder:771_4-20182 (  771) [000] .... 29481.822038: binder_transaction: transaction=1693594 dest_node=1693592 dest_proc=13707 dest_thread=0 reply=0 flags=0x11 code=0x1
31391  HwBinder:771_4-20182 (  771) [000] d..4 29481.822047: sched_waking: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=001
31392  HwBinder:771_4-20182 (  771) [000] d..5 29481.822071: sched_wakeup: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=001
31393  HwBinder:771_4-20182 (  771) [000] ...1 29481.822113: tracing_mark_write: E|771
31394  HwBinder:771_4-20182 (  771) [000] .... 29481.822127: binder_transaction: transaction=1693595 dest_node=0 dest_proc=13707 dest_thread=13709 reply=1 flags=0x0 code=0x0
31395  HwBinder:771_4-20182 (  771) [000] d..2 29481.822134: sched_waking: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=001
31396  HwBinder:771_4-20182 (  771) [000] d..3 29481.822156: sched_wakeup: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=000
31397          <idle>-0     (-----) [001] .n.1 29481.822218: cpu_idle: state=4294967295 cpu_id=1
31398  HwBinder:771_4-20182 (  771) [000] d..2 29481.822224: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13709 next_prio=120
31399 NeuralNetworksT-13709 (13707) [000] .... 29481.822237: binder_transaction_received: transaction=1693595
31400          <idle>-0     (-----) [001] d..2 29481.822244: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
31401 HwBinder:13707_-13708 (13707) [001] .... 29481.822256: binder_transaction_received: transaction=1693594
31402 NeuralNetworksT-13709 (13707) [000] d..2 29481.822299: sched_switch: prev_comm=NeuralNetworksT prev_pid=13709 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31403 HwBinder:13707_-13708 (13707) [001] ...1 29481.822304: tracing_mark_write: B|13707|HIDL::IExecutionCallback::notify::server
31404 HwBinder:13707_-13708 (13707) [001] d..1 29481.822313: sched_waking: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=000
31405          <idle>-0     (-----) [000] d..1 29481.822314: cpu_idle: state=0 cpu_id=0
31406 HwBinder:13707_-13708 (13707) [001] d..2 29481.822345: sched_wakeup: comm=NeuralNetworksT pid=13709 prio=120 target_cpu=000
31407          <idle>-0     (-----) [000] .n.1 29481.822352: cpu_idle: state=4294967295 cpu_id=0
31408 HwBinder:13707_-13708 (13707) [001] ...1 29481.822358: tracing_mark_write: E|13707
31409          <idle>-0     (-----) [000] d..2 29481.822364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13709 next_prio=120
31410 NeuralNetworksT-13709 (13707) [000] ...1 29481.822387: tracing_mark_write: B|13707|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
31411 NeuralNetworksT-13709 (13707) [000] ...1 29481.822397: tracing_mark_write: B|13707|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
31412 HwBinder:13707_-13708 (13707) [001] d..2 29481.822414: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31413          <idle>-0     (-----) [001] d..1 29481.822432: cpu_idle: state=2 cpu_id=1
31414 NeuralNetworksT-13709 (13707) [000] d..2 29481.822457: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
31415 NeuralNetworksT-13709 (13707) [000] d..3 29481.822483: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
31416 NeuralNetworksT-13709 (13707) [000] ...1 29481.822515: tracing_mark_write: E|13707
31417 NeuralNetworksT-13709 (13707) [000] ...1 29481.822522: tracing_mark_write: E|13707
31418 NeuralNetworksT-13709 (13707) [000] ...1 29481.822528: tracing_mark_write: E|13707
31419 NeuralNetworksT-13709 (13707) [000] ...1 29481.822833: tracing_mark_write: E|13707
31420 NeuralNetworksT-13709 (13707) [000] d..1 29481.822970: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
31421 NeuralNetworksT-13709 (13707) [000] d..4 29481.823126: sched_waking: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=001
31422 NeuralNetworksT-13709 (13707) [000] d..5 29481.823146: sched_wakeup: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=001
31423          <idle>-0     (-----) [001] .n.1 29481.823282: cpu_idle: state=4294967295 cpu_id=1
31424          <idle>-0     (-----) [001] d..2 29481.823306: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
31425 NeuralNetworksT-13709 (13707) [000] d..2 29481.823348: sched_switch: prev_comm=NeuralNetworksT prev_pid=13709 prev_prio=120 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
31426 HwBinder:13707_-13708 (13707) [001] d..2 29481.823393: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31427          <idle>-0     (-----) [001] d..1 29481.823413: cpu_idle: state=0 cpu_id=1
31428     logd.writer-563   (  555) [000] d..2 29481.823503: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31429          <idle>-0     (-----) [000] d..1 29481.823519: cpu_idle: state=0 cpu_id=0
31430          <idle>-0     (-----) [006] dnh2 29481.823714: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
31431          <idle>-0     (-----) [006] .n.1 29481.823722: cpu_idle: state=4294967295 cpu_id=6
31432          <idle>-0     (-----) [006] d..2 29481.823736: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
31433          <idle>-0     (-----) [000] d.s2 29481.823758: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31434          <idle>-0     (-----) [000] dns3 29481.823780: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31435 NeuralNetworksT-13707 (13707) [006] ...1 29481.823783: tracing_mark_write: E|13707
31436          <idle>-0     (-----) [000] dns3 29481.823788: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31437 NeuralNetworksT-13707 (13707) [006] ...1 29481.823790: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksEvent_free
31438 NeuralNetworksT-13707 (13707) [006] ...1 29481.823799: tracing_mark_write: E|13707
31439          <idle>-0     (-----) [000] dns4 29481.823801: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31440 NeuralNetworksT-13707 (13707) [006] ...1 29481.823804: tracing_mark_write: B|13707|[SW][NN_LA_PR]executeWithCompilation example
31441          <idle>-0     (-----) [000] .n.1 29481.823813: cpu_idle: state=4294967295 cpu_id=0
31442          <idle>-0     (-----) [000] d..2 29481.823823: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31443     rcu_preempt-7     (    7) [000] d..2 29481.823836: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
31444     rcu_preempt-7     (    7) [000] d..3 29481.823874: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
31445     rcu_preempt-7     (    7) [000] d..2 29481.823889: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
31446         rcuop/0-10    (   10) [000] d..2 29481.823900: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31447         rcuop/0-10    (   10) [000] d..3 29481.823914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31448         rcuop/0-10    (   10) [000] d..2 29481.823924: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31449     rcu_preempt-7     (    7) [000] d..2 29481.823937: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31450  kworker/u16:10-23868 (23868) [000] d..2 29481.824145: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
31451          <idle>-0     (-----) [000] d..1 29481.824164: cpu_idle: state=2 cpu_id=0
31452          <idle>-0     (-----) [003] d.s3 29481.824316: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
31453          <idle>-0     (-----) [003] d.s4 29481.824357: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
31454          <idle>-0     (-----) [003] dns4 29481.824364: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
31455          <idle>-0     (-----) [003] .n.1 29481.824373: cpu_idle: state=4294967295 cpu_id=3
31456          <idle>-0     (-----) [003] d..2 29481.824390: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31457  kworker/u16:10-23868 (23868) [003] d..2 29481.824479: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31458          <idle>-0     (-----) [003] d..1 29481.824498: cpu_idle: state=0 cpu_id=3
31459 NeuralNetworksT-13707 (13707) [006] d.s2 29481.827086: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
31460          <idle>-0     (-----) [001] dnh2 29481.827133: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
31461          <idle>-0     (-----) [001] .n.1 29481.827141: cpu_idle: state=4294967295 cpu_id=1
31462          <idle>-0     (-----) [001] d..2 29481.827154: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31463  kworker/u16:10-23868 (23868) [001] d..2 29481.827350: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
31464          <idle>-0     (-----) [001] d..1 29481.827368: cpu_idle: state=0 cpu_id=1
31465          <idle>-0     (-----) [003] d.s3 29481.827377: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
31466          <idle>-0     (-----) [003] d.s4 29481.827388: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
31467          <idle>-0     (-----) [003] d.s4 29481.827399: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
31468          <idle>-0     (-----) [001] .n.1 29481.827406: cpu_idle: state=4294967295 cpu_id=1
31469          <idle>-0     (-----) [003] ...1 29481.827412: cpu_idle: state=4294967295 cpu_id=3
31470          <idle>-0     (-----) [003] d..1 29481.827418: cpu_idle: state=0 cpu_id=3
31471          <idle>-0     (-----) [001] d..2 29481.827419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
31472  kworker/u16:10-23868 (23868) [001] .... 29481.827487: clk_set_rate: l3_cluster1_vote_clk 576000000
31473  kworker/u16:10-23868 (23868) [001] .... 29481.827494: clk_set_rate: l3_clk 576000000
31474  kworker/u16:10-23868 (23868) [001] .... 29481.827574: clk_set_rate: l3_cluster0_vote_clk 300000000
31475  kworker/u16:10-23868 (23868) [001] d..2 29481.827602: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31476          <idle>-0     (-----) [001] d..1 29481.827618: cpu_idle: state=0 cpu_id=1
31477          <idle>-0     (-----) [002] ...1 29481.827933: cpu_idle: state=4294967295 cpu_id=2
31478          <idle>-0     (-----) [002] d..1 29481.827939: cpu_idle: state=2 cpu_id=2
31479 NeuralNetworksT-13707 (13707) [006] ...1 29481.830502: tracing_mark_write: E|13707
31480 NeuralNetworksT-13707 (13707) [006] ...1 29481.830506: tracing_mark_write: E|13707
31481 NeuralNetworksT-13707 (13707) [006] ...1 29481.830510: tracing_mark_write: E|13707
31482 NeuralNetworksT-13707 (13707) [006] ...1 29481.830514: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksExecution_free
31483 NeuralNetworksT-13707 (13707) [006] ...1 29481.830519: tracing_mark_write: E|13707
31484 NeuralNetworksT-13707 (13707) [006] ...1 29481.830574: tracing_mark_write: E|13707
31485 NeuralNetworksT-13707 (13707) [006] ...1 29481.830579: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksCompilation_free
31486          <idle>-0     (-----) [000] d.s2 29481.830593: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31487 NeuralNetworksT-13707 (13707) [006] d..5 29481.830595: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31488          <idle>-0     (-----) [000] dns3 29481.830616: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
31489 NeuralNetworksT-13707 (13707) [006] ...1 29481.830620: tracing_mark_write: E|13707
31490 NeuralNetworksT-13707 (13707) [006] ...1 29481.830624: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksModel_free
31491          <idle>-0     (-----) [000] dnH3 29481.830629: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31492          <idle>-0     (-----) [000] .n.1 29481.830643: cpu_idle: state=4294967295 cpu_id=0
31493          <idle>-0     (-----) [000] d..2 29481.830656: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31494  HwBinder:771_4-20182 (  771) [000] d..1 29481.830699: sched_waking: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=002
31495  HwBinder:771_4-20182 (  771) [000] d..2 29481.830742: sched_wakeup: comm=neuralnetworks@ pid=13852 prio=120 target_cpu=000
31496  HwBinder:771_4-20182 (  771) [000] d..2 29481.830854: sched_waking: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
31497  HwBinder:771_4-20182 (  771) [000] d..3 29481.831064: sched_wakeup: comm=cdsp_smem_glink pid=88 prio=120 target_cpu=000
31498  HwBinder:771_4-20182 (  771) [000] d..2 29481.831079: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=88 next_prio=120
31499 cdsp_smem_glink-88    (   88) [000] d..2 29481.831108: sched_switch: prev_comm=cdsp_smem_glink prev_pid=88 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
31500     rcu_preempt-7     (    7) [000] d..2 29481.831121: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
31501     rcu_preempt-7     (    7) [000] d..3 29481.831136: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
31502     rcu_preempt-7     (    7) [000] d..2 29481.831146: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
31503         rcuop/0-10    (   10) [000] d..2 29481.831179: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13852 next_prio=120
31504 neuralnetworks@-13852 (  771) [000] d..2 29481.831223: sched_switch: prev_comm=neuralnetworks@ prev_pid=13852 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31505          <idle>-0     (-----) [000] d..1 29481.831240: cpu_idle: state=2 cpu_id=0
31506          <idle>-0     (-----) [002] d.h4 29481.831254: sched_waking: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31507          <idle>-0     (-----) [002] dnh5 29481.831481: sched_wakeup: comm=smem_native_cds pid=87 prio=120 target_cpu=002
31508          <idle>-0     (-----) [002] .n.1 29481.831609: cpu_idle: state=4294967295 cpu_id=2
31509          <idle>-0     (-----) [002] d..2 29481.831624: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=87 next_prio=120
31510 smem_native_cds-87    (   87) [002] d..2 29481.831663: sched_switch: prev_comm=smem_native_cds prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31511          <idle>-0     (-----) [002] d..1 29481.831678: cpu_idle: state=0 cpu_id=2
31512 NeuralNetworksT-13707 (13707) [006] d..2 29481.831785: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=000
31513          <idle>-0     (-----) [001] dnh2 29481.831827: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=001
31514          <idle>-0     (-----) [001] .n.1 29481.831834: cpu_idle: state=4294967295 cpu_id=1
31515          <idle>-0     (-----) [001] d..2 29481.831847: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/6 next_pid=62 next_prio=120
31516         rcuos/6-62    (   62) [001] d..2 29481.831854: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
31517         rcuos/6-62    (   62) [001] d..3 29481.831898: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
31518 NeuralNetworksT-13707 (13707) [006] ...1 29481.831899: tracing_mark_write: E|13707
31519 NeuralNetworksT-13707 (13707) [006] ...1 29481.831904: tracing_mark_write: E|13707
31520         rcuos/6-62    (   62) [001] d..2 29481.831910: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
31521       rcu_sched-8     (    8) [001] d..2 29481.831936: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31522 NeuralNetworksT-13707 (13707) [006] d..2 29481.831944: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=007
31523          <idle>-0     (-----) [001] d..1 29481.831947: cpu_idle: state=0 cpu_id=1
31524 NeuralNetworksT-13707 (13707) [006] d..3 29481.831960: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31525 NeuralNetworksT-13707 (13707) [006] d..2 29481.833753: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
31526 shell svc 13705-13706 ( 1007) [006] d..2 29481.833805: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
31527          <idle>-0     (-----) [001] dnh2 29481.833836: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
31528 shell svc 13705-13706 ( 1007) [006] d..2 29481.833836: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
31529          <idle>-0     (-----) [001] .n.1 29481.833842: cpu_idle: state=4294967295 cpu_id=1
31530          <idle>-0     (-----) [001] d..2 29481.833855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
31531            adbd-1007  ( 1007) [001] d..1 29481.834051: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
31532            adbd-1007  ( 1007) [001] d..2 29481.834090: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
31533          <idle>-0     (-----) [002] .n.1 29481.834096: cpu_idle: state=4294967295 cpu_id=2
31534          <idle>-0     (-----) [002] d..2 29481.834110: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
31535            adbd-1007  ( 1007) [001] d..2 29481.834184: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31536          <idle>-0     (-----) [001] d..1 29481.834196: cpu_idle: state=0 cpu_id=1
31537            adbd-23485 ( 1007) [002] d..2 29481.834254: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31538          <idle>-0     (-----) [002] d..1 29481.834270: cpu_idle: state=0 cpu_id=2
31539          <idle>-0     (-----) [000] d.h3 29481.834389: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
31540          <idle>-0     (-----) [000] dnh4 29481.834436: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
31541          <idle>-0     (-----) [000] .n.1 29481.834447: cpu_idle: state=4294967295 cpu_id=0
31542          <idle>-0     (-----) [000] d..2 29481.834463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
31543   kworker/u17:1-18284 (18284) [000] d..2 29481.834494: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
31544   kworker/u17:1-18284 (18284) [000] d..3 29481.834511: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
31545   kworker/u17:1-18284 (18284) [000] d..2 29481.834542: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
31546     kworker/0:0-13450 (13450) [000] d..2 29481.834559: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
31547     kworker/0:0-13450 (13450) [000] d..3 29481.834597: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
31548     kworker/0:0-13450 (13450) [000] d..2 29481.834616: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
31549 NeuralNetworksT-13707 (13707) [006] d..2 29481.834656: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31550 NeuralNetworksT-13707 (13707) [006] dn.3 29481.834663: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31551 NeuralNetworksT-13707 (13707) [006] d..2 29481.834669: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
31552 shell svc 13705-13706 ( 1007) [006] d..2 29481.834693: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
31553 NeuralNetworksT-13707 (13707) [006] d..2 29481.834702: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31554 NeuralNetworksT-13707 (13707) [006] dn.3 29481.834707: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31555 NeuralNetworksT-13707 (13707) [006] d..2 29481.834711: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
31556            adbd-23485 ( 1007) [000] d.h2 29481.834712: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
31557 shell svc 13705-13706 ( 1007) [006] d..2 29481.834729: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
31558            adbd-23485 ( 1007) [000] dnh3 29481.834734: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
31559 NeuralNetworksT-13707 (13707) [006] d..2 29481.834747: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31560            adbd-23485 ( 1007) [000] d..2 29481.834747: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
31561 NeuralNetworksT-13707 (13707) [006] dn.3 29481.834752: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31562 NeuralNetworksT-13707 (13707) [006] d..2 29481.834756: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
31563   kworker/u17:1-18284 (18284) [000] d..2 29481.834760: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
31564   kworker/u17:1-18284 (18284) [000] d..3 29481.834768: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
31565 shell svc 13705-13706 ( 1007) [006] d..2 29481.834774: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
31566 NeuralNetworksT-13707 (13707) [006] d..2 29481.834790: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31567   kworker/u17:1-18284 (18284) [000] d..2 29481.834793: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
31568 NeuralNetworksT-13707 (13707) [006] dn.3 29481.834795: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
31569 NeuralNetworksT-13707 (13707) [006] d..2 29481.834800: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
31570     kworker/0:0-13450 (13450) [000] d..2 29481.834802: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
31571     kworker/0:0-13450 (13450) [000] d..3 29481.834805: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
31572 shell svc 13705-13706 ( 1007) [006] d..2 29481.834816: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
31573     kworker/0:0-13450 (13450) [000] d..2 29481.834819: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
31574 NeuralNetworksT-13707 (13707) [006] ...1 29481.834829: tracing_mark_write: B|13707|[NN_LA_PO]executeOnce
31575 NeuralNetworksT-13707 (13707) [006] ...1 29481.834835: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_create
31576 NeuralNetworksT-13707 (13707) [006] ...1 29481.834863: tracing_mark_write: E|13707
31577 NeuralNetworksT-13707 (13707) [006] ...1 29481.834869: tracing_mark_write: B|13707|[NN_LA_PP]createAndCompileModel
31578            adbd-23485 ( 1007) [000] d..2 29481.834877: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31579 NeuralNetworksT-13707 (13707) [006] ...1 29481.834894: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31580          <idle>-0     (-----) [000] d..1 29481.834896: cpu_idle: state=0 cpu_id=0
31581 NeuralNetworksT-13707 (13707) [006] ...1 29481.834901: tracing_mark_write: E|13707
31582 NeuralNetworksT-13707 (13707) [006] ...1 29481.834904: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31583 NeuralNetworksT-13707 (13707) [006] ...1 29481.834908: tracing_mark_write: E|13707
31584 NeuralNetworksT-13707 (13707) [006] ...1 29481.834912: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31585 NeuralNetworksT-13707 (13707) [006] ...1 29481.834917: tracing_mark_write: E|13707
31586 NeuralNetworksT-13707 (13707) [006] ...1 29481.834920: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31587 NeuralNetworksT-13707 (13707) [006] ...1 29481.834923: tracing_mark_write: E|13707
31588 NeuralNetworksT-13707 (13707) [006] ...1 29481.834927: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31589 NeuralNetworksT-13707 (13707) [006] ...1 29481.834932: tracing_mark_write: E|13707
31590 NeuralNetworksT-13707 (13707) [006] ...1 29481.834935: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31591 NeuralNetworksT-13707 (13707) [006] ...1 29481.834939: tracing_mark_write: E|13707
31592 NeuralNetworksT-13707 (13707) [006] ...1 29481.834942: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31593 NeuralNetworksT-13707 (13707) [006] ...1 29481.834945: tracing_mark_write: E|13707
31594 NeuralNetworksT-13707 (13707) [006] ...1 29481.834948: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31595 NeuralNetworksT-13707 (13707) [006] ...1 29481.834952: tracing_mark_write: E|13707
31596          <idle>-0     (-----) [002] d.h4 29481.834955: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31597 NeuralNetworksT-13707 (13707) [006] ...1 29481.834955: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31598 NeuralNetworksT-13707 (13707) [006] ...1 29481.834961: tracing_mark_write: E|13707
31599 NeuralNetworksT-13707 (13707) [006] ...1 29481.834964: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31600 NeuralNetworksT-13707 (13707) [006] ...1 29481.834967: tracing_mark_write: E|13707
31601 NeuralNetworksT-13707 (13707) [006] ...1 29481.834970: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31602 NeuralNetworksT-13707 (13707) [006] ...1 29481.834973: tracing_mark_write: E|13707
31603          <idle>-0     (-----) [002] d.h5 29481.834974: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
31604 NeuralNetworksT-13707 (13707) [006] ...1 29481.834977: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31605 NeuralNetworksT-13707 (13707) [006] ...1 29481.834980: tracing_mark_write: E|13707
31606          <idle>-0     (-----) [000] .n.1 29481.834981: cpu_idle: state=4294967295 cpu_id=0
31607 NeuralNetworksT-13707 (13707) [006] ...1 29481.834983: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31608 NeuralNetworksT-13707 (13707) [006] ...1 29481.834987: tracing_mark_write: E|13707
31609 NeuralNetworksT-13707 (13707) [006] ...1 29481.834990: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31610 NeuralNetworksT-13707 (13707) [006] ...1 29481.834993: tracing_mark_write: E|13707
31611          <idle>-0     (-----) [000] d..2 29481.834994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31612 NeuralNetworksT-13707 (13707) [006] ...1 29481.834996: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31613 NeuralNetworksT-13707 (13707) [006] ...1 29481.834999: tracing_mark_write: E|13707
31614 NeuralNetworksT-13707 (13707) [006] ...1 29481.835003: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31615 NeuralNetworksT-13707 (13707) [006] ...1 29481.835006: tracing_mark_write: E|13707
31616          <idle>-0     (-----) [002] ...1 29481.835007: cpu_idle: state=4294967295 cpu_id=2
31617 NeuralNetworksT-13707 (13707) [006] ...1 29481.835009: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31618          <idle>-0     (-----) [002] d..1 29481.835013: cpu_idle: state=0 cpu_id=2
31619  HwBinder:771_4-20182 (  771) [000] d.h4 29481.835016: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
31620 NeuralNetworksT-13707 (13707) [006] ...1 29481.835025: tracing_mark_write: E|13707
31621 NeuralNetworksT-13707 (13707) [006] ...1 29481.835028: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31622 NeuralNetworksT-13707 (13707) [006] ...1 29481.835031: tracing_mark_write: E|13707
31623 NeuralNetworksT-13707 (13707) [006] ...1 29481.835034: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31624  HwBinder:771_4-20182 (  771) [000] dnh5 29481.835035: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
31625 NeuralNetworksT-13707 (13707) [006] ...1 29481.835038: tracing_mark_write: E|13707
31626 NeuralNetworksT-13707 (13707) [006] ...1 29481.835041: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31627 NeuralNetworksT-13707 (13707) [006] ...1 29481.835044: tracing_mark_write: E|13707
31628  HwBinder:771_4-20182 (  771) [000] d..2 29481.835047: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
31629 NeuralNetworksT-13707 (13707) [006] ...1 29481.835047: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31630 NeuralNetworksT-13707 (13707) [006] ...1 29481.835050: tracing_mark_write: E|13707
31631 NeuralNetworksT-13707 (13707) [006] ...1 29481.835053: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31632 NeuralNetworksT-13707 (13707) [006] ...1 29481.835057: tracing_mark_write: E|13707
31633 NeuralNetworksT-13707 (13707) [006] ...1 29481.835060: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31634   kworker/u17:1-18284 (18284) [000] d..2 29481.835063: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
31635 NeuralNetworksT-13707 (13707) [006] ...1 29481.835063: tracing_mark_write: E|13707
31636 NeuralNetworksT-13707 (13707) [006] ...1 29481.835066: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31637 NeuralNetworksT-13707 (13707) [006] ...1 29481.835070: tracing_mark_write: E|13707
31638   kworker/u17:1-18284 (18284) [000] d..3 29481.835072: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
31639 NeuralNetworksT-13707 (13707) [006] ...1 29481.835073: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31640 NeuralNetworksT-13707 (13707) [006] ...1 29481.835076: tracing_mark_write: E|13707
31641 NeuralNetworksT-13707 (13707) [006] ...1 29481.835079: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31642 NeuralNetworksT-13707 (13707) [006] ...1 29481.835083: tracing_mark_write: E|13707
31643 NeuralNetworksT-13707 (13707) [006] ...1 29481.835086: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31644 NeuralNetworksT-13707 (13707) [006] ...1 29481.835089: tracing_mark_write: E|13707
31645 NeuralNetworksT-13707 (13707) [006] ...1 29481.835092: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31646 NeuralNetworksT-13707 (13707) [006] ...1 29481.835095: tracing_mark_write: E|13707
31647   kworker/u17:1-18284 (18284) [000] d..2 29481.835096: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
31648 NeuralNetworksT-13707 (13707) [006] ...1 29481.835098: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31649 NeuralNetworksT-13707 (13707) [006] ...1 29481.835102: tracing_mark_write: E|13707
31650 NeuralNetworksT-13707 (13707) [006] ...1 29481.835105: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31651 NeuralNetworksT-13707 (13707) [006] ...1 29481.835109: tracing_mark_write: E|13707
31652 NeuralNetworksT-13707 (13707) [006] ...1 29481.835112: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31653 NeuralNetworksT-13707 (13707) [006] ...1 29481.835115: tracing_mark_write: E|13707
31654     kworker/0:0-13450 (13450) [000] d..2 29481.835117: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
31655 NeuralNetworksT-13707 (13707) [006] ...1 29481.835118: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31656 NeuralNetworksT-13707 (13707) [006] ...1 29481.835121: tracing_mark_write: E|13707
31657 NeuralNetworksT-13707 (13707) [006] ...1 29481.835124: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31658 NeuralNetworksT-13707 (13707) [006] ...1 29481.835131: tracing_mark_write: E|13707
31659 NeuralNetworksT-13707 (13707) [006] ...1 29481.835134: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31660 NeuralNetworksT-13707 (13707) [006] ...1 29481.835138: tracing_mark_write: E|13707
31661 NeuralNetworksT-13707 (13707) [006] ...1 29481.835141: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31662 NeuralNetworksT-13707 (13707) [006] ...1 29481.835144: tracing_mark_write: E|13707
31663 NeuralNetworksT-13707 (13707) [006] ...1 29481.835147: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31664 NeuralNetworksT-13707 (13707) [006] ...1 29481.835151: tracing_mark_write: E|13707
31665 NeuralNetworksT-13707 (13707) [006] ...1 29481.835154: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31666 NeuralNetworksT-13707 (13707) [006] ...1 29481.835157: tracing_mark_write: E|13707
31667     kworker/0:0-13450 (13450) [000] d..3 29481.835160: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
31668 NeuralNetworksT-13707 (13707) [006] ...1 29481.835160: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31669 NeuralNetworksT-13707 (13707) [006] ...1 29481.835163: tracing_mark_write: E|13707
31670 NeuralNetworksT-13707 (13707) [006] ...1 29481.835166: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31671 NeuralNetworksT-13707 (13707) [006] ...1 29481.835170: tracing_mark_write: E|13707
31672 NeuralNetworksT-13707 (13707) [006] ...1 29481.835173: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31673 NeuralNetworksT-13707 (13707) [006] ...1 29481.835176: tracing_mark_write: E|13707
31674     kworker/0:0-13450 (13450) [000] d..2 29481.835178: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
31675 NeuralNetworksT-13707 (13707) [006] ...1 29481.835180: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31676 NeuralNetworksT-13707 (13707) [006] ...1 29481.835183: tracing_mark_write: E|13707
31677 NeuralNetworksT-13707 (13707) [006] ...1 29481.835186: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31678 NeuralNetworksT-13707 (13707) [006] ...1 29481.835189: tracing_mark_write: E|13707
31679 NeuralNetworksT-13707 (13707) [006] ...1 29481.835192: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31680 NeuralNetworksT-13707 (13707) [006] ...1 29481.835196: tracing_mark_write: E|13707
31681 NeuralNetworksT-13707 (13707) [006] ...1 29481.835199: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31682 NeuralNetworksT-13707 (13707) [006] ...1 29481.835202: tracing_mark_write: E|13707
31683 NeuralNetworksT-13707 (13707) [006] ...1 29481.835205: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31684 NeuralNetworksT-13707 (13707) [006] ...1 29481.835208: tracing_mark_write: E|13707
31685 NeuralNetworksT-13707 (13707) [006] ...1 29481.835211: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31686 NeuralNetworksT-13707 (13707) [006] ...1 29481.835215: tracing_mark_write: E|13707
31687            adbd-23484 ( 1007) [000] d..2 29481.835216: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
31688 NeuralNetworksT-13707 (13707) [006] ...1 29481.835218: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31689 NeuralNetworksT-13707 (13707) [006] ...1 29481.835221: tracing_mark_write: E|13707
31690 NeuralNetworksT-13707 (13707) [006] ...1 29481.835224: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31691 NeuralNetworksT-13707 (13707) [006] ...1 29481.835229: tracing_mark_write: E|13707
31692            adbd-23484 ( 1007) [000] d..3 29481.835231: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
31693 NeuralNetworksT-13707 (13707) [006] ...1 29481.835232: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31694 NeuralNetworksT-13707 (13707) [006] ...1 29481.835235: tracing_mark_write: E|13707
31695          <idle>-0     (-----) [001] .n.1 29481.835238: cpu_idle: state=4294967295 cpu_id=1
31696 NeuralNetworksT-13707 (13707) [006] ...1 29481.835238: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31697 NeuralNetworksT-13707 (13707) [006] ...1 29481.835242: tracing_mark_write: E|13707
31698 NeuralNetworksT-13707 (13707) [006] ...1 29481.835245: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31699          <idle>-0     (-----) [001] d..2 29481.835248: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
31700 NeuralNetworksT-13707 (13707) [006] ...1 29481.835248: tracing_mark_write: E|13707
31701 NeuralNetworksT-13707 (13707) [006] ...1 29481.835252: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31702 NeuralNetworksT-13707 (13707) [006] ...1 29481.835255: tracing_mark_write: E|13707
31703 NeuralNetworksT-13707 (13707) [006] ...1 29481.835258: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31704 NeuralNetworksT-13707 (13707) [006] ...1 29481.835261: tracing_mark_write: E|13707
31705 NeuralNetworksT-13707 (13707) [006] ...1 29481.835264: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31706 NeuralNetworksT-13707 (13707) [006] ...1 29481.835268: tracing_mark_write: E|13707
31707 NeuralNetworksT-13707 (13707) [006] ...1 29481.835271: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31708 NeuralNetworksT-13707 (13707) [006] ...1 29481.835274: tracing_mark_write: E|13707
31709 NeuralNetworksT-13707 (13707) [006] ...1 29481.835277: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31710 NeuralNetworksT-13707 (13707) [006] ...1 29481.835281: tracing_mark_write: E|13707
31711 NeuralNetworksT-13707 (13707) [006] ...1 29481.835284: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31712 NeuralNetworksT-13707 (13707) [006] ...1 29481.835287: tracing_mark_write: E|13707
31713 NeuralNetworksT-13707 (13707) [006] ...1 29481.835290: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31714 NeuralNetworksT-13707 (13707) [006] ...1 29481.835294: tracing_mark_write: E|13707
31715 NeuralNetworksT-13707 (13707) [006] ...1 29481.835297: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31716 NeuralNetworksT-13707 (13707) [006] ...1 29481.835300: tracing_mark_write: E|13707
31717 NeuralNetworksT-13707 (13707) [006] ...1 29481.835303: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31718 NeuralNetworksT-13707 (13707) [006] ...1 29481.835306: tracing_mark_write: E|13707
31719 NeuralNetworksT-13707 (13707) [006] ...1 29481.835309: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31720            adbd-23484 ( 1007) [000] d..2 29481.835311: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
31721 NeuralNetworksT-13707 (13707) [006] ...1 29481.835313: tracing_mark_write: E|13707
31722 NeuralNetworksT-13707 (13707) [006] ...1 29481.835316: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31723 NeuralNetworksT-13707 (13707) [006] ...1 29481.835319: tracing_mark_write: E|13707
31724 NeuralNetworksT-13707 (13707) [006] ...1 29481.835322: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31725 NeuralNetworksT-13707 (13707) [006] ...1 29481.835325: tracing_mark_write: E|13707
31726 NeuralNetworksT-13707 (13707) [006] ...1 29481.835328: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31727 NeuralNetworksT-13707 (13707) [006] ...1 29481.835332: tracing_mark_write: E|13707
31728 NeuralNetworksT-13707 (13707) [006] ...1 29481.835335: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31729 NeuralNetworksT-13707 (13707) [006] ...1 29481.835342: tracing_mark_write: E|13707
31730 NeuralNetworksT-13707 (13707) [006] ...1 29481.835345: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31731 NeuralNetworksT-13707 (13707) [006] ...1 29481.835348: tracing_mark_write: E|13707
31732 NeuralNetworksT-13707 (13707) [006] ...1 29481.835351: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31733 NeuralNetworksT-13707 (13707) [006] ...1 29481.835355: tracing_mark_write: E|13707
31734 NeuralNetworksT-13707 (13707) [006] ...1 29481.835358: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31735 NeuralNetworksT-13707 (13707) [006] ...1 29481.835361: tracing_mark_write: E|13707
31736 NeuralNetworksT-13707 (13707) [006] ...1 29481.835364: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31737            adbd-1007  ( 1007) [001] d..1 29481.835367: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
31738 NeuralNetworksT-13707 (13707) [006] ...1 29481.835368: tracing_mark_write: E|13707
31739 NeuralNetworksT-13707 (13707) [006] ...1 29481.835371: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31740 NeuralNetworksT-13707 (13707) [006] ...1 29481.835374: tracing_mark_write: E|13707
31741 NeuralNetworksT-13707 (13707) [006] ...1 29481.835377: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31742 NeuralNetworksT-13707 (13707) [006] ...1 29481.835381: tracing_mark_write: E|13707
31743 NeuralNetworksT-13707 (13707) [006] ...1 29481.835384: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31744 NeuralNetworksT-13707 (13707) [006] ...1 29481.835387: tracing_mark_write: E|13707
31745 NeuralNetworksT-13707 (13707) [006] ...1 29481.835390: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31746            adbd-1007  ( 1007) [001] d..2 29481.835391: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
31747 NeuralNetworksT-13707 (13707) [006] ...1 29481.835394: tracing_mark_write: E|13707
31748 NeuralNetworksT-13707 (13707) [006] ...1 29481.835397: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31749 NeuralNetworksT-13707 (13707) [006] ...1 29481.835400: tracing_mark_write: E|13707
31750 NeuralNetworksT-13707 (13707) [006] ...1 29481.835403: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31751 NeuralNetworksT-13707 (13707) [006] ...1 29481.835407: tracing_mark_write: E|13707
31752 NeuralNetworksT-13707 (13707) [006] ...1 29481.835410: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31753 NeuralNetworksT-13707 (13707) [006] ...1 29481.835413: tracing_mark_write: E|13707
31754 NeuralNetworksT-13707 (13707) [006] ...1 29481.835416: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31755 NeuralNetworksT-13707 (13707) [006] ...1 29481.835420: tracing_mark_write: E|13707
31756 NeuralNetworksT-13707 (13707) [006] ...1 29481.835423: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31757 NeuralNetworksT-13707 (13707) [006] ...1 29481.835426: tracing_mark_write: E|13707
31758 NeuralNetworksT-13707 (13707) [006] ...1 29481.835429: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31759 NeuralNetworksT-13707 (13707) [006] ...1 29481.835433: tracing_mark_write: E|13707
31760 NeuralNetworksT-13707 (13707) [006] ...1 29481.835436: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31761 NeuralNetworksT-13707 (13707) [006] ...1 29481.835439: tracing_mark_write: E|13707
31762 NeuralNetworksT-13707 (13707) [006] ...1 29481.835442: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31763 NeuralNetworksT-13707 (13707) [006] ...1 29481.835445: tracing_mark_write: E|13707
31764 NeuralNetworksT-13707 (13707) [006] ...1 29481.835448: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31765 NeuralNetworksT-13707 (13707) [006] ...1 29481.835452: tracing_mark_write: E|13707
31766            adbd-1007  ( 1007) [001] d..2 29481.835454: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31767 NeuralNetworksT-13707 (13707) [006] ...1 29481.835455: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31768 NeuralNetworksT-13707 (13707) [006] ...1 29481.835458: tracing_mark_write: E|13707
31769 NeuralNetworksT-13707 (13707) [006] ...1 29481.835461: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31770 NeuralNetworksT-13707 (13707) [006] ...1 29481.835464: tracing_mark_write: E|13707
31771          <idle>-0     (-----) [001] d..1 29481.835466: cpu_idle: state=0 cpu_id=1
31772 NeuralNetworksT-13707 (13707) [006] ...1 29481.835467: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31773 NeuralNetworksT-13707 (13707) [006] ...1 29481.835471: tracing_mark_write: E|13707
31774 NeuralNetworksT-13707 (13707) [006] ...1 29481.835474: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31775 NeuralNetworksT-13707 (13707) [006] ...1 29481.835477: tracing_mark_write: E|13707
31776 NeuralNetworksT-13707 (13707) [006] ...1 29481.835480: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31777 NeuralNetworksT-13707 (13707) [006] ...1 29481.835486: tracing_mark_write: E|13707
31778 NeuralNetworksT-13707 (13707) [006] ...1 29481.835489: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31779 NeuralNetworksT-13707 (13707) [006] ...1 29481.835492: tracing_mark_write: E|13707
31780 NeuralNetworksT-13707 (13707) [006] ...1 29481.835496: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31781 NeuralNetworksT-13707 (13707) [006] ...1 29481.835499: tracing_mark_write: E|13707
31782 NeuralNetworksT-13707 (13707) [006] ...1 29481.835503: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31783 NeuralNetworksT-13707 (13707) [006] ...1 29481.835506: tracing_mark_write: E|13707
31784 NeuralNetworksT-13707 (13707) [006] ...1 29481.835509: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31785 NeuralNetworksT-13707 (13707) [006] ...1 29481.835513: tracing_mark_write: E|13707
31786 NeuralNetworksT-13707 (13707) [006] ...1 29481.835517: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31787 NeuralNetworksT-13707 (13707) [006] ...1 29481.835520: tracing_mark_write: E|13707
31788 NeuralNetworksT-13707 (13707) [006] ...1 29481.835523: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31789 NeuralNetworksT-13707 (13707) [006] ...1 29481.835527: tracing_mark_write: E|13707
31790 NeuralNetworksT-13707 (13707) [006] ...1 29481.835531: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31791 NeuralNetworksT-13707 (13707) [006] ...1 29481.835534: tracing_mark_write: E|13707
31792 NeuralNetworksT-13707 (13707) [006] ...1 29481.835537: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31793 NeuralNetworksT-13707 (13707) [006] ...1 29481.835541: tracing_mark_write: E|13707
31794 NeuralNetworksT-13707 (13707) [006] ...1 29481.835544: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31795 NeuralNetworksT-13707 (13707) [006] ...1 29481.835548: tracing_mark_write: E|13707
31796 NeuralNetworksT-13707 (13707) [006] ...1 29481.835551: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31797 NeuralNetworksT-13707 (13707) [006] ...1 29481.835555: tracing_mark_write: E|13707
31798 NeuralNetworksT-13707 (13707) [006] ...1 29481.835558: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31799 NeuralNetworksT-13707 (13707) [006] ...1 29481.835561: tracing_mark_write: E|13707
31800 NeuralNetworksT-13707 (13707) [006] ...1 29481.835564: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31801 NeuralNetworksT-13707 (13707) [006] ...1 29481.835567: tracing_mark_write: E|13707
31802 NeuralNetworksT-13707 (13707) [006] ...1 29481.835571: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31803 NeuralNetworksT-13707 (13707) [006] ...1 29481.835574: tracing_mark_write: E|13707
31804 NeuralNetworksT-13707 (13707) [006] ...1 29481.835577: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31805 NeuralNetworksT-13707 (13707) [006] ...1 29481.835581: tracing_mark_write: E|13707
31806 NeuralNetworksT-13707 (13707) [006] ...1 29481.835584: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31807 NeuralNetworksT-13707 (13707) [006] ...1 29481.835587: tracing_mark_write: E|13707
31808 NeuralNetworksT-13707 (13707) [006] ...1 29481.835590: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31809 NeuralNetworksT-13707 (13707) [006] ...1 29481.835593: tracing_mark_write: E|13707
31810 NeuralNetworksT-13707 (13707) [006] ...1 29481.835598: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31811 NeuralNetworksT-13707 (13707) [006] ...1 29481.835601: tracing_mark_write: E|13707
31812 NeuralNetworksT-13707 (13707) [006] ...1 29481.835604: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31813 NeuralNetworksT-13707 (13707) [006] ...1 29481.835607: tracing_mark_write: E|13707
31814 NeuralNetworksT-13707 (13707) [006] ...1 29481.835610: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31815 NeuralNetworksT-13707 (13707) [006] ...1 29481.835614: tracing_mark_write: E|13707
31816 NeuralNetworksT-13707 (13707) [006] ...1 29481.835617: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31817 NeuralNetworksT-13707 (13707) [006] ...1 29481.835620: tracing_mark_write: E|13707
31818 NeuralNetworksT-13707 (13707) [006] ...1 29481.835623: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31819 NeuralNetworksT-13707 (13707) [006] ...1 29481.835626: tracing_mark_write: E|13707
31820 NeuralNetworksT-13707 (13707) [006] ...1 29481.835629: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31821 NeuralNetworksT-13707 (13707) [006] ...1 29481.835633: tracing_mark_write: E|13707
31822 NeuralNetworksT-13707 (13707) [006] ...1 29481.835636: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31823 NeuralNetworksT-13707 (13707) [006] ...1 29481.835639: tracing_mark_write: E|13707
31824 NeuralNetworksT-13707 (13707) [006] ...1 29481.835642: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31825 NeuralNetworksT-13707 (13707) [006] ...1 29481.835646: tracing_mark_write: E|13707
31826 NeuralNetworksT-13707 (13707) [006] ...1 29481.835649: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31827 NeuralNetworksT-13707 (13707) [006] ...1 29481.835653: tracing_mark_write: E|13707
31828 NeuralNetworksT-13707 (13707) [006] ...1 29481.835657: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31829 NeuralNetworksT-13707 (13707) [006] ...1 29481.835660: tracing_mark_write: E|13707
31830 NeuralNetworksT-13707 (13707) [006] ...1 29481.835663: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31831 NeuralNetworksT-13707 (13707) [006] ...1 29481.835667: tracing_mark_write: E|13707
31832 NeuralNetworksT-13707 (13707) [006] ...1 29481.835670: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31833 NeuralNetworksT-13707 (13707) [006] ...1 29481.835674: tracing_mark_write: E|13707
31834 NeuralNetworksT-13707 (13707) [006] ...1 29481.835677: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31835 NeuralNetworksT-13707 (13707) [006] ...1 29481.835680: tracing_mark_write: E|13707
31836 NeuralNetworksT-13707 (13707) [006] ...1 29481.835683: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31837 NeuralNetworksT-13707 (13707) [006] ...1 29481.835687: tracing_mark_write: E|13707
31838 NeuralNetworksT-13707 (13707) [006] ...1 29481.835690: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31839 NeuralNetworksT-13707 (13707) [006] ...1 29481.835693: tracing_mark_write: E|13707
31840 NeuralNetworksT-13707 (13707) [006] ...1 29481.835696: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31841 NeuralNetworksT-13707 (13707) [006] ...1 29481.835699: tracing_mark_write: E|13707
31842 NeuralNetworksT-13707 (13707) [006] ...1 29481.835702: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31843 NeuralNetworksT-13707 (13707) [006] ...1 29481.835706: tracing_mark_write: E|13707
31844 NeuralNetworksT-13707 (13707) [006] ...1 29481.835709: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31845 NeuralNetworksT-13707 (13707) [006] ...1 29481.835712: tracing_mark_write: E|13707
31846 NeuralNetworksT-13707 (13707) [006] ...1 29481.835716: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31847 NeuralNetworksT-13707 (13707) [006] ...1 29481.835719: tracing_mark_write: E|13707
31848 NeuralNetworksT-13707 (13707) [006] ...1 29481.835722: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31849 NeuralNetworksT-13707 (13707) [006] ...1 29481.835725: tracing_mark_write: E|13707
31850 NeuralNetworksT-13707 (13707) [006] ...1 29481.835728: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31851 NeuralNetworksT-13707 (13707) [006] ...1 29481.835732: tracing_mark_write: E|13707
31852 NeuralNetworksT-13707 (13707) [006] ...1 29481.835735: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31853 NeuralNetworksT-13707 (13707) [006] ...1 29481.835738: tracing_mark_write: E|13707
31854 NeuralNetworksT-13707 (13707) [006] ...1 29481.835741: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31855 NeuralNetworksT-13707 (13707) [006] ...1 29481.835745: tracing_mark_write: E|13707
31856 NeuralNetworksT-13707 (13707) [006] ...1 29481.835748: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31857 NeuralNetworksT-13707 (13707) [006] ...1 29481.835752: tracing_mark_write: E|13707
31858 NeuralNetworksT-13707 (13707) [006] ...1 29481.835755: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31859 NeuralNetworksT-13707 (13707) [006] ...1 29481.835758: tracing_mark_write: E|13707
31860 NeuralNetworksT-13707 (13707) [006] ...1 29481.835761: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31861 NeuralNetworksT-13707 (13707) [006] ...1 29481.835769: tracing_mark_write: E|13707
31862 NeuralNetworksT-13707 (13707) [006] ...1 29481.835772: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31863 NeuralNetworksT-13707 (13707) [006] ...1 29481.835775: tracing_mark_write: E|13707
31864 NeuralNetworksT-13707 (13707) [006] ...1 29481.835778: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31865 NeuralNetworksT-13707 (13707) [006] ...1 29481.835782: tracing_mark_write: E|13707
31866 NeuralNetworksT-13707 (13707) [006] ...1 29481.835785: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31867 NeuralNetworksT-13707 (13707) [006] ...1 29481.835788: tracing_mark_write: E|13707
31868 NeuralNetworksT-13707 (13707) [006] ...1 29481.835791: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31869 NeuralNetworksT-13707 (13707) [006] ...1 29481.835794: tracing_mark_write: E|13707
31870 NeuralNetworksT-13707 (13707) [006] ...1 29481.835798: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31871 NeuralNetworksT-13707 (13707) [006] ...1 29481.835802: tracing_mark_write: E|13707
31872 NeuralNetworksT-13707 (13707) [006] ...1 29481.835805: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31873 NeuralNetworksT-13707 (13707) [006] ...1 29481.835808: tracing_mark_write: E|13707
31874 NeuralNetworksT-13707 (13707) [006] ...1 29481.835812: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31875 NeuralNetworksT-13707 (13707) [006] ...1 29481.835815: tracing_mark_write: E|13707
31876 NeuralNetworksT-13707 (13707) [006] ...1 29481.835818: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31877 NeuralNetworksT-13707 (13707) [006] ...1 29481.835821: tracing_mark_write: E|13707
31878 NeuralNetworksT-13707 (13707) [006] ...1 29481.835824: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31879 NeuralNetworksT-13707 (13707) [006] ...1 29481.835828: tracing_mark_write: E|13707
31880 NeuralNetworksT-13707 (13707) [006] ...1 29481.835831: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31881 NeuralNetworksT-13707 (13707) [006] ...1 29481.835834: tracing_mark_write: E|13707
31882 NeuralNetworksT-13707 (13707) [006] ...1 29481.835837: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31883 NeuralNetworksT-13707 (13707) [006] ...1 29481.835840: tracing_mark_write: E|13707
31884 NeuralNetworksT-13707 (13707) [006] ...1 29481.835843: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31885 NeuralNetworksT-13707 (13707) [006] ...1 29481.835847: tracing_mark_write: E|13707
31886 NeuralNetworksT-13707 (13707) [006] ...1 29481.835850: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31887 NeuralNetworksT-13707 (13707) [006] ...1 29481.835853: tracing_mark_write: E|13707
31888 NeuralNetworksT-13707 (13707) [006] ...1 29481.835856: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31889 NeuralNetworksT-13707 (13707) [006] ...1 29481.835859: tracing_mark_write: E|13707
31890 NeuralNetworksT-13707 (13707) [006] ...1 29481.835863: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31891 NeuralNetworksT-13707 (13707) [006] ...1 29481.835866: tracing_mark_write: E|13707
31892 NeuralNetworksT-13707 (13707) [006] ...1 29481.835869: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31893 NeuralNetworksT-13707 (13707) [006] ...1 29481.835872: tracing_mark_write: E|13707
31894 NeuralNetworksT-13707 (13707) [006] ...1 29481.835875: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31895 NeuralNetworksT-13707 (13707) [006] ...1 29481.835878: tracing_mark_write: E|13707
31896 NeuralNetworksT-13707 (13707) [006] ...1 29481.835882: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31897 NeuralNetworksT-13707 (13707) [006] ...1 29481.835885: tracing_mark_write: E|13707
31898 NeuralNetworksT-13707 (13707) [006] ...1 29481.835888: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31899 NeuralNetworksT-13707 (13707) [006] ...1 29481.835891: tracing_mark_write: E|13707
31900 NeuralNetworksT-13707 (13707) [006] ...1 29481.835895: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31901 NeuralNetworksT-13707 (13707) [006] ...1 29481.835898: tracing_mark_write: E|13707
31902 NeuralNetworksT-13707 (13707) [006] ...1 29481.835901: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31903 NeuralNetworksT-13707 (13707) [006] ...1 29481.835904: tracing_mark_write: E|13707
31904 NeuralNetworksT-13707 (13707) [006] ...1 29481.835907: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31905 NeuralNetworksT-13707 (13707) [006] ...1 29481.835911: tracing_mark_write: E|13707
31906 NeuralNetworksT-13707 (13707) [006] ...1 29481.835914: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31907 NeuralNetworksT-13707 (13707) [006] ...1 29481.835917: tracing_mark_write: E|13707
31908 NeuralNetworksT-13707 (13707) [006] ...1 29481.835920: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31909 NeuralNetworksT-13707 (13707) [006] ...1 29481.835923: tracing_mark_write: E|13707
31910 NeuralNetworksT-13707 (13707) [006] ...1 29481.835926: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31911 NeuralNetworksT-13707 (13707) [006] ...1 29481.835930: tracing_mark_write: E|13707
31912 NeuralNetworksT-13707 (13707) [006] ...1 29481.835933: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31913 NeuralNetworksT-13707 (13707) [006] ...1 29481.835936: tracing_mark_write: E|13707
31914 NeuralNetworksT-13707 (13707) [006] ...1 29481.835939: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31915 NeuralNetworksT-13707 (13707) [006] ...1 29481.835943: tracing_mark_write: E|13707
31916 NeuralNetworksT-13707 (13707) [006] ...1 29481.835946: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31917 NeuralNetworksT-13707 (13707) [006] ...1 29481.835949: tracing_mark_write: E|13707
31918 NeuralNetworksT-13707 (13707) [006] ...1 29481.835953: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31919 NeuralNetworksT-13707 (13707) [006] ...1 29481.835956: tracing_mark_write: E|13707
31920 NeuralNetworksT-13707 (13707) [006] ...1 29481.835959: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31921 NeuralNetworksT-13707 (13707) [006] ...1 29481.835962: tracing_mark_write: E|13707
31922 NeuralNetworksT-13707 (13707) [006] ...1 29481.835965: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31923 NeuralNetworksT-13707 (13707) [006] ...1 29481.835969: tracing_mark_write: E|13707
31924 NeuralNetworksT-13707 (13707) [006] ...1 29481.835972: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31925 NeuralNetworksT-13707 (13707) [006] ...1 29481.835976: tracing_mark_write: E|13707
31926 NeuralNetworksT-13707 (13707) [006] ...1 29481.835979: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31927 NeuralNetworksT-13707 (13707) [006] ...1 29481.835982: tracing_mark_write: E|13707
31928 NeuralNetworksT-13707 (13707) [006] ...1 29481.835985: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31929 NeuralNetworksT-13707 (13707) [006] ...1 29481.835989: tracing_mark_write: E|13707
31930 NeuralNetworksT-13707 (13707) [006] ...1 29481.835992: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31931 NeuralNetworksT-13707 (13707) [006] ...1 29481.835995: tracing_mark_write: E|13707
31932 NeuralNetworksT-13707 (13707) [006] ...1 29481.835998: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31933 NeuralNetworksT-13707 (13707) [006] ...1 29481.836003: tracing_mark_write: E|13707
31934 NeuralNetworksT-13707 (13707) [006] ...1 29481.836006: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31935 NeuralNetworksT-13707 (13707) [006] ...1 29481.836009: tracing_mark_write: E|13707
31936 NeuralNetworksT-13707 (13707) [006] ...1 29481.836012: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31937 NeuralNetworksT-13707 (13707) [006] ...1 29481.836015: tracing_mark_write: E|13707
31938 NeuralNetworksT-13707 (13707) [006] ...1 29481.836018: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31939 NeuralNetworksT-13707 (13707) [006] ...1 29481.836022: tracing_mark_write: E|13707
31940 NeuralNetworksT-13707 (13707) [006] ...1 29481.836025: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31941 NeuralNetworksT-13707 (13707) [006] ...1 29481.836028: tracing_mark_write: E|13707
31942 NeuralNetworksT-13707 (13707) [006] ...1 29481.836031: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31943 NeuralNetworksT-13707 (13707) [006] ...1 29481.836034: tracing_mark_write: E|13707
31944 NeuralNetworksT-13707 (13707) [006] ...1 29481.836037: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31945 NeuralNetworksT-13707 (13707) [006] ...1 29481.836040: tracing_mark_write: E|13707
31946 NeuralNetworksT-13707 (13707) [006] ...1 29481.836043: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31947 NeuralNetworksT-13707 (13707) [006] ...1 29481.836047: tracing_mark_write: E|13707
31948 NeuralNetworksT-13707 (13707) [006] ...1 29481.836050: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31949 NeuralNetworksT-13707 (13707) [006] ...1 29481.836054: tracing_mark_write: E|13707
31950 NeuralNetworksT-13707 (13707) [006] ...1 29481.836057: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31951 NeuralNetworksT-13707 (13707) [006] ...1 29481.836060: tracing_mark_write: E|13707
31952 NeuralNetworksT-13707 (13707) [006] ...1 29481.836063: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31953 NeuralNetworksT-13707 (13707) [006] ...1 29481.836067: tracing_mark_write: E|13707
31954 NeuralNetworksT-13707 (13707) [006] ...1 29481.836070: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31955 NeuralNetworksT-13707 (13707) [006] ...1 29481.836073: tracing_mark_write: E|13707
31956 NeuralNetworksT-13707 (13707) [006] ...1 29481.836076: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31957 NeuralNetworksT-13707 (13707) [006] ...1 29481.836079: tracing_mark_write: E|13707
31958 NeuralNetworksT-13707 (13707) [006] ...1 29481.836082: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31959 NeuralNetworksT-13707 (13707) [006] ...1 29481.836086: tracing_mark_write: E|13707
31960 NeuralNetworksT-13707 (13707) [006] ...1 29481.836089: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31961 NeuralNetworksT-13707 (13707) [006] ...1 29481.836093: tracing_mark_write: E|13707
31962 NeuralNetworksT-13707 (13707) [006] ...1 29481.836096: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31963 NeuralNetworksT-13707 (13707) [006] ...1 29481.836099: tracing_mark_write: E|13707
31964 NeuralNetworksT-13707 (13707) [006] ...1 29481.836102: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31965 NeuralNetworksT-13707 (13707) [006] ...1 29481.836105: tracing_mark_write: E|13707
31966 NeuralNetworksT-13707 (13707) [006] ...1 29481.836109: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31967 NeuralNetworksT-13707 (13707) [006] ...1 29481.836112: tracing_mark_write: E|13707
31968 NeuralNetworksT-13707 (13707) [006] ...1 29481.836115: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31969 NeuralNetworksT-13707 (13707) [006] ...1 29481.836118: tracing_mark_write: E|13707
31970 NeuralNetworksT-13707 (13707) [006] ...1 29481.836121: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31971 NeuralNetworksT-13707 (13707) [006] ...1 29481.836124: tracing_mark_write: E|13707
31972 NeuralNetworksT-13707 (13707) [006] ...1 29481.836127: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31973 NeuralNetworksT-13707 (13707) [006] ...1 29481.836130: tracing_mark_write: E|13707
31974 NeuralNetworksT-13707 (13707) [006] ...1 29481.836134: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31975 NeuralNetworksT-13707 (13707) [006] ...1 29481.836137: tracing_mark_write: E|13707
31976 NeuralNetworksT-13707 (13707) [006] ...1 29481.836140: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31977 NeuralNetworksT-13707 (13707) [006] ...1 29481.836144: tracing_mark_write: E|13707
31978 NeuralNetworksT-13707 (13707) [006] ...1 29481.836147: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31979 NeuralNetworksT-13707 (13707) [006] ...1 29481.836150: tracing_mark_write: E|13707
31980 NeuralNetworksT-13707 (13707) [006] ...1 29481.836154: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31981 NeuralNetworksT-13707 (13707) [006] ...1 29481.836157: tracing_mark_write: E|13707
31982 NeuralNetworksT-13707 (13707) [006] ...1 29481.836160: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31983 NeuralNetworksT-13707 (13707) [006] ...1 29481.836165: tracing_mark_write: E|13707
31984 NeuralNetworksT-13707 (13707) [006] ...1 29481.836168: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31985 NeuralNetworksT-13707 (13707) [006] ...1 29481.836171: tracing_mark_write: E|13707
31986 NeuralNetworksT-13707 (13707) [006] ...1 29481.836174: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31987 NeuralNetworksT-13707 (13707) [006] ...1 29481.836177: tracing_mark_write: E|13707
31988 NeuralNetworksT-13707 (13707) [006] ...1 29481.836180: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31989 NeuralNetworksT-13707 (13707) [006] ...1 29481.836184: tracing_mark_write: E|13707
31990 NeuralNetworksT-13707 (13707) [006] ...1 29481.836187: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31991 NeuralNetworksT-13707 (13707) [006] ...1 29481.836190: tracing_mark_write: E|13707
31992 NeuralNetworksT-13707 (13707) [006] ...1 29481.836193: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31993 NeuralNetworksT-13707 (13707) [006] ...1 29481.836197: tracing_mark_write: E|13707
31994 NeuralNetworksT-13707 (13707) [006] ...1 29481.836200: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31995 NeuralNetworksT-13707 (13707) [006] ...1 29481.836203: tracing_mark_write: E|13707
31996 NeuralNetworksT-13707 (13707) [006] ...1 29481.836206: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31997 NeuralNetworksT-13707 (13707) [006] ...1 29481.836209: tracing_mark_write: E|13707
31998 NeuralNetworksT-13707 (13707) [006] ...1 29481.836212: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
31999 NeuralNetworksT-13707 (13707) [006] ...1 29481.836216: tracing_mark_write: E|13707
32000 NeuralNetworksT-13707 (13707) [006] ...1 29481.836219: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32001 NeuralNetworksT-13707 (13707) [006] ...1 29481.836223: tracing_mark_write: E|13707
32002 NeuralNetworksT-13707 (13707) [006] ...1 29481.836226: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32003 NeuralNetworksT-13707 (13707) [006] ...1 29481.836230: tracing_mark_write: E|13707
32004 NeuralNetworksT-13707 (13707) [006] ...1 29481.836233: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32005 NeuralNetworksT-13707 (13707) [006] ...1 29481.836236: tracing_mark_write: E|13707
32006 NeuralNetworksT-13707 (13707) [006] ...1 29481.836239: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32007 NeuralNetworksT-13707 (13707) [006] ...1 29481.836242: tracing_mark_write: E|13707
32008 NeuralNetworksT-13707 (13707) [006] ...1 29481.836246: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32009 NeuralNetworksT-13707 (13707) [006] ...1 29481.836249: tracing_mark_write: E|13707
32010 NeuralNetworksT-13707 (13707) [006] ...1 29481.836253: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32011 NeuralNetworksT-13707 (13707) [006] ...1 29481.836258: tracing_mark_write: E|13707
32012 NeuralNetworksT-13707 (13707) [006] ...1 29481.836261: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32013 NeuralNetworksT-13707 (13707) [006] ...1 29481.836264: tracing_mark_write: E|13707
32014 NeuralNetworksT-13707 (13707) [006] ...1 29481.836267: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32015 NeuralNetworksT-13707 (13707) [006] ...1 29481.836270: tracing_mark_write: E|13707
32016 NeuralNetworksT-13707 (13707) [006] ...1 29481.836273: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32017 NeuralNetworksT-13707 (13707) [006] ...1 29481.836277: tracing_mark_write: E|13707
32018 NeuralNetworksT-13707 (13707) [006] ...1 29481.836280: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32019 NeuralNetworksT-13707 (13707) [006] ...1 29481.836283: tracing_mark_write: E|13707
32020 NeuralNetworksT-13707 (13707) [006] ...1 29481.836286: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32021 NeuralNetworksT-13707 (13707) [006] ...1 29481.836289: tracing_mark_write: E|13707
32022 NeuralNetworksT-13707 (13707) [006] ...1 29481.836292: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32023 NeuralNetworksT-13707 (13707) [006] ...1 29481.836295: tracing_mark_write: E|13707
32024 NeuralNetworksT-13707 (13707) [006] ...1 29481.836298: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32025 NeuralNetworksT-13707 (13707) [006] ...1 29481.836302: tracing_mark_write: E|13707
32026 NeuralNetworksT-13707 (13707) [006] ...1 29481.836305: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32027 NeuralNetworksT-13707 (13707) [006] ...1 29481.836308: tracing_mark_write: E|13707
32028 NeuralNetworksT-13707 (13707) [006] ...1 29481.836311: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32029 NeuralNetworksT-13707 (13707) [006] ...1 29481.836314: tracing_mark_write: E|13707
32030 NeuralNetworksT-13707 (13707) [006] ...1 29481.836317: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32031 NeuralNetworksT-13707 (13707) [006] ...1 29481.836321: tracing_mark_write: E|13707
32032 NeuralNetworksT-13707 (13707) [006] ...1 29481.836324: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32033 NeuralNetworksT-13707 (13707) [006] ...1 29481.836327: tracing_mark_write: E|13707
32034 NeuralNetworksT-13707 (13707) [006] ...1 29481.836330: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32035 NeuralNetworksT-13707 (13707) [006] ...1 29481.836333: tracing_mark_write: E|13707
32036 NeuralNetworksT-13707 (13707) [006] ...1 29481.836336: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32037 NeuralNetworksT-13707 (13707) [006] ...1 29481.836340: tracing_mark_write: E|13707
32038 NeuralNetworksT-13707 (13707) [006] ...1 29481.836343: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32039 NeuralNetworksT-13707 (13707) [006] ...1 29481.836346: tracing_mark_write: E|13707
32040 NeuralNetworksT-13707 (13707) [006] ...1 29481.836349: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32041 NeuralNetworksT-13707 (13707) [006] ...1 29481.836352: tracing_mark_write: E|13707
32042 NeuralNetworksT-13707 (13707) [006] ...1 29481.836355: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32043 NeuralNetworksT-13707 (13707) [006] ...1 29481.836359: tracing_mark_write: E|13707
32044 NeuralNetworksT-13707 (13707) [006] ...1 29481.836362: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperand
32045 NeuralNetworksT-13707 (13707) [006] ...1 29481.836365: tracing_mark_write: E|13707
32046 NeuralNetworksT-13707 (13707) [006] ...1 29481.836369: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32047 NeuralNetworksT-13707 (13707) [006] d..2 29481.836407: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
32048  HwBinder:771_4-20182 (  771) [000] d.h3 29481.836435: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=000
32049  HwBinder:771_4-20182 (  771) [000] d..2 29481.836456: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=003
32050 NeuralNetworksT-13707 (13707) [006] ...1 29481.836470: tracing_mark_write: E|13707
32051 NeuralNetworksT-13707 (13707) [006] ...1 29481.836475: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32052  HwBinder:771_4-20182 (  771) [000] d..3 29481.836505: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
32053          <idle>-0     (-----) [001] .n.1 29481.836512: cpu_idle: state=4294967295 cpu_id=1
32054 NeuralNetworksT-13707 (13707) [006] ...1 29481.836521: tracing_mark_write: E|13707
32055          <idle>-0     (-----) [001] d..2 29481.836523: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/0 next_pid=11 next_prio=120
32056 NeuralNetworksT-13707 (13707) [006] ...1 29481.836525: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32057         rcuos/0-11    (   11) [001] d..2 29481.836546: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32058          <idle>-0     (-----) [001] d..1 29481.836553: cpu_idle: state=0 cpu_id=1
32059 NeuralNetworksT-13707 (13707) [006] ...1 29481.836566: tracing_mark_write: E|13707
32060 NeuralNetworksT-13707 (13707) [006] ...1 29481.836570: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32061 NeuralNetworksT-13707 (13707) [006] ...1 29481.836611: tracing_mark_write: E|13707
32062 NeuralNetworksT-13707 (13707) [006] ...1 29481.836615: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32063 NeuralNetworksT-13707 (13707) [006] ...1 29481.836655: tracing_mark_write: E|13707
32064 NeuralNetworksT-13707 (13707) [006] ...1 29481.836659: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32065 NeuralNetworksT-13707 (13707) [006] ...1 29481.836698: tracing_mark_write: E|13707
32066 NeuralNetworksT-13707 (13707) [006] ...1 29481.836702: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32067  HwBinder:771_4-20182 (  771) [000] d..2 29481.836710: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
32068  HwBinder:771_4-20182 (  771) [000] d..3 29481.836732: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
32069 NeuralNetworksT-13707 (13707) [006] ...1 29481.836741: tracing_mark_write: E|13707
32070 NeuralNetworksT-13707 (13707) [006] ...1 29481.836744: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32071 NeuralNetworksT-13707 (13707) [006] ...1 29481.836784: tracing_mark_write: E|13707
32072 NeuralNetworksT-13707 (13707) [006] ...1 29481.836787: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32073 NeuralNetworksT-13707 (13707) [006] ...1 29481.836828: tracing_mark_write: E|13707
32074 NeuralNetworksT-13707 (13707) [006] ...1 29481.836831: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32075 NeuralNetworksT-13707 (13707) [006] ...1 29481.836870: tracing_mark_write: E|13707
32076 NeuralNetworksT-13707 (13707) [006] ...1 29481.836873: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32077 NeuralNetworksT-13707 (13707) [006] ...1 29481.836915: tracing_mark_write: E|13707
32078 NeuralNetworksT-13707 (13707) [006] ...1 29481.836918: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32079 NeuralNetworksT-13707 (13707) [006] ...1 29481.836958: tracing_mark_write: E|13707
32080 NeuralNetworksT-13707 (13707) [006] ...1 29481.836961: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32081 NeuralNetworksT-13707 (13707) [006] ...1 29481.837002: tracing_mark_write: E|13707
32082 NeuralNetworksT-13707 (13707) [006] ...1 29481.837005: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32083 NeuralNetworksT-13707 (13707) [006] ...1 29481.837046: tracing_mark_write: E|13707
32084 NeuralNetworksT-13707 (13707) [006] ...1 29481.837050: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32085          <idle>-0     (-----) [001] d.s2 29481.837085: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
32086 NeuralNetworksT-13707 (13707) [006] d.H2 29481.837126: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
32087          <idle>-0     (-----) [001] dns3 29481.837131: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
32088 NeuralNetworksT-13707 (13707) [006] d.H3 29481.837139: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
32089 NeuralNetworksT-13707 (13707) [006] d.H2 29481.837141: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32090          <idle>-0     (-----) [001] .n.1 29481.837151: cpu_idle: state=4294967295 cpu_id=1
32091 NeuralNetworksT-13707 (13707) [006] d.s2 29481.837153: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
32092          <idle>-0     (-----) [001] d..2 29481.837163: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
32093          <idle>-0     (-----) [003] dnh2 29481.837165: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
32094          <idle>-0     (-----) [003] .n.1 29481.837172: cpu_idle: state=4294967295 cpu_id=3
32095          <idle>-0     (-----) [003] dnh2 29481.837189: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32096          <idle>-0     (-----) [003] d..2 29481.837199: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
32097       rcu_sched-8     (    8) [001] d..2 29481.837213: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
32098         rcuop/0-10    (   10) [001] d..2 29481.837218: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
32099         sugov:0-559   (  559) [003] .... 29481.837225: clk_set_rate: pwrcl_clk 902400000
32100 NeuralNetworksT-13707 (13707) [006] ...1 29481.837235: tracing_mark_write: E|13707
32101         sugov:0-559   (  559) [003] .... 29481.837236: clk_set_rate: cpu3_pwrcl_clk 825600000
32102 NeuralNetworksT-13707 (13707) [006] ...1 29481.837239: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32103         sugov:0-559   (  559) [003] .... 29481.837246: clk_set_rate: cpu2_pwrcl_clk 825600000
32104         sugov:0-559   (  559) [003] .... 29481.837254: clk_set_rate: cpu1_pwrcl_clk 825600000
32105         rcuop/0-10    (   10) [001] d..3 29481.837255: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32106         sugov:0-559   (  559) [003] .... 29481.837262: clk_set_rate: cpu0_pwrcl_clk 902400000
32107         rcuop/0-10    (   10) [001] d..2 29481.837265: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32108         sugov:0-559   (  559) [003] .... 29481.837270: cpu_frequency: state=902400 cpu_id=0
32109 NeuralNetworksT-13707 (13707) [006] ...1 29481.837282: tracing_mark_write: E|13707
32110 NeuralNetworksT-13707 (13707) [006] ...1 29481.837285: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32111         sugov:0-559   (  559) [003] .... 29481.837288: cpu_frequency: state=902400 cpu_id=1
32112         sugov:0-559   (  559) [003] .... 29481.837292: cpu_frequency: state=902400 cpu_id=2
32113         sugov:0-559   (  559) [003] .... 29481.837296: cpu_frequency: state=902400 cpu_id=3
32114     rcu_preempt-7     (    7) [001] d..2 29481.837299: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
32115         sugov:0-559   (  559) [003] d..2 29481.837312: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32116          <idle>-0     (-----) [007] .n.1 29481.837326: cpu_idle: state=4294967295 cpu_id=7
32117 NeuralNetworksT-13707 (13707) [006] ...1 29481.837327: tracing_mark_write: E|13707
32118 NeuralNetworksT-13707 (13707) [006] ...1 29481.837331: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32119          <idle>-0     (-----) [007] d..2 29481.837341: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
32120         sugov:4-560   (  560) [007] d..2 29481.837364: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32121 NeuralNetworksT-13707 (13707) [006] ...1 29481.837371: tracing_mark_write: E|13707
32122          <idle>-0     (-----) [007] d..1 29481.837372: cpu_idle: state=2 cpu_id=7
32123 NeuralNetworksT-13707 (13707) [006] ...1 29481.837374: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32124  HwBinder:771_4-20182 (  771) [000] d.h2 29481.837399: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
32125            adbd-23485 ( 1007) [001] d..2 29481.837401: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32126 NeuralNetworksT-13707 (13707) [006] ...1 29481.837413: tracing_mark_write: E|13707
32127 NeuralNetworksT-13707 (13707) [006] ...1 29481.837417: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32128  kworker/u16:10-23868 (23868) [003] .... 29481.837423: clk_set_rate: l3_cluster0_vote_clk 403200000
32129          <idle>-0     (-----) [001] d..1 29481.837426: cpu_idle: state=0 cpu_id=1
32130  HwBinder:771_4-20182 (  771) [000] d.h3 29481.837440: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
32131          <idle>-0     (-----) [001] .n.1 29481.837447: cpu_idle: state=4294967295 cpu_id=1
32132          <idle>-0     (-----) [001] d..2 29481.837459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
32133 NeuralNetworksT-13707 (13707) [006] ...1 29481.837471: tracing_mark_write: E|13707
32134   kworker/u17:1-18284 (18284) [001] d..2 29481.837474: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32135 NeuralNetworksT-13707 (13707) [006] ...1 29481.837475: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32136   kworker/u17:1-18284 (18284) [001] d..3 29481.837489: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32137   kworker/u17:1-18284 (18284) [001] d..2 29481.837513: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
32138     kworker/1:1-13678 (13678) [001] d..2 29481.837523: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
32139 NeuralNetworksT-13707 (13707) [006] ...1 29481.837526: tracing_mark_write: E|13707
32140 NeuralNetworksT-13707 (13707) [006] ...1 29481.837529: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32141     kworker/1:1-13678 (13678) [001] d..3 29481.837540: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
32142     kworker/1:1-13678 (13678) [001] d..2 29481.837566: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
32143 NeuralNetworksT-13707 (13707) [006] ...1 29481.837569: tracing_mark_write: E|13707
32144 NeuralNetworksT-13707 (13707) [006] ...1 29481.837572: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32145 NeuralNetworksT-13707 (13707) [006] ...1 29481.837609: tracing_mark_write: E|13707
32146 NeuralNetworksT-13707 (13707) [006] ...1 29481.837613: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32147            adbd-23485 ( 1007) [001] d..2 29481.837647: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32148  HwBinder:771_4-20182 (  771) [000] d.h2 29481.837650: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
32149 NeuralNetworksT-13707 (13707) [006] ...1 29481.837650: tracing_mark_write: E|13707
32150 NeuralNetworksT-13707 (13707) [006] ...1 29481.837654: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32151          <idle>-0     (-----) [001] d..1 29481.837661: cpu_idle: state=0 cpu_id=1
32152  HwBinder:771_4-20182 (  771) [000] d.h3 29481.837669: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
32153          <idle>-0     (-----) [001] .n.1 29481.837675: cpu_idle: state=4294967295 cpu_id=1
32154          <idle>-0     (-----) [001] d..2 29481.837686: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
32155 NeuralNetworksT-13707 (13707) [006] ...1 29481.837693: tracing_mark_write: E|13707
32156 NeuralNetworksT-13707 (13707) [006] ...1 29481.837696: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32157   kworker/u17:1-18284 (18284) [001] d..2 29481.837698: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32158   kworker/u17:1-18284 (18284) [001] d..3 29481.837708: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32159  kworker/u16:10-23868 (23868) [003] d..2 29481.837728: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
32160   kworker/u17:1-18284 (18284) [001] d..2 29481.837731: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
32161 NeuralNetworksT-13707 (13707) [006] ...1 29481.837735: tracing_mark_write: E|13707
32162 NeuralNetworksT-13707 (13707) [006] ...1 29481.837738: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32163     kworker/1:1-13678 (13678) [001] d..2 29481.837739: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
32164     kworker/1:1-13678 (13678) [001] d..3 29481.837765: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
32165 NeuralNetworksT-13707 (13707) [006] ...1 29481.837778: tracing_mark_write: E|13707
32166          <idle>-0     (-----) [003] dns4 29481.837780: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32167 NeuralNetworksT-13707 (13707) [006] ...1 29481.837781: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32168     kworker/1:1-13678 (13678) [001] d..2 29481.837794: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32169          <idle>-0     (-----) [001] d..1 29481.837805: cpu_idle: state=0 cpu_id=1
32170          <idle>-0     (-----) [003] dns5 29481.837816: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32171 NeuralNetworksT-13707 (13707) [006] ...1 29481.837820: tracing_mark_write: E|13707
32172 NeuralNetworksT-13707 (13707) [006] ...1 29481.837824: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32173          <idle>-0     (-----) [003] dns5 29481.837824: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
32174          <idle>-0     (-----) [001] .n.1 29481.837830: cpu_idle: state=4294967295 cpu_id=1
32175          <idle>-0     (-----) [003] d..2 29481.837839: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
32176          <idle>-0     (-----) [001] d..2 29481.837842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32177 NeuralNetworksT-13707 (13707) [006] ...1 29481.837862: tracing_mark_write: E|13707
32178 NeuralNetworksT-13707 (13707) [006] ...1 29481.837865: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32179  HwBinder:771_4-20182 (  771) [000] d.h2 29481.837872: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
32180  kworker/u16:10-23868 (23868) [001] d..2 29481.837876: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32181          <idle>-0     (-----) [001] d..1 29481.837885: cpu_idle: state=0 cpu_id=1
32182          <idle>-0     (-----) [001] .n.1 29481.837888: cpu_idle: state=4294967295 cpu_id=1
32183            adbd-23485 ( 1007) [003] d..2 29481.837888: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32184  HwBinder:771_4-20182 (  771) [000] d.h3 29481.837890: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
32185          <idle>-0     (-----) [001] d..2 29481.837902: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
32186 NeuralNetworksT-13707 (13707) [006] ...1 29481.837905: tracing_mark_write: E|13707
32187          <idle>-0     (-----) [003] d..1 29481.837906: cpu_idle: state=0 cpu_id=3
32188 NeuralNetworksT-13707 (13707) [006] ...1 29481.837908: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32189   kworker/u17:1-18284 (18284) [001] d..2 29481.837915: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32190   kworker/u17:1-18284 (18284) [001] d..3 29481.837925: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32191 NeuralNetworksT-13707 (13707) [006] ...1 29481.837946: tracing_mark_write: E|13707
32192   kworker/u17:1-18284 (18284) [001] d..2 29481.837948: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
32193 NeuralNetworksT-13707 (13707) [006] ...1 29481.837949: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32194     kworker/1:1-13678 (13678) [001] d..2 29481.837961: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
32195 NeuralNetworksT-13707 (13707) [006] ...1 29481.837988: tracing_mark_write: E|13707
32196 NeuralNetworksT-13707 (13707) [006] ...1 29481.837991: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32197     kworker/1:1-13678 (13678) [001] d..3 29481.837998: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
32198     kworker/1:1-13678 (13678) [001] d..2 29481.838012: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
32199 NeuralNetworksT-13707 (13707) [006] ...1 29481.838031: tracing_mark_write: E|13707
32200 NeuralNetworksT-13707 (13707) [006] ...1 29481.838034: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32201            adbd-23484 ( 1007) [001] d..2 29481.838036: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
32202            adbd-23484 ( 1007) [001] d..3 29481.838048: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
32203 NeuralNetworksT-13707 (13707) [006] ...1 29481.838073: tracing_mark_write: E|13707
32204 NeuralNetworksT-13707 (13707) [006] ...1 29481.838076: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32205 NeuralNetworksT-13707 (13707) [006] ...1 29481.838116: tracing_mark_write: E|13707
32206            adbd-23484 ( 1007) [001] d..2 29481.838119: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
32207 NeuralNetworksT-13707 (13707) [006] ...1 29481.838120: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32208 NeuralNetworksT-13707 (13707) [006] ...1 29481.838160: tracing_mark_write: E|13707
32209 NeuralNetworksT-13707 (13707) [006] ...1 29481.838163: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32210 NeuralNetworksT-13707 (13707) [006] ...1 29481.838202: tracing_mark_write: E|13707
32211 NeuralNetworksT-13707 (13707) [006] ...1 29481.838205: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32212            adbd-1007  ( 1007) [001] d..2 29481.838233: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32213 NeuralNetworksT-13707 (13707) [006] ...1 29481.838243: tracing_mark_write: E|13707
32214 NeuralNetworksT-13707 (13707) [006] ...1 29481.838246: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32215          <idle>-0     (-----) [001] d..1 29481.838247: cpu_idle: state=0 cpu_id=1
32216 NeuralNetworksT-13707 (13707) [006] ...1 29481.838285: tracing_mark_write: E|13707
32217 NeuralNetworksT-13707 (13707) [006] ...1 29481.838288: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32218 NeuralNetworksT-13707 (13707) [006] ...1 29481.838328: tracing_mark_write: E|13707
32219 NeuralNetworksT-13707 (13707) [006] ...1 29481.838331: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32220 NeuralNetworksT-13707 (13707) [006] ...1 29481.838372: tracing_mark_write: E|13707
32221 NeuralNetworksT-13707 (13707) [006] ...1 29481.838375: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32222 NeuralNetworksT-13707 (13707) [006] ...1 29481.838415: tracing_mark_write: E|13707
32223 NeuralNetworksT-13707 (13707) [006] ...1 29481.838418: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32224 NeuralNetworksT-13707 (13707) [006] ...1 29481.838457: tracing_mark_write: E|13707
32225 NeuralNetworksT-13707 (13707) [006] ...1 29481.838460: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32226 NeuralNetworksT-13707 (13707) [006] ...1 29481.838501: tracing_mark_write: E|13707
32227 NeuralNetworksT-13707 (13707) [006] ...1 29481.838504: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32228 NeuralNetworksT-13707 (13707) [006] ...1 29481.838547: tracing_mark_write: E|13707
32229 NeuralNetworksT-13707 (13707) [006] ...1 29481.838550: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32230 NeuralNetworksT-13707 (13707) [006] ...1 29481.838591: tracing_mark_write: E|13707
32231 NeuralNetworksT-13707 (13707) [006] ...1 29481.838594: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32232 NeuralNetworksT-13707 (13707) [006] ...1 29481.838634: tracing_mark_write: E|13707
32233 NeuralNetworksT-13707 (13707) [006] ...1 29481.838637: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32234 NeuralNetworksT-13707 (13707) [006] ...1 29481.838677: tracing_mark_write: E|13707
32235 NeuralNetworksT-13707 (13707) [006] ...1 29481.838680: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32236 NeuralNetworksT-13707 (13707) [006] ...1 29481.838718: tracing_mark_write: E|13707
32237 NeuralNetworksT-13707 (13707) [006] ...1 29481.838721: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32238 NeuralNetworksT-13707 (13707) [006] ...1 29481.838762: tracing_mark_write: E|13707
32239 NeuralNetworksT-13707 (13707) [006] ...1 29481.838765: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32240 NeuralNetworksT-13707 (13707) [006] ...1 29481.838806: tracing_mark_write: E|13707
32241 NeuralNetworksT-13707 (13707) [006] ...1 29481.838809: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32242 NeuralNetworksT-13707 (13707) [006] ...1 29481.838848: tracing_mark_write: E|13707
32243 NeuralNetworksT-13707 (13707) [006] ...1 29481.838852: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32244 NeuralNetworksT-13707 (13707) [006] ...1 29481.838892: tracing_mark_write: E|13707
32245 NeuralNetworksT-13707 (13707) [006] ...1 29481.838896: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32246 NeuralNetworksT-13707 (13707) [006] ...1 29481.838937: tracing_mark_write: E|13707
32247 NeuralNetworksT-13707 (13707) [006] ...1 29481.838940: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32248 NeuralNetworksT-13707 (13707) [006] ...1 29481.838979: tracing_mark_write: E|13707
32249 NeuralNetworksT-13707 (13707) [006] ...1 29481.838982: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32250 NeuralNetworksT-13707 (13707) [006] ...1 29481.839023: tracing_mark_write: E|13707
32251 NeuralNetworksT-13707 (13707) [006] ...1 29481.839026: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32252 NeuralNetworksT-13707 (13707) [006] ...1 29481.839065: tracing_mark_write: E|13707
32253  HwBinder:771_4-20182 (  771) [000] d..2 29481.839068: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
32254 NeuralNetworksT-13707 (13707) [006] ...1 29481.839069: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32255 NeuralNetworksT-13707 (13707) [006] ...1 29481.839108: tracing_mark_write: E|13707
32256 NeuralNetworksT-13707 (13707) [006] ...1 29481.839111: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32257 NeuralNetworksT-13707 (13707) [006] ...1 29481.839150: tracing_mark_write: E|13707
32258 NeuralNetworksT-13707 (13707) [006] ...1 29481.839153: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32259 NeuralNetworksT-13707 (13707) [006] ...1 29481.839192: tracing_mark_write: E|13707
32260 NeuralNetworksT-13707 (13707) [006] ...1 29481.839195: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32261 NeuralNetworksT-13707 (13707) [006] ...1 29481.839235: tracing_mark_write: E|13707
32262 NeuralNetworksT-13707 (13707) [006] ...1 29481.839239: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32263 NeuralNetworksT-13707 (13707) [006] ...1 29481.839280: tracing_mark_write: E|13707
32264 NeuralNetworksT-13707 (13707) [006] ...1 29481.839283: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32265 NeuralNetworksT-13707 (13707) [006] ...1 29481.839323: tracing_mark_write: E|13707
32266 NeuralNetworksT-13707 (13707) [006] ...1 29481.839326: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32267 NeuralNetworksT-13707 (13707) [006] ...1 29481.839367: tracing_mark_write: E|13707
32268 NeuralNetworksT-13707 (13707) [006] ...1 29481.839370: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32269 NeuralNetworksT-13707 (13707) [006] ...1 29481.839413: tracing_mark_write: E|13707
32270 NeuralNetworksT-13707 (13707) [006] ...1 29481.839416: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32271 NeuralNetworksT-13707 (13707) [006] ...1 29481.839455: tracing_mark_write: E|13707
32272 NeuralNetworksT-13707 (13707) [006] ...1 29481.839458: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32273 NeuralNetworksT-13707 (13707) [006] ...1 29481.839501: tracing_mark_write: E|13707
32274 NeuralNetworksT-13707 (13707) [006] ...1 29481.839504: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32275 NeuralNetworksT-13707 (13707) [006] ...1 29481.839543: tracing_mark_write: E|13707
32276 NeuralNetworksT-13707 (13707) [006] ...1 29481.839547: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32277 NeuralNetworksT-13707 (13707) [006] ...1 29481.839588: tracing_mark_write: E|13707
32278 NeuralNetworksT-13707 (13707) [006] ...1 29481.839591: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32279 NeuralNetworksT-13707 (13707) [006] ...1 29481.839632: tracing_mark_write: E|13707
32280 NeuralNetworksT-13707 (13707) [006] ...1 29481.839635: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32281 NeuralNetworksT-13707 (13707) [006] ...1 29481.839677: tracing_mark_write: E|13707
32282 NeuralNetworksT-13707 (13707) [006] ...1 29481.839680: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32283 NeuralNetworksT-13707 (13707) [006] ...1 29481.839720: tracing_mark_write: E|13707
32284 NeuralNetworksT-13707 (13707) [006] ...1 29481.839724: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32285 NeuralNetworksT-13707 (13707) [006] ...1 29481.839760: tracing_mark_write: E|13707
32286 NeuralNetworksT-13707 (13707) [006] ...1 29481.839763: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32287 NeuralNetworksT-13707 (13707) [006] ...1 29481.839801: tracing_mark_write: E|13707
32288 NeuralNetworksT-13707 (13707) [006] ...1 29481.839805: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32289 NeuralNetworksT-13707 (13707) [006] ...1 29481.839843: tracing_mark_write: E|13707
32290 NeuralNetworksT-13707 (13707) [006] ...1 29481.839846: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32291 NeuralNetworksT-13707 (13707) [006] ...1 29481.839885: tracing_mark_write: E|13707
32292 NeuralNetworksT-13707 (13707) [006] ...1 29481.839888: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32293 NeuralNetworksT-13707 (13707) [006] ...1 29481.839926: tracing_mark_write: E|13707
32294 NeuralNetworksT-13707 (13707) [006] ...1 29481.839929: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32295 NeuralNetworksT-13707 (13707) [006] ...1 29481.839968: tracing_mark_write: E|13707
32296 NeuralNetworksT-13707 (13707) [006] ...1 29481.839971: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32297 NeuralNetworksT-13707 (13707) [006] ...1 29481.840010: tracing_mark_write: E|13707
32298 NeuralNetworksT-13707 (13707) [006] ...1 29481.840013: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32299 NeuralNetworksT-13707 (13707) [006] ...1 29481.840051: tracing_mark_write: E|13707
32300 NeuralNetworksT-13707 (13707) [006] ...1 29481.840055: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32301 NeuralNetworksT-13707 (13707) [006] ...1 29481.840093: tracing_mark_write: E|13707
32302 NeuralNetworksT-13707 (13707) [006] ...1 29481.840097: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32303 NeuralNetworksT-13707 (13707) [006] ...1 29481.840136: tracing_mark_write: E|13707
32304 NeuralNetworksT-13707 (13707) [006] ...1 29481.840139: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32305 NeuralNetworksT-13707 (13707) [006] ...1 29481.840179: tracing_mark_write: E|13707
32306 NeuralNetworksT-13707 (13707) [006] ...1 29481.840182: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32307 NeuralNetworksT-13707 (13707) [006] ...1 29481.840221: tracing_mark_write: E|13707
32308 NeuralNetworksT-13707 (13707) [006] ...1 29481.840224: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32309 NeuralNetworksT-13707 (13707) [006] ...1 29481.840263: tracing_mark_write: E|13707
32310 NeuralNetworksT-13707 (13707) [006] ...1 29481.840266: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32311 NeuralNetworksT-13707 (13707) [006] ...1 29481.840306: tracing_mark_write: E|13707
32312 NeuralNetworksT-13707 (13707) [006] ...1 29481.840309: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32313 NeuralNetworksT-13707 (13707) [006] ...1 29481.840348: tracing_mark_write: E|13707
32314 NeuralNetworksT-13707 (13707) [006] ...1 29481.840351: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32315 NeuralNetworksT-13707 (13707) [006] ...1 29481.840411: tracing_mark_write: E|13707
32316 NeuralNetworksT-13707 (13707) [006] ...1 29481.840414: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32317 NeuralNetworksT-13707 (13707) [006] ...1 29481.840458: tracing_mark_write: E|13707
32318 NeuralNetworksT-13707 (13707) [006] ...1 29481.840461: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32319 NeuralNetworksT-13707 (13707) [006] ...1 29481.840501: tracing_mark_write: E|13707
32320 NeuralNetworksT-13707 (13707) [006] ...1 29481.840504: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32321 NeuralNetworksT-13707 (13707) [006] ...1 29481.840542: tracing_mark_write: E|13707
32322 NeuralNetworksT-13707 (13707) [006] ...1 29481.840546: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32323 NeuralNetworksT-13707 (13707) [006] ...1 29481.840584: tracing_mark_write: E|13707
32324 NeuralNetworksT-13707 (13707) [006] ...1 29481.840587: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32325 NeuralNetworksT-13707 (13707) [006] ...1 29481.840625: tracing_mark_write: E|13707
32326 NeuralNetworksT-13707 (13707) [006] ...1 29481.840628: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32327 NeuralNetworksT-13707 (13707) [006] ...1 29481.840667: tracing_mark_write: E|13707
32328 NeuralNetworksT-13707 (13707) [006] ...1 29481.840672: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32329 NeuralNetworksT-13707 (13707) [006] ...1 29481.840710: tracing_mark_write: E|13707
32330 NeuralNetworksT-13707 (13707) [006] ...1 29481.840714: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32331 NeuralNetworksT-13707 (13707) [006] ...1 29481.840752: tracing_mark_write: E|13707
32332 NeuralNetworksT-13707 (13707) [006] ...1 29481.840756: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32333 NeuralNetworksT-13707 (13707) [006] ...1 29481.840794: tracing_mark_write: E|13707
32334 NeuralNetworksT-13707 (13707) [006] ...1 29481.840797: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32335 NeuralNetworksT-13707 (13707) [006] ...1 29481.840834: tracing_mark_write: E|13707
32336 NeuralNetworksT-13707 (13707) [006] ...1 29481.840838: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32337 NeuralNetworksT-13707 (13707) [006] ...1 29481.840878: tracing_mark_write: E|13707
32338 NeuralNetworksT-13707 (13707) [006] ...1 29481.840881: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32339 NeuralNetworksT-13707 (13707) [006] ...1 29481.840920: tracing_mark_write: E|13707
32340 NeuralNetworksT-13707 (13707) [006] ...1 29481.840924: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32341 NeuralNetworksT-13707 (13707) [006] ...1 29481.840963: tracing_mark_write: E|13707
32342 NeuralNetworksT-13707 (13707) [006] ...1 29481.840966: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32343 NeuralNetworksT-13707 (13707) [006] ...1 29481.841006: tracing_mark_write: E|13707
32344 NeuralNetworksT-13707 (13707) [006] ...1 29481.841010: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32345 NeuralNetworksT-13707 (13707) [006] ...1 29481.841048: tracing_mark_write: E|13707
32346 NeuralNetworksT-13707 (13707) [006] ...1 29481.841051: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32347 NeuralNetworksT-13707 (13707) [006] ...1 29481.841090: tracing_mark_write: E|13707
32348 NeuralNetworksT-13707 (13707) [006] ...1 29481.841093: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32349 NeuralNetworksT-13707 (13707) [006] ...1 29481.841133: tracing_mark_write: E|13707
32350 NeuralNetworksT-13707 (13707) [006] ...1 29481.841136: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32351 NeuralNetworksT-13707 (13707) [006] ...1 29481.841175: tracing_mark_write: E|13707
32352 NeuralNetworksT-13707 (13707) [006] ...1 29481.841179: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32353 NeuralNetworksT-13707 (13707) [006] ...1 29481.841219: tracing_mark_write: E|13707
32354 NeuralNetworksT-13707 (13707) [006] ...1 29481.841222: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32355 NeuralNetworksT-13707 (13707) [006] ...1 29481.841262: tracing_mark_write: E|13707
32356 NeuralNetworksT-13707 (13707) [006] ...1 29481.841265: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32357 NeuralNetworksT-13707 (13707) [006] ...1 29481.841305: tracing_mark_write: E|13707
32358 NeuralNetworksT-13707 (13707) [006] ...1 29481.841308: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32359 NeuralNetworksT-13707 (13707) [006] ...1 29481.841347: tracing_mark_write: E|13707
32360 NeuralNetworksT-13707 (13707) [006] ...1 29481.841351: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32361 NeuralNetworksT-13707 (13707) [006] ...1 29481.841390: tracing_mark_write: E|13707
32362 NeuralNetworksT-13707 (13707) [006] ...1 29481.841394: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32363 NeuralNetworksT-13707 (13707) [006] ...1 29481.841436: tracing_mark_write: E|13707
32364 NeuralNetworksT-13707 (13707) [006] ...1 29481.841439: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32365 NeuralNetworksT-13707 (13707) [006] ...1 29481.841481: tracing_mark_write: E|13707
32366 NeuralNetworksT-13707 (13707) [006] ...1 29481.841485: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32367 NeuralNetworksT-13707 (13707) [006] ...1 29481.841526: tracing_mark_write: E|13707
32368 NeuralNetworksT-13707 (13707) [006] ...1 29481.841529: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32369 NeuralNetworksT-13707 (13707) [006] ...1 29481.841571: tracing_mark_write: E|13707
32370 NeuralNetworksT-13707 (13707) [006] ...1 29481.841574: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32371 NeuralNetworksT-13707 (13707) [006] ...1 29481.841616: tracing_mark_write: E|13707
32372 NeuralNetworksT-13707 (13707) [006] ...1 29481.841619: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32373 NeuralNetworksT-13707 (13707) [006] ...1 29481.841661: tracing_mark_write: E|13707
32374 NeuralNetworksT-13707 (13707) [006] ...1 29481.841664: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32375 NeuralNetworksT-13707 (13707) [006] ...1 29481.841705: tracing_mark_write: E|13707
32376 NeuralNetworksT-13707 (13707) [006] ...1 29481.841708: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32377 NeuralNetworksT-13707 (13707) [006] ...1 29481.841749: tracing_mark_write: E|13707
32378 NeuralNetworksT-13707 (13707) [006] ...1 29481.841753: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32379 NeuralNetworksT-13707 (13707) [006] ...1 29481.841796: tracing_mark_write: E|13707
32380 NeuralNetworksT-13707 (13707) [006] ...1 29481.841799: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32381 NeuralNetworksT-13707 (13707) [006] ...1 29481.841840: tracing_mark_write: E|13707
32382 NeuralNetworksT-13707 (13707) [006] ...1 29481.841843: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32383 NeuralNetworksT-13707 (13707) [006] ...1 29481.841882: tracing_mark_write: E|13707
32384 NeuralNetworksT-13707 (13707) [006] ...1 29481.841886: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32385 NeuralNetworksT-13707 (13707) [006] ...1 29481.841925: tracing_mark_write: E|13707
32386 NeuralNetworksT-13707 (13707) [006] ...1 29481.841929: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32387 NeuralNetworksT-13707 (13707) [006] ...1 29481.841968: tracing_mark_write: E|13707
32388 NeuralNetworksT-13707 (13707) [006] ...1 29481.841971: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32389 NeuralNetworksT-13707 (13707) [006] ...1 29481.842012: tracing_mark_write: E|13707
32390 NeuralNetworksT-13707 (13707) [006] ...1 29481.842016: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32391 NeuralNetworksT-13707 (13707) [006] ...1 29481.842056: tracing_mark_write: E|13707
32392 NeuralNetworksT-13707 (13707) [006] ...1 29481.842059: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32393 NeuralNetworksT-13707 (13707) [006] ...1 29481.842099: tracing_mark_write: E|13707
32394 NeuralNetworksT-13707 (13707) [006] ...1 29481.842102: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32395 NeuralNetworksT-13707 (13707) [006] ...1 29481.842143: tracing_mark_write: E|13707
32396 NeuralNetworksT-13707 (13707) [006] ...1 29481.842146: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32397 NeuralNetworksT-13707 (13707) [006] ...1 29481.842188: tracing_mark_write: E|13707
32398 NeuralNetworksT-13707 (13707) [006] ...1 29481.842191: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32399 NeuralNetworksT-13707 (13707) [006] ...1 29481.842233: tracing_mark_write: E|13707
32400 NeuralNetworksT-13707 (13707) [006] ...1 29481.842236: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32401 NeuralNetworksT-13707 (13707) [006] ...1 29481.842276: tracing_mark_write: E|13707
32402 NeuralNetworksT-13707 (13707) [006] ...1 29481.842279: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32403 NeuralNetworksT-13707 (13707) [006] ...1 29481.842323: tracing_mark_write: E|13707
32404 NeuralNetworksT-13707 (13707) [006] ...1 29481.842327: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32405 NeuralNetworksT-13707 (13707) [006] ...1 29481.842371: tracing_mark_write: E|13707
32406 NeuralNetworksT-13707 (13707) [006] ...1 29481.842374: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32407 NeuralNetworksT-13707 (13707) [006] ...1 29481.842418: tracing_mark_write: E|13707
32408 NeuralNetworksT-13707 (13707) [006] ...1 29481.842421: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32409 NeuralNetworksT-13707 (13707) [006] ...1 29481.842461: tracing_mark_write: E|13707
32410 NeuralNetworksT-13707 (13707) [006] ...1 29481.842464: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32411 NeuralNetworksT-13707 (13707) [006] ...1 29481.842504: tracing_mark_write: E|13707
32412 NeuralNetworksT-13707 (13707) [006] ...1 29481.842507: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32413 NeuralNetworksT-13707 (13707) [006] ...1 29481.842550: tracing_mark_write: E|13707
32414 NeuralNetworksT-13707 (13707) [006] ...1 29481.842553: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32415 NeuralNetworksT-13707 (13707) [006] ...1 29481.842594: tracing_mark_write: E|13707
32416 NeuralNetworksT-13707 (13707) [006] ...1 29481.842598: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32417 NeuralNetworksT-13707 (13707) [006] ...1 29481.842638: tracing_mark_write: E|13707
32418 NeuralNetworksT-13707 (13707) [006] ...1 29481.842641: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32419 NeuralNetworksT-13707 (13707) [006] ...1 29481.842681: tracing_mark_write: E|13707
32420 NeuralNetworksT-13707 (13707) [006] ...1 29481.842684: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32421 NeuralNetworksT-13707 (13707) [006] ...1 29481.842723: tracing_mark_write: E|13707
32422 NeuralNetworksT-13707 (13707) [006] ...1 29481.842726: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32423 NeuralNetworksT-13707 (13707) [006] ...1 29481.842768: tracing_mark_write: E|13707
32424 NeuralNetworksT-13707 (13707) [006] ...1 29481.842771: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32425 NeuralNetworksT-13707 (13707) [006] ...1 29481.842813: tracing_mark_write: E|13707
32426 NeuralNetworksT-13707 (13707) [006] ...1 29481.842816: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32427 NeuralNetworksT-13707 (13707) [006] ...1 29481.842856: tracing_mark_write: E|13707
32428 NeuralNetworksT-13707 (13707) [006] ...1 29481.842859: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32429 NeuralNetworksT-13707 (13707) [006] ...1 29481.842898: tracing_mark_write: E|13707
32430 NeuralNetworksT-13707 (13707) [006] ...1 29481.842901: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32431 NeuralNetworksT-13707 (13707) [006] ...1 29481.842943: tracing_mark_write: E|13707
32432 NeuralNetworksT-13707 (13707) [006] ...1 29481.842946: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32433 NeuralNetworksT-13707 (13707) [006] ...1 29481.842985: tracing_mark_write: E|13707
32434 NeuralNetworksT-13707 (13707) [006] ...1 29481.842988: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32435 NeuralNetworksT-13707 (13707) [006] ...1 29481.843030: tracing_mark_write: E|13707
32436 NeuralNetworksT-13707 (13707) [006] ...1 29481.843034: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32437 NeuralNetworksT-13707 (13707) [006] ...1 29481.843073: tracing_mark_write: E|13707
32438 NeuralNetworksT-13707 (13707) [006] ...1 29481.843076: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32439 NeuralNetworksT-13707 (13707) [006] ...1 29481.843117: tracing_mark_write: E|13707
32440 NeuralNetworksT-13707 (13707) [006] ...1 29481.843121: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32441 NeuralNetworksT-13707 (13707) [006] ...1 29481.843164: tracing_mark_write: E|13707
32442 NeuralNetworksT-13707 (13707) [006] ...1 29481.843167: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32443 NeuralNetworksT-13707 (13707) [006] ...1 29481.843206: tracing_mark_write: E|13707
32444 NeuralNetworksT-13707 (13707) [006] ...1 29481.843209: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32445 NeuralNetworksT-13707 (13707) [006] ...1 29481.843248: tracing_mark_write: E|13707
32446 NeuralNetworksT-13707 (13707) [006] ...1 29481.843252: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32447 NeuralNetworksT-13707 (13707) [006] ...1 29481.843291: tracing_mark_write: E|13707
32448 NeuralNetworksT-13707 (13707) [006] ...1 29481.843294: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32449 NeuralNetworksT-13707 (13707) [006] ...1 29481.843333: tracing_mark_write: E|13707
32450 NeuralNetworksT-13707 (13707) [006] ...1 29481.843337: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32451 NeuralNetworksT-13707 (13707) [006] ...1 29481.843375: tracing_mark_write: E|13707
32452 NeuralNetworksT-13707 (13707) [006] ...1 29481.843379: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32453 NeuralNetworksT-13707 (13707) [006] ...1 29481.843418: tracing_mark_write: E|13707
32454 NeuralNetworksT-13707 (13707) [006] ...1 29481.843421: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32455 NeuralNetworksT-13707 (13707) [006] ...1 29481.843461: tracing_mark_write: E|13707
32456 NeuralNetworksT-13707 (13707) [006] ...1 29481.843465: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32457 NeuralNetworksT-13707 (13707) [006] ...1 29481.843505: tracing_mark_write: E|13707
32458 NeuralNetworksT-13707 (13707) [006] ...1 29481.843509: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32459 NeuralNetworksT-13707 (13707) [006] ...1 29481.843548: tracing_mark_write: E|13707
32460 NeuralNetworksT-13707 (13707) [006] ...1 29481.843551: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32461 NeuralNetworksT-13707 (13707) [006] ...1 29481.843592: tracing_mark_write: E|13707
32462 NeuralNetworksT-13707 (13707) [006] ...1 29481.843595: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32463 NeuralNetworksT-13707 (13707) [006] ...1 29481.843637: tracing_mark_write: E|13707
32464 NeuralNetworksT-13707 (13707) [006] ...1 29481.843641: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32465 NeuralNetworksT-13707 (13707) [006] ...1 29481.843680: tracing_mark_write: E|13707
32466 NeuralNetworksT-13707 (13707) [006] ...1 29481.843685: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32467 NeuralNetworksT-13707 (13707) [006] ...1 29481.843742: tracing_mark_write: E|13707
32468 NeuralNetworksT-13707 (13707) [006] ...1 29481.843746: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32469          <idle>-0     (-----) [001] d.s2 29481.843749: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32470          <idle>-0     (-----) [001] dns3 29481.843766: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32471          <idle>-0     (-----) [001] dns2 29481.843769: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
32472          <idle>-0     (-----) [001] dns3 29481.843780: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
32473 NeuralNetworksT-13707 (13707) [006] ...1 29481.843786: tracing_mark_write: E|13707
32474 NeuralNetworksT-13707 (13707) [006] ...1 29481.843790: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32475          <idle>-0     (-----) [001] .n.1 29481.843790: cpu_idle: state=4294967295 cpu_id=1
32476          <idle>-0     (-----) [001] d..2 29481.843801: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
32477       rcu_sched-8     (    8) [001] d..2 29481.843809: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=001
32478       rcu_sched-8     (    8) [001] d..3 29481.843824: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=001
32479 NeuralNetworksT-13707 (13707) [006] ...1 29481.843830: tracing_mark_write: E|13707
32480 NeuralNetworksT-13707 (13707) [006] ...1 29481.843833: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32481       rcu_sched-8     (    8) [001] d..2 29481.843838: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/6 next_pid=62 next_prio=120
32482         rcuos/6-62    (   62) [001] d..2 29481.843851: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32483     rcu_preempt-7     (    7) [001] d..2 29481.843858: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
32484     rcu_preempt-7     (    7) [001] d..3 29481.843871: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
32485 NeuralNetworksT-13707 (13707) [006] ...1 29481.843872: tracing_mark_write: E|13707
32486 NeuralNetworksT-13707 (13707) [006] ...1 29481.843875: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32487     rcu_preempt-7     (    7) [001] d..2 29481.843879: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
32488         rcuop/0-10    (   10) [001] d..2 29481.843889: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32489         rcuop/0-10    (   10) [001] d..3 29481.843900: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32490         rcuop/0-10    (   10) [001] d..2 29481.843909: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32491          <idle>-0     (-----) [003] ...1 29481.843913: cpu_idle: state=4294967295 cpu_id=3
32492 NeuralNetworksT-13707 (13707) [006] ...1 29481.843915: tracing_mark_write: E|13707
32493          <idle>-0     (-----) [003] d..1 29481.843918: cpu_idle: state=2 cpu_id=3
32494 NeuralNetworksT-13707 (13707) [006] ...1 29481.843919: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32495     rcu_preempt-7     (    7) [001] d..2 29481.843933: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32496          <idle>-0     (-----) [001] d..1 29481.843946: cpu_idle: state=0 cpu_id=1
32497 NeuralNetworksT-13707 (13707) [006] ...1 29481.843955: tracing_mark_write: E|13707
32498 NeuralNetworksT-13707 (13707) [006] ...1 29481.843960: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32499 NeuralNetworksT-13707 (13707) [006] ...1 29481.843998: tracing_mark_write: E|13707
32500 NeuralNetworksT-13707 (13707) [006] ...1 29481.844002: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32501 NeuralNetworksT-13707 (13707) [006] ...1 29481.844042: tracing_mark_write: E|13707
32502 NeuralNetworksT-13707 (13707) [006] ...1 29481.844045: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32503 NeuralNetworksT-13707 (13707) [006] ...1 29481.844084: tracing_mark_write: E|13707
32504 NeuralNetworksT-13707 (13707) [006] ...1 29481.844088: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32505 NeuralNetworksT-13707 (13707) [006] ...1 29481.844126: tracing_mark_write: E|13707
32506 NeuralNetworksT-13707 (13707) [006] ...1 29481.844129: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32507 NeuralNetworksT-13707 (13707) [006] ...1 29481.844170: tracing_mark_write: E|13707
32508 NeuralNetworksT-13707 (13707) [006] ...1 29481.844174: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32509 NeuralNetworksT-13707 (13707) [006] ...1 29481.844213: tracing_mark_write: E|13707
32510 NeuralNetworksT-13707 (13707) [006] ...1 29481.844217: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32511 NeuralNetworksT-13707 (13707) [006] ...1 29481.844256: tracing_mark_write: E|13707
32512 NeuralNetworksT-13707 (13707) [006] ...1 29481.844259: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32513 NeuralNetworksT-13707 (13707) [006] ...1 29481.844298: tracing_mark_write: E|13707
32514 NeuralNetworksT-13707 (13707) [006] ...1 29481.844301: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32515 NeuralNetworksT-13707 (13707) [006] ...1 29481.844342: tracing_mark_write: E|13707
32516 NeuralNetworksT-13707 (13707) [006] ...1 29481.844345: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32517 NeuralNetworksT-13707 (13707) [006] ...1 29481.844384: tracing_mark_write: E|13707
32518 NeuralNetworksT-13707 (13707) [006] ...1 29481.844388: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32519 NeuralNetworksT-13707 (13707) [006] ...1 29481.844427: tracing_mark_write: E|13707
32520 NeuralNetworksT-13707 (13707) [006] ...1 29481.844430: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32521 NeuralNetworksT-13707 (13707) [006] ...1 29481.844470: tracing_mark_write: E|13707
32522 NeuralNetworksT-13707 (13707) [006] ...1 29481.844473: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32523 NeuralNetworksT-13707 (13707) [006] ...1 29481.844513: tracing_mark_write: E|13707
32524 NeuralNetworksT-13707 (13707) [006] ...1 29481.844517: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32525 NeuralNetworksT-13707 (13707) [006] ...1 29481.844554: tracing_mark_write: E|13707
32526 NeuralNetworksT-13707 (13707) [006] ...1 29481.844557: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32527 NeuralNetworksT-13707 (13707) [006] ...1 29481.844598: tracing_mark_write: E|13707
32528 NeuralNetworksT-13707 (13707) [006] ...1 29481.844601: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32529 NeuralNetworksT-13707 (13707) [006] ...1 29481.844641: tracing_mark_write: E|13707
32530 NeuralNetworksT-13707 (13707) [006] ...1 29481.844644: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32531 NeuralNetworksT-13707 (13707) [006] ...1 29481.844684: tracing_mark_write: E|13707
32532 NeuralNetworksT-13707 (13707) [006] ...1 29481.844687: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32533 NeuralNetworksT-13707 (13707) [006] ...1 29481.844726: tracing_mark_write: E|13707
32534 NeuralNetworksT-13707 (13707) [006] ...1 29481.844729: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32535 NeuralNetworksT-13707 (13707) [006] ...1 29481.844769: tracing_mark_write: E|13707
32536 NeuralNetworksT-13707 (13707) [006] ...1 29481.844772: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
32537 NeuralNetworksT-13707 (13707) [006] ...1 29481.844814: tracing_mark_write: E|13707
32538 NeuralNetworksT-13707 (13707) [006] ...1 29481.844820: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32539 NeuralNetworksT-13707 (13707) [006] ...1 29481.844830: tracing_mark_write: E|13707
32540 NeuralNetworksT-13707 (13707) [006] ...1 29481.844834: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32541 NeuralNetworksT-13707 (13707) [006] ...1 29481.844842: tracing_mark_write: E|13707
32542 NeuralNetworksT-13707 (13707) [006] ...1 29481.844846: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32543 NeuralNetworksT-13707 (13707) [006] ...1 29481.844851: tracing_mark_write: E|13707
32544 NeuralNetworksT-13707 (13707) [006] ...1 29481.844855: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32545 NeuralNetworksT-13707 (13707) [006] ...1 29481.844860: tracing_mark_write: E|13707
32546 NeuralNetworksT-13707 (13707) [006] ...1 29481.844863: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32547 NeuralNetworksT-13707 (13707) [006] ...1 29481.844869: tracing_mark_write: E|13707
32548 NeuralNetworksT-13707 (13707) [006] ...1 29481.844873: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32549 NeuralNetworksT-13707 (13707) [006] ...1 29481.844878: tracing_mark_write: E|13707
32550 NeuralNetworksT-13707 (13707) [006] ...1 29481.844882: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32551 NeuralNetworksT-13707 (13707) [006] ...1 29481.844886: tracing_mark_write: E|13707
32552 NeuralNetworksT-13707 (13707) [006] ...1 29481.844890: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32553 NeuralNetworksT-13707 (13707) [006] ...1 29481.844895: tracing_mark_write: E|13707
32554 NeuralNetworksT-13707 (13707) [006] ...1 29481.844899: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32555 NeuralNetworksT-13707 (13707) [006] ...1 29481.844905: tracing_mark_write: E|13707
32556 NeuralNetworksT-13707 (13707) [006] ...1 29481.844908: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32557 NeuralNetworksT-13707 (13707) [006] ...1 29481.844913: tracing_mark_write: E|13707
32558 NeuralNetworksT-13707 (13707) [006] ...1 29481.844916: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32559 NeuralNetworksT-13707 (13707) [006] ...1 29481.844921: tracing_mark_write: E|13707
32560 NeuralNetworksT-13707 (13707) [006] ...1 29481.844924: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32561 NeuralNetworksT-13707 (13707) [006] ...1 29481.844930: tracing_mark_write: E|13707
32562 NeuralNetworksT-13707 (13707) [006] ...1 29481.844934: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32563 NeuralNetworksT-13707 (13707) [006] ...1 29481.844938: tracing_mark_write: E|13707
32564 NeuralNetworksT-13707 (13707) [006] ...1 29481.844942: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32565 NeuralNetworksT-13707 (13707) [006] ...1 29481.844947: tracing_mark_write: E|13707
32566 NeuralNetworksT-13707 (13707) [006] ...1 29481.844951: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32567 NeuralNetworksT-13707 (13707) [006] ...1 29481.844955: tracing_mark_write: E|13707
32568 NeuralNetworksT-13707 (13707) [006] ...1 29481.844959: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32569 NeuralNetworksT-13707 (13707) [006] ...1 29481.844964: tracing_mark_write: E|13707
32570 NeuralNetworksT-13707 (13707) [006] ...1 29481.844968: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32571 NeuralNetworksT-13707 (13707) [006] ...1 29481.844974: tracing_mark_write: E|13707
32572 NeuralNetworksT-13707 (13707) [006] ...1 29481.844978: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32573 NeuralNetworksT-13707 (13707) [006] ...1 29481.844985: tracing_mark_write: E|13707
32574 NeuralNetworksT-13707 (13707) [006] ...1 29481.844988: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32575 NeuralNetworksT-13707 (13707) [006] ...1 29481.844993: tracing_mark_write: E|13707
32576 NeuralNetworksT-13707 (13707) [006] ...1 29481.844996: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32577 NeuralNetworksT-13707 (13707) [006] ...1 29481.845001: tracing_mark_write: E|13707
32578 NeuralNetworksT-13707 (13707) [006] ...1 29481.845004: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32579 NeuralNetworksT-13707 (13707) [006] ...1 29481.845008: tracing_mark_write: E|13707
32580 NeuralNetworksT-13707 (13707) [006] ...1 29481.845012: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32581 NeuralNetworksT-13707 (13707) [006] ...1 29481.845017: tracing_mark_write: E|13707
32582 NeuralNetworksT-13707 (13707) [006] ...1 29481.845021: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32583 NeuralNetworksT-13707 (13707) [006] ...1 29481.845026: tracing_mark_write: E|13707
32584 NeuralNetworksT-13707 (13707) [006] ...1 29481.845029: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32585 NeuralNetworksT-13707 (13707) [006] ...1 29481.845034: tracing_mark_write: E|13707
32586 NeuralNetworksT-13707 (13707) [006] ...1 29481.845038: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32587 NeuralNetworksT-13707 (13707) [006] ...1 29481.845042: tracing_mark_write: E|13707
32588 NeuralNetworksT-13707 (13707) [006] ...1 29481.845046: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32589 NeuralNetworksT-13707 (13707) [006] ...1 29481.845053: tracing_mark_write: E|13707
32590 NeuralNetworksT-13707 (13707) [006] ...1 29481.845056: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32591 NeuralNetworksT-13707 (13707) [006] ...1 29481.845061: tracing_mark_write: E|13707
32592 NeuralNetworksT-13707 (13707) [006] ...1 29481.845064: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32593 NeuralNetworksT-13707 (13707) [006] ...1 29481.845071: tracing_mark_write: E|13707
32594 NeuralNetworksT-13707 (13707) [006] ...1 29481.845074: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32595 NeuralNetworksT-13707 (13707) [006] ...1 29481.845079: tracing_mark_write: E|13707
32596 NeuralNetworksT-13707 (13707) [006] ...1 29481.845083: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32597 NeuralNetworksT-13707 (13707) [006] ...1 29481.845089: tracing_mark_write: E|13707
32598 NeuralNetworksT-13707 (13707) [006] ...1 29481.845093: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_addOperation
32599 NeuralNetworksT-13707 (13707) [006] ...1 29481.845099: tracing_mark_write: E|13707
32600 NeuralNetworksT-13707 (13707) [006] ...1 29481.845104: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_identifyInputsAndOutputs
32601 NeuralNetworksT-13707 (13707) [006] ...1 29481.845111: tracing_mark_write: E|13707
32602 NeuralNetworksT-13707 (13707) [006] ...1 29481.845133: tracing_mark_write: B|13707|[NN_LR_PP]ANeuralNetworksModel_finish
32603 NeuralNetworksT-13707 (13707) [006] ...1 29481.845166: tracing_mark_write: B|13707|HIDL::IAllocator::allocate::client
32604 NeuralNetworksT-13707 (13707) [006] ...1 29481.845170: tracing_mark_write: E|13707
32605 NeuralNetworksT-13707 (13707) [006] d..5 29481.845184: sched_waking: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=000
32606 NeuralNetworksT-13707 (13707) [006] .... 29481.845208: binder_transaction: transaction=1693596 dest_node=729 dest_proc=753 dest_thread=0 reply=0 flags=0x10 code=0x1
32607          <idle>-0     (-----) [001] dnh2 29481.845213: sched_wakeup: comm=HwBinder:771_4 pid=20182 prio=120 target_cpu=001
32608 NeuralNetworksT-13707 (13707) [006] d..4 29481.845214: sched_waking: comm=allocator@1.0-s pid=753 prio=120 target_cpu=000
32609          <idle>-0     (-----) [001] .n.1 29481.845220: cpu_idle: state=4294967295 cpu_id=1
32610          <idle>-0     (-----) [001] d..2 29481.845231: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:771_4 next_pid=20182 next_prio=120
32611 NeuralNetworksT-13707 (13707) [006] dn.5 29481.845232: sched_wakeup: comm=allocator@1.0-s pid=753 prio=120 target_cpu=006
32612 NeuralNetworksT-13707 (13707) [006] dnh5 29481.845263: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
32613 NeuralNetworksT-13707 (13707) [006] dnh6 29481.845272: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
32614 NeuralNetworksT-13707 (13707) [006] dnh5 29481.845274: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32615 NeuralNetworksT-13707 (13707) [006] d..2 29481.845288: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R+ ==> next_comm=allocator@1.0-s next_pid=753 next_prio=120
32616  HwBinder:771_4-20182 (  771) [001] d..2 29481.845289: sched_switch: prev_comm=HwBinder:771_4 prev_pid=20182 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32617 allocator@1.0-s-753   (  753) [006] .... 29481.845295: binder_transaction_received: transaction=1693596
32618          <idle>-0     (-----) [001] d..1 29481.845301: cpu_idle: state=0 cpu_id=1
32619 allocator@1.0-s-753   (  753) [006] ...2 29481.845324: tracing_mark_write: B|753|HIDL::IAllocator::allocate::server
32620          <idle>-0     (-----) [003] dnh2 29481.845415: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
32621          <idle>-0     (-----) [003] .n.1 29481.845424: cpu_idle: state=4294967295 cpu_id=3
32622 allocator@1.0-s-753   (  753) [006] ...1 29481.845433: tracing_mark_write: E|753
32623          <idle>-0     (-----) [003] d..2 29481.845437: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
32624 allocator@1.0-s-753   (  753) [006] .... 29481.845444: binder_transaction: transaction=1693597 dest_node=0 dest_proc=13707 dest_thread=13707 reply=1 flags=0x0 code=0x0
32625          <idle>-0     (-----) [007] .n.1 29481.845460: cpu_idle: state=4294967295 cpu_id=7
32626         sugov:0-559   (  559) [003] d..2 29481.845467: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32627          <idle>-0     (-----) [007] d..2 29481.845474: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
32628          <idle>-0     (-----) [003] d..1 29481.845481: cpu_idle: state=0 cpu_id=3
32629 allocator@1.0-s-753   (  753) [006] d..2 29481.845486: sched_switch: prev_comm=allocator@1.0-s prev_pid=753 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
32630 NeuralNetworksT-13707 (13707) [006] .... 29481.845492: binder_transaction_received: transaction=1693597
32631         sugov:4-560   (  560) [007] d..2 29481.845494: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32632          <idle>-0     (-----) [007] d..1 29481.845503: cpu_idle: state=2 cpu_id=7
32633     logd.writer-563   (  555) [000] d..2 29481.847025: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32634          <idle>-0     (-----) [000] d..1 29481.847047: cpu_idle: state=0 cpu_id=0
32635 NeuralNetworksT-13707 (13707) [006] d.s2 29481.847085: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
32636          <idle>-0     (-----) [000] dnh2 29481.847129: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32637          <idle>-0     (-----) [000] .n.1 29481.847136: cpu_idle: state=4294967295 cpu_id=0
32638          <idle>-0     (-----) [000] d..2 29481.847150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32639  kworker/u16:10-23868 (23868) [000] d..2 29481.847333: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
32640          <idle>-0     (-----) [000] d..1 29481.847348: cpu_idle: state=0 cpu_id=0
32641          <idle>-0     (-----) [003] d.s3 29481.847361: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32642          <idle>-0     (-----) [003] d.s4 29481.847373: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32643          <idle>-0     (-----) [003] d.s4 29481.847382: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32644          <idle>-0     (-----) [000] .n.1 29481.847389: cpu_idle: state=4294967295 cpu_id=0
32645          <idle>-0     (-----) [003] ...1 29481.847393: cpu_idle: state=4294967295 cpu_id=3
32646          <idle>-0     (-----) [003] d..1 29481.847399: cpu_idle: state=0 cpu_id=3
32647          <idle>-0     (-----) [000] d..2 29481.847400: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32648  kworker/u16:10-23868 (23868) [000] d..2 29481.847626: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
32649          <idle>-0     (-----) [000] d..1 29481.847641: cpu_idle: state=0 cpu_id=0
32650          <idle>-0     (-----) [003] d.s3 29481.847655: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32651          <idle>-0     (-----) [003] d.s4 29481.847664: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32652          <idle>-0     (-----) [003] d.s4 29481.847671: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32653          <idle>-0     (-----) [000] .n.1 29481.847678: cpu_idle: state=4294967295 cpu_id=0
32654          <idle>-0     (-----) [003] ...1 29481.847680: cpu_idle: state=4294967295 cpu_id=3
32655          <idle>-0     (-----) [003] d..1 29481.847686: cpu_idle: state=2 cpu_id=3
32656          <idle>-0     (-----) [000] d..2 29481.847689: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32657  kworker/u16:10-23868 (23868) [000] .... 29481.847722: clk_set_rate: l3_cluster0_vote_clk 652800000
32658  kworker/u16:10-23868 (23868) [000] .... 29481.847728: clk_set_rate: l3_clk 652800000
32659  kworker/u16:10-23868 (23868) [000] d..2 29481.847772: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32660          <idle>-0     (-----) [000] d..1 29481.847787: cpu_idle: state=0 cpu_id=0
32661          <idle>-0     (-----) [001] d.h2 29481.848255: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
32662          <idle>-0     (-----) [001] dnh3 29481.848268: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
32663          <idle>-0     (-----) [001] .n.1 29481.848276: cpu_idle: state=4294967295 cpu_id=1
32664          <idle>-0     (-----) [001] d..2 29481.848287: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
32665 irq/79-1436400.-24613 (24613) [001] d..2 29481.848444: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
32666          <idle>-0     (-----) [001] d..1 29481.848454: cpu_idle: state=0 cpu_id=1
32667          <idle>-0     (-----) [003] d.s3 29481.848615: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
32668          <idle>-0     (-----) [003] d.s4 29481.848631: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
32669          <idle>-0     (-----) [001] .n.1 29481.848636: cpu_idle: state=4294967295 cpu_id=1
32670          <idle>-0     (-----) [001] d..2 29481.848643: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
32671          <idle>-0     (-----) [003] ...1 29481.848643: cpu_idle: state=4294967295 cpu_id=3
32672          <idle>-0     (-----) [003] d..1 29481.848653: cpu_idle: state=0 cpu_id=3
32673 irq/79-1436400.-24613 (24613) [001] d..2 29481.848677: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32674          <idle>-0     (-----) [001] d..1 29481.848684: cpu_idle: state=0 cpu_id=1
32675          <idle>-0     (-----) [000] ...1 29481.848904: cpu_idle: state=4294967295 cpu_id=0
32676          <idle>-0     (-----) [000] d..1 29481.848909: cpu_idle: state=2 cpu_id=0
32677          <idle>-0     (-----) [001] d.h2 29481.849562: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
32678          <idle>-0     (-----) [001] dnh3 29481.849573: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
32679          <idle>-0     (-----) [001] .n.1 29481.849581: cpu_idle: state=4294967295 cpu_id=1
32680          <idle>-0     (-----) [001] d..2 29481.849587: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
32681 irq/80-114a000.-24617 (24617) [001] d..2 29481.849724: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
32682          <idle>-0     (-----) [001] d..1 29481.849732: cpu_idle: state=0 cpu_id=1
32683          <idle>-0     (-----) [003] d.s3 29481.849745: sched_waking: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
32684          <idle>-0     (-----) [003] d.s4 29481.849757: sched_wakeup: comm=irq/80-114a000. pid=24617 prio=49 target_cpu=001
32685          <idle>-0     (-----) [001] .n.1 29481.849762: cpu_idle: state=4294967295 cpu_id=1
32686          <idle>-0     (-----) [003] ...1 29481.849766: cpu_idle: state=4294967295 cpu_id=3
32687          <idle>-0     (-----) [001] d..2 29481.849769: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-114a000. next_pid=24617 next_prio=49
32688          <idle>-0     (-----) [003] d..1 29481.849771: cpu_idle: state=0 cpu_id=3
32689 irq/80-114a000.-24617 (24617) [001] d..2 29481.849799: sched_switch: prev_comm=irq/80-114a000. prev_pid=24617 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32690          <idle>-0     (-----) [001] d..1 29481.849805: cpu_idle: state=0 cpu_id=1
32691          <idle>-0     (-----) [001] d.s2 29481.850417: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32692          <idle>-0     (-----) [001] dns3 29481.850437: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32693          <idle>-0     (-----) [001] dns2 29481.850439: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
32694          <idle>-0     (-----) [001] dns3 29481.850452: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
32695          <idle>-0     (-----) [001] .n.1 29481.850462: cpu_idle: state=4294967295 cpu_id=1
32696          <idle>-0     (-----) [001] d..2 29481.850470: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
32697       rcu_sched-8     (    8) [001] d..2 29481.850492: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32698     rcu_preempt-7     (    7) [001] d..2 29481.850502: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
32699     rcu_preempt-7     (    7) [001] d..3 29481.850517: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
32700     rcu_preempt-7     (    7) [001] d..2 29481.850527: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
32701         rcuop/0-10    (   10) [001] d..2 29481.850570: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32702          <idle>-0     (-----) [001] d..1 29481.850582: cpu_idle: state=0 cpu_id=1
32703 NeuralNetworksT-13707 (13707) [006] ...1 29481.851294: tracing_mark_write: B|13707|[NN_LU_PU]validateModelVersioned
32704 NeuralNetworksT-13707 (13707) [006] ...1 29481.852867: tracing_mark_write: E|13707
32705 NeuralNetworksT-13707 (13707) [006] ...1 29481.853001: tracing_mark_write: E|13707
32706 NeuralNetworksT-13707 (13707) [006] ...1 29481.853007: tracing_mark_write: B|13707|[SW][NN_LA_PC]createAndCompileModel
32707 NeuralNetworksT-13707 (13707) [006] ...1 29481.853012: tracing_mark_write: B|13707|[NN_LR_PC]ANeuralNetworksCompilation_create
32708 NeuralNetworksT-13707 (13707) [006] d..2 29481.853075: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=000
32709          <idle>-0     (-----) [001] dnh2 29481.853117: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
32710          <idle>-0     (-----) [001] .n.1 29481.853123: cpu_idle: state=4294967295 cpu_id=1
32711 NeuralNetworksT-13707 (13707) [006] ...1 29481.853125: tracing_mark_write: E|13707
32712 NeuralNetworksT-13707 (13707) [006] ...1 29481.853131: tracing_mark_write: B|13707|[NN_LR_PC]ANeuralNetworksCompilation_finish
32713          <idle>-0     (-----) [001] d..2 29481.853133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
32714 NeuralNetworksT-13707 (13707) [006] ...1 29481.853171: tracing_mark_write: E|13707
32715 NeuralNetworksT-13707 (13707) [006] ...1 29481.853174: tracing_mark_write: E|13707
32716 NeuralNetworksT-13707 (13707) [006] ...1 29481.853177: tracing_mark_write: E|13707
32717 NeuralNetworksT-13707 (13707) [006] ...1 29481.853185: tracing_mark_write: B|13707|[NN_LA_PE]executeWithCompilation example
32718     logd.writer-563   (  555) [001] d..2 29481.853289: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32719          <idle>-0     (-----) [001] d..1 29481.853302: cpu_idle: state=0 cpu_id=1
32720 NeuralNetworksT-13707 (13707) [006] ...1 29481.853363: tracing_mark_write: B|13707|[NN_LR_PE]ANeuralNetworksExecution_create
32721 NeuralNetworksT-13707 (13707) [006] d..2 29481.853392: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
32722          <idle>-0     (-----) [001] dnh2 29481.853415: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
32723 NeuralNetworksT-13707 (13707) [006] ...1 29481.853415: tracing_mark_write: E|13707
32724 NeuralNetworksT-13707 (13707) [006] ...1 29481.853420: tracing_mark_write: B|13707|[SW][NN_LA_PIO]executeWithCompilation example
32725          <idle>-0     (-----) [001] .n.1 29481.853420: cpu_idle: state=4294967295 cpu_id=1
32726 NeuralNetworksT-13707 (13707) [006] ...1 29481.853425: tracing_mark_write: B|13707|[NN_LR_PIO]ANeuralNetworksExecution_setInput
32727 NeuralNetworksT-13707 (13707) [006] ...1 29481.853430: tracing_mark_write: E|13707
32728          <idle>-0     (-----) [001] d..2 29481.853431: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=563 next_prio=130
32729 NeuralNetworksT-13707 (13707) [006] ...1 29481.853439: tracing_mark_write: B|13707|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
32730 NeuralNetworksT-13707 (13707) [006] ...1 29481.853443: tracing_mark_write: E|13707
32731 NeuralNetworksT-13707 (13707) [006] ...1 29481.853447: tracing_mark_write: B|13707|[SW][NN_LA_PE]executeWithCompilation example
32732 NeuralNetworksT-13707 (13707) [006] ...1 29481.853450: tracing_mark_write: B|13707|[NN_LR_PE]ANeuralNetworksExecution_startCompute
32733     logd.writer-563   (  555) [001] d..2 29481.853490: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32734          <idle>-0     (-----) [001] d..1 29481.853501: cpu_idle: state=0 cpu_id=1
32735          <idle>-0     (-----) [001] .n.1 29481.853602: cpu_idle: state=4294967295 cpu_id=1
32736 NeuralNetworksT-13707 (13707) [006] ...1 29481.853605: tracing_mark_write: E|13707
32737 NeuralNetworksT-13707 (13707) [006] ...1 29481.853610: tracing_mark_write: B|13707|[NN_LR_PE]ANeuralNetworksEvent_wait
32738          <idle>-0     (-----) [001] d..2 29481.853614: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13710 next_prio=120
32739 NeuralNetworksT-13707 (13707) [006] d..2 29481.853633: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32740          <idle>-0     (-----) [006] d..1 29481.853649: cpu_idle: state=2 cpu_id=6
32741 NeuralNetworksT-13710 (13707) [001] d..2 29481.853812: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
32742 NeuralNetworksT-13710 (13707) [001] d..3 29481.853825: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=001
32743          <idle>-0     (-----) [002] .n.1 29481.854509: cpu_idle: state=4294967295 cpu_id=2
32744          <idle>-0     (-----) [002] d..2 29481.854525: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
32745 NeuralNetworksT-13711 (13707) [002] ...1 29481.854591: tracing_mark_write: B|13707|[NN_LR_PE]asyncStartComputeOnCpu
32746 NeuralNetworksT-13711 (13707) [002] ...1 29481.854599: tracing_mark_write: B|13707|[NN_LC_PE]run::V1_1
32747 NeuralNetworksT-13710 (13707) [001] d..2 29481.854613: sched_switch: prev_comm=NeuralNetworksT prev_pid=13710 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=563 next_prio=130
32748     logd.writer-563   (  555) [001] d..2 29481.854791: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
32749     logd.writer-563   (  555) [001] d..3 29481.854814: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
32750 NeuralNetworksT-13711 (13707) [002] ...1 29481.855057: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
32751 NeuralNetworksT-13711 (13707) [002] ...1 29481.855124: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
32752     logd.writer-563   (  555) [001] d..2 29481.855151: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
32753         rcuop/0-10    (   10) [001] d..2 29481.855158: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32754         rcuop/0-10    (   10) [001] d..3 29481.855175: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32755         rcuop/0-10    (   10) [001] d..2 29481.855185: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32756     rcu_preempt-7     (    7) [001] d..2 29481.855215: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32757          <idle>-0     (-----) [001] d..1 29481.855226: cpu_idle: state=0 cpu_id=1
32758          <idle>-0     (-----) [001] d.H3 29481.857177: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
32759          <idle>-0     (-----) [001] d.H3 29481.857198: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32760          <idle>-0     (-----) [001] d.H4 29481.857213: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
32761          <idle>-0     (-----) [003] .n.1 29481.857219: cpu_idle: state=4294967295 cpu_id=3
32762          <idle>-0     (-----) [001] d.s2 29481.857220: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
32763          <idle>-0     (-----) [003] d..2 29481.857232: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
32764          <idle>-0     (-----) [001] dns3 29481.857237: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
32765          <idle>-0     (-----) [001] dns3 29481.857243: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
32766         sugov:0-559   (  559) [003] .... 29481.857270: clk_set_rate: pwrcl_clk 1132800000
32767          <idle>-0     (-----) [001] dns4 29481.857279: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32768         sugov:0-559   (  559) [003] .... 29481.857287: clk_set_rate: cpu3_pwrcl_clk 902400000
32769         sugov:0-559   (  559) [003] .... 29481.857297: clk_set_rate: cpu2_pwrcl_clk 902400000
32770          <idle>-0     (-----) [001] .n.1 29481.857300: cpu_idle: state=4294967295 cpu_id=1
32771         sugov:0-559   (  559) [003] .... 29481.857304: clk_set_rate: cpu1_pwrcl_clk 902400000
32772          <idle>-0     (-----) [001] d..2 29481.857311: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
32773         sugov:0-559   (  559) [003] .... 29481.857311: clk_set_rate: cpu0_pwrcl_clk 1132800000
32774       rcu_sched-8     (    8) [001] d..2 29481.857320: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
32775         sugov:0-559   (  559) [003] .... 29481.857320: cpu_frequency: state=1132800 cpu_id=0
32776       rcu_sched-8     (    8) [001] d..3 29481.857337: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
32777         sugov:0-559   (  559) [003] .... 29481.857346: cpu_frequency: state=1132800 cpu_id=1
32778       rcu_sched-8     (    8) [001] d..2 29481.857348: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
32779         sugov:0-559   (  559) [003] .... 29481.857350: cpu_frequency: state=1132800 cpu_id=2
32780         sugov:0-559   (  559) [003] .... 29481.857356: cpu_frequency: state=1132800 cpu_id=3
32781         sugov:0-559   (  559) [003] d..2 29481.857377: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32782         rcuos/0-11    (   11) [001] d..2 29481.857378: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32783          <idle>-0     (-----) [001] d..1 29481.857385: cpu_idle: state=0 cpu_id=1
32784  kworker/u16:10-23868 (23868) [003] .... 29481.857431: clk_set_rate: l3_cluster0_vote_clk 300000000
32785  kworker/u16:10-23868 (23868) [003] .... 29481.857436: clk_set_rate: l3_clk 576000000
32786  kworker/u16:10-23868 (23868) [003] d..2 29481.857630: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
32787          <idle>-0     (-----) [003] d.s4 29481.857665: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32788          <idle>-0     (-----) [003] d.s5 29481.857675: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32789          <idle>-0     (-----) [003] dns5 29481.857680: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32790          <idle>-0     (-----) [003] d..2 29481.857691: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32791  kworker/u16:10-23868 (23868) [003] d..2 29481.857774: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32792          <idle>-0     (-----) [003] d..1 29481.857788: cpu_idle: state=0 cpu_id=3
32793          <idle>-0     (-----) [007] dnh2 29481.857898: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
32794          <idle>-0     (-----) [007] .n.1 29481.857906: cpu_idle: state=4294967295 cpu_id=7
32795          <idle>-0     (-----) [007] d..2 29481.857918: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
32796         sugov:4-560   (  560) [007] d..2 29481.857940: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32797          <idle>-0     (-----) [007] d..1 29481.857951: cpu_idle: state=2 cpu_id=7
32798 NeuralNetworksT-13711 (13707) [002] d..2 29481.859565: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
32799 NeuralNetworksT-13711 (13707) [002] dn.3 29481.859594: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
32800 NeuralNetworksT-13711 (13707) [002] d..2 29481.859605: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
32801         rcuop/2-29    (   29) [002] d..2 29481.859619: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
32802          <idle>-0     (-----) [001] .n.1 29481.859763: cpu_idle: state=4294967295 cpu_id=1
32803          <idle>-0     (-----) [001] d..2 29481.859771: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
32804 NeuralNetworksT-13711 (13707) [002] d..1 29481.859785: sched_waking: comm=NeuralNetworksT pid=13712 prio=120 target_cpu=001
32805 NeuralNetworksT-13712 (13707) [001] d..2 29481.859796: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
32806          <idle>-0     (-----) [001] d..1 29481.859804: cpu_idle: state=0 cpu_id=1
32807 NeuralNetworksT-13711 (13707) [002] d..2 29481.859810: sched_blocked_reason: pid=13712 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
32808 NeuralNetworksT-13711 (13707) [002] d..2 29481.859818: sched_wakeup: comm=NeuralNetworksT pid=13712 prio=120 target_cpu=001
32809          <idle>-0     (-----) [001] .n.1 29481.859823: cpu_idle: state=4294967295 cpu_id=1
32810          <idle>-0     (-----) [001] d..2 29481.859830: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
32811 NeuralNetworksT-13711 (13707) [002] d..1 29481.859833: sched_waking: comm=NeuralNetworksT pid=13712 prio=120 target_cpu=001
32812 NeuralNetworksT-13712 (13707) [001] d..2 29481.859843: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
32813          <idle>-0     (-----) [001] d..1 29481.859849: cpu_idle: state=0 cpu_id=1
32814 NeuralNetworksT-13711 (13707) [002] d..2 29481.859852: sched_blocked_reason: pid=13712 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
32815 NeuralNetworksT-13711 (13707) [002] d..2 29481.859859: sched_wakeup: comm=NeuralNetworksT pid=13712 prio=120 target_cpu=001
32816          <idle>-0     (-----) [001] .n.1 29481.859863: cpu_idle: state=4294967295 cpu_id=1
32817          <idle>-0     (-----) [001] d..2 29481.859870: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
32818          <idle>-0     (-----) [003] .n.1 29481.859920: cpu_idle: state=4294967295 cpu_id=3
32819          <idle>-0     (-----) [003] d..2 29481.859931: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
32820          <idle>-0     (-----) [000] .n.1 29481.860221: cpu_idle: state=4294967295 cpu_id=0
32821          <idle>-0     (-----) [000] d..2 29481.860242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
32822 NeuralNetworksT-13712 (13707) [001] d.s1 29481.860418: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
32823 NeuralNetworksT-13712 (13707) [001] d.s2 29481.860464: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
32824 NeuralNetworksT-13713 (13707) [003] d..2 29481.860488: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32825     rcu_preempt-7     (    7) [003] d..2 29481.860504: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
32826          <idle>-0     (-----) [005] .n.1 29481.860914: cpu_idle: state=4294967295 cpu_id=5
32827          <idle>-0     (-----) [005] d..2 29481.860933: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13718 next_prio=120
32828          <idle>-0     (-----) [004] .n.1 29481.860951: cpu_idle: state=4294967295 cpu_id=4
32829          <idle>-0     (-----) [004] d..2 29481.860972: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
32830 NeuralNetworksT-13713 (13707) [003] d.s2 29481.863743: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
32831 NeuralNetworksT-13712 (13707) [001] d.s2 29481.863752: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32832 NeuralNetworksT-13712 (13707) [001] dns3 29481.863763: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
32833 NeuralNetworksT-13713 (13707) [003] d.s3 29481.863769: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
32834 NeuralNetworksT-13712 (13707) [001] d..2 29481.863775: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
32835 NeuralNetworksT-13711 (13707) [002] d..2 29481.863781: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32836     rcu_preempt-7     (    7) [002] d..2 29481.863788: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
32837     rcu_preempt-7     (    7) [002] d..3 29481.863818: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
32838     rcu_preempt-7     (    7) [002] d..2 29481.863831: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
32839         rcuop/0-10    (   10) [002] d..2 29481.863836: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
32840     kworker/1:1-13678 (13678) [001] d..2 29481.863839: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
32841         rcuop/0-10    (   10) [002] d..3 29481.863851: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
32842         rcuop/0-10    (   10) [002] d..2 29481.863859: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
32843         rcuop/1-21    (   21) [002] d..2 29481.863874: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
32844 NeuralNetworksT-13712 (13707) [001] d.s2 29481.867076: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32845 NeuralNetworksT-13713 (13707) [003] d..2 29481.867081: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
32846 NeuralNetworksT-13712 (13707) [001] d.s3 29481.867109: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
32847 NeuralNetworksT-13711 (13707) [002] d..2 29481.867120: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32848  kworker/u16:10-23868 (23868) [002] .... 29481.867272: clk_set_rate: l3_cluster1_vote_clk 300000000
32849  kworker/u16:10-23868 (23868) [002] .... 29481.867276: clk_set_rate: l3_clk 300000000
32850          <idle>-0     (-----) [006] dnH3 29481.867367: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
32851          <idle>-0     (-----) [006] dnH4 29481.867382: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
32852          <idle>-0     (-----) [006] dnH3 29481.867384: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32853          <idle>-0     (-----) [006] .n.1 29481.867405: cpu_idle: state=4294967295 cpu_id=6
32854  kworker/u16:10-23868 (23868) [002] dnh1 29481.867412: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
32855          <idle>-0     (-----) [006] d..2 29481.867420: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13714 next_prio=120
32856  kworker/u16:10-23868 (23868) [002] d..2 29481.867425: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
32857         sugov:0-559   (  559) [002] d..2 29481.867441: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32858  kworker/u16:10-23868 (23868) [002] d..2 29481.867555: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
32859 NeuralNetworksT-13714 (13707) [006] d..2 29481.867592: sched_switch: prev_comm=NeuralNetworksT prev_pid=13714 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
32860 NeuralNetworksT-13717 (13707) [004] d..1 29481.867594: sched_waking: comm=NeuralNetworksT pid=13718 prio=120 target_cpu=005
32861 NeuralNetworksT-13718 (13707) [005] d..2 29481.867599: sched_switch: prev_comm=NeuralNetworksT prev_pid=13718 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32862 NeuralNetworksT-13716 (13707) [003] d.s2 29481.867599: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
32863          <idle>-0     (-----) [007] .n.1 29481.867603: cpu_idle: state=4294967295 cpu_id=7
32864          <idle>-0     (-----) [005] d..1 29481.867614: cpu_idle: state=2 cpu_id=5
32865 NeuralNetworksT-13716 (13707) [003] d.s3 29481.867623: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
32866          <idle>-0     (-----) [007] d..2 29481.867624: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
32867 NeuralNetworksT-13715 (13707) [000] d..1 29481.867627: sched_waking: comm=NeuralNetworksT pid=13713 prio=120 target_cpu=006
32868 NeuralNetworksT-13716 (13707) [003] d.s3 29481.867633: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
32869 NeuralNetworksT-13713 (13707) [006] d..2 29481.867635: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32870 NeuralNetworksT-13717 (13707) [004] d..2 29481.867638: sched_wakeup: comm=NeuralNetworksT pid=13718 prio=120 target_cpu=005
32871 NeuralNetworksT-13711 (13707) [002] d..2 29481.867647: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32872          <idle>-0     (-----) [006] d..1 29481.867649: cpu_idle: state=2 cpu_id=6
32873         sugov:4-560   (  560) [007] .... 29481.867652: clk_set_rate: perfcl_clk 902400000
32874         sugov:4-560   (  560) [007] .... 29481.867654: clk_set_rate: cpu7_perfcl_clk 825600000
32875         sugov:4-560   (  560) [007] .... 29481.867660: clk_set_rate: cpu6_perfcl_clk 825600000
32876         sugov:4-560   (  560) [007] .... 29481.867667: clk_set_rate: cpu5_perfcl_clk 825600000
32877         sugov:4-560   (  560) [007] .... 29481.867673: clk_set_rate: cpu4_perfcl_clk 902400000
32878         sugov:4-560   (  560) [007] .... 29481.867681: cpu_frequency: state=902400 cpu_id=4
32879         sugov:4-560   (  560) [007] .... 29481.867694: cpu_frequency: state=902400 cpu_id=5
32880         sugov:4-560   (  560) [007] .... 29481.867697: cpu_frequency: state=902400 cpu_id=6
32881         sugov:4-560   (  560) [007] .... 29481.867700: cpu_frequency: state=902400 cpu_id=7
32882         sugov:4-560   (  560) [007] d..2 29481.867722: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32883          <idle>-0     (-----) [007] d..1 29481.867733: cpu_idle: state=2 cpu_id=7
32884  kworker/u16:10-23868 (23868) [002] d..2 29481.867784: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
32885          <idle>-0     (-----) [006] dnh2 29481.868178: sched_wakeup: comm=NeuralNetworksT pid=13713 prio=120 target_cpu=006
32886          <idle>-0     (-----) [006] .n.1 29481.868186: cpu_idle: state=4294967295 cpu_id=6
32887          <idle>-0     (-----) [006] d..2 29481.868198: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
32888          <idle>-0     (-----) [005] .n.1 29481.868213: cpu_idle: state=4294967295 cpu_id=5
32889          <idle>-0     (-----) [005] d..2 29481.868234: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13718 next_prio=120
32890 NeuralNetworksT-13718 (13707) [005] d..1 29481.868246: sched_waking: comm=NeuralNetworksT pid=13714 prio=120 target_cpu=006
32891 NeuralNetworksT-13718 (13707) [005] d..2 29481.868277: sched_wakeup: comm=NeuralNetworksT pid=13714 prio=120 target_cpu=006
32892 NeuralNetworksT-13711 (13707) [002] d.s1 29481.870438: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
32893 NeuralNetworksT-13711 (13707) [002] dns2 29481.870461: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
32894 NeuralNetworksT-13711 (13707) [002] d..2 29481.870473: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32895     rcu_preempt-7     (    7) [002] d..2 29481.870489: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
32896 NeuralNetworksT-13716 (13707) [003] d.s2 29481.873742: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
32897 NeuralNetworksT-13713 (13707) [006] d..2 29481.873743: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13714 next_prio=120
32898 NeuralNetworksT-13716 (13707) [003] d.s3 29481.873773: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
32899 NeuralNetworksT-13711 (13707) [002] d..2 29481.873784: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32900     rcu_preempt-7     (    7) [002] d..2 29481.873789: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
32901     rcu_preempt-7     (    7) [002] d..3 29481.873805: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
32902     rcu_preempt-7     (    7) [002] d..2 29481.873814: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
32903         rcuop/2-29    (   29) [002] d..2 29481.873826: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
32904 NeuralNetworksT-13711 (13707) [002] ...1 29481.875009: tracing_mark_write: E|13707
32905 NeuralNetworksT-13711 (13707) [002] ...1 29481.875016: tracing_mark_write: E|13707
32906 NeuralNetworksT-13711 (13707) [002] ...1 29481.875119: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
32907 NeuralNetworksT-13711 (13707) [002] ...1 29481.875132: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
32908 NeuralNetworksT-13712 (13707) [001] d.s2 29481.877120: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
32909 NeuralNetworksT-13717 (13707) [004] d.H2 29481.877129: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
32910 NeuralNetworksT-13717 (13707) [004] d.H3 29481.877143: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
32911 NeuralNetworksT-13717 (13707) [004] d.H2 29481.877145: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
32912 NeuralNetworksT-13712 (13707) [001] d.s3 29481.877175: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32913 NeuralNetworksT-13716 (13707) [003] dnh1 29481.877186: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
32914 NeuralNetworksT-13716 (13707) [003] d..2 29481.877202: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
32915         sugov:0-559   (  559) [003] .... 29481.877230: clk_set_rate: pwrcl_clk 1689600000
32916         sugov:0-559   (  559) [003] d..2 29481.877314: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32917  kworker/u16:10-23868 (23868) [003] d.s4 29481.877342: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
32918          <idle>-0     (-----) [007] .n.1 29481.877353: cpu_idle: state=4294967295 cpu_id=7
32919  kworker/u16:10-23868 (23868) [003] d.s5 29481.877367: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
32920          <idle>-0     (-----) [007] d..2 29481.877372: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
32921 NeuralNetworksT-13715 (13707) [000] d..2 29481.877383: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
32922         sugov:4-560   (  560) [007] d..2 29481.877413: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
32923         sugov:0-559   (  559) [000] .... 29481.877424: clk_set_rate: cpu3_pwrcl_clk 1132800000
32924         sugov:0-559   (  559) [000] .... 29481.877434: clk_set_rate: cpu2_pwrcl_clk 1132800000
32925         sugov:0-559   (  559) [000] .... 29481.877442: clk_set_rate: cpu1_pwrcl_clk 1132800000
32926         sugov:0-559   (  559) [000] .... 29481.877449: clk_set_rate: cpu0_pwrcl_clk 1689600000
32927         sugov:0-559   (  559) [000] .... 29481.877460: cpu_frequency: state=1689600 cpu_id=0
32928         sugov:0-559   (  559) [000] .... 29481.877480: cpu_frequency: state=1689600 cpu_id=1
32929         sugov:0-559   (  559) [000] .... 29481.877484: cpu_frequency: state=1689600 cpu_id=2
32930         sugov:0-559   (  559) [000] .... 29481.877487: cpu_frequency: state=1689600 cpu_id=3
32931         sugov:0-559   (  559) [000] d..2 29481.877510: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
32932  kworker/u16:10-23868 (23868) [003] .... 29481.877711: clk_set_rate: l3_cluster1_vote_clk 748800000
32933  kworker/u16:10-23868 (23868) [003] .... 29481.877715: clk_set_rate: l3_clk 748800000
32934  kworker/u16:10-23868 (23868) [003] d..2 29481.877813: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
32935 NeuralNetworksT-13717 (13707) [004] d..2 29481.882025: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32936          <idle>-0     (-----) [004] d..1 29481.882037: cpu_idle: state=2 cpu_id=4
32937 NeuralNetworksT-13718 (13707) [005] d..2 29481.882577: sched_switch: prev_comm=NeuralNetworksT prev_pid=13718 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32938          <idle>-0     (-----) [005] d..1 29481.882587: cpu_idle: state=2 cpu_id=5
32939 NeuralNetworksT-13712 (13707) [001] d..2 29481.883092: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32940          <idle>-0     (-----) [001] d..1 29481.883102: cpu_idle: state=2 cpu_id=1
32941 NeuralNetworksT-13715 (13707) [000] d..2 29481.883171: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32942          <idle>-0     (-----) [000] d..1 29481.883183: cpu_idle: state=0 cpu_id=0
32943 NeuralNetworksT-13716 (13707) [003] d..2 29481.883594: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32944          <idle>-0     (-----) [003] d..1 29481.883608: cpu_idle: state=0 cpu_id=3
32945          <idle>-0     (-----) [000] ...1 29481.884295: cpu_idle: state=4294967295 cpu_id=0
32946          <idle>-0     (-----) [000] d..1 29481.884298: cpu_idle: state=2 cpu_id=0
32947 NeuralNetworksT-13713 (13707) [007] d..2 29481.886182: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32948          <idle>-0     (-----) [007] d..1 29481.886191: cpu_idle: state=2 cpu_id=7
32949 NeuralNetworksT-13711 (13707) [002] ...1 29481.886326: tracing_mark_write: E|13707
32950 NeuralNetworksT-13711 (13707) [002] ...1 29481.886331: tracing_mark_write: E|13707
32951 NeuralNetworksT-13711 (13707) [002] ...1 29481.886479: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
32952 NeuralNetworksT-13711 (13707) [002] ...1 29481.886486: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
32953 NeuralNetworksT-13711 (13707) [002] d..1 29481.886514: sched_waking: comm=NeuralNetworksT pid=13712 prio=120 target_cpu=001
32954 NeuralNetworksT-13711 (13707) [002] d..2 29481.886542: sched_wakeup: comm=NeuralNetworksT pid=13712 prio=120 target_cpu=003
32955 NeuralNetworksT-13711 (13707) [002] d..1 29481.886546: sched_waking: comm=NeuralNetworksT pid=13713 prio=120 target_cpu=007
32956          <idle>-0     (-----) [003] .n.1 29481.886548: cpu_idle: state=4294967295 cpu_id=3
32957          <idle>-0     (-----) [003] d..2 29481.886556: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
32958 NeuralNetworksT-13711 (13707) [002] d..2 29481.886575: sched_wakeup: comm=NeuralNetworksT pid=13713 prio=120 target_cpu=000
32959 NeuralNetworksT-13711 (13707) [002] d.h3 29481.886605: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
32960 NeuralNetworksT-13711 (13707) [002] d.h3 29481.886613: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
32961 NeuralNetworksT-13711 (13707) [002] d.h4 29481.886625: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
32962 NeuralNetworksT-13711 (13707) [002] d..1 29481.886631: sched_waking: comm=NeuralNetworksT pid=13715 prio=120 target_cpu=000
32963 NeuralNetworksT-13711 (13707) [002] d..2 29481.886642: sched_wakeup: comm=NeuralNetworksT pid=13715 prio=120 target_cpu=001
32964 NeuralNetworksT-13711 (13707) [002] d..1 29481.886645: sched_waking: comm=NeuralNetworksT pid=13716 prio=120 target_cpu=003
32965 NeuralNetworksT-13711 (13707) [002] d..1 29481.886659: sched_waking: comm=NeuralNetworksT pid=13717 prio=120 target_cpu=004
32966          <idle>-0     (-----) [000] .n.1 29481.886682: cpu_idle: state=4294967295 cpu_id=0
32967 NeuralNetworksT-13711 (13707) [002] d..1 29481.886694: sched_waking: comm=NeuralNetworksT pid=13718 prio=120 target_cpu=005
32968          <idle>-0     (-----) [000] d..2 29481.886703: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
32969          <idle>-0     (-----) [001] .n.1 29481.886739: cpu_idle: state=4294967295 cpu_id=1
32970          <idle>-0     (-----) [001] d..2 29481.886751: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
32971         sugov:0-559   (  559) [001] .... 29481.886767: clk_set_rate: pwrcl_clk 1766400000
32972         sugov:0-559   (  559) [001] .... 29481.886772: clk_set_rate: cpu3_pwrcl_clk 1689600000
32973         sugov:0-559   (  559) [001] .... 29481.886780: clk_set_rate: cpu2_pwrcl_clk 1689600000
32974         sugov:0-559   (  559) [001] .... 29481.886786: clk_set_rate: cpu1_pwrcl_clk 1689600000
32975         sugov:0-559   (  559) [001] .... 29481.886793: clk_set_rate: cpu0_pwrcl_clk 1766400000
32976          <idle>-0     (-----) [007] dnh2 29481.886793: sched_wakeup: comm=NeuralNetworksT pid=13716 prio=120 target_cpu=007
32977          <idle>-0     (-----) [007] dnh2 29481.886797: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
32978         sugov:0-559   (  559) [001] .... 29481.886799: cpu_frequency: state=1766400 cpu_id=0
32979          <idle>-0     (-----) [007] .n.1 29481.886803: cpu_idle: state=4294967295 cpu_id=7
32980          <idle>-0     (-----) [007] d..2 29481.886812: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
32981         sugov:4-560   (  560) [007] d..2 29481.886822: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
32982          <idle>-0     (-----) [004] dnh2 29481.886857: sched_wakeup: comm=NeuralNetworksT pid=13717 prio=120 target_cpu=004
32983          <idle>-0     (-----) [004] .n.1 29481.886864: cpu_idle: state=4294967295 cpu_id=4
32984          <idle>-0     (-----) [004] d..2 29481.886875: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
32985          <idle>-0     (-----) [005] dnh2 29481.886887: sched_wakeup: comm=NeuralNetworksT pid=13718 prio=120 target_cpu=005
32986          <idle>-0     (-----) [005] .n.1 29481.886894: cpu_idle: state=4294967295 cpu_id=5
32987          <idle>-0     (-----) [005] d..2 29481.886903: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13718 next_prio=120
32988         sugov:0-559   (  559) [001] d..2 29481.886913: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
32989 NeuralNetworksT-13712 (13707) [003] d.s2 29481.886942: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
32990 NeuralNetworksT-13712 (13707) [003] d.s3 29481.886956: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
32991 NeuralNetworksT-13715 (13707) [001] d..2 29481.886965: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
32992         sugov:0-559   (  559) [001] .... 29481.886972: cpu_frequency: state=1766400 cpu_id=1
32993         sugov:0-559   (  559) [001] .... 29481.886975: cpu_frequency: state=1766400 cpu_id=2
32994         sugov:0-559   (  559) [001] .... 29481.886977: cpu_frequency: state=1766400 cpu_id=3
32995         sugov:0-559   (  559) [001] d..2 29481.886986: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
32996 NeuralNetworksT-13714 (13707) [006] d.s2 29481.887069: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32997 NeuralNetworksT-13712 (13707) [003] dnh1 29481.887099: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
32998 NeuralNetworksT-13712 (13707) [003] d..2 29481.887107: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
32999  kworker/u16:10-23868 (23868) [003] d..2 29481.887438: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
33000 NeuralNetworksT-13711 (13707) [002] ...1 29481.889382: tracing_mark_write: E|13707
33001 NeuralNetworksT-13711 (13707) [002] ...1 29481.889386: tracing_mark_write: E|13707
33002 NeuralNetworksT-13711 (13707) [002] ...1 29481.889540: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33003 NeuralNetworksT-13711 (13707) [002] ...1 29481.889546: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33004 NeuralNetworksT-13711 (13707) [002] ...1 29481.894281: tracing_mark_write: E|13707
33005 NeuralNetworksT-13711 (13707) [002] ...1 29481.894286: tracing_mark_write: E|13707
33006 NeuralNetworksT-13711 (13707) [002] ...1 29481.894552: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33007 NeuralNetworksT-13711 (13707) [002] ...1 29481.894558: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33008 NeuralNetworksT-13711 (13707) [002] ...1 29481.896125: tracing_mark_write: E|13707
33009 NeuralNetworksT-13711 (13707) [002] ...1 29481.896129: tracing_mark_write: E|13707
33010 NeuralNetworksT-13711 (13707) [002] ...1 29481.896210: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33011 NeuralNetworksT-13711 (13707) [002] ...1 29481.896215: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33012 NeuralNetworksT-13714 (13707) [006] d.s2 29481.897069: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33013 NeuralNetworksT-13712 (13707) [003] dnH1 29481.897114: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33014 NeuralNetworksT-13716 (13707) [007] d.H2 29481.897115: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
33015 NeuralNetworksT-13712 (13707) [003] d..2 29481.897125: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33016 NeuralNetworksT-13716 (13707) [007] d.H3 29481.897134: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
33017 NeuralNetworksT-13716 (13707) [007] d.H2 29481.897136: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
33018 NeuralNetworksT-13717 (13707) [004] d..2 29481.897144: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33019 NeuralNetworksT-13715 (13707) [001] dnh1 29481.897153: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
33020         sugov:4-560   (  560) [004] d..2 29481.897156: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
33021 NeuralNetworksT-13715 (13707) [001] d..2 29481.897161: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33022         sugov:0-559   (  559) [001] d..2 29481.897176: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
33023  kworker/u16:10-23868 (23868) [003] .... 29481.897219: clk_set_rate: l3_cluster0_vote_clk 1401600000
33024  kworker/u16:10-23868 (23868) [003] .... 29481.897223: clk_set_rate: l3_clk 1401600000
33025  kworker/u16:10-23868 (23868) [003] d..2 29481.897604: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
33026 NeuralNetworksT-13712 (13707) [003] d.s2 29481.897626: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33027 NeuralNetworksT-13712 (13707) [003] d.s3 29481.897636: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33028 NeuralNetworksT-13712 (13707) [003] dns3 29481.897639: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33029 NeuralNetworksT-13712 (13707) [003] d..2 29481.897644: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33030  kworker/u16:10-23868 (23868) [003] d..2 29481.897756: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
33031 NeuralNetworksT-13712 (13707) [003] d.s4 29481.897773: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33032 NeuralNetworksT-13712 (13707) [003] d.s5 29481.897781: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33033 NeuralNetworksT-13712 (13707) [003] dns5 29481.897783: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33034 NeuralNetworksT-13712 (13707) [003] d..2 29481.897790: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33035  kworker/u16:10-23868 (23868) [003] d..2 29481.897799: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
33036 NeuralNetworksT-13711 (13707) [002] ...1 29481.904993: tracing_mark_write: E|13707
33037 NeuralNetworksT-13711 (13707) [002] ...1 29481.904997: tracing_mark_write: E|13707
33038 NeuralNetworksT-13711 (13707) [002] ...1 29481.905104: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33039 NeuralNetworksT-13711 (13707) [002] ...1 29481.905110: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33040 NeuralNetworksT-13714 (13707) [006] d.s2 29481.907066: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33041 NeuralNetworksT-13712 (13707) [003] dnh1 29481.907083: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33042 NeuralNetworksT-13712 (13707) [003] d..2 29481.907089: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33043  kworker/u16:10-23868 (23868) [003] .... 29481.907405: clk_set_rate: l3_cluster0_vote_clk 300000000
33044  kworker/u16:10-23868 (23868) [003] .... 29481.907409: clk_set_rate: l3_clk 748800000
33045  kworker/u16:10-23868 (23868) [003] d..2 29481.907432: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
33046 NeuralNetworksT-13711 (13707) [002] ...1 29481.907773: tracing_mark_write: E|13707
33047 NeuralNetworksT-13711 (13707) [002] ...1 29481.907778: tracing_mark_write: E|13707
33048 NeuralNetworksT-13711 (13707) [002] ...1 29481.907908: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33049 NeuralNetworksT-13711 (13707) [002] ...1 29481.907914: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33050 NeuralNetworksT-13711 (13707) [002] ...1 29481.910206: tracing_mark_write: E|13707
33051 NeuralNetworksT-13711 (13707) [002] ...1 29481.910210: tracing_mark_write: E|13707
33052 NeuralNetworksT-13711 (13707) [002] ...1 29481.910342: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33053 NeuralNetworksT-13711 (13707) [002] ...1 29481.910349: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33054 NeuralNetworksT-13711 (13707) [002] ...1 29481.911661: tracing_mark_write: E|13707
33055 NeuralNetworksT-13711 (13707) [002] ...1 29481.911666: tracing_mark_write: E|13707
33056 NeuralNetworksT-13711 (13707) [002] ...1 29481.911715: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33057 NeuralNetworksT-13711 (13707) [002] ...1 29481.911720: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33058 NeuralNetworksT-13711 (13707) [002] ...1 29481.915940: tracing_mark_write: E|13707
33059 NeuralNetworksT-13711 (13707) [002] ...1 29481.915944: tracing_mark_write: E|13707
33060 NeuralNetworksT-13711 (13707) [002] ...1 29481.916008: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33061 NeuralNetworksT-13711 (13707) [002] ...1 29481.916014: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33062 NeuralNetworksT-13714 (13707) [006] d.s2 29481.917071: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33063 NeuralNetworksT-13714 (13707) [006] d.s3 29481.917120: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
33064 NeuralNetworksT-13716 (13707) [007] d..2 29481.917130: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33065 NeuralNetworksT-13717 (13707) [004] d.H2 29481.917156: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
33066 NeuralNetworksT-13717 (13707) [004] dnH3 29481.917167: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
33067 NeuralNetworksT-13717 (13707) [004] dnH2 29481.917169: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
33068 NeuralNetworksT-13717 (13707) [004] d..2 29481.917183: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33069 NeuralNetworksT-13715 (13707) [001] dnh1 29481.917186: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
33070 NeuralNetworksT-13715 (13707) [001] d..2 29481.917198: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33071         sugov:4-560   (  560) [004] .... 29481.917205: clk_set_rate: perfcl_clk 2803200000
33072         sugov:4-560   (  560) [004] .... 29481.917207: clk_set_rate: cpu7_perfcl_clk 902400000
33073         sugov:0-559   (  559) [001] d..2 29481.917209: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
33074         sugov:4-560   (  560) [004] .... 29481.917212: clk_set_rate: cpu6_perfcl_clk 902400000
33075         sugov:4-560   (  560) [004] .... 29481.917217: clk_set_rate: cpu5_perfcl_clk 902400000
33076         sugov:4-560   (  560) [004] .... 29481.917222: clk_set_rate: cpu4_perfcl_clk 2803200000
33077         sugov:4-560   (  560) [004] .... 29481.917229: cpu_frequency: state=2803200 cpu_id=4
33078  kworker/u16:10-23868 (23868) [007] .... 29481.917242: clk_set_rate: l3_cluster0_vote_clk 1401600000
33079  kworker/u16:10-23868 (23868) [007] .... 29481.917245: clk_set_rate: l3_clk 1401600000
33080         sugov:4-560   (  560) [004] d..2 29481.917377: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
33081 NeuralNetworksT-13712 (13707) [003] d.s2 29481.917404: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
33082 NeuralNetworksT-13717 (13707) [004] dnh1 29481.917418: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
33083 NeuralNetworksT-13717 (13707) [004] d..2 29481.917420: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33084         sugov:4-560   (  560) [004] .... 29481.917425: cpu_frequency: state=2803200 cpu_id=5
33085         sugov:4-560   (  560) [004] .... 29481.917429: cpu_frequency: state=2803200 cpu_id=6
33086         sugov:4-560   (  560) [004] .... 29481.917430: cpu_frequency: state=2803200 cpu_id=7
33087         sugov:4-560   (  560) [004] d..2 29481.917434: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
33088  kworker/u16:10-23868 (23868) [007] d..2 29481.917547: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
33089 NeuralNetworksT-13711 (13707) [002] ...1 29481.918305: tracing_mark_write: E|13707
33090 NeuralNetworksT-13711 (13707) [002] ...1 29481.918309: tracing_mark_write: E|13707
33091 NeuralNetworksT-13711 (13707) [002] ...1 29481.918363: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33092 NeuralNetworksT-13711 (13707) [002] ...1 29481.918368: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33093 NeuralNetworksT-13711 (13707) [002] ...1 29481.919451: tracing_mark_write: E|13707
33094 NeuralNetworksT-13711 (13707) [002] ...1 29481.919454: tracing_mark_write: E|13707
33095 NeuralNetworksT-13711 (13707) [002] ...1 29481.919517: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33096 NeuralNetworksT-13711 (13707) [002] ...1 29481.919522: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33097 NeuralNetworksT-13711 (13707) [002] ...1 29481.920485: tracing_mark_write: E|13707
33098 NeuralNetworksT-13711 (13707) [002] ...1 29481.920490: tracing_mark_write: E|13707
33099 NeuralNetworksT-13711 (13707) [002] ...1 29481.920502: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33100 NeuralNetworksT-13711 (13707) [002] ...1 29481.920506: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33101 NeuralNetworksT-13711 (13707) [002] ...1 29481.922512: tracing_mark_write: E|13707
33102 NeuralNetworksT-13711 (13707) [002] ...1 29481.922515: tracing_mark_write: E|13707
33103 NeuralNetworksT-13711 (13707) [002] ...1 29481.922554: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33104 NeuralNetworksT-13711 (13707) [002] ...1 29481.922559: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33105 NeuralNetworksT-13711 (13707) [002] ...1 29481.924448: tracing_mark_write: E|13707
33106 NeuralNetworksT-13711 (13707) [002] ...1 29481.924452: tracing_mark_write: E|13707
33107 NeuralNetworksT-13711 (13707) [002] ...1 29481.924511: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33108 NeuralNetworksT-13711 (13707) [002] ...1 29481.924516: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33109 NeuralNetworksT-13711 (13707) [002] ...1 29481.926514: tracing_mark_write: E|13707
33110 NeuralNetworksT-13711 (13707) [002] ...1 29481.926517: tracing_mark_write: E|13707
33111 NeuralNetworksT-13711 (13707) [002] ...1 29481.926551: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33112 NeuralNetworksT-13711 (13707) [002] ...1 29481.926555: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33113 NeuralNetworksT-13714 (13707) [006] d.s2 29481.927062: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
33114 NeuralNetworksT-13714 (13707) [006] d.s3 29481.927070: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
33115 NeuralNetworksT-13716 (13707) [007] d..2 29481.927077: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33116  kworker/u16:10-23868 (23868) [007] .... 29481.927216: clk_set_rate: l3_cluster1_vote_clk 1478400000
33117  kworker/u16:10-23868 (23868) [007] .... 29481.927217: clk_set_rate: l3_clk 1478400000
33118  kworker/u16:10-23868 (23868) [007] d..2 29481.927361: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
33119 NeuralNetworksT-13711 (13707) [002] ...1 29481.928439: tracing_mark_write: E|13707
33120 NeuralNetworksT-13711 (13707) [002] ...1 29481.928443: tracing_mark_write: E|13707
33121 NeuralNetworksT-13711 (13707) [002] ...1 29481.928477: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33122 NeuralNetworksT-13711 (13707) [002] ...1 29481.928482: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33123 NeuralNetworksT-13711 (13707) [002] ...1 29481.930503: tracing_mark_write: E|13707
33124 NeuralNetworksT-13711 (13707) [002] ...1 29481.930507: tracing_mark_write: E|13707
33125 NeuralNetworksT-13711 (13707) [002] ...1 29481.930539: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33126 NeuralNetworksT-13711 (13707) [002] ...1 29481.930545: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33127 NeuralNetworksT-13711 (13707) [002] ...1 29481.932384: tracing_mark_write: E|13707
33128 NeuralNetworksT-13711 (13707) [002] ...1 29481.932387: tracing_mark_write: E|13707
33129 NeuralNetworksT-13711 (13707) [002] ...1 29481.932421: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33130 NeuralNetworksT-13711 (13707) [002] ...1 29481.932425: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33131 NeuralNetworksT-13711 (13707) [002] ...1 29481.934453: tracing_mark_write: E|13707
33132 NeuralNetworksT-13711 (13707) [002] ...1 29481.934457: tracing_mark_write: E|13707
33133 NeuralNetworksT-13711 (13707) [002] ...1 29481.934488: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33134 NeuralNetworksT-13711 (13707) [002] ...1 29481.934493: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33135 NeuralNetworksT-13711 (13707) [002] ...1 29481.936331: tracing_mark_write: E|13707
33136 NeuralNetworksT-13711 (13707) [002] ...1 29481.936334: tracing_mark_write: E|13707
33137 NeuralNetworksT-13711 (13707) [002] ...1 29481.936368: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33138 NeuralNetworksT-13711 (13707) [002] ...1 29481.936373: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33139 NeuralNetworksT-13714 (13707) [006] d.s2 29481.937065: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
33140 NeuralNetworksT-13714 (13707) [006] d.s3 29481.937073: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
33141 NeuralNetworksT-13716 (13707) [007] d..2 29481.937092: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33142 NeuralNetworksT-13717 (13707) [004] d.h2 29481.937098: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
33143 NeuralNetworksT-13717 (13707) [004] dnh3 29481.937103: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
33144 NeuralNetworksT-13717 (13707) [004] dnh2 29481.937104: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
33145 NeuralNetworksT-13717 (13707) [004] d..2 29481.937112: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33146 NeuralNetworksT-13715 (13707) [001] dnh1 29481.937115: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
33147         sugov:4-560   (  560) [004] d..2 29481.937117: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
33148 NeuralNetworksT-13715 (13707) [001] d..2 29481.937125: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33149         sugov:0-559   (  559) [001] d..2 29481.937138: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
33150  kworker/u16:10-23868 (23868) [007] .... 29481.937297: clk_set_rate: l3_cluster1_vote_clk 300000000
33151  kworker/u16:10-23868 (23868) [007] .... 29481.937298: clk_set_rate: l3_clk 1401600000
33152  kworker/u16:10-23868 (23868) [007] d..2 29481.937492: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
33153 NeuralNetworksT-13711 (13707) [002] ...1 29481.938437: tracing_mark_write: E|13707
33154 NeuralNetworksT-13711 (13707) [002] ...1 29481.938440: tracing_mark_write: E|13707
33155 NeuralNetworksT-13711 (13707) [002] ...1 29481.938476: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33156 NeuralNetworksT-13711 (13707) [002] ...1 29481.938480: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33157 NeuralNetworksT-13711 (13707) [002] ...1 29481.940331: tracing_mark_write: E|13707
33158 NeuralNetworksT-13711 (13707) [002] ...1 29481.940334: tracing_mark_write: E|13707
33159 NeuralNetworksT-13711 (13707) [002] ...1 29481.940384: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33160 NeuralNetworksT-13711 (13707) [002] ...1 29481.940412: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33161 NeuralNetworksT-13711 (13707) [002] ...1 29481.940939: tracing_mark_write: E|13707
33162 NeuralNetworksT-13711 (13707) [002] ...1 29481.940943: tracing_mark_write: E|13707
33163 NeuralNetworksT-13711 (13707) [002] ...1 29481.940974: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33164 NeuralNetworksT-13711 (13707) [002] ...1 29481.940978: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33165 NeuralNetworksT-13711 (13707) [002] ...1 29481.941903: tracing_mark_write: E|13707
33166 NeuralNetworksT-13711 (13707) [002] ...1 29481.941907: tracing_mark_write: E|13707
33167 NeuralNetworksT-13711 (13707) [002] ...1 29481.941919: tracing_mark_write: B|13707|[NN_LC_PTR]depthwiseConvQuant8
33168 NeuralNetworksT-13711 (13707) [002] ...1 29481.941923: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::DepthwiseConv
33169 NeuralNetworksT-13711 (13707) [002] ...1 29481.942861: tracing_mark_write: E|13707
33170 NeuralNetworksT-13711 (13707) [002] ...1 29481.942864: tracing_mark_write: E|13707
33171 NeuralNetworksT-13711 (13707) [002] ...1 29481.942875: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33172 NeuralNetworksT-13711 (13707) [002] ...1 29481.942879: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33173 NeuralNetworksT-13711 (13707) [002] ...1 29481.944655: tracing_mark_write: E|13707
33174 NeuralNetworksT-13711 (13707) [002] ...1 29481.944659: tracing_mark_write: E|13707
33175 NeuralNetworksT-13711 (13707) [002] ...1 29481.944691: tracing_mark_write: B|13707|[NN_LC_PTR]averagePoolQuant8
33176 NeuralNetworksT-13711 (13707) [002] ...1 29481.944695: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::AveragePool
33177 NeuralNetworksT-13711 (13707) [002] ...1 29481.944754: tracing_mark_write: E|13707
33178 NeuralNetworksT-13711 (13707) [002] ...1 29481.944757: tracing_mark_write: E|13707
33179 NeuralNetworksT-13711 (13707) [002] ...1 29481.944768: tracing_mark_write: B|13707|[NN_LC_PTR]convQuant8
33180 NeuralNetworksT-13711 (13707) [002] ...1 29481.944773: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Conv
33181 NeuralNetworksT-13711 (13707) [002] ...1 29481.945241: tracing_mark_write: E|13707
33182 NeuralNetworksT-13711 (13707) [002] ...1 29481.945244: tracing_mark_write: E|13707
33183 NeuralNetworksT-13711 (13707) [002] ...1 29481.945263: tracing_mark_write: B|13707|[NN_LC_PCO]reshapeGeneric
33184 NeuralNetworksT-13711 (13707) [002] ...1 29481.945267: tracing_mark_write: E|13707
33185 NeuralNetworksT-13711 (13707) [002] ...1 29481.945277: tracing_mark_write: B|13707|[NN_LC_PTR]softmaxQuant8
33186 NeuralNetworksT-13711 (13707) [002] ...1 29481.945285: tracing_mark_write: B|13707|[SW][NN_LC_PCO]optimized_ops::Softmax
33187 NeuralNetworksT-13711 (13707) [002] ...1 29481.945351: tracing_mark_write: E|13707
33188 NeuralNetworksT-13711 (13707) [002] ...1 29481.945353: tracing_mark_write: E|13707
33189 NeuralNetworksT-13711 (13707) [002] d..2 29481.945444: sched_waking: comm=logd.writer pid=563 prio=130 target_cpu=001
33190 NeuralNetworksT-13711 (13707) [002] d..3 29481.945467: sched_wakeup: comm=logd.writer pid=563 prio=130 target_cpu=002
33191 NeuralNetworksT-13711 (13707) [002] ...1 29481.945495: tracing_mark_write: E|13707
33192 NeuralNetworksT-13711 (13707) [002] d..1 29481.945504: sched_waking: comm=NeuralNetworksT pid=13710 prio=120 target_cpu=001
33193 NeuralNetworksT-13711 (13707) [002] d..2 29481.945520: sched_wakeup: comm=NeuralNetworksT pid=13710 prio=120 target_cpu=001
33194 NeuralNetworksT-13715 (13707) [001] d..2 29481.945532: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13710 next_prio=120
33195 NeuralNetworksT-13711 (13707) [002] ...1 29481.945553: tracing_mark_write: E|13707
33196 NeuralNetworksT-13710 (13707) [001] d..2 29481.945557: sched_switch: prev_comm=NeuralNetworksT prev_pid=13710 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
33197 NeuralNetworksT-13711 (13707) [002] d..2 29481.945885: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
33198 NeuralNetworksT-13716 (13707) [007] dnh1 29481.945918: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=007
33199 NeuralNetworksT-13716 (13707) [007] d..2 29481.945948: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=R ==> next_comm=rcuos/2 next_pid=30 next_prio=120
33200 NeuralNetworksT-13711 (13707) [002] d.h2 29481.945948: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
33201         rcuos/2-30    (   30) [007] d..2 29481.945952: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
33202 NeuralNetworksT-13711 (13707) [002] d.h2 29481.945958: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
33203 NeuralNetworksT-13717 (13707) [004] dnh1 29481.945963: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
33204 NeuralNetworksT-13717 (13707) [004] d..2 29481.945967: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33205         rcuos/2-30    (   30) [007] d..2 29481.945968: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
33206 NeuralNetworksT-13711 (13707) [002] d.h3 29481.945970: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
33207         sugov:4-560   (  560) [004] d..2 29481.945971: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
33208 NeuralNetworksT-13712 (13707) [003] dnh1 29481.945976: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
33209 NeuralNetworksT-13715 (13707) [001] d..2 29481.945980: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33210 NeuralNetworksT-13712 (13707) [003] d..2 29481.945984: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
33211         sugov:0-559   (  559) [001] d..2 29481.945989: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
33212       rcu_sched-8     (    8) [003] d..2 29481.945999: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13712 next_prio=120
33213 NeuralNetworksT-13711 (13707) [002] d..1 29481.946412: sched_waking: comm=NeuralNetworksT pid=13710 prio=120 target_cpu=001
33214 NeuralNetworksT-13711 (13707) [002] dn.2 29481.946426: sched_wakeup: comm=NeuralNetworksT pid=13710 prio=120 target_cpu=002
33215 NeuralNetworksT-13711 (13707) [002] d..2 29481.946431: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=R+ ==> next_comm=NeuralNetworksT next_pid=13710 next_prio=120
33216 NeuralNetworksT-13710 (13707) [002] d..1 29481.946555: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33217 NeuralNetworksT-13714 (13707) [006] dnh1 29481.946574: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33218 NeuralNetworksT-13714 (13707) [006] d..2 29481.946578: sched_switch: prev_comm=NeuralNetworksT prev_pid=13714 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33219 NeuralNetworksT-13707 (13707) [006] d..2 29481.946587: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13714 next_prio=120
33220 NeuralNetworksT-13710 (13707) [002] d..1 29481.946665: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33221 NeuralNetworksT-13714 (13707) [006] dnh1 29481.946677: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33222 NeuralNetworksT-13714 (13707) [006] d..2 29481.946680: sched_switch: prev_comm=NeuralNetworksT prev_pid=13714 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33223 NeuralNetworksT-13707 (13707) [006] d..2 29481.946693: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=001
33224 NeuralNetworksT-13707 (13707) [006] ...1 29481.946711: tracing_mark_write: E|13707
33225 NeuralNetworksT-13710 (13707) [002] d.h1 29481.946711: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=002
33226 NeuralNetworksT-13707 (13707) [006] ...1 29481.946714: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksEvent_free
33227 NeuralNetworksT-13707 (13707) [006] ...1 29481.946717: tracing_mark_write: E|13707
33228 NeuralNetworksT-13707 (13707) [006] ...1 29481.946720: tracing_mark_write: B|13707|[SW][NN_LA_PR]executeWithCompilation example
33229 NeuralNetworksT-13710 (13707) [002] d..2 29481.946736: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
33230 NeuralNetworksT-13710 (13707) [002] d..3 29481.946748: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
33231 NeuralNetworksT-13710 (13707) [002] d..2 29481.946782: sched_switch: prev_comm=NeuralNetworksT prev_pid=13710 prev_prio=120 prev_state=x ==> next_comm=logd.writer next_pid=563 next_prio=130
33232     logd.writer-563   (  555) [002] d..2 29481.946944: sched_switch: prev_comm=logd.writer prev_pid=563 prev_prio=130 prev_state=S ==> next_comm=rcuos/6 next_pid=62 next_prio=120
33233         rcuos/6-62    (   62) [002] d..2 29481.946953: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
33234         rcuop/2-29    (   29) [002] d..2 29481.946958: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
33235         rcuop/2-29    (   29) [002] d..3 29481.946971: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
33236         rcuop/2-29    (   29) [002] d..2 29481.946977: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33237     rcu_preempt-7     (    7) [002] d..2 29481.946986: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13711 next_prio=120
33238 NeuralNetworksT-13711 (13707) [002] d..2 29481.947066: sched_switch: prev_comm=NeuralNetworksT prev_pid=13711 prev_prio=120 prev_state=x ==> next_comm=NeuralNetworksT next_pid=13714 next_prio=120
33239 NeuralNetworksT-13707 (13707) [006] d.s2 29481.947068: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=007
33240 NeuralNetworksT-13707 (13707) [006] d.s3 29481.947076: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
33241 NeuralNetworksT-13714 (13707) [002] d.H4 29481.947111: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
33242 NeuralNetworksT-13714 (13707) [002] d.H4 29481.947124: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
33243 NeuralNetworksT-13707 (13707) [006] dnh1 29481.947127: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=006
33244 NeuralNetworksT-13707 (13707) [006] d..2 29481.947130: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33245 NeuralNetworksT-13714 (13707) [002] d.H5 29481.947132: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
33246         sugov:4-560   (  560) [006] d..2 29481.947134: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33247 NeuralNetworksT-13715 (13707) [001] d..2 29481.947140: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33248         sugov:0-559   (  559) [001] d..2 29481.947147: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
33249  kworker/u16:10-23868 (23868) [006] .... 29481.947292: clk_set_rate: l3_cluster1_vote_clk 1478400000
33250  kworker/u16:10-23868 (23868) [006] .... 29481.947294: clk_set_rate: l3_clk 1478400000
33251  kworker/u16:10-23868 (23868) [006] d..2 29481.947565: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33252 NeuralNetworksT-13712 (13707) [003] d.s2 29481.947598: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
33253 NeuralNetworksT-13707 (13707) [006] d.h1 29481.947612: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33254 NeuralNetworksT-13707 (13707) [006] d.h1 29481.947614: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
33255 NeuralNetworksT-13707 (13707) [006] ...1 29481.949260: tracing_mark_write: E|13707
33256 NeuralNetworksT-13707 (13707) [006] ...1 29481.949262: tracing_mark_write: E|13707
33257 NeuralNetworksT-13707 (13707) [006] ...1 29481.949263: tracing_mark_write: E|13707
33258 NeuralNetworksT-13707 (13707) [006] ...1 29481.949264: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksExecution_free
33259 NeuralNetworksT-13707 (13707) [006] ...1 29481.949267: tracing_mark_write: E|13707
33260 NeuralNetworksT-13707 (13707) [006] ...1 29481.949298: tracing_mark_write: E|13707
33261 NeuralNetworksT-13707 (13707) [006] ...1 29481.949302: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksCompilation_free
33262 NeuralNetworksT-13707 (13707) [006] ...1 29481.949303: tracing_mark_write: E|13707
33263 NeuralNetworksT-13707 (13707) [006] ...1 29481.949305: tracing_mark_write: B|13707|[NN_LR_PT]ANeuralNetworksModel_free
33264 NeuralNetworksT-13718 (13707) [005] d..3 29481.949338: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
33265 NeuralNetworksT-13718 (13707) [005] d..2 29481.949348: sched_switch: prev_comm=NeuralNetworksT prev_pid=13718 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33266 NeuralNetworksT-13717 (13707) [004] d..2 29481.949351: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33267 NeuralNetworksT-13713 (13707) [000] dnh1 29481.949352: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
33268 NeuralNetworksT-13713 (13707) [000] d..2 29481.949359: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
33269          <idle>-0     (-----) [004] d..1 29481.949364: cpu_idle: state=2 cpu_id=4
33270          <idle>-0     (-----) [005] d..1 29481.949364: cpu_idle: state=2 cpu_id=5
33271 NeuralNetworksT-13716 (13707) [007] d..2 29481.949519: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33272<...>-13 ( 13) [000] d.h3 29481.949520: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=006
33273          <idle>-0     (-----) [007] d..1 29481.949527: cpu_idle: state=2 cpu_id=7
33274<...>-13 ( 13) [000] d.h3 29481.949532: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
33275<...>-13 ( 13) [000] d.h4 29481.949543: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33276<...>-13 ( 13) [000] d..2 29481.949553: sched_switch: prev_comm=migration/0 prev_pid=13 prev_prio=0 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
33277         sugov:0-559   (  559) [000] d..2 29481.949567: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33278          <idle>-0     (-----) [000] d..1 29481.949582: cpu_idle: state=0 cpu_id=0
33279          <idle>-0     (-----) [005] .n.1 29481.949828: cpu_idle: state=4294967295 cpu_id=5
33280          <idle>-0     (-----) [005] d..2 29481.949837: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
33281          <idle>-0     (-----) [007] dnh2 29481.949839: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
33282          <idle>-0     (-----) [007] .n.1 29481.949843: cpu_idle: state=4294967295 cpu_id=7
33283          <idle>-0     (-----) [007] d..2 29481.949847: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33284         sugov:4-560   (  560) [007] d..3 29481.949854: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
33285 NeuralNetworksT-13707 (13707) [006] ...1 29481.949856: tracing_mark_write: E|13707
33286 NeuralNetworksT-13707 (13707) [006] ...1 29481.949857: tracing_mark_write: E|13707
33287         sugov:4-560   (  560) [007] d..2 29481.949862: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33288 NeuralNetworksT-13715 (13707) [001] dnh1 29481.949865: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
33289          <idle>-0     (-----) [007] d..1 29481.949865: cpu_idle: state=2 cpu_id=7
33290 NeuralNetworksT-13715 (13707) [001] d..2 29481.949870: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
33291 NeuralNetworksT-13707 (13707) [006] d..2 29481.949879: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=006
33292     migration/1-17    (   17) [001] d..2 29481.949939: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33293          <idle>-0     (-----) [001] dnh3 29481.949947: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=001
33294          <idle>-0     (-----) [001] d..2 29481.949953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
33295 shell svc 13705-13706 ( 1007) [001] d..2 29481.950005: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
33296 shell svc 13705-13706 ( 1007) [001] d..3 29481.950016: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
33297 NeuralNetworksT-13707 (13707) [006] d..2 29481.950019: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33298 shell svc 13705-13706 ( 1007) [001] d..2 29481.950030: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
33299 NeuralNetworksT-13712 (13707) [003] d..1 29481.950069: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33300          <idle>-0     (-----) [007] .n.1 29481.950080: cpu_idle: state=4294967295 cpu_id=7
33301          <idle>-0     (-----) [007] d..2 29481.950086: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13715 next_prio=120
33302  kworker/u16:10-23868 (23868) [006] d.h2 29481.950087: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33303 NeuralNetworksT-13712 (13707) [003] d..2 29481.950106: sched_switch: prev_comm=NeuralNetworksT prev_pid=13712 prev_prio=120 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
33304          <idle>-0     (-----) [003] d..1 29481.950118: cpu_idle: state=0 cpu_id=3
33305  kworker/u16:10-23868 (23868) [006] d..2 29481.950123: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33306 NeuralNetworksT-13707 (13707) [006] d..3 29481.950138: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
33307 NeuralNetworksT-13707 (13707) [006] d..2 29481.950147: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33308 NeuralNetworksT-13714 (13707) [002] dnh1 29481.950149: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
33309          <idle>-0     (-----) [006] d..1 29481.950154: cpu_idle: state=2 cpu_id=6
33310 NeuralNetworksT-13714 (13707) [002] d..2 29481.950155: sched_switch: prev_comm=NeuralNetworksT prev_pid=13714 prev_prio=120 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
33311          <idle>-0     (-----) [003] d.s3 29481.950156: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=006
33312            adbd-1007  ( 1007) [001] d..1 29481.950158: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
33313 NeuralNetworksT-13713 (13707) [005] d..1 29481.950165: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33314 NeuralNetworksT-13713 (13707) [005] dn.2 29481.950178: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=005
33315 NeuralNetworksT-13713 (13707) [005] d..2 29481.950180: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=R+ ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33316          <idle>-0     (-----) [003] d.s4 29481.950207: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33317 NeuralNetworksT-13707 (13707) [005] d..2 29481.950208: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13713 next_prio=120
33318          <idle>-0     (-----) [003] dns4 29481.950210: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33319     migration/2-25    (   25) [002] d.h3 29481.950218: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
33320            adbd-1007  ( 1007) [001] d..2 29481.950219: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
33321 NeuralNetworksT-13713 (13707) [005] d..2 29481.950242: sched_switch: prev_comm=NeuralNetworksT prev_pid=13713 prev_prio=120 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
33322          <idle>-0     (-----) [003] .n.1 29481.950246: cpu_idle: state=4294967295 cpu_id=3
33323          <idle>-0     (-----) [005] d..3 29481.950247: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
33324     migration/2-25    (   25) [002] d.h3 29481.950250: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
33325          <idle>-0     (-----) [003] d..2 29481.950252: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33326     migration/2-25    (   25) [002] d.h4 29481.950259: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33327          <idle>-0     (-----) [000] .n.1 29481.950265: cpu_idle: state=4294967295 cpu_id=0
33328          <idle>-0     (-----) [005] d..1 29481.950270: cpu_idle: state=2 cpu_id=5
33329          <idle>-0     (-----) [000] d..2 29481.950270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33330  kworker/u16:10-23868 (23868) [003] d..2 29481.950278: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
33331     migration/2-25    (   25) [002] d..2 29481.950283: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33332         sugov:0-559   (  559) [000] d..2 29481.950283: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33333          <idle>-0     (-----) [000] d..1 29481.950288: cpu_idle: state=0 cpu_id=0
33334            adbd-1007  ( 1007) [001] d..2 29481.950289: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33335          <idle>-0     (-----) [002] dnh3 29481.950292: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
33336          <idle>-0     (-----) [002] d..2 29481.950299: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
33337          <idle>-0     (-----) [001] d..1 29481.950301: cpu_idle: state=0 cpu_id=1
33338         rcuop/4-45    (   45) [002] d..2 29481.950311: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33339          <idle>-0     (-----) [002] d..1 29481.950319: cpu_idle: state=0 cpu_id=2
33340            adbd-23485 ( 1007) [003] d..2 29481.950379: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33341          <idle>-0     (-----) [006] .n.1 29481.950380: cpu_idle: state=4294967295 cpu_id=6
33342          <idle>-0     (-----) [003] d..1 29481.950385: cpu_idle: state=0 cpu_id=3
33343          <idle>-0     (-----) [006] d..2 29481.950386: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13714 next_prio=120
33344          <idle>-0     (-----) [000] d.h3 29481.950402: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
33345          <idle>-0     (-----) [002] d.s2 29481.950403: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
33346          <idle>-0     (-----) [003] d.s2 29481.950407: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
33347          <idle>-0     (-----) [002] dns3 29481.950413: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
33348          <idle>-0     (-----) [003] dns3 29481.950416: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
33349          <idle>-0     (-----) [002] .n.1 29481.950421: cpu_idle: state=4294967295 cpu_id=2
33350          <idle>-0     (-----) [000] dnh4 29481.950424: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33351          <idle>-0     (-----) [003] .n.1 29481.950425: cpu_idle: state=4294967295 cpu_id=3
33352 NeuralNetworksT-13714 (13707) [006] d..1 29481.950425: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=005
33353          <idle>-0     (-----) [002] d..2 29481.950425: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33354          <idle>-0     (-----) [000] .n.1 29481.950430: cpu_idle: state=4294967295 cpu_id=0
33355          <idle>-0     (-----) [003] d..2 29481.950430: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
33356     rcu_preempt-7     (    7) [002] d..2 29481.950433: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
33357 NeuralNetworksT-13714 (13707) [006] dn.2 29481.950436: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33358          <idle>-0     (-----) [000] d..2 29481.950437: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33359 NeuralNetworksT-13714 (13707) [006] d..2 29481.950438: sched_switch: prev_comm=NeuralNetworksT prev_pid=13714 prev_prio=120 prev_state=R+ ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33360       rcu_sched-8     (    8) [003] d..2 29481.950446: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33361 NeuralNetworksT-13707 (13707) [006] d..2 29481.950450: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=NeuralNetworksT next_pid=13714 next_prio=120
33362          <idle>-0     (-----) [003] d..1 29481.950453: cpu_idle: state=2 cpu_id=3
33363     rcu_preempt-7     (    7) [002] d..3 29481.950456: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
33364   kworker/u17:1-18284 (18284) [000] d..2 29481.950457: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33365 NeuralNetworksT-13714 (13707) [006] d..2 29481.950463: sched_switch: prev_comm=NeuralNetworksT prev_pid=13714 prev_prio=120 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
33366          <idle>-0     (-----) [003] .n.1 29481.950466: cpu_idle: state=4294967295 cpu_id=3
33367   kworker/u17:1-18284 (18284) [000] d..3 29481.950466: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33368          <idle>-0     (-----) [006] d..3 29481.950467: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
33369     rcu_preempt-7     (    7) [002] d..2 29481.950471: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33370          <idle>-0     (-----) [003] d..2 29481.950473: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
33371          <idle>-0     (-----) [002] d..1 29481.950478: cpu_idle: state=2 cpu_id=2
33372 NeuralNetworksT-13715 (13707) [007] d..1 29481.950479: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33373          <idle>-0     (-----) [006] d..1 29481.950481: cpu_idle: state=2 cpu_id=6
33374   kworker/u17:1-18284 (18284) [000] d..2 29481.950485: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33375 NeuralNetworksT-13715 (13707) [007] d..2 29481.950486: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33376          <idle>-0     (-----) [006] .n.1 29481.950492: cpu_idle: state=4294967295 cpu_id=6
33377     kworker/0:0-13450 (13450) [000] d..2 29481.950495: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
33378          <idle>-0     (-----) [006] d..2 29481.950495: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33379          <idle>-0     (-----) [005] dnh2 29481.950500: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33380 NeuralNetworksT-13715 (13707) [007] d..2 29481.950500: sched_switch: prev_comm=NeuralNetworksT prev_pid=13715 prev_prio=120 prev_state=x ==> next_comm=swapper/7 next_pid=0 next_prio=120
33381         rcuop/2-29    (   29) [003] d..2 29481.950501: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33382          <idle>-0     (-----) [005] .n.1 29481.950504: cpu_idle: state=4294967295 cpu_id=5
33383 NeuralNetworksT-13707 (13707) [006] d..1 29481.950505: sched_waking: comm=NeuralNetworksT pid=13716 prio=120 target_cpu=007
33384          <idle>-0     (-----) [007] d..1 29481.950506: cpu_idle: state=0 cpu_id=7
33385     kworker/0:0-13450 (13450) [000] d..3 29481.950507: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
33386          <idle>-0     (-----) [005] d..2 29481.950509: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33387          <idle>-0     (-----) [003] d..2 29481.950511: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
33388 NeuralNetworksT-13707 (13707) [006] d..2 29481.950512: sched_wakeup: comm=NeuralNetworksT pid=13716 prio=120 target_cpu=007
33389         sugov:4-560   (  560) [005] d..2 29481.950516: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33390          <idle>-0     (-----) [007] .n.1 29481.950517: cpu_idle: state=4294967295 cpu_id=7
33391 NeuralNetworksT-13707 (13707) [006] d..2 29481.950518: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33392          <idle>-0     (-----) [005] d..1 29481.950520: cpu_idle: state=0 cpu_id=5
33393          <idle>-0     (-----) [007] d..2 29481.950520: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13716 next_prio=120
33394          <idle>-0     (-----) [006] d..1 29481.950521: cpu_idle: state=0 cpu_id=6
33395     kworker/0:0-13450 (13450) [000] d..2 29481.950528: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33396          <idle>-0     (-----) [000] d..1 29481.950535: cpu_idle: state=0 cpu_id=0
33397 NeuralNetworksT-13716 (13707) [007] d..1 29481.950546: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33398 NeuralNetworksT-13716 (13707) [007] d..2 29481.950551: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33399          <idle>-0     (-----) [001] d.h2 29481.950553: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
33400          <idle>-0     (-----) [006] .n.1 29481.950556: cpu_idle: state=4294967295 cpu_id=6
33401          <idle>-0     (-----) [006] d..2 29481.950559: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33402          <idle>-0     (-----) [001] dnh3 29481.950560: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
33403 NeuralNetworksT-13716 (13707) [007] d..2 29481.950563: sched_switch: prev_comm=NeuralNetworksT prev_pid=13716 prev_prio=120 prev_state=x ==> next_comm=swapper/7 next_pid=0 next_prio=120
33404 NeuralNetworksT-13707 (13707) [006] d..1 29481.950565: sched_waking: comm=NeuralNetworksT pid=13717 prio=120 target_cpu=004
33405          <idle>-0     (-----) [001] .n.1 29481.950566: cpu_idle: state=4294967295 cpu_id=1
33406          <idle>-0     (-----) [007] d..1 29481.950567: cpu_idle: state=0 cpu_id=7
33407            adbd-23485 ( 1007) [003] d..2 29481.950568: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33408          <idle>-0     (-----) [001] d..2 29481.950573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
33409 NeuralNetworksT-13707 (13707) [006] d..2 29481.950574: sched_wakeup: comm=NeuralNetworksT pid=13717 prio=120 target_cpu=004
33410          <idle>-0     (-----) [003] d..1 29481.950574: cpu_idle: state=0 cpu_id=3
33411 NeuralNetworksT-13707 (13707) [006] d..2 29481.950579: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33412          <idle>-0     (-----) [006] d..1 29481.950582: cpu_idle: state=0 cpu_id=6
33413          <idle>-0     (-----) [000] d.h3 29481.950603: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33414          <idle>-0     (-----) [000] dnh4 29481.950608: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33415          <idle>-0     (-----) [000] .n.1 29481.950613: cpu_idle: state=4294967295 cpu_id=0
33416          <idle>-0     (-----) [000] d..2 29481.950619: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33417   kworker/u17:1-18284 (18284) [000] d..2 29481.950626: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33418   kworker/u17:1-18284 (18284) [000] d..3 29481.950631: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33419          <idle>-0     (-----) [002] dnh2 29481.950644: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
33420   kworker/u17:1-18284 (18284) [000] d..2 29481.950646: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33421          <idle>-0     (-----) [002] .n.1 29481.950649: cpu_idle: state=4294967295 cpu_id=2
33422     kworker/0:0-13450 (13450) [000] d..2 29481.950652: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
33423          <idle>-0     (-----) [002] d..2 29481.950657: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
33424     kworker/0:0-13450 (13450) [000] d..3 29481.950660: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
33425          <idle>-0     (-----) [003] .n.1 29481.950665: cpu_idle: state=4294967295 cpu_id=3
33426          <idle>-0     (-----) [003] d..2 29481.950671: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
33427     kworker/0:0-13450 (13450) [000] d..2 29481.950672: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33428         rcuop/6-61    (   61) [002] d..2 29481.950674: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33429          <idle>-0     (-----) [000] d..1 29481.950679: cpu_idle: state=0 cpu_id=0
33430          <idle>-0     (-----) [002] d..1 29481.950680: cpu_idle: state=0 cpu_id=2
33431 irq/79-1436400.-24613 (24613) [001] d..2 29481.950682: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
33432          <idle>-0     (-----) [001] d..1 29481.950690: cpu_idle: state=0 cpu_id=1
33433            adbd-23485 ( 1007) [003] d.s2 29481.950696: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
33434            adbd-23485 ( 1007) [003] d.s3 29481.950704: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
33435          <idle>-0     (-----) [001] .n.1 29481.950709: cpu_idle: state=4294967295 cpu_id=1
33436          <idle>-0     (-----) [001] d..2 29481.950715: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
33437          <idle>-0     (-----) [004] .n.1 29481.950720: cpu_idle: state=4294967295 cpu_id=4
33438          <idle>-0     (-----) [004] d..2 29481.950727: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13717 next_prio=120
33439            adbd-23485 ( 1007) [003] d..2 29481.950733: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33440 irq/79-1436400.-24613 (24613) [001] d..2 29481.950734: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33441          <idle>-0     (-----) [003] d..1 29481.950740: cpu_idle: state=0 cpu_id=3
33442          <idle>-0     (-----) [001] d..1 29481.950740: cpu_idle: state=0 cpu_id=1
33443 NeuralNetworksT-13717 (13707) [004] d..1 29481.950763: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33444 NeuralNetworksT-13717 (13707) [004] d..2 29481.950769: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33445          <idle>-0     (-----) [006] .n.1 29481.950773: cpu_idle: state=4294967295 cpu_id=6
33446          <idle>-0     (-----) [006] d..2 29481.950776: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33447 NeuralNetworksT-13707 (13707) [006] d..1 29481.950783: sched_waking: comm=NeuralNetworksT pid=13718 prio=120 target_cpu=005
33448 NeuralNetworksT-13717 (13707) [004] d..2 29481.950784: sched_switch: prev_comm=NeuralNetworksT prev_pid=13717 prev_prio=120 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
33449          <idle>-0     (-----) [004] d..1 29481.950790: cpu_idle: state=2 cpu_id=4
33450 NeuralNetworksT-13707 (13707) [006] d..2 29481.950791: sched_wakeup: comm=NeuralNetworksT pid=13718 prio=120 target_cpu=005
33451 NeuralNetworksT-13707 (13707) [006] d..2 29481.950795: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33452          <idle>-0     (-----) [005] .n.1 29481.950796: cpu_idle: state=4294967295 cpu_id=5
33453          <idle>-0     (-----) [006] d..1 29481.950798: cpu_idle: state=0 cpu_id=6
33454          <idle>-0     (-----) [005] d..2 29481.950799: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13718 next_prio=120
33455          <idle>-0     (-----) [000] d.h3 29481.950827: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33456          <idle>-0     (-----) [000] dnh4 29481.950832: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33457 NeuralNetworksT-13718 (13707) [005] d..1 29481.950832: sched_waking: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33458          <idle>-0     (-----) [000] .n.1 29481.950836: cpu_idle: state=4294967295 cpu_id=0
33459 NeuralNetworksT-13718 (13707) [005] d..2 29481.950838: sched_wakeup: comm=NeuralNetworksT pid=13707 prio=120 target_cpu=006
33460          <idle>-0     (-----) [000] d..2 29481.950842: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33461          <idle>-0     (-----) [006] .n.1 29481.950842: cpu_idle: state=4294967295 cpu_id=6
33462          <idle>-0     (-----) [006] d..2 29481.950845: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NeuralNetworksT next_pid=13707 next_prio=120
33463   kworker/u17:1-18284 (18284) [000] d..2 29481.950849: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33464 NeuralNetworksT-13718 (13707) [005] d..2 29481.950849: sched_switch: prev_comm=NeuralNetworksT prev_pid=13718 prev_prio=120 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
33465   kworker/u17:1-18284 (18284) [000] d..3 29481.950854: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33466          <idle>-0     (-----) [005] d..1 29481.950854: cpu_idle: state=0 cpu_id=5
33467   kworker/u17:1-18284 (18284) [000] d..2 29481.950875: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33468     kworker/0:0-13450 (13450) [000] d..2 29481.950888: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
33469     kworker/0:0-13450 (13450) [000] d..3 29481.950911: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
33470     kworker/0:0-13450 (13450) [000] d..2 29481.950920: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
33471            adbd-23484 ( 1007) [000] d..2 29481.950943: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
33472            adbd-23484 ( 1007) [000] d..3 29481.950953: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
33473            adbd-23484 ( 1007) [000] d..2 29481.951009: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
33474            adbd-1007  ( 1007) [000] d..2 29481.951080: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33475          <idle>-0     (-----) [000] d..1 29481.951089: cpu_idle: state=0 cpu_id=0
33476          <idle>-0     (-----) [007] ...1 29481.951577: cpu_idle: state=4294967295 cpu_id=7
33477          <idle>-0     (-----) [007] d..1 29481.951578: cpu_idle: state=2 cpu_id=7
33478          <idle>-0     (-----) [001] ...1 29481.951853: cpu_idle: state=4294967295 cpu_id=1
33479          <idle>-0     (-----) [001] d..1 29481.951856: cpu_idle: state=2 cpu_id=1
33480          <idle>-0     (-----) [005] ...1 29481.951863: cpu_idle: state=4294967295 cpu_id=5
33481          <idle>-0     (-----) [005] d..1 29481.951864: cpu_idle: state=2 cpu_id=5
33482          <idle>-0     (-----) [000] ...1 29481.952367: cpu_idle: state=4294967295 cpu_id=0
33483          <idle>-0     (-----) [000] d..1 29481.952370: cpu_idle: state=2 cpu_id=0
33484 NeuralNetworksT-13707 (13707) [006] d..2 29481.956251: sched_waking: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=001
33485          <idle>-0     (-----) [000] dnh2 29481.956368: sched_wakeup: comm=HwBinder:13707_ pid=13708 prio=120 target_cpu=000
33486          <idle>-0     (-----) [000] .n.1 29481.956373: cpu_idle: state=4294967295 cpu_id=0
33487          <idle>-0     (-----) [000] d..2 29481.956382: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
33488 NeuralNetworksT-13707 (13707) [006] d..2 29481.956401: sched_switch: prev_comm=NeuralNetworksT prev_pid=13707 prev_prio=120 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
33489          <idle>-0     (-----) [006] d..1 29481.956408: cpu_idle: state=0 cpu_id=6
33490          <idle>-0     (-----) [006] ...1 29481.956612: cpu_idle: state=4294967295 cpu_id=6
33491          <idle>-0     (-----) [006] d..1 29481.956614: cpu_idle: state=2 cpu_id=6
33492          <idle>-0     (-----) [003] d.s2 29481.957072: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
33493          <idle>-0     (-----) [003] dns3 29481.957105: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
33494          <idle>-0     (-----) [002] d.s2 29481.957106: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
33495          <idle>-0     (-----) [003] .n.1 29481.957111: cpu_idle: state=4294967295 cpu_id=3
33496          <idle>-0     (-----) [003] d..2 29481.957117: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
33497          <idle>-0     (-----) [002] dns3 29481.957118: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
33498 HwBinder:13707_-13708 (13707) [000] d.H3 29481.957119: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33499       rcu_sched-8     (    8) [003] d..2 29481.957123: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=007
33500          <idle>-0     (-----) [002] .n.1 29481.957127: cpu_idle: state=4294967295 cpu_id=2
33501 HwBinder:13707_-13708 (13707) [000] d.H3 29481.957129: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
33502          <idle>-0     (-----) [002] d..2 29481.957134: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33503 HwBinder:13707_-13708 (13707) [000] dnH4 29481.957135: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33504 HwBinder:13707_-13708 (13707) [000] dns3 29481.957139: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33505     rcu_preempt-7     (    7) [002] d..2 29481.957154: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33506       rcu_sched-8     (    8) [003] d..3 29481.957155: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
33507          <idle>-0     (-----) [002] d..1 29481.957160: cpu_idle: state=0 cpu_id=2
33508 HwBinder:13707_-13708 (13707) [000] dns4 29481.957184: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
33509          <idle>-0     (-----) [002] .n.1 29481.957188: cpu_idle: state=4294967295 cpu_id=2
33510       rcu_sched-8     (    8) [003] d..2 29481.957194: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33511          <idle>-0     (-----) [002] d..2 29481.957194: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33512          <idle>-0     (-----) [003] d..1 29481.957200: cpu_idle: state=0 cpu_id=3
33513  kworker/u16:10-23868 (23868) [002] .... 29481.957239: clk_set_rate: l3_cluster0_vote_clk 576000000
33514  kworker/u16:10-23868 (23868) [002] .... 29481.957265: clk_set_rate: l3_cluster1_vote_clk 1401600000
33515  kworker/u16:10-23868 (23868) [002] .... 29481.957268: clk_set_rate: l3_clk 1401600000
33516 HwBinder:13707_-13708 (13707) [000] d..2 29481.957377: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=559 next_prio=49
33517         sugov:0-559   (  559) [000] d..2 29481.957387: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
33518         rcuos/2-30    (   30) [000] d..2 29481.957413: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
33519  kworker/u16:10-23868 (23868) [002] d..2 29481.957444: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33520          <idle>-0     (-----) [002] d..1 29481.957450: cpu_idle: state=0 cpu_id=2
33521          <idle>-0     (-----) [005] dnh2 29481.957759: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33522          <idle>-0     (-----) [005] .n.1 29481.957762: cpu_idle: state=4294967295 cpu_id=5
33523          <idle>-0     (-----) [005] d..2 29481.957766: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33524         sugov:4-560   (  560) [005] d..2 29481.957774: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33525          <idle>-0     (-----) [005] d..1 29481.957778: cpu_idle: state=2 cpu_id=5
33526 HwBinder:13707_-13708 (13707) [000] d..2 29481.960919: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33527 HwBinder:13707_-13708 (13707) [000] dn.3 29481.960929: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33528 HwBinder:13707_-13708 (13707) [000] d..2 29481.960935: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33529     kworker/0:0-13450 (13450) [000] d..2 29481.960946: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
33530 HwBinder:13707_-13708 (13707) [000] d..2 29481.960975: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
33531 HwBinder:13707_-13708 (13707) [000] dn.3 29481.960998: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33532 HwBinder:13707_-13708 (13707) [000] d..2 29481.961004: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
33533         rcuop/0-10    (   10) [000] d..2 29481.961012: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
33534 HwBinder:13707_-13708 (13707) [000] d..2 29481.961078: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33535 HwBinder:13707_-13708 (13707) [000] dn.3 29481.961084: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33536 HwBinder:13707_-13708 (13707) [000] d..2 29481.961088: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33537     kworker/0:0-13450 (13450) [000] d..2 29481.961124: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
33538 HwBinder:13707_-13708 (13707) [000] d..3 29481.961480: sched_waking: comm=sh pid=13705 prio=120 target_cpu=000
33539 HwBinder:13707_-13708 (13707) [000] dn.4 29481.961494: sched_wakeup: comm=sh pid=13705 prio=120 target_cpu=000
33540 HwBinder:13707_-13708 (13707) [000] d..2 29481.961500: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=R+ ==> next_comm=sh next_pid=13705 next_prio=120
33541              sh-13705 (13705) [000] d..2 29481.962335: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=001
33542              sh-13705 (13705) [000] d..3 29481.962363: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=002
33543          <idle>-0     (-----) [002] .n.1 29481.962368: cpu_idle: state=4294967295 cpu_id=2
33544          <idle>-0     (-----) [002] d..2 29481.962375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
33545 shell svc 13705-13706 ( 1007) [002] d..2 29481.962464: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33546          <idle>-0     (-----) [002] d..1 29481.962469: cpu_idle: state=0 cpu_id=2
33547              sh-13705 (13705) [000] d..4 29481.962856: sched_waking: comm=shell svc 13705 pid=13706 prio=120 target_cpu=002
33548              sh-13705 (13705) [000] d..5 29481.962866: sched_wakeup: comm=shell svc 13705 pid=13706 prio=120 target_cpu=002
33549          <idle>-0     (-----) [002] .n.1 29481.962870: cpu_idle: state=4294967295 cpu_id=2
33550              sh-13705 (13705) [000] d..2 29481.962872: sched_switch: prev_comm=sh prev_pid=13705 prev_prio=120 prev_state=x ==> next_comm=HwBinder:13707_ next_pid=13708 next_prio=120
33551          <idle>-0     (-----) [002] d..2 29481.962875: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13705 next_pid=13706 next_prio=120
33552 HwBinder:13707_-13708 (13707) [000] d..2 29481.962890: sched_switch: prev_comm=HwBinder:13707_ prev_pid=13708 prev_prio=120 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
33553          <idle>-0     (-----) [000] d..1 29481.962902: cpu_idle: state=0 cpu_id=0
33554 shell svc 13705-13706 ( 1007) [002] d..2 29481.962935: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
33555 shell svc 13705-13706 ( 1007) [002] d..3 29481.962948: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
33556 shell svc 13705-13706 ( 1007) [002] d..2 29481.963069: sched_switch: prev_comm=shell svc 13705 prev_pid=13706 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=1007 next_prio=120
33557            adbd-1007  ( 1007) [002] d..1 29481.963140: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
33558            adbd-1007  ( 1007) [002] d..2 29481.963163: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
33559            adbd-1007  ( 1007) [002] d..2 29481.963221: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
33560            adbd-23485 ( 1007) [002] d..2 29481.963296: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33561          <idle>-0     (-----) [002] d..1 29481.963302: cpu_idle: state=0 cpu_id=2
33562          <idle>-0     (-----) [000] d.h3 29481.963318: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33563          <idle>-0     (-----) [000] dnh4 29481.963329: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33564          <idle>-0     (-----) [000] .n.1 29481.963335: cpu_idle: state=4294967295 cpu_id=0
33565          <idle>-0     (-----) [000] d..2 29481.963342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33566   kworker/u17:1-18284 (18284) [000] d..2 29481.963359: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33567   kworker/u17:1-18284 (18284) [000] d..3 29481.963365: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33568   kworker/u17:1-18284 (18284) [000] d..2 29481.963384: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33569     kworker/0:0-13450 (13450) [000] d..2 29481.963393: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
33570     kworker/0:0-13450 (13450) [000] d..3 29481.963401: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
33571          <idle>-0     (-----) [002] .n.1 29481.963406: cpu_idle: state=4294967295 cpu_id=2
33572          <idle>-0     (-----) [002] d..2 29481.963411: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
33573     kworker/0:0-13450 (13450) [000] d..2 29481.963417: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33574          <idle>-0     (-----) [000] d..1 29481.963424: cpu_idle: state=0 cpu_id=0
33575            adbd-23485 ( 1007) [002] d..2 29481.963459: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33576          <idle>-0     (-----) [002] d..1 29481.963463: cpu_idle: state=0 cpu_id=2
33577          <idle>-0     (-----) [000] d.h3 29481.963480: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33578          <idle>-0     (-----) [000] dnh4 29481.963485: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33579          <idle>-0     (-----) [000] .n.1 29481.963489: cpu_idle: state=4294967295 cpu_id=0
33580          <idle>-0     (-----) [000] d..2 29481.963496: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33581   kworker/u17:1-18284 (18284) [000] d..2 29481.963503: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33582   kworker/u17:1-18284 (18284) [000] d..3 29481.963508: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33583   kworker/u17:1-18284 (18284) [000] d..2 29481.963524: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33584     kworker/0:0-13450 (13450) [000] d..2 29481.963529: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
33585     kworker/0:0-13450 (13450) [000] d..3 29481.963537: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
33586          <idle>-0     (-----) [002] .n.1 29481.963542: cpu_idle: state=4294967295 cpu_id=2
33587          <idle>-0     (-----) [002] d..2 29481.963547: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
33588     kworker/0:0-13450 (13450) [000] d..2 29481.963551: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33589          <idle>-0     (-----) [000] d..1 29481.963558: cpu_idle: state=0 cpu_id=0
33590            adbd-23485 ( 1007) [002] d..2 29481.963597: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33591          <idle>-0     (-----) [002] d..1 29481.963602: cpu_idle: state=0 cpu_id=2
33592          <idle>-0     (-----) [000] d.h3 29481.963621: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33593          <idle>-0     (-----) [000] dnh4 29481.963626: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33594          <idle>-0     (-----) [000] .n.1 29481.963630: cpu_idle: state=4294967295 cpu_id=0
33595          <idle>-0     (-----) [000] d..2 29481.963637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33596   kworker/u17:1-18284 (18284) [000] d..2 29481.963643: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33597   kworker/u17:1-18284 (18284) [000] d..3 29481.963648: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33598   kworker/u17:1-18284 (18284) [000] d.h3 29481.963672: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33599   kworker/u17:1-18284 (18284) [000] d.h4 29481.963674: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33600   kworker/u17:1-18284 (18284) [000] d..2 29481.963700: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33601     kworker/0:0-13450 (13450) [000] d..2 29481.963707: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
33602     kworker/0:0-13450 (13450) [000] d..3 29481.963715: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
33603          <idle>-0     (-----) [002] .n.1 29481.963720: cpu_idle: state=4294967295 cpu_id=2
33604          <idle>-0     (-----) [003] d.s2 29481.963739: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
33605          <idle>-0     (-----) [002] dns2 29481.963740: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
33606          <idle>-0     (-----) [003] dns3 29481.963747: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
33607     kworker/0:0-13450 (13450) [000] d..2 29481.963751: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
33608          <idle>-0     (-----) [002] dns3 29481.963766: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33609          <idle>-0     (-----) [003] .n.1 29481.963771: cpu_idle: state=4294967295 cpu_id=3
33610          <idle>-0     (-----) [002] d..2 29481.963776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
33611          <idle>-0     (-----) [003] d..2 29481.963779: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
33612     kworker/0:0-13450 (13450) [000] d..3 29481.963783: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
33613       rcu_sched-8     (    8) [003] d..2 29481.963789: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
33614            adbd-23485 ( 1007) [002] d..2 29481.963797: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33615          <idle>-0     (-----) [002] d..1 29481.963804: cpu_idle: state=0 cpu_id=2
33616            adbd-23484 ( 1007) [003] d..2 29481.963809: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
33617            adbd-23484 ( 1007) [003] d..3 29481.963819: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
33618     kworker/0:0-13450 (13450) [000] d..2 29481.963833: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33619     rcu_preempt-7     (    7) [000] d..2 29481.963837: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
33620     rcu_preempt-7     (    7) [000] d..3 29481.963858: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
33621     rcu_preempt-7     (    7) [000] d..2 29481.963865: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
33622            adbd-23484 ( 1007) [003] d..2 29481.963869: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
33623         rcuop/4-45    (   45) [000] d..2 29481.963870: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
33624         rcuop/4-45    (   45) [000] d..3 29481.963890: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
33625         rcuop/4-45    (   45) [000] d.h3 29481.963905: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33626            adbd-1007  ( 1007) [003] d..1 29481.963908: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
33627         rcuop/4-45    (   45) [000] dnh4 29481.963912: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33628            adbd-1007  ( 1007) [003] d..2 29481.963918: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
33629         rcuop/4-45    (   45) [000] d..2 29481.963919: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33630          <idle>-0     (-----) [002] .n.1 29481.963923: cpu_idle: state=4294967295 cpu_id=2
33631   kworker/u17:1-18284 (18284) [000] d..2 29481.963926: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33632          <idle>-0     (-----) [002] d..2 29481.963930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
33633   kworker/u17:1-18284 (18284) [000] d..3 29481.963931: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33634   kworker/u17:1-18284 (18284) [000] d..2 29481.963946: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
33635            adbd-1007  ( 1007) [003] d..2 29481.963952: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33636          <idle>-0     (-----) [003] d..1 29481.963960: cpu_idle: state=0 cpu_id=3
33637         rcuop/5-53    (   53) [000] d..2 29481.963962: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
33638         rcuop/4-45    (   45) [000] d..2 29481.963967: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33639     kworker/0:0-13450 (13450) [000] d..2 29481.963974: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
33640            adbd-23485 ( 1007) [002] d..2 29481.963976: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33641          <idle>-0     (-----) [002] d..1 29481.963983: cpu_idle: state=0 cpu_id=2
33642     kworker/0:0-13450 (13450) [000] d..3 29481.963993: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
33643          <idle>-0     (-----) [002] .n.1 29481.963998: cpu_idle: state=4294967295 cpu_id=2
33644          <idle>-0     (-----) [002] d..2 29481.964004: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
33645     kworker/0:0-13450 (13450) [000] d.h3 29481.964009: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
33646            adbd-23484 ( 1007) [002] d..2 29481.964016: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
33647     kworker/0:0-13450 (13450) [000] d.h4 29481.964033: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
33648            adbd-23484 ( 1007) [002] dn.3 29481.964037: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
33649            adbd-23484 ( 1007) [002] d..2 29481.964046: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
33650   kworker/u17:1-18284 (18284) [002] d..2 29481.964055: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
33651     kworker/0:0-13450 (13450) [000] d..2 29481.964065: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
33652   kworker/u17:1-18284 (18284) [002] d..3 29481.964069: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
33653   kworker/u17:1-18284 (18284) [002] d..2 29481.964085: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
33654     kworker/2:2-13636 (13636) [002] d..2 29481.964092: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
33655     kworker/2:2-13636 (13636) [002] d..3 29481.964101: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
33656     kworker/2:2-13636 (13636) [002] d..2 29481.964110: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
33657            adbd-23484 ( 1007) [002] d..2 29481.964153: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
33658            adbd-1007  ( 1007) [000] d..2 29481.964159: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33659          <idle>-0     (-----) [000] d..1 29481.964167: cpu_idle: state=0 cpu_id=0
33660            adbd-23485 ( 1007) [002] d..2 29481.964169: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33661          <idle>-0     (-----) [002] d..1 29481.964177: cpu_idle: state=0 cpu_id=2
33662          <idle>-0     (-----) [002] ...1 29481.965288: cpu_idle: state=4294967295 cpu_id=2
33663          <idle>-0     (-----) [002] d..1 29481.965291: cpu_idle: state=2 cpu_id=2
33664          <idle>-0     (-----) [003] d.s2 29481.970404: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
33665          <idle>-0     (-----) [000] d.s2 29481.970407: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33666          <idle>-0     (-----) [003] dns3 29481.970414: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
33667          <idle>-0     (-----) [003] dns3 29481.970416: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
33668          <idle>-0     (-----) [000] dns3 29481.970418: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33669          <idle>-0     (-----) [000] .n.1 29481.970427: cpu_idle: state=4294967295 cpu_id=0
33670          <idle>-0     (-----) [000] d..2 29481.970433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33671          <idle>-0     (-----) [003] dns4 29481.970434: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33672          <idle>-0     (-----) [003] .n.1 29481.970442: cpu_idle: state=4294967295 cpu_id=3
33673          <idle>-0     (-----) [003] d..2 29481.970455: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33674     rcu_preempt-7     (    7) [000] d..2 29481.970456: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
33675       rcu_sched-8     (    8) [000] d..2 29481.970460: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=002
33676       rcu_sched-8     (    8) [000] d..3 29481.970484: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=000
33677       rcu_sched-8     (    8) [000] d..2 29481.970497: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/6 next_pid=62 next_prio=120
33678         rcuos/6-62    (   62) [000] d..2 29481.970521: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33679          <idle>-0     (-----) [000] d..1 29481.970528: cpu_idle: state=2 cpu_id=0
33680  kworker/u16:10-23868 (23868) [003] d..2 29481.970640: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
33681          <idle>-0     (-----) [003] d.s3 29481.970675: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33682          <idle>-0     (-----) [003] d.s4 29481.970681: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33683          <idle>-0     (-----) [003] dns4 29481.970684: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33684          <idle>-0     (-----) [003] d..2 29481.970693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33685  kworker/u16:10-23868 (23868) [003] .... 29481.970713: clk_set_rate: l3_cluster1_vote_clk 300000000
33686  kworker/u16:10-23868 (23868) [003] .... 29481.970716: clk_set_rate: l3_clk 576000000
33687  kworker/u16:10-23868 (23868) [003] .... 29481.970764: clk_set_rate: l3_cluster0_vote_clk 652800000
33688  kworker/u16:10-23868 (23868) [003] .... 29481.970766: clk_set_rate: l3_clk 652800000
33689  kworker/u16:10-23868 (23868) [003] d..2 29481.970791: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33690          <idle>-0     (-----) [003] d..1 29481.970802: cpu_idle: state=0 cpu_id=3
33691          <idle>-0     (-----) [003] d..2 29481.976804: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
33692          <idle>-0     (-----) [003] dn.3 29481.976816: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
33693          <idle>-0     (-----) [003] .n.1 29481.976819: cpu_idle: state=4294967295 cpu_id=3
33694          <idle>-0     (-----) [003] d..2 29481.976827: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
33695     ksoftirqd/3-34    (   34) [003] d..2 29481.976847: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33696          <idle>-0     (-----) [003] d..1 29481.976853: cpu_idle: state=2 cpu_id=3
33697          <idle>-0     (-----) [000] d.H3 29481.977329: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33698          <idle>-0     (-----) [000] d.H3 29481.977343: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
33699          <idle>-0     (-----) [000] dnH4 29481.977349: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33700          <idle>-0     (-----) [000] dns2 29481.977354: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
33701          <idle>-0     (-----) [000] dns3 29481.977365: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
33702          <idle>-0     (-----) [000] dns2 29481.977366: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33703          <idle>-0     (-----) [000] dns3 29481.977373: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33704          <idle>-0     (-----) [000] .n.1 29481.977381: cpu_idle: state=4294967295 cpu_id=0
33705          <idle>-0     (-----) [000] d..2 29481.977390: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33706         sugov:0-559   (  559) [000] d..2 29481.977399: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
33707       rcu_sched-8     (    8) [000] d..2 29481.977405: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
33708       rcu_sched-8     (    8) [000] d..3 29481.977415: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
33709       rcu_sched-8     (    8) [000] d..2 29481.977423: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
33710         rcuos/2-30    (   30) [000] d..2 29481.977433: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33711     rcu_preempt-7     (    7) [000] d..2 29481.977437: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33712     rcu_preempt-7     (    7) [000] d..3 29481.977446: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33713     rcu_preempt-7     (    7) [000] d..2 29481.977449: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
33714     rcu_preempt-7     (    7) [000] d..3 29481.977469: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
33715     rcu_preempt-7     (    7) [000] d..2 29481.977471: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
33716     rcu_preempt-7     (    7) [000] d..3 29481.977490: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
33717     rcu_preempt-7     (    7) [000] d..2 29481.977497: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
33718         rcuop/0-10    (   10) [000] d..2 29481.977506: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
33719         rcuop/6-61    (   61) [000] d..2 29481.977510: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
33720         rcuop/6-61    (   61) [000] d..3 29481.977521: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
33721         rcuop/6-61    (   61) [000] d..2 29481.977533: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
33722         rcuop/7-69    (   69) [000] d..2 29481.977549: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
33723         rcuop/2-29    (   29) [000] d..2 29481.977554: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
33724         rcuop/2-29    (   29) [000] d..3 29481.977565: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
33725         rcuop/2-29    (   29) [000] d..2 29481.977584: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
33726         rcuop/3-37    (   37) [000] d..2 29481.977608: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33727          <idle>-0     (-----) [000] d..1 29481.977617: cpu_idle: state=2 cpu_id=0
33728          <idle>-0     (-----) [005] dnh2 29481.978000: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33729          <idle>-0     (-----) [005] .n.1 29481.978005: cpu_idle: state=4294967295 cpu_id=5
33730          <idle>-0     (-----) [005] d..2 29481.978011: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33731         sugov:4-560   (  560) [005] d..2 29481.978020: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33732          <idle>-0     (-----) [005] d..1 29481.978026: cpu_idle: state=2 cpu_id=5
33733          <idle>-0     (-----) [000] d.s2 29481.983935: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33734          <idle>-0     (-----) [000] dns3 29481.983948: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33735          <idle>-0     (-----) [000] dns2 29481.983950: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
33736          <idle>-0     (-----) [000] dns3 29481.983956: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
33737          <idle>-0     (-----) [000] dns3 29481.983959: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33738          <idle>-0     (-----) [000] dns4 29481.983979: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33739          <idle>-0     (-----) [000] .n.1 29481.983992: cpu_idle: state=4294967295 cpu_id=0
33740          <idle>-0     (-----) [000] d..2 29481.984001: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
33741       rcu_sched-8     (    8) [000] d..2 29481.984007: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=000
33742       rcu_sched-8     (    8) [000] d..3 29481.984017: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=000
33743       rcu_sched-8     (    8) [000] d..2 29481.984023: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/6 next_pid=62 next_prio=120
33744         rcuos/6-62    (   62) [000] d..2 29481.984035: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33745     rcu_preempt-7     (    7) [000] d..2 29481.984039: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
33746     rcu_preempt-7     (    7) [000] d..3 29481.984048: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
33747     rcu_preempt-7     (    7) [000] d..2 29481.984055: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
33748         rcuop/4-45    (   45) [000] d..2 29481.984057: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
33749         rcuop/4-45    (   45) [000] d..3 29481.984066: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
33750         rcuop/4-45    (   45) [000] d..2 29481.984077: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
33751         rcuop/5-53    (   53) [000] d..2 29481.984087: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33752  kworker/u16:10-23868 (23868) [000] .... 29481.984104: clk_set_rate: l3_cluster0_vote_clk 300000000
33753  kworker/u16:10-23868 (23868) [000] .... 29481.984108: clk_set_rate: l3_clk 300000000
33754  kworker/u16:10-23868 (23868) [000] d..2 29481.984312: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
33755          <idle>-0     (-----) [000] d..1 29481.984328: cpu_idle: state=2 cpu_id=0
33756          <idle>-0     (-----) [003] d.s3 29481.984480: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33757          <idle>-0     (-----) [003] d.s4 29481.984493: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33758          <idle>-0     (-----) [003] d.s4 29481.984504: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33759          <idle>-0     (-----) [003] ...1 29481.984515: cpu_idle: state=4294967295 cpu_id=3
33760          <idle>-0     (-----) [003] d..1 29481.984523: cpu_idle: state=2 cpu_id=3
33761          <idle>-0     (-----) [000] .n.1 29481.984641: cpu_idle: state=4294967295 cpu_id=0
33762          <idle>-0     (-----) [000] d..2 29481.984660: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33763  kworker/u16:10-23868 (23868) [000] d..2 29481.984696: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33764          <idle>-0     (-----) [000] d..1 29481.984706: cpu_idle: state=0 cpu_id=0
33765          <idle>-0     (-----) [000] d.s2 29481.990439: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33766          <idle>-0     (-----) [000] dns3 29481.990454: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33767          <idle>-0     (-----) [000] dns3 29481.990460: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33768          <idle>-0     (-----) [000] dns4 29481.990468: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33769          <idle>-0     (-----) [000] .n.1 29481.990478: cpu_idle: state=4294967295 cpu_id=0
33770          <idle>-0     (-----) [000] d..2 29481.990487: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33771     rcu_preempt-7     (    7) [000] d..2 29481.990495: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
33772     rcu_preempt-7     (    7) [000] d..3 29481.990506: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
33773     rcu_preempt-7     (    7) [000] d..2 29481.990507: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
33774     rcu_preempt-7     (    7) [000] d..3 29481.990515: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
33775     rcu_preempt-7     (    7) [000] d..2 29481.990516: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33776     rcu_preempt-7     (    7) [000] d..3 29481.990523: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33777     rcu_preempt-7     (    7) [000] d..2 29481.990530: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
33778         rcuop/0-10    (   10) [000] d..2 29481.990802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33779         rcuop/0-10    (   10) [000] d..3 29481.990815: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33780         rcuop/0-10    (   10) [000] d..2 29481.990824: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
33781         rcuop/6-61    (   61) [000] d..2 29481.990853: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
33782         rcuop/2-29    (   29) [000] d..2 29481.990891: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33783     rcu_preempt-7     (    7) [000] d..2 29481.990900: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33784     kworker/0:0-13450 (13450) [000] d..2 29481.990931: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33785          <idle>-0     (-----) [000] d..1 29481.990945: cpu_idle: state=0 cpu_id=0
33786          <idle>-0     (-----) [000] d.s2 29481.997127: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33787          <idle>-0     (-----) [000] dns3 29481.997142: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33788          <idle>-0     (-----) [000] dns3 29481.997147: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33789          <idle>-0     (-----) [000] dns4 29481.997155: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33790          <idle>-0     (-----) [000] .n.1 29481.997170: cpu_idle: state=4294967295 cpu_id=0
33791          <idle>-0     (-----) [000] d..2 29481.997181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33792     rcu_preempt-7     (    7) [000] d..2 29481.997188: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33793     rcu_preempt-7     (    7) [000] d..3 29481.997198: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33794     rcu_preempt-7     (    7) [000] d..2 29481.997206: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
33795         rcuop/0-10    (   10) [000] d..2 29481.997218: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33796         rcuop/0-10    (   10) [000] d..3 29481.997226: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33797         rcuop/0-10    (   10) [000] d..2 29481.997232: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33798     rcu_preempt-7     (    7) [000] d..2 29481.997240: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33799  kworker/u16:10-23868 (23868) [000] d..2 29481.997350: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33800          <idle>-0     (-----) [000] d..1 29481.997364: cpu_idle: state=0 cpu_id=0
33801          <idle>-0     (-----) [000] d.s2 29482.003746: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33802          <idle>-0     (-----) [000] dns3 29482.003760: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
33803          <idle>-0     (-----) [000] dns3 29482.003763: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33804          <idle>-0     (-----) [000] dns4 29482.003771: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33805          <idle>-0     (-----) [000] .n.1 29482.003778: cpu_idle: state=4294967295 cpu_id=0
33806          <idle>-0     (-----) [000] d..2 29482.003788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33807     rcu_preempt-7     (    7) [000] d..2 29482.003794: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33808     rcu_preempt-7     (    7) [000] d..3 29482.003803: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
33809     rcu_preempt-7     (    7) [000] d..2 29482.003810: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
33810         rcuop/0-10    (   10) [000] d..2 29482.003834: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33811  kworker/u16:10-23868 (23868) [000] d..2 29482.003989: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
33812          <idle>-0     (-----) [000] d..1 29482.004003: cpu_idle: state=0 cpu_id=0
33813          <idle>-0     (-----) [003] d.s3 29482.004162: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33814          <idle>-0     (-----) [003] d.s4 29482.004202: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33815          <idle>-0     (-----) [003] dns4 29482.004209: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33816          <idle>-0     (-----) [003] .n.1 29482.004217: cpu_idle: state=4294967295 cpu_id=3
33817          <idle>-0     (-----) [003] d..2 29482.004235: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33818  kworker/u16:10-23868 (23868) [003] d..2 29482.004278: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33819          <idle>-0     (-----) [003] d..1 29482.004293: cpu_idle: state=2 cpu_id=3
33820          <idle>-0     (-----) [000] d..2 29482.010008: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33821          <idle>-0     (-----) [000] dn.3 29482.010019: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33822          <idle>-0     (-----) [000] .n.1 29482.010022: cpu_idle: state=4294967295 cpu_id=0
33823          <idle>-0     (-----) [000] d..2 29482.010032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
33824     ksoftirqd/0-3     (    3) [000] d.s2 29482.010041: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33825     ksoftirqd/0-3     (    3) [000] d.s3 29482.010069: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33826     ksoftirqd/0-3     (    3) [000] d..2 29482.010079: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33827  kworker/u16:10-23868 (23868) [000] d..2 29482.010142: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33828          <idle>-0     (-----) [000] d..1 29482.010153: cpu_idle: state=2 cpu_id=0
33829          <idle>-0     (-----) [002] d..2 29482.020037: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
33830          <idle>-0     (-----) [002] dn.3 29482.020055: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
33831          <idle>-0     (-----) [002] dnH3 29482.020109: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33832          <idle>-0     (-----) [002] dnH3 29482.020120: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
33833          <idle>-0     (-----) [002] dnH4 29482.020132: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33834          <idle>-0     (-----) [002] dns3 29482.020142: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33835          <idle>-0     (-----) [002] dns4 29482.020155: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33836          <idle>-0     (-----) [002] .n.1 29482.020164: cpu_idle: state=4294967295 cpu_id=2
33837          <idle>-0     (-----) [002] d..2 29482.020178: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
33838     ksoftirqd/2-26    (   26) [002] d..2 29482.020207: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33839          <idle>-0     (-----) [002] d..1 29482.020219: cpu_idle: state=0 cpu_id=2
33840          <idle>-0     (-----) [000] .n.1 29482.020277: cpu_idle: state=4294967295 cpu_id=0
33841          <idle>-0     (-----) [000] d..2 29482.020305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33842         sugov:0-559   (  559) [000] .... 29482.020342: clk_set_rate: pwrcl_clk 652800000
33843         sugov:0-559   (  559) [000] .... 29482.020453: clk_set_rate: cpu3_pwrcl_clk 1766400000
33844         sugov:0-559   (  559) [000] .... 29482.020463: clk_set_rate: cpu2_pwrcl_clk 1766400000
33845         sugov:0-559   (  559) [000] .... 29482.020472: clk_set_rate: cpu1_pwrcl_clk 1766400000
33846         sugov:0-559   (  559) [000] .... 29482.020479: clk_set_rate: cpu0_pwrcl_clk 652800000
33847         sugov:0-559   (  559) [000] .... 29482.020646: cpu_frequency: state=652800 cpu_id=0
33848          <idle>-0     (-----) [003] ...1 29482.020647: cpu_idle: state=4294967295 cpu_id=3
33849          <idle>-0     (-----) [003] d..1 29482.020663: cpu_idle: state=2 cpu_id=3
33850         sugov:0-559   (  559) [000] .... 29482.020682: cpu_frequency: state=652800 cpu_id=1
33851         sugov:0-559   (  559) [000] .... 29482.020688: cpu_frequency: state=652800 cpu_id=2
33852         sugov:0-559   (  559) [000] .... 29482.020693: cpu_frequency: state=652800 cpu_id=3
33853         sugov:0-559   (  559) [000] d..2 29482.020723: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33854          <idle>-0     (-----) [005] dnh2 29482.020806: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33855          <idle>-0     (-----) [005] .n.1 29482.020812: cpu_idle: state=4294967295 cpu_id=5
33856          <idle>-0     (-----) [005] d..2 29482.020820: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33857         sugov:4-560   (  560) [005] .... 29482.020841: clk_set_rate: perfcl_clk 825600000
33858         sugov:4-560   (  560) [005] .... 29482.020843: clk_set_rate: cpu7_perfcl_clk 2803200000
33859         sugov:4-560   (  560) [005] .... 29482.020849: clk_set_rate: cpu6_perfcl_clk 2803200000
33860         sugov:4-560   (  560) [005] .... 29482.020855: clk_set_rate: cpu5_perfcl_clk 2803200000
33861         sugov:4-560   (  560) [005] .... 29482.020861: clk_set_rate: cpu4_perfcl_clk 825600000
33862  kworker/u16:10-23868 (23868) [000] d..2 29482.020863: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33863         sugov:4-560   (  560) [005] .... 29482.020866: cpu_frequency: state=825600 cpu_id=4
33864          <idle>-0     (-----) [000] d..1 29482.020889: cpu_idle: state=0 cpu_id=0
33865         sugov:4-560   (  560) [005] d..2 29482.021040: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
33866          <idle>-0     (-----) [005] d..1 29482.021053: cpu_idle: state=2 cpu_id=5
33867          <idle>-0     (-----) [003] d.s3 29482.021248: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33868          <idle>-0     (-----) [003] ...1 29482.021288: cpu_idle: state=4294967295 cpu_id=3
33869          <idle>-0     (-----) [003] d..1 29482.021303: cpu_idle: state=0 cpu_id=3
33870          <idle>-0     (-----) [002] ...1 29482.021345: cpu_idle: state=4294967295 cpu_id=2
33871          <idle>-0     (-----) [002] d..1 29482.021353: cpu_idle: state=2 cpu_id=2
33872          <idle>-0     (-----) [005] dnh2 29482.021993: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33873          <idle>-0     (-----) [005] .n.1 29482.022002: cpu_idle: state=4294967295 cpu_id=5
33874          <idle>-0     (-----) [005] d..2 29482.022014: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33875         sugov:4-560   (  560) [005] .... 29482.022026: cpu_frequency: state=825600 cpu_id=5
33876         sugov:4-560   (  560) [005] .... 29482.022032: cpu_frequency: state=825600 cpu_id=6
33877         sugov:4-560   (  560) [005] .... 29482.022035: cpu_frequency: state=825600 cpu_id=7
33878         sugov:4-560   (  560) [005] d..2 29482.022058: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33879          <idle>-0     (-----) [005] d..1 29482.022069: cpu_idle: state=2 cpu_id=5
33880          <idle>-0     (-----) [000] d..2 29482.026902: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33881          <idle>-0     (-----) [000] dn.3 29482.026919: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33882          <idle>-0     (-----) [000] .n.1 29482.026925: cpu_idle: state=4294967295 cpu_id=0
33883          <idle>-0     (-----) [000] d..2 29482.026942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
33884     ksoftirqd/0-3     (    3) [000] d..2 29482.026981: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33885          <idle>-0     (-----) [000] d..1 29482.026994: cpu_idle: state=2 cpu_id=0
33886          <idle>-0     (-----) [003] d..2 29482.027310: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
33887          <idle>-0     (-----) [003] dn.3 29482.027329: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
33888          <idle>-0     (-----) [003] .n.1 29482.027335: cpu_idle: state=4294967295 cpu_id=3
33889          <idle>-0     (-----) [003] d..2 29482.027355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
33890     ksoftirqd/3-34    (   34) [003] d..2 29482.027405: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33891          <idle>-0     (-----) [003] d..1 29482.027419: cpu_idle: state=2 cpu_id=3
33892          <idle>-0     (-----) [000] d.h2 29482.034824: sched_waking: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
33893          <idle>-0     (-----) [000] dnh3 29482.034867: sched_wakeup: comm=CCodecWatchdog pid=25015 prio=120 target_cpu=000
33894          <idle>-0     (-----) [000] .n.1 29482.034884: cpu_idle: state=4294967295 cpu_id=0
33895          <idle>-0     (-----) [000] d..2 29482.034906: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25015 next_prio=120
33896<...>-25015 ( 24655) [000] d..2 29482.035076: sched_switch: prev_comm=CCodecWatchdog prev_pid=25015 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33897          <idle>-0     (-----) [000] d..2 29482.035084: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33898          <idle>-0     (-----) [000] dn.3 29482.035095: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33899          <idle>-0     (-----) [000] d..2 29482.035106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
33900     ksoftirqd/0-3     (    3) [000] d.s2 29482.035117: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33901     ksoftirqd/0-3     (    3) [000] d.s3 29482.035138: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33902     ksoftirqd/0-3     (    3) [000] d..2 29482.035156: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33903  kworker/u16:10-23868 (23868) [000] d..2 29482.035268: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33904          <idle>-0     (-----) [000] d..1 29482.035289: cpu_idle: state=0 cpu_id=0
33905          <idle>-0     (-----) [000] d.h2 29482.035936: sched_waking: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
33906          <idle>-0     (-----) [000] dnh3 29482.035965: sched_wakeup: comm=CCodecWatchdog pid=24367 prio=120 target_cpu=000
33907          <idle>-0     (-----) [000] .n.1 29482.035978: cpu_idle: state=4294967295 cpu_id=0
33908          <idle>-0     (-----) [000] d..2 29482.035995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24367 next_prio=120
33909<...>-24367 ( 24151) [000] d..2 29482.036124: sched_switch: prev_comm=CCodecWatchdog prev_pid=24367 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33910          <idle>-0     (-----) [000] d..1 29482.036145: cpu_idle: state=2 cpu_id=0
33911          <idle>-0     (-----) [000] ...1 29482.080402: cpu_idle: state=4294967295 cpu_id=0
33912          <idle>-0     (-----) [002] d.H3 29482.080410: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33913          <idle>-0     (-----) [000] d..1 29482.080434: cpu_idle: state=2 cpu_id=0
33914          <idle>-0     (-----) [002] d.H3 29482.080454: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
33915          <idle>-0     (-----) [002] d.H4 29482.080487: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
33916          <idle>-0     (-----) [002] d.s3 29482.080509: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
33917          <idle>-0     (-----) [002] dns4 29482.080538: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
33918          <idle>-0     (-----) [002] dns3 29482.080550: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33919          <idle>-0     (-----) [002] dns4 29482.080634: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
33920          <idle>-0     (-----) [002] .n.1 29482.080700: cpu_idle: state=4294967295 cpu_id=2
33921          <idle>-0     (-----) [000] .n.1 29482.080728: cpu_idle: state=4294967295 cpu_id=0
33922          <idle>-0     (-----) [002] d..2 29482.080744: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
33923          <idle>-0     (-----) [000] d..2 29482.080765: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33924     kworker/2:2-13636 (13636) [002] d..2 29482.080827: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33925         sugov:0-559   (  559) [000] d..2 29482.080855: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33926          <idle>-0     (-----) [000] d..1 29482.080918: cpu_idle: state=2 cpu_id=0
33927          <idle>-0     (-----) [005] dnh2 29482.081173: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33928          <idle>-0     (-----) [005] .n.1 29482.081184: cpu_idle: state=4294967295 cpu_id=5
33929          <idle>-0     (-----) [005] d..2 29482.081198: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33930         sugov:4-560   (  560) [005] d..2 29482.081224: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33931          <idle>-0     (-----) [005] d..1 29482.081236: cpu_idle: state=2 cpu_id=5
33932  kworker/u16:10-23868 (23868) [002] d..2 29482.081323: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
33933          <idle>-0     (-----) [002] d..2 29482.081333: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
33934          <idle>-0     (-----) [002] dn.3 29482.081352: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
33935          <idle>-0     (-----) [002] d..2 29482.081367: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
33936     ksoftirqd/2-26    (   26) [002] d..2 29482.081400: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33937          <idle>-0     (-----) [002] d..1 29482.081421: cpu_idle: state=2 cpu_id=2
33938          <idle>-0     (-----) [003] d.s3 29482.081640: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
33939          <idle>-0     (-----) [003] d.s4 29482.081701: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33940          <idle>-0     (-----) [003] dns4 29482.081713: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33941          <idle>-0     (-----) [003] .n.1 29482.081728: cpu_idle: state=4294967295 cpu_id=3
33942          <idle>-0     (-----) [003] d..2 29482.081754: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33943  kworker/u16:10-23868 (23868) [003] d..2 29482.082011: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
33944          <idle>-0     (-----) [003] d.s4 29482.082057: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33945          <idle>-0     (-----) [003] d.s5 29482.082069: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33946          <idle>-0     (-----) [003] dns5 29482.082076: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33947          <idle>-0     (-----) [003] d..2 29482.082092: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33948  kworker/u16:10-23868 (23868) [003] d..2 29482.082130: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33949          <idle>-0     (-----) [003] d..1 29482.082153: cpu_idle: state=2 cpu_id=3
33950          <idle>-0     (-----) [003] d.h2 29482.242750: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
33951          <idle>-0     (-----) [003] dnh3 29482.242837: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
33952          <idle>-0     (-----) [000] d..2 29482.242850: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33953          <idle>-0     (-----) [000] dn.3 29482.242900: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
33954          <idle>-0     (-----) [000] .n.1 29482.243004: cpu_idle: state=4294967295 cpu_id=0
33955          <idle>-0     (-----) [003] dnh3 29482.243035: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33956          <idle>-0     (-----) [003] dnh3 29482.243057: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
33957          <idle>-0     (-----) [000] d..2 29482.243058: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
33958     ksoftirqd/0-3     (    3) [000] d.s2 29482.243092: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33959          <idle>-0     (-----) [003] dnh4 29482.243101: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
33960          <idle>-0     (-----) [003] .n.1 29482.243113: cpu_idle: state=4294967295 cpu_id=3
33961          <idle>-0     (-----) [003] d..2 29482.243140: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
33962     ksoftirqd/0-3     (    3) [000] d.s3 29482.243185: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33963     ksoftirqd/0-3     (    3) [000] d.s2 29482.243201: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33964     ksoftirqd/0-3     (    3) [000] d.s3 29482.243218: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
33965     ksoftirqd/0-3     (    3) [000] d..2 29482.243247: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
33966          <idle>-0     (-----) [002] .n.1 29482.243277: cpu_idle: state=4294967295 cpu_id=2
33967          <idle>-0     (-----) [002] d..2 29482.243313: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
33968 bluetooth@1.0-s-24508 (  759) [003] d..2 29482.243339: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33969     kworker/0:0-13450 (13450) [000] d..2 29482.243342: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33970          <idle>-0     (-----) [003] d..1 29482.243373: cpu_idle: state=2 cpu_id=3
33971         sugov:0-559   (  559) [002] d..2 29482.243376: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33972          <idle>-0     (-----) [002] d..1 29482.243429: cpu_idle: state=2 cpu_id=2
33973          <idle>-0     (-----) [002] ...1 29482.243714: cpu_idle: state=4294967295 cpu_id=2
33974          <idle>-0     (-----) [002] d..1 29482.243725: cpu_idle: state=2 cpu_id=2
33975          <idle>-0     (-----) [005] dnh2 29482.243784: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
33976          <idle>-0     (-----) [005] .n.1 29482.243796: cpu_idle: state=4294967295 cpu_id=5
33977          <idle>-0     (-----) [005] d..2 29482.243810: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
33978         sugov:4-560   (  560) [005] d..2 29482.243841: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33979          <idle>-0     (-----) [005] d..1 29482.243871: cpu_idle: state=2 cpu_id=5
33980          <idle>-0     (-----) [005] ...1 29482.244789: cpu_idle: state=4294967295 cpu_id=5
33981          <idle>-0     (-----) [005] d..1 29482.244796: cpu_idle: state=2 cpu_id=5
33982  kworker/u16:10-23868 (23868) [000] d..2 29482.245164: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
33983          <idle>-0     (-----) [000] d..1 29482.245190: cpu_idle: state=2 cpu_id=0
33984          <idle>-0     (-----) [003] d.s3 29482.245356: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
33985          <idle>-0     (-----) [003] d.s4 29482.245413: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
33986          <idle>-0     (-----) [003] dns4 29482.245424: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33987          <idle>-0     (-----) [003] .n.1 29482.245437: cpu_idle: state=4294967295 cpu_id=3
33988          <idle>-0     (-----) [003] d..2 29482.245458: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
33989  kworker/u16:10-23868 (23868) [003] d..2 29482.245569: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33990          <idle>-0     (-----) [003] d..1 29482.245587: cpu_idle: state=2 cpu_id=3
33991          <idle>-0     (-----) [000] ...1 29482.507070: cpu_idle: state=4294967295 cpu_id=0
33992          <idle>-0     (-----) [002] d.H3 29482.507078: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
33993          <idle>-0     (-----) [000] d..1 29482.507102: cpu_idle: state=2 cpu_id=0
33994          <idle>-0     (-----) [002] d.H3 29482.507123: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
33995          <idle>-0     (-----) [002] dnH4 29482.507151: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
33996          <idle>-0     (-----) [002] dns3 29482.507175: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
33997          <idle>-0     (-----) [002] dns4 29482.507205: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
33998          <idle>-0     (-----) [002] dns3 29482.507217: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
33999          <idle>-0     (-----) [002] dns4 29482.507316: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34000          <idle>-0     (-----) [002] dns3 29482.507338: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34001          <idle>-0     (-----) [002] dns4 29482.507357: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34002          <idle>-0     (-----) [002] .n.1 29482.507414: cpu_idle: state=4294967295 cpu_id=2
34003          <idle>-0     (-----) [002] d..2 29482.507449: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34004         sugov:0-559   (  559) [002] d..2 29482.507488: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
34005    kworker/2:1H-850   (  850) [002] d..2 29482.507519: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34006     kworker/2:2-13636 (13636) [002] d..2 29482.507590: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34007     kworker/2:2-13636 (13636) [002] d..3 29482.507616: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34008     kworker/2:2-13636 (13636) [002] d..2 29482.507625: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34009     kworker/2:2-13636 (13636) [002] d..3 29482.507646: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34010     kworker/2:2-13636 (13636) [002] d..2 29482.507656: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
34011     kworker/2:2-13636 (13636) [002] d..3 29482.507673: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
34012     kworker/2:2-13636 (13636) [002] d..2 29482.507680: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
34013     kworker/2:2-13636 (13636) [002] d..2 29482.507697: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
34014     kworker/2:2-13636 (13636) [002] d..2 29482.507708: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
34015     kworker/2:2-13636 (13636) [002] d..2 29482.507723: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
34016          <idle>-0     (-----) [000] .n.1 29482.507778: cpu_idle: state=4294967295 cpu_id=0
34017     kworker/2:2-13636 (13636) [002] d..2 29482.507790: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34018          <idle>-0     (-----) [000] d..2 29482.507820: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34019          <idle>-0     (-----) [001] .n.1 29482.507839: cpu_idle: state=4294967295 cpu_id=1
34020          <idle>-0     (-----) [003] .n.1 29482.507875: cpu_idle: state=4294967295 cpu_id=3
34021          <idle>-0     (-----) [001] d..2 29482.507883: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34022          <idle>-0     (-----) [003] d..2 29482.507915: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
34023     kworker/0:0-13450 (13450) [000] d..2 29482.507931: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34024          <idle>-0     (-----) [005] dnh2 29482.507938: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
34025          <idle>-0     (-----) [005] dnh2 29482.507946: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
34026          <idle>-0     (-----) [000] d..1 29482.507952: cpu_idle: state=2 cpu_id=0
34027          <idle>-0     (-----) [005] .n.1 29482.507954: cpu_idle: state=4294967295 cpu_id=5
34028          <idle>-0     (-----) [005] d..2 29482.507967: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34029     kworker/1:1-13678 (13678) [001] d..2 29482.507971: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34030          <idle>-0     (-----) [007] dnh2 29482.507973: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
34031         sugov:4-560   (  560) [005] d..2 29482.507984: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
34032          <idle>-0     (-----) [007] .n.1 29482.507984: cpu_idle: state=4294967295 cpu_id=7
34033     kworker/3:1-12662 (12662) [003] d..2 29482.507985: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34034          <idle>-0     (-----) [001] d..1 29482.507995: cpu_idle: state=2 cpu_id=1
34035          <idle>-0     (-----) [007] d..2 29482.507998: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
34036          <idle>-0     (-----) [004] dnh2 29482.508011: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
34037     kworker/5:0-24254 (24254) [005] d..2 29482.508015: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34038          <idle>-0     (-----) [004] .n.1 29482.508023: cpu_idle: state=4294967295 cpu_id=4
34039          <idle>-0     (-----) [005] d..1 29482.508028: cpu_idle: state=2 cpu_id=5
34040     kworker/7:0-12892 (12892) [007] d..2 29482.508031: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34041          <idle>-0     (-----) [003] d..1 29482.508031: cpu_idle: state=2 cpu_id=3
34042          <idle>-0     (-----) [004] d..2 29482.508040: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
34043          <idle>-0     (-----) [007] d..1 29482.508042: cpu_idle: state=2 cpu_id=7
34044          <idle>-0     (-----) [006] dnh2 29482.508054: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
34045          <idle>-0     (-----) [006] .n.1 29482.508063: cpu_idle: state=4294967295 cpu_id=6
34046          <idle>-0     (-----) [006] d..2 29482.508078: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
34047     kworker/4:0-24269 (24269) [004] d..2 29482.508087: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34048          <idle>-0     (-----) [004] d..1 29482.508099: cpu_idle: state=2 cpu_id=4
34049     kworker/6:0-21469 (21469) [006] d..2 29482.508125: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34050          <idle>-0     (-----) [006] d..1 29482.508136: cpu_idle: state=2 cpu_id=6
34051  kworker/u16:10-23868 (23868) [002] d..2 29482.508319: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34052          <idle>-0     (-----) [002] d..2 29482.508326: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34053          <idle>-0     (-----) [002] dn.3 29482.508344: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34054          <idle>-0     (-----) [002] d..2 29482.508356: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
34055     ksoftirqd/2-26    (   26) [002] d..2 29482.508388: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34056          <idle>-0     (-----) [002] d..1 29482.508412: cpu_idle: state=2 cpu_id=2
34057          <idle>-0     (-----) [000] ...1 29482.667066: cpu_idle: state=4294967295 cpu_id=0
34058          <idle>-0     (-----) [001] d.H3 29482.667074: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
34059          <idle>-0     (-----) [000] d..1 29482.667098: cpu_idle: state=2 cpu_id=0
34060          <idle>-0     (-----) [001] d.H3 29482.667132: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34061          <idle>-0     (-----) [001] d.H4 29482.667164: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34062          <idle>-0     (-----) [001] d.s3 29482.667187: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34063          <idle>-0     (-----) [001] dns4 29482.667218: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34064          <idle>-0     (-----) [001] dns3 29482.667231: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34065          <idle>-0     (-----) [001] dns4 29482.667269: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34066          <idle>-0     (-----) [001] .n.1 29482.667340: cpu_idle: state=4294967295 cpu_id=1
34067          <idle>-0     (-----) [002] .n.1 29482.667357: cpu_idle: state=4294967295 cpu_id=2
34068          <idle>-0     (-----) [001] d..2 29482.667380: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34069          <idle>-0     (-----) [002] d..2 29482.667397: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34070         sugov:0-559   (  559) [002] d..2 29482.667437: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34071     kworker/1:1-13678 (13678) [001] d..3 29482.667539: sched_waking: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
34072     kworker/1:1-13678 (13678) [001] d..3 29482.667561: sched_wakeup: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
34073     kworker/1:1-13678 (13678) [001] d..2 29482.667570: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=kworker/1:2 next_pid=13650 next_prio=120
34074     kworker/1:2-13650 (13650) [001] d..2 29482.667701: sched_switch: prev_comm=kworker/1:2 prev_pid=13650 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34075          <idle>-0     (-----) [001] d..2 29482.667731: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
34076          <idle>-0     (-----) [001] dn.3 29482.667748: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
34077          <idle>-0     (-----) [001] d..2 29482.667759: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
34078     ksoftirqd/1-18    (   18) [001] d..2 29482.667790: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34079          <idle>-0     (-----) [001] d..1 29482.667812: cpu_idle: state=2 cpu_id=1
34080          <idle>-0     (-----) [007] dnh2 29482.667854: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34081          <idle>-0     (-----) [007] .n.1 29482.667865: cpu_idle: state=4294967295 cpu_id=7
34082          <idle>-0     (-----) [007] d..2 29482.667881: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34083  kworker/u16:10-23868 (23868) [002] d..2 29482.667886: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34084         sugov:4-560   (  560) [007] d..2 29482.667908: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34085          <idle>-0     (-----) [002] d..1 29482.667913: cpu_idle: state=2 cpu_id=2
34086          <idle>-0     (-----) [007] d..1 29482.667922: cpu_idle: state=2 cpu_id=7
34087          <idle>-0     (-----) [000] d.h3 29482.670588: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34088          <idle>-0     (-----) [000] dnh4 29482.670617: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34089          <idle>-0     (-----) [000] .n.1 29482.670679: cpu_idle: state=4294967295 cpu_id=0
34090          <idle>-0     (-----) [000] d..2 29482.670710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34091     kworker/0:0-13450 (13450) [000] d..2 29482.670723: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34092     kworker/0:0-13450 (13450) [000] d..3 29482.670739: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
34093     kworker/0:0-13450 (13450) [000] d..3 29482.670752: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34094     kworker/0:0-13450 (13450) [000] d..2 29482.670802: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34095          <idle>-0     (-----) [000] d..2 29482.670809: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34096          <idle>-0     (-----) [000] dn.3 29482.670825: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34097          <idle>-0     (-----) [000] d..2 29482.670840: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
34098     ksoftirqd/0-3     (    3) [000] d..2 29482.670872: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34099          <idle>-0     (-----) [000] d..1 29482.670889: cpu_idle: state=2 cpu_id=0
34100          <idle>-0     (-----) [001] .n.1 29482.670920: cpu_idle: state=4294967295 cpu_id=1
34101          <idle>-0     (-----) [001] d..2 29482.670958: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34102     kworker/1:1-13678 (13678) [001] d..2 29482.671096: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34103          <idle>-0     (-----) [001] d..1 29482.671116: cpu_idle: state=2 cpu_id=1
34104          <idle>-0     (-----) [002] d.h2 29482.846089: sched_waking: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=002
34105          <idle>-0     (-----) [000] d..2 29482.846185: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34106          <idle>-0     (-----) [002] d.h3 29482.846210: sched_wakeup: comm=CCodecWatchdog pid=23520 prio=120 target_cpu=000
34107          <idle>-0     (-----) [000] dn.3 29482.846242: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34108          <idle>-0     (-----) [000] dnh2 29482.846262: sched_waking: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=000
34109          <idle>-0     (-----) [000] dnh3 29482.846391: sched_wakeup: comm=CCodecWatchdog pid=24186 prio=120 target_cpu=001
34110          <idle>-0     (-----) [002] d.h3 29482.846419: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34111          <idle>-0     (-----) [000] dns3 29482.846428: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34112          <idle>-0     (-----) [002] d.h3 29482.846450: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34113          <idle>-0     (-----) [002] dnh4 29482.846474: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34114          <idle>-0     (-----) [002] .n.1 29482.846488: cpu_idle: state=4294967295 cpu_id=2
34115          <idle>-0     (-----) [000] dns4 29482.846496: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
34116          <idle>-0     (-----) [000] dns3 29482.846514: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34117          <idle>-0     (-----) [002] d..2 29482.846526: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34118          <idle>-0     (-----) [000] dns4 29482.846530: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34119          <idle>-0     (-----) [000] .n.1 29482.846547: cpu_idle: state=4294967295 cpu_id=0
34120          <idle>-0     (-----) [001] .n.1 29482.846567: cpu_idle: state=4294967295 cpu_id=1
34121          <idle>-0     (-----) [000] d..2 29482.846584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=23520 next_prio=120
34122          <idle>-0     (-----) [001] d..2 29482.846609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=24186 next_prio=120
34123         sugov:0-559   (  559) [002] d..2 29482.846622: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34124          <idle>-0     (-----) [002] d..1 29482.846650: cpu_idle: state=2 cpu_id=2
34125  CCodecWatchdog-23520 (  884) [000] d..2 29482.846715: sched_switch: prev_comm=CCodecWatchdog prev_pid=23520 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
34126     ksoftirqd/0-3     (    3) [000] d..2 29482.846733: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34127  CCodecWatchdog-24186 (23968) [001] d..2 29482.846755: sched_switch: prev_comm=CCodecWatchdog prev_pid=24186 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34128     kworker/0:0-13450 (13450) [000] d..2 29482.846878: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34129          <idle>-0     (-----) [000] d..1 29482.846902: cpu_idle: state=2 cpu_id=0
34130          <idle>-0     (-----) [007] dnh2 29482.847171: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34131          <idle>-0     (-----) [007] .n.1 29482.847183: cpu_idle: state=4294967295 cpu_id=7
34132          <idle>-0     (-----) [007] d..2 29482.847198: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34133         sugov:4-560   (  560) [007] d..2 29482.847228: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34134          <idle>-0     (-----) [007] d..1 29482.847239: cpu_idle: state=2 cpu_id=7
34135  kworker/u16:10-23868 (23868) [001] d..2 29482.847383: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
34136          <idle>-0     (-----) [001] d..1 29482.847411: cpu_idle: state=2 cpu_id=1
34137          <idle>-0     (-----) [003] d.s3 29482.847644: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
34138          <idle>-0     (-----) [003] d.s4 29482.847673: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34139          <idle>-0     (-----) [003] d.s4 29482.847688: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
34140          <idle>-0     (-----) [003] ...1 29482.847712: cpu_idle: state=4294967295 cpu_id=3
34141          <idle>-0     (-----) [003] d..1 29482.847726: cpu_idle: state=2 cpu_id=3
34142          <idle>-0     (-----) [001] .n.1 29482.847862: cpu_idle: state=4294967295 cpu_id=1
34143          <idle>-0     (-----) [001] d..2 29482.847891: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34144  kworker/u16:10-23868 (23868) [001] d..2 29482.847952: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34145          <idle>-0     (-----) [001] d..1 29482.847970: cpu_idle: state=2 cpu_id=1
34146          <idle>-0     (-----) [002] d..2 29483.022963: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34147          <idle>-0     (-----) [002] dn.3 29483.023020: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34148          <idle>-0     (-----) [000] ...1 29483.023031: cpu_idle: state=4294967295 cpu_id=0
34149          <idle>-0     (-----) [000] d..1 29483.023061: cpu_idle: state=2 cpu_id=0
34150          <idle>-0     (-----) [002] dnH3 29483.023162: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34151          <idle>-0     (-----) [002] dnH3 29483.023195: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34152          <idle>-0     (-----) [002] dnH4 29483.023241: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
34153          <idle>-0     (-----) [002] dns3 29483.023269: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
34154          <idle>-0     (-----) [002] dns4 29483.023345: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34155          <idle>-0     (-----) [002] dns3 29483.023366: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34156          <idle>-0     (-----) [002] dns4 29483.023381: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34157          <idle>-0     (-----) [002] .n.1 29483.023399: cpu_idle: state=4294967295 cpu_id=2
34158          <idle>-0     (-----) [003] .n.1 29483.023424: cpu_idle: state=4294967295 cpu_id=3
34159          <idle>-0     (-----) [002] d..2 29483.023444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
34160          <idle>-0     (-----) [003] d..2 29483.023465: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34161     ksoftirqd/2-26    (   26) [002] d..2 29483.023471: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34162         sugov:0-559   (  559) [003] d..2 29483.023504: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34163     kworker/2:2-13636 (13636) [002] d..2 29483.023646: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34164          <idle>-0     (-----) [002] d..1 29483.023671: cpu_idle: state=2 cpu_id=2
34165          <idle>-0     (-----) [007] dnh2 29483.023918: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34166          <idle>-0     (-----) [007] .n.1 29483.023929: cpu_idle: state=4294967295 cpu_id=7
34167          <idle>-0     (-----) [007] d..2 29483.023944: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34168  kworker/u16:10-23868 (23868) [003] d..2 29483.023946: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34169          <idle>-0     (-----) [003] d..1 29483.023974: cpu_idle: state=2 cpu_id=3
34170         sugov:4-560   (  560) [007] d..2 29483.023975: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34171          <idle>-0     (-----) [007] d..1 29483.023989: cpu_idle: state=2 cpu_id=7
34172          <idle>-0     (-----) [003] d.h2 29483.246380: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
34173          <idle>-0     (-----) [003] dnh3 29483.246465: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
34174          <idle>-0     (-----) [000] d..2 29483.246478: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34175          <idle>-0     (-----) [000] dn.3 29483.246526: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34176          <idle>-0     (-----) [000] .n.1 29483.246633: cpu_idle: state=4294967295 cpu_id=0
34177          <idle>-0     (-----) [003] dnh3 29483.246663: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34178          <idle>-0     (-----) [003] dnh3 29483.246686: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
34179          <idle>-0     (-----) [000] d..2 29483.246689: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
34180          <idle>-0     (-----) [003] dnh4 29483.246718: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34181     ksoftirqd/0-3     (    3) [000] d.s2 29483.246722: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34182          <idle>-0     (-----) [003] .n.1 29483.246731: cpu_idle: state=4294967295 cpu_id=3
34183          <idle>-0     (-----) [003] d..2 29483.246758: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
34184     ksoftirqd/0-3     (    3) [000] d.s3 29483.246814: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34185     ksoftirqd/0-3     (    3) [000] d.s2 29483.246834: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34186     ksoftirqd/0-3     (    3) [000] d.s3 29483.246855: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34187     ksoftirqd/0-3     (    3) [000] d..2 29483.246880: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34188          <idle>-0     (-----) [002] .n.1 29483.246895: cpu_idle: state=4294967295 cpu_id=2
34189          <idle>-0     (-----) [002] d..2 29483.246930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34190         sugov:0-559   (  559) [002] d..2 29483.246966: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34191 bluetooth@1.0-s-24508 (  759) [003] d..2 29483.246973: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34192     kworker/0:0-13450 (13450) [000] d..2 29483.246999: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34193          <idle>-0     (-----) [003] d..1 29483.247011: cpu_idle: state=2 cpu_id=3
34194          <idle>-0     (-----) [000] d..1 29483.247066: cpu_idle: state=2 cpu_id=0
34195          <idle>-0     (-----) [007] dnh2 29483.247407: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34196          <idle>-0     (-----) [007] .n.1 29483.247418: cpu_idle: state=4294967295 cpu_id=7
34197          <idle>-0     (-----) [007] d..2 29483.247432: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34198         sugov:4-560   (  560) [007] d..2 29483.247460: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34199          <idle>-0     (-----) [007] d..1 29483.247473: cpu_idle: state=2 cpu_id=7
34200  kworker/u16:10-23868 (23868) [002] d..2 29483.247570: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
34201          <idle>-0     (-----) [002] d..1 29483.247602: cpu_idle: state=2 cpu_id=2
34202          <idle>-0     (-----) [003] d.s3 29483.247864: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34203          <idle>-0     (-----) [003] d.s4 29483.247921: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34204          <idle>-0     (-----) [003] dns4 29483.247933: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34205          <idle>-0     (-----) [003] .n.1 29483.247946: cpu_idle: state=4294967295 cpu_id=3
34206          <idle>-0     (-----) [003] d..2 29483.247968: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34207  kworker/u16:10-23868 (23868) [003] d..2 29483.248076: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34208          <idle>-0     (-----) [003] d..1 29483.248096: cpu_idle: state=2 cpu_id=3
34209          <idle>-0     (-----) [000] ...1 29483.360375: cpu_idle: state=4294967295 cpu_id=0
34210          <idle>-0     (-----) [002] d.H3 29483.360382: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34211          <idle>-0     (-----) [000] d..1 29483.360406: cpu_idle: state=2 cpu_id=0
34212          <idle>-0     (-----) [002] d.H3 29483.360427: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34213          <idle>-0     (-----) [002] dnH4 29483.360455: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34214          <idle>-0     (-----) [002] dns3 29483.360480: sched_waking: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
34215          <idle>-0     (-----) [002] dns4 29483.360509: sched_wakeup: comm=kworker/2:1H pid=850 prio=100 target_cpu=002
34216          <idle>-0     (-----) [002] dns3 29483.360518: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34217          <idle>-0     (-----) [002] dns4 29483.360608: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34218          <idle>-0     (-----) [002] dns3 29483.360634: sched_waking: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
34219          <idle>-0     (-----) [002] dns3 29483.360655: sched_waking: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
34220          <idle>-0     (-----) [002] dns3 29483.360673: sched_waking: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
34221          <idle>-0     (-----) [002] dns3 29483.360690: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
34222          <idle>-0     (-----) [002] dns3 29483.360707: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
34223          <idle>-0     (-----) [002] dns4 29483.360728: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
34224          <idle>-0     (-----) [002] dns3 29483.360735: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34225          <idle>-0     (-----) [002] dns4 29483.360749: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34226          <idle>-0     (-----) [002] dns3 29483.360763: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34227          <idle>-0     (-----) [002] dns4 29483.360781: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34228          <idle>-0     (-----) [002] dns3 29483.360788: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34229          <idle>-0     (-----) [002] dns4 29483.360804: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34230          <idle>-0     (-----) [002] .n.1 29483.360841: cpu_idle: state=4294967295 cpu_id=2
34231          <idle>-0     (-----) [002] d..2 29483.360874: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34232          <idle>-0     (-----) [003] .n.1 29483.360905: cpu_idle: state=4294967295 cpu_id=3
34233         sugov:0-559   (  559) [002] d..2 29483.360907: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:1H next_pid=850 next_prio=100
34234    kworker/2:1H-850   (  850) [002] d..2 29483.360934: sched_switch: prev_comm=kworker/2:1H prev_pid=850 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34235          <idle>-0     (-----) [003] d..2 29483.360953: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
34236          <idle>-0     (-----) [001] .n.1 29483.360973: cpu_idle: state=4294967295 cpu_id=1
34237          <idle>-0     (-----) [000] .n.1 29483.360991: cpu_idle: state=4294967295 cpu_id=0
34238          <idle>-0     (-----) [001] d..2 29483.361013: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34239     kworker/2:2-13636 (13636) [002] d..2 29483.361019: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34240          <idle>-0     (-----) [000] d..2 29483.361024: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34241  kworker/u16:10-23868 (23868) [002] d..2 29483.361026: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=002
34242     kworker/3:1-12662 (12662) [003] d..2 29483.361044: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34243          <idle>-0     (-----) [003] d..1 29483.361065: cpu_idle: state=2 cpu_id=3
34244     kworker/1:1-13678 (13678) [001] d..2 29483.361072: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34245     kworker/0:0-13450 (13450) [000] d..2 29483.361078: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34246  kworker/u16:10-23868 (23868) [002] d..3 29483.361083: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
34247          <idle>-0     (-----) [001] d..1 29483.361094: cpu_idle: state=2 cpu_id=1
34248          <idle>-0     (-----) [000] d..1 29483.361096: cpu_idle: state=2 cpu_id=0
34249          <idle>-0     (-----) [006] dnh2 29483.361147: sched_wakeup: comm=kworker/6:0 pid=21469 prio=120 target_cpu=006
34250          <idle>-0     (-----) [006] .n.1 29483.361157: cpu_idle: state=4294967295 cpu_id=6
34251          <idle>-0     (-----) [006] d..2 29483.361173: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:0 next_pid=21469 next_prio=120
34252          <idle>-0     (-----) [007] dnh2 29483.361189: sched_wakeup: comm=kworker/7:0 pid=12892 prio=120 target_cpu=007
34253          <idle>-0     (-----) [007] dnh2 29483.361196: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34254     kworker/6:0-21469 (21469) [006] d..2 29483.361202: sched_switch: prev_comm=kworker/6:0 prev_pid=21469 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34255          <idle>-0     (-----) [007] .n.1 29483.361204: cpu_idle: state=4294967295 cpu_id=7
34256          <idle>-0     (-----) [006] d..1 29483.361214: cpu_idle: state=2 cpu_id=6
34257          <idle>-0     (-----) [007] d..2 29483.361219: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34258          <idle>-0     (-----) [005] dnh2 29483.361233: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
34259         sugov:4-560   (  560) [007] d..2 29483.361236: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=kworker/7:0 next_pid=12892 next_prio=120
34260          <idle>-0     (-----) [005] .n.1 29483.361244: cpu_idle: state=4294967295 cpu_id=5
34261          <idle>-0     (-----) [005] d..2 29483.361259: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
34262     kworker/7:0-12892 (12892) [007] d..2 29483.361263: sched_switch: prev_comm=kworker/7:0 prev_pid=12892 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34263          <idle>-0     (-----) [007] d..1 29483.361275: cpu_idle: state=2 cpu_id=7
34264          <idle>-0     (-----) [004] dnh2 29483.361275: sched_wakeup: comm=kworker/4:0 pid=24269 prio=120 target_cpu=004
34265          <idle>-0     (-----) [004] .n.1 29483.361286: cpu_idle: state=4294967295 cpu_id=4
34266     kworker/5:0-24254 (24254) [005] d..2 29483.361299: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34267          <idle>-0     (-----) [004] d..2 29483.361302: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:0 next_pid=24269 next_prio=120
34268          <idle>-0     (-----) [005] d..1 29483.361319: cpu_idle: state=2 cpu_id=5
34269     kworker/4:0-24269 (24269) [004] d..2 29483.361330: sched_switch: prev_comm=kworker/4:0 prev_pid=24269 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34270          <idle>-0     (-----) [004] d..1 29483.361353: cpu_idle: state=2 cpu_id=4
34271          <idle>-0     (-----) [003] .n.1 29483.361377: cpu_idle: state=4294967295 cpu_id=3
34272          <idle>-0     (-----) [003] d..2 29483.361407: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
34273  kworker/u16:16-25995 (25995) [003] d..2 29483.361449: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34274          <idle>-0     (-----) [003] d..1 29483.361466: cpu_idle: state=2 cpu_id=3
34275          <idle>-0     (-----) [004] ...1 29483.362478: cpu_idle: state=4294967295 cpu_id=4
34276          <idle>-0     (-----) [004] d..1 29483.362486: cpu_idle: state=2 cpu_id=4
34277  kworker/u16:10-23868 (23868) [002] d..2 29483.362848: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
34278          <idle>-0     (-----) [002] d..2 29483.362856: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34279          <idle>-0     (-----) [002] dn.3 29483.362874: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34280          <idle>-0     (-----) [002] d..2 29483.362888: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
34281     ksoftirqd/2-26    (   26) [002] d..2 29483.362918: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34282          <idle>-0     (-----) [002] d..1 29483.362940: cpu_idle: state=2 cpu_id=2
34283          <idle>-0     (-----) [003] d.s3 29483.363060: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34284          <idle>-0     (-----) [003] d.s4 29483.363114: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34285          <idle>-0     (-----) [003] dns4 29483.363125: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34286          <idle>-0     (-----) [003] .n.1 29483.363137: cpu_idle: state=4294967295 cpu_id=3
34287          <idle>-0     (-----) [003] d..2 29483.363158: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34288  kworker/u16:10-23868 (23868) [003] d..2 29483.363209: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34289          <idle>-0     (-----) [003] d..1 29483.363227: cpu_idle: state=2 cpu_id=3
34290          <idle>-0     (-----) [003] d.h2 29483.395714: sched_waking: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
34291          <idle>-0     (-----) [000] d..2 29483.395811: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34292          <idle>-0     (-----) [003] dnh3 29483.395818: sched_wakeup: comm=oid.setupwizard pid=24795 prio=120 target_cpu=003
34293          <idle>-0     (-----) [000] dn.3 29483.395846: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34294          <idle>-0     (-----) [000] .n.1 29483.395948: cpu_idle: state=4294967295 cpu_id=0
34295          <idle>-0     (-----) [003] dnh3 29483.395979: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34296          <idle>-0     (-----) [000] d..2 29483.396003: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
34297          <idle>-0     (-----) [003] dnh3 29483.396010: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34298          <idle>-0     (-----) [003] dnh4 29483.396036: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34299     ksoftirqd/0-3     (    3) [000] d.s2 29483.396038: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34300          <idle>-0     (-----) [003] .n.1 29483.396048: cpu_idle: state=4294967295 cpu_id=3
34301     ksoftirqd/0-3     (    3) [000] d.s3 29483.396063: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34302     ksoftirqd/0-3     (    3) [000] d.s2 29483.396073: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34303          <idle>-0     (-----) [003] d..2 29483.396081: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=24795 next_prio=120
34304     ksoftirqd/0-3     (    3) [000] d.s3 29483.396170: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34305     ksoftirqd/0-3     (    3) [000] d..2 29483.396200: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34306          <idle>-0     (-----) [002] .n.1 29483.396212: cpu_idle: state=4294967295 cpu_id=2
34307          <idle>-0     (-----) [002] d..2 29483.396246: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34308         sugov:0-559   (  559) [002] d..2 29483.396282: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34309     kworker/0:0-13450 (13450) [000] d..2 29483.396299: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34310 oid.setupwizard-24795 (24795) [003] d..2 29483.396351: sched_switch: prev_comm=oid.setupwizard prev_pid=24795 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34311          <idle>-0     (-----) [000] d..1 29483.396378: cpu_idle: state=0 cpu_id=0
34312          <idle>-0     (-----) [003] d..1 29483.396380: cpu_idle: state=2 cpu_id=3
34313  kworker/u16:10-23868 (23868) [002] d..2 29483.396542: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34314          <idle>-0     (-----) [002] d..1 29483.396566: cpu_idle: state=2 cpu_id=2
34315          <idle>-0     (-----) [007] dnh2 29483.396741: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34316          <idle>-0     (-----) [007] .n.1 29483.396752: cpu_idle: state=4294967295 cpu_id=7
34317          <idle>-0     (-----) [007] d..2 29483.396766: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34318         sugov:4-560   (  560) [007] d..2 29483.396792: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34319          <idle>-0     (-----) [007] d..1 29483.396803: cpu_idle: state=2 cpu_id=7
34320          <idle>-0     (-----) [000] d.h2 29483.397201: sched_waking: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
34321          <idle>-0     (-----) [000] dnh3 29483.397233: sched_wakeup: comm=PowerManagerSer pid=24006 prio=116 target_cpu=000
34322          <idle>-0     (-----) [000] dnh3 29483.397351: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34323          <idle>-0     (-----) [000] dnh3 29483.397371: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34324          <idle>-0     (-----) [000] dnh4 29483.397388: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34325          <idle>-0     (-----) [000] .n.1 29483.397397: cpu_idle: state=4294967295 cpu_id=0
34326          <idle>-0     (-----) [000] d..2 29483.397419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=24006 next_prio=116
34327          <idle>-0     (-----) [002] .n.1 29483.397548: cpu_idle: state=4294967295 cpu_id=2
34328          <idle>-0     (-----) [002] d..2 29483.397579: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34329         sugov:0-559   (  559) [002] d..2 29483.397633: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34330          <idle>-0     (-----) [002] d..2 29483.397640: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34331 PowerManagerSer-24006 (23968) [000] d..2 29483.397648: sched_switch: prev_comm=PowerManagerSer prev_pid=24006 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34332          <idle>-0     (-----) [002] dn.3 29483.397663: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34333          <idle>-0     (-----) [000] d..1 29483.397674: cpu_idle: state=2 cpu_id=0
34334          <idle>-0     (-----) [002] d..2 29483.397677: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
34335     ksoftirqd/2-26    (   26) [002] d..2 29483.397714: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34336          <idle>-0     (-----) [002] d..1 29483.397733: cpu_idle: state=2 cpu_id=2
34337          <idle>-0     (-----) [007] dnh2 29483.398093: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
34338          <idle>-0     (-----) [007] .n.1 29483.398101: cpu_idle: state=4294967295 cpu_id=7
34339          <idle>-0     (-----) [007] d..2 29483.398112: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34340         sugov:4-560   (  560) [007] d..2 29483.398132: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34341          <idle>-0     (-----) [007] d..1 29483.398141: cpu_idle: state=2 cpu_id=7
34342          <idle>-0     (-----) [000] ...1 29483.680309: cpu_idle: state=4294967295 cpu_id=0
34343          <idle>-0     (-----) [000] d..1 29483.680341: cpu_idle: state=2 cpu_id=0
34344          <idle>-0     (-----) [001] d.H3 29483.680401: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
34345          <idle>-0     (-----) [001] d.H3 29483.680463: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34346          <idle>-0     (-----) [001] d.H4 29483.680499: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34347          <idle>-0     (-----) [001] d.s3 29483.680524: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34348          <idle>-0     (-----) [001] dns4 29483.680556: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34349          <idle>-0     (-----) [001] dns3 29483.680569: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34350          <idle>-0     (-----) [001] dns4 29483.680609: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34351          <idle>-0     (-----) [001] .n.1 29483.680669: cpu_idle: state=4294967295 cpu_id=1
34352          <idle>-0     (-----) [002] .n.1 29483.680676: cpu_idle: state=4294967295 cpu_id=2
34353          <idle>-0     (-----) [001] d..2 29483.680711: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34354          <idle>-0     (-----) [002] d..2 29483.680715: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34355         sugov:0-559   (  559) [002] d..2 29483.680755: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34356     kworker/1:1-13678 (13678) [001] d..3 29483.680871: sched_waking: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
34357     kworker/1:1-13678 (13678) [001] d..3 29483.680893: sched_wakeup: comm=kworker/1:2 pid=13650 prio=120 target_cpu=001
34358     kworker/1:1-13678 (13678) [001] d..2 29483.680903: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=kworker/1:2 next_pid=13650 next_prio=120
34359     kworker/1:2-13650 (13650) [001] d..2 29483.681032: sched_switch: prev_comm=kworker/1:2 prev_pid=13650 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34360          <idle>-0     (-----) [001] d..2 29483.681050: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
34361          <idle>-0     (-----) [001] dn.3 29483.681066: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
34362          <idle>-0     (-----) [001] d..2 29483.681095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
34363     ksoftirqd/1-18    (   18) [001] d..2 29483.681122: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34364          <idle>-0     (-----) [001] d..1 29483.681143: cpu_idle: state=2 cpu_id=1
34365          <idle>-0     (-----) [004] dnh2 29483.681187: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34366          <idle>-0     (-----) [004] .n.1 29483.681197: cpu_idle: state=4294967295 cpu_id=4
34367          <idle>-0     (-----) [004] d..2 29483.681211: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34368         sugov:4-560   (  560) [004] d..2 29483.681239: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34369          <idle>-0     (-----) [004] d..1 29483.681252: cpu_idle: state=2 cpu_id=4
34370  kworker/u16:10-23868 (23868) [002] d..2 29483.681380: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
34371          <idle>-0     (-----) [002] d..1 29483.681407: cpu_idle: state=2 cpu_id=2
34372          <idle>-0     (-----) [003] d.s3 29483.681648: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34373          <idle>-0     (-----) [003] d.s4 29483.681720: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34374          <idle>-0     (-----) [003] dns4 29483.681731: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34375          <idle>-0     (-----) [003] .n.1 29483.681744: cpu_idle: state=4294967295 cpu_id=3
34376          <idle>-0     (-----) [000] d.h3 29483.681755: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34377          <idle>-0     (-----) [003] d..2 29483.681770: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34378          <idle>-0     (-----) [000] dnh4 29483.681789: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34379          <idle>-0     (-----) [000] .n.1 29483.681821: cpu_idle: state=4294967295 cpu_id=0
34380          <idle>-0     (-----) [000] d..2 29483.681851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34381     kworker/0:0-13450 (13450) [000] d..2 29483.681864: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34382     kworker/0:0-13450 (13450) [000] d..3 29483.681875: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
34383  kworker/u16:10-23868 (23868) [003] d..2 29483.681879: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34384     kworker/0:0-13450 (13450) [000] d..3 29483.681886: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34385          <idle>-0     (-----) [003] d..1 29483.681901: cpu_idle: state=2 cpu_id=3
34386     kworker/0:0-13450 (13450) [000] d..2 29483.681934: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34387          <idle>-0     (-----) [000] d..1 29483.681955: cpu_idle: state=2 cpu_id=0
34388          <idle>-0     (-----) [001] .n.1 29483.682052: cpu_idle: state=4294967295 cpu_id=1
34389          <idle>-0     (-----) [001] d..2 29483.682080: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34390     kworker/1:1-13678 (13678) [001] d..2 29483.682219: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34391          <idle>-0     (-----) [001] d..1 29483.682238: cpu_idle: state=2 cpu_id=1
34392          <idle>-0     (-----) [000] ...1 29483.787069: cpu_idle: state=4294967295 cpu_id=0
34393          <idle>-0     (-----) [001] d.H3 29483.787078: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34394          <idle>-0     (-----) [000] d..1 29483.787100: cpu_idle: state=2 cpu_id=0
34395          <idle>-0     (-----) [001] d.H3 29483.787122: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34396          <idle>-0     (-----) [001] d.H4 29483.787155: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34397          <idle>-0     (-----) [001] d.s3 29483.787174: sched_waking: comm=msm_watchdog pid=77 prio=0 target_cpu=001
34398          <idle>-0     (-----) [001] dns4 29483.787188: sched_wakeup: comm=msm_watchdog pid=77 prio=0 target_cpu=001
34399          <idle>-0     (-----) [001] dns3 29483.787204: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34400          <idle>-0     (-----) [001] dns4 29483.787299: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34401          <idle>-0     (-----) [001] dns3 29483.787317: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34402          <idle>-0     (-----) [001] dns4 29483.787335: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34403          <idle>-0     (-----) [002] .n.1 29483.787336: cpu_idle: state=4294967295 cpu_id=2
34404          <idle>-0     (-----) [001] .n.1 29483.787379: cpu_idle: state=4294967295 cpu_id=1
34405          <idle>-0     (-----) [002] d..2 29483.787387: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34406          <idle>-0     (-----) [001] d..2 29483.787405: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=msm_watchdog next_pid=77 next_prio=0
34407         sugov:0-559   (  559) [002] d..2 29483.787435: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34408    msm_watchdog-77    (   77) [001] d..2 29483.787477: sched_switch: prev_comm=msm_watchdog prev_pid=77 prev_prio=0 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34409     kworker/1:1-13678 (13678) [001] d..2 29483.787606: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34410          <idle>-0     (-----) [001] d..2 29483.787613: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
34411          <idle>-0     (-----) [001] dn.3 29483.787629: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
34412          <idle>-0     (-----) [001] d..2 29483.787678: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
34413     ksoftirqd/1-18    (   18) [001] d..2 29483.787707: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34414          <idle>-0     (-----) [001] d..1 29483.787728: cpu_idle: state=2 cpu_id=1
34415          <idle>-0     (-----) [004] dnh2 29483.787847: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34416          <idle>-0     (-----) [004] .n.1 29483.787858: cpu_idle: state=4294967295 cpu_id=4
34417          <idle>-0     (-----) [004] d..2 29483.787871: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34418         sugov:4-560   (  560) [004] d..2 29483.787897: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34419          <idle>-0     (-----) [004] d..1 29483.787909: cpu_idle: state=2 cpu_id=4
34420  kworker/u16:10-23868 (23868) [002] d..2 29483.788028: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
34421          <idle>-0     (-----) [002] d..1 29483.788057: cpu_idle: state=2 cpu_id=2
34422          <idle>-0     (-----) [003] d.s3 29483.788320: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34423          <idle>-0     (-----) [003] d.s4 29483.788347: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34424          <idle>-0     (-----) [003] d.s4 29483.788363: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34425          <idle>-0     (-----) [003] ...1 29483.788387: cpu_idle: state=4294967295 cpu_id=3
34426          <idle>-0     (-----) [003] d..1 29483.788400: cpu_idle: state=2 cpu_id=3
34427          <idle>-0     (-----) [002] .n.1 29483.788536: cpu_idle: state=4294967295 cpu_id=2
34428          <idle>-0     (-----) [002] d..2 29483.788563: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34429  kworker/u16:10-23868 (23868) [002] d..2 29483.788623: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34430          <idle>-0     (-----) [002] d..1 29483.788641: cpu_idle: state=2 cpu_id=2
34431          <idle>-0     (-----) [002] d..2 29484.022975: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34432          <idle>-0     (-----) [002] dn.3 29484.023032: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34433          <idle>-0     (-----) [000] ...1 29484.023034: cpu_idle: state=4294967295 cpu_id=0
34434          <idle>-0     (-----) [000] d..1 29484.023064: cpu_idle: state=2 cpu_id=0
34435          <idle>-0     (-----) [002] dnH3 29484.023172: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34436          <idle>-0     (-----) [002] dnH3 29484.023207: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34437          <idle>-0     (-----) [002] dnH4 29484.023233: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34438          <idle>-0     (-----) [002] dns3 29484.023262: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34439          <idle>-0     (-----) [002] dns4 29484.023311: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34440          <idle>-0     (-----) [002] dns3 29484.023331: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34441          <idle>-0     (-----) [002] dns4 29484.023348: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34442          <idle>-0     (-----) [002] .n.1 29484.023371: cpu_idle: state=4294967295 cpu_id=2
34443          <idle>-0     (-----) [002] d..2 29484.023410: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34444         sugov:0-559   (  559) [002] d..2 29484.023448: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
34445     ksoftirqd/2-26    (   26) [002] d..2 29484.023471: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34446     kworker/2:2-13636 (13636) [002] d..2 29484.023577: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34447          <idle>-0     (-----) [004] dnh2 29484.023930: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34448          <idle>-0     (-----) [004] .n.1 29484.023941: cpu_idle: state=4294967295 cpu_id=4
34449          <idle>-0     (-----) [004] d..2 29484.023957: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34450         sugov:4-560   (  560) [004] d..2 29484.023992: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34451  kworker/u16:10-23868 (23868) [002] d..2 29484.023998: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34452          <idle>-0     (-----) [004] d..1 29484.024005: cpu_idle: state=2 cpu_id=4
34453          <idle>-0     (-----) [002] d..1 29484.024027: cpu_idle: state=2 cpu_id=2
34454          <idle>-0     (-----) [000] ...1 29484.213803: cpu_idle: state=4294967295 cpu_id=0
34455          <idle>-0     (-----) [002] d.H3 29484.213811: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34456          <idle>-0     (-----) [000] d..1 29484.213835: cpu_idle: state=2 cpu_id=0
34457          <idle>-0     (-----) [002] d.H3 29484.213856: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34458          <idle>-0     (-----) [002] dnH4 29484.213885: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34459          <idle>-0     (-----) [002] dns3 29484.213908: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34460          <idle>-0     (-----) [002] dns4 29484.213938: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34461          <idle>-0     (-----) [002] dns3 29484.213951: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34462          <idle>-0     (-----) [002] dns4 29484.213997: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34463          <idle>-0     (-----) [002] .n.1 29484.214068: cpu_idle: state=4294967295 cpu_id=2
34464          <idle>-0     (-----) [002] d..2 29484.214103: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34465         sugov:0-559   (  559) [002] d..2 29484.214142: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34466     kworker/2:2-13636 (13636) [002] d..2 29484.214262: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34467          <idle>-0     (-----) [004] dnh2 29484.214578: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34468  kworker/u16:10-23868 (23868) [002] d..2 29484.214586: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34469          <idle>-0     (-----) [004] .n.1 29484.214590: cpu_idle: state=4294967295 cpu_id=4
34470          <idle>-0     (-----) [002] d..2 29484.214594: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34471          <idle>-0     (-----) [004] d..2 29484.214606: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34472          <idle>-0     (-----) [002] dn.3 29484.214613: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
34473          <idle>-0     (-----) [002] d..2 29484.214626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
34474         sugov:4-560   (  560) [004] d..2 29484.214636: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34475          <idle>-0     (-----) [004] d..1 29484.214649: cpu_idle: state=2 cpu_id=4
34476     ksoftirqd/2-26    (   26) [002] d..2 29484.214659: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34477          <idle>-0     (-----) [002] d..1 29484.214683: cpu_idle: state=2 cpu_id=2
34478          <idle>-0     (-----) [003] d.h2 29484.250008: sched_waking: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
34479          <idle>-0     (-----) [003] dnh3 29484.250096: sched_wakeup: comm=bluetooth@1.0-s pid=24508 prio=98 target_cpu=003
34480          <idle>-0     (-----) [000] d..2 29484.250109: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34481          <idle>-0     (-----) [000] dn.3 29484.250157: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34482          <idle>-0     (-----) [000] .n.1 29484.250254: cpu_idle: state=4294967295 cpu_id=0
34483          <idle>-0     (-----) [003] dnh3 29484.250284: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34484          <idle>-0     (-----) [000] d..2 29484.250307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
34485          <idle>-0     (-----) [003] dnh3 29484.250308: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34486          <idle>-0     (-----) [003] dnh4 29484.250328: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34487     ksoftirqd/0-3     (    3) [000] d.s2 29484.250340: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34488          <idle>-0     (-----) [003] .n.1 29484.250340: cpu_idle: state=4294967295 cpu_id=3
34489          <idle>-0     (-----) [003] d..2 29484.250367: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=bluetooth@1.0-s next_pid=24508 next_prio=98
34490     ksoftirqd/0-3     (    3) [000] d.s3 29484.250387: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34491          <idle>-0     (-----) [002] .n.1 29484.250504: cpu_idle: state=4294967295 cpu_id=2
34492     ksoftirqd/0-3     (    3) [000] d..2 29484.250532: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34493          <idle>-0     (-----) [002] d..2 29484.250537: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34494          <idle>-0     (-----) [000] d..1 29484.250563: cpu_idle: state=2 cpu_id=0
34495         sugov:0-559   (  559) [002] d..2 29484.250573: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34496 bluetooth@1.0-s-24508 (  759) [003] d..2 29484.250589: sched_switch: prev_comm=bluetooth@1.0-s prev_pid=24508 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34497          <idle>-0     (-----) [003] d..1 29484.250614: cpu_idle: state=2 cpu_id=3
34498  kworker/u16:10-23868 (23868) [002] d..2 29484.250778: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34499          <idle>-0     (-----) [002] d..1 29484.250801: cpu_idle: state=2 cpu_id=2
34500          <idle>-0     (-----) [004] dnh2 29484.251036: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34501          <idle>-0     (-----) [004] .n.1 29484.251047: cpu_idle: state=4294967295 cpu_id=4
34502          <idle>-0     (-----) [004] d..2 29484.251062: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34503         sugov:4-560   (  560) [004] d..2 29484.251088: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34504          <idle>-0     (-----) [004] d..1 29484.251100: cpu_idle: state=2 cpu_id=4
34505          <idle>-0     (-----) [000] d.h3 29484.300685: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
34506          <idle>-0     (-----) [000] dnh4 29484.300854: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34507          <idle>-0     (-----) [000] dnh3 29484.301069: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34508          <idle>-0     (-----) [000] dnh3 29484.301105: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34509          <idle>-0     (-----) [000] dnh4 29484.301133: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=002
34510          <idle>-0     (-----) [000] .n.1 29484.301152: cpu_idle: state=4294967295 cpu_id=0
34511          <idle>-0     (-----) [000] d..2 29484.301205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34512   kworker/u17:1-18284 (18284) [000] d..2 29484.301263: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34513   kworker/u17:1-18284 (18284) [000] d..3 29484.301286: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34514          <idle>-0     (-----) [002] .n.1 29484.301323: cpu_idle: state=4294967295 cpu_id=2
34515   kworker/u17:1-18284 (18284) [000] d..2 29484.301332: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34516          <idle>-0     (-----) [002] d..2 29484.301365: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34517     kworker/0:0-13450 (13450) [000] d..2 29484.301379: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
34518     kworker/0:0-13450 (13450) [000] d..3 29484.301432: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
34519         sugov:0-559   (  559) [002] d..2 29484.301455: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34520     kworker/0:0-13450 (13450) [000] d..2 29484.301497: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34521          <idle>-0     (-----) [000] d..2 29484.301508: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34522          <idle>-0     (-----) [000] dn.3 29484.301523: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
34523          <idle>-0     (-----) [000] d..2 29484.301536: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
34524     ksoftirqd/0-3     (    3) [000] d.s2 29484.301559: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=002
34525     ksoftirqd/0-3     (    3) [000] d.s3 29484.301610: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34526     ksoftirqd/0-3     (    3) [000] d..2 29484.301638: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34527  kworker/u16:10-23868 (23868) [000] d.h2 29484.301674: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34528            adbd-23484 ( 1007) [002] d..2 29484.301684: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34529  kworker/u16:10-23868 (23868) [000] d.h3 29484.301706: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
34530          <idle>-0     (-----) [002] d..2 29484.301721: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34531   kworker/u17:1-18284 (18284) [002] d..2 29484.301745: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34532   kworker/u17:1-18284 (18284) [002] d..3 29484.301769: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34533   kworker/u17:1-18284 (18284) [002] d..2 29484.301802: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34534          <idle>-0     (-----) [004] dnh2 29484.301828: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34535          <idle>-0     (-----) [004] .n.1 29484.301839: cpu_idle: state=4294967295 cpu_id=4
34536     kworker/2:2-13636 (13636) [002] d..2 29484.301846: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
34537          <idle>-0     (-----) [004] d..2 29484.301853: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34538     kworker/2:2-13636 (13636) [002] d..3 29484.301874: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=002
34539         sugov:4-560   (  560) [004] d..2 29484.301880: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34540          <idle>-0     (-----) [004] d..1 29484.301896: cpu_idle: state=2 cpu_id=4
34541     kworker/2:2-13636 (13636) [002] d..2 29484.301908: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34542            adbd-23484 ( 1007) [002] d..2 29484.301973: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
34543            adbd-23484 ( 1007) [002] d..3 29484.302001: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=002
34544  kworker/u16:10-23868 (23868) [000] d..2 29484.302089: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34545            adbd-23484 ( 1007) [002] d..2 29484.302108: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
34546          <idle>-0     (-----) [000] d..1 29484.302116: cpu_idle: state=2 cpu_id=0
34547            adbd-1007  ( 1007) [002] d..2 29484.304367: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13719 next_prio=120
34548              sh-13719 (13719) [002] d..2 29484.306191: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=002
34549              sh-13719 (13719) [002] d..3 29484.306244: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
34550              sh-13719 (13719) [002] d..2 29484.306260: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34551              sh-13719 (13719) [002] d..3 29484.306285: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34552          <idle>-0     (-----) [000] .n.1 29484.306404: cpu_idle: state=4294967295 cpu_id=0
34553          <idle>-0     (-----) [000] d..2 29484.306441: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
34554            adbd-1007  ( 1007) [000] d..2 29484.306656: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
34555            adbd-1007  ( 1007) [000] d..3 29484.306701: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
34556            adbd-1007  ( 1007) [000] d..1 29484.306992: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
34557            adbd-1007  ( 1007) [000] d..2 29484.307029: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
34558              sh-13719 (13719) [002] d..2 29484.307055: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
34559            adbd-1007  ( 1007) [000] d..2 29484.307262: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
34560            adbd-23485 ( 1007) [002] d..2 29484.307272: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13719 next_prio=120
34561         rcuop/2-29    (   29) [000] d.h4 29484.307294: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
34562         rcuop/2-29    (   29) [000] d.h5 29484.307336: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
34563              sh-13719 (13719) [002] d..2 29484.307352: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34564         rcuop/2-29    (   29) [000] d..2 29484.307371: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34565   kworker/u17:1-18284 (18284) [002] d..2 29484.307380: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34566   kworker/u17:1-18284 (18284) [002] d..3 29484.307400: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34567         rcuop/2-29    (   29) [000] d..3 29484.307417: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34568         rcuop/2-29    (   29) [000] d..2 29484.307434: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
34569   kworker/u17:1-18284 (18284) [002] d..2 29484.307434: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34570     kworker/2:2-13636 (13636) [002] d..2 29484.307448: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
34571         rcuop/0-10    (   10) [000] d..2 29484.307452: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34572     kworker/2:2-13636 (13636) [002] d..3 29484.307475: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
34573     rcu_preempt-7     (    7) [000] d..2 29484.307476: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13720 next_prio=120
34574     kworker/2:2-13636 (13636) [002] d..2 29484.307495: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34575 shell svc 13719-13720 ( 1007) [000] d..1 29484.307514: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
34576            adbd-23485 ( 1007) [002] d..2 29484.307517: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=D ==> next_comm=sh next_pid=13719 next_prio=120
34577 shell svc 13719-13720 ( 1007) [000] d..2 29484.307544: sched_blocked_reason: pid=23485 iowait=0 caller=do_page_fault+0x4e0/0x594
34578 shell svc 13719-13720 ( 1007) [000] d..2 29484.307557: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
34579              sh-13719 (13719) [002] d..2 29484.307571: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
34580            adbd-23485 ( 1007) [002] d..1 29484.307587: sched_waking: comm=adbd pid=13720 prio=120 target_cpu=000
34581 shell svc 13719-13720 ( 1007) [000] d..2 29484.307621: sched_switch: prev_comm=adbd prev_pid=13720 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
34582          <idle>-0     (-----) [000] d..1 29484.307645: cpu_idle: state=2 cpu_id=0
34583            adbd-23485 ( 1007) [002] d..2 29484.307648: sched_blocked_reason: pid=13720 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
34584            adbd-23485 ( 1007) [002] d..2 29484.307660: sched_wakeup: comm=adbd pid=13720 prio=120 target_cpu=000
34585          <idle>-0     (-----) [000] .n.1 29484.307676: cpu_idle: state=4294967295 cpu_id=0
34586            adbd-23485 ( 1007) [002] d..2 29484.307690: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=D ==> next_comm=sh next_pid=13719 next_prio=120
34587          <idle>-0     (-----) [000] d..2 29484.307695: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13720 next_prio=120
34588 shell svc 13719-13720 ( 1007) [000] d..1 29484.307704: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
34589 shell svc 13719-13720 ( 1007) [000] d..2 29484.307726: sched_blocked_reason: pid=23485 iowait=0 caller=do_page_fault+0x4e0/0x594
34590 shell svc 13719-13720 ( 1007) [000] d..2 29484.307737: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
34591              sh-13719 (13719) [002] d..2 29484.307751: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
34592            adbd-23485 ( 1007) [002] d..1 29484.307766: sched_waking: comm=adbd pid=13720 prio=120 target_cpu=000
34593 shell svc 13719-13720 ( 1007) [000] d..2 29484.307785: sched_switch: prev_comm=adbd prev_pid=13720 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
34594            adbd-23485 ( 1007) [002] d..2 29484.307799: sched_blocked_reason: pid=13720 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
34595          <idle>-0     (-----) [000] d..1 29484.307801: cpu_idle: state=0 cpu_id=0
34596            adbd-23485 ( 1007) [002] d..2 29484.307810: sched_wakeup: comm=adbd pid=13720 prio=120 target_cpu=000
34597          <idle>-0     (-----) [000] .n.1 29484.307817: cpu_idle: state=4294967295 cpu_id=0
34598          <idle>-0     (-----) [000] d..2 29484.307833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13720 next_prio=120
34599            adbd-23485 ( 1007) [002] d..2 29484.307838: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13719 next_prio=120
34600 shell svc 13719-13720 ( 1007) [000] d..2 29484.307924: sched_switch: prev_comm=shell svc 13719 prev_pid=13720 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34601          <idle>-0     (-----) [000] d.h4 29484.307958: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=002
34602          <idle>-0     (-----) [000] dnh5 29484.307994: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34603          <idle>-0     (-----) [000] d..2 29484.308017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34604   kworker/u17:1-18284 (18284) [000] d..2 29484.308045: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34605   kworker/u17:1-18284 (18284) [000] d..3 29484.308057: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34606   kworker/u17:1-18284 (18284) [000] d..2 29484.308088: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34607     kworker/0:0-13450 (13450) [000] d..2 29484.308105: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=002
34608     kworker/0:0-13450 (13450) [000] d..3 29484.308154: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
34609     kworker/0:0-13450 (13450) [000] d..2 29484.308178: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34610            adbd-23484 ( 1007) [000] d..2 29484.308320: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34611          <idle>-0     (-----) [000] d.h4 29484.308349: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34612          <idle>-0     (-----) [000] dnh5 29484.308370: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34613          <idle>-0     (-----) [000] d..2 29484.308389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34614   kworker/u17:1-18284 (18284) [000] d..2 29484.308406: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34615   kworker/u17:1-18284 (18284) [000] d..3 29484.308417: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34616   kworker/u17:1-18284 (18284) [000] d..2 29484.308446: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34617     kworker/0:0-13450 (13450) [000] d..2 29484.308461: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
34618     kworker/0:0-13450 (13450) [000] d..3 29484.308481: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
34619     kworker/0:0-13450 (13450) [000] d..2 29484.308502: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34620            adbd-23484 ( 1007) [000] d..2 29484.308539: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
34621            adbd-23484 ( 1007) [000] d..3 29484.308552: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
34622            adbd-23484 ( 1007) [000] d..2 29484.308643: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
34623            adbd-1007  ( 1007) [000] d..2 29484.308767: sched_waking: comm=shell svc 13719 pid=13720 prio=120 target_cpu=000
34624            adbd-1007  ( 1007) [000] d..3 29484.308789: sched_wakeup: comm=shell svc 13719 pid=13720 prio=120 target_cpu=000
34625            adbd-1007  ( 1007) [000] d..1 29484.308812: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
34626            adbd-1007  ( 1007) [000] d..2 29484.308840: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
34627              sh-13719 (13719) [002] d..2 29484.308870: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
34628            adbd-1007  ( 1007) [000] d..2 29484.308927: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13719 next_pid=13720 next_prio=120
34629            adbd-23485 ( 1007) [002] d..2 29484.308983: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13719 next_prio=120
34630 shell svc 13719-13720 ( 1007) [000] d.h3 29484.308988: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34631 shell svc 13719-13720 ( 1007) [000] dnh4 29484.309036: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34632 shell svc 13719-13720 ( 1007) [000] d..2 29484.309054: sched_switch: prev_comm=shell svc 13719 prev_pid=13720 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34633   kworker/u17:1-18284 (18284) [000] d..2 29484.309076: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34634   kworker/u17:1-18284 (18284) [000] d..3 29484.309087: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34635   kworker/u17:1-18284 (18284) [000] d..2 29484.309118: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34636     kworker/0:0-13450 (13450) [000] d..2 29484.309133: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
34637     kworker/0:0-13450 (13450) [000] d..3 29484.309160: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
34638              sh-13719 (13719) [002] d..2 29484.309180: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
34639     kworker/0:0-13450 (13450) [000] d..2 29484.309207: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=shell svc 13719 next_pid=13720 next_prio=120
34640            adbd-23485 ( 1007) [002] d..2 29484.309223: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13719 next_prio=120
34641 shell svc 13719-13720 ( 1007) [000] d..2 29484.309272: sched_switch: prev_comm=shell svc 13719 prev_pid=13720 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34642          <idle>-0     (-----) [000] d..1 29484.309295: cpu_idle: state=0 cpu_id=0
34643              sh-13719 (13719) [002] d.s3 29484.310449: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34644              sh-13719 (13719) [002] d.s4 29484.310490: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34645          <idle>-0     (-----) [000] .n.1 29484.310497: cpu_idle: state=4294967295 cpu_id=0
34646          <idle>-0     (-----) [000] d..2 29484.310519: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34647  kworker/u16:10-23868 (23868) [000] d..2 29484.310874: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
34648          <idle>-0     (-----) [000] d..1 29484.310891: cpu_idle: state=0 cpu_id=0
34649          <idle>-0     (-----) [003] d.s3 29484.311096: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34650          <idle>-0     (-----) [003] d.s4 29484.311119: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34651          <idle>-0     (-----) [003] d.s4 29484.311133: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34652          <idle>-0     (-----) [000] .n.1 29484.311141: cpu_idle: state=4294967295 cpu_id=0
34653          <idle>-0     (-----) [000] d..2 29484.311157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34654          <idle>-0     (-----) [003] ...1 29484.311158: cpu_idle: state=4294967295 cpu_id=3
34655          <idle>-0     (-----) [003] d..1 29484.311173: cpu_idle: state=2 cpu_id=3
34656  kworker/u16:10-23868 (23868) [000] .... 29484.311242: clk_set_rate: l3_cluster0_vote_clk 480000000
34657  kworker/u16:10-23868 (23868) [000] .... 29484.311252: clk_set_rate: l3_clk 480000000
34658  kworker/u16:10-23868 (23868) [000] d..2 29484.311341: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34659          <idle>-0     (-----) [000] d..1 29484.311353: cpu_idle: state=0 cpu_id=0
34660          <idle>-0     (-----) [000] d.s2 29484.313761: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34661              sh-13719 (13719) [002] d.s2 29484.313772: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34662          <idle>-0     (-----) [000] dns3 29484.313784: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34663              sh-13719 (13719) [002] dns3 29484.313790: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
34664          <idle>-0     (-----) [000] .n.1 29484.313809: cpu_idle: state=4294967295 cpu_id=0
34665              sh-13719 (13719) [002] d..2 29484.313811: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=R+ ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
34666          <idle>-0     (-----) [000] d..2 29484.313821: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34667     rcu_preempt-7     (    7) [000] d..2 29484.313840: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
34668     rcu_preempt-7     (    7) [000] d..3 29484.313858: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
34669     rcu_preempt-7     (    7) [000] d..2 29484.313862: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34670     kworker/2:2-13636 (13636) [002] d..2 29484.313872: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13719 next_prio=120
34671     rcu_preempt-7     (    7) [000] d..3 29484.313877: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34672     rcu_preempt-7     (    7) [000] d..2 29484.313892: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
34673         rcuop/0-10    (   10) [000] d..2 29484.313911: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
34674         rcuop/2-29    (   29) [000] d..2 29484.313924: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34675         rcuop/2-29    (   29) [000] d..3 29484.313940: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34676         rcuop/2-29    (   29) [000] d..2 29484.313951: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34677     rcu_preempt-7     (    7) [000] d..2 29484.313984: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34678          <idle>-0     (-----) [000] d..1 29484.314003: cpu_idle: state=0 cpu_id=0
34679              sh-13719 (13719) [002] d.H2 29484.317178: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34680              sh-13719 (13719) [002] d.H2 29484.317201: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=002
34681              sh-13719 (13719) [002] d.H3 29484.317230: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
34682          <idle>-0     (-----) [000] .n.1 29484.317237: cpu_idle: state=4294967295 cpu_id=0
34683          <idle>-0     (-----) [000] d..2 29484.317252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34684         sugov:0-559   (  559) [000] .... 29484.317292: clk_set_rate: pwrcl_clk 825600000
34685         sugov:0-559   (  559) [000] .... 29484.317305: clk_set_rate: cpu3_pwrcl_clk 652800000
34686         sugov:0-559   (  559) [000] .... 29484.317316: clk_set_rate: cpu2_pwrcl_clk 652800000
34687         sugov:0-559   (  559) [000] .... 29484.317325: clk_set_rate: cpu1_pwrcl_clk 652800000
34688         sugov:0-559   (  559) [000] .... 29484.317333: clk_set_rate: cpu0_pwrcl_clk 825600000
34689         sugov:0-559   (  559) [000] .... 29484.317345: cpu_frequency: state=825600 cpu_id=0
34690         sugov:0-559   (  559) [000] .... 29484.317378: cpu_frequency: state=825600 cpu_id=1
34691         sugov:0-559   (  559) [000] .... 29484.317385: cpu_frequency: state=825600 cpu_id=2
34692         sugov:0-559   (  559) [000] .... 29484.317389: cpu_frequency: state=825600 cpu_id=3
34693         sugov:0-559   (  559) [000] d..2 29484.317424: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34694          <idle>-0     (-----) [000] d..1 29484.317432: cpu_idle: state=0 cpu_id=0
34695          <idle>-0     (-----) [004] dnh2 29484.317891: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34696          <idle>-0     (-----) [004] .n.1 29484.317900: cpu_idle: state=4294967295 cpu_id=4
34697          <idle>-0     (-----) [004] d..2 29484.317912: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34698         sugov:4-560   (  560) [004] d..2 29484.317934: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34699          <idle>-0     (-----) [004] d..1 29484.317944: cpu_idle: state=2 cpu_id=4
34700          <idle>-0     (-----) [000] d.s2 29484.320420: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34701              sh-13719 (13719) [002] d.s4 29484.320428: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34702          <idle>-0     (-----) [000] dns3 29484.320443: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34703          <idle>-0     (-----) [000] .n.1 29484.320455: cpu_idle: state=4294967295 cpu_id=0
34704              sh-13719 (13719) [002] d.s5 29484.320461: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34705          <idle>-0     (-----) [000] d..2 29484.320469: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34706              sh-13719 (13719) [002] d.s4 29484.320478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34707     rcu_preempt-7     (    7) [000] d..2 29484.320489: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34708              sh-13719 (13719) [002] d.s5 29484.320511: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34709  kworker/u16:10-23868 (23868) [000] d..2 29484.320521: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34710     rcu_preempt-7     (    7) [000] d..2 29484.320530: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34711     rcu_preempt-7     (    7) [000] d..3 29484.320548: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34712     rcu_preempt-7     (    7) [000] d..2 29484.320558: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
34713         rcuop/2-29    (   29) [000] d..2 29484.320574: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34714  kworker/u16:10-23868 (23868) [000] .... 29484.320625: clk_set_rate: l3_cluster0_vote_clk 576000000
34715  kworker/u16:10-23868 (23868) [000] .... 29484.320630: clk_set_rate: l3_clk 576000000
34716  kworker/u16:10-23868 (23868) [000] d..2 29484.320848: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
34717          <idle>-0     (-----) [000] d..1 29484.320864: cpu_idle: state=2 cpu_id=0
34718          <idle>-0     (-----) [003] d.s3 29484.321014: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34719          <idle>-0     (-----) [003] d.s4 29484.321028: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34720          <idle>-0     (-----) [003] d.s4 29484.321038: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34721          <idle>-0     (-----) [003] ...1 29484.321051: cpu_idle: state=4294967295 cpu_id=3
34722          <idle>-0     (-----) [003] d..1 29484.321058: cpu_idle: state=2 cpu_id=3
34723          <idle>-0     (-----) [000] .n.1 29484.321169: cpu_idle: state=4294967295 cpu_id=0
34724          <idle>-0     (-----) [000] d..2 29484.321189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34725  kworker/u16:10-23868 (23868) [000] d..2 29484.321247: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34726          <idle>-0     (-----) [000] d..1 29484.321264: cpu_idle: state=0 cpu_id=0
34727              sh-13719 (13719) [002] d..2 29484.321965: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34728              sh-13719 (13719) [002] d..3 29484.321996: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34729          <idle>-0     (-----) [000] .n.1 29484.322003: cpu_idle: state=4294967295 cpu_id=0
34730          <idle>-0     (-----) [000] d..2 29484.322014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
34731         rcuop/2-29    (   29) [000] d..2 29484.322021: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34732         rcuop/2-29    (   29) [000] d..3 29484.322043: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34733         rcuop/2-29    (   29) [000] d..2 29484.322053: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34734     rcu_preempt-7     (    7) [000] d..2 29484.322074: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34735          <idle>-0     (-----) [000] d..1 29484.322085: cpu_idle: state=0 cpu_id=0
34736              sh-13719 (13719) [002] d..2 29484.324823: sched_waking: comm=shell svc 13719 pid=13720 prio=120 target_cpu=000
34737              sh-13719 (13719) [002] d..3 29484.324850: sched_wakeup: comm=shell svc 13719 pid=13720 prio=120 target_cpu=002
34738              sh-13719 (13719) [002] d..2 29484.324882: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=S ==> next_comm=shell svc 13719 next_pid=13720 next_prio=120
34739 shell svc 13719-13720 ( 1007) [002] d..2 29484.324908: sched_waking: comm=sh pid=13719 prio=120 target_cpu=002
34740 shell svc 13719-13720 ( 1007) [002] d..3 29484.324919: sched_wakeup: comm=sh pid=13719 prio=120 target_cpu=002
34741 shell svc 13719-13720 ( 1007) [002] d..2 29484.324934: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
34742 shell svc 13719-13720 ( 1007) [002] d..3 29484.324960: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
34743          <idle>-0     (-----) [000] .n.1 29484.324965: cpu_idle: state=4294967295 cpu_id=0
34744          <idle>-0     (-----) [000] d..2 29484.324979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
34745 shell svc 13719-13720 ( 1007) [002] d..2 29484.324982: sched_switch: prev_comm=shell svc 13719 prev_pid=13720 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13719 next_prio=120
34746              sh-13719 (13719) [002] d..2 29484.325015: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34747          <idle>-0     (-----) [002] d..1 29484.325035: cpu_idle: state=2 cpu_id=2
34748            adbd-1007  ( 1007) [000] d..1 29484.325094: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
34749            adbd-1007  ( 1007) [000] d..2 29484.325142: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
34750            adbd-1007  ( 1007) [000] d..2 29484.325209: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34751            adbd-23485 ( 1007) [000] d..2 29484.325305: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34752          <idle>-0     (-----) [000] d.h4 29484.325331: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34753          <idle>-0     (-----) [000] dnh5 29484.325350: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34754          <idle>-0     (-----) [000] d..2 29484.325365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34755   kworker/u17:1-18284 (18284) [000] d..2 29484.325381: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34756   kworker/u17:1-18284 (18284) [000] d..3 29484.325392: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34757   kworker/u17:1-18284 (18284) [000] d..2 29484.325418: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34758     kworker/0:0-13450 (13450) [000] d..2 29484.325429: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
34759     kworker/0:0-13450 (13450) [000] d..3 29484.325444: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
34760     kworker/0:0-13450 (13450) [000] d..2 29484.325461: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34761            adbd-23485 ( 1007) [000] d..2 29484.325538: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34762          <idle>-0     (-----) [000] d.h4 29484.325561: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34763          <idle>-0     (-----) [000] dnh5 29484.325572: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34764          <idle>-0     (-----) [000] d..2 29484.325585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34765   kworker/u17:1-18284 (18284) [000] d..2 29484.325598: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34766   kworker/u17:1-18284 (18284) [000] d..3 29484.325607: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34767   kworker/u17:1-18284 (18284) [000] d..2 29484.325632: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34768     kworker/0:0-13450 (13450) [000] d..2 29484.325642: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
34769     kworker/0:0-13450 (13450) [000] d..3 29484.325656: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
34770     kworker/0:0-13450 (13450) [000] d..2 29484.325672: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34771            adbd-23485 ( 1007) [000] d.h2 29484.325736: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34772            adbd-23485 ( 1007) [000] dnh3 29484.325753: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34773            adbd-23485 ( 1007) [000] d..2 29484.325767: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34774   kworker/u17:1-18284 (18284) [000] d..2 29484.325781: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34775   kworker/u17:1-18284 (18284) [000] d..3 29484.325789: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34776   kworker/u17:1-18284 (18284) [000] d..2 29484.325814: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34777     kworker/0:0-13450 (13450) [000] d..2 29484.325827: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
34778     kworker/0:0-13450 (13450) [000] d..3 29484.325845: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
34779     kworker/0:0-13450 (13450) [000] d..2 29484.325861: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34780            adbd-23484 ( 1007) [000] d..2 29484.325883: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
34781            adbd-23484 ( 1007) [000] d..3 29484.325899: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
34782            adbd-23484 ( 1007) [000] d..2 29484.325971: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34783            adbd-23485 ( 1007) [000] d..2 29484.326001: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
34784            adbd-1007  ( 1007) [000] d..2 29484.326124: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34785          <idle>-0     (-----) [000] d..1 29484.326137: cpu_idle: state=0 cpu_id=0
34786          <idle>-0     (-----) [000] d.h3 29484.326324: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34787          <idle>-0     (-----) [000] dnh4 29484.326336: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34788          <idle>-0     (-----) [000] .n.1 29484.326346: cpu_idle: state=4294967295 cpu_id=0
34789          <idle>-0     (-----) [000] d..2 29484.326354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34790   kworker/u17:1-18284 (18284) [000] d..2 29484.326368: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34791   kworker/u17:1-18284 (18284) [000] d..3 29484.326378: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34792   kworker/u17:1-18284 (18284) [000] d..2 29484.326403: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34793     kworker/0:0-13450 (13450) [000] d..2 29484.326416: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
34794     kworker/0:0-13450 (13450) [000] d..3 29484.326432: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
34795     kworker/0:0-13450 (13450) [000] d..2 29484.326448: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34796            adbd-23484 ( 1007) [000] d..2 29484.326531: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34797          <idle>-0     (-----) [000] d.h4 29484.326554: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34798          <idle>-0     (-----) [000] dnh5 29484.326565: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34799          <idle>-0     (-----) [000] d..2 29484.326579: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34800   kworker/u17:1-18284 (18284) [000] d..2 29484.326592: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34801   kworker/u17:1-18284 (18284) [000] d..3 29484.326601: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34802   kworker/u17:1-18284 (18284) [000] d..2 29484.326625: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34803     kworker/0:0-13450 (13450) [000] d..2 29484.326644: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
34804     kworker/0:0-13450 (13450) [000] d..3 29484.326660: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
34805     kworker/0:0-13450 (13450) [000] d..2 29484.326676: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34806            adbd-23484 ( 1007) [000] d..2 29484.326694: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
34807            adbd-23484 ( 1007) [000] d..3 29484.326704: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
34808            adbd-23484 ( 1007) [000] d..2 29484.326773: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
34809            adbd-1007  ( 1007) [000] d..2 29484.326846: sched_waking: comm=shell svc 13719 pid=13720 prio=120 target_cpu=002
34810            adbd-1007  ( 1007) [000] d..3 29484.326866: sched_wakeup: comm=shell svc 13719 pid=13720 prio=120 target_cpu=000
34811            adbd-1007  ( 1007) [000] d..1 29484.326884: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
34812            adbd-1007  ( 1007) [000] d..2 29484.326912: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
34813            adbd-1007  ( 1007) [000] d..2 29484.326970: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13719 next_pid=13720 next_prio=120
34814 shell svc 13719-13720 ( 1007) [000] d..2 29484.327004: sched_waking: comm=sh pid=13719 prio=120 target_cpu=002
34815 shell svc 13719-13720 ( 1007) [000] d..3 29484.327022: sched_wakeup: comm=sh pid=13719 prio=120 target_cpu=000
34816          <idle>-0     (-----) [001] .n.1 29484.327059: cpu_idle: state=4294967295 cpu_id=1
34817 shell svc 13719-13720 ( 1007) [000] d.s2 29484.327087: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
34818          <idle>-0     (-----) [001] d..2 29484.327091: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
34819 shell svc 13719-13720 ( 1007) [000] d.s3 29484.327130: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34820 shell svc 13719-13720 ( 1007) [000] d..2 29484.327151: sched_switch: prev_comm=shell svc 13719 prev_pid=13720 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13719 next_prio=120
34821            adbd-23485 ( 1007) [001] d..2 29484.327186: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34822              sh-13719 (13719) [000] d.h2 29484.327193: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34823     rcu_preempt-7     (    7) [001] d..2 29484.327233: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34824              sh-13719 (13719) [000] d.h3 29484.327245: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
34825          <idle>-0     (-----) [001] d..2 29484.327258: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34826   kworker/u17:1-18284 (18284) [001] d..2 29484.327278: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34827   kworker/u17:1-18284 (18284) [001] d..3 29484.327299: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34828   kworker/u17:1-18284 (18284) [001] d..2 29484.327326: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34829     kworker/1:1-13678 (13678) [001] d..2 29484.327339: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
34830     kworker/1:1-13678 (13678) [001] d..3 29484.327359: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
34831     kworker/1:1-13678 (13678) [001] d..2 29484.327376: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34832            adbd-23485 ( 1007) [001] d..2 29484.327408: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34833          <idle>-0     (-----) [001] d..1 29484.327424: cpu_idle: state=2 cpu_id=1
34834              sh-13719 (13719) [000] d..2 29484.328270: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13721 next_prio=120
34835              sh-13721 (13721) [000] ...1 29484.328665: tracing_mark_write: trace_event_clock_sync: name=d6fe9777-885c-49fd-9f66-9dbda1b20fdd
34836              sh-13721 (13721) [000] d..2 29484.328682: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
34837              sh-13721 (13721) [000] d..3 29484.328721: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
34838          <idle>-0     (-----) [001] .n.1 29484.328856: cpu_idle: state=4294967295 cpu_id=1
34839          <idle>-0     (-----) [001] d..2 29484.328878: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
34840         rcuop/0-10    (   10) [001] d..2 29484.328911: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34841          <idle>-0     (-----) [001] d..1 29484.328923: cpu_idle: state=0 cpu_id=1
34842              sh-13721 (13721) [000] d..3 29484.329475: sched_waking: comm=sh pid=13719 prio=120 target_cpu=000
34843              sh-13721 (13721) [000] d..4 29484.329508: sched_wakeup: comm=sh pid=13719 prio=120 target_cpu=001
34844          <idle>-0     (-----) [001] .n.1 29484.329513: cpu_idle: state=4294967295 cpu_id=1
34845          <idle>-0     (-----) [001] d..2 29484.329525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13719 next_prio=120
34846              sh-13721 (13721) [000] d..2 29484.329541: sched_switch: prev_comm=sh prev_pid=13721 prev_prio=120 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
34847          <idle>-0     (-----) [000] d..1 29484.329574: cpu_idle: state=0 cpu_id=0
34848              sh-13719 (13719) [001] d..2 29484.329693: sched_waking: comm=shell svc 13719 pid=13720 prio=120 target_cpu=000
34849              sh-13719 (13719) [001] d..3 29484.329721: sched_wakeup: comm=shell svc 13719 pid=13720 prio=120 target_cpu=001
34850              sh-13719 (13719) [001] d.s2 29484.330426: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34851              sh-13719 (13719) [001] d.s3 29484.330454: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34852          <idle>-0     (-----) [000] .n.1 29484.330462: cpu_idle: state=4294967295 cpu_id=0
34853          <idle>-0     (-----) [000] d..2 29484.330478: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34854              sh-13719 (13719) [001] d..2 29484.330674: sched_switch: prev_comm=sh prev_pid=13719 prev_prio=120 prev_state=x ==> next_comm=shell svc 13719 next_pid=13720 next_prio=120
34855  kworker/u16:10-23868 (23868) [000] d..2 29484.330707: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
34856 shell svc 13719-13720 ( 1007) [001] d..2 29484.330718: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
34857          <idle>-0     (-----) [000] d..1 29484.330724: cpu_idle: state=0 cpu_id=0
34858 shell svc 13719-13720 ( 1007) [001] d..3 29484.330739: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
34859          <idle>-0     (-----) [003] d.s3 29484.330870: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34860          <idle>-0     (-----) [003] d.s4 29484.330885: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34861          <idle>-0     (-----) [003] d.s4 29484.330895: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34862          <idle>-0     (-----) [000] .n.1 29484.330902: cpu_idle: state=4294967295 cpu_id=0
34863          <idle>-0     (-----) [003] ...1 29484.330910: cpu_idle: state=4294967295 cpu_id=3
34864          <idle>-0     (-----) [000] d..2 29484.330914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34865          <idle>-0     (-----) [003] d..1 29484.330919: cpu_idle: state=2 cpu_id=3
34866  kworker/u16:10-23868 (23868) [000] .... 29484.330973: clk_set_rate: l3_cluster0_vote_clk 403200000
34867  kworker/u16:10-23868 (23868) [000] .... 29484.330979: clk_set_rate: l3_clk 403200000
34868  kworker/u16:10-23868 (23868) [000] d..2 29484.331048: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34869          <idle>-0     (-----) [000] d..1 29484.331063: cpu_idle: state=0 cpu_id=0
34870 shell svc 13719-13720 ( 1007) [001] d..2 29484.331087: sched_switch: prev_comm=shell svc 13719 prev_pid=13720 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=1007 next_prio=120
34871            adbd-1007  ( 1007) [001] d..1 29484.331201: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
34872            adbd-1007  ( 1007) [001] d..2 29484.331229: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
34873            adbd-1007  ( 1007) [001] d..2 29484.331338: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34874            adbd-23485 ( 1007) [001] d..2 29484.331439: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34875          <idle>-0     (-----) [000] d.h3 29484.331449: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=001
34876          <idle>-0     (-----) [001] d..1 29484.331455: cpu_idle: state=0 cpu_id=1
34877          <idle>-0     (-----) [000] dnh4 29484.331487: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34878          <idle>-0     (-----) [000] .n.1 29484.331498: cpu_idle: state=4294967295 cpu_id=0
34879          <idle>-0     (-----) [000] d..2 29484.331511: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34880   kworker/u17:1-18284 (18284) [000] d..2 29484.331531: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34881   kworker/u17:1-18284 (18284) [000] d..3 29484.331541: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34882   kworker/u17:1-18284 (18284) [000] d..2 29484.331568: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34883     kworker/0:0-13450 (13450) [000] d..2 29484.331583: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
34884     kworker/0:0-13450 (13450) [000] d..3 29484.331619: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
34885     kworker/0:0-13450 (13450) [000] d..2 29484.331637: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34886            adbd-23485 ( 1007) [000] d..2 29484.331755: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34887          <idle>-0     (-----) [000] d.h4 29484.331781: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34888          <idle>-0     (-----) [000] dnh5 29484.331793: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34889          <idle>-0     (-----) [000] d..2 29484.331807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34890   kworker/u17:1-18284 (18284) [000] d..2 29484.331821: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34891   kworker/u17:1-18284 (18284) [000] d..3 29484.331832: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34892   kworker/u17:1-18284 (18284) [000] d..2 29484.331856: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34893     kworker/0:0-13450 (13450) [000] d..2 29484.331866: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
34894     kworker/0:0-13450 (13450) [000] d..3 29484.331882: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
34895     kworker/0:0-13450 (13450) [000] d..2 29484.331898: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34896            adbd-23485 ( 1007) [000] d..2 29484.331992: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34897          <idle>-0     (-----) [000] d.h4 29484.332017: sched_waking: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34898          <idle>-0     (-----) [000] dnh5 29484.332028: sched_wakeup: comm=kworker/u17:1 pid=18284 prio=100 target_cpu=000
34899          <idle>-0     (-----) [000] d..2 29484.332042: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=18284 next_prio=100
34900   kworker/u17:1-18284 (18284) [000] d..2 29484.332055: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34901   kworker/u17:1-18284 (18284) [000] d..3 29484.332064: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34902   kworker/u17:1-18284 (18284) [000] d.h2 29484.332097: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
34903   kworker/u17:1-18284 (18284) [000] d.h3 29484.332123: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
34904   kworker/u17:1-18284 (18284) [000] d..2 29484.332161: sched_switch: prev_comm=kworker/u17:1 prev_pid=18284 prev_prio=100 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
34905   kworker/u17:2-23076 (23076) [000] d..2 29484.332174: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34906     kworker/0:0-13450 (13450) [000] d..2 29484.332184: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
34907     kworker/0:0-13450 (13450) [000] d..3 29484.332200: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
34908     kworker/0:0-13450 (13450) [000] d..2 29484.332215: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
34909     kworker/0:0-13450 (13450) [000] d..3 29484.332230: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
34910     kworker/0:0-13450 (13450) [000] d..2 29484.332244: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34911            adbd-23484 ( 1007) [000] d..2 29484.332269: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
34912            adbd-23484 ( 1007) [000] d..3 29484.332307: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
34913            adbd-23484 ( 1007) [000] d..2 29484.332385: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
34914            adbd-1007  ( 1007) [000] d.h4 29484.332408: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
34915            adbd-1007  ( 1007) [000] dnh5 29484.332426: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
34916            adbd-1007  ( 1007) [000] d..2 29484.332439: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
34917   kworker/u17:2-23076 (23076) [000] d..2 29484.332453: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34918   kworker/u17:2-23076 (23076) [000] d..3 29484.332463: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34919   kworker/u17:2-23076 (23076) [000] d..2 29484.332487: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34920     kworker/0:0-13450 (13450) [000] d..2 29484.332500: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
34921     kworker/0:0-13450 (13450) [000] d..3 29484.332516: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
34922     kworker/0:0-13450 (13450) [000] d..2 29484.332532: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
34923            adbd-23484 ( 1007) [000] d..2 29484.332622: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
34924            adbd-1007  ( 1007) [000] d..2 29484.332769: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34925            adbd-23485 ( 1007) [000] d.h3 29484.332853: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
34926            adbd-23485 ( 1007) [000] dnh4 29484.332879: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
34927            adbd-23485 ( 1007) [000] d..2 29484.332893: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
34928   kworker/u17:2-23076 (23076) [000] d..2 29484.332907: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34929   kworker/u17:2-23076 (23076) [000] d..3 29484.332916: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
34930   kworker/u17:2-23076 (23076) [000] d..2 29484.332941: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
34931     kworker/0:0-13450 (13450) [000] d..2 29484.332963: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
34932            adbd-23485 ( 1007) [000] d..2 29484.333000: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34933          <idle>-0     (-----) [000] d..1 29484.333021: cpu_idle: state=0 cpu_id=0
34934          <idle>-0     (-----) [001] d.s2 29484.333793: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34935          <idle>-0     (-----) [001] dns3 29484.333815: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34936          <idle>-0     (-----) [001] .n.1 29484.333828: cpu_idle: state=4294967295 cpu_id=1
34937          <idle>-0     (-----) [001] d..2 29484.333839: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34938     rcu_preempt-7     (    7) [001] d..2 29484.333845: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
34939     rcu_preempt-7     (    7) [001] d..3 29484.333882: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
34940     rcu_preempt-7     (    7) [001] d..2 29484.333898: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
34941         rcuop/2-29    (   29) [001] d..2 29484.333934: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34942          <idle>-0     (-----) [001] d..1 29484.333950: cpu_idle: state=2 cpu_id=1
34943          <idle>-0     (-----) [000] ...1 29484.334431: cpu_idle: state=4294967295 cpu_id=0
34944          <idle>-0     (-----) [000] d..1 29484.334437: cpu_idle: state=2 cpu_id=0
34945          <idle>-0     (-----) [001] d.H3 29484.340727: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
34946          <idle>-0     (-----) [001] d.H3 29484.340750: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
34947          <idle>-0     (-----) [001] d.H4 29484.340766: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
34948          <idle>-0     (-----) [001] d.s2 29484.340775: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34949          <idle>-0     (-----) [001] dns3 29484.340795: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34950          <idle>-0     (-----) [001] dns3 29484.340803: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34951          <idle>-0     (-----) [001] dns4 29484.340813: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34952          <idle>-0     (-----) [001] dns3 29484.340817: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34953          <idle>-0     (-----) [001] dns4 29484.340830: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34954          <idle>-0     (-----) [001] .n.1 29484.340853: cpu_idle: state=4294967295 cpu_id=1
34955          <idle>-0     (-----) [001] d..2 29484.340869: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34956     rcu_preempt-7     (    7) [001] d..2 29484.340880: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
34957     rcu_preempt-7     (    7) [001] d..3 29484.340897: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
34958     rcu_preempt-7     (    7) [001] d..2 29484.340911: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
34959          <idle>-0     (-----) [000] .n.1 29484.340917: cpu_idle: state=4294967295 cpu_id=0
34960         rcuop/0-10    (   10) [001] d..2 29484.340925: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
34961          <idle>-0     (-----) [000] d..2 29484.340944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
34962         sugov:0-559   (  559) [000] .... 29484.340976: clk_set_rate: pwrcl_clk 902400000
34963     kworker/1:1-13678 (13678) [001] d..2 29484.340982: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34964         sugov:0-559   (  559) [000] .... 29484.340986: clk_set_rate: cpu3_pwrcl_clk 825600000
34965         sugov:0-559   (  559) [000] .... 29484.340996: clk_set_rate: cpu2_pwrcl_clk 825600000
34966          <idle>-0     (-----) [001] d..1 29484.341001: cpu_idle: state=0 cpu_id=1
34967         sugov:0-559   (  559) [000] .... 29484.341004: clk_set_rate: cpu1_pwrcl_clk 825600000
34968         sugov:0-559   (  559) [000] .... 29484.341012: clk_set_rate: cpu0_pwrcl_clk 902400000
34969         sugov:0-559   (  559) [000] .... 29484.341022: cpu_frequency: state=902400 cpu_id=0
34970         sugov:0-559   (  559) [000] .... 29484.341045: cpu_frequency: state=902400 cpu_id=1
34971         sugov:0-559   (  559) [000] .... 29484.341049: cpu_frequency: state=902400 cpu_id=2
34972         sugov:0-559   (  559) [000] .... 29484.341054: cpu_frequency: state=902400 cpu_id=3
34973         sugov:0-559   (  559) [000] d..2 29484.341079: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34974  kworker/u16:10-23868 (23868) [000] .... 29484.341122: clk_set_rate: l3_cluster0_vote_clk 300000000
34975  kworker/u16:10-23868 (23868) [000] .... 29484.341127: clk_set_rate: l3_clk 300000000
34976  kworker/u16:10-23868 (23868) [000] d..2 29484.341344: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
34977          <idle>-0     (-----) [000] d..1 29484.341370: cpu_idle: state=0 cpu_id=0
34978          <idle>-0     (-----) [004] dnh2 29484.341472: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
34979          <idle>-0     (-----) [004] .n.1 29484.341482: cpu_idle: state=4294967295 cpu_id=4
34980          <idle>-0     (-----) [004] d..2 29484.341495: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
34981         sugov:4-560   (  560) [004] d..2 29484.341518: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34982          <idle>-0     (-----) [004] d..1 29484.341529: cpu_idle: state=2 cpu_id=4
34983          <idle>-0     (-----) [003] d.s3 29484.341547: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
34984          <idle>-0     (-----) [003] d.s4 29484.341595: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
34985          <idle>-0     (-----) [003] dns4 29484.341603: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
34986          <idle>-0     (-----) [003] .n.1 29484.341614: cpu_idle: state=4294967295 cpu_id=3
34987          <idle>-0     (-----) [003] d..2 29484.341634: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
34988  kworker/u16:10-23868 (23868) [003] d..2 29484.341711: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34989          <idle>-0     (-----) [003] d..1 29484.341728: cpu_idle: state=2 cpu_id=3
34990          <idle>-0     (-----) [000] ...1 29484.342781: cpu_idle: state=4294967295 cpu_id=0
34991          <idle>-0     (-----) [000] d..1 29484.342786: cpu_idle: state=2 cpu_id=0
34992          <idle>-0     (-----) [001] d.s2 29484.347088: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34993          <idle>-0     (-----) [001] dns3 29484.347105: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
34994          <idle>-0     (-----) [001] dns3 29484.347113: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34995          <idle>-0     (-----) [001] dns4 29484.347120: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
34996          <idle>-0     (-----) [001] .n.1 29484.347132: cpu_idle: state=4294967295 cpu_id=1
34997          <idle>-0     (-----) [001] d..2 29484.347145: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34998     rcu_preempt-7     (    7) [001] d..2 29484.347154: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
34999     rcu_preempt-7     (    7) [001] d..3 29484.347172: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
35000     rcu_preempt-7     (    7) [001] d..2 29484.347186: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
35001         rcuop/2-29    (   29) [001] d..2 29484.347209: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
35002     kworker/1:1-13678 (13678) [001] d..2 29484.347220: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35003     kworker/1:1-13678 (13678) [001] d..3 29484.347234: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35004     kworker/1:1-13678 (13678) [001] d..2 29484.347242: sched_waking: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
35005     kworker/1:1-13678 (13678) [001] d..3 29484.347256: sched_wakeup: comm=kworker/2:2 pid=13636 prio=120 target_cpu=002
35006     kworker/1:1-13678 (13678) [001] d..2 29484.347306: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35007          <idle>-0     (-----) [001] d..1 29484.347322: cpu_idle: state=0 cpu_id=1
35008          <idle>-0     (-----) [000] .n.1 29484.347388: cpu_idle: state=4294967295 cpu_id=0
35009          <idle>-0     (-----) [000] d..2 29484.347421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35010          <idle>-0     (-----) [002] .n.1 29484.347441: cpu_idle: state=4294967295 cpu_id=2
35011          <idle>-0     (-----) [002] d..2 29484.347470: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:2 next_pid=13636 next_prio=120
35012     kworker/0:0-13450 (13450) [000] d..2 29484.347472: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35013          <idle>-0     (-----) [000] d..1 29484.347491: cpu_idle: state=2 cpu_id=0
35014     kworker/2:2-13636 (13636) [002] d..2 29484.347517: sched_switch: prev_comm=kworker/2:2 prev_pid=13636 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35015          <idle>-0     (-----) [002] d..1 29484.347532: cpu_idle: state=2 cpu_id=2
35016          <idle>-0     (-----) [001] d.s2 29484.353753: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35017          <idle>-0     (-----) [001] dns3 29484.353770: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35018          <idle>-0     (-----) [001] dns3 29484.353776: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35019          <idle>-0     (-----) [001] dns4 29484.353808: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35020          <idle>-0     (-----) [001] .n.1 29484.353822: cpu_idle: state=4294967295 cpu_id=1
35021          <idle>-0     (-----) [001] d..2 29484.353836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35022     rcu_preempt-7     (    7) [001] d..2 29484.353845: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35023     rcu_preempt-7     (    7) [001] d..3 29484.353860: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35024     rcu_preempt-7     (    7) [001] d..2 29484.353870: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35025         rcuop/0-10    (   10) [001] d..2 29484.353876: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
35026         rcuop/0-10    (   10) [001] d..3 29484.353916: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
35027         rcuop/0-10    (   10) [001] d..2 29484.353926: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
35028         rcuop/1-21    (   21) [001] d..2 29484.353942: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35029         rcuop/1-21    (   21) [001] d..3 29484.353956: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35030         rcuop/1-21    (   21) [001] d..2 29484.354029: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35031         rcuop/0-10    (   10) [001] d..2 29484.354035: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35032         rcuop/0-10    (   10) [001] d..3 29484.354047: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35033         rcuop/0-10    (   10) [001] d..2 29484.354059: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35034     rcu_preempt-7     (    7) [001] d..2 29484.354072: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35035  kworker/u16:10-23868 (23868) [001] d..2 29484.354379: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
35036          <idle>-0     (-----) [001] d..1 29484.354400: cpu_idle: state=2 cpu_id=1
35037          <idle>-0     (-----) [003] d.s3 29484.354556: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35038          <idle>-0     (-----) [003] d.s4 29484.354572: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
35039          <idle>-0     (-----) [003] d.s4 29484.354583: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35040          <idle>-0     (-----) [003] ...1 29484.354598: cpu_idle: state=4294967295 cpu_id=3
35041          <idle>-0     (-----) [003] d..1 29484.354609: cpu_idle: state=2 cpu_id=3
35042          <idle>-0     (-----) [001] .n.1 29484.354739: cpu_idle: state=4294967295 cpu_id=1
35043          <idle>-0     (-----) [001] d..2 29484.354762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35044  kworker/u16:10-23868 (23868) [001] d..2 29484.354807: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35045          <idle>-0     (-----) [001] d..1 29484.354821: cpu_idle: state=0 cpu_id=1
35046          <idle>-0     (-----) [001] d.H3 29484.360519: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35047          <idle>-0     (-----) [001] d.s2 29484.360542: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35048          <idle>-0     (-----) [001] dns3 29484.360564: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35049          <idle>-0     (-----) [001] .n.1 29484.360585: cpu_idle: state=4294967295 cpu_id=1
35050          <idle>-0     (-----) [001] d..2 29484.360600: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35051     rcu_preempt-7     (    7) [001] d..2 29484.360611: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35052     rcu_preempt-7     (    7) [001] d..3 29484.360629: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35053     rcu_preempt-7     (    7) [001] d..2 29484.360641: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35054         rcuop/0-10    (   10) [001] d..2 29484.360645: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
35055         rcuop/0-10    (   10) [001] d..3 29484.360658: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
35056         rcuop/0-10    (   10) [001] d..2 29484.360667: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
35057         rcuop/1-21    (   21) [001] d..2 29484.360716: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35058          <idle>-0     (-----) [001] d..1 29484.360735: cpu_idle: state=0 cpu_id=1
35059          <idle>-0     (-----) [004] dnh2 29484.361266: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35060          <idle>-0     (-----) [004] .n.1 29484.361278: cpu_idle: state=4294967295 cpu_id=4
35061          <idle>-0     (-----) [004] d..2 29484.361293: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35062         sugov:4-560   (  560) [004] d..2 29484.361319: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35063          <idle>-0     (-----) [004] d..1 29484.361331: cpu_idle: state=2 cpu_id=4
35064          <idle>-0     (-----) [001] d..2 29484.366746: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
35065          <idle>-0     (-----) [001] dn.3 29484.366762: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
35066          <idle>-0     (-----) [001] .n.1 29484.366766: cpu_idle: state=4294967295 cpu_id=1
35067          <idle>-0     (-----) [001] d..2 29484.366780: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
35068     ksoftirqd/1-18    (   18) [001] d.s2 29484.366793: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35069     ksoftirqd/1-18    (   18) [001] d.s3 29484.366811: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35070     ksoftirqd/1-18    (   18) [001] d..2 29484.366827: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35071  kworker/u16:10-23868 (23868) [001] d..2 29484.366920: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35072          <idle>-0     (-----) [001] d..1 29484.366936: cpu_idle: state=2 cpu_id=1
35073          <idle>-0     (-----) [000] d.h3 29484.391979: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35074          <idle>-0     (-----) [000] dnh4 29484.392093: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35075          <idle>-0     (-----) [000] dnh3 29484.392282: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35076          <idle>-0     (-----) [000] dnh3 29484.392313: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
35077          <idle>-0     (-----) [000] dnh4 29484.392350: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35078          <idle>-0     (-----) [000] .n.1 29484.392365: cpu_idle: state=4294967295 cpu_id=0
35079          <idle>-0     (-----) [000] d..2 29484.392415: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35080   kworker/u17:2-23076 (23076) [000] d..2 29484.392468: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35081   kworker/u17:2-23076 (23076) [000] d..3 29484.392489: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35082          <idle>-0     (-----) [003] .n.1 29484.392523: cpu_idle: state=4294967295 cpu_id=3
35083   kworker/u17:2-23076 (23076) [000] d..2 29484.392528: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35084          <idle>-0     (-----) [003] d..2 29484.392559: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35085     kworker/0:0-13450 (13450) [000] d..2 29484.392568: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35086         sugov:0-559   (  559) [003] .... 29484.392612: clk_set_rate: pwrcl_clk 652800000
35087     kworker/0:0-13450 (13450) [000] d..3 29484.392625: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
35088         sugov:0-559   (  559) [003] .... 29484.392641: clk_set_rate: cpu3_pwrcl_clk 902400000
35089         sugov:0-559   (  559) [003] .... 29484.392652: clk_set_rate: cpu2_pwrcl_clk 902400000
35090         sugov:0-559   (  559) [003] .... 29484.392659: clk_set_rate: cpu1_pwrcl_clk 902400000
35091         sugov:0-559   (  559) [003] .... 29484.392667: clk_set_rate: cpu0_pwrcl_clk 652800000
35092     kworker/0:0-13450 (13450) [000] d..2 29484.392700: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35093          <idle>-0     (-----) [000] d..2 29484.392712: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
35094          <idle>-0     (-----) [000] dn.3 29484.392726: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
35095          <idle>-0     (-----) [000] d..2 29484.392740: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
35096     ksoftirqd/0-3     (    3) [000] d.s2 29484.392769: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35097         sugov:0-559   (  559) [003] .... 29484.392782: cpu_frequency: state=652800 cpu_id=0
35098         sugov:0-559   (  559) [003] .... 29484.392819: cpu_frequency: state=652800 cpu_id=1
35099     ksoftirqd/0-3     (    3) [000] d.s3 29484.392819: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
35100         sugov:0-559   (  559) [003] .... 29484.392824: cpu_frequency: state=652800 cpu_id=2
35101         sugov:0-559   (  559) [003] .... 29484.392829: cpu_frequency: state=652800 cpu_id=3
35102     ksoftirqd/0-3     (    3) [000] d..2 29484.392845: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35103         sugov:0-559   (  559) [003] d..2 29484.392866: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35104          <idle>-0     (-----) [004] dnh2 29484.393036: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35105          <idle>-0     (-----) [004] .n.1 29484.393047: cpu_idle: state=4294967295 cpu_id=4
35106          <idle>-0     (-----) [004] d..2 29484.393070: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35107         sugov:4-560   (  560) [004] d..2 29484.393097: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35108  kworker/u16:10-23868 (23868) [000] d..2 29484.393110: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35109          <idle>-0     (-----) [004] d..1 29484.393114: cpu_idle: state=2 cpu_id=4
35110          <idle>-0     (-----) [000] d..1 29484.393137: cpu_idle: state=2 cpu_id=0
35111            adbd-23484 ( 1007) [003] d..2 29484.393168: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35112          <idle>-0     (-----) [003] d..1 29484.393193: cpu_idle: state=2 cpu_id=3
35113          <idle>-0     (-----) [000] d.h3 29484.396327: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35114          <idle>-0     (-----) [000] dnh4 29484.396362: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35115          <idle>-0     (-----) [000] .n.1 29484.396405: cpu_idle: state=4294967295 cpu_id=0
35116          <idle>-0     (-----) [000] d..2 29484.396428: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35117   kworker/u17:2-23076 (23076) [000] d..2 29484.396452: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35118   kworker/u17:2-23076 (23076) [000] d..3 29484.396467: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35119   kworker/u17:2-23076 (23076) [000] d..2 29484.396500: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35120     kworker/0:0-13450 (13450) [000] d..2 29484.396541: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
35121     kworker/0:0-13450 (13450) [000] d..3 29484.396595: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35122     kworker/0:0-13450 (13450) [000] d..2 29484.396620: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35123            adbd-23484 ( 1007) [000] d..2 29484.396694: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35124            adbd-23484 ( 1007) [000] d..3 29484.396717: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35125            adbd-23484 ( 1007) [000] d..2 29484.396826: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35126            adbd-1007  ( 1007) [000] d.H2 29484.397210: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35127            adbd-1007  ( 1007) [000] d.H2 29484.397232: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35128            adbd-1007  ( 1007) [000] d.H3 29484.397252: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35129          <idle>-0     (-----) [003] .n.1 29484.397411: cpu_idle: state=4294967295 cpu_id=3
35130          <idle>-0     (-----) [003] d..2 29484.397440: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35131         sugov:0-559   (  559) [003] .... 29484.397470: clk_set_rate: pwrcl_clk 748800000
35132         sugov:0-559   (  559) [003] .... 29484.397483: clk_set_rate: cpu3_pwrcl_clk 652800000
35133         sugov:0-559   (  559) [003] .... 29484.397494: clk_set_rate: cpu2_pwrcl_clk 652800000
35134         sugov:0-559   (  559) [003] .... 29484.397503: clk_set_rate: cpu1_pwrcl_clk 652800000
35135         sugov:0-559   (  559) [003] .... 29484.397511: clk_set_rate: cpu0_pwrcl_clk 748800000
35136         sugov:0-559   (  559) [003] .... 29484.397521: cpu_frequency: state=748800 cpu_id=0
35137         sugov:0-559   (  559) [003] .... 29484.397542: cpu_frequency: state=748800 cpu_id=1
35138         sugov:0-559   (  559) [003] .... 29484.397548: cpu_frequency: state=748800 cpu_id=2
35139         sugov:0-559   (  559) [003] .... 29484.397553: cpu_frequency: state=748800 cpu_id=3
35140         sugov:0-559   (  559) [003] d..2 29484.397604: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35141          <idle>-0     (-----) [003] d..1 29484.397623: cpu_idle: state=2 cpu_id=3
35142          <idle>-0     (-----) [004] dnh2 29484.397932: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35143          <idle>-0     (-----) [004] .n.1 29484.397940: cpu_idle: state=4294967295 cpu_id=4
35144          <idle>-0     (-----) [004] d..2 29484.397952: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35145         sugov:4-560   (  560) [004] d..2 29484.397972: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35146          <idle>-0     (-----) [004] d..1 29484.397981: cpu_idle: state=2 cpu_id=4
35147            adbd-1007  ( 1007) [000] d..2 29484.398833: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13722 next_prio=120
35148              sh-13722 (13722) [000] d..2 29484.400358: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35149              sh-13722 (13722) [000] d..3 29484.400410: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
35150              sh-13722 (13722) [000] d.s3 29484.400462: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
35151              sh-13722 (13722) [000] d.s4 29484.400507: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35152              sh-13722 (13722) [000] d..2 29484.400529: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35153              sh-13722 (13722) [000] d..3 29484.400551: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35154          <idle>-0     (-----) [001] .n.1 29484.400580: cpu_idle: state=4294967295 cpu_id=1
35155          <idle>-0     (-----) [001] d..2 29484.400624: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
35156            adbd-1007  ( 1007) [001] d..1 29484.401103: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35157            adbd-1007  ( 1007) [001] d..2 29484.401138: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35158              sh-13722 (13722) [000] d..2 29484.401163: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
35159            adbd-1007  ( 1007) [001] d..2 29484.401304: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35160            adbd-23485 ( 1007) [000] d..2 29484.401310: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13722 next_prio=120
35161              sh-13722 (13722) [000] d.h4 29484.401338: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35162              sh-13722 (13722) [000] dnh5 29484.401370: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35163              sh-13722 (13722) [000] d..2 29484.401396: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35164   kworker/u17:2-23076 (23076) [000] d..2 29484.401426: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35165  kworker/u16:10-23868 (23868) [001] .... 29484.401439: clk_set_rate: l3_cluster0_vote_clk 403200000
35166   kworker/u17:2-23076 (23076) [000] d..3 29484.401441: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35167  kworker/u16:10-23868 (23868) [001] .... 29484.401447: clk_set_rate: l3_clk 403200000
35168   kworker/u17:2-23076 (23076) [000] d..2 29484.401468: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35169     kworker/0:0-13450 (13450) [000] d..2 29484.401497: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35170     kworker/0:0-13450 (13450) [000] d..3 29484.401518: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35171     kworker/0:0-13450 (13450) [000] d..2 29484.401543: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35172            adbd-23485 ( 1007) [000] d..2 29484.401583: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13722 next_prio=120
35173  kworker/u16:10-23868 (23868) [001] d..2 29484.401771: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35174         rcuop/0-10    (   10) [001] d..2 29484.401784: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35175         rcuop/0-10    (   10) [001] d..3 29484.401853: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
35176              sh-13722 (13722) [000] d..2 29484.401871: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35177         rcuop/0-10    (   10) [001] d..2 29484.401890: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13723 next_prio=120
35178     rcu_preempt-7     (    7) [000] d..2 29484.401904: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13722 next_prio=120
35179              sh-13722 (13722) [000] d.h2 29484.401931: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35180          <idle>-0     (-----) [003] d.s3 29484.401967: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35181              sh-13722 (13722) [000] dnh3 29484.401974: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35182              sh-13722 (13722) [000] d..2 29484.401990: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35183          <idle>-0     (-----) [003] d.s4 29484.402006: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
35184   kworker/u17:2-23076 (23076) [000] d..2 29484.402009: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35185          <idle>-0     (-----) [003] dns4 29484.402016: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35186   kworker/u17:2-23076 (23076) [000] d..3 29484.402019: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35187 shell svc 13722-13723 ( 1007) [001] d..2 29484.402025: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35188          <idle>-0     (-----) [003] .n.1 29484.402026: cpu_idle: state=4294967295 cpu_id=3
35189          <idle>-0     (-----) [003] d..2 29484.402043: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35190   kworker/u17:2-23076 (23076) [000] d..2 29484.402046: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35191          <idle>-0     (-----) [001] d..1 29484.402057: cpu_idle: state=2 cpu_id=1
35192     kworker/0:0-13450 (13450) [000] d..2 29484.402062: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35193     kworker/0:0-13450 (13450) [000] d..3 29484.402113: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
35194  kworker/u16:10-23868 (23868) [003] d..2 29484.402132: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35195     kworker/0:0-13450 (13450) [000] d..2 29484.402134: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13722 next_prio=120
35196            adbd-23484 ( 1007) [003] d..2 29484.402268: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35197              sh-13722 (13722) [000] d.h2 29484.402274: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35198          <idle>-0     (-----) [003] d..1 29484.402287: cpu_idle: state=2 cpu_id=3
35199              sh-13722 (13722) [000] d.h3 29484.402311: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
35200          <idle>-0     (-----) [001] .n.1 29484.402458: cpu_idle: state=4294967295 cpu_id=1
35201          <idle>-0     (-----) [001] d..2 29484.402482: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35202   kworker/u17:2-23076 (23076) [001] d..2 29484.402506: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
35203   kworker/u17:2-23076 (23076) [001] d..3 29484.402527: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
35204   kworker/u17:2-23076 (23076) [001] d..2 29484.402558: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
35205     kworker/1:1-13678 (13678) [001] d..2 29484.402578: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
35206     kworker/1:1-13678 (13678) [001] d..3 29484.402627: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
35207     kworker/1:1-13678 (13678) [001] d..2 29484.402648: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35208            adbd-23484 ( 1007) [001] d..2 29484.402689: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
35209            adbd-23484 ( 1007) [001] d..3 29484.402703: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
35210            adbd-23484 ( 1007) [001] d..2 29484.402790: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35211            adbd-1007  ( 1007) [001] d..2 29484.402898: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
35212            adbd-1007  ( 1007) [001] d..3 29484.402919: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
35213            adbd-1007  ( 1007) [001] d..1 29484.402937: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35214            adbd-1007  ( 1007) [001] d..2 29484.402963: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35215              sh-13722 (13722) [000] d..2 29484.402985: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
35216            adbd-1007  ( 1007) [001] d..2 29484.403070: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35217            adbd-23485 ( 1007) [000] d..2 29484.403090: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13722 next_prio=120
35218              sh-13722 (13722) [000] d.h4 29484.403116: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
35219              sh-13722 (13722) [000] d.h5 29484.403147: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
35220 shell svc 13722-13723 ( 1007) [001] d..2 29484.403163: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35221   kworker/u17:2-23076 (23076) [001] d..2 29484.403189: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
35222   kworker/u17:2-23076 (23076) [001] d..3 29484.403203: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
35223   kworker/u17:2-23076 (23076) [001] d..2 29484.403232: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
35224     kworker/1:1-13678 (13678) [001] d..2 29484.403245: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35225     kworker/1:1-13678 (13678) [001] d..3 29484.403292: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
35226     kworker/1:1-13678 (13678) [001] d..2 29484.403311: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35227            adbd-23485 ( 1007) [001] d..2 29484.403350: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35228          <idle>-0     (-----) [001] d..1 29484.403369: cpu_idle: state=2 cpu_id=1
35229              sh-13722 (13722) [000] d.s2 29484.403768: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35230              sh-13722 (13722) [000] d.s3 29484.403809: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35231          <idle>-0     (-----) [003] .n.1 29484.403958: cpu_idle: state=4294967295 cpu_id=3
35232          <idle>-0     (-----) [003] d..2 29484.403987: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35233  kworker/u16:10-23868 (23868) [003] d..2 29484.404206: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
35234          <idle>-0     (-----) [003] d.s4 29484.404251: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35235          <idle>-0     (-----) [003] d.s5 29484.404263: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
35236          <idle>-0     (-----) [003] dns5 29484.404270: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35237          <idle>-0     (-----) [003] d..2 29484.404285: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35238  kworker/u16:10-23868 (23868) [003] d..2 29484.404368: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35239          <idle>-0     (-----) [003] d..1 29484.404385: cpu_idle: state=2 cpu_id=3
35240              sh-13722 (13722) [000] d.s1 29484.407097: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
35241              sh-13722 (13722) [000] d.s2 29484.407132: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35242          <idle>-0     (-----) [001] .n.1 29484.407279: cpu_idle: state=4294967295 cpu_id=1
35243          <idle>-0     (-----) [001] d..2 29484.407307: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35244     rcu_preempt-7     (    7) [001] d..2 29484.407360: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35245          <idle>-0     (-----) [001] d..1 29484.407376: cpu_idle: state=2 cpu_id=1
35246              sh-13722 (13722) [000] d.s2 29484.410431: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35247              sh-13722 (13722) [000] d.s3 29484.410472: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35248          <idle>-0     (-----) [003] .n.1 29484.410619: cpu_idle: state=4294967295 cpu_id=3
35249          <idle>-0     (-----) [003] d..2 29484.410651: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35250  kworker/u16:10-23868 (23868) [003] d..2 29484.410913: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
35251          <idle>-0     (-----) [003] d.s4 29484.410962: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35252          <idle>-0     (-----) [003] d.s5 29484.410974: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
35253          <idle>-0     (-----) [003] dns5 29484.410981: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35254          <idle>-0     (-----) [003] d..2 29484.410995: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35255  kworker/u16:10-23868 (23868) [003] .... 29484.411059: clk_set_rate: l3_cluster0_vote_clk 576000000
35256  kworker/u16:10-23868 (23868) [003] .... 29484.411066: clk_set_rate: l3_clk 576000000
35257  kworker/u16:10-23868 (23868) [003] d..2 29484.411127: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35258          <idle>-0     (-----) [003] d..1 29484.411144: cpu_idle: state=2 cpu_id=3
35259              sh-13722 (13722) [000] d.s2 29484.413759: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35260              sh-13722 (13722) [000] dns3 29484.413773: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35261              sh-13722 (13722) [000] d..2 29484.413790: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35262     kworker/0:0-13450 (13450) [000] d..2 29484.413837: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13722 next_prio=120
35263          <idle>-0     (-----) [001] d.s2 29484.413912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35264          <idle>-0     (-----) [001] dns3 29484.413939: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35265          <idle>-0     (-----) [001] .n.1 29484.413966: cpu_idle: state=4294967295 cpu_id=1
35266          <idle>-0     (-----) [001] d..2 29484.413983: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35267     rcu_preempt-7     (    7) [001] d..2 29484.413995: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35268     rcu_preempt-7     (    7) [001] d..3 29484.414013: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35269     rcu_preempt-7     (    7) [001] d..2 29484.414027: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35270         rcuop/0-10    (   10) [001] d..2 29484.414034: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
35271         rcuop/0-10    (   10) [001] d..3 29484.414054: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
35272         rcuop/0-10    (   10) [001] d..2 29484.414073: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35273         rcuop/0-10    (   10) [001] d..3 29484.414087: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35274         rcuop/0-10    (   10) [001] d..2 29484.414101: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
35275         rcuop/1-21    (   21) [001] d..2 29484.414118: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35276     rcu_preempt-7     (    7) [001] d..2 29484.414149: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35277          <idle>-0     (-----) [001] d..1 29484.414165: cpu_idle: state=2 cpu_id=1
35278              sh-13722 (13722) [000] d.H2 29484.417159: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35279              sh-13722 (13722) [000] d.H2 29484.417179: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35280              sh-13722 (13722) [000] d.H3 29484.417197: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
35281          <idle>-0     (-----) [003] .n.1 29484.417334: cpu_idle: state=4294967295 cpu_id=3
35282          <idle>-0     (-----) [003] d..2 29484.417356: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35283         sugov:0-559   (  559) [003] .... 29484.417384: clk_set_rate: pwrcl_clk 1516800000
35284         sugov:0-559   (  559) [003] .... 29484.417395: clk_set_rate: cpu3_pwrcl_clk 748800000
35285         sugov:0-559   (  559) [003] .... 29484.417404: clk_set_rate: cpu2_pwrcl_clk 748800000
35286         sugov:0-559   (  559) [003] .... 29484.417413: clk_set_rate: cpu1_pwrcl_clk 748800000
35287         sugov:0-559   (  559) [003] .... 29484.417421: clk_set_rate: cpu0_pwrcl_clk 1516800000
35288         sugov:0-559   (  559) [003] .... 29484.417430: cpu_frequency: state=1516800 cpu_id=0
35289         sugov:0-559   (  559) [003] .... 29484.417448: cpu_frequency: state=1516800 cpu_id=1
35290         sugov:0-559   (  559) [003] .... 29484.417453: cpu_frequency: state=1516800 cpu_id=2
35291         sugov:0-559   (  559) [003] .... 29484.417457: cpu_frequency: state=1516800 cpu_id=3
35292         sugov:0-559   (  559) [003] d..2 29484.417501: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35293          <idle>-0     (-----) [003] d..1 29484.417515: cpu_idle: state=0 cpu_id=3
35294          <idle>-0     (-----) [004] dnh2 29484.417862: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35295          <idle>-0     (-----) [004] .n.1 29484.417871: cpu_idle: state=4294967295 cpu_id=4
35296          <idle>-0     (-----) [004] d..2 29484.417883: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35297         sugov:4-560   (  560) [004] d..2 29484.417904: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35298          <idle>-0     (-----) [004] d..1 29484.417913: cpu_idle: state=2 cpu_id=4
35299          <idle>-0     (-----) [003] .n.1 29484.417916: cpu_idle: state=4294967295 cpu_id=3
35300          <idle>-0     (-----) [003] d..2 29484.417927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13724 next_prio=120
35301              sh-13722 (13722) [000] d..2 29484.418009: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35302          <idle>-0     (-----) [000] d..1 29484.418028: cpu_idle: state=2 cpu_id=0
35303              sh-13724 (13724) [003] d..2 29484.418217: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
35304              sh-13724 (13724) [003] dn.3 29484.418255: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
35305              sh-13724 (13724) [003] d..2 29484.418263: sched_switch: prev_comm=sh prev_pid=13724 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
35306         rcuop/2-29    (   29) [003] d..2 29484.418275: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13724 next_prio=120
35307              sh-13724 (13724) [003] d..2 29484.418667: sched_switch: prev_comm=sh prev_pid=13724 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13725 next_prio=120
35308              ps-13725 (13725) [003] d.s2 29484.420420: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
35309              ps-13725 (13725) [003] d.s3 29484.420446: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
35310          <idle>-0     (-----) [001] d.s2 29484.420546: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35311          <idle>-0     (-----) [001] dns3 29484.420566: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35312          <idle>-0     (-----) [000] .n.1 29484.420570: cpu_idle: state=4294967295 cpu_id=0
35313          <idle>-0     (-----) [001] .n.1 29484.420575: cpu_idle: state=4294967295 cpu_id=1
35314          <idle>-0     (-----) [001] d..2 29484.420587: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35315          <idle>-0     (-----) [000] d..2 29484.420590: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35316     rcu_preempt-7     (    7) [001] d..2 29484.420613: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35317          <idle>-0     (-----) [001] d..1 29484.420625: cpu_idle: state=0 cpu_id=1
35318          <idle>-0     (-----) [001] ...1 29484.420638: cpu_idle: state=4294967295 cpu_id=1
35319          <idle>-0     (-----) [001] d..1 29484.420642: cpu_idle: state=0 cpu_id=1
35320  kworker/u16:10-23868 (23868) [000] .... 29484.420670: clk_set_rate: l3_cluster0_vote_clk 480000000
35321  kworker/u16:10-23868 (23868) [000] .... 29484.420675: clk_set_rate: l3_clk 480000000
35322  kworker/u16:10-23868 (23868) [000] d..2 29484.420872: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
35323          <idle>-0     (-----) [000] d..1 29484.420887: cpu_idle: state=2 cpu_id=0
35324              ps-13725 (13725) [003] d.s2 29484.420892: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
35325              ps-13725 (13725) [003] d.s3 29484.420922: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
35326              ps-13725 (13725) [003] d.s3 29484.420930: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35327          <idle>-0     (-----) [001] .n.1 29484.420934: cpu_idle: state=4294967295 cpu_id=1
35328          <idle>-0     (-----) [001] d..2 29484.420943: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35329  kworker/u16:10-23868 (23868) [001] d..2 29484.420985: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35330          <idle>-0     (-----) [001] d..1 29484.420993: cpu_idle: state=0 cpu_id=1
35331          <idle>-0     (-----) [007] ...1 29484.424487: cpu_idle: state=4294967295 cpu_id=7
35332          <idle>-0     (-----) [007] d..1 29484.424497: cpu_idle: state=2 cpu_id=7
35333          <idle>-0     (-----) [001] d.s2 29484.427079: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35334          <idle>-0     (-----) [001] dns3 29484.427092: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35335          <idle>-0     (-----) [001] .n.1 29484.427102: cpu_idle: state=4294967295 cpu_id=1
35336          <idle>-0     (-----) [001] d..2 29484.427110: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35337     rcu_preempt-7     (    7) [001] d..2 29484.427116: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35338     rcu_preempt-7     (    7) [001] d..3 29484.427128: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35339     rcu_preempt-7     (    7) [001] d..2 29484.427139: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35340         rcuop/0-10    (   10) [001] d..2 29484.427164: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35341          <idle>-0     (-----) [001] d..1 29484.427172: cpu_idle: state=2 cpu_id=1
35342              ps-13725 (13725) [003] d.s2 29484.430416: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35343              ps-13725 (13725) [003] d.s3 29484.430443: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35344          <idle>-0     (-----) [001] .n.1 29484.430565: cpu_idle: state=4294967295 cpu_id=1
35345          <idle>-0     (-----) [001] d..2 29484.430584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35346  kworker/u16:10-23868 (23868) [001] d..2 29484.430776: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
35347          <idle>-0     (-----) [001] d..1 29484.430785: cpu_idle: state=0 cpu_id=1
35348              ps-13725 (13725) [003] d.s2 29484.430798: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35349              ps-13725 (13725) [003] d.s3 29484.430810: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
35350              ps-13725 (13725) [003] d.s3 29484.430818: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35351          <idle>-0     (-----) [001] .n.1 29484.430823: cpu_idle: state=4294967295 cpu_id=1
35352          <idle>-0     (-----) [001] d..2 29484.430830: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35353  kworker/u16:10-23868 (23868) [001] .... 29484.430877: clk_set_rate: l3_cluster0_vote_clk 1209600000
35354  kworker/u16:10-23868 (23868) [001] .... 29484.430881: clk_set_rate: l3_clk 1209600000
35355  kworker/u16:10-23868 (23868) [001] d..2 29484.430924: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35356          <idle>-0     (-----) [001] d..1 29484.430933: cpu_idle: state=0 cpu_id=1
35357          <idle>-0     (-----) [001] d.s2 29484.433763: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35358          <idle>-0     (-----) [001] dns3 29484.433774: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35359          <idle>-0     (-----) [001] .n.1 29484.433782: cpu_idle: state=4294967295 cpu_id=1
35360          <idle>-0     (-----) [001] d..2 29484.433787: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35361     rcu_preempt-7     (    7) [001] d..2 29484.433794: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
35362     rcu_preempt-7     (    7) [001] d..3 29484.433818: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
35363     rcu_preempt-7     (    7) [001] d..2 29484.433827: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
35364         rcuop/2-29    (   29) [001] d..2 29484.433831: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
35365         rcuop/2-29    (   29) [001] d..3 29484.433853: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
35366         rcuop/2-29    (   29) [001] d..2 29484.433860: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
35367         rcuop/3-37    (   37) [001] d..2 29484.433879: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35368          <idle>-0     (-----) [001] d..1 29484.433888: cpu_idle: state=0 cpu_id=1
35369              ps-13725 (13725) [003] d..2 29484.434040: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
35370              ps-13725 (13725) [003] d..3 29484.434060: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
35371              ps-13725 (13725) [003] dnH2 29484.437133: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
35372              ps-13725 (13725) [003] dnH2 29484.437147: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
35373              ps-13725 (13725) [003] dnH3 29484.437163: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
35374          <idle>-0     (-----) [001] .n.1 29484.437169: cpu_idle: state=4294967295 cpu_id=1
35375              ps-13725 (13725) [003] d..2 29484.437174: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35376          <idle>-0     (-----) [001] d..2 29484.437176: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35377         sugov:0-559   (  559) [001] .... 29484.437198: clk_set_rate: pwrcl_clk 1766400000
35378 shell svc 13722-13723 ( 1007) [003] d..2 29484.437236: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
35379          <idle>-0     (-----) [000] ...1 29484.437247: cpu_idle: state=4294967295 cpu_id=0
35380 shell svc 13722-13723 ( 1007) [003] dn.3 29484.437252: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
35381          <idle>-0     (-----) [000] d..1 29484.437254: cpu_idle: state=2 cpu_id=0
35382         sugov:0-559   (  559) [001] d..2 29484.437263: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
35383          <idle>-0     (-----) [001] d..1 29484.437269: cpu_idle: state=0 cpu_id=1
35384 shell svc 13722-13723 ( 1007) [003] dns3 29484.437275: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
35385 shell svc 13722-13723 ( 1007) [003] dns4 29484.437286: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
35386          <idle>-0     (-----) [001] .n.1 29484.437291: cpu_idle: state=4294967295 cpu_id=1
35387 shell svc 13722-13723 ( 1007) [003] d..2 29484.437294: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
35388          <idle>-0     (-----) [001] d..2 29484.437296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35389         sugov:0-559   (  559) [001] .... 29484.437304: clk_set_rate: cpu3_pwrcl_clk 1516800000
35390         sugov:0-559   (  559) [001] .... 29484.437312: clk_set_rate: cpu2_pwrcl_clk 1516800000
35391         sugov:0-559   (  559) [001] .... 29484.437318: clk_set_rate: cpu1_pwrcl_clk 1516800000
35392         sugov:0-559   (  559) [001] .... 29484.437324: clk_set_rate: cpu0_pwrcl_clk 1766400000
35393         sugov:0-559   (  559) [001] .... 29484.437331: cpu_frequency: state=1766400 cpu_id=0
35394          <idle>-0     (-----) [002] .n.1 29484.437334: cpu_idle: state=4294967295 cpu_id=2
35395          <idle>-0     (-----) [002] d..2 29484.437348: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=13725 next_prio=120
35396            adbd-1007  ( 1007) [003] d..1 29484.437413: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
35397            adbd-1007  ( 1007) [003] d..2 29484.437429: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
35398         sugov:0-559   (  559) [001] d..2 29484.437441: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
35399            adbd-1007  ( 1007) [003] d.s2 29484.437469: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
35400            adbd-1007  ( 1007) [003] d.s3 29484.437484: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
35401            adbd-1007  ( 1007) [003] d..2 29484.437510: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35402            adbd-23485 ( 1007) [001] d..2 29484.437527: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35403          <idle>-0     (-----) [001] d..1 29484.437532: cpu_idle: state=0 cpu_id=1
35404 shell svc 13722-13723 ( 1007) [003] d..2 29484.437551: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35405          <idle>-0     (-----) [003] d..1 29484.437564: cpu_idle: state=0 cpu_id=3
35406              ps-13725 (13725) [002] d..2 29484.437570: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
35407              ps-13725 (13725) [002] d..3 29484.437586: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35408          <idle>-0     (-----) [000] dnh3 29484.437602: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
35409          <idle>-0     (-----) [000] dnh4 29484.437630: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35410          <idle>-0     (-----) [000] .n.1 29484.437636: cpu_idle: state=4294967295 cpu_id=0
35411          <idle>-0     (-----) [000] d..2 29484.437644: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
35412         sugov:0-559   (  559) [000] .... 29484.437653: cpu_frequency: state=1766400 cpu_id=1
35413         sugov:0-559   (  559) [000] .... 29484.437657: cpu_frequency: state=1766400 cpu_id=2
35414         sugov:0-559   (  559) [000] .... 29484.437661: cpu_frequency: state=1766400 cpu_id=3
35415         sugov:0-559   (  559) [000] d..2 29484.437670: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35416   kworker/u17:2-23076 (23076) [000] d..2 29484.437687: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35417   kworker/u17:2-23076 (23076) [000] d..3 29484.437695: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35418   kworker/u17:2-23076 (23076) [000] d..2 29484.437714: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35419     kworker/0:0-13450 (13450) [000] d..2 29484.437723: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
35420     kworker/0:0-13450 (13450) [000] d..3 29484.437744: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35421     kworker/0:0-13450 (13450) [000] d..2 29484.437754: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35422          <idle>-0     (-----) [004] dnh2 29484.437814: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
35423            adbd-23485 ( 1007) [000] d..2 29484.437820: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35424          <idle>-0     (-----) [004] .n.1 29484.437821: cpu_idle: state=4294967295 cpu_id=4
35425          <idle>-0     (-----) [004] d..2 29484.437830: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
35426         sugov:4-560   (  560) [004] d..2 29484.437849: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35427          <idle>-0     (-----) [004] d..1 29484.437858: cpu_idle: state=2 cpu_id=4
35428 shell svc 13722-13723 ( 1007) [000] d..2 29484.437858: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35429          <idle>-0     (-----) [000] d.h4 29484.437876: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35430          <idle>-0     (-----) [000] dnh5 29484.437882: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35431          <idle>-0     (-----) [000] d..2 29484.437890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35432              ps-13725 (13725) [002] d..2 29484.437893: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35433   kworker/u17:2-23076 (23076) [000] d..2 29484.437898: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35434   kworker/u17:2-23076 (23076) [000] d..3 29484.437908: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35435              ps-13725 (13725) [002] d..3 29484.437910: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35436   kworker/u17:2-23076 (23076) [000] d..2 29484.437923: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35437     kworker/0:0-13450 (13450) [000] d..2 29484.437928: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35438     kworker/0:0-13450 (13450) [000] d..3 29484.437936: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35439     kworker/0:0-13450 (13450) [000] d..2 29484.437944: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35440            adbd-23485 ( 1007) [000] d..2 29484.437981: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35441 shell svc 13722-13723 ( 1007) [000] d..2 29484.438008: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35442          <idle>-0     (-----) [000] d..1 29484.438017: cpu_idle: state=2 cpu_id=0
35443              ps-13725 (13725) [002] d..2 29484.438068: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35444              ps-13725 (13725) [002] d..3 29484.438079: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35445          <idle>-0     (-----) [000] d.h3 29484.438221: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35446          <idle>-0     (-----) [000] dnh4 29484.438229: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35447          <idle>-0     (-----) [000] .n.1 29484.438234: cpu_idle: state=4294967295 cpu_id=0
35448          <idle>-0     (-----) [000] d..2 29484.438242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35449   kworker/u17:2-23076 (23076) [000] d..2 29484.438252: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35450   kworker/u17:2-23076 (23076) [000] d..3 29484.438258: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35451   kworker/u17:2-23076 (23076) [000] d..2 29484.438274: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35452     kworker/0:0-13450 (13450) [000] d..2 29484.438286: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
35453     kworker/0:0-13450 (13450) [000] d..3 29484.438309: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35454     kworker/0:0-13450 (13450) [000] d..2 29484.438318: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35455            adbd-23484 ( 1007) [000] d..2 29484.438339: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
35456            adbd-23484 ( 1007) [000] d..3 29484.438349: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35457            adbd-23484 ( 1007) [000] d..2 29484.438403: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35458            adbd-1007  ( 1007) [000] d..1 29484.438478: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35459            adbd-1007  ( 1007) [000] d..2 29484.438489: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35460            adbd-1007  ( 1007) [000] d..2 29484.438516: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35461            adbd-23485 ( 1007) [000] d..2 29484.438570: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35462 shell svc 13722-13723 ( 1007) [000] d.h4 29484.438585: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35463 shell svc 13722-13723 ( 1007) [000] dnh5 29484.438594: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35464 shell svc 13722-13723 ( 1007) [000] d..2 29484.438601: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35465   kworker/u17:2-23076 (23076) [000] d..2 29484.438608: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35466   kworker/u17:2-23076 (23076) [000] d..3 29484.438613: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35467   kworker/u17:2-23076 (23076) [000] d..2 29484.438629: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35468     kworker/0:0-13450 (13450) [000] d..2 29484.438634: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35469     kworker/0:0-13450 (13450) [000] d..3 29484.438641: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35470     kworker/0:0-13450 (13450) [000] d..2 29484.438649: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35471            adbd-23485 ( 1007) [000] d..2 29484.438688: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35472 shell svc 13722-13723 ( 1007) [000] d.h2 29484.438707: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35473 shell svc 13722-13723 ( 1007) [000] dnh3 29484.438716: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35474 shell svc 13722-13723 ( 1007) [000] d..2 29484.438723: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35475   kworker/u17:2-23076 (23076) [000] d..2 29484.438729: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35476   kworker/u17:2-23076 (23076) [000] d..3 29484.438733: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35477   kworker/u17:2-23076 (23076) [000] d..2 29484.438749: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35478     kworker/0:0-13450 (13450) [000] d..2 29484.438754: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35479     kworker/0:0-13450 (13450) [000] d..3 29484.438762: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35480     kworker/0:0-13450 (13450) [000] d..2 29484.438769: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35481            adbd-23485 ( 1007) [000] d..2 29484.438784: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35482 shell svc 13722-13723 ( 1007) [000] d..2 29484.438816: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35483          <idle>-0     (-----) [000] d..1 29484.438826: cpu_idle: state=0 cpu_id=0
35484              ps-13725 (13725) [002] d..2 29484.438856: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35485              ps-13725 (13725) [002] d..3 29484.438870: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35486          <idle>-0     (-----) [000] d.h3 29484.438938: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35487          <idle>-0     (-----) [000] dnh4 29484.438944: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35488          <idle>-0     (-----) [000] .n.1 29484.438949: cpu_idle: state=4294967295 cpu_id=0
35489          <idle>-0     (-----) [000] d..2 29484.438955: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35490   kworker/u17:2-23076 (23076) [000] d..2 29484.438963: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35491   kworker/u17:2-23076 (23076) [000] d..3 29484.438968: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35492   kworker/u17:2-23076 (23076) [000] d..2 29484.438984: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35493     kworker/0:0-13450 (13450) [000] d..2 29484.438990: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35494     kworker/0:0-13450 (13450) [000] d..3 29484.438998: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35495     kworker/0:0-13450 (13450) [000] d..2 29484.439006: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35496            adbd-23484 ( 1007) [000] d..2 29484.439016: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35497            adbd-23484 ( 1007) [000] d..3 29484.439021: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35498            adbd-23484 ( 1007) [000] d..2 29484.439062: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35499            adbd-1007  ( 1007) [000] d..1 29484.439116: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35500            adbd-1007  ( 1007) [000] d..2 29484.439127: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35501            adbd-1007  ( 1007) [000] d..2 29484.439153: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35502            adbd-23485 ( 1007) [000] d..2 29484.439207: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35503 shell svc 13722-13723 ( 1007) [000] d.h4 29484.439223: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35504 shell svc 13722-13723 ( 1007) [000] dnh5 29484.439231: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35505 shell svc 13722-13723 ( 1007) [000] d..2 29484.439239: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35506   kworker/u17:2-23076 (23076) [000] d..2 29484.439246: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35507   kworker/u17:2-23076 (23076) [000] d..3 29484.439251: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35508   kworker/u17:2-23076 (23076) [000] d..2 29484.439267: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35509     kworker/0:0-13450 (13450) [000] d..2 29484.439272: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35510     kworker/0:0-13450 (13450) [000] d..3 29484.439280: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35511     kworker/0:0-13450 (13450) [000] d..2 29484.439288: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35512            adbd-23485 ( 1007) [000] d..2 29484.439328: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35513 shell svc 13722-13723 ( 1007) [000] d.h2 29484.439359: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35514 shell svc 13722-13723 ( 1007) [000] dnh3 29484.439369: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35515 shell svc 13722-13723 ( 1007) [000] d..2 29484.439376: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35516   kworker/u17:2-23076 (23076) [000] d..2 29484.439383: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35517   kworker/u17:2-23076 (23076) [000] d..3 29484.439387: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35518   kworker/u17:2-23076 (23076) [000] d..2 29484.439404: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35519     kworker/0:0-13450 (13450) [000] d..2 29484.439408: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35520     kworker/0:0-13450 (13450) [000] d..3 29484.439416: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35521     kworker/0:0-13450 (13450) [000] d..2 29484.439423: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35522            adbd-23485 ( 1007) [000] d..2 29484.439435: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35523 shell svc 13722-13723 ( 1007) [000] d..2 29484.439464: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35524          <idle>-0     (-----) [000] d..1 29484.439473: cpu_idle: state=0 cpu_id=0
35525              ps-13725 (13725) [002] d..2 29484.439497: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35526              ps-13725 (13725) [002] d..3 29484.439511: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35527          <idle>-0     (-----) [000] d.h3 29484.439575: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35528          <idle>-0     (-----) [000] dnh4 29484.439581: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35529          <idle>-0     (-----) [000] .n.1 29484.439586: cpu_idle: state=4294967295 cpu_id=0
35530          <idle>-0     (-----) [000] d..2 29484.439592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35531   kworker/u17:2-23076 (23076) [000] d..2 29484.439600: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35532   kworker/u17:2-23076 (23076) [000] d..3 29484.439605: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35533   kworker/u17:2-23076 (23076) [000] d..2 29484.439620: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35534     kworker/0:0-13450 (13450) [000] d..2 29484.439626: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35535     kworker/0:0-13450 (13450) [000] d..3 29484.439634: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35536     kworker/0:0-13450 (13450) [000] d..2 29484.439643: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35537            adbd-23484 ( 1007) [000] d..2 29484.439652: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35538            adbd-23484 ( 1007) [000] d..3 29484.439657: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35539            adbd-23484 ( 1007) [000] d..2 29484.439699: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35540            adbd-1007  ( 1007) [000] d..1 29484.439753: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35541            adbd-1007  ( 1007) [000] d..2 29484.439765: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35542            adbd-1007  ( 1007) [000] d..2 29484.439790: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35543            adbd-23485 ( 1007) [000] d..2 29484.439844: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35544 shell svc 13722-13723 ( 1007) [000] d.h4 29484.439860: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35545 shell svc 13722-13723 ( 1007) [000] dnh5 29484.439868: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35546 shell svc 13722-13723 ( 1007) [000] d..2 29484.439876: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35547   kworker/u17:2-23076 (23076) [000] d..2 29484.439884: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35548   kworker/u17:2-23076 (23076) [000] d..3 29484.439889: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35549   kworker/u17:2-23076 (23076) [000] d..2 29484.439904: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35550     kworker/0:0-13450 (13450) [000] d..2 29484.439910: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35551     kworker/0:0-13450 (13450) [000] d..3 29484.439918: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35552     kworker/0:0-13450 (13450) [000] d..2 29484.439926: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35553            adbd-23485 ( 1007) [000] d..2 29484.439965: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35554 shell svc 13722-13723 ( 1007) [000] d.h2 29484.439980: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35555 shell svc 13722-13723 ( 1007) [000] dnh3 29484.439989: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35556 shell svc 13722-13723 ( 1007) [000] d..2 29484.439996: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35557   kworker/u17:2-23076 (23076) [000] d..2 29484.440001: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35558   kworker/u17:2-23076 (23076) [000] d..3 29484.440006: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35559   kworker/u17:2-23076 (23076) [000] d..2 29484.440021: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35560     kworker/0:0-13450 (13450) [000] d..2 29484.440026: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35561     kworker/0:0-13450 (13450) [000] d..3 29484.440033: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35562     kworker/0:0-13450 (13450) [000] d..2 29484.440041: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35563            adbd-23485 ( 1007) [000] d..2 29484.440052: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35564 shell svc 13722-13723 ( 1007) [000] d..2 29484.440084: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35565          <idle>-0     (-----) [000] d..1 29484.440093: cpu_idle: state=0 cpu_id=0
35566              ps-13725 (13725) [002] d..2 29484.440140: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35567              ps-13725 (13725) [002] d..3 29484.440154: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35568          <idle>-0     (-----) [000] d.h3 29484.440162: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35569          <idle>-0     (-----) [000] dnh4 29484.440171: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35570          <idle>-0     (-----) [000] .n.1 29484.440177: cpu_idle: state=4294967295 cpu_id=0
35571          <idle>-0     (-----) [000] d..2 29484.440183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35572   kworker/u17:2-23076 (23076) [000] d..2 29484.440189: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35573   kworker/u17:2-23076 (23076) [000] d..3 29484.440195: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35574   kworker/u17:2-23076 (23076) [000] d..2 29484.440211: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35575     kworker/0:0-13450 (13450) [000] d..2 29484.440217: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35576     kworker/0:0-13450 (13450) [000] d..3 29484.440225: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35577     kworker/0:0-13450 (13450) [000] d..2 29484.440234: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35578            adbd-23484 ( 1007) [000] d..2 29484.440243: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35579            adbd-23484 ( 1007) [000] d..3 29484.440248: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35580            adbd-23484 ( 1007) [000] d..2 29484.440289: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35581            adbd-1007  ( 1007) [000] d..1 29484.440340: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35582            adbd-1007  ( 1007) [000] d..2 29484.440351: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35583            adbd-1007  ( 1007) [000] d..2 29484.440376: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35584          <idle>-0     (-----) [001] d.s2 29484.440404: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35585            adbd-23485 ( 1007) [000] d.s2 29484.440408: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35586          <idle>-0     (-----) [001] dns3 29484.440415: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35587            adbd-23485 ( 1007) [000] d.s3 29484.440420: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35588          <idle>-0     (-----) [001] .n.1 29484.440439: cpu_idle: state=4294967295 cpu_id=1
35589          <idle>-0     (-----) [001] d..2 29484.440444: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35590     rcu_preempt-7     (    7) [001] d..2 29484.440453: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35591            adbd-23485 ( 1007) [000] d..2 29484.440468: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35592          <idle>-0     (-----) [000] d.h4 29484.440485: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35593          <idle>-0     (-----) [000] dnh5 29484.440490: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35594          <idle>-0     (-----) [000] d..2 29484.440505: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35595   kworker/u17:2-23076 (23076) [000] d..2 29484.440515: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35596   kworker/u17:2-23076 (23076) [000] d..3 29484.440521: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35597   kworker/u17:2-23076 (23076) [000] d..2 29484.440540: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35598     kworker/0:0-13450 (13450) [000] d..2 29484.440545: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35599     kworker/0:0-13450 (13450) [000] d..3 29484.440552: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35600     kworker/0:0-13450 (13450) [000] d..2 29484.440561: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35601  kworker/u16:10-23868 (23868) [001] .... 29484.440563: clk_set_rate: l3_cluster0_vote_clk 844800000
35602  kworker/u16:10-23868 (23868) [001] .... 29484.440566: clk_set_rate: l3_clk 844800000
35603            adbd-23485 ( 1007) [000] d..2 29484.440617: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35604          <idle>-0     (-----) [000] d.h4 29484.440640: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35605          <idle>-0     (-----) [000] dnh5 29484.440646: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35606          <idle>-0     (-----) [000] d..2 29484.440654: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35607   kworker/u17:2-23076 (23076) [000] d..2 29484.440660: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35608   kworker/u17:2-23076 (23076) [000] d..3 29484.440665: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35609   kworker/u17:2-23076 (23076) [000] d..2 29484.440681: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35610     kworker/0:0-13450 (13450) [000] d..2 29484.440686: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35611     kworker/0:0-13450 (13450) [000] d..3 29484.440694: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35612     kworker/0:0-13450 (13450) [000] d..2 29484.440702: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35613            adbd-23485 ( 1007) [000] d..2 29484.440719: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35614          <idle>-0     (-----) [000] d..1 29484.440729: cpu_idle: state=0 cpu_id=0
35615  kworker/u16:10-23868 (23868) [001] d..2 29484.440741: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35616          <idle>-0     (-----) [003] d.s3 29484.440778: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35617 shell svc 13722-13723 ( 1007) [001] d..2 29484.440785: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35618          <idle>-0     (-----) [003] d.s4 29484.440789: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
35619          <idle>-0     (-----) [003] d.s4 29484.440795: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
35620          <idle>-0     (-----) [003] ...1 29484.440802: cpu_idle: state=4294967295 cpu_id=3
35621          <idle>-0     (-----) [001] d..2 29484.440804: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
35622          <idle>-0     (-----) [003] d..1 29484.440805: cpu_idle: state=0 cpu_id=3
35623          <idle>-0     (-----) [000] d.h3 29484.440816: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35624          <idle>-0     (-----) [000] dnh4 29484.440822: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35625          <idle>-0     (-----) [000] .n.1 29484.440828: cpu_idle: state=4294967295 cpu_id=0
35626  kworker/u16:10-23868 (23868) [001] d..2 29484.440831: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35627          <idle>-0     (-----) [000] d..2 29484.440834: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35628          <idle>-0     (-----) [001] d..1 29484.440838: cpu_idle: state=2 cpu_id=1
35629   kworker/u17:2-23076 (23076) [000] d..2 29484.440842: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35630   kworker/u17:2-23076 (23076) [000] d..3 29484.440847: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35631              ps-13725 (13725) [002] d..2 29484.440848: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
35632              ps-13725 (13725) [002] d..3 29484.440862: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35633   kworker/u17:2-23076 (23076) [000] d..2 29484.440863: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35634     kworker/0:0-13450 (13450) [000] d..2 29484.440869: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35635     kworker/0:0-13450 (13450) [000] d..3 29484.440878: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35636     kworker/0:0-13450 (13450) [000] d..2 29484.440886: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35637            adbd-23484 ( 1007) [000] d..2 29484.440897: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35638            adbd-23484 ( 1007) [000] d..3 29484.440903: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35639            adbd-23484 ( 1007) [000] d..2 29484.440948: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35640            adbd-1007  ( 1007) [000] d..1 29484.441006: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35641            adbd-1007  ( 1007) [000] d..2 29484.441019: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35642            adbd-1007  ( 1007) [000] d..2 29484.441046: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35643            adbd-23485 ( 1007) [000] d..2 29484.441103: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35644 shell svc 13722-13723 ( 1007) [000] d.h4 29484.441120: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35645 shell svc 13722-13723 ( 1007) [000] dnh5 29484.441129: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35646 shell svc 13722-13723 ( 1007) [000] d..2 29484.441136: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35647   kworker/u17:2-23076 (23076) [000] d..2 29484.441144: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35648   kworker/u17:2-23076 (23076) [000] d..3 29484.441149: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35649   kworker/u17:2-23076 (23076) [000] d..2 29484.441164: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35650     kworker/0:0-13450 (13450) [000] d..2 29484.441169: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35651     kworker/0:0-13450 (13450) [000] d..3 29484.441177: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35652     kworker/0:0-13450 (13450) [000] d..2 29484.441185: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35653            adbd-23485 ( 1007) [000] d..2 29484.441225: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35654 shell svc 13722-13723 ( 1007) [000] d.h2 29484.441249: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35655 shell svc 13722-13723 ( 1007) [000] dnh3 29484.441258: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35656 shell svc 13722-13723 ( 1007) [000] d..2 29484.441266: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35657   kworker/u17:2-23076 (23076) [000] d..2 29484.441273: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35658   kworker/u17:2-23076 (23076) [000] d..3 29484.441278: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35659   kworker/u17:2-23076 (23076) [000] d..2 29484.441294: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35660     kworker/0:0-13450 (13450) [000] d..2 29484.441299: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35661     kworker/0:0-13450 (13450) [000] d..3 29484.441306: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35662     kworker/0:0-13450 (13450) [000] d..2 29484.441314: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35663            adbd-23485 ( 1007) [000] d..2 29484.441328: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35664              ps-13725 (13725) [002] d..2 29484.441350: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35665 shell svc 13722-13723 ( 1007) [000] d..2 29484.441357: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35666          <idle>-0     (-----) [000] d..1 29484.441367: cpu_idle: state=0 cpu_id=0
35667              ps-13725 (13725) [002] d..3 29484.441372: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35668          <idle>-0     (-----) [000] d.h3 29484.441400: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35669          <idle>-0     (-----) [000] dnh4 29484.441406: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35670          <idle>-0     (-----) [000] .n.1 29484.441412: cpu_idle: state=4294967295 cpu_id=0
35671          <idle>-0     (-----) [000] d..2 29484.441418: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35672   kworker/u17:2-23076 (23076) [000] d..2 29484.441425: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35673   kworker/u17:2-23076 (23076) [000] d..3 29484.441431: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35674   kworker/u17:2-23076 (23076) [000] d..2 29484.441447: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35675     kworker/0:0-13450 (13450) [000] d..2 29484.441453: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35676     kworker/0:0-13450 (13450) [000] d..3 29484.441461: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35677     kworker/0:0-13450 (13450) [000] d..2 29484.441470: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35678            adbd-23484 ( 1007) [000] d..2 29484.441481: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35679            adbd-23484 ( 1007) [000] d..3 29484.441486: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35680            adbd-23484 ( 1007) [000] d..2 29484.441529: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35681            adbd-1007  ( 1007) [000] d..1 29484.441586: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35682            adbd-1007  ( 1007) [000] d..2 29484.441598: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35683            adbd-1007  ( 1007) [000] d..2 29484.441626: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35684            adbd-23485 ( 1007) [000] d..2 29484.441683: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35685 shell svc 13722-13723 ( 1007) [000] d.h4 29484.441700: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35686 shell svc 13722-13723 ( 1007) [000] dnh5 29484.441710: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35687 shell svc 13722-13723 ( 1007) [000] d..2 29484.441717: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35688   kworker/u17:2-23076 (23076) [000] d..2 29484.441724: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35689   kworker/u17:2-23076 (23076) [000] d..3 29484.441729: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35690   kworker/u17:2-23076 (23076) [000] d..2 29484.441745: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35691     kworker/0:0-13450 (13450) [000] d..2 29484.441750: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35692     kworker/0:0-13450 (13450) [000] d..3 29484.441758: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35693     kworker/0:0-13450 (13450) [000] d..2 29484.441766: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35694            adbd-23485 ( 1007) [000] d..2 29484.441807: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35695 shell svc 13722-13723 ( 1007) [000] d.h2 29484.441832: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35696 shell svc 13722-13723 ( 1007) [000] dnh3 29484.441841: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35697 shell svc 13722-13723 ( 1007) [000] d..2 29484.441849: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35698   kworker/u17:2-23076 (23076) [000] d..2 29484.441857: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35699   kworker/u17:2-23076 (23076) [000] d..3 29484.441862: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35700   kworker/u17:2-23076 (23076) [000] d..2 29484.441877: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35701     kworker/0:0-13450 (13450) [000] d..2 29484.441882: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35702     kworker/0:0-13450 (13450) [000] d..3 29484.441890: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35703     kworker/0:0-13450 (13450) [000] d..2 29484.441897: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35704            adbd-23485 ( 1007) [000] d..2 29484.441910: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35705 shell svc 13722-13723 ( 1007) [000] d..2 29484.441940: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35706          <idle>-0     (-----) [000] d..1 29484.441951: cpu_idle: state=0 cpu_id=0
35707          <idle>-0     (-----) [000] d.h3 29484.442017: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35708          <idle>-0     (-----) [000] dnh4 29484.442024: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35709          <idle>-0     (-----) [000] .n.1 29484.442029: cpu_idle: state=4294967295 cpu_id=0
35710              ps-13725 (13725) [002] d..2 29484.442029: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35711          <idle>-0     (-----) [000] d..2 29484.442038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35712   kworker/u17:2-23076 (23076) [000] d..2 29484.442045: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35713              ps-13725 (13725) [002] d..3 29484.442049: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35714   kworker/u17:2-23076 (23076) [000] d..3 29484.442052: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35715   kworker/u17:2-23076 (23076) [000] d..2 29484.442068: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35716     kworker/0:0-13450 (13450) [000] d..2 29484.442074: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35717     kworker/0:0-13450 (13450) [000] d..3 29484.442082: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35718     kworker/0:0-13450 (13450) [000] d..2 29484.442091: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35719            adbd-23484 ( 1007) [000] d..2 29484.442101: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35720            adbd-23484 ( 1007) [000] d..3 29484.442107: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35721            adbd-23484 ( 1007) [000] d..2 29484.442151: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35722            adbd-1007  ( 1007) [000] d..1 29484.442209: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35723            adbd-1007  ( 1007) [000] d..2 29484.442222: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35724            adbd-1007  ( 1007) [000] d..2 29484.442250: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35725            adbd-23485 ( 1007) [000] d..2 29484.442309: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35726 shell svc 13722-13723 ( 1007) [000] d.h4 29484.442326: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35727 shell svc 13722-13723 ( 1007) [000] dnh5 29484.442335: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35728 shell svc 13722-13723 ( 1007) [000] d..2 29484.442343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35729   kworker/u17:2-23076 (23076) [000] d..2 29484.442352: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35730   kworker/u17:2-23076 (23076) [000] d..3 29484.442357: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35731   kworker/u17:2-23076 (23076) [000] d..2 29484.442373: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35732     kworker/0:0-13450 (13450) [000] d..2 29484.442378: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35733     kworker/0:0-13450 (13450) [000] d..3 29484.442386: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35734     kworker/0:0-13450 (13450) [000] d..2 29484.442394: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35735            adbd-23485 ( 1007) [000] d..2 29484.442437: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35736 shell svc 13722-13723 ( 1007) [000] d.h2 29484.442458: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35737 shell svc 13722-13723 ( 1007) [000] dnh3 29484.442467: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35738 shell svc 13722-13723 ( 1007) [000] d..2 29484.442475: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35739   kworker/u17:2-23076 (23076) [000] d..2 29484.442482: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35740   kworker/u17:2-23076 (23076) [000] d..3 29484.442487: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35741   kworker/u17:2-23076 (23076) [000] d..2 29484.442503: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35742     kworker/0:0-13450 (13450) [000] d..2 29484.442509: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35743     kworker/0:0-13450 (13450) [000] d..3 29484.442516: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35744     kworker/0:0-13450 (13450) [000] d..2 29484.442524: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35745            adbd-23485 ( 1007) [000] d..2 29484.442536: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35746 shell svc 13722-13723 ( 1007) [000] d..2 29484.442570: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35747          <idle>-0     (-----) [000] d..1 29484.442580: cpu_idle: state=0 cpu_id=0
35748          <idle>-0     (-----) [000] d.h3 29484.442640: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35749          <idle>-0     (-----) [000] dnh4 29484.442649: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35750          <idle>-0     (-----) [000] .n.1 29484.442654: cpu_idle: state=4294967295 cpu_id=0
35751          <idle>-0     (-----) [000] d..2 29484.442661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35752   kworker/u17:2-23076 (23076) [000] d..2 29484.442669: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35753   kworker/u17:2-23076 (23076) [000] d..3 29484.442674: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35754   kworker/u17:2-23076 (23076) [000] d..2 29484.442691: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35755     kworker/0:0-13450 (13450) [000] d..2 29484.442698: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35756              ps-13725 (13725) [002] d..2 29484.442704: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35757     kworker/0:0-13450 (13450) [000] d..3 29484.442707: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35758     kworker/0:0-13450 (13450) [000] d..2 29484.442722: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35759              ps-13725 (13725) [002] d..3 29484.442722: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35760            adbd-23484 ( 1007) [000] d..2 29484.442733: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35761            adbd-23484 ( 1007) [000] d..3 29484.442739: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35762            adbd-23484 ( 1007) [000] d..2 29484.442782: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35763            adbd-1007  ( 1007) [000] d..1 29484.442838: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35764            adbd-1007  ( 1007) [000] d..2 29484.442850: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35765            adbd-1007  ( 1007) [000] d..2 29484.442877: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35766            adbd-23485 ( 1007) [000] d..2 29484.442936: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35767 shell svc 13722-13723 ( 1007) [000] d.h4 29484.442954: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35768 shell svc 13722-13723 ( 1007) [000] dnh5 29484.442963: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35769 shell svc 13722-13723 ( 1007) [000] d..2 29484.442970: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35770   kworker/u17:2-23076 (23076) [000] d..2 29484.442978: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35771   kworker/u17:2-23076 (23076) [000] d..3 29484.442984: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35772   kworker/u17:2-23076 (23076) [000] d..2 29484.443000: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35773     kworker/0:0-13450 (13450) [000] d..2 29484.443005: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35774     kworker/0:0-13450 (13450) [000] d..3 29484.443013: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35775     kworker/0:0-13450 (13450) [000] d..2 29484.443021: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35776            adbd-23485 ( 1007) [000] d..2 29484.443062: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35777 shell svc 13722-13723 ( 1007) [000] d.h2 29484.443087: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35778 shell svc 13722-13723 ( 1007) [000] dnh3 29484.443097: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35779 shell svc 13722-13723 ( 1007) [000] d..2 29484.443104: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35780   kworker/u17:2-23076 (23076) [000] d..2 29484.443113: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35781   kworker/u17:2-23076 (23076) [000] d..3 29484.443117: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35782   kworker/u17:2-23076 (23076) [000] d..2 29484.443134: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35783     kworker/0:0-13450 (13450) [000] d..2 29484.443139: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35784     kworker/0:0-13450 (13450) [000] d..3 29484.443147: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35785     kworker/0:0-13450 (13450) [000] d..2 29484.443155: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35786            adbd-23485 ( 1007) [000] d..2 29484.443167: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35787 shell svc 13722-13723 ( 1007) [000] d..2 29484.443196: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35788          <idle>-0     (-----) [000] d..1 29484.443206: cpu_idle: state=0 cpu_id=0
35789              ps-13725 (13725) [002] d..2 29484.443219: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35790              ps-13725 (13725) [002] d..3 29484.443234: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35791          <idle>-0     (-----) [000] d.h3 29484.443273: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35792          <idle>-0     (-----) [000] dnh4 29484.443280: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35793          <idle>-0     (-----) [000] .n.1 29484.443285: cpu_idle: state=4294967295 cpu_id=0
35794          <idle>-0     (-----) [000] d..2 29484.443292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35795   kworker/u17:2-23076 (23076) [000] d..2 29484.443300: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35796   kworker/u17:2-23076 (23076) [000] d..3 29484.443306: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35797   kworker/u17:2-23076 (23076) [000] d..2 29484.443321: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35798     kworker/0:0-13450 (13450) [000] d..2 29484.443329: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35799     kworker/0:0-13450 (13450) [000] d..3 29484.443337: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35800     kworker/0:0-13450 (13450) [000] d..2 29484.443346: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35801            adbd-23484 ( 1007) [000] d..2 29484.443356: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35802            adbd-23484 ( 1007) [000] d..3 29484.443362: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35803            adbd-23484 ( 1007) [000] d..2 29484.443407: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35804            adbd-1007  ( 1007) [000] d..1 29484.443464: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35805            adbd-1007  ( 1007) [000] d..2 29484.443476: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35806            adbd-1007  ( 1007) [000] d..2 29484.443504: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35807            adbd-23485 ( 1007) [000] d..2 29484.443561: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35808 shell svc 13722-13723 ( 1007) [000] d.h4 29484.443578: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35809 shell svc 13722-13723 ( 1007) [000] dnh5 29484.443587: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35810 shell svc 13722-13723 ( 1007) [000] d..2 29484.443594: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35811   kworker/u17:2-23076 (23076) [000] d..2 29484.443601: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35812   kworker/u17:2-23076 (23076) [000] d..3 29484.443607: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35813   kworker/u17:2-23076 (23076) [000] d..2 29484.443623: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35814     kworker/0:0-13450 (13450) [000] d..2 29484.443629: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35815     kworker/0:0-13450 (13450) [000] d..3 29484.443637: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35816     kworker/0:0-13450 (13450) [000] d..2 29484.443645: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35817            adbd-23485 ( 1007) [000] d..2 29484.443688: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35818 shell svc 13722-13723 ( 1007) [000] d.h2 29484.443707: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35819 shell svc 13722-13723 ( 1007) [000] dnh3 29484.443716: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35820              ps-13725 (13725) [002] d.s2 29484.443742: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35821 shell svc 13722-13723 ( 1007) [000] d..2 29484.443742: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35822   kworker/u17:2-23076 (23076) [000] d..2 29484.443750: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35823   kworker/u17:2-23076 (23076) [000] d..3 29484.443755: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35824              ps-13725 (13725) [002] d.s3 29484.443770: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
35825   kworker/u17:2-23076 (23076) [000] d..2 29484.443776: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35826     kworker/0:0-13450 (13450) [000] d..2 29484.443781: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35827     kworker/0:0-13450 (13450) [000] d..3 29484.443789: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35828     kworker/0:0-13450 (13450) [000] d..2 29484.443798: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
35829     rcu_preempt-7     (    7) [000] d..2 29484.443802: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
35830     rcu_preempt-7     (    7) [000] d..3 29484.443825: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
35831     rcu_preempt-7     (    7) [000] d..2 29484.443833: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
35832         rcuop/0-10    (   10) [000] d..2 29484.443849: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35833            adbd-23485 ( 1007) [000] d..2 29484.443863: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35834 shell svc 13722-13723 ( 1007) [000] d.h2 29484.443899: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35835 shell svc 13722-13723 ( 1007) [000] dnh3 29484.443909: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35836 shell svc 13722-13723 ( 1007) [000] d..2 29484.443917: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35837   kworker/u17:2-23076 (23076) [000] d..2 29484.443926: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35838   kworker/u17:2-23076 (23076) [000] d..3 29484.443931: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35839   kworker/u17:2-23076 (23076) [000] d..2 29484.443948: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35840     kworker/0:0-13450 (13450) [000] d..2 29484.443955: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35841     kworker/0:0-13450 (13450) [000] d..3 29484.443963: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35842     kworker/0:0-13450 (13450) [000] d..2 29484.443971: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35843            adbd-23484 ( 1007) [000] d..2 29484.443981: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35844            adbd-23484 ( 1007) [000] d..3 29484.443989: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35845            adbd-23484 ( 1007) [000] d..2 29484.444033: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35846            adbd-1007  ( 1007) [000] d..1 29484.444090: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35847            adbd-1007  ( 1007) [000] d..2 29484.444103: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35848            adbd-1007  ( 1007) [000] d..2 29484.444131: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35849            adbd-23485 ( 1007) [000] d..2 29484.444177: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35850 shell svc 13722-13723 ( 1007) [000] d.h2 29484.444206: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35851 shell svc 13722-13723 ( 1007) [000] dnh3 29484.444216: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35852 shell svc 13722-13723 ( 1007) [000] d..2 29484.444224: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35853   kworker/u17:2-23076 (23076) [000] d..2 29484.444232: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35854   kworker/u17:2-23076 (23076) [000] d..3 29484.444237: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35855   kworker/u17:2-23076 (23076) [000] d..2 29484.444253: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35856     kworker/0:0-13450 (13450) [000] d..2 29484.444258: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35857     kworker/0:0-13450 (13450) [000] d..3 29484.444266: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35858     kworker/0:0-13450 (13450) [000] d..2 29484.444274: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35859            adbd-23485 ( 1007) [000] d..2 29484.444316: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35860 shell svc 13722-13723 ( 1007) [000] d.h2 29484.444334: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35861 shell svc 13722-13723 ( 1007) [000] dnh3 29484.444343: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35862 shell svc 13722-13723 ( 1007) [000] d..2 29484.444350: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35863   kworker/u17:2-23076 (23076) [000] d..2 29484.444357: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35864   kworker/u17:2-23076 (23076) [000] d..3 29484.444361: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35865   kworker/u17:2-23076 (23076) [000] d..2 29484.444378: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35866     kworker/0:0-13450 (13450) [000] d..2 29484.444383: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35867     kworker/0:0-13450 (13450) [000] d..3 29484.444391: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35868     kworker/0:0-13450 (13450) [000] d..2 29484.444399: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35869            adbd-23485 ( 1007) [000] d..2 29484.444411: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35870 shell svc 13722-13723 ( 1007) [000] d..2 29484.444441: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35871              ps-13725 (13725) [002] d..2 29484.444443: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35872          <idle>-0     (-----) [000] d..1 29484.444450: cpu_idle: state=0 cpu_id=0
35873              ps-13725 (13725) [002] d..3 29484.444458: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35874          <idle>-0     (-----) [000] d.h3 29484.444518: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35875          <idle>-0     (-----) [000] dnh4 29484.444525: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35876          <idle>-0     (-----) [000] .n.1 29484.444530: cpu_idle: state=4294967295 cpu_id=0
35877          <idle>-0     (-----) [000] d..2 29484.444537: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35878   kworker/u17:2-23076 (23076) [000] d..2 29484.444544: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35879   kworker/u17:2-23076 (23076) [000] d..3 29484.444550: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35880   kworker/u17:2-23076 (23076) [000] d..2 29484.444567: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35881     kworker/0:0-13450 (13450) [000] d..2 29484.444573: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35882     kworker/0:0-13450 (13450) [000] d..3 29484.444582: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35883     kworker/0:0-13450 (13450) [000] d..2 29484.444590: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35884            adbd-23484 ( 1007) [000] d..2 29484.444601: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35885            adbd-23484 ( 1007) [000] d..3 29484.444606: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35886            adbd-23484 ( 1007) [000] d..2 29484.444649: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35887            adbd-1007  ( 1007) [000] d..1 29484.444707: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35888            adbd-1007  ( 1007) [000] d..2 29484.444718: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35889            adbd-1007  ( 1007) [000] d..2 29484.444746: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35890            adbd-23485 ( 1007) [000] d..2 29484.444803: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35891 shell svc 13722-13723 ( 1007) [000] d.h4 29484.444819: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35892 shell svc 13722-13723 ( 1007) [000] dnh5 29484.444828: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35893 shell svc 13722-13723 ( 1007) [000] d..2 29484.444836: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35894   kworker/u17:2-23076 (23076) [000] d..2 29484.444844: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35895   kworker/u17:2-23076 (23076) [000] d..3 29484.444850: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35896   kworker/u17:2-23076 (23076) [000] d..2 29484.444866: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35897     kworker/0:0-13450 (13450) [000] d..2 29484.444871: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35898     kworker/0:0-13450 (13450) [000] d..3 29484.444879: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35899     kworker/0:0-13450 (13450) [000] d..2 29484.444888: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35900            adbd-23485 ( 1007) [000] d..2 29484.444928: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35901 shell svc 13722-13723 ( 1007) [000] d.h2 29484.444946: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35902 shell svc 13722-13723 ( 1007) [000] dnh3 29484.444955: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35903 shell svc 13722-13723 ( 1007) [000] d..2 29484.444962: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35904   kworker/u17:2-23076 (23076) [000] d..2 29484.444968: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35905   kworker/u17:2-23076 (23076) [000] d..3 29484.444973: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35906   kworker/u17:2-23076 (23076) [000] d..2 29484.444989: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35907     kworker/0:0-13450 (13450) [000] d..2 29484.444994: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35908     kworker/0:0-13450 (13450) [000] d..3 29484.445002: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35909     kworker/0:0-13450 (13450) [000] d..2 29484.445011: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35910            adbd-23485 ( 1007) [000] d..2 29484.445023: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35911 shell svc 13722-13723 ( 1007) [000] d..2 29484.445058: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35912          <idle>-0     (-----) [000] d..1 29484.445067: cpu_idle: state=0 cpu_id=0
35913              ps-13725 (13725) [002] d..2 29484.445118: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35914              ps-13725 (13725) [002] d..3 29484.445134: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35915          <idle>-0     (-----) [000] d.h3 29484.445174: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35916          <idle>-0     (-----) [000] dnh4 29484.445184: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35917          <idle>-0     (-----) [000] .n.1 29484.445189: cpu_idle: state=4294967295 cpu_id=0
35918          <idle>-0     (-----) [000] d..2 29484.445196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35919   kworker/u17:2-23076 (23076) [000] d..2 29484.445204: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35920   kworker/u17:2-23076 (23076) [000] d..3 29484.445210: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35921   kworker/u17:2-23076 (23076) [000] d..2 29484.445226: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35922     kworker/0:0-13450 (13450) [000] d..2 29484.445233: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35923     kworker/0:0-13450 (13450) [000] d..3 29484.445241: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35924     kworker/0:0-13450 (13450) [000] d..2 29484.445249: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35925            adbd-23484 ( 1007) [000] d..2 29484.445260: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35926            adbd-23484 ( 1007) [000] d..3 29484.445266: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35927            adbd-23484 ( 1007) [000] d..2 29484.445309: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35928            adbd-1007  ( 1007) [000] d..1 29484.445366: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35929            adbd-1007  ( 1007) [000] d..2 29484.445379: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35930            adbd-1007  ( 1007) [000] d..2 29484.445408: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35931            adbd-23485 ( 1007) [000] d..2 29484.445466: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35932 shell svc 13722-13723 ( 1007) [000] d.h4 29484.445483: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35933 shell svc 13722-13723 ( 1007) [000] dnh5 29484.445492: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35934 shell svc 13722-13723 ( 1007) [000] d..2 29484.445499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35935   kworker/u17:2-23076 (23076) [000] d..2 29484.445508: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35936   kworker/u17:2-23076 (23076) [000] d..3 29484.445513: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35937   kworker/u17:2-23076 (23076) [000] d..2 29484.445530: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35938     kworker/0:0-13450 (13450) [000] d..2 29484.445535: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35939     kworker/0:0-13450 (13450) [000] d..3 29484.445543: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35940     kworker/0:0-13450 (13450) [000] d..2 29484.445550: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35941            adbd-23485 ( 1007) [000] d..2 29484.445593: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35942 shell svc 13722-13723 ( 1007) [000] d.h2 29484.445624: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35943 shell svc 13722-13723 ( 1007) [000] dnh3 29484.445635: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35944 shell svc 13722-13723 ( 1007) [000] d..2 29484.445643: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35945   kworker/u17:2-23076 (23076) [000] d..2 29484.445650: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35946   kworker/u17:2-23076 (23076) [000] d..3 29484.445654: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35947   kworker/u17:2-23076 (23076) [000] d..2 29484.445670: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35948     kworker/0:0-13450 (13450) [000] d..2 29484.445676: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35949     kworker/0:0-13450 (13450) [000] d..3 29484.445684: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35950     kworker/0:0-13450 (13450) [000] d..2 29484.445691: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35951            adbd-23485 ( 1007) [000] d..2 29484.445704: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35952 shell svc 13722-13723 ( 1007) [000] d..2 29484.445739: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35953          <idle>-0     (-----) [000] d..1 29484.445747: cpu_idle: state=0 cpu_id=0
35954              ps-13725 (13725) [002] d..2 29484.445797: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
35955              ps-13725 (13725) [002] d..3 29484.445812: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
35956          <idle>-0     (-----) [000] d.h3 29484.445814: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35957          <idle>-0     (-----) [000] dnh4 29484.445821: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35958          <idle>-0     (-----) [000] .n.1 29484.445826: cpu_idle: state=4294967295 cpu_id=0
35959          <idle>-0     (-----) [000] d..2 29484.445833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35960   kworker/u17:2-23076 (23076) [000] d..2 29484.445841: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35961   kworker/u17:2-23076 (23076) [000] d..3 29484.445847: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35962   kworker/u17:2-23076 (23076) [000] d..2 29484.445863: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35963     kworker/0:0-13450 (13450) [000] d..2 29484.445870: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
35964     kworker/0:0-13450 (13450) [000] d..3 29484.445880: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
35965     kworker/0:0-13450 (13450) [000] d..2 29484.445888: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
35966            adbd-23484 ( 1007) [000] d..2 29484.445899: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
35967            adbd-23484 ( 1007) [000] d..3 29484.445904: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
35968            adbd-23484 ( 1007) [000] d..2 29484.445948: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
35969            adbd-1007  ( 1007) [000] d..1 29484.446006: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35970            adbd-1007  ( 1007) [000] d..2 29484.446018: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35971            adbd-1007  ( 1007) [000] d..2 29484.446047: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35972            adbd-23485 ( 1007) [000] d..2 29484.446105: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35973 shell svc 13722-13723 ( 1007) [000] d.h4 29484.446122: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35974 shell svc 13722-13723 ( 1007) [000] dnh5 29484.446131: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35975 shell svc 13722-13723 ( 1007) [000] d..2 29484.446145: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35976   kworker/u17:2-23076 (23076) [000] d..2 29484.446152: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35977   kworker/u17:2-23076 (23076) [000] d..3 29484.446157: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35978   kworker/u17:2-23076 (23076) [000] d..2 29484.446173: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35979     kworker/0:0-13450 (13450) [000] d..2 29484.446178: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35980     kworker/0:0-13450 (13450) [000] d..3 29484.446186: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35981     kworker/0:0-13450 (13450) [000] d..2 29484.446195: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35982            adbd-23485 ( 1007) [000] d..2 29484.446237: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35983 shell svc 13722-13723 ( 1007) [000] d.h2 29484.446271: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35984 shell svc 13722-13723 ( 1007) [000] dnh3 29484.446281: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35985 shell svc 13722-13723 ( 1007) [000] d..2 29484.446289: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35986   kworker/u17:2-23076 (23076) [000] d..2 29484.446296: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35987   kworker/u17:2-23076 (23076) [000] d..3 29484.446301: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
35988   kworker/u17:2-23076 (23076) [000] d..2 29484.446317: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
35989     kworker/0:0-13450 (13450) [000] d..2 29484.446321: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
35990     kworker/0:0-13450 (13450) [000] d..3 29484.446329: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
35991     kworker/0:0-13450 (13450) [000] d..2 29484.446337: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
35992            adbd-23485 ( 1007) [000] d..2 29484.446350: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
35993 shell svc 13722-13723 ( 1007) [000] d..2 29484.446383: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35994          <idle>-0     (-----) [000] d..1 29484.446392: cpu_idle: state=0 cpu_id=0
35995          <idle>-0     (-----) [000] d.h3 29484.446434: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35996          <idle>-0     (-----) [000] dnh4 29484.446441: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
35997          <idle>-0     (-----) [000] .n.1 29484.446445: cpu_idle: state=4294967295 cpu_id=0
35998          <idle>-0     (-----) [000] d..2 29484.446452: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
35999   kworker/u17:2-23076 (23076) [000] d..2 29484.446461: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36000   kworker/u17:2-23076 (23076) [000] d..3 29484.446467: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36001              ps-13725 (13725) [002] d..2 29484.446467: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36002              ps-13725 (13725) [002] d..3 29484.446482: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36003   kworker/u17:2-23076 (23076) [000] d..2 29484.446484: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36004     kworker/0:0-13450 (13450) [000] d..2 29484.446490: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36005     kworker/0:0-13450 (13450) [000] d..3 29484.446499: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36006     kworker/0:0-13450 (13450) [000] d..2 29484.446507: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36007            adbd-23484 ( 1007) [000] d..2 29484.446517: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36008            adbd-23484 ( 1007) [000] d..3 29484.446523: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36009            adbd-23484 ( 1007) [000] d..2 29484.446567: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36010            adbd-1007  ( 1007) [000] d..1 29484.446628: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36011            adbd-1007  ( 1007) [000] d..2 29484.446641: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36012            adbd-1007  ( 1007) [000] d..2 29484.446670: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36013            adbd-23485 ( 1007) [000] d..2 29484.446729: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36014 shell svc 13722-13723 ( 1007) [000] d.h4 29484.446746: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36015 shell svc 13722-13723 ( 1007) [000] dnh5 29484.446756: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36016 shell svc 13722-13723 ( 1007) [000] d..2 29484.446764: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36017   kworker/u17:2-23076 (23076) [000] d..2 29484.446771: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36018   kworker/u17:2-23076 (23076) [000] d..3 29484.446775: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36019   kworker/u17:2-23076 (23076) [000] d..2 29484.446793: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36020     kworker/0:0-13450 (13450) [000] d..2 29484.446798: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36021     kworker/0:0-13450 (13450) [000] d..3 29484.446805: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36022     kworker/0:0-13450 (13450) [000] d..2 29484.446814: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36023            adbd-23485 ( 1007) [000] d..2 29484.446856: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36024 shell svc 13722-13723 ( 1007) [000] d.h2 29484.446879: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36025 shell svc 13722-13723 ( 1007) [000] dnh3 29484.446889: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36026 shell svc 13722-13723 ( 1007) [000] d..2 29484.446897: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36027   kworker/u17:2-23076 (23076) [000] d..2 29484.446904: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36028   kworker/u17:2-23076 (23076) [000] d..3 29484.446909: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36029   kworker/u17:2-23076 (23076) [000] d..2 29484.446925: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36030     kworker/0:0-13450 (13450) [000] d..2 29484.446930: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36031     kworker/0:0-13450 (13450) [000] d..3 29484.446938: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36032     kworker/0:0-13450 (13450) [000] d..2 29484.446946: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36033            adbd-23485 ( 1007) [000] d..2 29484.446959: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36034              ps-13725 (13725) [002] d..2 29484.446982: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36035 shell svc 13722-13723 ( 1007) [000] d..2 29484.446991: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36036          <idle>-0     (-----) [000] d..1 29484.447000: cpu_idle: state=0 cpu_id=0
36037              ps-13725 (13725) [002] d..3 29484.447007: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36038          <idle>-0     (-----) [000] d.h3 29484.447065: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36039          <idle>-0     (-----) [000] dnh4 29484.447071: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36040          <idle>-0     (-----) [000] .n.1 29484.447079: cpu_idle: state=4294967295 cpu_id=0
36041              ps-13725 (13725) [002] d..2 29484.447083: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36042          <idle>-0     (-----) [000] d..2 29484.447087: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36043   kworker/u17:2-23076 (23076) [000] d..2 29484.447094: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36044   kworker/u17:2-23076 (23076) [000] d..3 29484.447100: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36045 shell svc 13722-13723 ( 1007) [002] d..2 29484.447116: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
36046   kworker/u17:2-23076 (23076) [000] d..2 29484.447116: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36047     kworker/0:0-13450 (13450) [000] d..2 29484.447123: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36048     kworker/0:0-13450 (13450) [000] d..3 29484.447131: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36049     kworker/0:0-13450 (13450) [000] d..2 29484.447140: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36050            adbd-23484 ( 1007) [000] d..2 29484.447151: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36051            adbd-23484 ( 1007) [000] d..3 29484.447156: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36052          <idle>-0     (-----) [001] ...1 29484.447196: cpu_idle: state=4294967295 cpu_id=1
36053            adbd-23484 ( 1007) [000] d..2 29484.447200: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36054          <idle>-0     (-----) [001] d..1 29484.447202: cpu_idle: state=2 cpu_id=1
36055              ps-13725 (13725) [002] d..2 29484.447253: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36056            adbd-1007  ( 1007) [000] d..1 29484.447259: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36057              ps-13725 (13725) [002] d..3 29484.447263: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36058            adbd-1007  ( 1007) [000] d..2 29484.447271: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36059            adbd-1007  ( 1007) [000] d..2 29484.447299: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36060            adbd-23485 ( 1007) [000] d.h2 29484.447351: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36061            adbd-23485 ( 1007) [000] dnh3 29484.447362: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36062            adbd-23485 ( 1007) [000] d..2 29484.447371: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36063   kworker/u17:2-23076 (23076) [000] d..2 29484.447379: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36064   kworker/u17:2-23076 (23076) [000] d..3 29484.447384: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36065   kworker/u17:2-23076 (23076) [000] d..2 29484.447401: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36066     kworker/0:0-13450 (13450) [000] d..2 29484.447406: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36067     kworker/0:0-13450 (13450) [000] d..3 29484.447408: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36068     kworker/0:0-13450 (13450) [000] d..2 29484.447415: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36069            adbd-23485 ( 1007) [000] d..2 29484.447473: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36070 shell svc 13722-13723 ( 1007) [000] d.h4 29484.447489: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36071 shell svc 13722-13723 ( 1007) [000] dnh5 29484.447498: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36072 shell svc 13722-13723 ( 1007) [000] d..2 29484.447505: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36073   kworker/u17:2-23076 (23076) [000] d..2 29484.447513: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36074   kworker/u17:2-23076 (23076) [000] d..3 29484.447517: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36075   kworker/u17:2-23076 (23076) [000] d..2 29484.447533: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36076     kworker/0:0-13450 (13450) [000] d..2 29484.447538: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36077     kworker/0:0-13450 (13450) [000] d..3 29484.447545: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36078     kworker/0:0-13450 (13450) [000] d..2 29484.447553: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36079            adbd-23485 ( 1007) [000] d..2 29484.447568: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36080              ps-13725 (13725) [002] d..2 29484.447591: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36081 shell svc 13722-13723 ( 1007) [000] d..2 29484.447603: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36082          <idle>-0     (-----) [000] d..1 29484.447610: cpu_idle: state=0 cpu_id=0
36083              ps-13725 (13725) [002] d..3 29484.447618: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36084          <idle>-0     (-----) [000] d.h3 29484.447665: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36085          <idle>-0     (-----) [000] dnh4 29484.447674: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36086          <idle>-0     (-----) [000] .n.1 29484.447679: cpu_idle: state=4294967295 cpu_id=0
36087          <idle>-0     (-----) [000] d..2 29484.447684: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36088   kworker/u17:2-23076 (23076) [000] d..2 29484.447693: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36089   kworker/u17:2-23076 (23076) [000] d..3 29484.447699: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36090   kworker/u17:2-23076 (23076) [000] d..2 29484.447715: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36091     kworker/0:0-13450 (13450) [000] d..2 29484.447721: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36092     kworker/0:0-13450 (13450) [000] d..3 29484.447729: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36093     kworker/0:0-13450 (13450) [000] d..2 29484.447738: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36094            adbd-23484 ( 1007) [000] d..2 29484.447748: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36095            adbd-23484 ( 1007) [000] d..3 29484.447754: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36096            adbd-23484 ( 1007) [000] d..2 29484.447797: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36097            adbd-1007  ( 1007) [000] d..1 29484.447855: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36098            adbd-1007  ( 1007) [000] d..2 29484.447867: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36099            adbd-1007  ( 1007) [000] d..2 29484.447895: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36100            adbd-23485 ( 1007) [000] d..2 29484.447955: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36101 shell svc 13722-13723 ( 1007) [000] d.h3 29484.447973: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36102 shell svc 13722-13723 ( 1007) [000] dnh4 29484.447983: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36103 shell svc 13722-13723 ( 1007) [000] d..2 29484.447991: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36104   kworker/u17:2-23076 (23076) [000] d..2 29484.447998: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36105   kworker/u17:2-23076 (23076) [000] d..3 29484.448003: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36106   kworker/u17:2-23076 (23076) [000] d..2 29484.448020: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36107     kworker/0:0-13450 (13450) [000] d..2 29484.448026: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36108     kworker/0:0-13450 (13450) [000] d..3 29484.448033: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36109     kworker/0:0-13450 (13450) [000] d..2 29484.448042: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36110            adbd-23485 ( 1007) [000] d..2 29484.448084: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36111 shell svc 13722-13723 ( 1007) [000] d.h2 29484.448100: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36112 shell svc 13722-13723 ( 1007) [000] dnh3 29484.448108: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36113 shell svc 13722-13723 ( 1007) [000] d..2 29484.448116: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36114   kworker/u17:2-23076 (23076) [000] d..2 29484.448123: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36115   kworker/u17:2-23076 (23076) [000] d..3 29484.448127: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36116   kworker/u17:2-23076 (23076) [000] d..2 29484.448143: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36117     kworker/0:0-13450 (13450) [000] d..2 29484.448147: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36118     kworker/0:0-13450 (13450) [000] d..3 29484.448154: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36119     kworker/0:0-13450 (13450) [000] d..2 29484.448162: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36120            adbd-23485 ( 1007) [000] d..2 29484.448174: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36121 shell svc 13722-13723 ( 1007) [000] d..2 29484.448208: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36122          <idle>-0     (-----) [000] d..1 29484.448215: cpu_idle: state=0 cpu_id=0
36123          <idle>-0     (-----) [000] d.h3 29484.448276: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36124              ps-13725 (13725) [002] d..2 29484.448282: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36125          <idle>-0     (-----) [000] dnh4 29484.448283: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36126          <idle>-0     (-----) [000] .n.1 29484.448292: cpu_idle: state=4294967295 cpu_id=0
36127          <idle>-0     (-----) [000] d..2 29484.448299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36128              ps-13725 (13725) [002] d..3 29484.448300: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36129   kworker/u17:2-23076 (23076) [000] d..2 29484.448307: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36130   kworker/u17:2-23076 (23076) [000] d..3 29484.448312: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36131   kworker/u17:2-23076 (23076) [000] d..2 29484.448328: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36132     kworker/0:0-13450 (13450) [000] d..2 29484.448335: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36133     kworker/0:0-13450 (13450) [000] d..3 29484.448343: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36134     kworker/0:0-13450 (13450) [000] d..2 29484.448352: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36135            adbd-23484 ( 1007) [000] d..2 29484.448363: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36136            adbd-23484 ( 1007) [000] d..3 29484.448368: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36137            adbd-23484 ( 1007) [000] d..2 29484.448413: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36138            adbd-1007  ( 1007) [000] d..1 29484.448470: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36139            adbd-1007  ( 1007) [000] d..2 29484.448482: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36140            adbd-1007  ( 1007) [000] d..2 29484.448510: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36141            adbd-23485 ( 1007) [000] d..2 29484.448569: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36142 shell svc 13722-13723 ( 1007) [000] d.h4 29484.448585: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36143 shell svc 13722-13723 ( 1007) [000] dnh5 29484.448594: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36144 shell svc 13722-13723 ( 1007) [000] d..2 29484.448602: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36145   kworker/u17:2-23076 (23076) [000] d..2 29484.448610: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36146   kworker/u17:2-23076 (23076) [000] d..3 29484.448615: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36147   kworker/u17:2-23076 (23076) [000] d..2 29484.448631: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36148     kworker/0:0-13450 (13450) [000] d..2 29484.448637: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36149     kworker/0:0-13450 (13450) [000] d..3 29484.448645: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36150     kworker/0:0-13450 (13450) [000] d..2 29484.448653: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36151            adbd-23485 ( 1007) [000] d..2 29484.448695: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36152 shell svc 13722-13723 ( 1007) [000] d.h2 29484.448729: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36153 shell svc 13722-13723 ( 1007) [000] dnh3 29484.448739: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36154 shell svc 13722-13723 ( 1007) [000] d..2 29484.448747: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36155   kworker/u17:2-23076 (23076) [000] d..2 29484.448754: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36156   kworker/u17:2-23076 (23076) [000] d..3 29484.448758: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36157   kworker/u17:2-23076 (23076) [000] d..2 29484.448775: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36158     kworker/0:0-13450 (13450) [000] d..2 29484.448780: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36159     kworker/0:0-13450 (13450) [000] d..3 29484.448787: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36160     kworker/0:0-13450 (13450) [000] d..2 29484.448796: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36161            adbd-23485 ( 1007) [000] d..2 29484.448810: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36162 shell svc 13722-13723 ( 1007) [000] d..2 29484.448842: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36163          <idle>-0     (-----) [000] d..1 29484.448849: cpu_idle: state=0 cpu_id=0
36164          <idle>-0     (-----) [000] d.h3 29484.448888: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36165          <idle>-0     (-----) [000] dnh4 29484.448895: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36166          <idle>-0     (-----) [000] .n.1 29484.448899: cpu_idle: state=4294967295 cpu_id=0
36167          <idle>-0     (-----) [000] d..2 29484.448904: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36168   kworker/u17:2-23076 (23076) [000] d..2 29484.448913: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36169   kworker/u17:2-23076 (23076) [000] d..3 29484.448918: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36170   kworker/u17:2-23076 (23076) [000] d..2 29484.448934: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36171     kworker/0:0-13450 (13450) [000] d..2 29484.448941: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36172     kworker/0:0-13450 (13450) [000] d..3 29484.448949: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36173     kworker/0:0-13450 (13450) [000] d..2 29484.448958: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36174              ps-13725 (13725) [002] d..2 29484.448962: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36175            adbd-23484 ( 1007) [000] d..2 29484.448969: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36176              ps-13725 (13725) [002] d..3 29484.448977: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36177            adbd-23484 ( 1007) [000] d..3 29484.448978: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36178            adbd-23484 ( 1007) [000] d..2 29484.449021: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36179            adbd-1007  ( 1007) [000] d..1 29484.449080: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36180            adbd-1007  ( 1007) [000] d..2 29484.449092: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36181            adbd-1007  ( 1007) [000] d..2 29484.449121: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36182            adbd-23485 ( 1007) [000] d..2 29484.449179: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36183 shell svc 13722-13723 ( 1007) [000] d.h4 29484.449195: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36184 shell svc 13722-13723 ( 1007) [000] dnh5 29484.449204: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36185 shell svc 13722-13723 ( 1007) [000] d..2 29484.449212: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36186   kworker/u17:2-23076 (23076) [000] d..2 29484.449219: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36187   kworker/u17:2-23076 (23076) [000] d..3 29484.449224: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36188   kworker/u17:2-23076 (23076) [000] d..2 29484.449240: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36189     kworker/0:0-13450 (13450) [000] d..2 29484.449246: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36190     kworker/0:0-13450 (13450) [000] d..3 29484.449254: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36191     kworker/0:0-13450 (13450) [000] d..2 29484.449262: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36192            adbd-23485 ( 1007) [000] d..2 29484.449303: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36193 shell svc 13722-13723 ( 1007) [000] d.h2 29484.449329: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36194 shell svc 13722-13723 ( 1007) [000] dnh3 29484.449339: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36195 shell svc 13722-13723 ( 1007) [000] d..2 29484.449346: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36196   kworker/u17:2-23076 (23076) [000] d..2 29484.449353: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36197   kworker/u17:2-23076 (23076) [000] d..3 29484.449358: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36198   kworker/u17:2-23076 (23076) [000] d..2 29484.449374: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36199     kworker/0:0-13450 (13450) [000] d..2 29484.449379: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36200     kworker/0:0-13450 (13450) [000] d..3 29484.449387: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36201     kworker/0:0-13450 (13450) [000] d..2 29484.449395: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36202            adbd-23485 ( 1007) [000] d..2 29484.449407: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36203 shell svc 13722-13723 ( 1007) [000] d..2 29484.449436: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36204          <idle>-0     (-----) [000] d..1 29484.449443: cpu_idle: state=0 cpu_id=0
36205              ps-13725 (13725) [002] d..2 29484.449480: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36206          <idle>-0     (-----) [000] d.h3 29484.449488: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36207              ps-13725 (13725) [002] d..3 29484.449494: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36208          <idle>-0     (-----) [000] dnh4 29484.449496: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36209          <idle>-0     (-----) [000] .n.1 29484.449500: cpu_idle: state=4294967295 cpu_id=0
36210          <idle>-0     (-----) [000] d..2 29484.449505: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36211   kworker/u17:2-23076 (23076) [000] d..2 29484.449514: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36212   kworker/u17:2-23076 (23076) [000] d..3 29484.449519: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36213   kworker/u17:2-23076 (23076) [000] d..2 29484.449535: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36214     kworker/0:0-13450 (13450) [000] d..2 29484.449542: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36215     kworker/0:0-13450 (13450) [000] d..3 29484.449551: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36216     kworker/0:0-13450 (13450) [000] d..2 29484.449560: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36217            adbd-23484 ( 1007) [000] d..2 29484.449570: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36218            adbd-23484 ( 1007) [000] d..3 29484.449576: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36219            adbd-23484 ( 1007) [000] d..2 29484.449620: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36220            adbd-1007  ( 1007) [000] d..1 29484.449677: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36221            adbd-1007  ( 1007) [000] d..2 29484.449690: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36222            adbd-1007  ( 1007) [000] d..2 29484.449718: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36223            adbd-23485 ( 1007) [000] d..2 29484.449776: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36224 shell svc 13722-13723 ( 1007) [000] d.h4 29484.449792: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36225 shell svc 13722-13723 ( 1007) [000] dnh5 29484.449801: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36226 shell svc 13722-13723 ( 1007) [000] d..2 29484.449810: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36227   kworker/u17:2-23076 (23076) [000] d..2 29484.449818: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36228   kworker/u17:2-23076 (23076) [000] d..3 29484.449824: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36229   kworker/u17:2-23076 (23076) [000] d..2 29484.449839: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36230     kworker/0:0-13450 (13450) [000] d..2 29484.449845: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36231     kworker/0:0-13450 (13450) [000] d..3 29484.449853: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36232     kworker/0:0-13450 (13450) [000] d..2 29484.449860: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36233            adbd-23485 ( 1007) [000] d..2 29484.449902: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36234 shell svc 13722-13723 ( 1007) [000] d.h4 29484.449918: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36235 shell svc 13722-13723 ( 1007) [000] dnh5 29484.449927: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36236 shell svc 13722-13723 ( 1007) [000] d..2 29484.449934: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36237   kworker/u17:2-23076 (23076) [000] d..2 29484.449940: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36238   kworker/u17:2-23076 (23076) [000] d..3 29484.449945: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36239   kworker/u17:2-23076 (23076) [000] d..2 29484.449960: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36240     kworker/0:0-13450 (13450) [000] d..2 29484.449965: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36241     kworker/0:0-13450 (13450) [000] d..3 29484.449972: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36242     kworker/0:0-13450 (13450) [000] d..2 29484.449980: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36243            adbd-23485 ( 1007) [000] d..2 29484.449992: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36244 shell svc 13722-13723 ( 1007) [000] d..2 29484.450029: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36245          <idle>-0     (-----) [000] d..1 29484.450036: cpu_idle: state=0 cpu_id=0
36246          <idle>-0     (-----) [000] d.h3 29484.450079: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36247          <idle>-0     (-----) [000] dnh4 29484.450088: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36248          <idle>-0     (-----) [000] .n.1 29484.450093: cpu_idle: state=4294967295 cpu_id=0
36249          <idle>-0     (-----) [000] d..2 29484.450098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36250   kworker/u17:2-23076 (23076) [000] d..2 29484.450106: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36251   kworker/u17:2-23076 (23076) [000] d..3 29484.450111: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36252   kworker/u17:2-23076 (23076) [000] d..2 29484.450128: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36253     kworker/0:0-13450 (13450) [000] d..2 29484.450135: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36254     kworker/0:0-13450 (13450) [000] d..3 29484.450143: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36255              ps-13725 (13725) [002] d..2 29484.450151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36256     kworker/0:0-13450 (13450) [000] d..2 29484.450152: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36257            adbd-23484 ( 1007) [000] d..2 29484.450163: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36258              ps-13725 (13725) [002] d..3 29484.450167: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36259            adbd-23484 ( 1007) [000] d..3 29484.450170: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36260            adbd-23484 ( 1007) [000] d..2 29484.450212: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36261            adbd-1007  ( 1007) [000] d..1 29484.450269: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36262            adbd-1007  ( 1007) [000] d..2 29484.450281: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36263            adbd-1007  ( 1007) [000] d..2 29484.450309: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36264            adbd-23485 ( 1007) [000] d..2 29484.450367: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36265 shell svc 13722-13723 ( 1007) [000] d.h4 29484.450383: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36266 shell svc 13722-13723 ( 1007) [000] dnh5 29484.450393: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36267              ps-13725 (13725) [002] d.s2 29484.450408: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
36268 shell svc 13722-13723 ( 1007) [000] dns3 29484.450412: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
36269 shell svc 13722-13723 ( 1007) [000] dns4 29484.450419: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
36270 shell svc 13722-13723 ( 1007) [000] d..2 29484.450433: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36271              ps-13725 (13725) [002] d.s3 29484.450438: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
36272   kworker/u17:2-23076 (23076) [000] d..2 29484.450441: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36273   kworker/u17:2-23076 (23076) [000] d..3 29484.450446: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36274   kworker/u17:2-23076 (23076) [000] d..2 29484.450462: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36275     rcu_preempt-7     (    7) [000] d..2 29484.450468: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
36276     rcu_preempt-7     (    7) [000] d..3 29484.450490: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
36277     rcu_preempt-7     (    7) [000] d..2 29484.450496: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
36278         rcuop/2-29    (   29) [000] d..2 29484.450498: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
36279         rcuop/2-29    (   29) [000] d..3 29484.450516: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
36280         rcuop/2-29    (   29) [000] d..2 29484.450518: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
36281         rcuop/2-29    (   29) [000] d..3 29484.450524: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
36282         rcuop/2-29    (   29) [000] d..2 29484.450529: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
36283         rcuop/3-37    (   37) [000] d..2 29484.450546: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36284     rcu_preempt-7     (    7) [000] d..2 29484.450553: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36285     kworker/0:0-13450 (13450) [000] d..2 29484.450558: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36286     kworker/0:0-13450 (13450) [000] d..3 29484.450566: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36287     kworker/0:0-13450 (13450) [000] d..2 29484.450575: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
36288  kworker/u16:10-23868 (23868) [000] d..2 29484.450707: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
36289          <idle>-0     (-----) [003] d.s3 29484.450740: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
36290            adbd-23485 ( 1007) [000] d..2 29484.450751: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36291          <idle>-0     (-----) [003] d.s4 29484.450758: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
36292          <idle>-0     (-----) [003] dns4 29484.450761: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
36293          <idle>-0     (-----) [003] .n.1 29484.450765: cpu_idle: state=4294967295 cpu_id=3
36294 shell svc 13722-13723 ( 1007) [000] d.h2 29484.450771: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36295          <idle>-0     (-----) [003] d..2 29484.450773: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
36296 shell svc 13722-13723 ( 1007) [000] d.h3 29484.450797: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
36297  kworker/u16:10-23868 (23868) [003] d..2 29484.450809: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36298   kworker/u17:2-23076 (23076) [003] d..2 29484.450819: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
36299   kworker/u17:2-23076 (23076) [003] d..3 29484.450831: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
36300 shell svc 13722-13723 ( 1007) [000] d..2 29484.450842: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36301   kworker/u17:2-23076 (23076) [003] d..2 29484.450849: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
36302          <idle>-0     (-----) [000] d..1 29484.450851: cpu_idle: state=0 cpu_id=0
36303     kworker/3:1-12662 (12662) [003] d..2 29484.450857: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36304     kworker/3:1-12662 (12662) [003] d..3 29484.450880: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36305     kworker/3:1-12662 (12662) [003] d..2 29484.450890: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
36306              ps-13725 (13725) [002] d..2 29484.450906: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36307              ps-13725 (13725) [002] d..3 29484.450921: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36308  kworker/u16:10-23868 (23868) [003] .... 29484.450940: clk_set_rate: l3_cluster0_vote_clk 1401600000
36309  kworker/u16:10-23868 (23868) [003] .... 29484.450943: clk_set_rate: l3_clk 1401600000
36310  kworker/u16:10-23868 (23868) [003] d..2 29484.450969: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36311          <idle>-0     (-----) [000] d.h3 29484.450977: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
36312          <idle>-0     (-----) [000] dnh4 29484.450992: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36313          <idle>-0     (-----) [000] .n.1 29484.450997: cpu_idle: state=4294967295 cpu_id=0
36314            adbd-23485 ( 1007) [003] d..2 29484.451002: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36315          <idle>-0     (-----) [000] d..2 29484.451004: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36316   kworker/u17:2-23076 (23076) [000] d..2 29484.451011: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36317   kworker/u17:2-23076 (23076) [000] d..3 29484.451016: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36318 shell svc 13722-13723 ( 1007) [003] d..2 29484.451033: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36319   kworker/u17:2-23076 (23076) [000] d..2 29484.451034: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36320     kworker/0:0-13450 (13450) [000] d..2 29484.451039: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36321          <idle>-0     (-----) [003] d..1 29484.451041: cpu_idle: state=2 cpu_id=3
36322     kworker/0:0-13450 (13450) [000] d..3 29484.451048: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36323     kworker/0:0-13450 (13450) [000] d..2 29484.451055: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36324            adbd-23484 ( 1007) [000] d..2 29484.451064: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36325            adbd-23484 ( 1007) [000] d..3 29484.451070: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36326              ps-13725 (13725) [002] d..2 29484.451093: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
36327              ps-13725 (13725) [002] d..3 29484.451105: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36328            adbd-23484 ( 1007) [000] d..2 29484.451111: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36329            adbd-1007  ( 1007) [000] d..1 29484.451162: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36330            adbd-1007  ( 1007) [000] d..2 29484.451173: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36331            adbd-1007  ( 1007) [000] d..2 29484.451211: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36332 shell svc 13722-13723 ( 1007) [000] d..2 29484.451239: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36333          <idle>-0     (-----) [000] d..1 29484.451246: cpu_idle: state=0 cpu_id=0
36334              ps-13725 (13725) [002] d..2 29484.451264: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36335          <idle>-0     (-----) [003] .n.1 29484.451274: cpu_idle: state=4294967295 cpu_id=3
36336              ps-13725 (13725) [002] d..3 29484.451279: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36337          <idle>-0     (-----) [003] d..2 29484.451285: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36338            adbd-23485 ( 1007) [003] d..2 29484.451348: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36339          <idle>-0     (-----) [000] d.h3 29484.451354: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36340          <idle>-0     (-----) [000] dnh4 29484.451360: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36341          <idle>-0     (-----) [000] .n.1 29484.451365: cpu_idle: state=4294967295 cpu_id=0
36342          <idle>-0     (-----) [000] d..2 29484.451371: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36343   kworker/u17:2-23076 (23076) [000] d..2 29484.451378: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36344 shell svc 13722-13723 ( 1007) [003] d..2 29484.451383: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36345   kworker/u17:2-23076 (23076) [000] d..3 29484.451384: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36346          <idle>-0     (-----) [003] d..1 29484.451392: cpu_idle: state=0 cpu_id=3
36347   kworker/u17:2-23076 (23076) [000] d..2 29484.451400: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36348     kworker/0:0-13450 (13450) [000] d..2 29484.451405: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36349     kworker/0:0-13450 (13450) [000] d..3 29484.451413: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36350          <idle>-0     (-----) [003] .n.1 29484.451419: cpu_idle: state=4294967295 cpu_id=3
36351          <idle>-0     (-----) [003] d..2 29484.451425: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36352     kworker/0:0-13450 (13450) [000] d..2 29484.451428: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36353          <idle>-0     (-----) [000] d..1 29484.451433: cpu_idle: state=0 cpu_id=0
36354              ps-13725 (13725) [002] d..2 29484.451437: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
36355              ps-13725 (13725) [002] d..3 29484.451450: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36356            adbd-23485 ( 1007) [003] d..2 29484.451482: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36357          <idle>-0     (-----) [000] d.h3 29484.451499: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36358          <idle>-0     (-----) [000] dnh4 29484.451504: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36359          <idle>-0     (-----) [000] .n.1 29484.451509: cpu_idle: state=4294967295 cpu_id=0
36360 shell svc 13722-13723 ( 1007) [003] d..2 29484.451510: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36361          <idle>-0     (-----) [000] d..2 29484.451515: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36362          <idle>-0     (-----) [003] d..1 29484.451519: cpu_idle: state=0 cpu_id=3
36363   kworker/u17:2-23076 (23076) [000] d..2 29484.451521: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36364   kworker/u17:2-23076 (23076) [000] d..3 29484.451526: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36365   kworker/u17:2-23076 (23076) [000] d..2 29484.451541: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36366     kworker/0:0-13450 (13450) [000] d..2 29484.451547: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36367     kworker/0:0-13450 (13450) [000] d..3 29484.451555: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36368          <idle>-0     (-----) [003] .n.1 29484.451561: cpu_idle: state=4294967295 cpu_id=3
36369          <idle>-0     (-----) [003] d..2 29484.451567: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36370     kworker/0:0-13450 (13450) [000] d..2 29484.451569: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36371          <idle>-0     (-----) [000] d..1 29484.451574: cpu_idle: state=0 cpu_id=0
36372            adbd-23485 ( 1007) [003] d..2 29484.451586: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36373          <idle>-0     (-----) [003] d..1 29484.451593: cpu_idle: state=0 cpu_id=3
36374              ps-13725 (13725) [002] d..2 29484.451614: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
36375              ps-13725 (13725) [002] d..3 29484.451627: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36376          <idle>-0     (-----) [000] d.h3 29484.451656: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36377          <idle>-0     (-----) [000] dnh4 29484.451661: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36378          <idle>-0     (-----) [000] .n.1 29484.451666: cpu_idle: state=4294967295 cpu_id=0
36379          <idle>-0     (-----) [000] d..2 29484.451672: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36380   kworker/u17:2-23076 (23076) [000] d..2 29484.451679: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36381   kworker/u17:2-23076 (23076) [000] d..3 29484.451684: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36382   kworker/u17:2-23076 (23076) [000] d..2 29484.451699: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36383     kworker/0:0-13450 (13450) [000] d..2 29484.451706: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36384     kworker/0:0-13450 (13450) [000] d..3 29484.451714: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36385     kworker/0:0-13450 (13450) [000] d..2 29484.451723: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36386            adbd-23484 ( 1007) [000] d..2 29484.451733: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36387            adbd-23484 ( 1007) [000] d..3 29484.451738: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36388            adbd-23484 ( 1007) [000] d..2 29484.451780: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36389            adbd-1007  ( 1007) [000] d..1 29484.451835: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36390            adbd-1007  ( 1007) [000] d..2 29484.451846: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36391          <idle>-0     (-----) [003] .n.1 29484.451850: cpu_idle: state=4294967295 cpu_id=3
36392          <idle>-0     (-----) [003] d..2 29484.451855: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36393            adbd-1007  ( 1007) [000] d..2 29484.451883: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36394            adbd-23485 ( 1007) [003] d..2 29484.451901: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36395          <idle>-0     (-----) [003] d..1 29484.451907: cpu_idle: state=0 cpu_id=3
36396 shell svc 13722-13723 ( 1007) [000] d.h2 29484.451914: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36397 shell svc 13722-13723 ( 1007) [000] dnh3 29484.451925: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36398 shell svc 13722-13723 ( 1007) [000] d..2 29484.451933: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36399   kworker/u17:2-23076 (23076) [000] d..2 29484.451941: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36400   kworker/u17:2-23076 (23076) [000] d..3 29484.451946: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36401   kworker/u17:2-23076 (23076) [000] d..2 29484.451962: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36402     kworker/0:0-13450 (13450) [000] d..2 29484.451967: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36403     kworker/0:0-13450 (13450) [000] d..3 29484.451975: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36404          <idle>-0     (-----) [003] .n.1 29484.451981: cpu_idle: state=4294967295 cpu_id=3
36405     kworker/0:0-13450 (13450) [000] d..2 29484.451983: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36406          <idle>-0     (-----) [003] d..2 29484.451986: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36407 shell svc 13722-13723 ( 1007) [000] d..2 29484.452011: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36408          <idle>-0     (-----) [000] d..1 29484.452019: cpu_idle: state=0 cpu_id=0
36409            adbd-23485 ( 1007) [003] d..2 29484.452031: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36410          <idle>-0     (-----) [003] d..1 29484.452037: cpu_idle: state=0 cpu_id=3
36411          <idle>-0     (-----) [000] d.h3 29484.452046: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36412          <idle>-0     (-----) [000] dnh4 29484.452052: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36413          <idle>-0     (-----) [000] .n.1 29484.452056: cpu_idle: state=4294967295 cpu_id=0
36414          <idle>-0     (-----) [000] d..2 29484.452062: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36415   kworker/u17:2-23076 (23076) [000] d..2 29484.452069: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36416   kworker/u17:2-23076 (23076) [000] d..3 29484.452075: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36417   kworker/u17:2-23076 (23076) [000] d..2 29484.452091: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36418              ps-13725 (13725) [002] d..2 29484.452096: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36419     kworker/0:0-13450 (13450) [000] d..2 29484.452097: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36420     kworker/0:0-13450 (13450) [000] d..3 29484.452106: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36421              ps-13725 (13725) [002] d..3 29484.452109: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36422          <idle>-0     (-----) [003] .n.1 29484.452111: cpu_idle: state=4294967295 cpu_id=3
36423          <idle>-0     (-----) [003] d..2 29484.452116: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36424     kworker/0:0-13450 (13450) [000] d..2 29484.452126: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36425            adbd-23485 ( 1007) [003] d..2 29484.452132: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36426          <idle>-0     (-----) [003] d..1 29484.452138: cpu_idle: state=0 cpu_id=3
36427 shell svc 13722-13723 ( 1007) [000] d..2 29484.452154: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36428          <idle>-0     (-----) [000] d..1 29484.452162: cpu_idle: state=0 cpu_id=0
36429          <idle>-0     (-----) [000] d.h3 29484.452198: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36430          <idle>-0     (-----) [000] dnh4 29484.452206: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36431          <idle>-0     (-----) [000] .n.1 29484.452211: cpu_idle: state=4294967295 cpu_id=0
36432          <idle>-0     (-----) [000] d..2 29484.452217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36433   kworker/u17:2-23076 (23076) [000] d..2 29484.452224: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36434   kworker/u17:2-23076 (23076) [000] d..3 29484.452228: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36435   kworker/u17:2-23076 (23076) [000] d..2 29484.452245: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36436     kworker/0:0-13450 (13450) [000] d..2 29484.452250: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36437     kworker/0:0-13450 (13450) [000] d..3 29484.452258: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36438     kworker/0:0-13450 (13450) [000] d..2 29484.452267: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36439              ps-13725 (13725) [002] d..2 29484.452271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36440            adbd-23484 ( 1007) [000] d..2 29484.452277: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36441              ps-13725 (13725) [002] d..3 29484.452284: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36442            adbd-23484 ( 1007) [000] d..3 29484.452285: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36443            adbd-23484 ( 1007) [000] d..2 29484.452328: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36444            adbd-1007  ( 1007) [000] d..1 29484.452381: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36445            adbd-1007  ( 1007) [000] d..2 29484.452392: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36446          <idle>-0     (-----) [003] .n.1 29484.452397: cpu_idle: state=4294967295 cpu_id=3
36447          <idle>-0     (-----) [003] d..2 29484.452403: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36448            adbd-1007  ( 1007) [000] d..2 29484.452431: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36449            adbd-23485 ( 1007) [003] d..2 29484.452447: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36450          <idle>-0     (-----) [003] d..1 29484.452453: cpu_idle: state=0 cpu_id=3
36451 shell svc 13722-13723 ( 1007) [000] d.h2 29484.452454: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36452 shell svc 13722-13723 ( 1007) [000] dnh3 29484.452464: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36453 shell svc 13722-13723 ( 1007) [000] d..2 29484.452472: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36454   kworker/u17:2-23076 (23076) [000] d..2 29484.452480: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36455   kworker/u17:2-23076 (23076) [000] d..3 29484.452485: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36456   kworker/u17:2-23076 (23076) [000] d..2 29484.452501: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36457     kworker/0:0-13450 (13450) [000] d..2 29484.452506: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36458     kworker/0:0-13450 (13450) [000] d..3 29484.452515: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36459          <idle>-0     (-----) [003] .n.1 29484.452520: cpu_idle: state=4294967295 cpu_id=3
36460     kworker/0:0-13450 (13450) [000] d..2 29484.452523: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36461          <idle>-0     (-----) [003] d..2 29484.452526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36462 shell svc 13722-13723 ( 1007) [000] d..2 29484.452556: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36463          <idle>-0     (-----) [000] d..1 29484.452564: cpu_idle: state=0 cpu_id=0
36464            adbd-23485 ( 1007) [003] d..2 29484.452571: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36465          <idle>-0     (-----) [003] d..1 29484.452577: cpu_idle: state=0 cpu_id=3
36466          <idle>-0     (-----) [000] d.h3 29484.452583: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36467          <idle>-0     (-----) [000] dnh4 29484.452589: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36468          <idle>-0     (-----) [000] .n.1 29484.452594: cpu_idle: state=4294967295 cpu_id=0
36469              ps-13725 (13725) [002] d..2 29484.452599: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36470          <idle>-0     (-----) [000] d..2 29484.452600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36471   kworker/u17:2-23076 (23076) [000] d..2 29484.452607: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36472              ps-13725 (13725) [002] d..3 29484.452614: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36473   kworker/u17:2-23076 (23076) [000] d..3 29484.452614: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36474   kworker/u17:2-23076 (23076) [000] d..2 29484.452629: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36475     kworker/0:0-13450 (13450) [000] d..2 29484.452635: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36476     kworker/0:0-13450 (13450) [000] d..3 29484.452643: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36477          <idle>-0     (-----) [003] .n.1 29484.452648: cpu_idle: state=4294967295 cpu_id=3
36478          <idle>-0     (-----) [003] d..2 29484.452654: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36479     kworker/0:0-13450 (13450) [000] d..2 29484.452663: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36480            adbd-23485 ( 1007) [003] d..2 29484.452669: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36481          <idle>-0     (-----) [003] d..1 29484.452675: cpu_idle: state=0 cpu_id=3
36482 shell svc 13722-13723 ( 1007) [000] d..2 29484.452690: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36483          <idle>-0     (-----) [000] d..1 29484.452698: cpu_idle: state=0 cpu_id=0
36484          <idle>-0     (-----) [000] d.h3 29484.452731: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36485          <idle>-0     (-----) [000] dnh4 29484.452737: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36486          <idle>-0     (-----) [000] .n.1 29484.452741: cpu_idle: state=4294967295 cpu_id=0
36487          <idle>-0     (-----) [000] d..2 29484.452747: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36488   kworker/u17:2-23076 (23076) [000] d..2 29484.452754: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36489   kworker/u17:2-23076 (23076) [000] d..3 29484.452759: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36490              ps-13725 (13725) [002] d..2 29484.452773: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36491   kworker/u17:2-23076 (23076) [000] d..2 29484.452775: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36492     kworker/0:0-13450 (13450) [000] d..2 29484.452782: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36493              ps-13725 (13725) [002] d..3 29484.452789: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36494     kworker/0:0-13450 (13450) [000] d..3 29484.452793: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36495     kworker/0:0-13450 (13450) [000] d..2 29484.452801: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36496            adbd-23484 ( 1007) [000] d..2 29484.452810: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36497            adbd-23484 ( 1007) [000] d..3 29484.452816: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36498            adbd-23484 ( 1007) [000] d..2 29484.452858: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36499            adbd-1007  ( 1007) [000] d..1 29484.452910: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36500            adbd-1007  ( 1007) [000] d..2 29484.452933: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36501            adbd-1007  ( 1007) [000] d..2 29484.452960: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36502            adbd-23485 ( 1007) [000] d..2 29484.453014: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36503 shell svc 13722-13723 ( 1007) [000] d.h4 29484.453031: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36504 shell svc 13722-13723 ( 1007) [000] dnh5 29484.453040: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36505 shell svc 13722-13723 ( 1007) [000] d..2 29484.453047: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36506   kworker/u17:2-23076 (23076) [000] d..2 29484.453055: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36507   kworker/u17:2-23076 (23076) [000] d..3 29484.453060: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36508   kworker/u17:2-23076 (23076) [000] d..2 29484.453075: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36509     kworker/0:0-13450 (13450) [000] d..2 29484.453080: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36510     kworker/0:0-13450 (13450) [000] d..3 29484.453087: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36511     kworker/0:0-13450 (13450) [000] d..2 29484.453095: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36512            adbd-23485 ( 1007) [000] d..2 29484.453134: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36513 shell svc 13722-13723 ( 1007) [000] d.h2 29484.453165: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36514 shell svc 13722-13723 ( 1007) [000] dnh3 29484.453175: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36515 shell svc 13722-13723 ( 1007) [000] d..2 29484.453182: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36516   kworker/u17:2-23076 (23076) [000] d..2 29484.453190: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36517   kworker/u17:2-23076 (23076) [000] d..3 29484.453194: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36518   kworker/u17:2-23076 (23076) [000] d..2 29484.453210: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36519     kworker/0:0-13450 (13450) [000] d..2 29484.453214: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36520     kworker/0:0-13450 (13450) [000] d..3 29484.453222: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36521     kworker/0:0-13450 (13450) [000] d..2 29484.453229: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36522            adbd-23485 ( 1007) [000] d..2 29484.453241: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36523 shell svc 13722-13723 ( 1007) [000] d..2 29484.453255: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36524          <idle>-0     (-----) [000] d..1 29484.453263: cpu_idle: state=0 cpu_id=0
36525              ps-13725 (13725) [002] d..2 29484.453267: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36526              ps-13725 (13725) [002] d..3 29484.453281: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36527          <idle>-0     (-----) [000] d.h3 29484.453320: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36528          <idle>-0     (-----) [000] dnh4 29484.453325: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36529          <idle>-0     (-----) [000] .n.1 29484.453330: cpu_idle: state=4294967295 cpu_id=0
36530          <idle>-0     (-----) [000] d..2 29484.453336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36531   kworker/u17:2-23076 (23076) [000] d..2 29484.453344: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36532   kworker/u17:2-23076 (23076) [000] d..3 29484.453349: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36533   kworker/u17:2-23076 (23076) [000] d..2 29484.453364: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36534     kworker/0:0-13450 (13450) [000] d..2 29484.453371: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36535     kworker/0:0-13450 (13450) [000] d..3 29484.453379: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36536     kworker/0:0-13450 (13450) [000] d..2 29484.453387: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36537            adbd-23484 ( 1007) [000] d..2 29484.453396: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36538            adbd-23484 ( 1007) [000] d..3 29484.453401: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36539            adbd-23484 ( 1007) [000] d..2 29484.453442: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36540            adbd-1007  ( 1007) [000] d..1 29484.453492: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36541            adbd-1007  ( 1007) [000] d..2 29484.453503: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36542            adbd-1007  ( 1007) [000] d..2 29484.453528: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36543            adbd-23485 ( 1007) [000] d..2 29484.453580: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36544 shell svc 13722-13723 ( 1007) [000] d.h4 29484.453596: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36545 shell svc 13722-13723 ( 1007) [000] dnh5 29484.453604: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36546 shell svc 13722-13723 ( 1007) [000] d..2 29484.453612: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36547   kworker/u17:2-23076 (23076) [000] d..2 29484.453618: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36548   kworker/u17:2-23076 (23076) [000] d..3 29484.453623: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36549   kworker/u17:2-23076 (23076) [000] d..2 29484.453638: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36550     kworker/0:0-13450 (13450) [000] d..2 29484.453643: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36551     kworker/0:0-13450 (13450) [000] d..3 29484.453651: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36552     kworker/0:0-13450 (13450) [000] d..2 29484.453658: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36553            adbd-23485 ( 1007) [000] d..2 29484.453696: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36554 shell svc 13722-13723 ( 1007) [000] d.h2 29484.453727: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36555 shell svc 13722-13723 ( 1007) [000] dnh3 29484.453738: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36556              ps-13725 (13725) [002] d.s2 29484.453739: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
36557              ps-13725 (13725) [002] d.s3 29484.453763: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
36558 shell svc 13722-13723 ( 1007) [000] d..2 29484.453769: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36559   kworker/u17:2-23076 (23076) [000] d..2 29484.453776: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36560   kworker/u17:2-23076 (23076) [000] d..3 29484.453782: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36561          <idle>-0     (-----) [003] ...1 29484.453789: cpu_idle: state=4294967295 cpu_id=3
36562          <idle>-0     (-----) [003] d..1 29484.453791: cpu_idle: state=2 cpu_id=3
36563   kworker/u17:2-23076 (23076) [000] d..2 29484.453798: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36564     kworker/0:0-13450 (13450) [000] d..2 29484.453802: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36565     kworker/0:0-13450 (13450) [000] d..3 29484.453810: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36566     kworker/0:0-13450 (13450) [000] d..2 29484.453817: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
36567  kworker/u16:10-23868 (23868) [000] d..2 29484.453898: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36568            adbd-23485 ( 1007) [000] d..2 29484.453913: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36569 shell svc 13722-13723 ( 1007) [000] d.h2 29484.453939: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36570 shell svc 13722-13723 ( 1007) [000] dnh3 29484.453948: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36571 shell svc 13722-13723 ( 1007) [000] d..2 29484.453956: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36572   kworker/u17:2-23076 (23076) [000] d..2 29484.453962: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36573   kworker/u17:2-23076 (23076) [000] d..3 29484.453967: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36574   kworker/u17:2-23076 (23076) [000] d..2 29484.453982: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36575     kworker/0:0-13450 (13450) [000] d..2 29484.453988: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36576     kworker/0:0-13450 (13450) [000] d..3 29484.453996: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36577     kworker/0:0-13450 (13450) [000] d..2 29484.454003: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36578            adbd-23484 ( 1007) [000] d..2 29484.454012: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36579            adbd-23484 ( 1007) [000] d..3 29484.454020: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36580            adbd-23484 ( 1007) [000] d..2 29484.454060: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36581            adbd-1007  ( 1007) [000] d..1 29484.454110: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36582            adbd-1007  ( 1007) [000] d..2 29484.454121: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36583            adbd-1007  ( 1007) [000] d..2 29484.454146: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36584            adbd-23485 ( 1007) [000] d..2 29484.454187: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36585 shell svc 13722-13723 ( 1007) [000] d.h2 29484.454204: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36586 shell svc 13722-13723 ( 1007) [000] dnh3 29484.454216: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36587 shell svc 13722-13723 ( 1007) [000] d..2 29484.454223: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36588   kworker/u17:2-23076 (23076) [000] d..2 29484.454229: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36589   kworker/u17:2-23076 (23076) [000] d..3 29484.454234: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36590   kworker/u17:2-23076 (23076) [000] d..2 29484.454250: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36591     kworker/0:0-13450 (13450) [000] d..2 29484.454254: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36592     kworker/0:0-13450 (13450) [000] d..3 29484.454262: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36593     kworker/0:0-13450 (13450) [000] d..2 29484.454269: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36594            adbd-23485 ( 1007) [000] d..2 29484.454307: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36595 shell svc 13722-13723 ( 1007) [000] d.h2 29484.454333: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36596 shell svc 13722-13723 ( 1007) [000] dnh3 29484.454342: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36597 shell svc 13722-13723 ( 1007) [000] d..2 29484.454349: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36598   kworker/u17:2-23076 (23076) [000] d..2 29484.454357: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36599   kworker/u17:2-23076 (23076) [000] d..3 29484.454361: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36600   kworker/u17:2-23076 (23076) [000] d..2 29484.454377: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36601     kworker/0:0-13450 (13450) [000] d..2 29484.454381: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36602     kworker/0:0-13450 (13450) [000] d..3 29484.454388: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36603     kworker/0:0-13450 (13450) [000] d..2 29484.454396: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36604            adbd-23485 ( 1007) [000] d..2 29484.454407: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36605              ps-13725 (13725) [002] d..2 29484.454426: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
36606 shell svc 13722-13723 ( 1007) [000] d..2 29484.454436: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36607          <idle>-0     (-----) [000] d..1 29484.454443: cpu_idle: state=0 cpu_id=0
36608              ps-13725 (13725) [002] d..3 29484.454452: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=002
36609          <idle>-0     (-----) [000] d.h3 29484.454475: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36610          <idle>-0     (-----) [000] dnh4 29484.454484: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36611          <idle>-0     (-----) [000] .n.1 29484.454488: cpu_idle: state=4294967295 cpu_id=0
36612          <idle>-0     (-----) [000] d..2 29484.454493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36613   kworker/u17:2-23076 (23076) [000] d..2 29484.454500: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36614   kworker/u17:2-23076 (23076) [000] d..3 29484.454505: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36615   kworker/u17:2-23076 (23076) [000] d..2 29484.454521: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36616     kworker/0:0-13450 (13450) [000] d..2 29484.454526: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36617     kworker/0:0-13450 (13450) [000] d..3 29484.454534: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36618     kworker/0:0-13450 (13450) [000] d..2 29484.454542: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36619            adbd-23484 ( 1007) [000] d..2 29484.454551: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36620            adbd-23484 ( 1007) [000] d..3 29484.454556: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36621            adbd-23484 ( 1007) [000] d..2 29484.454596: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36622            adbd-1007  ( 1007) [000] d..1 29484.454647: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36623            adbd-1007  ( 1007) [000] d..2 29484.454658: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36624            adbd-1007  ( 1007) [000] d..2 29484.454684: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36625            adbd-23485 ( 1007) [000] d..2 29484.454723: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36626          <idle>-0     (-----) [000] d..1 29484.454729: cpu_idle: state=0 cpu_id=0
36627          <idle>-0     (-----) [000] d.h3 29484.454748: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36628          <idle>-0     (-----) [000] dnh4 29484.454754: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36629          <idle>-0     (-----) [000] .n.1 29484.454758: cpu_idle: state=4294967295 cpu_id=0
36630          <idle>-0     (-----) [000] d..2 29484.454763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36631   kworker/u17:2-23076 (23076) [000] d..2 29484.454770: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36632   kworker/u17:2-23076 (23076) [000] d..3 29484.454775: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36633   kworker/u17:2-23076 (23076) [000] d..2 29484.454790: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36634     kworker/0:0-13450 (13450) [000] d..2 29484.454794: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36635     kworker/0:0-13450 (13450) [000] d..3 29484.454802: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36636     kworker/0:0-13450 (13450) [000] d..2 29484.454810: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36637            adbd-23485 ( 1007) [000] d..2 29484.454849: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36638          <idle>-0     (-----) [000] d..1 29484.454854: cpu_idle: state=0 cpu_id=0
36639          <idle>-0     (-----) [000] d.h3 29484.454877: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36640          <idle>-0     (-----) [000] dnh4 29484.454882: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36641          <idle>-0     (-----) [000] .n.1 29484.454886: cpu_idle: state=4294967295 cpu_id=0
36642          <idle>-0     (-----) [000] d..2 29484.454891: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36643   kworker/u17:2-23076 (23076) [000] d..2 29484.454897: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36644   kworker/u17:2-23076 (23076) [000] d..3 29484.454902: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36645   kworker/u17:2-23076 (23076) [000] d..2 29484.454917: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36646     kworker/0:0-13450 (13450) [000] d..2 29484.454921: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36647     kworker/0:0-13450 (13450) [000] d..3 29484.454929: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
36648     kworker/0:0-13450 (13450) [000] d..2 29484.454937: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36649            adbd-23485 ( 1007) [000] d..2 29484.454948: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36650          <idle>-0     (-----) [000] d..1 29484.454952: cpu_idle: state=0 cpu_id=0
36651          <idle>-0     (-----) [000] d.h3 29484.455073: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36652          <idle>-0     (-----) [000] dnh4 29484.455078: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36653          <idle>-0     (-----) [000] .n.1 29484.455082: cpu_idle: state=4294967295 cpu_id=0
36654          <idle>-0     (-----) [000] d..2 29484.455086: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36655   kworker/u17:2-23076 (23076) [000] d..2 29484.455092: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36656   kworker/u17:2-23076 (23076) [000] d..3 29484.455096: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36657   kworker/u17:2-23076 (23076) [000] d..2 29484.455112: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36658     kworker/0:0-13450 (13450) [000] d..2 29484.455117: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36659     kworker/0:0-13450 (13450) [000] d..3 29484.455125: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36660     kworker/0:0-13450 (13450) [000] d..2 29484.455134: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36661            adbd-23484 ( 1007) [000] d..2 29484.455144: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36662            adbd-23484 ( 1007) [000] d..3 29484.455149: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36663            adbd-23484 ( 1007) [000] d..2 29484.455188: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36664            adbd-1007  ( 1007) [000] d..2 29484.455238: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36665          <idle>-0     (-----) [000] d..1 29484.455243: cpu_idle: state=0 cpu_id=0
36666          <idle>-0     (-----) [000] d.s2 29484.457072: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
36667              ps-13725 (13725) [002] dnh2 29484.457080: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
36668          <idle>-0     (-----) [000] dns3 29484.457083: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
36669              ps-13725 (13725) [002] dnh3 29484.457087: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
36670          <idle>-0     (-----) [000] .n.1 29484.457103: cpu_idle: state=4294967295 cpu_id=0
36671          <idle>-0     (-----) [000] d..2 29484.457134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36672     rcu_preempt-7     (    7) [000] d..2 29484.457144: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36673              ps-13725 (13725) [002] dnH2 29484.457146: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36674              ps-13725 (13725) [002] dnH2 29484.457155: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
36675              ps-13725 (13725) [002] dnH3 29484.457168: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
36676              ps-13725 (13725) [002] dns2 29484.457172: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
36677 shell svc 13722-13723 ( 1007) [000] d..2 29484.457177: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36678 shell svc 13722-13723 ( 1007) [000] dn.3 29484.457184: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36679 shell svc 13722-13723 ( 1007) [000] d..2 29484.457189: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
36680              ps-13725 (13725) [002] dns3 29484.457197: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
36681              ps-13725 (13725) [002] d..2 29484.457205: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
36682          <idle>-0     (-----) [001] .n.1 29484.457212: cpu_idle: state=4294967295 cpu_id=1
36683            adbd-1007  ( 1007) [000] d..1 29484.457217: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
36684          <idle>-0     (-----) [001] d..2 29484.457223: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36685            adbd-1007  ( 1007) [000] d..2 29484.457252: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=002
36686 shell svc 13722-13723 ( 1007) [001] d..2 29484.457255: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36687     migration/2-25    (   25) [002] d..2 29484.457260: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36688          <idle>-0     (-----) [001] d..1 29484.457262: cpu_idle: state=2 cpu_id=1
36689          <idle>-0     (-----) [003] .n.1 29484.457268: cpu_idle: state=4294967295 cpu_id=3
36690          <idle>-0     (-----) [003] d..2 29484.457278: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36691         sugov:0-559   (  559) [003] d..2 29484.457288: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36692     rcu_preempt-7     (    7) [003] d..2 29484.457291: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
36693            adbd-1007  ( 1007) [000] d..2 29484.457294: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36694          <idle>-0     (-----) [000] d..1 29484.457304: cpu_idle: state=0 cpu_id=0
36695     rcu_preempt-7     (    7) [003] d..3 29484.457309: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
36696            adbd-23485 ( 1007) [002] d..2 29484.457313: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36697          <idle>-0     (-----) [000] .n.1 29484.457314: cpu_idle: state=4294967295 cpu_id=0
36698     rcu_preempt-7     (    7) [003] d..2 29484.457321: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36699          <idle>-0     (-----) [002] d..1 29484.457324: cpu_idle: state=2 cpu_id=2
36700          <idle>-0     (-----) [003] d..1 29484.457328: cpu_idle: state=0 cpu_id=3
36701          <idle>-0     (-----) [000] dnh4 29484.457331: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36702          <idle>-0     (-----) [000] dnh5 29484.457341: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36703          <idle>-0     (-----) [000] d..2 29484.457352: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
36704         rcuop/2-29    (   29) [000] d..2 29484.457354: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
36705         rcuop/2-29    (   29) [000] d..3 29484.457362: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
36706         rcuop/2-29    (   29) [000] d..2 29484.457454: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
36707         rcuop/2-29    (   29) [000] d..3 29484.457463: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
36708          <idle>-0     (-----) [003] .n.1 29484.457469: cpu_idle: state=4294967295 cpu_id=3
36709         rcuop/2-29    (   29) [000] d..2 29484.457469: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36710          <idle>-0     (-----) [003] d..2 29484.457475: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36711   kworker/u17:2-23076 (23076) [000] d..2 29484.457476: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36712   kworker/u17:2-23076 (23076) [000] d..3 29484.457482: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36713     rcu_preempt-7     (    7) [003] d..2 29484.457496: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
36714   kworker/u17:2-23076 (23076) [000] d..2 29484.457501: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36715     kworker/0:0-13450 (13450) [000] d..2 29484.457506: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=002
36716     kworker/0:0-13450 (13450) [000] d..3 29484.457525: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36717         rcuop/3-37    (   37) [003] d..2 29484.457531: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
36718     kworker/0:0-13450 (13450) [000] d..2 29484.457544: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36719          <idle>-0     (-----) [000] d..1 29484.457552: cpu_idle: state=0 cpu_id=0
36720            adbd-23485 ( 1007) [003] d..2 29484.457582: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36721          <idle>-0     (-----) [003] d..1 29484.457592: cpu_idle: state=0 cpu_id=3
36722          <idle>-0     (-----) [000] d.h3 29484.457628: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36723          <idle>-0     (-----) [000] dnh4 29484.457636: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36724          <idle>-0     (-----) [000] .n.1 29484.457641: cpu_idle: state=4294967295 cpu_id=0
36725          <idle>-0     (-----) [000] d..2 29484.457647: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36726   kworker/u17:2-23076 (23076) [000] d..2 29484.457653: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36727   kworker/u17:2-23076 (23076) [000] d..3 29484.457658: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36728   kworker/u17:2-23076 (23076) [000] d..2 29484.457673: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36729     kworker/0:0-13450 (13450) [000] d..2 29484.457679: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36730     kworker/0:0-13450 (13450) [000] d..3 29484.457688: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36731          <idle>-0     (-----) [003] .n.1 29484.457693: cpu_idle: state=4294967295 cpu_id=3
36732          <idle>-0     (-----) [003] d..2 29484.457699: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36733     kworker/0:0-13450 (13450) [000] d..2 29484.457700: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36734          <idle>-0     (-----) [000] d..1 29484.457707: cpu_idle: state=0 cpu_id=0
36735            adbd-23485 ( 1007) [003] d..2 29484.457715: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36736          <idle>-0     (-----) [003] d..1 29484.457721: cpu_idle: state=0 cpu_id=3
36737          <idle>-0     (-----) [005] .n.1 29484.457820: cpu_idle: state=4294967295 cpu_id=5
36738          <idle>-0     (-----) [005] d..2 29484.457836: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=13725 next_prio=120
36739          <idle>-0     (-----) [000] d.h3 29484.457854: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36740          <idle>-0     (-----) [004] dnh2 29484.457856: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36741          <idle>-0     (-----) [000] dnh4 29484.457859: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36742          <idle>-0     (-----) [004] .n.1 29484.457862: cpu_idle: state=4294967295 cpu_id=4
36743          <idle>-0     (-----) [000] .n.1 29484.457864: cpu_idle: state=4294967295 cpu_id=0
36744          <idle>-0     (-----) [000] d..2 29484.457870: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36745          <idle>-0     (-----) [004] d..2 29484.457872: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36746   kworker/u17:2-23076 (23076) [000] d..2 29484.457875: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36747   kworker/u17:2-23076 (23076) [000] d..3 29484.457880: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36748         sugov:4-560   (  560) [004] d..2 29484.457889: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
36749              ps-13725 (13725) [005] d..2 29484.457892: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
36750   kworker/u17:2-23076 (23076) [000] d..2 29484.457895: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36751          <idle>-0     (-----) [004] d..1 29484.457898: cpu_idle: state=2 cpu_id=4
36752     kworker/0:0-13450 (13450) [000] d..2 29484.457901: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36753     kworker/0:0-13450 (13450) [000] d..3 29484.457911: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36754     kworker/0:0-13450 (13450) [000] d.h2 29484.457917: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
36755     kworker/0:0-13450 (13450) [000] d..2 29484.457925: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
36756         rcuop/4-45    (   45) [000] d..2 29484.457933: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36757            adbd-23484 ( 1007) [000] d..2 29484.457944: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36758            adbd-23484 ( 1007) [000] d..3 29484.457949: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36759            adbd-23484 ( 1007) [000] d..2 29484.457993: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36760            adbd-1007  ( 1007) [000] d..2 29484.458049: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36761          <idle>-0     (-----) [000] d..1 29484.458057: cpu_idle: state=0 cpu_id=0
36762              ps-13725 (13725) [005] d..2 29484.458060: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
36763              ps-13725 (13725) [005] d..3 29484.458078: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
36764              ps-13725 (13725) [005] d.h3 29484.458111: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36765              ps-13725 (13725) [005] d.h4 29484.458121: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=004
36766              ps-13725 (13725) [005] d.h3 29484.458123: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
36767          <idle>-0     (-----) [003] dnh2 29484.458139: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
36768          <idle>-0     (-----) [003] .n.1 29484.458143: cpu_idle: state=4294967295 cpu_id=3
36769          <idle>-0     (-----) [003] d..2 29484.458148: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36770         sugov:0-559   (  559) [003] d..2 29484.458160: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36771          <idle>-0     (-----) [003] d..1 29484.458164: cpu_idle: state=0 cpu_id=3
36772          <idle>-0     (-----) [004] .n.1 29484.458289: cpu_idle: state=4294967295 cpu_id=4
36773          <idle>-0     (-----) [004] d..2 29484.458301: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36774         sugov:4-560   (  560) [004] .... 29484.458323: clk_set_rate: perfcl_clk 2803200000
36775         sugov:4-560   (  560) [004] .... 29484.458325: clk_set_rate: cpu7_perfcl_clk 825600000
36776         sugov:4-560   (  560) [004] .... 29484.458331: clk_set_rate: cpu6_perfcl_clk 825600000
36777         sugov:4-560   (  560) [004] .... 29484.458336: clk_set_rate: cpu5_perfcl_clk 825600000
36778         sugov:4-560   (  560) [004] .... 29484.458341: clk_set_rate: cpu4_perfcl_clk 2803200000
36779         sugov:4-560   (  560) [004] .... 29484.458348: cpu_frequency: state=2803200 cpu_id=4
36780         sugov:4-560   (  560) [004] d..2 29484.458500: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36781          <idle>-0     (-----) [003] d.s3 29484.458515: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=004
36782 shell svc 13722-13723 ( 1007) [004] d..2 29484.458520: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36783 shell svc 13722-13723 ( 1007) [004] dn.3 29484.458532: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=004
36784          <idle>-0     (-----) [003] ...1 29484.458534: cpu_idle: state=4294967295 cpu_id=3
36785          <idle>-0     (-----) [003] d..1 29484.458536: cpu_idle: state=0 cpu_id=3
36786 shell svc 13722-13723 ( 1007) [004] d..2 29484.458550: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=1007 next_prio=120
36787            adbd-1007  ( 1007) [004] d..1 29484.458578: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36788          <idle>-0     (-----) [003] dnh2 29484.458591: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36789          <idle>-0     (-----) [003] .n.1 29484.458594: cpu_idle: state=4294967295 cpu_id=3
36790            adbd-1007  ( 1007) [004] d..2 29484.458597: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36791          <idle>-0     (-----) [003] d..2 29484.458600: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36792 shell svc 13722-13723 ( 1007) [004] d..2 29484.458610: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
36793          <idle>-0     (-----) [004] d..1 29484.458615: cpu_idle: state=2 cpu_id=4
36794              ps-13725 (13725) [005] d..2 29484.458641: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=004
36795            adbd-23485 ( 1007) [003] d..2 29484.458643: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36796              ps-13725 (13725) [005] d..3 29484.458648: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
36797          <idle>-0     (-----) [003] d..1 29484.458649: cpu_idle: state=0 cpu_id=3
36798          <idle>-0     (-----) [000] d.h3 29484.458666: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36799          <idle>-0     (-----) [000] dnh4 29484.458672: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36800          <idle>-0     (-----) [000] .n.1 29484.458678: cpu_idle: state=4294967295 cpu_id=0
36801          <idle>-0     (-----) [007] dnh2 29484.458682: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
36802          <idle>-0     (-----) [000] d..2 29484.458683: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36803          <idle>-0     (-----) [007] .n.1 29484.458687: cpu_idle: state=4294967295 cpu_id=7
36804   kworker/u17:2-23076 (23076) [000] d..2 29484.458691: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36805          <idle>-0     (-----) [007] d..2 29484.458692: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36806   kworker/u17:2-23076 (23076) [000] d..3 29484.458696: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36807         sugov:4-560   (  560) [007] .... 29484.458696: cpu_frequency: state=2803200 cpu_id=5
36808         sugov:4-560   (  560) [007] .... 29484.458698: cpu_frequency: state=2803200 cpu_id=6
36809         sugov:4-560   (  560) [007] .... 29484.458699: cpu_frequency: state=2803200 cpu_id=7
36810   kworker/u17:2-23076 (23076) [000] d..2 29484.458711: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36811         sugov:4-560   (  560) [007] d..2 29484.458712: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36812     kworker/0:0-13450 (13450) [000] d..2 29484.458716: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36813     kworker/0:0-13450 (13450) [000] d..3 29484.458724: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36814          <idle>-0     (-----) [003] .n.1 29484.458729: cpu_idle: state=4294967295 cpu_id=3
36815 shell svc 13722-13723 ( 1007) [007] d..2 29484.458731: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36816          <idle>-0     (-----) [003] d..2 29484.458734: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36817          <idle>-0     (-----) [007] d..1 29484.458736: cpu_idle: state=2 cpu_id=7
36818     kworker/0:0-13450 (13450) [000] d..2 29484.458737: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36819          <idle>-0     (-----) [000] d..1 29484.458743: cpu_idle: state=0 cpu_id=0
36820              ps-13725 (13725) [005] d..2 29484.458753: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
36821              ps-13725 (13725) [005] d..3 29484.458759: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
36822            adbd-23485 ( 1007) [003] d..2 29484.458776: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36823          <idle>-0     (-----) [003] d..1 29484.458781: cpu_idle: state=0 cpu_id=3
36824          <idle>-0     (-----) [000] d.h3 29484.458793: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36825          <idle>-0     (-----) [000] dnh4 29484.458798: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36826          <idle>-0     (-----) [000] .n.1 29484.458803: cpu_idle: state=4294967295 cpu_id=0
36827          <idle>-0     (-----) [000] d..2 29484.458808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36828   kworker/u17:2-23076 (23076) [000] d..2 29484.458815: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36829   kworker/u17:2-23076 (23076) [000] d..3 29484.458819: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36830   kworker/u17:2-23076 (23076) [000] d..2 29484.458834: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36831     kworker/0:0-13450 (13450) [000] d..2 29484.458839: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36832     kworker/0:0-13450 (13450) [000] d..3 29484.458847: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36833          <idle>-0     (-----) [003] .n.1 29484.458852: cpu_idle: state=4294967295 cpu_id=3
36834          <idle>-0     (-----) [003] d..2 29484.458857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36835     kworker/0:0-13450 (13450) [000] d..2 29484.458859: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36836          <idle>-0     (-----) [000] d..1 29484.458865: cpu_idle: state=0 cpu_id=0
36837            adbd-23485 ( 1007) [003] d..2 29484.458873: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36838          <idle>-0     (-----) [003] d..1 29484.458879: cpu_idle: state=0 cpu_id=3
36839          <idle>-0     (-----) [000] d.h3 29484.458984: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36840          <idle>-0     (-----) [000] dnh4 29484.458989: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36841          <idle>-0     (-----) [000] .n.1 29484.458994: cpu_idle: state=4294967295 cpu_id=0
36842          <idle>-0     (-----) [000] d..2 29484.458999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36843   kworker/u17:2-23076 (23076) [000] d..2 29484.459005: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36844   kworker/u17:2-23076 (23076) [000] d..3 29484.459010: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36845   kworker/u17:2-23076 (23076) [000] d..2 29484.459025: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36846     kworker/0:0-13450 (13450) [000] d..2 29484.459030: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36847     kworker/0:0-13450 (13450) [000] d..3 29484.459038: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36848     kworker/0:0-13450 (13450) [000] d..2 29484.459046: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36849            adbd-23484 ( 1007) [000] d..2 29484.459055: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=004
36850            adbd-23484 ( 1007) [000] d..3 29484.459069: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36851            adbd-23484 ( 1007) [000] d.h3 29484.459096: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
36852            adbd-23484 ( 1007) [000] d.h3 29484.459105: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
36853            adbd-23484 ( 1007) [000] d.h4 29484.459113: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
36854          <idle>-0     (-----) [003] .n.1 29484.459118: cpu_idle: state=4294967295 cpu_id=3
36855          <idle>-0     (-----) [003] d..2 29484.459123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
36856         sugov:0-559   (  559) [003] d..2 29484.459135: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36857          <idle>-0     (-----) [003] d..1 29484.459140: cpu_idle: state=0 cpu_id=3
36858            adbd-23484 ( 1007) [000] d..2 29484.459155: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36859            adbd-1007  ( 1007) [000] d..1 29484.459208: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36860            adbd-1007  ( 1007) [000] d..2 29484.459219: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36861          <idle>-0     (-----) [003] .n.1 29484.459224: cpu_idle: state=4294967295 cpu_id=3
36862          <idle>-0     (-----) [003] d..2 29484.459229: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36863            adbd-1007  ( 1007) [000] d..2 29484.459250: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36864          <idle>-0     (-----) [007] dnh2 29484.459251: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
36865          <idle>-0     (-----) [007] .n.1 29484.459255: cpu_idle: state=4294967295 cpu_id=7
36866          <idle>-0     (-----) [000] d..1 29484.459258: cpu_idle: state=0 cpu_id=0
36867          <idle>-0     (-----) [007] d..2 29484.459259: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
36868         sugov:4-560   (  560) [007] d..2 29484.459271: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36869            adbd-23485 ( 1007) [003] d..2 29484.459272: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36870          <idle>-0     (-----) [003] d..1 29484.459277: cpu_idle: state=0 cpu_id=3
36871          <idle>-0     (-----) [000] d.h3 29484.459291: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36872 shell svc 13722-13723 ( 1007) [007] d..2 29484.459293: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36873          <idle>-0     (-----) [007] d..1 29484.459296: cpu_idle: state=2 cpu_id=7
36874          <idle>-0     (-----) [000] dnh4 29484.459297: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36875              ps-13725 (13725) [005] d..2 29484.459299: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
36876          <idle>-0     (-----) [000] .n.1 29484.459303: cpu_idle: state=4294967295 cpu_id=0
36877              ps-13725 (13725) [005] d..3 29484.459306: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
36878          <idle>-0     (-----) [000] d..2 29484.459309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36879   kworker/u17:2-23076 (23076) [000] d..2 29484.459316: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36880   kworker/u17:2-23076 (23076) [000] d..3 29484.459321: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36881   kworker/u17:2-23076 (23076) [000] d..2 29484.459337: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36882     kworker/0:0-13450 (13450) [000] d..2 29484.459341: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36883     kworker/0:0-13450 (13450) [000] d..3 29484.459350: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36884          <idle>-0     (-----) [003] .n.1 29484.459354: cpu_idle: state=4294967295 cpu_id=3
36885          <idle>-0     (-----) [003] d..2 29484.459360: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36886     kworker/0:0-13450 (13450) [000] d..2 29484.459363: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36887          <idle>-0     (-----) [000] d..1 29484.459369: cpu_idle: state=0 cpu_id=0
36888            adbd-23485 ( 1007) [003] d..2 29484.459402: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36889          <idle>-0     (-----) [003] d..1 29484.459407: cpu_idle: state=0 cpu_id=3
36890          <idle>-0     (-----) [000] d.h3 29484.459420: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36891          <idle>-0     (-----) [000] dnh4 29484.459425: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36892          <idle>-0     (-----) [000] .n.1 29484.459430: cpu_idle: state=4294967295 cpu_id=0
36893          <idle>-0     (-----) [000] d..2 29484.459436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36894   kworker/u17:2-23076 (23076) [000] d..2 29484.459442: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36895   kworker/u17:2-23076 (23076) [000] d..3 29484.459447: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36896   kworker/u17:2-23076 (23076) [000] d..2 29484.459462: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36897     kworker/0:0-13450 (13450) [000] d..2 29484.459467: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36898     kworker/0:0-13450 (13450) [000] d..3 29484.459475: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36899          <idle>-0     (-----) [003] .n.1 29484.459480: cpu_idle: state=4294967295 cpu_id=3
36900          <idle>-0     (-----) [003] d..2 29484.459486: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36901     kworker/0:0-13450 (13450) [000] d..2 29484.459487: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36902          <idle>-0     (-----) [000] d..1 29484.459493: cpu_idle: state=0 cpu_id=0
36903            adbd-23485 ( 1007) [003] d..2 29484.459500: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36904          <idle>-0     (-----) [003] d..1 29484.459505: cpu_idle: state=0 cpu_id=3
36905          <idle>-0     (-----) [000] d.h3 29484.459604: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36906          <idle>-0     (-----) [000] dnh4 29484.459609: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36907          <idle>-0     (-----) [000] .n.1 29484.459614: cpu_idle: state=4294967295 cpu_id=0
36908          <idle>-0     (-----) [000] d..2 29484.459620: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36909   kworker/u17:2-23076 (23076) [000] d..2 29484.459625: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36910   kworker/u17:2-23076 (23076) [000] d..3 29484.459630: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36911   kworker/u17:2-23076 (23076) [000] d..2 29484.459645: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36912     kworker/0:0-13450 (13450) [000] d..2 29484.459650: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36913     kworker/0:0-13450 (13450) [000] d..3 29484.459659: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36914     kworker/0:0-13450 (13450) [000] d..2 29484.459666: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36915            adbd-23484 ( 1007) [000] d..2 29484.459676: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36916            adbd-23484 ( 1007) [000] d..3 29484.459681: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36917            adbd-23484 ( 1007) [000] d..2 29484.459721: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36918            adbd-1007  ( 1007) [000] d..1 29484.459772: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36919            adbd-1007  ( 1007) [000] d..2 29484.459786: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36920          <idle>-0     (-----) [003] .n.1 29484.459790: cpu_idle: state=4294967295 cpu_id=3
36921          <idle>-0     (-----) [003] d..2 29484.459795: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36922            adbd-1007  ( 1007) [000] d..2 29484.459816: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36923          <idle>-0     (-----) [000] d..1 29484.459825: cpu_idle: state=0 cpu_id=0
36924            adbd-23485 ( 1007) [003] d..2 29484.459836: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36925          <idle>-0     (-----) [003] d..1 29484.459842: cpu_idle: state=0 cpu_id=3
36926          <idle>-0     (-----) [000] d.h3 29484.459852: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36927          <idle>-0     (-----) [000] dnh4 29484.459860: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36928          <idle>-0     (-----) [000] .n.1 29484.459865: cpu_idle: state=4294967295 cpu_id=0
36929          <idle>-0     (-----) [000] d..2 29484.459871: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36930   kworker/u17:2-23076 (23076) [000] d..2 29484.459879: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36931   kworker/u17:2-23076 (23076) [000] d..3 29484.459883: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36932   kworker/u17:2-23076 (23076) [000] d..2 29484.459900: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36933     kworker/0:0-13450 (13450) [000] d..2 29484.459905: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36934     kworker/0:0-13450 (13450) [000] d..3 29484.459913: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36935          <idle>-0     (-----) [003] .n.1 29484.459918: cpu_idle: state=4294967295 cpu_id=3
36936     kworker/0:0-13450 (13450) [000] d..2 29484.459926: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36937          <idle>-0     (-----) [003] d..2 29484.459926: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36938          <idle>-0     (-----) [000] d..1 29484.459933: cpu_idle: state=0 cpu_id=0
36939            adbd-23485 ( 1007) [003] d..2 29484.459968: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36940          <idle>-0     (-----) [003] d..1 29484.459973: cpu_idle: state=0 cpu_id=3
36941          <idle>-0     (-----) [000] d.h3 29484.460012: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36942          <idle>-0     (-----) [000] dnh4 29484.460017: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36943          <idle>-0     (-----) [000] .n.1 29484.460021: cpu_idle: state=4294967295 cpu_id=0
36944          <idle>-0     (-----) [000] d..2 29484.460027: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36945   kworker/u17:2-23076 (23076) [000] d..2 29484.460033: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36946   kworker/u17:2-23076 (23076) [000] d..3 29484.460038: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36947   kworker/u17:2-23076 (23076) [000] d..2 29484.460053: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36948     kworker/0:0-13450 (13450) [000] d..2 29484.460058: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
36949     kworker/0:0-13450 (13450) [000] d..3 29484.460066: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
36950          <idle>-0     (-----) [003] .n.1 29484.460071: cpu_idle: state=4294967295 cpu_id=3
36951          <idle>-0     (-----) [003] d..2 29484.460077: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
36952     kworker/0:0-13450 (13450) [000] d..2 29484.460078: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36953          <idle>-0     (-----) [000] d..1 29484.460085: cpu_idle: state=0 cpu_id=0
36954            adbd-23485 ( 1007) [003] d..2 29484.460092: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36955          <idle>-0     (-----) [003] d..1 29484.460096: cpu_idle: state=0 cpu_id=3
36956          <idle>-0     (-----) [000] d.h3 29484.460185: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36957          <idle>-0     (-----) [000] dnh4 29484.460191: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
36958          <idle>-0     (-----) [000] .n.1 29484.460196: cpu_idle: state=4294967295 cpu_id=0
36959          <idle>-0     (-----) [000] d..2 29484.460201: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
36960   kworker/u17:2-23076 (23076) [000] d..2 29484.460207: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36961   kworker/u17:2-23076 (23076) [000] d..3 29484.460211: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
36962   kworker/u17:2-23076 (23076) [000] d..2 29484.460226: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
36963     kworker/0:0-13450 (13450) [000] d..2 29484.460232: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
36964     kworker/0:0-13450 (13450) [000] d..3 29484.460239: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
36965     kworker/0:0-13450 (13450) [000] d..2 29484.460247: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
36966            adbd-23484 ( 1007) [000] d..2 29484.460256: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36967            adbd-23484 ( 1007) [000] d..3 29484.460262: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
36968            adbd-23484 ( 1007) [000] d..2 29484.460302: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
36969            adbd-1007  ( 1007) [000] d..2 29484.460357: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36970          <idle>-0     (-----) [000] d..1 29484.460365: cpu_idle: state=0 cpu_id=0
36971              ps-13725 (13725) [005] d.s2 29484.460400: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
36972          <idle>-0     (-----) [000] dnh2 29484.460416: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
36973          <idle>-0     (-----) [000] .n.1 29484.460420: cpu_idle: state=4294967295 cpu_id=0
36974          <idle>-0     (-----) [000] d..2 29484.460428: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
36975  kworker/u16:10-23868 (23868) [000] .... 29484.460467: clk_set_rate: l3_cluster0_vote_clk 940800000
36976  kworker/u16:10-23868 (23868) [000] .... 29484.460470: clk_set_rate: l3_clk 940800000
36977  kworker/u16:10-23868 (23868) [000] .... 29484.460516: clk_set_rate: l3_cluster1_vote_clk 576000000
36978  kworker/u16:10-23868 (23868) [000] d..2 29484.460535: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36979          <idle>-0     (-----) [000] d..1 29484.460542: cpu_idle: state=0 cpu_id=0
36980          <idle>-0     (-----) [000] ...1 29484.461654: cpu_idle: state=4294967295 cpu_id=0
36981          <idle>-0     (-----) [000] d..1 29484.461656: cpu_idle: state=2 cpu_id=0
36982              ps-13725 (13725) [005] dns2 29484.463732: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
36983              ps-13725 (13725) [005] dns3 29484.463738: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
36984          <idle>-0     (-----) [003] d.s2 29484.463741: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
36985              ps-13725 (13725) [005] d..2 29484.463742: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
36986          <idle>-0     (-----) [003] dns3 29484.463752: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
36987     kworker/5:0-24254 (24254) [005] d..2 29484.463753: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36988          <idle>-0     (-----) [003] .n.1 29484.463763: cpu_idle: state=4294967295 cpu_id=3
36989          <idle>-0     (-----) [003] d..2 29484.463769: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36990     rcu_preempt-7     (    7) [003] d..2 29484.463775: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
36991     rcu_preempt-7     (    7) [003] d..3 29484.463794: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
36992     rcu_preempt-7     (    7) [003] d..2 29484.463803: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
36993 shell svc 13722-13723 ( 1007) [005] d..2 29484.463814: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
36994 shell svc 13722-13723 ( 1007) [005] d..2 29484.463835: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
36995         rcuop/2-29    (   29) [003] d.h1 29484.463835: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
36996              ps-13725 (13725) [005] d..2 29484.463847: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
36997              ps-13725 (13725) [005] dn.3 29484.463850: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
36998              ps-13725 (13725) [005] d..2 29484.463852: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
36999 shell svc 13722-13723 ( 1007) [005] d..2 29484.463860: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37000         rcuop/2-29    (   29) [003] d..2 29484.463869: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37001              ps-13725 (13725) [005] d..2 29484.463923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37002            adbd-1007  ( 1007) [003] d..1 29484.463927: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37003              ps-13725 (13725) [005] dn.3 29484.463927: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37004              ps-13725 (13725) [005] d..2 29484.463929: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37005 shell svc 13722-13723 ( 1007) [005] d..2 29484.463939: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37006            adbd-1007  ( 1007) [003] d..2 29484.463940: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37007            adbd-1007  ( 1007) [003] d..2 29484.463971: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
37008              ps-13725 (13725) [005] d..2 29484.463997: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37009              ps-13725 (13725) [005] dn.3 29484.464000: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37010              ps-13725 (13725) [005] d..2 29484.464003: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37011 shell svc 13722-13723 ( 1007) [005] d..2 29484.464011: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37012            adbd-23485 ( 1007) [003] d..2 29484.464026: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37013          <idle>-0     (-----) [003] d..1 29484.464035: cpu_idle: state=0 cpu_id=3
37014              ps-13725 (13725) [005] d..2 29484.464069: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37015              ps-13725 (13725) [005] dn.3 29484.464073: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37016              ps-13725 (13725) [005] d..2 29484.464075: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37017 shell svc 13722-13723 ( 1007) [005] d..2 29484.464083: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37018              ps-13725 (13725) [005] d..2 29484.464138: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37019              ps-13725 (13725) [005] dn.3 29484.464141: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37020              ps-13725 (13725) [005] d..2 29484.464143: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37021          <idle>-0     (-----) [000] d.h3 29484.464148: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37022 shell svc 13722-13723 ( 1007) [005] d..2 29484.464151: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37023          <idle>-0     (-----) [000] dnh4 29484.464163: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37024          <idle>-0     (-----) [000] .n.1 29484.464168: cpu_idle: state=4294967295 cpu_id=0
37025          <idle>-0     (-----) [000] d..2 29484.464179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37026   kworker/u17:2-23076 (23076) [000] d..2 29484.464189: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37027   kworker/u17:2-23076 (23076) [000] d..3 29484.464195: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37028              ps-13725 (13725) [005] d..2 29484.464208: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37029   kworker/u17:2-23076 (23076) [000] d..2 29484.464212: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37030              ps-13725 (13725) [005] dn.3 29484.464212: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37031              ps-13725 (13725) [005] d..2 29484.464214: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37032     kworker/0:0-13450 (13450) [000] d..2 29484.464218: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37033 shell svc 13722-13723 ( 1007) [005] d..2 29484.464222: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37034     kworker/0:0-13450 (13450) [000] d..3 29484.464238: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37035          <idle>-0     (-----) [003] .n.1 29484.464243: cpu_idle: state=4294967295 cpu_id=3
37036          <idle>-0     (-----) [003] d..2 29484.464250: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37037     kworker/0:0-13450 (13450) [000] d..2 29484.464254: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37038          <idle>-0     (-----) [000] d..1 29484.464264: cpu_idle: state=0 cpu_id=0
37039              ps-13725 (13725) [005] d..2 29484.464278: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37040              ps-13725 (13725) [005] dn.3 29484.464281: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37041              ps-13725 (13725) [005] d..2 29484.464284: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37042 shell svc 13722-13723 ( 1007) [005] d..2 29484.464292: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37043            adbd-23485 ( 1007) [003] d..2 29484.464300: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37044          <idle>-0     (-----) [003] d..1 29484.464307: cpu_idle: state=0 cpu_id=3
37045              ps-13725 (13725) [005] d..2 29484.464352: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37046              ps-13725 (13725) [005] dn.3 29484.464355: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37047              ps-13725 (13725) [005] d..2 29484.464358: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37048 shell svc 13722-13723 ( 1007) [005] d..2 29484.464365: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37049              ps-13725 (13725) [005] d..2 29484.464425: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37050              ps-13725 (13725) [005] dn.3 29484.464428: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37051              ps-13725 (13725) [005] d..2 29484.464431: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37052 shell svc 13722-13723 ( 1007) [005] d..2 29484.464438: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37053          <idle>-0     (-----) [000] d.h3 29484.464454: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37054          <idle>-0     (-----) [000] dnh4 29484.464460: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37055          <idle>-0     (-----) [000] .n.1 29484.464465: cpu_idle: state=4294967295 cpu_id=0
37056          <idle>-0     (-----) [000] d..2 29484.464471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37057   kworker/u17:2-23076 (23076) [000] d..2 29484.464478: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37058   kworker/u17:2-23076 (23076) [000] d..3 29484.464482: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37059              ps-13725 (13725) [005] d..2 29484.464495: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37060              ps-13725 (13725) [005] dn.3 29484.464498: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37061   kworker/u17:2-23076 (23076) [000] d..2 29484.464498: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37062              ps-13725 (13725) [005] d..2 29484.464500: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37063     kworker/0:0-13450 (13450) [000] d..2 29484.464503: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37064 shell svc 13722-13723 ( 1007) [005] d..2 29484.464508: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37065     kworker/0:0-13450 (13450) [000] d..3 29484.464512: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37066          <idle>-0     (-----) [003] .n.1 29484.464517: cpu_idle: state=4294967295 cpu_id=3
37067          <idle>-0     (-----) [003] d..2 29484.464523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37068     kworker/0:0-13450 (13450) [000] d..2 29484.464526: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37069          <idle>-0     (-----) [000] d..1 29484.464533: cpu_idle: state=0 cpu_id=0
37070            adbd-23485 ( 1007) [003] d..2 29484.464543: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37071          <idle>-0     (-----) [003] d..1 29484.464549: cpu_idle: state=0 cpu_id=3
37072              ps-13725 (13725) [005] d..2 29484.464565: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37073              ps-13725 (13725) [005] dn.3 29484.464568: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37074              ps-13725 (13725) [005] d..2 29484.464570: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37075 shell svc 13722-13723 ( 1007) [005] d..2 29484.464578: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37076              ps-13725 (13725) [005] d..2 29484.464639: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37077              ps-13725 (13725) [005] dn.3 29484.464643: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37078              ps-13725 (13725) [005] d..2 29484.464645: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37079 shell svc 13722-13723 ( 1007) [005] d..2 29484.464653: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37080              ps-13725 (13725) [005] d..2 29484.464716: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37081              ps-13725 (13725) [005] dn.3 29484.464719: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37082              ps-13725 (13725) [005] d..2 29484.464721: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37083          <idle>-0     (-----) [000] d.h3 29484.464724: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37084 shell svc 13722-13723 ( 1007) [005] d..2 29484.464729: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37085          <idle>-0     (-----) [000] dnh4 29484.464730: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37086          <idle>-0     (-----) [000] .n.1 29484.464735: cpu_idle: state=4294967295 cpu_id=0
37087          <idle>-0     (-----) [000] d..2 29484.464741: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37088   kworker/u17:2-23076 (23076) [000] d..2 29484.464747: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37089   kworker/u17:2-23076 (23076) [000] d..3 29484.464751: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37090   kworker/u17:2-23076 (23076) [000] d..2 29484.464767: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37091     kworker/0:0-13450 (13450) [000] d..2 29484.464773: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37092     kworker/0:0-13450 (13450) [000] d..3 29484.464782: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37093              ps-13725 (13725) [005] d..2 29484.464786: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37094              ps-13725 (13725) [005] dn.3 29484.464789: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37095     kworker/0:0-13450 (13450) [000] d..2 29484.464789: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37096              ps-13725 (13725) [005] d..2 29484.464791: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37097 shell svc 13722-13723 ( 1007) [005] d..2 29484.464799: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37098            adbd-23484 ( 1007) [000] d..2 29484.464804: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
37099            adbd-23484 ( 1007) [000] d..3 29484.464814: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37100              ps-13725 (13725) [005] d..2 29484.464855: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37101              ps-13725 (13725) [005] dn.3 29484.464858: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37102              ps-13725 (13725) [005] d..2 29484.464860: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37103            adbd-23484 ( 1007) [000] d..2 29484.464863: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37104 shell svc 13722-13723 ( 1007) [005] d..2 29484.464868: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37105              ps-13725 (13725) [005] d..2 29484.464924: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37106              ps-13725 (13725) [005] dn.3 29484.464927: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37107              ps-13725 (13725) [005] d..2 29484.464930: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37108 shell svc 13722-13723 ( 1007) [005] d..2 29484.464938: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37109            adbd-1007  ( 1007) [000] d..1 29484.464945: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37110            adbd-1007  ( 1007) [000] d..2 29484.464956: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37111          <idle>-0     (-----) [003] .n.1 29484.464960: cpu_idle: state=4294967295 cpu_id=3
37112          <idle>-0     (-----) [003] d..2 29484.464966: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37113            adbd-1007  ( 1007) [000] d..2 29484.464991: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37114              ps-13725 (13725) [005] d..2 29484.464991: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37115              ps-13725 (13725) [005] dn.3 29484.464994: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37116              ps-13725 (13725) [005] d..2 29484.464997: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37117          <idle>-0     (-----) [000] d..1 29484.465000: cpu_idle: state=0 cpu_id=0
37118 shell svc 13722-13723 ( 1007) [005] d..2 29484.465004: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37119            adbd-23485 ( 1007) [003] d..2 29484.465012: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37120          <idle>-0     (-----) [003] d..1 29484.465018: cpu_idle: state=0 cpu_id=3
37121          <idle>-0     (-----) [000] d.h3 29484.465022: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37122          <idle>-0     (-----) [000] dnh4 29484.465028: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37123          <idle>-0     (-----) [000] .n.1 29484.465033: cpu_idle: state=4294967295 cpu_id=0
37124          <idle>-0     (-----) [000] d..2 29484.465040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37125   kworker/u17:2-23076 (23076) [000] d..2 29484.465048: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37126   kworker/u17:2-23076 (23076) [000] d..3 29484.465054: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37127              ps-13725 (13725) [005] d..2 29484.465061: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37128              ps-13725 (13725) [005] dn.3 29484.465064: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37129              ps-13725 (13725) [005] d..2 29484.465067: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37130   kworker/u17:2-23076 (23076) [000] d..2 29484.465070: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37131 shell svc 13722-13723 ( 1007) [005] d..2 29484.465074: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37132     kworker/0:0-13450 (13450) [000] d..2 29484.465075: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37133     kworker/0:0-13450 (13450) [000] d..3 29484.465084: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37134          <idle>-0     (-----) [003] .n.1 29484.465089: cpu_idle: state=4294967295 cpu_id=3
37135          <idle>-0     (-----) [003] d..2 29484.465096: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37136     kworker/0:0-13450 (13450) [000] d..2 29484.465099: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37137          <idle>-0     (-----) [000] d..1 29484.465106: cpu_idle: state=0 cpu_id=0
37138              ps-13725 (13725) [005] d..2 29484.465133: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37139              ps-13725 (13725) [005] dn.3 29484.465136: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37140              ps-13725 (13725) [005] d..2 29484.465139: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37141            adbd-23485 ( 1007) [003] d..2 29484.465142: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37142 shell svc 13722-13723 ( 1007) [005] d..2 29484.465146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37143          <idle>-0     (-----) [003] d..1 29484.465147: cpu_idle: state=0 cpu_id=3
37144          <idle>-0     (-----) [000] d.h3 29484.465189: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37145          <idle>-0     (-----) [000] dnh4 29484.465194: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37146          <idle>-0     (-----) [000] .n.1 29484.465199: cpu_idle: state=4294967295 cpu_id=0
37147              ps-13725 (13725) [005] d..2 29484.465205: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37148          <idle>-0     (-----) [000] d..2 29484.465205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37149              ps-13725 (13725) [005] dn.3 29484.465208: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37150              ps-13725 (13725) [005] d..2 29484.465210: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37151   kworker/u17:2-23076 (23076) [000] d..2 29484.465212: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37152   kworker/u17:2-23076 (23076) [000] d..3 29484.465217: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37153 shell svc 13722-13723 ( 1007) [005] d..2 29484.465218: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37154   kworker/u17:2-23076 (23076) [000] d..2 29484.465232: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37155     kworker/0:0-13450 (13450) [000] d..2 29484.465237: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37156     kworker/0:0-13450 (13450) [000] d..3 29484.465246: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37157          <idle>-0     (-----) [003] .n.1 29484.465251: cpu_idle: state=4294967295 cpu_id=3
37158          <idle>-0     (-----) [003] d..2 29484.465257: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37159     kworker/0:0-13450 (13450) [000] d..2 29484.465260: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37160          <idle>-0     (-----) [000] d..1 29484.465267: cpu_idle: state=0 cpu_id=0
37161              ps-13725 (13725) [005] d..2 29484.465272: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37162            adbd-23485 ( 1007) [003] d..2 29484.465275: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37163              ps-13725 (13725) [005] dn.3 29484.465276: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37164              ps-13725 (13725) [005] d..2 29484.465278: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37165          <idle>-0     (-----) [003] d..1 29484.465280: cpu_idle: state=0 cpu_id=3
37166 shell svc 13722-13723 ( 1007) [005] d..2 29484.465286: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37167              ps-13725 (13725) [005] d..2 29484.465350: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37168              ps-13725 (13725) [005] dn.3 29484.465354: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37169              ps-13725 (13725) [005] d..2 29484.465356: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37170 shell svc 13722-13723 ( 1007) [005] d..2 29484.465363: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37171          <idle>-0     (-----) [000] d.h3 29484.465385: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37172          <idle>-0     (-----) [000] dnh4 29484.465390: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37173          <idle>-0     (-----) [000] .n.1 29484.465395: cpu_idle: state=4294967295 cpu_id=0
37174          <idle>-0     (-----) [000] d..2 29484.465401: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37175   kworker/u17:2-23076 (23076) [000] d..2 29484.465408: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37176   kworker/u17:2-23076 (23076) [000] d..3 29484.465412: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37177              ps-13725 (13725) [005] d..2 29484.465423: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37178              ps-13725 (13725) [005] dn.3 29484.465426: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37179   kworker/u17:2-23076 (23076) [000] d..2 29484.465427: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37180              ps-13725 (13725) [005] d..2 29484.465428: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37181     kworker/0:0-13450 (13450) [000] d..2 29484.465433: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37182 shell svc 13722-13723 ( 1007) [005] d..2 29484.465436: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37183     kworker/0:0-13450 (13450) [000] d..3 29484.465442: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37184     kworker/0:0-13450 (13450) [000] d..2 29484.465450: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37185            adbd-23484 ( 1007) [000] d..2 29484.465462: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37186            adbd-23484 ( 1007) [000] d..3 29484.465467: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37187              ps-13725 (13725) [005] d..2 29484.465492: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37188              ps-13725 (13725) [005] dn.3 29484.465495: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37189              ps-13725 (13725) [005] d..2 29484.465497: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37190 shell svc 13722-13723 ( 1007) [005] d..2 29484.465504: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37191            adbd-23484 ( 1007) [000] d..2 29484.465511: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37192              ps-13725 (13725) [005] d..2 29484.465563: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37193              ps-13725 (13725) [005] dn.3 29484.465566: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37194              ps-13725 (13725) [005] d..2 29484.465568: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37195 shell svc 13722-13723 ( 1007) [005] d..2 29484.465578: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37196            adbd-1007  ( 1007) [000] d..1 29484.465580: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37197            adbd-1007  ( 1007) [000] d..2 29484.465592: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37198          <idle>-0     (-----) [003] .n.1 29484.465596: cpu_idle: state=4294967295 cpu_id=3
37199          <idle>-0     (-----) [003] d..2 29484.465602: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37200            adbd-1007  ( 1007) [000] d..2 29484.465626: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37201              ps-13725 (13725) [005] d..2 29484.465635: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37202          <idle>-0     (-----) [000] d..1 29484.465635: cpu_idle: state=0 cpu_id=0
37203              ps-13725 (13725) [005] dn.3 29484.465638: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37204              ps-13725 (13725) [005] d..2 29484.465640: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37205            adbd-23485 ( 1007) [003] d..2 29484.465647: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37206 shell svc 13722-13723 ( 1007) [005] d..2 29484.465648: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37207          <idle>-0     (-----) [003] d..1 29484.465653: cpu_idle: state=0 cpu_id=3
37208          <idle>-0     (-----) [000] d.h3 29484.465666: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37209          <idle>-0     (-----) [000] dnh4 29484.465673: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37210          <idle>-0     (-----) [000] .n.1 29484.465678: cpu_idle: state=4294967295 cpu_id=0
37211          <idle>-0     (-----) [000] d..2 29484.465685: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37212   kworker/u17:2-23076 (23076) [000] d..2 29484.465693: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37213   kworker/u17:2-23076 (23076) [000] d..3 29484.465698: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37214              ps-13725 (13725) [005] d..2 29484.465703: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37215              ps-13725 (13725) [005] dn.3 29484.465706: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37216              ps-13725 (13725) [005] d..2 29484.465708: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37217   kworker/u17:2-23076 (23076) [000] d..2 29484.465714: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37218 shell svc 13722-13723 ( 1007) [005] d..2 29484.465716: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37219     kworker/0:0-13450 (13450) [000] d..2 29484.465719: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37220     kworker/0:0-13450 (13450) [000] d..3 29484.465728: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37221          <idle>-0     (-----) [003] .n.1 29484.465733: cpu_idle: state=4294967295 cpu_id=3
37222          <idle>-0     (-----) [003] d..2 29484.465739: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37223     kworker/0:0-13450 (13450) [000] d..2 29484.465743: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37224          <idle>-0     (-----) [000] d..1 29484.465750: cpu_idle: state=0 cpu_id=0
37225              ps-13725 (13725) [005] d..2 29484.465772: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37226              ps-13725 (13725) [005] dn.3 29484.465775: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37227              ps-13725 (13725) [005] d..2 29484.465778: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37228            adbd-23485 ( 1007) [003] d..2 29484.465784: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37229 shell svc 13722-13723 ( 1007) [005] d..2 29484.465785: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37230          <idle>-0     (-----) [003] d..1 29484.465790: cpu_idle: state=0 cpu_id=3
37231          <idle>-0     (-----) [000] d.h3 29484.465825: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37232          <idle>-0     (-----) [000] dnh4 29484.465831: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37233          <idle>-0     (-----) [000] .n.1 29484.465839: cpu_idle: state=4294967295 cpu_id=0
37234              ps-13725 (13725) [005] d..2 29484.465842: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37235              ps-13725 (13725) [005] dn.3 29484.465845: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37236          <idle>-0     (-----) [000] d..2 29484.465845: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37237              ps-13725 (13725) [005] d..2 29484.465848: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37238   kworker/u17:2-23076 (23076) [000] d..2 29484.465852: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37239 shell svc 13722-13723 ( 1007) [005] d..2 29484.465855: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37240   kworker/u17:2-23076 (23076) [000] d..3 29484.465857: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37241   kworker/u17:2-23076 (23076) [000] d..2 29484.465873: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37242     kworker/0:0-13450 (13450) [000] d..2 29484.465878: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37243     kworker/0:0-13450 (13450) [000] d..3 29484.465888: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37244          <idle>-0     (-----) [003] .n.1 29484.465892: cpu_idle: state=4294967295 cpu_id=3
37245          <idle>-0     (-----) [003] d..2 29484.465899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37246     kworker/0:0-13450 (13450) [000] d..2 29484.465901: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37247          <idle>-0     (-----) [000] d..1 29484.465908: cpu_idle: state=0 cpu_id=0
37248              ps-13725 (13725) [005] d..2 29484.465914: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37249            adbd-23485 ( 1007) [003] d..2 29484.465915: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37250              ps-13725 (13725) [005] dn.3 29484.465917: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37251              ps-13725 (13725) [005] d..2 29484.465919: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37252          <idle>-0     (-----) [003] d..1 29484.465920: cpu_idle: state=0 cpu_id=3
37253 shell svc 13722-13723 ( 1007) [005] d..2 29484.465927: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37254          <idle>-0     (-----) [000] d.h3 29484.465979: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37255          <idle>-0     (-----) [000] dnh4 29484.465985: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37256              ps-13725 (13725) [005] d..2 29484.465985: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37257              ps-13725 (13725) [005] dn.3 29484.465988: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37258          <idle>-0     (-----) [000] .n.1 29484.465990: cpu_idle: state=4294967295 cpu_id=0
37259              ps-13725 (13725) [005] d..2 29484.465991: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37260          <idle>-0     (-----) [000] d..2 29484.465996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37261 shell svc 13722-13723 ( 1007) [005] d..2 29484.465998: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37262   kworker/u17:2-23076 (23076) [000] d..2 29484.466002: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37263   kworker/u17:2-23076 (23076) [000] d..3 29484.466007: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37264   kworker/u17:2-23076 (23076) [000] d..2 29484.466022: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37265     kworker/0:0-13450 (13450) [000] d..2 29484.466028: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37266     kworker/0:0-13450 (13450) [000] d..3 29484.466038: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37267     kworker/0:0-13450 (13450) [000] d..2 29484.466045: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37268            adbd-23484 ( 1007) [000] d..2 29484.466057: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37269              ps-13725 (13725) [005] d..2 29484.466059: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37270            adbd-23484 ( 1007) [000] d..3 29484.466062: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37271              ps-13725 (13725) [005] dn.3 29484.466063: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37272              ps-13725 (13725) [005] d..2 29484.466065: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37273 shell svc 13722-13723 ( 1007) [005] d..2 29484.466072: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37274            adbd-23484 ( 1007) [000] d..2 29484.466105: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37275              ps-13725 (13725) [005] d..2 29484.466128: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37276              ps-13725 (13725) [005] dn.3 29484.466131: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37277              ps-13725 (13725) [005] d..2 29484.466133: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37278 shell svc 13722-13723 ( 1007) [005] d..2 29484.466141: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37279            adbd-1007  ( 1007) [000] d..1 29484.466171: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37280            adbd-1007  ( 1007) [000] d..2 29484.466182: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37281          <idle>-0     (-----) [003] .n.1 29484.466186: cpu_idle: state=4294967295 cpu_id=3
37282          <idle>-0     (-----) [003] d..2 29484.466192: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37283              ps-13725 (13725) [005] d..2 29484.466200: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37284              ps-13725 (13725) [005] dn.3 29484.466203: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37285              ps-13725 (13725) [005] d..2 29484.466206: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37286 shell svc 13722-13723 ( 1007) [005] d..2 29484.466214: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37287            adbd-1007  ( 1007) [000] d..2 29484.466216: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37288          <idle>-0     (-----) [000] d..1 29484.466225: cpu_idle: state=0 cpu_id=0
37289            adbd-23485 ( 1007) [003] d..2 29484.466236: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37290          <idle>-0     (-----) [003] d..1 29484.466243: cpu_idle: state=0 cpu_id=3
37291          <idle>-0     (-----) [000] d.h3 29484.466249: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37292          <idle>-0     (-----) [000] dnh4 29484.466258: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37293          <idle>-0     (-----) [000] .n.1 29484.466264: cpu_idle: state=4294967295 cpu_id=0
37294          <idle>-0     (-----) [000] d..2 29484.466270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37295              ps-13725 (13725) [005] d..2 29484.466273: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37296              ps-13725 (13725) [005] dn.3 29484.466276: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37297   kworker/u17:2-23076 (23076) [000] d..2 29484.466278: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37298              ps-13725 (13725) [005] d..2 29484.466278: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37299   kworker/u17:2-23076 (23076) [000] d..3 29484.466283: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37300 shell svc 13722-13723 ( 1007) [005] d..2 29484.466286: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37301   kworker/u17:2-23076 (23076) [000] d..2 29484.466299: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37302     kworker/0:0-13450 (13450) [000] d..2 29484.466305: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37303     kworker/0:0-13450 (13450) [000] d..3 29484.466316: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37304          <idle>-0     (-----) [003] .n.1 29484.466321: cpu_idle: state=4294967295 cpu_id=3
37305          <idle>-0     (-----) [003] d..2 29484.466327: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37306     kworker/0:0-13450 (13450) [000] d..2 29484.466330: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37307          <idle>-0     (-----) [000] d..1 29484.466337: cpu_idle: state=0 cpu_id=0
37308            adbd-23485 ( 1007) [003] d..2 29484.466371: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37309          <idle>-0     (-----) [003] d..1 29484.466377: cpu_idle: state=0 cpu_id=3
37310          <idle>-0     (-----) [000] d.h3 29484.466407: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37311          <idle>-0     (-----) [000] dnh4 29484.466412: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37312          <idle>-0     (-----) [000] .n.1 29484.466417: cpu_idle: state=4294967295 cpu_id=0
37313          <idle>-0     (-----) [000] d..2 29484.466423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37314   kworker/u17:2-23076 (23076) [000] d..2 29484.466429: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37315   kworker/u17:2-23076 (23076) [000] d..3 29484.466434: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37316   kworker/u17:2-23076 (23076) [000] d..2 29484.466450: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37317     kworker/0:0-13450 (13450) [000] d..2 29484.466454: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37318     kworker/0:0-13450 (13450) [000] d..3 29484.466463: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37319          <idle>-0     (-----) [003] .n.1 29484.466468: cpu_idle: state=4294967295 cpu_id=3
37320          <idle>-0     (-----) [003] d..2 29484.466474: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37321     kworker/0:0-13450 (13450) [000] d..2 29484.466476: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37322          <idle>-0     (-----) [000] d..1 29484.466483: cpu_idle: state=0 cpu_id=0
37323            adbd-23485 ( 1007) [003] d..2 29484.466490: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37324          <idle>-0     (-----) [003] d..1 29484.466495: cpu_idle: state=0 cpu_id=3
37325          <idle>-0     (-----) [000] d.h3 29484.466585: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37326          <idle>-0     (-----) [000] dnh4 29484.466590: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37327          <idle>-0     (-----) [000] .n.1 29484.466595: cpu_idle: state=4294967295 cpu_id=0
37328          <idle>-0     (-----) [000] d..2 29484.466600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37329   kworker/u17:2-23076 (23076) [000] d..2 29484.466606: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37330   kworker/u17:2-23076 (23076) [000] d..3 29484.466611: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37331              ps-13725 (13725) [005] d..2 29484.466622: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37332   kworker/u17:2-23076 (23076) [000] d..2 29484.466626: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37333              ps-13725 (13725) [005] dn.3 29484.466626: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37334              ps-13725 (13725) [005] d..2 29484.466629: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37335     kworker/0:0-13450 (13450) [000] d..2 29484.466632: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37336 shell svc 13722-13723 ( 1007) [005] d..2 29484.466638: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37337     kworker/0:0-13450 (13450) [000] d..3 29484.466641: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37338     kworker/0:0-13450 (13450) [000] d..2 29484.466648: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37339            adbd-23484 ( 1007) [000] d..2 29484.466660: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37340            adbd-23484 ( 1007) [000] d..3 29484.466666: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37341              ps-13725 (13725) [005] d..2 29484.466695: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37342              ps-13725 (13725) [005] dn.3 29484.466699: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37343              ps-13725 (13725) [005] d..2 29484.466701: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37344 shell svc 13722-13723 ( 1007) [005] d..2 29484.466709: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37345            adbd-23484 ( 1007) [000] d..2 29484.466709: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37346              ps-13725 (13725) [005] d..2 29484.466766: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37347              ps-13725 (13725) [005] dn.3 29484.466769: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37348            adbd-1007  ( 1007) [000] d..1 29484.466769: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37349              ps-13725 (13725) [005] d..2 29484.466771: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37350 shell svc 13722-13723 ( 1007) [005] d..2 29484.466779: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37351            adbd-1007  ( 1007) [000] d..2 29484.466781: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37352          <idle>-0     (-----) [003] .n.1 29484.466785: cpu_idle: state=4294967295 cpu_id=3
37353          <idle>-0     (-----) [003] d..2 29484.466791: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37354            adbd-1007  ( 1007) [000] d..2 29484.466815: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37355          <idle>-0     (-----) [000] d..1 29484.466824: cpu_idle: state=0 cpu_id=0
37356              ps-13725 (13725) [005] d..2 29484.466834: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37357            adbd-23485 ( 1007) [003] d..2 29484.466836: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37358              ps-13725 (13725) [005] dn.3 29484.466837: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37359              ps-13725 (13725) [005] d..2 29484.466840: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37360          <idle>-0     (-----) [003] d..1 29484.466842: cpu_idle: state=0 cpu_id=3
37361 shell svc 13722-13723 ( 1007) [005] d..2 29484.466847: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37362          <idle>-0     (-----) [000] d.h3 29484.466854: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37363          <idle>-0     (-----) [000] dnh4 29484.466860: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37364          <idle>-0     (-----) [000] .n.1 29484.466865: cpu_idle: state=4294967295 cpu_id=0
37365          <idle>-0     (-----) [000] d..2 29484.466872: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37366   kworker/u17:2-23076 (23076) [000] d..2 29484.466880: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37367   kworker/u17:2-23076 (23076) [000] d..3 29484.466885: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37368   kworker/u17:2-23076 (23076) [000] d..2 29484.466901: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37369              ps-13725 (13725) [005] d..2 29484.466904: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37370     kworker/0:0-13450 (13450) [000] d..2 29484.466907: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37371              ps-13725 (13725) [005] dn.3 29484.466907: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37372              ps-13725 (13725) [005] d..2 29484.466910: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37373     kworker/0:0-13450 (13450) [000] d..3 29484.466915: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37374 shell svc 13722-13723 ( 1007) [005] d..2 29484.466918: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37375          <idle>-0     (-----) [003] .n.1 29484.466920: cpu_idle: state=4294967295 cpu_id=3
37376          <idle>-0     (-----) [003] d..2 29484.466927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37377     kworker/0:0-13450 (13450) [000] d..2 29484.466930: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37378          <idle>-0     (-----) [000] d..1 29484.466937: cpu_idle: state=0 cpu_id=0
37379            adbd-23485 ( 1007) [003] d..2 29484.466970: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37380              ps-13725 (13725) [005] d..2 29484.466974: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37381          <idle>-0     (-----) [003] d..1 29484.466976: cpu_idle: state=0 cpu_id=3
37382              ps-13725 (13725) [005] dn.3 29484.466977: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37383              ps-13725 (13725) [005] d..2 29484.466979: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37384 shell svc 13722-13723 ( 1007) [005] d..2 29484.466987: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37385          <idle>-0     (-----) [000] d.h3 29484.467001: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37386          <idle>-0     (-----) [000] dnh4 29484.467007: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37387          <idle>-0     (-----) [000] .n.1 29484.467012: cpu_idle: state=4294967295 cpu_id=0
37388          <idle>-0     (-----) [000] d..2 29484.467018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37389   kworker/u17:2-23076 (23076) [000] d..2 29484.467025: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37390   kworker/u17:2-23076 (23076) [000] d..3 29484.467030: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37391              ps-13725 (13725) [005] d..2 29484.467044: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37392   kworker/u17:2-23076 (23076) [000] d..2 29484.467045: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37393              ps-13725 (13725) [005] dn.3 29484.467047: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37394              ps-13725 (13725) [005] d..2 29484.467050: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37395     kworker/0:0-13450 (13450) [000] d..2 29484.467051: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37396     kworker/0:0-13450 (13450) [000] d..3 29484.467059: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37397          <idle>-0     (-----) [003] .n.1 29484.467064: cpu_idle: state=4294967295 cpu_id=3
37398 shell svc 13722-13723 ( 1007) [005] d..2 29484.467071: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37399          <idle>-0     (-----) [003] d..2 29484.467072: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37400            adbd-23485 ( 1007) [003] d..2 29484.467089: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37401          <idle>-0     (-----) [003] d..1 29484.467093: cpu_idle: state=0 cpu_id=3
37402     kworker/0:0-13450 (13450) [000] d..2 29484.467097: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37403          <idle>-0     (-----) [000] d..1 29484.467105: cpu_idle: state=0 cpu_id=0
37404              ps-13725 (13725) [005] d..2 29484.467132: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37405              ps-13725 (13725) [005] dn.3 29484.467136: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37406              ps-13725 (13725) [005] d..2 29484.467139: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37407 shell svc 13722-13723 ( 1007) [005] d..2 29484.467148: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37408          <idle>-0     (-----) [000] d.h3 29484.467181: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37409          <idle>-0     (-----) [000] dnh4 29484.467186: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37410          <idle>-0     (-----) [000] .n.1 29484.467191: cpu_idle: state=4294967295 cpu_id=0
37411          <idle>-0     (-----) [000] d..2 29484.467197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37412   kworker/u17:2-23076 (23076) [000] d..2 29484.467204: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37413              ps-13725 (13725) [005] d..2 29484.467206: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37414   kworker/u17:2-23076 (23076) [000] d..3 29484.467209: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37415              ps-13725 (13725) [005] dn.3 29484.467209: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37416              ps-13725 (13725) [005] d..2 29484.467213: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37417 shell svc 13722-13723 ( 1007) [005] d..2 29484.467220: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37418   kworker/u17:2-23076 (23076) [000] d..2 29484.467225: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37419     kworker/0:0-13450 (13450) [000] d..2 29484.467230: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37420     kworker/0:0-13450 (13450) [000] d..3 29484.467239: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37421     kworker/0:0-13450 (13450) [000] d..2 29484.467247: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37422            adbd-23484 ( 1007) [000] d..2 29484.467259: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37423            adbd-23484 ( 1007) [000] d..3 29484.467265: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37424              ps-13725 (13725) [005] d..2 29484.467279: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37425              ps-13725 (13725) [005] dn.3 29484.467283: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37426              ps-13725 (13725) [005] d..2 29484.467285: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37427 shell svc 13722-13723 ( 1007) [005] d..2 29484.467293: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37428            adbd-23484 ( 1007) [000] d..2 29484.467308: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37429              ps-13725 (13725) [005] d..2 29484.467350: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37430              ps-13725 (13725) [005] dn.3 29484.467353: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37431              ps-13725 (13725) [005] d..2 29484.467356: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37432 shell svc 13722-13723 ( 1007) [005] d..2 29484.467363: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37433            adbd-1007  ( 1007) [000] d..1 29484.467375: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37434            adbd-1007  ( 1007) [000] d..2 29484.467386: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37435          <idle>-0     (-----) [003] .n.1 29484.467391: cpu_idle: state=4294967295 cpu_id=3
37436          <idle>-0     (-----) [003] d..2 29484.467395: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37437            adbd-1007  ( 1007) [000] d..2 29484.467420: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37438              ps-13725 (13725) [005] d..2 29484.467420: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37439              ps-13725 (13725) [005] dn.3 29484.467424: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37440              ps-13725 (13725) [005] d..2 29484.467426: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37441          <idle>-0     (-----) [000] d..1 29484.467429: cpu_idle: state=0 cpu_id=0
37442 shell svc 13722-13723 ( 1007) [005] d..2 29484.467434: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37443            adbd-23485 ( 1007) [003] d..2 29484.467441: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37444          <idle>-0     (-----) [003] d..1 29484.467445: cpu_idle: state=0 cpu_id=3
37445          <idle>-0     (-----) [000] d.h3 29484.467476: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37446          <idle>-0     (-----) [000] dnh4 29484.467483: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37447          <idle>-0     (-----) [000] .n.1 29484.467488: cpu_idle: state=4294967295 cpu_id=0
37448              ps-13725 (13725) [005] d..2 29484.467493: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37449          <idle>-0     (-----) [000] d..2 29484.467495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37450              ps-13725 (13725) [005] dn.3 29484.467497: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37451              ps-13725 (13725) [005] d..2 29484.467500: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37452   kworker/u17:2-23076 (23076) [000] d..2 29484.467504: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37453 shell svc 13722-13723 ( 1007) [005] d..2 29484.467507: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37454   kworker/u17:2-23076 (23076) [000] d..3 29484.467509: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37455   kworker/u17:2-23076 (23076) [000] d..2 29484.467525: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37456     kworker/0:0-13450 (13450) [000] d..2 29484.467532: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37457     kworker/0:0-13450 (13450) [000] d..3 29484.467541: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37458          <idle>-0     (-----) [003] .n.1 29484.467546: cpu_idle: state=4294967295 cpu_id=3
37459          <idle>-0     (-----) [003] d..2 29484.467551: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37460     kworker/0:0-13450 (13450) [000] d..2 29484.467555: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37461          <idle>-0     (-----) [000] d..1 29484.467562: cpu_idle: state=0 cpu_id=0
37462              ps-13725 (13725) [005] d..2 29484.467563: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37463              ps-13725 (13725) [005] dn.3 29484.467567: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37464              ps-13725 (13725) [005] d..2 29484.467569: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37465 shell svc 13722-13723 ( 1007) [005] d..2 29484.467577: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37466            adbd-23485 ( 1007) [003] d..2 29484.467595: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37467          <idle>-0     (-----) [003] d..1 29484.467600: cpu_idle: state=0 cpu_id=3
37468              ps-13725 (13725) [005] d..2 29484.467634: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37469          <idle>-0     (-----) [000] d.h3 29484.467636: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37470              ps-13725 (13725) [005] dn.3 29484.467637: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37471              ps-13725 (13725) [005] d..2 29484.467639: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37472          <idle>-0     (-----) [000] dnh4 29484.467642: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37473          <idle>-0     (-----) [000] .n.1 29484.467647: cpu_idle: state=4294967295 cpu_id=0
37474 shell svc 13722-13723 ( 1007) [005] d..2 29484.467647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37475          <idle>-0     (-----) [000] d..2 29484.467652: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37476   kworker/u17:2-23076 (23076) [000] d..2 29484.467659: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37477   kworker/u17:2-23076 (23076) [000] d..3 29484.467664: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37478   kworker/u17:2-23076 (23076) [000] d..2 29484.467679: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37479     kworker/0:0-13450 (13450) [000] d..2 29484.467684: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37480     kworker/0:0-13450 (13450) [000] d..3 29484.467694: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37481          <idle>-0     (-----) [003] .n.1 29484.467698: cpu_idle: state=4294967295 cpu_id=3
37482              ps-13725 (13725) [005] d..2 29484.467701: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37483          <idle>-0     (-----) [003] d..2 29484.467704: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37484              ps-13725 (13725) [005] dn.3 29484.467705: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37485     kworker/0:0-13450 (13450) [000] d..2 29484.467707: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37486              ps-13725 (13725) [005] d..2 29484.467707: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37487          <idle>-0     (-----) [000] d..1 29484.467713: cpu_idle: state=0 cpu_id=0
37488 shell svc 13722-13723 ( 1007) [005] d..2 29484.467715: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37489            adbd-23485 ( 1007) [003] d..2 29484.467721: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37490          <idle>-0     (-----) [003] d..1 29484.467725: cpu_idle: state=0 cpu_id=3
37491          <idle>-0     (-----) [000] d.h3 29484.467765: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37492          <idle>-0     (-----) [000] dnh4 29484.467770: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37493              ps-13725 (13725) [005] d..2 29484.467773: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37494          <idle>-0     (-----) [000] .n.1 29484.467775: cpu_idle: state=4294967295 cpu_id=0
37495              ps-13725 (13725) [005] dn.3 29484.467776: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37496              ps-13725 (13725) [005] d..2 29484.467779: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37497          <idle>-0     (-----) [000] d..2 29484.467781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37498 shell svc 13722-13723 ( 1007) [005] d..2 29484.467786: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37499   kworker/u17:2-23076 (23076) [000] d..2 29484.467787: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37500   kworker/u17:2-23076 (23076) [000] d..3 29484.467792: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37501   kworker/u17:2-23076 (23076) [000] d..2 29484.467808: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37502     kworker/0:0-13450 (13450) [000] d..2 29484.467813: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37503     kworker/0:0-13450 (13450) [000] d..3 29484.467822: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37504     kworker/0:0-13450 (13450) [000] d..2 29484.467830: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37505              ps-13725 (13725) [005] d..2 29484.467841: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37506            adbd-23484 ( 1007) [000] d..2 29484.467841: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37507              ps-13725 (13725) [005] dn.3 29484.467844: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37508              ps-13725 (13725) [005] d..2 29484.467847: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37509            adbd-23484 ( 1007) [000] d..3 29484.467848: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37510 shell svc 13722-13723 ( 1007) [005] d..2 29484.467854: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37511            adbd-23484 ( 1007) [000] d..2 29484.467890: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37512              ps-13725 (13725) [005] d..2 29484.467909: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37513              ps-13725 (13725) [005] dn.3 29484.467912: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37514              ps-13725 (13725) [005] d..2 29484.467915: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37515 shell svc 13722-13723 ( 1007) [005] d..2 29484.467923: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37516            adbd-1007  ( 1007) [000] d..1 29484.467957: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37517            adbd-1007  ( 1007) [000] d..2 29484.467969: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37518          <idle>-0     (-----) [003] .n.1 29484.467973: cpu_idle: state=4294967295 cpu_id=3
37519          <idle>-0     (-----) [003] d..2 29484.467978: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37520              ps-13725 (13725) [005] d..2 29484.467978: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37521              ps-13725 (13725) [005] dn.3 29484.467982: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37522              ps-13725 (13725) [005] d..2 29484.467984: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37523 shell svc 13722-13723 ( 1007) [005] d..2 29484.467992: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37524            adbd-1007  ( 1007) [000] d..2 29484.468003: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37525          <idle>-0     (-----) [000] d..1 29484.468012: cpu_idle: state=0 cpu_id=0
37526            adbd-23485 ( 1007) [003] d..2 29484.468023: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37527          <idle>-0     (-----) [003] d..1 29484.468028: cpu_idle: state=0 cpu_id=3
37528          <idle>-0     (-----) [000] d.h3 29484.468041: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37529          <idle>-0     (-----) [000] dnh4 29484.468047: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37530              ps-13725 (13725) [005] d..2 29484.468049: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37531              ps-13725 (13725) [005] dn.3 29484.468052: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37532          <idle>-0     (-----) [000] .n.1 29484.468053: cpu_idle: state=4294967295 cpu_id=0
37533              ps-13725 (13725) [005] d..2 29484.468054: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37534          <idle>-0     (-----) [000] d..2 29484.468059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37535 shell svc 13722-13723 ( 1007) [005] d..2 29484.468061: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37536   kworker/u17:2-23076 (23076) [000] d..2 29484.468068: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37537   kworker/u17:2-23076 (23076) [000] d..3 29484.468073: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37538   kworker/u17:2-23076 (23076) [000] d..2 29484.468089: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37539     kworker/0:0-13450 (13450) [000] d..2 29484.468094: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37540     kworker/0:0-13450 (13450) [000] d..3 29484.468103: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37541          <idle>-0     (-----) [003] .n.1 29484.468108: cpu_idle: state=4294967295 cpu_id=3
37542          <idle>-0     (-----) [003] d..2 29484.468113: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37543              ps-13725 (13725) [005] d..2 29484.468116: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37544     kworker/0:0-13450 (13450) [000] d..2 29484.468117: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37545              ps-13725 (13725) [005] dn.3 29484.468119: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37546              ps-13725 (13725) [005] d..2 29484.468121: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37547          <idle>-0     (-----) [000] d..1 29484.468124: cpu_idle: state=0 cpu_id=0
37548 shell svc 13722-13723 ( 1007) [005] d..2 29484.468129: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37549            adbd-23485 ( 1007) [003] d..2 29484.468158: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37550          <idle>-0     (-----) [003] d..1 29484.468162: cpu_idle: state=0 cpu_id=3
37551              ps-13725 (13725) [005] d..2 29484.468186: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37552              ps-13725 (13725) [005] dn.3 29484.468189: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37553              ps-13725 (13725) [005] d..2 29484.468191: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37554          <idle>-0     (-----) [000] d.h3 29484.468198: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37555 shell svc 13722-13723 ( 1007) [005] d..2 29484.468199: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37556          <idle>-0     (-----) [000] dnh4 29484.468203: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37557          <idle>-0     (-----) [000] .n.1 29484.468208: cpu_idle: state=4294967295 cpu_id=0
37558          <idle>-0     (-----) [000] d..2 29484.468214: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37559   kworker/u17:2-23076 (23076) [000] d..2 29484.468221: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37560   kworker/u17:2-23076 (23076) [000] d..3 29484.468227: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37561   kworker/u17:2-23076 (23076) [000] d..2 29484.468243: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37562     kworker/0:0-13450 (13450) [000] d..2 29484.468248: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37563              ps-13725 (13725) [005] d..2 29484.468256: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37564     kworker/0:0-13450 (13450) [000] d..3 29484.468257: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37565              ps-13725 (13725) [005] dn.3 29484.468259: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37566          <idle>-0     (-----) [003] .n.1 29484.468262: cpu_idle: state=4294967295 cpu_id=3
37567              ps-13725 (13725) [005] d..2 29484.468262: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37568          <idle>-0     (-----) [003] d..2 29484.468267: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37569 shell svc 13722-13723 ( 1007) [005] d..2 29484.468270: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37570     kworker/0:0-13450 (13450) [000] d..2 29484.468272: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37571          <idle>-0     (-----) [000] d..1 29484.468279: cpu_idle: state=0 cpu_id=0
37572            adbd-23485 ( 1007) [003] d..2 29484.468282: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37573          <idle>-0     (-----) [003] d..1 29484.468286: cpu_idle: state=0 cpu_id=3
37574              ps-13725 (13725) [005] d..2 29484.468327: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37575              ps-13725 (13725) [005] dn.3 29484.468330: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37576              ps-13725 (13725) [005] d..2 29484.468332: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37577 shell svc 13722-13723 ( 1007) [005] d..2 29484.468340: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37578          <idle>-0     (-----) [000] d.h3 29484.468361: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37579          <idle>-0     (-----) [000] dnh4 29484.468370: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37580          <idle>-0     (-----) [000] .n.1 29484.468375: cpu_idle: state=4294967295 cpu_id=0
37581          <idle>-0     (-----) [000] d..2 29484.468380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37582   kworker/u17:2-23076 (23076) [000] d..2 29484.468387: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37583   kworker/u17:2-23076 (23076) [000] d..3 29484.468392: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37584              ps-13725 (13725) [005] d..2 29484.468397: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37585              ps-13725 (13725) [005] dn.3 29484.468400: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37586              ps-13725 (13725) [005] d..2 29484.468403: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37587   kworker/u17:2-23076 (23076) [000] d..2 29484.468408: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37588 shell svc 13722-13723 ( 1007) [005] d..2 29484.468411: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37589     kworker/0:0-13450 (13450) [000] d..2 29484.468414: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37590     kworker/0:0-13450 (13450) [000] d..3 29484.468421: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37591     kworker/0:0-13450 (13450) [000] d..2 29484.468429: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37592            adbd-23484 ( 1007) [000] d..2 29484.468441: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37593            adbd-23484 ( 1007) [000] d..3 29484.468446: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37594              ps-13725 (13725) [005] d..2 29484.468466: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37595              ps-13725 (13725) [005] dn.3 29484.468469: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37596              ps-13725 (13725) [005] d..2 29484.468471: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37597 shell svc 13722-13723 ( 1007) [005] d..2 29484.468479: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37598            adbd-23484 ( 1007) [000] d..2 29484.468489: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37599              ps-13725 (13725) [005] d..2 29484.468532: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37600              ps-13725 (13725) [005] dn.3 29484.468535: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37601              ps-13725 (13725) [005] d..2 29484.468538: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37602 shell svc 13722-13723 ( 1007) [005] d..2 29484.468546: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37603            adbd-1007  ( 1007) [000] d..1 29484.468556: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37604            adbd-1007  ( 1007) [000] d..2 29484.468571: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37605          <idle>-0     (-----) [003] .n.1 29484.468575: cpu_idle: state=4294967295 cpu_id=3
37606          <idle>-0     (-----) [003] d..2 29484.468580: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37607              ps-13725 (13725) [005] d..2 29484.468601: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37608              ps-13725 (13725) [005] dn.3 29484.468604: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37609            adbd-1007  ( 1007) [000] d..2 29484.468605: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37610              ps-13725 (13725) [005] d..2 29484.468606: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37611 shell svc 13722-13723 ( 1007) [005] d..2 29484.468614: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37612          <idle>-0     (-----) [000] d..1 29484.468615: cpu_idle: state=0 cpu_id=0
37613            adbd-23485 ( 1007) [003] d..2 29484.468624: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37614          <idle>-0     (-----) [003] d..1 29484.468629: cpu_idle: state=0 cpu_id=3
37615          <idle>-0     (-----) [000] d.h3 29484.468645: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37616          <idle>-0     (-----) [000] dnh4 29484.468651: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37617          <idle>-0     (-----) [000] .n.1 29484.468657: cpu_idle: state=4294967295 cpu_id=0
37618          <idle>-0     (-----) [000] d..2 29484.468663: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37619              ps-13725 (13725) [005] d..2 29484.468669: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37620   kworker/u17:2-23076 (23076) [000] d..2 29484.468671: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37621              ps-13725 (13725) [005] dn.3 29484.468672: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37622              ps-13725 (13725) [005] d..2 29484.468675: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37623   kworker/u17:2-23076 (23076) [000] d..3 29484.468677: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37624 shell svc 13722-13723 ( 1007) [005] d..2 29484.468682: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37625   kworker/u17:2-23076 (23076) [000] d..2 29484.468693: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37626     kworker/0:0-13450 (13450) [000] d..2 29484.468699: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37627     kworker/0:0-13450 (13450) [000] d..3 29484.468708: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37628          <idle>-0     (-----) [003] .n.1 29484.468713: cpu_idle: state=4294967295 cpu_id=3
37629          <idle>-0     (-----) [003] d..2 29484.468718: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37630     kworker/0:0-13450 (13450) [000] d..2 29484.468721: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37631          <idle>-0     (-----) [000] d..1 29484.468728: cpu_idle: state=0 cpu_id=0
37632              ps-13725 (13725) [005] d..2 29484.468738: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37633              ps-13725 (13725) [005] dn.3 29484.468741: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37634              ps-13725 (13725) [005] d..2 29484.468743: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37635 shell svc 13722-13723 ( 1007) [005] d..2 29484.468750: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37636            adbd-23485 ( 1007) [003] d..2 29484.468761: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37637          <idle>-0     (-----) [003] d..1 29484.468766: cpu_idle: state=0 cpu_id=3
37638          <idle>-0     (-----) [000] d.h3 29484.468804: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37639              ps-13725 (13725) [005] d..2 29484.468807: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37640          <idle>-0     (-----) [000] dnh4 29484.468809: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37641              ps-13725 (13725) [005] dn.3 29484.468810: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37642              ps-13725 (13725) [005] d..2 29484.468812: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37643          <idle>-0     (-----) [000] .n.1 29484.468815: cpu_idle: state=4294967295 cpu_id=0
37644          <idle>-0     (-----) [000] d..2 29484.468820: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37645 shell svc 13722-13723 ( 1007) [005] d..2 29484.468820: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37646   kworker/u17:2-23076 (23076) [000] d..2 29484.468827: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37647   kworker/u17:2-23076 (23076) [000] d..3 29484.468832: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37648   kworker/u17:2-23076 (23076) [000] d..2 29484.468848: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37649     kworker/0:0-13450 (13450) [000] d..2 29484.468853: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37650     kworker/0:0-13450 (13450) [000] d..3 29484.468862: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37651          <idle>-0     (-----) [003] .n.1 29484.468866: cpu_idle: state=4294967295 cpu_id=3
37652          <idle>-0     (-----) [003] d..2 29484.468871: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37653     kworker/0:0-13450 (13450) [000] d..2 29484.468875: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37654              ps-13725 (13725) [005] d..2 29484.468876: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37655              ps-13725 (13725) [005] dn.3 29484.468879: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37656              ps-13725 (13725) [005] d..2 29484.468882: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37657          <idle>-0     (-----) [000] d..1 29484.468882: cpu_idle: state=0 cpu_id=0
37658            adbd-23485 ( 1007) [003] d..2 29484.468887: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37659 shell svc 13722-13723 ( 1007) [005] d..2 29484.468889: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37660          <idle>-0     (-----) [003] d..1 29484.468891: cpu_idle: state=0 cpu_id=3
37661              ps-13725 (13725) [005] d..2 29484.468948: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37662              ps-13725 (13725) [005] dn.3 29484.468952: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37663              ps-13725 (13725) [005] d..2 29484.468954: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37664          <idle>-0     (-----) [000] d.h3 29484.468957: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37665 shell svc 13722-13723 ( 1007) [005] d..2 29484.468962: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37666          <idle>-0     (-----) [000] dnh4 29484.468962: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37667          <idle>-0     (-----) [000] .n.1 29484.468967: cpu_idle: state=4294967295 cpu_id=0
37668          <idle>-0     (-----) [000] d..2 29484.468973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37669   kworker/u17:2-23076 (23076) [000] d..2 29484.468979: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37670   kworker/u17:2-23076 (23076) [000] d..3 29484.468984: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37671   kworker/u17:2-23076 (23076) [000] d..2 29484.468999: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37672     kworker/0:0-13450 (13450) [000] d..2 29484.469005: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37673     kworker/0:0-13450 (13450) [000] d..3 29484.469014: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37674              ps-13725 (13725) [005] d..2 29484.469017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37675              ps-13725 (13725) [005] dn.3 29484.469021: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37676     kworker/0:0-13450 (13450) [000] d..2 29484.469022: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37677              ps-13725 (13725) [005] d..2 29484.469023: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37678 shell svc 13722-13723 ( 1007) [005] d..2 29484.469030: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37679            adbd-23484 ( 1007) [000] d..2 29484.469033: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37680            adbd-23484 ( 1007) [000] d..3 29484.469039: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37681            adbd-23484 ( 1007) [000] d..2 29484.469082: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37682              ps-13725 (13725) [005] d..2 29484.469086: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37683              ps-13725 (13725) [005] dn.3 29484.469089: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37684              ps-13725 (13725) [005] d..2 29484.469091: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37685 shell svc 13722-13723 ( 1007) [005] d..2 29484.469099: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37686            adbd-1007  ( 1007) [000] d..1 29484.469147: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37687              ps-13725 (13725) [005] d..2 29484.469156: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37688            adbd-1007  ( 1007) [000] d..2 29484.469159: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37689              ps-13725 (13725) [005] dn.3 29484.469159: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37690              ps-13725 (13725) [005] d..2 29484.469161: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37691          <idle>-0     (-----) [003] .n.1 29484.469163: cpu_idle: state=4294967295 cpu_id=3
37692          <idle>-0     (-----) [003] d..2 29484.469168: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37693 shell svc 13722-13723 ( 1007) [005] d..2 29484.469169: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37694            adbd-1007  ( 1007) [000] d..2 29484.469193: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37695          <idle>-0     (-----) [000] d..1 29484.469202: cpu_idle: state=0 cpu_id=0
37696            adbd-23485 ( 1007) [003] d..2 29484.469212: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37697          <idle>-0     (-----) [003] d..1 29484.469216: cpu_idle: state=0 cpu_id=3
37698              ps-13725 (13725) [005] d..2 29484.469224: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37699              ps-13725 (13725) [005] dn.3 29484.469227: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37700          <idle>-0     (-----) [000] d.h3 29484.469229: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37701              ps-13725 (13725) [005] d..2 29484.469230: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37702          <idle>-0     (-----) [000] dnh4 29484.469235: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37703 shell svc 13722-13723 ( 1007) [005] d..2 29484.469237: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37704          <idle>-0     (-----) [000] .n.1 29484.469240: cpu_idle: state=4294967295 cpu_id=0
37705          <idle>-0     (-----) [000] d..2 29484.469247: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37706   kworker/u17:2-23076 (23076) [000] d..2 29484.469255: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37707   kworker/u17:2-23076 (23076) [000] d..3 29484.469260: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37708   kworker/u17:2-23076 (23076) [000] d..2 29484.469277: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37709     kworker/0:0-13450 (13450) [000] d..2 29484.469282: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37710     kworker/0:0-13450 (13450) [000] d..3 29484.469290: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37711              ps-13725 (13725) [005] d..2 29484.469293: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37712          <idle>-0     (-----) [003] .n.1 29484.469295: cpu_idle: state=4294967295 cpu_id=3
37713              ps-13725 (13725) [005] dn.3 29484.469297: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37714              ps-13725 (13725) [005] d..2 29484.469299: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37715          <idle>-0     (-----) [003] d..2 29484.469300: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37716     kworker/0:0-13450 (13450) [000] d..2 29484.469305: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37717 shell svc 13722-13723 ( 1007) [005] d..2 29484.469306: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37718          <idle>-0     (-----) [000] d..1 29484.469312: cpu_idle: state=0 cpu_id=0
37719            adbd-23485 ( 1007) [003] d..2 29484.469345: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37720          <idle>-0     (-----) [003] d..1 29484.469350: cpu_idle: state=0 cpu_id=3
37721              ps-13725 (13725) [005] d..2 29484.469361: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37722              ps-13725 (13725) [005] dn.3 29484.469364: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37723              ps-13725 (13725) [005] d..2 29484.469366: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37724          <idle>-0     (-----) [000] d.h3 29484.469367: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37725          <idle>-0     (-----) [000] dnh4 29484.469372: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37726 shell svc 13722-13723 ( 1007) [005] d..2 29484.469373: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37727          <idle>-0     (-----) [000] .n.1 29484.469377: cpu_idle: state=4294967295 cpu_id=0
37728          <idle>-0     (-----) [000] d..2 29484.469383: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37729   kworker/u17:2-23076 (23076) [000] d..2 29484.469389: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37730   kworker/u17:2-23076 (23076) [000] d..3 29484.469394: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37731   kworker/u17:2-23076 (23076) [000] d..2 29484.469409: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37732     kworker/0:0-13450 (13450) [000] d..2 29484.469414: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37733     kworker/0:0-13450 (13450) [000] d..3 29484.469423: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37734          <idle>-0     (-----) [003] .n.1 29484.469427: cpu_idle: state=4294967295 cpu_id=3
37735              ps-13725 (13725) [005] d..2 29484.469429: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37736              ps-13725 (13725) [005] dn.3 29484.469432: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37737          <idle>-0     (-----) [003] d..2 29484.469433: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37738              ps-13725 (13725) [005] d..2 29484.469434: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37739     kworker/0:0-13450 (13450) [000] d..2 29484.469436: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37740 shell svc 13722-13723 ( 1007) [005] d..2 29484.469441: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37741          <idle>-0     (-----) [000] d..1 29484.469443: cpu_idle: state=0 cpu_id=0
37742            adbd-23485 ( 1007) [003] d..2 29484.469448: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37743          <idle>-0     (-----) [003] d..1 29484.469452: cpu_idle: state=0 cpu_id=3
37744              ps-13725 (13725) [005] d..2 29484.469501: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37745              ps-13725 (13725) [005] dn.3 29484.469505: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37746              ps-13725 (13725) [005] d..2 29484.469508: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37747 shell svc 13722-13723 ( 1007) [005] d..2 29484.469515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37748          <idle>-0     (-----) [000] d.h3 29484.469549: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37749          <idle>-0     (-----) [000] dnh4 29484.469554: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37750          <idle>-0     (-----) [000] .n.1 29484.469559: cpu_idle: state=4294967295 cpu_id=0
37751          <idle>-0     (-----) [000] d..2 29484.469566: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37752   kworker/u17:2-23076 (23076) [000] d..2 29484.469573: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37753              ps-13725 (13725) [005] d..2 29484.469575: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37754   kworker/u17:2-23076 (23076) [000] d..3 29484.469577: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37755              ps-13725 (13725) [005] dn.3 29484.469578: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37756              ps-13725 (13725) [005] d..2 29484.469581: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37757 shell svc 13722-13723 ( 1007) [005] d..2 29484.469588: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37758   kworker/u17:2-23076 (23076) [000] d..2 29484.469593: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37759     kworker/0:0-13450 (13450) [000] d..2 29484.469598: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37760     kworker/0:0-13450 (13450) [000] d..3 29484.469607: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37761     kworker/0:0-13450 (13450) [000] d..2 29484.469615: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37762            adbd-23484 ( 1007) [000] d..2 29484.469627: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37763            adbd-23484 ( 1007) [000] d..3 29484.469632: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37764              ps-13725 (13725) [005] d..2 29484.469648: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37765              ps-13725 (13725) [005] dn.3 29484.469651: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37766              ps-13725 (13725) [005] d..2 29484.469654: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37767 shell svc 13722-13723 ( 1007) [005] d..2 29484.469662: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37768            adbd-23484 ( 1007) [000] d..2 29484.469676: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37769              ps-13725 (13725) [005] d..2 29484.469718: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37770              ps-13725 (13725) [005] dn.3 29484.469722: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37771              ps-13725 (13725) [005] d..2 29484.469724: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37772 shell svc 13722-13723 ( 1007) [005] d..2 29484.469732: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37773            adbd-1007  ( 1007) [000] d..1 29484.469742: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37774            adbd-1007  ( 1007) [000] d..2 29484.469754: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37775          <idle>-0     (-----) [003] .n.1 29484.469758: cpu_idle: state=4294967295 cpu_id=3
37776          <idle>-0     (-----) [003] d..2 29484.469763: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37777              ps-13725 (13725) [005] d..2 29484.469787: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37778            adbd-1007  ( 1007) [000] d..2 29484.469788: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37779              ps-13725 (13725) [005] dn.3 29484.469790: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37780              ps-13725 (13725) [005] d..2 29484.469793: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37781          <idle>-0     (-----) [000] d..1 29484.469798: cpu_idle: state=0 cpu_id=0
37782 shell svc 13722-13723 ( 1007) [005] d..2 29484.469800: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37783            adbd-23485 ( 1007) [003] d..2 29484.469807: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37784          <idle>-0     (-----) [003] d..1 29484.469812: cpu_idle: state=0 cpu_id=3
37785          <idle>-0     (-----) [000] d.h3 29484.469833: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37786          <idle>-0     (-----) [000] dnh4 29484.469840: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37787          <idle>-0     (-----) [000] .n.1 29484.469845: cpu_idle: state=4294967295 cpu_id=0
37788          <idle>-0     (-----) [000] d..2 29484.469851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37789              ps-13725 (13725) [005] d..2 29484.469858: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37790   kworker/u17:2-23076 (23076) [000] d..2 29484.469859: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37791              ps-13725 (13725) [005] dn.3 29484.469862: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37792              ps-13725 (13725) [005] d..2 29484.469864: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37793   kworker/u17:2-23076 (23076) [000] d..3 29484.469865: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37794 shell svc 13722-13723 ( 1007) [005] d..2 29484.469872: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37795   kworker/u17:2-23076 (23076) [000] d..2 29484.469881: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37796     kworker/0:0-13450 (13450) [000] d..2 29484.469886: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37797     kworker/0:0-13450 (13450) [000] d..3 29484.469895: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37798          <idle>-0     (-----) [003] .n.1 29484.469899: cpu_idle: state=4294967295 cpu_id=3
37799          <idle>-0     (-----) [003] d..2 29484.469904: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37800     kworker/0:0-13450 (13450) [000] d..2 29484.469909: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37801          <idle>-0     (-----) [000] d..1 29484.469916: cpu_idle: state=0 cpu_id=0
37802              ps-13725 (13725) [005] d..2 29484.469927: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37803              ps-13725 (13725) [005] dn.3 29484.469930: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37804              ps-13725 (13725) [005] d..2 29484.469932: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37805 shell svc 13722-13723 ( 1007) [005] d..2 29484.469939: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37806            adbd-23485 ( 1007) [003] d..2 29484.469948: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37807          <idle>-0     (-----) [003] d..1 29484.469952: cpu_idle: state=0 cpu_id=3
37808          <idle>-0     (-----) [000] d.h3 29484.469979: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37809          <idle>-0     (-----) [000] dnh4 29484.469984: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37810          <idle>-0     (-----) [000] .n.1 29484.469989: cpu_idle: state=4294967295 cpu_id=0
37811          <idle>-0     (-----) [000] d..2 29484.469995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37812              ps-13725 (13725) [005] d..2 29484.469997: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37813              ps-13725 (13725) [005] dn.3 29484.470000: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37814              ps-13725 (13725) [005] d..2 29484.470002: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37815   kworker/u17:2-23076 (23076) [000] d..2 29484.470003: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37816   kworker/u17:2-23076 (23076) [000] d..3 29484.470007: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37817 shell svc 13722-13723 ( 1007) [005] d..2 29484.470010: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37818   kworker/u17:2-23076 (23076) [000] d..2 29484.470024: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37819     kworker/0:0-13450 (13450) [000] d..2 29484.470029: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37820     kworker/0:0-13450 (13450) [000] d..3 29484.470037: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37821          <idle>-0     (-----) [003] .n.1 29484.470042: cpu_idle: state=4294967295 cpu_id=3
37822          <idle>-0     (-----) [003] d..2 29484.470047: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37823     kworker/0:0-13450 (13450) [000] d..2 29484.470051: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37824          <idle>-0     (-----) [000] d..1 29484.470058: cpu_idle: state=0 cpu_id=0
37825            adbd-23485 ( 1007) [003] d..2 29484.470064: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37826              ps-13725 (13725) [005] d..2 29484.470066: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37827          <idle>-0     (-----) [003] d..1 29484.470068: cpu_idle: state=0 cpu_id=3
37828              ps-13725 (13725) [005] dn.3 29484.470069: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37829              ps-13725 (13725) [005] d..2 29484.470071: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37830 shell svc 13722-13723 ( 1007) [005] d..2 29484.470079: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37831          <idle>-0     (-----) [000] d.h3 29484.470126: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37832          <idle>-0     (-----) [000] dnh4 29484.470131: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37833              ps-13725 (13725) [005] d..2 29484.470136: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37834          <idle>-0     (-----) [000] .n.1 29484.470136: cpu_idle: state=4294967295 cpu_id=0
37835              ps-13725 (13725) [005] dn.3 29484.470139: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37836          <idle>-0     (-----) [000] d..2 29484.470142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37837              ps-13725 (13725) [005] d..2 29484.470142: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37838   kworker/u17:2-23076 (23076) [000] d..2 29484.470148: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37839 shell svc 13722-13723 ( 1007) [005] d..2 29484.470149: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37840   kworker/u17:2-23076 (23076) [000] d..3 29484.470153: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37841   kworker/u17:2-23076 (23076) [000] d..2 29484.470169: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37842     kworker/0:0-13450 (13450) [000] d..2 29484.470175: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37843     kworker/0:0-13450 (13450) [000] d..3 29484.470184: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37844     kworker/0:0-13450 (13450) [000] d..2 29484.470191: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37845            adbd-23484 ( 1007) [000] d..2 29484.470203: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37846              ps-13725 (13725) [005] d..2 29484.470207: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37847            adbd-23484 ( 1007) [000] d..3 29484.470209: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37848              ps-13725 (13725) [005] dn.3 29484.470210: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37849              ps-13725 (13725) [005] d..2 29484.470212: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37850 shell svc 13722-13723 ( 1007) [005] d..2 29484.470219: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37851            adbd-23484 ( 1007) [000] d..2 29484.470252: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37852              ps-13725 (13725) [005] d..2 29484.470275: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37853              ps-13725 (13725) [005] dn.3 29484.470279: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37854              ps-13725 (13725) [005] d..2 29484.470282: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37855 shell svc 13722-13723 ( 1007) [005] d..2 29484.470289: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37856            adbd-1007  ( 1007) [000] d..1 29484.470319: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37857            adbd-1007  ( 1007) [000] d..2 29484.470331: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37858          <idle>-0     (-----) [003] .n.1 29484.470335: cpu_idle: state=4294967295 cpu_id=3
37859          <idle>-0     (-----) [003] d..2 29484.470340: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37860              ps-13725 (13725) [005] d..2 29484.470344: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37861              ps-13725 (13725) [005] dn.3 29484.470347: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37862              ps-13725 (13725) [005] d..2 29484.470350: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37863 shell svc 13722-13723 ( 1007) [005] d..2 29484.470357: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37864            adbd-1007  ( 1007) [000] d..2 29484.470365: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37865          <idle>-0     (-----) [000] d..1 29484.470374: cpu_idle: state=0 cpu_id=0
37866            adbd-23485 ( 1007) [003] d..2 29484.470385: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37867          <idle>-0     (-----) [000] d.h3 29484.470395: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37868              ps-13725 (13725) [005] d.s2 29484.470398: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
37869          <idle>-0     (-----) [000] dnh4 29484.470405: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37870          <idle>-0     (-----) [003] d.s2 29484.470405: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
37871          <idle>-0     (-----) [003] dns3 29484.470415: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
37872          <idle>-0     (-----) [000] .n.1 29484.470416: cpu_idle: state=4294967295 cpu_id=0
37873          <idle>-0     (-----) [003] dnH3 29484.470422: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
37874          <idle>-0     (-----) [000] d..2 29484.470423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37875   kworker/u17:2-23076 (23076) [000] d..2 29484.470431: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37876          <idle>-0     (-----) [003] d..2 29484.470433: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
37877   kworker/u17:2-23076 (23076) [000] d..3 29484.470437: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37878     rcu_preempt-7     (    7) [003] d..2 29484.470444: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
37879              ps-13725 (13725) [005] d..2 29484.470448: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37880              ps-13725 (13725) [005] dn.3 29484.470452: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37881   kworker/u17:2-23076 (23076) [000] d..2 29484.470453: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37882              ps-13725 (13725) [005] d..2 29484.470454: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37883     kworker/0:0-13450 (13450) [000] d..2 29484.470459: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37884     kworker/0:0-13450 (13450) [000] d..3 29484.470468: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37885 shell svc 13722-13723 ( 1007) [005] d..2 29484.470470: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37886     kworker/0:0-13450 (13450) [000] d..2 29484.470476: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37887          <idle>-0     (-----) [000] d..1 29484.470483: cpu_idle: state=0 cpu_id=0
37888  kworker/u16:10-23868 (23868) [003] .... 29484.470483: clk_set_rate: l3_cluster1_vote_clk 1478400000
37889  kworker/u16:10-23868 (23868) [003] .... 29484.470486: clk_set_rate: l3_clk 1478400000
37890  kworker/u16:10-23868 (23868) [003] .... 29484.470520: clk_set_rate: l3_cluster0_vote_clk 652800000
37891              ps-13725 (13725) [005] d..2 29484.470533: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37892              ps-13725 (13725) [005] dn.3 29484.470537: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37893              ps-13725 (13725) [005] d..2 29484.470543: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37894 shell svc 13722-13723 ( 1007) [005] d..2 29484.470554: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37895  kworker/u16:10-23868 (23868) [003] d..2 29484.470558: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
37896            adbd-23485 ( 1007) [003] d..2 29484.470607: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37897              ps-13725 (13725) [005] d..2 29484.470611: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37898              ps-13725 (13725) [005] dn.3 29484.470614: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37899              ps-13725 (13725) [005] d..2 29484.470616: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37900          <idle>-0     (-----) [003] d..1 29484.470617: cpu_idle: state=0 cpu_id=3
37901 shell svc 13722-13723 ( 1007) [005] d..2 29484.470623: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37902          <idle>-0     (-----) [000] d.h3 29484.470639: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37903          <idle>-0     (-----) [000] dnh4 29484.470644: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37904          <idle>-0     (-----) [000] .n.1 29484.470649: cpu_idle: state=4294967295 cpu_id=0
37905          <idle>-0     (-----) [000] d..2 29484.470655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37906   kworker/u17:2-23076 (23076) [000] d..2 29484.470661: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37907   kworker/u17:2-23076 (23076) [000] d..3 29484.470665: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37908              ps-13725 (13725) [005] d..2 29484.470677: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37909              ps-13725 (13725) [005] dn.3 29484.470681: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37910   kworker/u17:2-23076 (23076) [000] d..2 29484.470681: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37911              ps-13725 (13725) [005] d..2 29484.470683: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37912     kworker/0:0-13450 (13450) [000] d..2 29484.470686: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37913 shell svc 13722-13723 ( 1007) [005] d..2 29484.470690: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37914     kworker/0:0-13450 (13450) [000] d..3 29484.470697: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37915          <idle>-0     (-----) [003] .n.1 29484.470702: cpu_idle: state=4294967295 cpu_id=3
37916          <idle>-0     (-----) [003] d..2 29484.470708: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37917     kworker/0:0-13450 (13450) [000] d..2 29484.470710: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37918          <idle>-0     (-----) [000] d..1 29484.470717: cpu_idle: state=0 cpu_id=0
37919            adbd-23485 ( 1007) [003] d..2 29484.470726: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37920          <idle>-0     (-----) [003] d..1 29484.470733: cpu_idle: state=0 cpu_id=3
37921              ps-13725 (13725) [005] d..2 29484.470744: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37922              ps-13725 (13725) [005] dn.3 29484.470748: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37923              ps-13725 (13725) [005] d..2 29484.470750: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37924 shell svc 13722-13723 ( 1007) [005] d..2 29484.470757: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37925              ps-13725 (13725) [005] d..2 29484.470814: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37926              ps-13725 (13725) [005] dn.3 29484.470817: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37927              ps-13725 (13725) [005] d..2 29484.470820: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37928 shell svc 13722-13723 ( 1007) [005] d..2 29484.470827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37929          <idle>-0     (-----) [000] d.h3 29484.470858: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37930          <idle>-0     (-----) [000] dnh4 29484.470863: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37931          <idle>-0     (-----) [000] .n.1 29484.470868: cpu_idle: state=4294967295 cpu_id=0
37932          <idle>-0     (-----) [000] d..2 29484.470874: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37933   kworker/u17:2-23076 (23076) [000] d..2 29484.470880: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37934              ps-13725 (13725) [005] d..2 29484.470884: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37935   kworker/u17:2-23076 (23076) [000] d..3 29484.470885: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37936              ps-13725 (13725) [005] dn.3 29484.470887: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37937              ps-13725 (13725) [005] d..2 29484.470889: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37938 shell svc 13722-13723 ( 1007) [005] d..2 29484.470896: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37939   kworker/u17:2-23076 (23076) [000] d..2 29484.470900: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37940     kworker/0:0-13450 (13450) [000] d..2 29484.470905: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
37941     kworker/0:0-13450 (13450) [000] d..3 29484.470913: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
37942     kworker/0:0-13450 (13450) [000] d..2 29484.470920: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
37943            adbd-23484 ( 1007) [000] d..2 29484.470932: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
37944            adbd-23484 ( 1007) [000] d..3 29484.470937: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
37945              ps-13725 (13725) [005] d..2 29484.470950: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37946              ps-13725 (13725) [005] dn.3 29484.470953: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37947              ps-13725 (13725) [005] d..2 29484.470955: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37948 shell svc 13722-13723 ( 1007) [005] d..2 29484.470963: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37949            adbd-23484 ( 1007) [000] d..2 29484.470977: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
37950              ps-13725 (13725) [005] d..2 29484.471017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37951              ps-13725 (13725) [005] dn.3 29484.471020: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37952              ps-13725 (13725) [005] d..2 29484.471023: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37953 shell svc 13722-13723 ( 1007) [005] d..2 29484.471030: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37954            adbd-1007  ( 1007) [000] d..1 29484.471037: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37955            adbd-1007  ( 1007) [000] d..2 29484.471048: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37956          <idle>-0     (-----) [003] .n.1 29484.471052: cpu_idle: state=4294967295 cpu_id=3
37957          <idle>-0     (-----) [003] d..2 29484.471058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37958            adbd-1007  ( 1007) [000] d..2 29484.471079: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37959              ps-13725 (13725) [005] d..2 29484.471082: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37960              ps-13725 (13725) [005] dn.3 29484.471085: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37961          <idle>-0     (-----) [000] d..1 29484.471087: cpu_idle: state=0 cpu_id=0
37962              ps-13725 (13725) [005] d..2 29484.471088: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37963 shell svc 13722-13723 ( 1007) [005] d..2 29484.471095: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37964            adbd-23485 ( 1007) [003] d..2 29484.471102: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37965          <idle>-0     (-----) [003] d..1 29484.471108: cpu_idle: state=0 cpu_id=3
37966          <idle>-0     (-----) [000] d.h3 29484.471124: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37967          <idle>-0     (-----) [000] dnh4 29484.471130: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37968          <idle>-0     (-----) [000] .n.1 29484.471135: cpu_idle: state=4294967295 cpu_id=0
37969          <idle>-0     (-----) [000] d..2 29484.471141: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37970              ps-13725 (13725) [005] d..2 29484.471148: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37971   kworker/u17:2-23076 (23076) [000] d..2 29484.471148: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37972              ps-13725 (13725) [005] dn.3 29484.471151: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37973              ps-13725 (13725) [005] d..2 29484.471153: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37974   kworker/u17:2-23076 (23076) [000] d..3 29484.471153: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37975 shell svc 13722-13723 ( 1007) [005] d..2 29484.471160: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37976   kworker/u17:2-23076 (23076) [000] d..2 29484.471169: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
37977     kworker/0:0-13450 (13450) [000] d..2 29484.471174: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
37978     kworker/0:0-13450 (13450) [000] d..3 29484.471183: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
37979          <idle>-0     (-----) [003] .n.1 29484.471188: cpu_idle: state=4294967295 cpu_id=3
37980          <idle>-0     (-----) [003] d..2 29484.471193: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
37981     kworker/0:0-13450 (13450) [000] d..2 29484.471196: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37982          <idle>-0     (-----) [000] d..1 29484.471203: cpu_idle: state=0 cpu_id=0
37983              ps-13725 (13725) [005] d..2 29484.471214: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37984              ps-13725 (13725) [005] dn.3 29484.471217: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37985              ps-13725 (13725) [005] d..2 29484.471219: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37986 shell svc 13722-13723 ( 1007) [005] d..2 29484.471226: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37987            adbd-23485 ( 1007) [003] d..2 29484.471237: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37988          <idle>-0     (-----) [003] d..1 29484.471242: cpu_idle: state=0 cpu_id=3
37989          <idle>-0     (-----) [000] d.h3 29484.471262: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37990          <idle>-0     (-----) [000] dnh4 29484.471267: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
37991          <idle>-0     (-----) [000] .n.1 29484.471272: cpu_idle: state=4294967295 cpu_id=0
37992          <idle>-0     (-----) [000] d..2 29484.471277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
37993              ps-13725 (13725) [005] d..2 29484.471281: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37994   kworker/u17:2-23076 (23076) [000] d..2 29484.471283: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37995              ps-13725 (13725) [005] dn.3 29484.471284: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
37996              ps-13725 (13725) [005] d..2 29484.471287: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
37997   kworker/u17:2-23076 (23076) [000] d..3 29484.471288: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
37998 shell svc 13722-13723 ( 1007) [005] d..2 29484.471294: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
37999   kworker/u17:2-23076 (23076) [000] d..2 29484.471303: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38000     kworker/0:0-13450 (13450) [000] d..2 29484.471308: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38001     kworker/0:0-13450 (13450) [000] d..3 29484.471316: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38002          <idle>-0     (-----) [003] .n.1 29484.471321: cpu_idle: state=4294967295 cpu_id=3
38003          <idle>-0     (-----) [003] d..2 29484.471327: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38004     kworker/0:0-13450 (13450) [000] d..2 29484.471329: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38005          <idle>-0     (-----) [000] d..1 29484.471335: cpu_idle: state=0 cpu_id=0
38006            adbd-23485 ( 1007) [003] d..2 29484.471343: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38007          <idle>-0     (-----) [003] d..1 29484.471348: cpu_idle: state=0 cpu_id=3
38008              ps-13725 (13725) [005] d..2 29484.471350: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38009              ps-13725 (13725) [005] dn.3 29484.471353: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38010              ps-13725 (13725) [005] d..2 29484.471355: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38011 shell svc 13722-13723 ( 1007) [005] d..2 29484.471362: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38012          <idle>-0     (-----) [000] d.h3 29484.471412: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38013          <idle>-0     (-----) [000] dnh4 29484.471417: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38014              ps-13725 (13725) [005] d..2 29484.471418: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38015              ps-13725 (13725) [005] dn.3 29484.471421: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38016          <idle>-0     (-----) [000] .n.1 29484.471422: cpu_idle: state=4294967295 cpu_id=0
38017              ps-13725 (13725) [005] d..2 29484.471423: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38018          <idle>-0     (-----) [000] d..2 29484.471427: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38019 shell svc 13722-13723 ( 1007) [005] d..2 29484.471430: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38020   kworker/u17:2-23076 (23076) [000] d..2 29484.471433: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38021   kworker/u17:2-23076 (23076) [000] d..3 29484.471438: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38022   kworker/u17:2-23076 (23076) [000] d..2 29484.471453: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38023     kworker/0:0-13450 (13450) [000] d..2 29484.471458: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38024     kworker/0:0-13450 (13450) [000] d..3 29484.471467: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38025     kworker/0:0-13450 (13450) [000] d..2 29484.471474: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38026              ps-13725 (13725) [005] d..2 29484.471484: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38027            adbd-23484 ( 1007) [000] d..2 29484.471484: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38028              ps-13725 (13725) [005] dn.3 29484.471487: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38029              ps-13725 (13725) [005] d..2 29484.471489: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38030            adbd-23484 ( 1007) [000] d..3 29484.471489: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38031 shell svc 13722-13723 ( 1007) [005] d..2 29484.471496: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38032            adbd-23484 ( 1007) [000] d..2 29484.471530: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38033              ps-13725 (13725) [005] d..2 29484.471552: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38034              ps-13725 (13725) [005] dn.3 29484.471555: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38035              ps-13725 (13725) [005] d..2 29484.471557: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38036 shell svc 13722-13723 ( 1007) [005] d..2 29484.471564: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38037            adbd-1007  ( 1007) [000] d..1 29484.471588: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38038            adbd-1007  ( 1007) [000] d..2 29484.471599: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38039          <idle>-0     (-----) [003] .n.1 29484.471603: cpu_idle: state=4294967295 cpu_id=3
38040          <idle>-0     (-----) [003] d..2 29484.471608: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38041              ps-13725 (13725) [005] d..2 29484.471619: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38042              ps-13725 (13725) [005] dn.3 29484.471622: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38043              ps-13725 (13725) [005] d..2 29484.471624: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38044            adbd-1007  ( 1007) [000] d..2 29484.471629: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38045 shell svc 13722-13723 ( 1007) [005] d..2 29484.471631: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38046          <idle>-0     (-----) [000] d..1 29484.471638: cpu_idle: state=0 cpu_id=0
38047            adbd-23485 ( 1007) [003] d..2 29484.471651: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38048          <idle>-0     (-----) [003] d..1 29484.471656: cpu_idle: state=0 cpu_id=3
38049          <idle>-0     (-----) [000] d.h3 29484.471667: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38050          <idle>-0     (-----) [000] dnh4 29484.471672: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38051          <idle>-0     (-----) [000] .n.1 29484.471677: cpu_idle: state=4294967295 cpu_id=0
38052          <idle>-0     (-----) [000] d..2 29484.471683: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38053              ps-13725 (13725) [005] d..2 29484.471685: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38054              ps-13725 (13725) [005] dn.3 29484.471688: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38055              ps-13725 (13725) [005] d..2 29484.471691: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38056   kworker/u17:2-23076 (23076) [000] d..2 29484.471692: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38057   kworker/u17:2-23076 (23076) [000] d..3 29484.471698: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38058 shell svc 13722-13723 ( 1007) [005] d..2 29484.471698: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38059   kworker/u17:2-23076 (23076) [000] d..2 29484.471713: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38060     kworker/0:0-13450 (13450) [000] d..2 29484.471718: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38061     kworker/0:0-13450 (13450) [000] d..3 29484.471727: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38062          <idle>-0     (-----) [003] .n.1 29484.471731: cpu_idle: state=4294967295 cpu_id=3
38063          <idle>-0     (-----) [003] d..2 29484.471737: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38064     kworker/0:0-13450 (13450) [000] d..2 29484.471740: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38065          <idle>-0     (-----) [000] d..1 29484.471746: cpu_idle: state=0 cpu_id=0
38066              ps-13725 (13725) [005] d..2 29484.471753: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38067              ps-13725 (13725) [005] dn.3 29484.471756: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38068              ps-13725 (13725) [005] d..2 29484.471758: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38069 shell svc 13722-13723 ( 1007) [005] d..2 29484.471765: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38070            adbd-23485 ( 1007) [003] d..2 29484.471779: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38071          <idle>-0     (-----) [003] d..1 29484.471784: cpu_idle: state=0 cpu_id=3
38072          <idle>-0     (-----) [000] d.h3 29484.471803: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38073          <idle>-0     (-----) [000] dnh4 29484.471808: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38074          <idle>-0     (-----) [000] .n.1 29484.471813: cpu_idle: state=4294967295 cpu_id=0
38075          <idle>-0     (-----) [000] d..2 29484.471818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38076              ps-13725 (13725) [005] d..2 29484.471822: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38077              ps-13725 (13725) [005] dn.3 29484.471825: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38078   kworker/u17:2-23076 (23076) [000] d..2 29484.471825: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38079              ps-13725 (13725) [005] d..2 29484.471828: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38080   kworker/u17:2-23076 (23076) [000] d..3 29484.471830: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38081 shell svc 13722-13723 ( 1007) [005] d..2 29484.471834: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38082   kworker/u17:2-23076 (23076) [000] d..2 29484.471845: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38083     kworker/0:0-13450 (13450) [000] d..2 29484.471849: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38084     kworker/0:0-13450 (13450) [000] d..3 29484.471858: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38085          <idle>-0     (-----) [003] .n.1 29484.471862: cpu_idle: state=4294967295 cpu_id=3
38086          <idle>-0     (-----) [003] d..2 29484.471868: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38087     kworker/0:0-13450 (13450) [000] d..2 29484.471870: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38088          <idle>-0     (-----) [000] d..1 29484.471876: cpu_idle: state=0 cpu_id=0
38089            adbd-23485 ( 1007) [003] d..2 29484.471883: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38090              ps-13725 (13725) [005] d..2 29484.471888: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38091          <idle>-0     (-----) [003] d..1 29484.471888: cpu_idle: state=0 cpu_id=3
38092              ps-13725 (13725) [005] dn.3 29484.471891: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38093              ps-13725 (13725) [005] d..2 29484.471893: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38094 shell svc 13722-13723 ( 1007) [005] d..2 29484.471900: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38095              ps-13725 (13725) [005] d..2 29484.471955: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38096              ps-13725 (13725) [005] dn.3 29484.471957: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38097              ps-13725 (13725) [005] d..2 29484.471960: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38098          <idle>-0     (-----) [000] d.h3 29484.471960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38099          <idle>-0     (-----) [000] dnh4 29484.471965: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38100 shell svc 13722-13723 ( 1007) [005] d..2 29484.471966: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38101          <idle>-0     (-----) [000] .n.1 29484.471970: cpu_idle: state=4294967295 cpu_id=0
38102          <idle>-0     (-----) [000] d..2 29484.471975: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38103   kworker/u17:2-23076 (23076) [000] d..2 29484.471981: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38104   kworker/u17:2-23076 (23076) [000] d..3 29484.471986: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38105   kworker/u17:2-23076 (23076) [000] d..2 29484.472001: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38106     kworker/0:0-13450 (13450) [000] d..2 29484.472006: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38107     kworker/0:0-13450 (13450) [000] d..3 29484.472014: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38108              ps-13725 (13725) [005] d..2 29484.472020: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38109     kworker/0:0-13450 (13450) [000] d..2 29484.472022: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38110              ps-13725 (13725) [005] dn.3 29484.472023: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38111              ps-13725 (13725) [005] d..2 29484.472025: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38112            adbd-23484 ( 1007) [000] d..2 29484.472032: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38113 shell svc 13722-13723 ( 1007) [005] d..2 29484.472032: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38114            adbd-23484 ( 1007) [000] d..3 29484.472037: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38115            adbd-23484 ( 1007) [000] d..2 29484.472078: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38116              ps-13725 (13725) [005] d..2 29484.472086: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38117              ps-13725 (13725) [005] dn.3 29484.472089: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38118              ps-13725 (13725) [005] d..2 29484.472091: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38119 shell svc 13722-13723 ( 1007) [005] d..2 29484.472098: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38120            adbd-1007  ( 1007) [000] d..1 29484.472138: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38121            adbd-1007  ( 1007) [000] d..2 29484.472148: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38122          <idle>-0     (-----) [003] .n.1 29484.472153: cpu_idle: state=4294967295 cpu_id=3
38123              ps-13725 (13725) [005] d..2 29484.472153: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38124              ps-13725 (13725) [005] dn.3 29484.472156: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38125              ps-13725 (13725) [005] d..2 29484.472159: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38126          <idle>-0     (-----) [003] d..2 29484.472160: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38127 shell svc 13722-13723 ( 1007) [005] d..2 29484.472167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38128            adbd-1007  ( 1007) [000] d..2 29484.472179: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38129          <idle>-0     (-----) [000] d..1 29484.472187: cpu_idle: state=0 cpu_id=0
38130            adbd-23485 ( 1007) [003] d..2 29484.472201: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38131          <idle>-0     (-----) [003] d..1 29484.472206: cpu_idle: state=0 cpu_id=3
38132          <idle>-0     (-----) [000] d.h3 29484.472208: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38133          <idle>-0     (-----) [000] dnh4 29484.472215: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38134          <idle>-0     (-----) [000] .n.1 29484.472220: cpu_idle: state=4294967295 cpu_id=0
38135              ps-13725 (13725) [005] d..2 29484.472221: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38136              ps-13725 (13725) [005] dn.3 29484.472224: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38137          <idle>-0     (-----) [000] d..2 29484.472226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38138              ps-13725 (13725) [005] d..2 29484.472227: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38139   kworker/u17:2-23076 (23076) [000] d..2 29484.472233: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38140 shell svc 13722-13723 ( 1007) [005] d..2 29484.472234: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38141   kworker/u17:2-23076 (23076) [000] d..3 29484.472238: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38142   kworker/u17:2-23076 (23076) [000] d..2 29484.472254: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38143     kworker/0:0-13450 (13450) [000] d..2 29484.472259: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38144     kworker/0:0-13450 (13450) [000] d..3 29484.472268: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38145          <idle>-0     (-----) [003] .n.1 29484.472273: cpu_idle: state=4294967295 cpu_id=3
38146     kworker/0:0-13450 (13450) [000] d..2 29484.472276: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38147          <idle>-0     (-----) [003] d..2 29484.472279: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38148          <idle>-0     (-----) [000] d..1 29484.472282: cpu_idle: state=0 cpu_id=0
38149              ps-13725 (13725) [005] d..2 29484.472287: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38150              ps-13725 (13725) [005] dn.3 29484.472290: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38151              ps-13725 (13725) [005] d..2 29484.472292: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38152 shell svc 13722-13723 ( 1007) [005] d..2 29484.472299: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38153            adbd-23485 ( 1007) [003] d..2 29484.472320: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38154          <idle>-0     (-----) [003] d..1 29484.472326: cpu_idle: state=0 cpu_id=3
38155              ps-13725 (13725) [005] d..2 29484.472355: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38156              ps-13725 (13725) [005] dn.3 29484.472358: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38157              ps-13725 (13725) [005] d..2 29484.472360: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38158          <idle>-0     (-----) [000] d.h3 29484.472363: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38159 shell svc 13722-13723 ( 1007) [005] d..2 29484.472367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38160          <idle>-0     (-----) [000] dnh4 29484.472368: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38161          <idle>-0     (-----) [000] .n.1 29484.472373: cpu_idle: state=4294967295 cpu_id=0
38162          <idle>-0     (-----) [000] d..2 29484.472378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38163   kworker/u17:2-23076 (23076) [000] d..2 29484.472384: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38164   kworker/u17:2-23076 (23076) [000] d..3 29484.472389: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38165   kworker/u17:2-23076 (23076) [000] d..2 29484.472405: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38166     kworker/0:0-13450 (13450) [000] d..2 29484.472410: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38167     kworker/0:0-13450 (13450) [000] d..3 29484.472418: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38168              ps-13725 (13725) [005] d..2 29484.472420: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38169          <idle>-0     (-----) [003] .n.1 29484.472423: cpu_idle: state=4294967295 cpu_id=3
38170              ps-13725 (13725) [005] dn.3 29484.472424: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38171     kworker/0:0-13450 (13450) [000] d..2 29484.472426: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38172              ps-13725 (13725) [005] d..2 29484.472426: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38173          <idle>-0     (-----) [003] d..2 29484.472428: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38174          <idle>-0     (-----) [000] d..1 29484.472432: cpu_idle: state=0 cpu_id=0
38175 shell svc 13722-13723 ( 1007) [005] d..2 29484.472433: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38176            adbd-23485 ( 1007) [003] d..2 29484.472444: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38177          <idle>-0     (-----) [003] d..1 29484.472449: cpu_idle: state=0 cpu_id=3
38178              ps-13725 (13725) [005] d..2 29484.472490: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38179              ps-13725 (13725) [005] dn.3 29484.472493: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38180              ps-13725 (13725) [005] d..2 29484.472495: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38181 shell svc 13722-13723 ( 1007) [005] d..2 29484.472502: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38182          <idle>-0     (-----) [000] d.h3 29484.472544: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38183          <idle>-0     (-----) [000] dnh4 29484.472553: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38184          <idle>-0     (-----) [000] .n.1 29484.472557: cpu_idle: state=4294967295 cpu_id=0
38185              ps-13725 (13725) [005] d..2 29484.472558: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38186              ps-13725 (13725) [005] dn.3 29484.472561: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38187          <idle>-0     (-----) [000] d..2 29484.472563: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38188              ps-13725 (13725) [005] d..2 29484.472563: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38189   kworker/u17:2-23076 (23076) [000] d..2 29484.472569: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38190 shell svc 13722-13723 ( 1007) [005] d..2 29484.472570: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38191   kworker/u17:2-23076 (23076) [000] d..3 29484.472574: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38192   kworker/u17:2-23076 (23076) [000] d..2 29484.472588: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38193     kworker/0:0-13450 (13450) [000] d..2 29484.472594: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38194     kworker/0:0-13450 (13450) [000] d..3 29484.472602: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38195     kworker/0:0-13450 (13450) [000] d..2 29484.472609: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38196            adbd-23484 ( 1007) [000] d..2 29484.472620: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38197            adbd-23484 ( 1007) [000] d..3 29484.472625: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38198              ps-13725 (13725) [005] d..2 29484.472626: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38199              ps-13725 (13725) [005] dn.3 29484.472629: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38200              ps-13725 (13725) [005] d..2 29484.472632: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38201 shell svc 13722-13723 ( 1007) [005] d..2 29484.472639: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38202            adbd-23484 ( 1007) [000] d..2 29484.472665: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38203              ps-13725 (13725) [005] d..2 29484.472692: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38204              ps-13725 (13725) [005] dn.3 29484.472696: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38205              ps-13725 (13725) [005] d..2 29484.472698: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38206 shell svc 13722-13723 ( 1007) [005] d..2 29484.472705: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38207            adbd-1007  ( 1007) [000] d..1 29484.472724: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38208            adbd-1007  ( 1007) [000] d..2 29484.472738: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38209          <idle>-0     (-----) [003] .n.1 29484.472742: cpu_idle: state=4294967295 cpu_id=3
38210          <idle>-0     (-----) [003] d..2 29484.472748: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38211              ps-13725 (13725) [005] d..2 29484.472757: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38212              ps-13725 (13725) [005] dn.3 29484.472760: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38213              ps-13725 (13725) [005] d..2 29484.472762: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38214            adbd-1007  ( 1007) [000] d..2 29484.472769: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38215 shell svc 13722-13723 ( 1007) [005] d..2 29484.472770: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38216          <idle>-0     (-----) [000] d..1 29484.472778: cpu_idle: state=0 cpu_id=0
38217            adbd-23485 ( 1007) [003] d..2 29484.472789: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38218          <idle>-0     (-----) [003] d..1 29484.472796: cpu_idle: state=0 cpu_id=3
38219          <idle>-0     (-----) [000] d.h3 29484.472811: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38220          <idle>-0     (-----) [000] dnh4 29484.472817: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38221          <idle>-0     (-----) [000] .n.1 29484.472822: cpu_idle: state=4294967295 cpu_id=0
38222              ps-13725 (13725) [005] d..2 29484.472822: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38223              ps-13725 (13725) [005] dn.3 29484.472826: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38224          <idle>-0     (-----) [000] d..2 29484.472827: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38225              ps-13725 (13725) [005] d..2 29484.472828: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38226   kworker/u17:2-23076 (23076) [000] d..2 29484.472835: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38227 shell svc 13722-13723 ( 1007) [005] d..2 29484.472836: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38228   kworker/u17:2-23076 (23076) [000] d..3 29484.472840: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38229   kworker/u17:2-23076 (23076) [000] d..2 29484.472855: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38230     kworker/0:0-13450 (13450) [000] d..2 29484.472861: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38231     kworker/0:0-13450 (13450) [000] d..3 29484.472869: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38232          <idle>-0     (-----) [003] .n.1 29484.472874: cpu_idle: state=4294967295 cpu_id=3
38233     kworker/0:0-13450 (13450) [000] d..2 29484.472877: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38234          <idle>-0     (-----) [003] d..2 29484.472880: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38235          <idle>-0     (-----) [000] d..1 29484.472883: cpu_idle: state=0 cpu_id=0
38236              ps-13725 (13725) [005] d..2 29484.472889: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38237              ps-13725 (13725) [005] dn.3 29484.472892: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38238              ps-13725 (13725) [005] d..2 29484.472895: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38239 shell svc 13722-13723 ( 1007) [005] d..2 29484.472902: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38240            adbd-23485 ( 1007) [003] d..2 29484.472922: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38241          <idle>-0     (-----) [003] d..1 29484.472928: cpu_idle: state=0 cpu_id=3
38242              ps-13725 (13725) [005] d..2 29484.472956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38243              ps-13725 (13725) [005] dn.3 29484.472960: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38244          <idle>-0     (-----) [000] d.h3 29484.472961: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38245              ps-13725 (13725) [005] d..2 29484.472962: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38246          <idle>-0     (-----) [000] dnh4 29484.472966: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38247 shell svc 13722-13723 ( 1007) [005] d..2 29484.472969: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38248          <idle>-0     (-----) [000] .n.1 29484.472971: cpu_idle: state=4294967295 cpu_id=0
38249          <idle>-0     (-----) [000] d..2 29484.472977: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38250   kworker/u17:2-23076 (23076) [000] d..2 29484.472983: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38251   kworker/u17:2-23076 (23076) [000] d..3 29484.472988: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38252   kworker/u17:2-23076 (23076) [000] d..2 29484.473003: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38253     kworker/0:0-13450 (13450) [000] d..2 29484.473009: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38254     kworker/0:0-13450 (13450) [000] d..3 29484.473017: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38255          <idle>-0     (-----) [003] .n.1 29484.473022: cpu_idle: state=4294967295 cpu_id=3
38256              ps-13725 (13725) [005] d..2 29484.473023: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38257     kworker/0:0-13450 (13450) [000] d..2 29484.473024: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38258              ps-13725 (13725) [005] dn.3 29484.473025: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38259          <idle>-0     (-----) [003] d..2 29484.473027: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38260              ps-13725 (13725) [005] d..2 29484.473028: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38261          <idle>-0     (-----) [000] d..1 29484.473031: cpu_idle: state=0 cpu_id=0
38262 shell svc 13722-13723 ( 1007) [005] d..2 29484.473035: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38263            adbd-23485 ( 1007) [003] d..2 29484.473042: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38264          <idle>-0     (-----) [003] d..1 29484.473047: cpu_idle: state=0 cpu_id=3
38265              ps-13725 (13725) [005] d..2 29484.473092: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38266              ps-13725 (13725) [005] dn.3 29484.473096: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38267              ps-13725 (13725) [005] d..2 29484.473098: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38268 shell svc 13722-13723 ( 1007) [005] d..2 29484.473105: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38269          <idle>-0     (-----) [000] d.h3 29484.473137: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38270          <idle>-0     (-----) [000] dnh4 29484.473142: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38271          <idle>-0     (-----) [000] .n.1 29484.473146: cpu_idle: state=4294967295 cpu_id=0
38272          <idle>-0     (-----) [000] d..2 29484.473152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38273   kworker/u17:2-23076 (23076) [000] d..2 29484.473157: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38274              ps-13725 (13725) [005] d..2 29484.473160: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38275   kworker/u17:2-23076 (23076) [000] d..3 29484.473162: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38276              ps-13725 (13725) [005] dn.3 29484.473163: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38277              ps-13725 (13725) [005] d..2 29484.473165: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38278 shell svc 13722-13723 ( 1007) [005] d..2 29484.473172: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38279   kworker/u17:2-23076 (23076) [000] d..2 29484.473176: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38280     kworker/0:0-13450 (13450) [000] d..2 29484.473182: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38281     kworker/0:0-13450 (13450) [000] d..3 29484.473190: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38282     kworker/0:0-13450 (13450) [000] d..2 29484.473198: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38283            adbd-23484 ( 1007) [000] d..2 29484.473208: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38284            adbd-23484 ( 1007) [000] d..3 29484.473214: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38285              ps-13725 (13725) [005] d..2 29484.473224: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38286              ps-13725 (13725) [005] dn.3 29484.473227: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38287              ps-13725 (13725) [005] d..2 29484.473229: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38288 shell svc 13722-13723 ( 1007) [005] d..2 29484.473236: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38289            adbd-23484 ( 1007) [000] d..2 29484.473253: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38290              ps-13725 (13725) [005] d..2 29484.473289: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38291              ps-13725 (13725) [005] dn.3 29484.473292: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38292              ps-13725 (13725) [005] d..2 29484.473294: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38293 shell svc 13722-13723 ( 1007) [005] d..2 29484.473301: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38294            adbd-1007  ( 1007) [000] d..1 29484.473312: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38295            adbd-1007  ( 1007) [000] d..2 29484.473323: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38296          <idle>-0     (-----) [003] .n.1 29484.473327: cpu_idle: state=4294967295 cpu_id=3
38297          <idle>-0     (-----) [003] d..2 29484.473333: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38298            adbd-1007  ( 1007) [000] d..2 29484.473354: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38299              ps-13725 (13725) [005] d..2 29484.473354: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38300              ps-13725 (13725) [005] dn.3 29484.473357: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38301              ps-13725 (13725) [005] d..2 29484.473359: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38302          <idle>-0     (-----) [000] d..1 29484.473362: cpu_idle: state=0 cpu_id=0
38303 shell svc 13722-13723 ( 1007) [005] d..2 29484.473367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38304            adbd-23485 ( 1007) [003] d..2 29484.473375: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38305          <idle>-0     (-----) [003] d..1 29484.473381: cpu_idle: state=0 cpu_id=3
38306          <idle>-0     (-----) [000] d.h3 29484.473396: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38307          <idle>-0     (-----) [000] dnh4 29484.473401: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38308          <idle>-0     (-----) [000] .n.1 29484.473407: cpu_idle: state=4294967295 cpu_id=0
38309          <idle>-0     (-----) [000] d..2 29484.473412: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38310   kworker/u17:2-23076 (23076) [000] d..2 29484.473419: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38311              ps-13725 (13725) [005] d..2 29484.473425: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38312   kworker/u17:2-23076 (23076) [000] d..3 29484.473425: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38313              ps-13725 (13725) [005] dn.3 29484.473427: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38314              ps-13725 (13725) [005] d..2 29484.473430: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38315 shell svc 13722-13723 ( 1007) [005] d..2 29484.473437: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38316   kworker/u17:2-23076 (23076) [000] d..2 29484.473440: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38317     kworker/0:0-13450 (13450) [000] d..2 29484.473445: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38318     kworker/0:0-13450 (13450) [000] d..3 29484.473453: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38319          <idle>-0     (-----) [003] .n.1 29484.473458: cpu_idle: state=4294967295 cpu_id=3
38320     kworker/0:0-13450 (13450) [000] d..2 29484.473462: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38321          <idle>-0     (-----) [003] d..2 29484.473464: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38322          <idle>-0     (-----) [000] d..1 29484.473468: cpu_idle: state=0 cpu_id=0
38323              ps-13725 (13725) [005] d..2 29484.473492: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38324              ps-13725 (13725) [005] dn.3 29484.473495: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38325              ps-13725 (13725) [005] d..2 29484.473497: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38326 shell svc 13722-13723 ( 1007) [005] d..2 29484.473504: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38327            adbd-23485 ( 1007) [003] d..2 29484.473506: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38328          <idle>-0     (-----) [003] d..1 29484.473511: cpu_idle: state=0 cpu_id=3
38329          <idle>-0     (-----) [000] d.h3 29484.473531: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38330          <idle>-0     (-----) [000] dnh4 29484.473537: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38331          <idle>-0     (-----) [000] .n.1 29484.473541: cpu_idle: state=4294967295 cpu_id=0
38332          <idle>-0     (-----) [000] d..2 29484.473547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38333   kworker/u17:2-23076 (23076) [000] d..2 29484.473553: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38334   kworker/u17:2-23076 (23076) [000] d..3 29484.473557: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38335              ps-13725 (13725) [005] d..2 29484.473562: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38336              ps-13725 (13725) [005] dn.3 29484.473565: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38337              ps-13725 (13725) [005] d..2 29484.473568: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38338   kworker/u17:2-23076 (23076) [000] d..2 29484.473572: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38339 shell svc 13722-13723 ( 1007) [005] d..2 29484.473575: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38340     kworker/0:0-13450 (13450) [000] d..2 29484.473577: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38341     kworker/0:0-13450 (13450) [000] d..3 29484.473585: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38342          <idle>-0     (-----) [003] .n.1 29484.473590: cpu_idle: state=4294967295 cpu_id=3
38343     kworker/0:0-13450 (13450) [000] d..2 29484.473593: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38344          <idle>-0     (-----) [003] d..2 29484.473596: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38345          <idle>-0     (-----) [000] d..1 29484.473599: cpu_idle: state=0 cpu_id=0
38346            adbd-23485 ( 1007) [003] d..2 29484.473610: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38347          <idle>-0     (-----) [003] d..1 29484.473615: cpu_idle: state=0 cpu_id=3
38348              ps-13725 (13725) [005] d..2 29484.473632: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38349              ps-13725 (13725) [005] dn.3 29484.473635: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38350              ps-13725 (13725) [005] d..2 29484.473637: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38351 shell svc 13722-13723 ( 1007) [005] d..2 29484.473644: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38352          <idle>-0     (-----) [000] d.h3 29484.473682: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38353          <idle>-0     (-----) [000] dnh4 29484.473687: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38354          <idle>-0     (-----) [000] .n.1 29484.473691: cpu_idle: state=4294967295 cpu_id=0
38355          <idle>-0     (-----) [000] d..2 29484.473696: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38356              ps-13725 (13725) [005] d..2 29484.473699: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38357              ps-13725 (13725) [005] dn.3 29484.473702: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38358   kworker/u17:2-23076 (23076) [000] d..2 29484.473702: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38359              ps-13725 (13725) [005] d..2 29484.473704: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38360   kworker/u17:2-23076 (23076) [000] d..3 29484.473707: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38361 shell svc 13722-13723 ( 1007) [005] d..2 29484.473711: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38362   kworker/u17:2-23076 (23076) [000] d..2 29484.473723: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38363     kworker/0:0-13450 (13450) [000] d.s4 29484.473739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
38364     kworker/0:0-13450 (13450) [000] d.s5 29484.473759: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
38365     kworker/0:0-13450 (13450) [000] d..2 29484.473767: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38366     kworker/0:0-13450 (13450) [000] d..3 29484.473774: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38367              ps-13725 (13725) [005] d..2 29484.473776: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38368              ps-13725 (13725) [005] dn.3 29484.473780: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38369     kworker/0:0-13450 (13450) [000] d..2 29484.473782: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38370              ps-13725 (13725) [005] d..2 29484.473782: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38371     rcu_preempt-7     (    7) [000] d..2 29484.473786: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
38372 shell svc 13722-13723 ( 1007) [005] d..2 29484.473789: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38373     rcu_preempt-7     (    7) [000] d..3 29484.473794: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
38374     rcu_preempt-7     (    7) [000] d..2 29484.473799: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
38375         rcuop/4-45    (   45) [000] d..2 29484.473803: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
38376         rcuop/4-45    (   45) [000] d..3 29484.473814: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
38377         rcuop/4-45    (   45) [000] d..2 29484.473817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
38378         rcuop/4-45    (   45) [000] d..3 29484.473823: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
38379         rcuop/4-45    (   45) [000] d..2 29484.473828: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
38380         rcuop/5-53    (   53) [000] d..2 29484.473838: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38381     rcu_preempt-7     (    7) [000] d..2 29484.473844: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38382              ps-13725 (13725) [005] d..2 29484.473848: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38383              ps-13725 (13725) [005] dn.3 29484.473851: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38384              ps-13725 (13725) [005] d..2 29484.473853: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38385            adbd-23484 ( 1007) [000] d..2 29484.473854: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38386            adbd-23484 ( 1007) [000] d..3 29484.473860: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38387 shell svc 13722-13723 ( 1007) [005] d..2 29484.473861: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38388            adbd-23484 ( 1007) [000] d..2 29484.473900: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38389              ps-13725 (13725) [005] d..2 29484.473915: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38390              ps-13725 (13725) [005] dn.3 29484.473918: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38391              ps-13725 (13725) [005] d..2 29484.473920: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38392 shell svc 13722-13723 ( 1007) [005] d..2 29484.473928: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38393            adbd-1007  ( 1007) [000] d..1 29484.473960: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38394            adbd-1007  ( 1007) [000] d..2 29484.473971: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38395          <idle>-0     (-----) [003] .n.1 29484.473975: cpu_idle: state=4294967295 cpu_id=3
38396          <idle>-0     (-----) [003] d..2 29484.473982: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38397              ps-13725 (13725) [005] d..2 29484.473983: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38398              ps-13725 (13725) [005] dn.3 29484.473986: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38399              ps-13725 (13725) [005] d..2 29484.473988: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38400 shell svc 13722-13723 ( 1007) [005] d..2 29484.473996: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38401            adbd-1007  ( 1007) [000] d..2 29484.473996: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38402          <idle>-0     (-----) [000] d..1 29484.474004: cpu_idle: state=0 cpu_id=0
38403            adbd-23485 ( 1007) [003] d..2 29484.474026: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38404          <idle>-0     (-----) [003] d..1 29484.474033: cpu_idle: state=0 cpu_id=3
38405          <idle>-0     (-----) [000] d.h3 29484.474042: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38406          <idle>-0     (-----) [000] dnh4 29484.474047: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38407              ps-13725 (13725) [005] d..2 29484.474050: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38408          <idle>-0     (-----) [000] .n.1 29484.474052: cpu_idle: state=4294967295 cpu_id=0
38409              ps-13725 (13725) [005] dn.3 29484.474053: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38410              ps-13725 (13725) [005] d..2 29484.474055: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38411          <idle>-0     (-----) [000] d..2 29484.474058: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38412 shell svc 13722-13723 ( 1007) [005] d..2 29484.474062: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38413   kworker/u17:2-23076 (23076) [000] d..2 29484.474066: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38414   kworker/u17:2-23076 (23076) [000] d..3 29484.474071: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38415   kworker/u17:2-23076 (23076) [000] d..2 29484.474087: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38416     kworker/0:0-13450 (13450) [000] d..2 29484.474092: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38417     kworker/0:0-13450 (13450) [000] d..3 29484.474100: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38418          <idle>-0     (-----) [003] .n.1 29484.474106: cpu_idle: state=4294967295 cpu_id=3
38419     kworker/0:0-13450 (13450) [000] d..2 29484.474108: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38420          <idle>-0     (-----) [003] d..2 29484.474112: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38421          <idle>-0     (-----) [000] d..1 29484.474114: cpu_idle: state=0 cpu_id=0
38422              ps-13725 (13725) [005] d..2 29484.474117: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38423              ps-13725 (13725) [005] dn.3 29484.474119: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38424              ps-13725 (13725) [005] d..2 29484.474122: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38425 shell svc 13722-13723 ( 1007) [005] d..2 29484.474129: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38426            adbd-23485 ( 1007) [003] d..2 29484.474154: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38427          <idle>-0     (-----) [003] d..1 29484.474160: cpu_idle: state=0 cpu_id=3
38428          <idle>-0     (-----) [000] d.h3 29484.474177: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38429              ps-13725 (13725) [005] d..2 29484.474181: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38430          <idle>-0     (-----) [000] dnh4 29484.474182: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38431              ps-13725 (13725) [005] dn.3 29484.474184: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38432          <idle>-0     (-----) [000] .n.1 29484.474186: cpu_idle: state=4294967295 cpu_id=0
38433              ps-13725 (13725) [005] d..2 29484.474187: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38434          <idle>-0     (-----) [000] d..2 29484.474192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38435 shell svc 13722-13723 ( 1007) [005] d..2 29484.474193: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38436   kworker/u17:2-23076 (23076) [000] d..2 29484.474199: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38437   kworker/u17:2-23076 (23076) [000] d..3 29484.474204: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38438   kworker/u17:2-23076 (23076) [000] d..2 29484.474218: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38439     kworker/0:0-13450 (13450) [000] d..2 29484.474223: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38440     kworker/0:0-13450 (13450) [000] d..3 29484.474231: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38441          <idle>-0     (-----) [003] .n.1 29484.474236: cpu_idle: state=4294967295 cpu_id=3
38442     kworker/0:0-13450 (13450) [000] d..2 29484.474239: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38443          <idle>-0     (-----) [003] d..2 29484.474241: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38444          <idle>-0     (-----) [000] d..1 29484.474244: cpu_idle: state=0 cpu_id=0
38445              ps-13725 (13725) [005] d..2 29484.474247: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38446              ps-13725 (13725) [005] dn.3 29484.474250: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38447              ps-13725 (13725) [005] d..2 29484.474253: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38448            adbd-23485 ( 1007) [003] d..2 29484.474256: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38449 shell svc 13722-13723 ( 1007) [005] d..2 29484.474260: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38450          <idle>-0     (-----) [003] d..1 29484.474262: cpu_idle: state=0 cpu_id=3
38451              ps-13725 (13725) [005] d..2 29484.474319: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38452              ps-13725 (13725) [005] dn.3 29484.474322: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38453              ps-13725 (13725) [005] d..2 29484.474324: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38454 shell svc 13722-13723 ( 1007) [005] d..2 29484.474331: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38455          <idle>-0     (-----) [000] d.h3 29484.474356: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38456          <idle>-0     (-----) [000] dnh4 29484.474362: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38457          <idle>-0     (-----) [000] .n.1 29484.474366: cpu_idle: state=4294967295 cpu_id=0
38458          <idle>-0     (-----) [000] d..2 29484.474372: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38459   kworker/u17:2-23076 (23076) [000] d..2 29484.474377: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38460   kworker/u17:2-23076 (23076) [000] d..3 29484.474382: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38461              ps-13725 (13725) [005] d..2 29484.474386: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38462              ps-13725 (13725) [005] dn.3 29484.474389: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38463              ps-13725 (13725) [005] d..2 29484.474391: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38464   kworker/u17:2-23076 (23076) [000] d..2 29484.474397: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38465 shell svc 13722-13723 ( 1007) [005] d..2 29484.474398: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38466     kworker/0:0-13450 (13450) [000] d..2 29484.474402: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38467     kworker/0:0-13450 (13450) [000] d..3 29484.474411: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38468     kworker/0:0-13450 (13450) [000] d..2 29484.474418: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38469            adbd-23484 ( 1007) [000] d..2 29484.474428: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38470            adbd-23484 ( 1007) [000] d..3 29484.474434: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38471              ps-13725 (13725) [005] d..2 29484.474452: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38472              ps-13725 (13725) [005] dn.3 29484.474455: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38473              ps-13725 (13725) [005] d..2 29484.474457: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38474 shell svc 13722-13723 ( 1007) [005] d..2 29484.474464: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38475            adbd-23484 ( 1007) [000] d..2 29484.474475: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38476              ps-13725 (13725) [005] d..2 29484.474519: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38477              ps-13725 (13725) [005] dn.3 29484.474522: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38478              ps-13725 (13725) [005] d..2 29484.474525: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38479 shell svc 13722-13723 ( 1007) [005] d..2 29484.474532: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38480            adbd-1007  ( 1007) [000] d..1 29484.474536: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38481            adbd-1007  ( 1007) [000] d..2 29484.474547: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38482          <idle>-0     (-----) [003] .n.1 29484.474551: cpu_idle: state=4294967295 cpu_id=3
38483          <idle>-0     (-----) [003] d..2 29484.474557: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38484            adbd-1007  ( 1007) [000] d..2 29484.474572: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38485          <idle>-0     (-----) [000] d..1 29484.474580: cpu_idle: state=0 cpu_id=0
38486              ps-13725 (13725) [005] d..2 29484.474585: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38487              ps-13725 (13725) [005] dn.3 29484.474588: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38488              ps-13725 (13725) [005] d..2 29484.474590: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38489 shell svc 13722-13723 ( 1007) [005] d..2 29484.474598: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38490            adbd-23485 ( 1007) [003] d..2 29484.474600: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38491          <idle>-0     (-----) [003] d..1 29484.474607: cpu_idle: state=0 cpu_id=3
38492          <idle>-0     (-----) [000] d.h3 29484.474624: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38493          <idle>-0     (-----) [000] dnh4 29484.474633: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38494          <idle>-0     (-----) [000] .n.1 29484.474637: cpu_idle: state=4294967295 cpu_id=0
38495          <idle>-0     (-----) [000] d..2 29484.474643: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38496   kworker/u17:2-23076 (23076) [000] d..2 29484.474652: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38497   kworker/u17:2-23076 (23076) [000] d..3 29484.474656: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38498              ps-13725 (13725) [005] d..2 29484.474659: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38499              ps-13725 (13725) [005] dn.3 29484.474662: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38500              ps-13725 (13725) [005] d..2 29484.474664: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38501 shell svc 13722-13723 ( 1007) [005] d..2 29484.474671: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38502   kworker/u17:2-23076 (23076) [000] d..2 29484.474673: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38503     kworker/0:0-13450 (13450) [000] d..2 29484.474678: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38504     kworker/0:0-13450 (13450) [000] d..3 29484.474686: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38505          <idle>-0     (-----) [003] .n.1 29484.474691: cpu_idle: state=4294967295 cpu_id=3
38506     kworker/0:0-13450 (13450) [000] d..2 29484.474694: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38507          <idle>-0     (-----) [003] d..2 29484.474697: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38508          <idle>-0     (-----) [000] d..1 29484.474699: cpu_idle: state=0 cpu_id=0
38509              ps-13725 (13725) [005] d..2 29484.474725: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38510              ps-13725 (13725) [005] dn.3 29484.474728: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38511              ps-13725 (13725) [005] d..2 29484.474730: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38512 shell svc 13722-13723 ( 1007) [005] d..2 29484.474737: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38513            adbd-23485 ( 1007) [003] d..2 29484.474739: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38514          <idle>-0     (-----) [003] d..1 29484.474745: cpu_idle: state=0 cpu_id=3
38515          <idle>-0     (-----) [000] d.h3 29484.474782: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38516          <idle>-0     (-----) [000] dnh4 29484.474787: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38517          <idle>-0     (-----) [000] .n.1 29484.474791: cpu_idle: state=4294967295 cpu_id=0
38518              ps-13725 (13725) [005] d..2 29484.474792: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38519              ps-13725 (13725) [005] dn.3 29484.474794: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38520          <idle>-0     (-----) [000] d..2 29484.474797: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38521              ps-13725 (13725) [005] d..2 29484.474797: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38522   kworker/u17:2-23076 (23076) [000] d..2 29484.474803: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38523 shell svc 13722-13723 ( 1007) [005] d..2 29484.474804: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38524   kworker/u17:2-23076 (23076) [000] d..3 29484.474808: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38525   kworker/u17:2-23076 (23076) [000] d..2 29484.474823: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38526     kworker/0:0-13450 (13450) [000] d..2 29484.474828: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38527     kworker/0:0-13450 (13450) [000] d..3 29484.474839: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38528          <idle>-0     (-----) [003] .n.1 29484.474844: cpu_idle: state=4294967295 cpu_id=3
38529     kworker/0:0-13450 (13450) [000] d..2 29484.474846: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38530          <idle>-0     (-----) [003] d..2 29484.474850: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38531          <idle>-0     (-----) [000] d..1 29484.474852: cpu_idle: state=0 cpu_id=0
38532              ps-13725 (13725) [005] d..2 29484.474859: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38533              ps-13725 (13725) [005] dn.3 29484.474863: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38534              ps-13725 (13725) [005] d..2 29484.474865: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38535            adbd-23485 ( 1007) [003] d..2 29484.474866: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38536 shell svc 13722-13723 ( 1007) [005] d..2 29484.474872: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38537          <idle>-0     (-----) [003] d..1 29484.474872: cpu_idle: state=0 cpu_id=3
38538              ps-13725 (13725) [005] d..2 29484.474933: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38539              ps-13725 (13725) [005] dn.3 29484.474936: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38540              ps-13725 (13725) [005] d..2 29484.474938: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38541 shell svc 13722-13723 ( 1007) [005] d..2 29484.474946: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38542          <idle>-0     (-----) [000] d.h3 29484.474956: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38543          <idle>-0     (-----) [000] dnh4 29484.474961: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38544          <idle>-0     (-----) [000] .n.1 29484.474965: cpu_idle: state=4294967295 cpu_id=0
38545          <idle>-0     (-----) [000] d..2 29484.474971: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38546   kworker/u17:2-23076 (23076) [000] d..2 29484.474977: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38547   kworker/u17:2-23076 (23076) [000] d..3 29484.474981: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38548   kworker/u17:2-23076 (23076) [000] d..2 29484.474996: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38549              ps-13725 (13725) [005] d..2 29484.474999: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38550     kworker/0:0-13450 (13450) [000] d..2 29484.475002: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38551              ps-13725 (13725) [005] dn.3 29484.475002: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38552              ps-13725 (13725) [005] d..2 29484.475004: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38553     kworker/0:0-13450 (13450) [000] d..3 29484.475009: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38554 shell svc 13722-13723 ( 1007) [005] d..2 29484.475011: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38555     kworker/0:0-13450 (13450) [000] d..2 29484.475017: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38556            adbd-23484 ( 1007) [000] d..2 29484.475032: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38557            adbd-23484 ( 1007) [000] d..3 29484.475038: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38558              ps-13725 (13725) [005] d..2 29484.475066: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38559              ps-13725 (13725) [005] dn.3 29484.475069: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38560              ps-13725 (13725) [005] d..2 29484.475071: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38561 shell svc 13722-13723 ( 1007) [005] d..2 29484.475078: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38562            adbd-23484 ( 1007) [000] d..2 29484.475078: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38563              ps-13725 (13725) [005] d..2 29484.475132: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38564              ps-13725 (13725) [005] dn.3 29484.475134: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38565              ps-13725 (13725) [005] d..2 29484.475137: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38566            adbd-1007  ( 1007) [000] d..1 29484.475137: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38567 shell svc 13722-13723 ( 1007) [005] d..2 29484.475144: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38568            adbd-1007  ( 1007) [000] d..2 29484.475148: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38569          <idle>-0     (-----) [003] .n.1 29484.475153: cpu_idle: state=4294967295 cpu_id=3
38570          <idle>-0     (-----) [003] d..2 29484.475158: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38571            adbd-1007  ( 1007) [000] d..2 29484.475180: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38572          <idle>-0     (-----) [000] d..1 29484.475187: cpu_idle: state=0 cpu_id=0
38573              ps-13725 (13725) [005] d..2 29484.475198: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38574              ps-13725 (13725) [005] dn.3 29484.475201: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38575            adbd-23485 ( 1007) [003] d..2 29484.475201: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38576              ps-13725 (13725) [005] d..2 29484.475203: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38577          <idle>-0     (-----) [003] d..1 29484.475208: cpu_idle: state=0 cpu_id=3
38578 shell svc 13722-13723 ( 1007) [005] d..2 29484.475210: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38579          <idle>-0     (-----) [000] d.h3 29484.475226: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38580          <idle>-0     (-----) [000] dnh4 29484.475232: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38581          <idle>-0     (-----) [000] .n.1 29484.475237: cpu_idle: state=4294967295 cpu_id=0
38582          <idle>-0     (-----) [000] d..2 29484.475243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38583   kworker/u17:2-23076 (23076) [000] d..2 29484.475251: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38584   kworker/u17:2-23076 (23076) [000] d..3 29484.475256: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38585              ps-13725 (13725) [005] d..2 29484.475265: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38586              ps-13725 (13725) [005] dn.3 29484.475268: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38587              ps-13725 (13725) [005] d..2 29484.475271: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38588   kworker/u17:2-23076 (23076) [000] d..2 29484.475272: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38589     kworker/0:0-13450 (13450) [000] d..2 29484.475277: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38590 shell svc 13722-13723 ( 1007) [005] d..2 29484.475278: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38591     kworker/0:0-13450 (13450) [000] d..3 29484.475286: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38592          <idle>-0     (-----) [003] .n.1 29484.475291: cpu_idle: state=4294967295 cpu_id=3
38593     kworker/0:0-13450 (13450) [000] d..2 29484.475293: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38594          <idle>-0     (-----) [003] d..2 29484.475297: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38595          <idle>-0     (-----) [000] d..1 29484.475299: cpu_idle: state=0 cpu_id=0
38596              ps-13725 (13725) [005] d..2 29484.475331: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38597              ps-13725 (13725) [005] dn.3 29484.475334: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38598              ps-13725 (13725) [005] d..2 29484.475336: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38599            adbd-23485 ( 1007) [003] d..2 29484.475339: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38600 shell svc 13722-13723 ( 1007) [005] d..2 29484.475343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38601          <idle>-0     (-----) [003] d..1 29484.475345: cpu_idle: state=0 cpu_id=3
38602          <idle>-0     (-----) [000] d.h3 29484.475363: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38603          <idle>-0     (-----) [000] dnh4 29484.475368: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38604          <idle>-0     (-----) [000] .n.1 29484.475372: cpu_idle: state=4294967295 cpu_id=0
38605          <idle>-0     (-----) [000] d..2 29484.475378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38606   kworker/u17:2-23076 (23076) [000] d..2 29484.475384: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38607   kworker/u17:2-23076 (23076) [000] d..3 29484.475389: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38608              ps-13725 (13725) [005] d..2 29484.475396: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38609              ps-13725 (13725) [005] dn.3 29484.475399: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38610              ps-13725 (13725) [005] d..2 29484.475401: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38611   kworker/u17:2-23076 (23076) [000] d..2 29484.475404: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38612     kworker/0:0-13450 (13450) [000] d..2 29484.475408: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38613 shell svc 13722-13723 ( 1007) [005] d..2 29484.475408: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38614     kworker/0:0-13450 (13450) [000] d..3 29484.475417: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38615          <idle>-0     (-----) [003] .n.1 29484.475422: cpu_idle: state=4294967295 cpu_id=3
38616     kworker/0:0-13450 (13450) [000] d..2 29484.475424: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38617          <idle>-0     (-----) [003] d..2 29484.475428: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38618          <idle>-0     (-----) [000] d..1 29484.475430: cpu_idle: state=0 cpu_id=0
38619            adbd-23485 ( 1007) [003] d..2 29484.475444: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38620          <idle>-0     (-----) [003] d..1 29484.475450: cpu_idle: state=0 cpu_id=3
38621              ps-13725 (13725) [005] d..2 29484.475462: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38622              ps-13725 (13725) [005] dn.3 29484.475465: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38623              ps-13725 (13725) [005] d..2 29484.475468: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38624 shell svc 13722-13723 ( 1007) [005] d..2 29484.475475: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38625              ps-13725 (13725) [005] d..2 29484.475531: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38626              ps-13725 (13725) [005] dn.3 29484.475534: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38627              ps-13725 (13725) [005] d..2 29484.475536: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38628 shell svc 13722-13723 ( 1007) [005] d..2 29484.475543: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38629          <idle>-0     (-----) [000] d.h3 29484.475546: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38630          <idle>-0     (-----) [000] dnh4 29484.475551: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38631          <idle>-0     (-----) [000] .n.1 29484.475555: cpu_idle: state=4294967295 cpu_id=0
38632          <idle>-0     (-----) [000] d..2 29484.475560: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38633   kworker/u17:2-23076 (23076) [000] d..2 29484.475566: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38634   kworker/u17:2-23076 (23076) [000] d..3 29484.475571: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38635   kworker/u17:2-23076 (23076) [000] d..2 29484.475586: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38636     kworker/0:0-13450 (13450) [000] d..2 29484.475591: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38637              ps-13725 (13725) [005] d..2 29484.475597: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38638     kworker/0:0-13450 (13450) [000] d..3 29484.475600: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38639              ps-13725 (13725) [005] dn.3 29484.475600: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38640              ps-13725 (13725) [005] d..2 29484.475603: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38641     kworker/0:0-13450 (13450) [000] d..2 29484.475608: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38642 shell svc 13722-13723 ( 1007) [005] d..2 29484.475610: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38643            adbd-23484 ( 1007) [000] d..2 29484.475618: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38644            adbd-23484 ( 1007) [000] d..3 29484.475623: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38645            adbd-23484 ( 1007) [000] d..2 29484.475663: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38646              ps-13725 (13725) [005] d..2 29484.475663: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38647              ps-13725 (13725) [005] dn.3 29484.475666: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38648              ps-13725 (13725) [005] d..2 29484.475668: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38649 shell svc 13722-13723 ( 1007) [005] d..2 29484.475676: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38650            adbd-1007  ( 1007) [000] d..1 29484.475722: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38651              ps-13725 (13725) [005] d..2 29484.475730: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38652            adbd-1007  ( 1007) [000] d..2 29484.475733: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38653              ps-13725 (13725) [005] dn.3 29484.475733: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38654              ps-13725 (13725) [005] d..2 29484.475735: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38655          <idle>-0     (-----) [003] .n.1 29484.475737: cpu_idle: state=4294967295 cpu_id=3
38656          <idle>-0     (-----) [003] d..2 29484.475742: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38657 shell svc 13722-13723 ( 1007) [005] d..2 29484.475743: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38658            adbd-1007  ( 1007) [000] d..2 29484.475764: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38659          <idle>-0     (-----) [000] d..1 29484.475771: cpu_idle: state=0 cpu_id=0
38660            adbd-23485 ( 1007) [003] d..2 29484.475785: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38661          <idle>-0     (-----) [003] d..1 29484.475792: cpu_idle: state=0 cpu_id=3
38662              ps-13725 (13725) [005] d..2 29484.475796: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38663              ps-13725 (13725) [005] dn.3 29484.475799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38664              ps-13725 (13725) [005] d..2 29484.475801: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38665 shell svc 13722-13723 ( 1007) [005] d..2 29484.475808: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38666          <idle>-0     (-----) [000] d.h3 29484.475811: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38667          <idle>-0     (-----) [000] dnh4 29484.475817: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38668          <idle>-0     (-----) [000] .n.1 29484.475821: cpu_idle: state=4294967295 cpu_id=0
38669          <idle>-0     (-----) [000] d..2 29484.475828: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38670   kworker/u17:2-23076 (23076) [000] d..2 29484.475835: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38671   kworker/u17:2-23076 (23076) [000] d..3 29484.475841: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38672   kworker/u17:2-23076 (23076) [000] d..2 29484.475856: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38673     kworker/0:0-13450 (13450) [000] d..2 29484.475861: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38674              ps-13725 (13725) [005] d..2 29484.475863: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38675              ps-13725 (13725) [005] dn.3 29484.475866: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38676              ps-13725 (13725) [005] d..2 29484.475869: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38677     kworker/0:0-13450 (13450) [000] d..3 29484.475870: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38678          <idle>-0     (-----) [003] .n.1 29484.475875: cpu_idle: state=4294967295 cpu_id=3
38679 shell svc 13722-13723 ( 1007) [005] d..2 29484.475876: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38680     kworker/0:0-13450 (13450) [000] d..2 29484.475877: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38681          <idle>-0     (-----) [003] d..2 29484.475880: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38682          <idle>-0     (-----) [000] d..1 29484.475883: cpu_idle: state=0 cpu_id=0
38683            adbd-23485 ( 1007) [003] d..2 29484.475923: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38684              ps-13725 (13725) [005] d..2 29484.475929: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38685          <idle>-0     (-----) [003] d..1 29484.475929: cpu_idle: state=0 cpu_id=3
38686              ps-13725 (13725) [005] dn.3 29484.475933: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38687              ps-13725 (13725) [005] d..2 29484.475935: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38688 shell svc 13722-13723 ( 1007) [005] d..2 29484.475942: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38689          <idle>-0     (-----) [000] d.h3 29484.475960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38690          <idle>-0     (-----) [000] dnh4 29484.475966: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38691          <idle>-0     (-----) [000] .n.1 29484.475970: cpu_idle: state=4294967295 cpu_id=0
38692          <idle>-0     (-----) [000] d..2 29484.475976: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38693   kworker/u17:2-23076 (23076) [000] d..2 29484.475982: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38694   kworker/u17:2-23076 (23076) [000] d..3 29484.475986: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38695              ps-13725 (13725) [005] d..2 29484.475995: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38696              ps-13725 (13725) [005] dn.3 29484.475998: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38697              ps-13725 (13725) [005] d..2 29484.476001: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38698   kworker/u17:2-23076 (23076) [000] d..2 29484.476001: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38699     kworker/0:0-13450 (13450) [000] d..2 29484.476006: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38700 shell svc 13722-13723 ( 1007) [005] d..2 29484.476008: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38701     kworker/0:0-13450 (13450) [000] d..3 29484.476015: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38702          <idle>-0     (-----) [003] .n.1 29484.476020: cpu_idle: state=4294967295 cpu_id=3
38703     kworker/0:0-13450 (13450) [000] d..2 29484.476023: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38704          <idle>-0     (-----) [003] d..2 29484.476026: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38705          <idle>-0     (-----) [000] d..1 29484.476028: cpu_idle: state=0 cpu_id=0
38706            adbd-23485 ( 1007) [003] d..2 29484.476040: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38707          <idle>-0     (-----) [003] d..1 29484.476046: cpu_idle: state=0 cpu_id=3
38708              ps-13725 (13725) [005] d..2 29484.476064: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38709              ps-13725 (13725) [005] dn.3 29484.476067: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38710              ps-13725 (13725) [005] d..2 29484.476070: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38711 shell svc 13722-13723 ( 1007) [005] d..2 29484.476077: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38712              ps-13725 (13725) [005] d..2 29484.476133: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38713              ps-13725 (13725) [005] dn.3 29484.476136: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38714              ps-13725 (13725) [005] d..2 29484.476138: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38715 shell svc 13722-13723 ( 1007) [005] d..2 29484.476145: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38716          <idle>-0     (-----) [000] d.h3 29484.476148: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38717          <idle>-0     (-----) [000] dnh4 29484.476153: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38718          <idle>-0     (-----) [000] .n.1 29484.476157: cpu_idle: state=4294967295 cpu_id=0
38719          <idle>-0     (-----) [000] d..2 29484.476162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38720   kworker/u17:2-23076 (23076) [000] d..2 29484.476168: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38721   kworker/u17:2-23076 (23076) [000] d..3 29484.476173: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38722   kworker/u17:2-23076 (23076) [000] d..2 29484.476188: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38723     kworker/0:0-13450 (13450) [000] d..2 29484.476193: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38724              ps-13725 (13725) [005] d..2 29484.476200: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38725     kworker/0:0-13450 (13450) [000] d..3 29484.476201: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38726              ps-13725 (13725) [005] dn.3 29484.476203: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38727              ps-13725 (13725) [005] d..2 29484.476206: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38728     kworker/0:0-13450 (13450) [000] d..2 29484.476209: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38729 shell svc 13722-13723 ( 1007) [005] d..2 29484.476213: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38730            adbd-23484 ( 1007) [000] d..2 29484.476219: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38731            adbd-23484 ( 1007) [000] d..3 29484.476224: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38732            adbd-23484 ( 1007) [000] d..2 29484.476263: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38733              ps-13725 (13725) [005] d..2 29484.476269: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38734              ps-13725 (13725) [005] dn.3 29484.476272: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38735              ps-13725 (13725) [005] d..2 29484.476274: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38736 shell svc 13722-13723 ( 1007) [005] d..2 29484.476281: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38737            adbd-1007  ( 1007) [000] d..1 29484.476324: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38738              ps-13725 (13725) [005] d..2 29484.476334: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38739            adbd-1007  ( 1007) [000] d..2 29484.476336: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38740              ps-13725 (13725) [005] dn.3 29484.476337: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38741              ps-13725 (13725) [005] d..2 29484.476340: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38742          <idle>-0     (-----) [003] .n.1 29484.476341: cpu_idle: state=4294967295 cpu_id=3
38743          <idle>-0     (-----) [003] d..2 29484.476346: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38744 shell svc 13722-13723 ( 1007) [005] d..2 29484.476347: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38745            adbd-1007  ( 1007) [000] d..2 29484.476366: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38746          <idle>-0     (-----) [000] d..1 29484.476374: cpu_idle: state=0 cpu_id=0
38747            adbd-23485 ( 1007) [003] d..2 29484.476389: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38748          <idle>-0     (-----) [003] d..1 29484.476395: cpu_idle: state=0 cpu_id=3
38749              ps-13725 (13725) [005] d..2 29484.476400: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38750              ps-13725 (13725) [005] dn.3 29484.476403: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38751              ps-13725 (13725) [005] d..2 29484.476405: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38752 shell svc 13722-13723 ( 1007) [005] d..2 29484.476412: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38753          <idle>-0     (-----) [000] d.h3 29484.476416: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38754          <idle>-0     (-----) [000] dnh4 29484.476422: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38755          <idle>-0     (-----) [000] .n.1 29484.476426: cpu_idle: state=4294967295 cpu_id=0
38756          <idle>-0     (-----) [000] d..2 29484.476433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38757   kworker/u17:2-23076 (23076) [000] d..2 29484.476440: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38758   kworker/u17:2-23076 (23076) [000] d..3 29484.476445: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38759   kworker/u17:2-23076 (23076) [000] d..2 29484.476460: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38760     kworker/0:0-13450 (13450) [000] d..2 29484.476465: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38761              ps-13725 (13725) [005] d..2 29484.476467: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38762              ps-13725 (13725) [005] dn.3 29484.476470: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38763              ps-13725 (13725) [005] d..2 29484.476473: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38764     kworker/0:0-13450 (13450) [000] d..3 29484.476474: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38765          <idle>-0     (-----) [003] .n.1 29484.476479: cpu_idle: state=4294967295 cpu_id=3
38766 shell svc 13722-13723 ( 1007) [005] d..2 29484.476480: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38767          <idle>-0     (-----) [003] d..2 29484.476485: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38768     kworker/0:0-13450 (13450) [000] d..2 29484.476487: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38769          <idle>-0     (-----) [000] d..1 29484.476493: cpu_idle: state=0 cpu_id=0
38770            adbd-23485 ( 1007) [003] d..2 29484.476527: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38771              ps-13725 (13725) [005] d..2 29484.476534: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38772          <idle>-0     (-----) [003] d..1 29484.476534: cpu_idle: state=0 cpu_id=3
38773              ps-13725 (13725) [005] dn.3 29484.476536: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38774              ps-13725 (13725) [005] d..2 29484.476539: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38775 shell svc 13722-13723 ( 1007) [005] d..2 29484.476546: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38776          <idle>-0     (-----) [000] d.h3 29484.476558: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38777          <idle>-0     (-----) [000] dnh4 29484.476563: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38778          <idle>-0     (-----) [000] .n.1 29484.476568: cpu_idle: state=4294967295 cpu_id=0
38779          <idle>-0     (-----) [000] d..2 29484.476573: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38780   kworker/u17:2-23076 (23076) [000] d..2 29484.476579: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38781   kworker/u17:2-23076 (23076) [000] d..3 29484.476584: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38782   kworker/u17:2-23076 (23076) [000] d..2 29484.476599: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38783     kworker/0:0-13450 (13450) [000] d..2 29484.476604: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38784     kworker/0:0-13450 (13450) [000] d..3 29484.476613: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38785          <idle>-0     (-----) [003] .n.1 29484.476617: cpu_idle: state=4294967295 cpu_id=3
38786     kworker/0:0-13450 (13450) [000] d..2 29484.476620: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38787          <idle>-0     (-----) [003] d..2 29484.476624: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38788          <idle>-0     (-----) [000] d..1 29484.476625: cpu_idle: state=0 cpu_id=0
38789            adbd-23485 ( 1007) [003] d..2 29484.476639: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38790          <idle>-0     (-----) [003] d..1 29484.476645: cpu_idle: state=0 cpu_id=3
38791              ps-13725 (13725) [005] d..2 29484.476683: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38792              ps-13725 (13725) [005] dn.3 29484.476686: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38793              ps-13725 (13725) [005] d..2 29484.476688: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38794 shell svc 13722-13723 ( 1007) [005] d..2 29484.476696: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38795          <idle>-0     (-----) [000] d.h3 29484.476750: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38796          <idle>-0     (-----) [000] dnh4 29484.476758: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38797          <idle>-0     (-----) [000] .n.1 29484.476762: cpu_idle: state=4294967295 cpu_id=0
38798              ps-13725 (13725) [005] d..2 29484.476763: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38799              ps-13725 (13725) [005] dn.3 29484.476766: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38800          <idle>-0     (-----) [000] d..2 29484.476768: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38801              ps-13725 (13725) [005] d..2 29484.476768: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38802   kworker/u17:2-23076 (23076) [000] d..2 29484.476773: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38803 shell svc 13722-13723 ( 1007) [005] d..2 29484.476776: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38804   kworker/u17:2-23076 (23076) [000] d..3 29484.476778: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38805   kworker/u17:2-23076 (23076) [000] d..2 29484.476793: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38806     kworker/0:0-13450 (13450) [000] d..2 29484.476798: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38807     kworker/0:0-13450 (13450) [000] d..3 29484.476806: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38808     kworker/0:0-13450 (13450) [000] d..2 29484.476813: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38809            adbd-23484 ( 1007) [000] d..2 29484.476823: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38810            adbd-23484 ( 1007) [000] d..3 29484.476828: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38811            adbd-23484 ( 1007) [000] d..2 29484.476869: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38812              ps-13725 (13725) [005] d..2 29484.476879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38813              ps-13725 (13725) [005] dn.3 29484.476882: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38814              ps-13725 (13725) [005] d..2 29484.476884: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38815 shell svc 13722-13723 ( 1007) [005] d..2 29484.476892: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38816            adbd-1007  ( 1007) [000] d..1 29484.476926: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38817            adbd-1007  ( 1007) [000] d..2 29484.476940: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38818          <idle>-0     (-----) [003] .n.1 29484.476944: cpu_idle: state=4294967295 cpu_id=3
38819              ps-13725 (13725) [005] d..2 29484.476949: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38820          <idle>-0     (-----) [003] d..2 29484.476950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38821              ps-13725 (13725) [005] dn.3 29484.476952: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38822              ps-13725 (13725) [005] d..2 29484.476955: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38823 shell svc 13722-13723 ( 1007) [005] d..2 29484.476962: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38824            adbd-1007  ( 1007) [000] d..2 29484.476970: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38825          <idle>-0     (-----) [000] d..1 29484.476978: cpu_idle: state=0 cpu_id=0
38826            adbd-23485 ( 1007) [003] d..2 29484.476993: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38827          <idle>-0     (-----) [003] d..1 29484.477000: cpu_idle: state=0 cpu_id=3
38828              ps-13725 (13725) [005] d..2 29484.477017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38829          <idle>-0     (-----) [000] d.h3 29484.477018: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38830              ps-13725 (13725) [005] dn.3 29484.477020: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38831              ps-13725 (13725) [005] d..2 29484.477022: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38832          <idle>-0     (-----) [000] dnh4 29484.477024: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38833 shell svc 13722-13723 ( 1007) [005] d..2 29484.477029: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38834          <idle>-0     (-----) [000] .n.1 29484.477029: cpu_idle: state=4294967295 cpu_id=0
38835          <idle>-0     (-----) [000] d..2 29484.477035: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38836   kworker/u17:2-23076 (23076) [000] d..2 29484.477042: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38837   kworker/u17:2-23076 (23076) [000] d..3 29484.477047: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38838              ps-13725 (13725) [005] d.H2 29484.477100: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
38839   kworker/u17:2-23076 (23076) [000] d..2 29484.477100: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38840     kworker/0:0-13450 (13450) [000] d..2 29484.477105: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38841              ps-13725 (13725) [005] d.H3 29484.477108: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
38842     kworker/0:0-13450 (13450) [000] d..3 29484.477114: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38843          <idle>-0     (-----) [003] .n.1 29484.477119: cpu_idle: state=4294967295 cpu_id=3
38844          <idle>-0     (-----) [003] d..2 29484.477126: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38845     kworker/0:0-13450 (13450) [000] d..2 29484.477130: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38846          <idle>-0     (-----) [000] d..1 29484.477135: cpu_idle: state=0 cpu_id=0
38847            adbd-23485 ( 1007) [003] d..2 29484.477169: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38848          <idle>-0     (-----) [003] d..1 29484.477175: cpu_idle: state=0 cpu_id=3
38849              ps-13725 (13725) [005] d..2 29484.477195: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38850          <idle>-0     (-----) [000] d.h3 29484.477197: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38851              ps-13725 (13725) [005] dn.3 29484.477199: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38852          <idle>-0     (-----) [000] dnh4 29484.477202: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38853              ps-13725 (13725) [005] d..2 29484.477202: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38854          <idle>-0     (-----) [000] .n.1 29484.477207: cpu_idle: state=4294967295 cpu_id=0
38855          <idle>-0     (-----) [000] d..2 29484.477211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38856 shell svc 13722-13723 ( 1007) [005] d..2 29484.477211: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38857   kworker/u17:2-23076 (23076) [000] d..2 29484.477217: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38858   kworker/u17:2-23076 (23076) [000] d..3 29484.477222: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38859   kworker/u17:2-23076 (23076) [000] d..2 29484.477237: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38860     kworker/0:0-13450 (13450) [000] d..2 29484.477241: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38861     kworker/0:0-13450 (13450) [000] d..3 29484.477249: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38862          <idle>-0     (-----) [003] .n.1 29484.477254: cpu_idle: state=4294967295 cpu_id=3
38863          <idle>-0     (-----) [003] d..2 29484.477260: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38864     kworker/0:0-13450 (13450) [000] d..2 29484.477263: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38865          <idle>-0     (-----) [000] d..1 29484.477268: cpu_idle: state=0 cpu_id=0
38866            adbd-23485 ( 1007) [003] d..2 29484.477278: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38867          <idle>-0     (-----) [003] d..1 29484.477284: cpu_idle: state=0 cpu_id=3
38868              ps-13725 (13725) [005] d..2 29484.477305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38869          <idle>-0     (-----) [007] .n.1 29484.477305: cpu_idle: state=4294967295 cpu_id=7
38870              ps-13725 (13725) [005] dn.3 29484.477308: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38871              ps-13725 (13725) [005] d..2 29484.477312: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38872          <idle>-0     (-----) [007] d..2 29484.477313: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
38873 shell svc 13722-13723 ( 1007) [005] d..2 29484.477320: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38874         sugov:4-560   (  560) [007] d..2 29484.477325: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38875          <idle>-0     (-----) [007] d..1 29484.477329: cpu_idle: state=2 cpu_id=7
38876          <idle>-0     (-----) [000] d.h3 29484.477425: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38877          <idle>-0     (-----) [000] dnh4 29484.477430: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38878              ps-13725 (13725) [005] d..2 29484.477433: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38879          <idle>-0     (-----) [000] .n.1 29484.477434: cpu_idle: state=4294967295 cpu_id=0
38880              ps-13725 (13725) [005] dn.3 29484.477436: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38881          <idle>-0     (-----) [000] d..2 29484.477438: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38882              ps-13725 (13725) [005] d..2 29484.477439: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38883   kworker/u17:2-23076 (23076) [000] d..2 29484.477444: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38884 shell svc 13722-13723 ( 1007) [005] d..2 29484.477447: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38885   kworker/u17:2-23076 (23076) [000] d..3 29484.477448: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38886   kworker/u17:2-23076 (23076) [000] d..2 29484.477463: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38887     kworker/0:0-13450 (13450) [000] d..2 29484.477468: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38888     kworker/0:0-13450 (13450) [000] d..3 29484.477477: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38889     kworker/0:0-13450 (13450) [000] d..2 29484.477485: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38890            adbd-23484 ( 1007) [000] d..2 29484.477495: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38891            adbd-23484 ( 1007) [000] d..3 29484.477500: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38892              ps-13725 (13725) [005] d..2 29484.477505: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38893              ps-13725 (13725) [005] dn.3 29484.477508: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38894              ps-13725 (13725) [005] d..2 29484.477510: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38895 shell svc 13722-13723 ( 1007) [005] d..2 29484.477518: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38896            adbd-23484 ( 1007) [000] d..2 29484.477540: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38897              ps-13725 (13725) [005] d..2 29484.477571: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38898              ps-13725 (13725) [005] dn.3 29484.477574: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38899              ps-13725 (13725) [005] d..2 29484.477576: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38900 shell svc 13722-13723 ( 1007) [005] d..2 29484.477583: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38901            adbd-1007  ( 1007) [000] d..1 29484.477598: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38902            adbd-1007  ( 1007) [000] d..2 29484.477608: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38903          <idle>-0     (-----) [003] .n.1 29484.477613: cpu_idle: state=4294967295 cpu_id=3
38904          <idle>-0     (-----) [003] d..2 29484.477619: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38905              ps-13725 (13725) [005] d..2 29484.477639: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38906            adbd-1007  ( 1007) [000] d..2 29484.477640: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38907              ps-13725 (13725) [005] dn.3 29484.477642: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38908              ps-13725 (13725) [005] d..2 29484.477644: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38909          <idle>-0     (-----) [000] d..1 29484.477645: cpu_idle: state=0 cpu_id=0
38910 shell svc 13722-13723 ( 1007) [005] d..2 29484.477652: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38911            adbd-23485 ( 1007) [003] d..2 29484.477661: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38912          <idle>-0     (-----) [003] d..1 29484.477668: cpu_idle: state=0 cpu_id=3
38913          <idle>-0     (-----) [000] d.h3 29484.477686: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38914          <idle>-0     (-----) [000] dnh4 29484.477692: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38915          <idle>-0     (-----) [000] .n.1 29484.477696: cpu_idle: state=4294967295 cpu_id=0
38916          <idle>-0     (-----) [000] d..2 29484.477701: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38917   kworker/u17:2-23076 (23076) [000] d..2 29484.477709: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38918   kworker/u17:2-23076 (23076) [000] d..3 29484.477713: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38919   kworker/u17:2-23076 (23076) [000] d..2 29484.477730: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38920     kworker/0:0-13450 (13450) [000] d..2 29484.477735: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38921     kworker/0:0-13450 (13450) [000] d..3 29484.477743: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38922              ps-13725 (13725) [005] d..2 29484.477747: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38923          <idle>-0     (-----) [003] .n.1 29484.477748: cpu_idle: state=4294967295 cpu_id=3
38924              ps-13725 (13725) [005] dn.3 29484.477751: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38925              ps-13725 (13725) [005] d..2 29484.477753: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38926          <idle>-0     (-----) [003] d..2 29484.477754: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38927     kworker/0:0-13450 (13450) [000] d..2 29484.477757: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38928 shell svc 13722-13723 ( 1007) [005] d..2 29484.477761: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38929          <idle>-0     (-----) [000] d..1 29484.477762: cpu_idle: state=0 cpu_id=0
38930            adbd-23485 ( 1007) [003] d..2 29484.477796: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38931          <idle>-0     (-----) [003] d..1 29484.477803: cpu_idle: state=0 cpu_id=3
38932          <idle>-0     (-----) [000] d.h3 29484.477825: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38933          <idle>-0     (-----) [000] dnh4 29484.477830: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38934          <idle>-0     (-----) [000] .n.1 29484.477834: cpu_idle: state=4294967295 cpu_id=0
38935          <idle>-0     (-----) [000] d..2 29484.477839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38936   kworker/u17:2-23076 (23076) [000] d..2 29484.477845: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38937   kworker/u17:2-23076 (23076) [000] d..3 29484.477849: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38938              ps-13725 (13725) [005] d..2 29484.477850: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38939              ps-13725 (13725) [005] dn.3 29484.477854: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38940              ps-13725 (13725) [005] d..2 29484.477856: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38941   kworker/u17:2-23076 (23076) [000] d..2 29484.477864: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38942 shell svc 13722-13723 ( 1007) [005] d..2 29484.477864: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38943     kworker/0:0-13450 (13450) [000] d..2 29484.477869: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38944     kworker/0:0-13450 (13450) [000] d..3 29484.477877: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38945          <idle>-0     (-----) [003] .n.1 29484.477882: cpu_idle: state=4294967295 cpu_id=3
38946          <idle>-0     (-----) [003] d..2 29484.477888: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38947     kworker/0:0-13450 (13450) [000] d..2 29484.477890: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38948          <idle>-0     (-----) [000] d..1 29484.477894: cpu_idle: state=0 cpu_id=0
38949            adbd-23485 ( 1007) [003] d..2 29484.477904: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38950          <idle>-0     (-----) [003] d..1 29484.477910: cpu_idle: state=0 cpu_id=3
38951              ps-13725 (13725) [005] d..2 29484.477923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38952              ps-13725 (13725) [005] dn.3 29484.477927: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38953              ps-13725 (13725) [005] d..2 29484.477929: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38954 shell svc 13722-13723 ( 1007) [005] d..2 29484.477936: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38955              ps-13725 (13725) [005] d..2 29484.478012: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38956              ps-13725 (13725) [005] dn.3 29484.478015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38957              ps-13725 (13725) [005] d..2 29484.478018: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38958 shell svc 13722-13723 ( 1007) [005] d..2 29484.478025: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38959          <idle>-0     (-----) [000] d.h3 29484.478040: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38960          <idle>-0     (-----) [000] dnh4 29484.478045: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38961          <idle>-0     (-----) [000] .n.1 29484.478050: cpu_idle: state=4294967295 cpu_id=0
38962          <idle>-0     (-----) [000] d..2 29484.478055: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38963   kworker/u17:2-23076 (23076) [000] d..2 29484.478061: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38964   kworker/u17:2-23076 (23076) [000] d..3 29484.478066: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38965   kworker/u17:2-23076 (23076) [000] d..2 29484.478081: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38966              ps-13725 (13725) [005] d..2 29484.478081: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38967              ps-13725 (13725) [005] dn.3 29484.478084: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38968     kworker/0:0-13450 (13450) [000] d..2 29484.478086: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
38969              ps-13725 (13725) [005] d..2 29484.478086: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38970 shell svc 13722-13723 ( 1007) [005] d..2 29484.478094: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38971     kworker/0:0-13450 (13450) [000] d..3 29484.478094: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
38972     kworker/0:0-13450 (13450) [000] d..2 29484.478101: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
38973            adbd-23484 ( 1007) [000] d..2 29484.478111: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
38974            adbd-23484 ( 1007) [000] d..3 29484.478117: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
38975            adbd-23484 ( 1007) [000] d..2 29484.478158: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
38976              ps-13725 (13725) [005] d..2 29484.478189: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38977              ps-13725 (13725) [005] dn.3 29484.478192: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38978              ps-13725 (13725) [005] d..2 29484.478195: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38979 shell svc 13722-13723 ( 1007) [005] d..2 29484.478202: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38980            adbd-1007  ( 1007) [000] d..1 29484.478215: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
38981            adbd-1007  ( 1007) [000] d..2 29484.478225: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
38982          <idle>-0     (-----) [003] .n.1 29484.478229: cpu_idle: state=4294967295 cpu_id=3
38983          <idle>-0     (-----) [003] d..2 29484.478235: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
38984            adbd-1007  ( 1007) [000] d..2 29484.478256: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38985          <idle>-0     (-----) [000] d..1 29484.478262: cpu_idle: state=0 cpu_id=0
38986            adbd-23485 ( 1007) [003] d..2 29484.478278: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38987          <idle>-0     (-----) [003] d..1 29484.478284: cpu_idle: state=0 cpu_id=3
38988          <idle>-0     (-----) [000] d.h3 29484.478289: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38989              ps-13725 (13725) [005] d..2 29484.478292: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38990          <idle>-0     (-----) [000] dnh4 29484.478294: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
38991              ps-13725 (13725) [005] dn.3 29484.478295: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
38992              ps-13725 (13725) [005] d..2 29484.478297: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
38993          <idle>-0     (-----) [000] .n.1 29484.478299: cpu_idle: state=4294967295 cpu_id=0
38994          <idle>-0     (-----) [000] d..2 29484.478304: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
38995 shell svc 13722-13723 ( 1007) [005] d..2 29484.478305: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
38996   kworker/u17:2-23076 (23076) [000] d..2 29484.478311: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38997   kworker/u17:2-23076 (23076) [000] d..3 29484.478316: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
38998   kworker/u17:2-23076 (23076) [000] d..2 29484.478332: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
38999     kworker/0:0-13450 (13450) [000] d..2 29484.478336: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39000     kworker/0:0-13450 (13450) [000] d..3 29484.478345: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39001          <idle>-0     (-----) [003] .n.1 29484.478349: cpu_idle: state=4294967295 cpu_id=3
39002          <idle>-0     (-----) [003] d..2 29484.478355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39003     kworker/0:0-13450 (13450) [000] d..2 29484.478358: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39004          <idle>-0     (-----) [000] d..1 29484.478363: cpu_idle: state=0 cpu_id=0
39005            adbd-23485 ( 1007) [003] d..2 29484.478398: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39006          <idle>-0     (-----) [003] d..1 29484.478404: cpu_idle: state=0 cpu_id=3
39007              ps-13725 (13725) [005] d..2 29484.478404: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39008              ps-13725 (13725) [005] dn.3 29484.478408: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39009              ps-13725 (13725) [005] d..2 29484.478410: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39010 shell svc 13722-13723 ( 1007) [005] d..2 29484.478418: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39011          <idle>-0     (-----) [000] d.h3 29484.478427: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39012          <idle>-0     (-----) [000] dnh4 29484.478432: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39013          <idle>-0     (-----) [000] .n.1 29484.478436: cpu_idle: state=4294967295 cpu_id=0
39014          <idle>-0     (-----) [000] d..2 29484.478440: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39015   kworker/u17:2-23076 (23076) [000] d..2 29484.478446: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39016   kworker/u17:2-23076 (23076) [000] d..3 29484.478451: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39017   kworker/u17:2-23076 (23076) [000] d..2 29484.478466: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39018     kworker/0:0-13450 (13450) [000] d..2 29484.478471: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39019     kworker/0:0-13450 (13450) [000] d..3 29484.478479: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39020          <idle>-0     (-----) [003] .n.1 29484.478483: cpu_idle: state=4294967295 cpu_id=3
39021          <idle>-0     (-----) [003] d..2 29484.478489: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39022     kworker/0:0-13450 (13450) [000] d..2 29484.478492: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39023          <idle>-0     (-----) [000] d..1 29484.478496: cpu_idle: state=0 cpu_id=0
39024            adbd-23485 ( 1007) [003] d..2 29484.478504: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39025          <idle>-0     (-----) [003] d..1 29484.478510: cpu_idle: state=0 cpu_id=3
39026              ps-13725 (13725) [005] d..2 29484.478521: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39027              ps-13725 (13725) [005] dn.3 29484.478525: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39028              ps-13725 (13725) [005] d..2 29484.478527: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39029 shell svc 13722-13723 ( 1007) [005] d..2 29484.478535: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39030          <idle>-0     (-----) [000] d.h3 29484.478605: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39031          <idle>-0     (-----) [000] dnh4 29484.478610: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39032          <idle>-0     (-----) [000] .n.1 29484.478617: cpu_idle: state=4294967295 cpu_id=0
39033          <idle>-0     (-----) [000] d..2 29484.478622: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39034   kworker/u17:2-23076 (23076) [000] d..2 29484.478627: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39035              ps-13725 (13725) [005] d..2 29484.478630: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39036   kworker/u17:2-23076 (23076) [000] d..3 29484.478632: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39037              ps-13725 (13725) [005] dn.3 29484.478633: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39038              ps-13725 (13725) [005] d..2 29484.478635: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39039 shell svc 13722-13723 ( 1007) [005] d..2 29484.478643: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39040   kworker/u17:2-23076 (23076) [000] d..2 29484.478647: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39041     kworker/0:0-13450 (13450) [000] d..2 29484.478653: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39042     kworker/0:0-13450 (13450) [000] d..3 29484.478661: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39043     kworker/0:0-13450 (13450) [000] d..2 29484.478668: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39044            adbd-23484 ( 1007) [000] d..2 29484.478678: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39045            adbd-23484 ( 1007) [000] d..3 29484.478683: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39046            adbd-23484 ( 1007) [000] d..2 29484.478724: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39047              ps-13725 (13725) [005] d..2 29484.478729: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39048              ps-13725 (13725) [005] dn.3 29484.478732: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39049              ps-13725 (13725) [005] d..2 29484.478734: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39050 shell svc 13722-13723 ( 1007) [005] d..2 29484.478742: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39051            adbd-1007  ( 1007) [000] d..1 29484.478780: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39052            adbd-1007  ( 1007) [000] d..2 29484.478791: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39053          <idle>-0     (-----) [003] .n.1 29484.478796: cpu_idle: state=4294967295 cpu_id=3
39054          <idle>-0     (-----) [003] d..2 29484.478801: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39055            adbd-1007  ( 1007) [000] d..2 29484.478822: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39056          <idle>-0     (-----) [000] d..1 29484.478828: cpu_idle: state=0 cpu_id=0
39057              ps-13725 (13725) [005] d..2 29484.478833: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39058              ps-13725 (13725) [005] dn.3 29484.478837: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39059              ps-13725 (13725) [005] d..2 29484.478839: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39060 shell svc 13722-13723 ( 1007) [005] d..2 29484.478847: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39061            adbd-23485 ( 1007) [003] d..2 29484.478861: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39062          <idle>-0     (-----) [003] d..3 29484.478866: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
39063          <idle>-0     (-----) [000] d.h3 29484.478873: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39064          <idle>-0     (-----) [003] dn.4 29484.478876: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
39065          <idle>-0     (-----) [000] dnh4 29484.478883: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39066          <idle>-0     (-----) [003] d..2 29484.478884: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
39067          <idle>-0     (-----) [000] .n.1 29484.478887: cpu_idle: state=4294967295 cpu_id=0
39068          <idle>-0     (-----) [000] d..2 29484.478892: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39069         rcuop/2-29    (   29) [003] d..2 29484.478896: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39070   kworker/u17:2-23076 (23076) [000] d..2 29484.478899: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39071          <idle>-0     (-----) [003] d..1 29484.478900: cpu_idle: state=0 cpu_id=3
39072   kworker/u17:2-23076 (23076) [000] d..3 29484.478904: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39073   kworker/u17:2-23076 (23076) [000] d..2 29484.478920: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39074     kworker/0:0-13450 (13450) [000] d..2 29484.478925: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39075     kworker/0:0-13450 (13450) [000] d..3 29484.478933: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39076              ps-13725 (13725) [005] d..2 29484.478936: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39077          <idle>-0     (-----) [003] .n.1 29484.478938: cpu_idle: state=4294967295 cpu_id=3
39078              ps-13725 (13725) [005] dn.3 29484.478939: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39079              ps-13725 (13725) [005] d..2 29484.478942: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39080          <idle>-0     (-----) [003] d..2 29484.478944: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39081     kworker/0:0-13450 (13450) [000] d..2 29484.478946: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39082 shell svc 13722-13723 ( 1007) [005] d..2 29484.478950: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39083          <idle>-0     (-----) [000] d..1 29484.478951: cpu_idle: state=0 cpu_id=0
39084            adbd-23485 ( 1007) [003] d..2 29484.478988: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39085          <idle>-0     (-----) [003] d..1 29484.478994: cpu_idle: state=0 cpu_id=3
39086          <idle>-0     (-----) [000] d.h3 29484.479008: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39087          <idle>-0     (-----) [000] dnh4 29484.479013: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39088          <idle>-0     (-----) [000] .n.1 29484.479017: cpu_idle: state=4294967295 cpu_id=0
39089          <idle>-0     (-----) [000] d..2 29484.479021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39090   kworker/u17:2-23076 (23076) [000] d..2 29484.479027: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39091   kworker/u17:2-23076 (23076) [000] d..3 29484.479032: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39092   kworker/u17:2-23076 (23076) [000] d..2 29484.479047: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39093              ps-13725 (13725) [005] d..2 29484.479047: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39094              ps-13725 (13725) [005] dn.3 29484.479050: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39095     kworker/0:0-13450 (13450) [000] d..2 29484.479051: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39096              ps-13725 (13725) [005] d..2 29484.479054: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39097 shell svc 13722-13723 ( 1007) [005] d..2 29484.479061: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39098     kworker/0:0-13450 (13450) [000] d..3 29484.479069: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39099          <idle>-0     (-----) [003] .n.1 29484.479075: cpu_idle: state=4294967295 cpu_id=3
39100          <idle>-0     (-----) [003] d..2 29484.479080: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39101     kworker/0:0-13450 (13450) [000] d..2 29484.479083: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39102          <idle>-0     (-----) [000] d..1 29484.479087: cpu_idle: state=0 cpu_id=0
39103            adbd-23485 ( 1007) [003] d..2 29484.479095: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39104          <idle>-0     (-----) [003] d..1 29484.479101: cpu_idle: state=0 cpu_id=3
39105              ps-13725 (13725) [005] d..2 29484.479120: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39106              ps-13725 (13725) [005] dn.3 29484.479123: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39107              ps-13725 (13725) [005] d..2 29484.479126: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39108 shell svc 13722-13723 ( 1007) [005] d..2 29484.479133: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39109          <idle>-0     (-----) [000] d.h3 29484.479183: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39110          <idle>-0     (-----) [000] dnh4 29484.479188: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39111              ps-13725 (13725) [005] d..2 29484.479190: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39112          <idle>-0     (-----) [000] .n.1 29484.479193: cpu_idle: state=4294967295 cpu_id=0
39113              ps-13725 (13725) [005] dn.3 29484.479194: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39114              ps-13725 (13725) [005] d..2 29484.479196: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39115          <idle>-0     (-----) [000] d..2 29484.479197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39116   kworker/u17:2-23076 (23076) [000] d..2 29484.479203: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39117 shell svc 13722-13723 ( 1007) [005] d..2 29484.479204: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39118   kworker/u17:2-23076 (23076) [000] d..3 29484.479207: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39119   kworker/u17:2-23076 (23076) [000] d..2 29484.479222: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39120     kworker/0:0-13450 (13450) [000] d..2 29484.479227: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39121     kworker/0:0-13450 (13450) [000] d..3 29484.479235: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39122     kworker/0:0-13450 (13450) [000] d..2 29484.479242: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39123            adbd-23484 ( 1007) [000] d..2 29484.479253: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39124            adbd-23484 ( 1007) [000] d..3 29484.479258: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39125            adbd-23484 ( 1007) [000] d..2 29484.479298: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39126            adbd-1007  ( 1007) [000] d..1 29484.479353: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39127            adbd-1007  ( 1007) [000] d..2 29484.479363: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39128          <idle>-0     (-----) [003] .n.1 29484.479368: cpu_idle: state=4294967295 cpu_id=3
39129          <idle>-0     (-----) [003] d..2 29484.479373: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39130            adbd-1007  ( 1007) [000] d..2 29484.479394: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39131          <idle>-0     (-----) [000] d..1 29484.479400: cpu_idle: state=0 cpu_id=0
39132              ps-13725 (13725) [005] d..2 29484.479404: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39133              ps-13725 (13725) [005] dn.3 29484.479409: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39134              ps-13725 (13725) [005] d..2 29484.479411: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39135            adbd-23485 ( 1007) [003] d..2 29484.479416: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39136 shell svc 13722-13723 ( 1007) [005] d..2 29484.479421: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39137          <idle>-0     (-----) [003] d..1 29484.479423: cpu_idle: state=0 cpu_id=3
39138          <idle>-0     (-----) [000] d.h3 29484.479439: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39139          <idle>-0     (-----) [000] dnh4 29484.479444: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39140          <idle>-0     (-----) [000] .n.1 29484.479449: cpu_idle: state=4294967295 cpu_id=0
39141          <idle>-0     (-----) [000] d..2 29484.479454: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39142   kworker/u17:2-23076 (23076) [000] d..2 29484.479461: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39143   kworker/u17:2-23076 (23076) [000] d..3 29484.479466: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39144              ps-13725 (13725) [005] d..2 29484.479480: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39145   kworker/u17:2-23076 (23076) [000] d..2 29484.479481: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39146              ps-13725 (13725) [005] dn.3 29484.479483: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39147              ps-13725 (13725) [005] d..2 29484.479485: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39148     kworker/0:0-13450 (13450) [000] d..2 29484.479486: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39149 shell svc 13722-13723 ( 1007) [005] d..2 29484.479492: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39150     kworker/0:0-13450 (13450) [000] d..3 29484.479495: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39151          <idle>-0     (-----) [003] .n.1 29484.479500: cpu_idle: state=4294967295 cpu_id=3
39152          <idle>-0     (-----) [003] d..2 29484.479505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39153     kworker/0:0-13450 (13450) [000] d..2 29484.479508: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39154          <idle>-0     (-----) [000] d..1 29484.479512: cpu_idle: state=0 cpu_id=0
39155            adbd-23485 ( 1007) [003] d..2 29484.479548: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39156              ps-13725 (13725) [005] d..2 29484.479548: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39157              ps-13725 (13725) [005] dn.3 29484.479551: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39158              ps-13725 (13725) [005] d..2 29484.479554: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39159          <idle>-0     (-----) [003] d..1 29484.479555: cpu_idle: state=0 cpu_id=3
39160 shell svc 13722-13723 ( 1007) [005] d..2 29484.479561: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39161          <idle>-0     (-----) [000] d.h3 29484.479567: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39162          <idle>-0     (-----) [000] dnh4 29484.479572: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39163          <idle>-0     (-----) [000] .n.1 29484.479577: cpu_idle: state=4294967295 cpu_id=0
39164          <idle>-0     (-----) [000] d..2 29484.479581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39165   kworker/u17:2-23076 (23076) [000] d..2 29484.479586: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39166   kworker/u17:2-23076 (23076) [000] d..3 29484.479591: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39167   kworker/u17:2-23076 (23076) [000] d..2 29484.479605: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39168     kworker/0:0-13450 (13450) [000] d..2 29484.479610: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39169     kworker/0:0-13450 (13450) [000] d..3 29484.479618: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39170          <idle>-0     (-----) [003] .n.1 29484.479623: cpu_idle: state=4294967295 cpu_id=3
39171     kworker/0:0-13450 (13450) [000] d..2 29484.479626: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39172          <idle>-0     (-----) [003] d..2 29484.479629: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39173          <idle>-0     (-----) [000] d..1 29484.479630: cpu_idle: state=0 cpu_id=0
39174            adbd-23485 ( 1007) [003] d..2 29484.479645: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39175          <idle>-0     (-----) [003] d..1 29484.479650: cpu_idle: state=0 cpu_id=3
39176          <idle>-0     (-----) [000] d.h3 29484.479724: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39177          <idle>-0     (-----) [000] dnh4 29484.479729: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39178          <idle>-0     (-----) [000] .n.1 29484.479733: cpu_idle: state=4294967295 cpu_id=0
39179          <idle>-0     (-----) [000] d..2 29484.479738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39180   kworker/u17:2-23076 (23076) [000] d..2 29484.479743: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39181   kworker/u17:2-23076 (23076) [000] d..3 29484.479747: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39182   kworker/u17:2-23076 (23076) [000] d..2 29484.479762: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39183     kworker/0:0-13450 (13450) [000] d..2 29484.479767: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39184     kworker/0:0-13450 (13450) [000] d..3 29484.479775: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39185     kworker/0:0-13450 (13450) [000] d..2 29484.479782: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39186            adbd-23484 ( 1007) [000] d..2 29484.479792: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39187            adbd-23484 ( 1007) [000] d..3 29484.479797: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39188            adbd-23484 ( 1007) [000] d..2 29484.479837: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39189            adbd-1007  ( 1007) [000] d..1 29484.479890: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39190            adbd-1007  ( 1007) [000] d..2 29484.479901: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39191          <idle>-0     (-----) [003] .n.1 29484.479905: cpu_idle: state=4294967295 cpu_id=3
39192          <idle>-0     (-----) [003] d..2 29484.479910: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39193            adbd-1007  ( 1007) [000] d..2 29484.479931: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39194          <idle>-0     (-----) [000] d..1 29484.479937: cpu_idle: state=0 cpu_id=0
39195            adbd-23485 ( 1007) [003] d..2 29484.479953: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39196          <idle>-0     (-----) [003] d..1 29484.479959: cpu_idle: state=0 cpu_id=3
39197          <idle>-0     (-----) [000] d.h3 29484.479977: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39198          <idle>-0     (-----) [000] dnh4 29484.479983: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39199          <idle>-0     (-----) [000] .n.1 29484.479987: cpu_idle: state=4294967295 cpu_id=0
39200          <idle>-0     (-----) [000] d..2 29484.479992: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39201   kworker/u17:2-23076 (23076) [000] d..2 29484.479999: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39202   kworker/u17:2-23076 (23076) [000] d..3 29484.480004: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39203   kworker/u17:2-23076 (23076) [000] d..2 29484.480019: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39204     kworker/0:0-13450 (13450) [000] d..2 29484.480024: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39205     kworker/0:0-13450 (13450) [000] d..3 29484.480032: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39206          <idle>-0     (-----) [003] .n.1 29484.480038: cpu_idle: state=4294967295 cpu_id=3
39207     kworker/0:0-13450 (13450) [000] d..2 29484.480040: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39208          <idle>-0     (-----) [003] d..2 29484.480043: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39209          <idle>-0     (-----) [000] d..1 29484.480045: cpu_idle: state=0 cpu_id=0
39210              ps-13725 (13725) [005] d..2 29484.480065: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39211              ps-13725 (13725) [005] dn.3 29484.480069: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39212              ps-13725 (13725) [005] d..2 29484.480071: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39213 shell svc 13722-13723 ( 1007) [005] d..2 29484.480080: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39214            adbd-23485 ( 1007) [003] d..2 29484.480086: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39215          <idle>-0     (-----) [003] d..1 29484.480092: cpu_idle: state=0 cpu_id=3
39216          <idle>-0     (-----) [000] d.h3 29484.480106: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39217          <idle>-0     (-----) [000] dnh4 29484.480111: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39218          <idle>-0     (-----) [000] .n.1 29484.480115: cpu_idle: state=4294967295 cpu_id=0
39219          <idle>-0     (-----) [000] d..2 29484.480119: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39220   kworker/u17:2-23076 (23076) [000] d..2 29484.480125: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39221   kworker/u17:2-23076 (23076) [000] d..3 29484.480130: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39222              ps-13725 (13725) [005] d..2 29484.480135: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39223              ps-13725 (13725) [005] dn.3 29484.480138: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39224              ps-13725 (13725) [005] d..2 29484.480140: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39225   kworker/u17:2-23076 (23076) [000] d..2 29484.480145: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39226 shell svc 13722-13723 ( 1007) [005] d..2 29484.480148: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39227     kworker/0:0-13450 (13450) [000] d..2 29484.480150: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39228     kworker/0:0-13450 (13450) [000] d..3 29484.480158: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39229          <idle>-0     (-----) [003] .n.1 29484.480162: cpu_idle: state=4294967295 cpu_id=3
39230     kworker/0:0-13450 (13450) [000] d..2 29484.480165: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39231          <idle>-0     (-----) [003] d..2 29484.480168: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39232          <idle>-0     (-----) [000] d..1 29484.480169: cpu_idle: state=0 cpu_id=0
39233            adbd-23485 ( 1007) [003] d..2 29484.480183: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39234          <idle>-0     (-----) [003] d..1 29484.480189: cpu_idle: state=0 cpu_id=3
39235              ps-13725 (13725) [005] d..2 29484.480203: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39236              ps-13725 (13725) [005] dn.3 29484.480206: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39237              ps-13725 (13725) [005] d..2 29484.480208: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39238 shell svc 13722-13723 ( 1007) [005] d..2 29484.480215: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39239          <idle>-0     (-----) [000] d.h3 29484.480255: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39240          <idle>-0     (-----) [000] dnh4 29484.480260: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39241          <idle>-0     (-----) [000] .n.1 29484.480264: cpu_idle: state=4294967295 cpu_id=0
39242          <idle>-0     (-----) [000] d..2 29484.480268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39243              ps-13725 (13725) [005] d..2 29484.480271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39244   kworker/u17:2-23076 (23076) [000] d..2 29484.480274: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39245              ps-13725 (13725) [005] dn.3 29484.480274: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39246              ps-13725 (13725) [005] d..2 29484.480276: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39247   kworker/u17:2-23076 (23076) [000] d..3 29484.480278: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39248 shell svc 13722-13723 ( 1007) [005] d..2 29484.480284: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39249   kworker/u17:2-23076 (23076) [000] d..2 29484.480293: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39250     kworker/0:0-13450 (13450) [000] d..2 29484.480298: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39251     kworker/0:0-13450 (13450) [000] d..3 29484.480307: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39252     kworker/0:0-13450 (13450) [000] d..2 29484.480314: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39253            adbd-23484 ( 1007) [000] d..2 29484.480324: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39254            adbd-23484 ( 1007) [000] d..3 29484.480329: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39255              ps-13725 (13725) [005] d..2 29484.480338: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39256              ps-13725 (13725) [005] dn.3 29484.480340: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39257              ps-13725 (13725) [005] d..2 29484.480343: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39258 shell svc 13722-13723 ( 1007) [005] d..2 29484.480350: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39259            adbd-23484 ( 1007) [000] d..2 29484.480370: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39260              ps-13725 (13725) [005] d.s2 29484.480399: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
39261            adbd-1007  ( 1007) [000] d.s1 29484.480404: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
39262            adbd-1007  ( 1007) [000] dns2 29484.480415: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
39263            adbd-1007  ( 1007) [000] dnH2 29484.480421: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
39264            adbd-1007  ( 1007) [000] d..2 29484.480430: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
39265     rcu_preempt-7     (    7) [000] d..2 29484.480438: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
39266              ps-13725 (13725) [005] d..2 29484.480438: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39267              ps-13725 (13725) [005] dn.3 29484.480442: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39268              ps-13725 (13725) [005] d..2 29484.480445: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39269     rcu_preempt-7     (    7) [000] d..3 29484.480447: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
39270 shell svc 13722-13723 ( 1007) [005] d..2 29484.480452: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39271     rcu_preempt-7     (    7) [000] d..2 29484.480456: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
39272         rcuop/4-45    (   45) [000] d..2 29484.480460: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
39273         rcuop/4-45    (   45) [000] d..3 29484.480468: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
39274         rcuop/4-45    (   45) [000] d..2 29484.480474: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
39275              ps-13725 (13725) [005] d..2 29484.480512: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39276              ps-13725 (13725) [005] dn.3 29484.480515: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39277              ps-13725 (13725) [005] d..2 29484.480518: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39278 shell svc 13722-13723 ( 1007) [005] d..2 29484.480525: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39279              ps-13725 (13725) [005] d..2 29484.480580: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39280              ps-13725 (13725) [005] dn.3 29484.480583: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39281              ps-13725 (13725) [005] d..2 29484.480585: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39282 shell svc 13722-13723 ( 1007) [005] d..2 29484.480592: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39283              ps-13725 (13725) [005] d..2 29484.480645: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39284              ps-13725 (13725) [005] dn.3 29484.480648: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39285              ps-13725 (13725) [005] d..2 29484.480650: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39286 shell svc 13722-13723 ( 1007) [005] d..2 29484.480657: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39287              ps-13725 (13725) [005] d..2 29484.480745: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39288              ps-13725 (13725) [005] dn.3 29484.480749: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39289              ps-13725 (13725) [005] d..2 29484.480751: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39290 shell svc 13722-13723 ( 1007) [005] d..2 29484.480759: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39291              ps-13725 (13725) [005] d..2 29484.480813: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39292              ps-13725 (13725) [005] dn.3 29484.480816: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39293              ps-13725 (13725) [005] d..2 29484.480818: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39294 shell svc 13722-13723 ( 1007) [005] d..2 29484.480826: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39295              ps-13725 (13725) [005] d..2 29484.480879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39296              ps-13725 (13725) [005] dn.3 29484.480882: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39297              ps-13725 (13725) [005] d..2 29484.480885: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39298         rcuop/5-53    (   53) [000] d..2 29484.480889: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
39299 shell svc 13722-13723 ( 1007) [005] d..2 29484.480892: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39300              ps-13725 (13725) [005] d..2 29484.480956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39301              ps-13725 (13725) [005] dn.3 29484.480959: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39302              ps-13725 (13725) [005] d..2 29484.480962: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39303 shell svc 13722-13723 ( 1007) [005] d..2 29484.480969: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39304              ps-13725 (13725) [005] d..2 29484.481021: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39305              ps-13725 (13725) [005] dn.3 29484.481024: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39306              ps-13725 (13725) [005] d..2 29484.481027: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39307 shell svc 13722-13723 ( 1007) [005] d..2 29484.481034: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39308  kworker/u16:10-23868 (23868) [000] d..2 29484.481065: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=1007 next_prio=120
39309              ps-13725 (13725) [005] d..2 29484.481086: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39310              ps-13725 (13725) [005] dn.3 29484.481089: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39311              ps-13725 (13725) [005] d..2 29484.481091: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39312 shell svc 13722-13723 ( 1007) [005] d..2 29484.481098: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39313          <idle>-0     (-----) [003] d.s3 29484.481105: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
39314          <idle>-0     (-----) [003] d.s4 29484.481120: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
39315            adbd-1007  ( 1007) [000] d..1 29484.481121: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39316          <idle>-0     (-----) [003] dns4 29484.481123: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
39317          <idle>-0     (-----) [003] .n.1 29484.481131: cpu_idle: state=4294967295 cpu_id=3
39318            adbd-1007  ( 1007) [000] d..2 29484.481134: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
39319          <idle>-0     (-----) [003] d..2 29484.481140: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
39320              ps-13725 (13725) [005] d..2 29484.481151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39321              ps-13725 (13725) [005] dn.3 29484.481154: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39322              ps-13725 (13725) [005] d..2 29484.481156: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39323            adbd-1007  ( 1007) [000] d..2 29484.481161: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39324 shell svc 13722-13723 ( 1007) [005] d..2 29484.481164: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39325          <idle>-0     (-----) [000] d..1 29484.481183: cpu_idle: state=0 cpu_id=0
39326          <idle>-0     (-----) [000] ...1 29484.481192: cpu_idle: state=4294967295 cpu_id=0
39327          <idle>-0     (-----) [000] d..1 29484.481194: cpu_idle: state=0 cpu_id=0
39328  kworker/u16:10-23868 (23868) [003] .... 29484.481207: clk_set_rate: l3_cluster0_vote_clk 1132800000
39329              ps-13725 (13725) [005] d..2 29484.481215: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39330              ps-13725 (13725) [005] dn.3 29484.481218: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39331              ps-13725 (13725) [005] d..2 29484.481220: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39332 shell svc 13722-13723 ( 1007) [005] d..2 29484.481227: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39333          <idle>-0     (-----) [001] d.h2 29484.481247: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
39334  kworker/u16:10-23868 (23868) [003] d..2 29484.481256: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
39335          <idle>-0     (-----) [001] dnh3 29484.481258: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
39336          <idle>-0     (-----) [001] .n.1 29484.481264: cpu_idle: state=4294967295 cpu_id=1
39337          <idle>-0     (-----) [001] d..2 29484.481275: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
39338              ps-13725 (13725) [005] d..2 29484.481288: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39339              ps-13725 (13725) [005] dn.3 29484.481291: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39340              ps-13725 (13725) [005] d..2 29484.481294: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39341 shell svc 13722-13723 ( 1007) [005] d..2 29484.481301: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39342            adbd-23485 ( 1007) [003] d..2 29484.481302: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39343          <idle>-0     (-----) [003] d..1 29484.481309: cpu_idle: state=0 cpu_id=3
39344          <idle>-0     (-----) [000] d.h3 29484.481313: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39345          <idle>-0     (-----) [000] dnh4 29484.481322: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39346          <idle>-0     (-----) [000] .n.1 29484.481326: cpu_idle: state=4294967295 cpu_id=0
39347          <idle>-0     (-----) [000] d..2 29484.481333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39348   kworker/u17:2-23076 (23076) [000] d..2 29484.481341: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39349   kworker/u17:2-23076 (23076) [000] d..3 29484.481347: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39350              ps-13725 (13725) [005] d..2 29484.481354: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39351              ps-13725 (13725) [005] dn.3 29484.481357: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39352              ps-13725 (13725) [005] d..2 29484.481360: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39353   kworker/u17:2-23076 (23076) [000] d..2 29484.481362: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39354 shell svc 13722-13723 ( 1007) [005] d..2 29484.481367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39355     kworker/0:0-13450 (13450) [000] d..2 29484.481367: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
39356     kworker/0:0-13450 (13450) [000] d..3 29484.481388: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39357 irq/79-1436400.-24613 (24613) [001] d..2 29484.481395: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
39358     kworker/0:0-13450 (13450) [000] d..2 29484.481403: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39359          <idle>-0     (-----) [003] d.s3 29484.481406: sched_waking: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
39360          <idle>-0     (-----) [000] d..1 29484.481409: cpu_idle: state=0 cpu_id=0
39361          <idle>-0     (-----) [003] d.s4 29484.481414: sched_wakeup: comm=irq/79-1436400. pid=24613 prio=49 target_cpu=001
39362              ps-13725 (13725) [005] d..2 29484.481419: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39363            adbd-23485 ( 1007) [001] d..2 29484.481420: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R+ ==> next_comm=irq/79-1436400. next_pid=24613 next_prio=49
39364              ps-13725 (13725) [005] dn.3 29484.481422: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39365              ps-13725 (13725) [005] d..2 29484.481425: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39366          <idle>-0     (-----) [003] ...1 29484.481427: cpu_idle: state=4294967295 cpu_id=3
39367          <idle>-0     (-----) [003] d..1 29484.481430: cpu_idle: state=0 cpu_id=3
39368 shell svc 13722-13723 ( 1007) [005] d..2 29484.481431: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39369 irq/79-1436400.-24613 (24613) [001] d..2 29484.481440: sched_switch: prev_comm=irq/79-1436400. prev_pid=24613 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
39370            adbd-23485 ( 1007) [001] d..2 29484.481482: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39371              ps-13725 (13725) [005] d..2 29484.481485: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39372              ps-13725 (13725) [005] dn.3 29484.481488: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39373              ps-13725 (13725) [005] d..2 29484.481490: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39374          <idle>-0     (-----) [001] d..1 29484.481492: cpu_idle: state=2 cpu_id=1
39375 shell svc 13722-13723 ( 1007) [005] d..2 29484.481497: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39376          <idle>-0     (-----) [000] d.h3 29484.481522: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39377          <idle>-0     (-----) [000] dnh4 29484.481527: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39378          <idle>-0     (-----) [000] .n.1 29484.481531: cpu_idle: state=4294967295 cpu_id=0
39379          <idle>-0     (-----) [000] d..2 29484.481537: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39380   kworker/u17:2-23076 (23076) [000] d..2 29484.481543: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39381   kworker/u17:2-23076 (23076) [000] d..3 29484.481548: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39382              ps-13725 (13725) [005] d..2 29484.481548: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39383              ps-13725 (13725) [005] dn.3 29484.481551: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39384              ps-13725 (13725) [005] d..2 29484.481553: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39385 shell svc 13722-13723 ( 1007) [005] d..2 29484.481560: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39386   kworker/u17:2-23076 (23076) [000] d..2 29484.481563: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39387     kworker/0:0-13450 (13450) [000] d..2 29484.481568: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39388     kworker/0:0-13450 (13450) [000] d..3 29484.481576: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39389     kworker/0:0-13450 (13450) [000] d..2 29484.481588: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39390          <idle>-0     (-----) [000] d..1 29484.481593: cpu_idle: state=0 cpu_id=0
39391              ps-13725 (13725) [005] d..2 29484.481613: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39392              ps-13725 (13725) [005] dn.3 29484.481616: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39393              ps-13725 (13725) [005] d..2 29484.481618: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39394 shell svc 13722-13723 ( 1007) [005] d..2 29484.481625: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39395              ps-13725 (13725) [005] d..2 29484.481680: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39396              ps-13725 (13725) [005] dn.3 29484.481682: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39397          <idle>-0     (-----) [001] .n.1 29484.481684: cpu_idle: state=4294967295 cpu_id=1
39398              ps-13725 (13725) [005] d..2 29484.481684: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39399 shell svc 13722-13723 ( 1007) [005] d..2 29484.481691: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39400          <idle>-0     (-----) [001] d..2 29484.481693: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39401          <idle>-0     (-----) [000] d.h3 29484.481699: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39402          <idle>-0     (-----) [000] dnh4 29484.481704: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39403          <idle>-0     (-----) [000] .n.1 29484.481708: cpu_idle: state=4294967295 cpu_id=0
39404          <idle>-0     (-----) [000] d..2 29484.481714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39405            adbd-23485 ( 1007) [001] d..2 29484.481717: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39406   kworker/u17:2-23076 (23076) [000] d..2 29484.481720: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39407   kworker/u17:2-23076 (23076) [000] d..3 29484.481725: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39408          <idle>-0     (-----) [001] d..1 29484.481726: cpu_idle: state=0 cpu_id=1
39409   kworker/u17:2-23076 (23076) [000] d..2 29484.481740: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39410              ps-13725 (13725) [005] d..2 29484.481744: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39411     kworker/0:0-13450 (13450) [000] d..2 29484.481746: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39412              ps-13725 (13725) [005] dn.3 29484.481747: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39413              ps-13725 (13725) [005] d..2 29484.481749: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39414     kworker/0:0-13450 (13450) [000] d..3 29484.481754: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39415 shell svc 13722-13723 ( 1007) [005] d..2 29484.481756: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39416     kworker/0:0-13450 (13450) [000] d..2 29484.481761: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39417            adbd-23484 ( 1007) [000] d..2 29484.481772: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39418            adbd-23484 ( 1007) [000] d..3 29484.481777: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39419              ps-13725 (13725) [005] d..2 29484.481811: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39420              ps-13725 (13725) [005] dn.3 29484.481813: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39421              ps-13725 (13725) [005] d..2 29484.481815: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39422            adbd-23484 ( 1007) [000] d..2 29484.481818: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39423 shell svc 13722-13723 ( 1007) [005] d..2 29484.481822: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39424              ps-13725 (13725) [005] d..2 29484.481875: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39425              ps-13725 (13725) [005] dn.3 29484.481878: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39426            adbd-1007  ( 1007) [000] d..1 29484.481879: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39427              ps-13725 (13725) [005] d..2 29484.481880: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39428 shell svc 13722-13723 ( 1007) [005] d..2 29484.481888: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39429            adbd-1007  ( 1007) [000] d..2 29484.481889: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39430          <idle>-0     (-----) [001] .n.1 29484.481894: cpu_idle: state=4294967295 cpu_id=1
39431          <idle>-0     (-----) [001] d..2 29484.481900: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39432            adbd-1007  ( 1007) [000] d..2 29484.481920: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39433          <idle>-0     (-----) [000] d..1 29484.481927: cpu_idle: state=0 cpu_id=0
39434              ps-13725 (13725) [005] d..2 29484.481940: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39435              ps-13725 (13725) [005] dn.3 29484.481943: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39436              ps-13725 (13725) [005] d..2 29484.481945: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39437            adbd-23485 ( 1007) [001] d..2 29484.481947: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39438 shell svc 13722-13723 ( 1007) [005] d..2 29484.481952: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39439          <idle>-0     (-----) [001] d..1 29484.481954: cpu_idle: state=0 cpu_id=1
39440          <idle>-0     (-----) [000] d.h3 29484.481958: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39441          <idle>-0     (-----) [000] dnh4 29484.481964: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39442          <idle>-0     (-----) [000] .n.1 29484.481968: cpu_idle: state=4294967295 cpu_id=0
39443          <idle>-0     (-----) [000] d..2 29484.481974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39444   kworker/u17:2-23076 (23076) [000] d..2 29484.481981: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39445   kworker/u17:2-23076 (23076) [000] d..3 29484.481986: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39446   kworker/u17:2-23076 (23076) [000] d..2 29484.482002: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39447     kworker/0:0-13450 (13450) [000] d..2 29484.482007: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39448              ps-13725 (13725) [005] d..2 29484.482008: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39449              ps-13725 (13725) [005] dn.3 29484.482011: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39450              ps-13725 (13725) [005] d..2 29484.482014: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39451     kworker/0:0-13450 (13450) [000] d..3 29484.482016: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39452          <idle>-0     (-----) [001] .n.1 29484.482020: cpu_idle: state=4294967295 cpu_id=1
39453 shell svc 13722-13723 ( 1007) [005] d..2 29484.482021: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39454          <idle>-0     (-----) [001] d..2 29484.482026: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39455     kworker/0:0-13450 (13450) [000] d..2 29484.482029: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39456          <idle>-0     (-----) [000] d..1 29484.482035: cpu_idle: state=0 cpu_id=0
39457            adbd-23485 ( 1007) [001] d..2 29484.482070: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39458              ps-13725 (13725) [005] d..2 29484.482075: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39459          <idle>-0     (-----) [001] d..1 29484.482077: cpu_idle: state=0 cpu_id=1
39460              ps-13725 (13725) [005] dn.3 29484.482078: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39461              ps-13725 (13725) [005] d..2 29484.482080: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39462 shell svc 13722-13723 ( 1007) [005] d..2 29484.482088: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39463          <idle>-0     (-----) [000] d.h3 29484.482118: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39464          <idle>-0     (-----) [000] dnh4 29484.482122: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39465          <idle>-0     (-----) [000] .n.1 29484.482127: cpu_idle: state=4294967295 cpu_id=0
39466          <idle>-0     (-----) [000] d..2 29484.482133: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39467   kworker/u17:2-23076 (23076) [000] d..2 29484.482139: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39468   kworker/u17:2-23076 (23076) [000] d..3 29484.482144: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39469   kworker/u17:2-23076 (23076) [000] d..2 29484.482159: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39470     kworker/0:0-13450 (13450) [000] d..2 29484.482164: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39471     kworker/0:0-13450 (13450) [000] d..3 29484.482172: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39472          <idle>-0     (-----) [001] .n.1 29484.482177: cpu_idle: state=4294967295 cpu_id=1
39473          <idle>-0     (-----) [001] d..2 29484.482183: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39474     kworker/0:0-13450 (13450) [000] d..2 29484.482184: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39475          <idle>-0     (-----) [000] d..1 29484.482190: cpu_idle: state=0 cpu_id=0
39476              ps-13725 (13725) [005] d..2 29484.482192: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39477              ps-13725 (13725) [005] dn.3 29484.482195: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39478            adbd-23485 ( 1007) [001] d..2 29484.482197: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39479              ps-13725 (13725) [005] d..2 29484.482198: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39480          <idle>-0     (-----) [001] d..1 29484.482203: cpu_idle: state=0 cpu_id=1
39481 shell svc 13722-13723 ( 1007) [005] d..2 29484.482207: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39482          <idle>-0     (-----) [000] d.h3 29484.482285: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39483          <idle>-0     (-----) [000] dnh4 29484.482290: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39484          <idle>-0     (-----) [000] .n.1 29484.482294: cpu_idle: state=4294967295 cpu_id=0
39485          <idle>-0     (-----) [000] d..2 29484.482300: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39486   kworker/u17:2-23076 (23076) [000] d..2 29484.482305: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39487   kworker/u17:2-23076 (23076) [000] d..3 29484.482309: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39488   kworker/u17:2-23076 (23076) [000] d..2 29484.482324: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39489     kworker/0:0-13450 (13450) [000] d..2 29484.482329: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39490     kworker/0:0-13450 (13450) [000] d..3 29484.482337: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39491     kworker/0:0-13450 (13450) [000] d..2 29484.482344: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39492            adbd-23484 ( 1007) [000] d..2 29484.482354: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39493            adbd-23484 ( 1007) [000] d..3 29484.482359: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39494              ps-13725 (13725) [005] d..2 29484.482386: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39495              ps-13725 (13725) [005] dn.3 29484.482390: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39496              ps-13725 (13725) [005] d..2 29484.482392: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39497            adbd-23484 ( 1007) [000] d..2 29484.482400: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39498 shell svc 13722-13723 ( 1007) [005] d..2 29484.482402: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39499            adbd-1007  ( 1007) [000] d..1 29484.482458: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39500            adbd-1007  ( 1007) [000] d..2 29484.482468: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39501          <idle>-0     (-----) [001] .n.1 29484.482473: cpu_idle: state=4294967295 cpu_id=1
39502          <idle>-0     (-----) [001] d..2 29484.482478: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39503            adbd-1007  ( 1007) [000] d..2 29484.482499: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39504              ps-13725 (13725) [005] d..2 29484.482502: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39505              ps-13725 (13725) [005] dn.3 29484.482506: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39506          <idle>-0     (-----) [000] d..1 29484.482506: cpu_idle: state=0 cpu_id=0
39507              ps-13725 (13725) [005] d..2 29484.482508: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39508 shell svc 13722-13723 ( 1007) [005] d..2 29484.482517: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39509            adbd-23485 ( 1007) [001] d..2 29484.482521: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39510          <idle>-0     (-----) [001] d..1 29484.482527: cpu_idle: state=0 cpu_id=1
39511          <idle>-0     (-----) [000] d.h3 29484.482540: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39512          <idle>-0     (-----) [000] dnh4 29484.482545: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39513          <idle>-0     (-----) [000] .n.1 29484.482550: cpu_idle: state=4294967295 cpu_id=0
39514          <idle>-0     (-----) [000] d..2 29484.482556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39515   kworker/u17:2-23076 (23076) [000] d..2 29484.482563: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39516   kworker/u17:2-23076 (23076) [000] d..3 29484.482568: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39517   kworker/u17:2-23076 (23076) [000] d..2 29484.482585: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39518     kworker/0:0-13450 (13450) [000] d..2 29484.482590: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39519     kworker/0:0-13450 (13450) [000] d..3 29484.482598: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39520          <idle>-0     (-----) [001] .n.1 29484.482603: cpu_idle: state=4294967295 cpu_id=1
39521              ps-13725 (13725) [005] d..2 29484.482606: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39522              ps-13725 (13725) [005] dn.3 29484.482609: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39523          <idle>-0     (-----) [001] d..2 29484.482609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39524     kworker/0:0-13450 (13450) [000] d..2 29484.482610: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39525              ps-13725 (13725) [005] d..2 29484.482611: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39526          <idle>-0     (-----) [000] d..1 29484.482616: cpu_idle: state=0 cpu_id=0
39527 shell svc 13722-13723 ( 1007) [005] d..2 29484.482619: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39528            adbd-23485 ( 1007) [001] d..2 29484.482650: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39529          <idle>-0     (-----) [001] d..1 29484.482657: cpu_idle: state=0 cpu_id=1
39530          <idle>-0     (-----) [000] d.h3 29484.482675: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39531          <idle>-0     (-----) [000] dnh4 29484.482680: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39532          <idle>-0     (-----) [000] .n.1 29484.482684: cpu_idle: state=4294967295 cpu_id=0
39533          <idle>-0     (-----) [000] d..2 29484.482690: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39534   kworker/u17:2-23076 (23076) [000] d..2 29484.482696: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39535   kworker/u17:2-23076 (23076) [000] d..3 29484.482700: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39536              ps-13725 (13725) [005] d..2 29484.482714: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39537   kworker/u17:2-23076 (23076) [000] d..2 29484.482715: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39538              ps-13725 (13725) [005] dn.3 29484.482717: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39539              ps-13725 (13725) [005] d..2 29484.482719: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39540     kworker/0:0-13450 (13450) [000] d..2 29484.482720: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39541 shell svc 13722-13723 ( 1007) [005] d..2 29484.482727: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39542     kworker/0:0-13450 (13450) [000] d..3 29484.482728: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39543          <idle>-0     (-----) [001] .n.1 29484.482733: cpu_idle: state=4294967295 cpu_id=1
39544          <idle>-0     (-----) [001] d..2 29484.482739: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39545     kworker/0:0-13450 (13450) [000] d..2 29484.482741: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39546          <idle>-0     (-----) [000] d..1 29484.482746: cpu_idle: state=0 cpu_id=0
39547            adbd-23485 ( 1007) [001] d..2 29484.482755: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39548          <idle>-0     (-----) [001] d..1 29484.482761: cpu_idle: state=0 cpu_id=1
39549          <idle>-0     (-----) [000] d.h3 29484.482811: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39550          <idle>-0     (-----) [000] dnh4 29484.482816: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39551          <idle>-0     (-----) [000] .n.1 29484.482820: cpu_idle: state=4294967295 cpu_id=0
39552              ps-13725 (13725) [005] d..2 29484.482823: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39553          <idle>-0     (-----) [000] d..2 29484.482827: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39554              ps-13725 (13725) [005] dn.3 29484.482827: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39555              ps-13725 (13725) [005] d..2 29484.482829: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39556   kworker/u17:2-23076 (23076) [000] d..2 29484.482832: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39557 shell svc 13722-13723 ( 1007) [005] d..2 29484.482837: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39558   kworker/u17:2-23076 (23076) [000] d..3 29484.482837: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39559   kworker/u17:2-23076 (23076) [000] d..2 29484.482852: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39560     kworker/0:0-13450 (13450) [000] d..2 29484.482857: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39561     kworker/0:0-13450 (13450) [000] d..3 29484.482865: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39562     kworker/0:0-13450 (13450) [000] d..2 29484.482873: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39563            adbd-23484 ( 1007) [000] d..2 29484.482883: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39564            adbd-23484 ( 1007) [000] d..3 29484.482888: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39565              ps-13725 (13725) [005] d..2 29484.482927: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39566            adbd-23484 ( 1007) [000] d..2 29484.482928: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39567              ps-13725 (13725) [005] dn.3 29484.482931: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39568              ps-13725 (13725) [005] d..2 29484.482933: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39569 shell svc 13722-13723 ( 1007) [005] d..2 29484.482941: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39570            adbd-1007  ( 1007) [000] d..1 29484.482983: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39571            adbd-1007  ( 1007) [000] d..2 29484.482995: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39572          <idle>-0     (-----) [001] .n.1 29484.483000: cpu_idle: state=4294967295 cpu_id=1
39573          <idle>-0     (-----) [001] d..2 29484.483005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39574            adbd-1007  ( 1007) [000] d..2 29484.483026: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39575          <idle>-0     (-----) [000] d..1 29484.483033: cpu_idle: state=0 cpu_id=0
39576              ps-13725 (13725) [005] d..2 29484.483043: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39577              ps-13725 (13725) [005] dn.3 29484.483046: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39578            adbd-23485 ( 1007) [001] d..2 29484.483047: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39579              ps-13725 (13725) [005] d..2 29484.483048: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39580          <idle>-0     (-----) [001] d..1 29484.483053: cpu_idle: state=0 cpu_id=1
39581 shell svc 13722-13723 ( 1007) [005] d..2 29484.483056: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39582          <idle>-0     (-----) [000] d.h3 29484.483060: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39583          <idle>-0     (-----) [000] dnh4 29484.483066: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39584          <idle>-0     (-----) [000] .n.1 29484.483071: cpu_idle: state=4294967295 cpu_id=0
39585          <idle>-0     (-----) [000] d..2 29484.483077: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39586   kworker/u17:2-23076 (23076) [000] d..2 29484.483084: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39587   kworker/u17:2-23076 (23076) [000] d..3 29484.483089: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39588   kworker/u17:2-23076 (23076) [000] d..2 29484.483104: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39589     kworker/0:0-13450 (13450) [000] d..2 29484.483110: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39590     kworker/0:0-13450 (13450) [000] d..3 29484.483118: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39591          <idle>-0     (-----) [001] .n.1 29484.483122: cpu_idle: state=4294967295 cpu_id=1
39592     kworker/0:0-13450 (13450) [000] d..2 29484.483125: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39593          <idle>-0     (-----) [001] d..2 29484.483128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39594          <idle>-0     (-----) [000] d..1 29484.483131: cpu_idle: state=0 cpu_id=0
39595              ps-13725 (13725) [005] d..2 29484.483161: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39596              ps-13725 (13725) [005] dn.3 29484.483165: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39597              ps-13725 (13725) [005] d..2 29484.483167: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39598            adbd-23485 ( 1007) [001] d..2 29484.483170: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39599 shell svc 13722-13723 ( 1007) [005] d..2 29484.483175: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39600          <idle>-0     (-----) [001] d..1 29484.483177: cpu_idle: state=0 cpu_id=1
39601          <idle>-0     (-----) [000] d.h3 29484.483201: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39602          <idle>-0     (-----) [000] dnh4 29484.483206: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39603          <idle>-0     (-----) [000] .n.1 29484.483210: cpu_idle: state=4294967295 cpu_id=0
39604          <idle>-0     (-----) [000] d..2 29484.483215: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39605   kworker/u17:2-23076 (23076) [000] d..2 29484.483222: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39606   kworker/u17:2-23076 (23076) [000] d..3 29484.483227: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39607   kworker/u17:2-23076 (23076) [000] d..2 29484.483242: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39608     kworker/0:0-13450 (13450) [000] d..2 29484.483246: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39609     kworker/0:0-13450 (13450) [000] d..3 29484.483255: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39610          <idle>-0     (-----) [001] .n.1 29484.483260: cpu_idle: state=4294967295 cpu_id=1
39611     kworker/0:0-13450 (13450) [000] d..2 29484.483262: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39612          <idle>-0     (-----) [001] d..2 29484.483266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39613          <idle>-0     (-----) [000] d..1 29484.483267: cpu_idle: state=0 cpu_id=0
39614            adbd-23485 ( 1007) [001] d..2 29484.483279: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39615              ps-13725 (13725) [005] d..2 29484.483281: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39616              ps-13725 (13725) [005] dn.3 29484.483284: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39617          <idle>-0     (-----) [001] d..1 29484.483286: cpu_idle: state=0 cpu_id=1
39618              ps-13725 (13725) [005] d..2 29484.483287: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39619 shell svc 13722-13723 ( 1007) [005] d..2 29484.483294: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39620          <idle>-0     (-----) [000] d.h3 29484.483335: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39621          <idle>-0     (-----) [000] dnh4 29484.483343: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39622          <idle>-0     (-----) [000] .n.1 29484.483347: cpu_idle: state=4294967295 cpu_id=0
39623          <idle>-0     (-----) [000] d..2 29484.483353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39624   kworker/u17:2-23076 (23076) [000] d..2 29484.483359: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39625   kworker/u17:2-23076 (23076) [000] d..3 29484.483363: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39626   kworker/u17:2-23076 (23076) [000] d..2 29484.483378: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39627     kworker/0:0-13450 (13450) [000] d..2 29484.483383: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39628              ps-13725 (13725) [005] d..2 29484.483389: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39629     kworker/0:0-13450 (13450) [000] d..3 29484.483391: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39630              ps-13725 (13725) [005] dn.3 29484.483392: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39631              ps-13725 (13725) [005] d..2 29484.483395: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39632     kworker/0:0-13450 (13450) [000] d..2 29484.483399: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39633 shell svc 13722-13723 ( 1007) [005] d..2 29484.483403: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39634            adbd-23484 ( 1007) [000] d..2 29484.483409: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39635            adbd-23484 ( 1007) [000] d..3 29484.483415: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39636            adbd-23484 ( 1007) [000] d..2 29484.483454: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39637              ps-13725 (13725) [005] d..2 29484.483500: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39638              ps-13725 (13725) [005] dn.3 29484.483504: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39639              ps-13725 (13725) [005] d..2 29484.483506: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39640            adbd-1007  ( 1007) [000] d..1 29484.483508: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39641 shell svc 13722-13723 ( 1007) [005] d..2 29484.483515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39642            adbd-1007  ( 1007) [000] d..2 29484.483521: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39643          <idle>-0     (-----) [001] .n.1 29484.483526: cpu_idle: state=4294967295 cpu_id=1
39644          <idle>-0     (-----) [001] d..2 29484.483532: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39645            adbd-1007  ( 1007) [000] d..2 29484.483547: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39646          <idle>-0     (-----) [000] d..1 29484.483554: cpu_idle: state=0 cpu_id=0
39647            adbd-23485 ( 1007) [001] d..2 29484.483574: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39648          <idle>-0     (-----) [001] d..1 29484.483580: cpu_idle: state=0 cpu_id=1
39649              ps-13725 (13725) [005] d..2 29484.483595: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39650              ps-13725 (13725) [005] dn.3 29484.483598: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39651              ps-13725 (13725) [005] d..2 29484.483601: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39652          <idle>-0     (-----) [000] d.h3 29484.483602: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39653          <idle>-0     (-----) [000] dnh4 29484.483608: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39654 shell svc 13722-13723 ( 1007) [005] d..2 29484.483609: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39655          <idle>-0     (-----) [000] .n.1 29484.483612: cpu_idle: state=4294967295 cpu_id=0
39656          <idle>-0     (-----) [000] d..2 29484.483618: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39657   kworker/u17:2-23076 (23076) [000] d..2 29484.483626: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39658   kworker/u17:2-23076 (23076) [000] d..3 29484.483630: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39659   kworker/u17:2-23076 (23076) [000] d..2 29484.483646: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39660     kworker/0:0-13450 (13450) [000] d..2 29484.483651: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39661     kworker/0:0-13450 (13450) [000] d..3 29484.483660: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39662          <idle>-0     (-----) [001] .n.1 29484.483664: cpu_idle: state=4294967295 cpu_id=1
39663     kworker/0:0-13450 (13450) [000] d..2 29484.483667: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39664          <idle>-0     (-----) [001] d..2 29484.483671: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39665          <idle>-0     (-----) [000] d..1 29484.483672: cpu_idle: state=0 cpu_id=0
39666            adbd-23485 ( 1007) [001] d..2 29484.483713: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39667          <idle>-0     (-----) [001] d..1 29484.483719: cpu_idle: state=0 cpu_id=1
39668              ps-13725 (13725) [005] d..2 29484.483735: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39669              ps-13725 (13725) [005] dn.3 29484.483738: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39670              ps-13725 (13725) [005] d..2 29484.483741: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39671          <idle>-0     (-----) [000] d.h3 29484.483741: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39672          <idle>-0     (-----) [000] dnh4 29484.483746: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39673 shell svc 13722-13723 ( 1007) [005] d..2 29484.483749: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39674          <idle>-0     (-----) [000] .n.1 29484.483750: cpu_idle: state=4294967295 cpu_id=0
39675          <idle>-0     (-----) [000] d..2 29484.483757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39676   kworker/u17:2-23076 (23076) [000] d..2 29484.483762: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39677   kworker/u17:2-23076 (23076) [000] d..3 29484.483767: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39678   kworker/u17:2-23076 (23076) [000] d..2 29484.483782: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39679     kworker/0:0-13450 (13450) [000] d..2 29484.483787: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39680     kworker/0:0-13450 (13450) [000] d..3 29484.483795: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39681          <idle>-0     (-----) [001] .n.1 29484.483800: cpu_idle: state=4294967295 cpu_id=1
39682     kworker/0:0-13450 (13450) [000] d..2 29484.483803: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39683          <idle>-0     (-----) [000] d..1 29484.483807: cpu_idle: state=0 cpu_id=0
39684          <idle>-0     (-----) [001] d..2 29484.483807: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39685            adbd-23485 ( 1007) [001] d..2 29484.483824: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39686          <idle>-0     (-----) [001] d..1 29484.483830: cpu_idle: state=0 cpu_id=1
39687              ps-13725 (13725) [005] d..2 29484.483850: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39688          <idle>-0     (-----) [000] d.h3 29484.483851: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39689              ps-13725 (13725) [005] dn.3 29484.483854: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39690          <idle>-0     (-----) [000] dnh4 29484.483856: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39691              ps-13725 (13725) [005] d..2 29484.483856: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39692          <idle>-0     (-----) [000] .n.1 29484.483860: cpu_idle: state=4294967295 cpu_id=0
39693          <idle>-0     (-----) [000] d..2 29484.483864: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39694 shell svc 13722-13723 ( 1007) [005] d..2 29484.483864: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39695   kworker/u17:2-23076 (23076) [000] d..2 29484.483870: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39696   kworker/u17:2-23076 (23076) [000] d..3 29484.483874: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39697   kworker/u17:2-23076 (23076) [000] d..2 29484.483888: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39698     kworker/0:0-13450 (13450) [000] d..2 29484.483894: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39699     kworker/0:0-13450 (13450) [000] d..3 29484.483902: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39700     kworker/0:0-13450 (13450) [000] d..2 29484.483910: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39701            adbd-23484 ( 1007) [000] d..2 29484.483920: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39702            adbd-23484 ( 1007) [000] d..3 29484.483925: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39703              ps-13725 (13725) [005] d..2 29484.483962: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39704            adbd-23484 ( 1007) [000] d..2 29484.483964: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39705              ps-13725 (13725) [005] dn.3 29484.483966: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39706              ps-13725 (13725) [005] d..2 29484.483968: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39707 shell svc 13722-13723 ( 1007) [005] d..2 29484.483976: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39708            adbd-1007  ( 1007) [000] d..1 29484.484021: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39709            adbd-1007  ( 1007) [000] d..2 29484.484032: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39710          <idle>-0     (-----) [001] .n.1 29484.484036: cpu_idle: state=4294967295 cpu_id=1
39711          <idle>-0     (-----) [001] d..2 29484.484042: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39712            adbd-1007  ( 1007) [000] d..2 29484.484057: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39713          <idle>-0     (-----) [000] d..1 29484.484063: cpu_idle: state=0 cpu_id=0
39714              ps-13725 (13725) [005] d..2 29484.484064: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39715              ps-13725 (13725) [005] dn.3 29484.484068: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39716              ps-13725 (13725) [005] d..2 29484.484070: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39717 shell svc 13722-13723 ( 1007) [005] d..2 29484.484079: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39718            adbd-23485 ( 1007) [001] d..2 29484.484084: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39719          <idle>-0     (-----) [001] d..1 29484.484090: cpu_idle: state=0 cpu_id=1
39720          <idle>-0     (-----) [000] d.h3 29484.484102: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39721          <idle>-0     (-----) [000] dnh4 29484.484107: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39722          <idle>-0     (-----) [000] .n.1 29484.484112: cpu_idle: state=4294967295 cpu_id=0
39723          <idle>-0     (-----) [000] d..2 29484.484117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39724   kworker/u17:2-23076 (23076) [000] d..2 29484.484124: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39725   kworker/u17:2-23076 (23076) [000] d..3 29484.484129: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39726   kworker/u17:2-23076 (23076) [000] d..2 29484.484147: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39727     kworker/0:0-13450 (13450) [000] d..2 29484.484152: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39728     kworker/0:0-13450 (13450) [000] d..3 29484.484160: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39729          <idle>-0     (-----) [001] .n.1 29484.484165: cpu_idle: state=4294967295 cpu_id=1
39730     kworker/0:0-13450 (13450) [000] d..2 29484.484168: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39731          <idle>-0     (-----) [001] d..2 29484.484171: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39732              ps-13725 (13725) [005] d..2 29484.484172: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39733          <idle>-0     (-----) [000] d..1 29484.484172: cpu_idle: state=0 cpu_id=0
39734              ps-13725 (13725) [005] dn.3 29484.484175: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39735              ps-13725 (13725) [005] d..2 29484.484178: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39736 shell svc 13722-13723 ( 1007) [005] d..2 29484.484185: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39737            adbd-23485 ( 1007) [001] d..2 29484.484213: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39738          <idle>-0     (-----) [001] d..1 29484.484219: cpu_idle: state=0 cpu_id=1
39739          <idle>-0     (-----) [000] d.h3 29484.484240: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39740          <idle>-0     (-----) [000] dnh4 29484.484245: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39741          <idle>-0     (-----) [000] .n.1 29484.484249: cpu_idle: state=4294967295 cpu_id=0
39742          <idle>-0     (-----) [000] d..2 29484.484253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39743   kworker/u17:2-23076 (23076) [000] d..2 29484.484259: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39744   kworker/u17:2-23076 (23076) [000] d..3 29484.484263: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39745              ps-13725 (13725) [005] d..2 29484.484275: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39746   kworker/u17:2-23076 (23076) [000] d..2 29484.484278: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39747              ps-13725 (13725) [005] dn.3 29484.484278: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39748              ps-13725 (13725) [005] d..2 29484.484282: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39749     kworker/0:0-13450 (13450) [000] d..2 29484.484283: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39750 shell svc 13722-13723 ( 1007) [005] d..2 29484.484290: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39751     kworker/0:0-13450 (13450) [000] d..3 29484.484292: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39752          <idle>-0     (-----) [001] .n.1 29484.484297: cpu_idle: state=4294967295 cpu_id=1
39753     kworker/0:0-13450 (13450) [000] d..2 29484.484299: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39754          <idle>-0     (-----) [001] d..2 29484.484303: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39755          <idle>-0     (-----) [000] d..1 29484.484303: cpu_idle: state=0 cpu_id=0
39756            adbd-23485 ( 1007) [001] d..2 29484.484317: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39757          <idle>-0     (-----) [001] d..1 29484.484322: cpu_idle: state=0 cpu_id=1
39758          <idle>-0     (-----) [000] d.h3 29484.484362: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39759          <idle>-0     (-----) [000] dnh4 29484.484367: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39760          <idle>-0     (-----) [000] .n.1 29484.484372: cpu_idle: state=4294967295 cpu_id=0
39761          <idle>-0     (-----) [000] d..2 29484.484376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39762              ps-13725 (13725) [005] d..2 29484.484380: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39763   kworker/u17:2-23076 (23076) [000] d..2 29484.484381: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39764              ps-13725 (13725) [005] dn.3 29484.484384: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39765   kworker/u17:2-23076 (23076) [000] d..3 29484.484386: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39766              ps-13725 (13725) [005] d..2 29484.484386: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39767 shell svc 13722-13723 ( 1007) [005] d..2 29484.484394: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39768   kworker/u17:2-23076 (23076) [000] d..2 29484.484401: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39769     kworker/0:0-13450 (13450) [000] d..2 29484.484406: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39770     kworker/0:0-13450 (13450) [000] d..3 29484.484414: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39771     kworker/0:0-13450 (13450) [000] d..2 29484.484421: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39772            adbd-23484 ( 1007) [000] d..2 29484.484431: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39773            adbd-23484 ( 1007) [000] d..3 29484.484437: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39774            adbd-23484 ( 1007) [000] d..2 29484.484477: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39775              ps-13725 (13725) [005] d..2 29484.484492: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39776              ps-13725 (13725) [005] dn.3 29484.484495: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39777              ps-13725 (13725) [005] d..2 29484.484497: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39778 shell svc 13722-13723 ( 1007) [005] d..2 29484.484506: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39779            adbd-1007  ( 1007) [000] d..1 29484.484532: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39780            adbd-1007  ( 1007) [000] d..2 29484.484542: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39781          <idle>-0     (-----) [001] .n.1 29484.484547: cpu_idle: state=4294967295 cpu_id=1
39782          <idle>-0     (-----) [001] d..2 29484.484553: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39783            adbd-1007  ( 1007) [000] d..2 29484.484568: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39784          <idle>-0     (-----) [000] d..1 29484.484573: cpu_idle: state=0 cpu_id=0
39785            adbd-23485 ( 1007) [001] d..2 29484.484594: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39786          <idle>-0     (-----) [001] d..1 29484.484601: cpu_idle: state=0 cpu_id=1
39787              ps-13725 (13725) [005] d..2 29484.484606: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39788              ps-13725 (13725) [005] dn.3 29484.484610: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39789              ps-13725 (13725) [005] d..2 29484.484612: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39790 shell svc 13722-13723 ( 1007) [005] d..2 29484.484620: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39791          <idle>-0     (-----) [000] d.h3 29484.484621: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39792          <idle>-0     (-----) [000] dnh4 29484.484626: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39793          <idle>-0     (-----) [000] .n.1 29484.484631: cpu_idle: state=4294967295 cpu_id=0
39794          <idle>-0     (-----) [000] d..2 29484.484636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39795   kworker/u17:2-23076 (23076) [000] d..2 29484.484643: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39796   kworker/u17:2-23076 (23076) [000] d..3 29484.484647: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39797   kworker/u17:2-23076 (23076) [000] d..2 29484.484663: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39798     kworker/0:0-13450 (13450) [000] d..2 29484.484668: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39799     kworker/0:0-13450 (13450) [000] d..3 29484.484677: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39800          <idle>-0     (-----) [001] .n.1 29484.484682: cpu_idle: state=4294967295 cpu_id=1
39801     kworker/0:0-13450 (13450) [000] d..2 29484.484685: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39802          <idle>-0     (-----) [001] d..2 29484.484688: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39803          <idle>-0     (-----) [000] d..1 29484.484689: cpu_idle: state=0 cpu_id=0
39804              ps-13725 (13725) [005] d..2 29484.484714: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39805              ps-13725 (13725) [005] dn.3 29484.484718: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39806              ps-13725 (13725) [005] d..2 29484.484720: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39807 shell svc 13722-13723 ( 1007) [005] d..2 29484.484729: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39808            adbd-23485 ( 1007) [001] d..2 29484.484729: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39809          <idle>-0     (-----) [001] d..1 29484.484735: cpu_idle: state=0 cpu_id=1
39810          <idle>-0     (-----) [000] d.h3 29484.484759: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39811          <idle>-0     (-----) [000] dnh4 29484.484763: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39812          <idle>-0     (-----) [000] .n.1 29484.484768: cpu_idle: state=4294967295 cpu_id=0
39813          <idle>-0     (-----) [000] d..2 29484.484772: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39814   kworker/u17:2-23076 (23076) [000] d..2 29484.484778: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39815   kworker/u17:2-23076 (23076) [000] d..3 29484.484783: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39816   kworker/u17:2-23076 (23076) [000] d..2 29484.484798: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39817     kworker/0:0-13450 (13450) [000] d..2 29484.484803: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39818     kworker/0:0-13450 (13450) [000] d..3 29484.484811: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39819          <idle>-0     (-----) [001] .n.1 29484.484816: cpu_idle: state=4294967295 cpu_id=1
39820     kworker/0:0-13450 (13450) [000] d..2 29484.484818: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39821              ps-13725 (13725) [005] d..2 29484.484821: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39822          <idle>-0     (-----) [001] d..2 29484.484821: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39823          <idle>-0     (-----) [000] d..1 29484.484822: cpu_idle: state=0 cpu_id=0
39824              ps-13725 (13725) [005] dn.3 29484.484824: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39825              ps-13725 (13725) [005] d..2 29484.484827: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39826 shell svc 13722-13723 ( 1007) [005] d..2 29484.484835: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39827            adbd-23485 ( 1007) [001] d..2 29484.484836: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39828          <idle>-0     (-----) [001] d..1 29484.484842: cpu_idle: state=0 cpu_id=1
39829              ps-13725 (13725) [005] d..2 29484.484935: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39830              ps-13725 (13725) [005] dn.3 29484.484938: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39831              ps-13725 (13725) [005] d..2 29484.484940: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39832          <idle>-0     (-----) [000] d.h3 29484.484942: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39833          <idle>-0     (-----) [000] dnh4 29484.484947: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39834 shell svc 13722-13723 ( 1007) [005] d..2 29484.484949: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39835          <idle>-0     (-----) [000] .n.1 29484.484951: cpu_idle: state=4294967295 cpu_id=0
39836          <idle>-0     (-----) [000] d..2 29484.484955: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39837   kworker/u17:2-23076 (23076) [000] d..2 29484.484961: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39838   kworker/u17:2-23076 (23076) [000] d..3 29484.484965: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39839   kworker/u17:2-23076 (23076) [000] d..2 29484.484980: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39840     kworker/0:0-13450 (13450) [000] d..2 29484.484985: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39841     kworker/0:0-13450 (13450) [000] d..3 29484.484994: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39842     kworker/0:0-13450 (13450) [000] d..2 29484.485001: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39843            adbd-23484 ( 1007) [000] d..2 29484.485011: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39844            adbd-23484 ( 1007) [000] d..3 29484.485016: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39845              ps-13725 (13725) [005] d..2 29484.485044: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39846              ps-13725 (13725) [005] dn.3 29484.485047: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39847              ps-13725 (13725) [005] d..2 29484.485050: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39848            adbd-23484 ( 1007) [000] d..2 29484.485057: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39849 shell svc 13722-13723 ( 1007) [005] d..2 29484.485058: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39850            adbd-1007  ( 1007) [000] d..1 29484.485112: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39851            adbd-1007  ( 1007) [000] d..2 29484.485122: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39852          <idle>-0     (-----) [001] .n.1 29484.485127: cpu_idle: state=4294967295 cpu_id=1
39853          <idle>-0     (-----) [001] d..2 29484.485133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39854            adbd-1007  ( 1007) [000] d..2 29484.485147: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39855              ps-13725 (13725) [005] d..2 29484.485149: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39856              ps-13725 (13725) [005] dn.3 29484.485152: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39857          <idle>-0     (-----) [000] d..1 29484.485153: cpu_idle: state=0 cpu_id=0
39858              ps-13725 (13725) [005] d..2 29484.485155: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39859 shell svc 13722-13723 ( 1007) [005] d..2 29484.485163: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39860            adbd-23485 ( 1007) [001] d..2 29484.485175: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39861          <idle>-0     (-----) [001] d..1 29484.485181: cpu_idle: state=0 cpu_id=1
39862          <idle>-0     (-----) [000] d.h3 29484.485186: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39863          <idle>-0     (-----) [000] dnh4 29484.485192: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39864          <idle>-0     (-----) [000] .n.1 29484.485196: cpu_idle: state=4294967295 cpu_id=0
39865          <idle>-0     (-----) [000] d..2 29484.485201: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39866   kworker/u17:2-23076 (23076) [000] d..2 29484.485209: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39867   kworker/u17:2-23076 (23076) [000] d..3 29484.485214: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39868   kworker/u17:2-23076 (23076) [000] d..2 29484.485230: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39869     kworker/0:0-13450 (13450) [000] d..2 29484.485235: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39870     kworker/0:0-13450 (13450) [000] d..3 29484.485243: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39871          <idle>-0     (-----) [001] .n.1 29484.485248: cpu_idle: state=4294967295 cpu_id=1
39872     kworker/0:0-13450 (13450) [000] d..2 29484.485251: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39873              ps-13725 (13725) [005] d..2 29484.485253: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39874          <idle>-0     (-----) [001] d..2 29484.485254: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39875          <idle>-0     (-----) [000] d..1 29484.485255: cpu_idle: state=0 cpu_id=0
39876              ps-13725 (13725) [005] dn.3 29484.485256: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39877              ps-13725 (13725) [005] d..2 29484.485259: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39878 shell svc 13722-13723 ( 1007) [005] d..2 29484.485267: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39879            adbd-23485 ( 1007) [001] d..2 29484.485296: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39880          <idle>-0     (-----) [001] d..1 29484.485303: cpu_idle: state=0 cpu_id=1
39881          <idle>-0     (-----) [000] d.h3 29484.485324: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39882          <idle>-0     (-----) [000] dnh4 29484.485328: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39883          <idle>-0     (-----) [000] .n.1 29484.485332: cpu_idle: state=4294967295 cpu_id=0
39884          <idle>-0     (-----) [000] d..2 29484.485338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39885   kworker/u17:2-23076 (23076) [000] d..2 29484.485344: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39886   kworker/u17:2-23076 (23076) [000] d..3 29484.485348: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39887              ps-13725 (13725) [005] d..2 29484.485354: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39888              ps-13725 (13725) [005] dn.3 29484.485357: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39889              ps-13725 (13725) [005] d..2 29484.485360: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39890   kworker/u17:2-23076 (23076) [000] d..2 29484.485363: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39891 shell svc 13722-13723 ( 1007) [005] d..2 29484.485367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39892     kworker/0:0-13450 (13450) [000] d..2 29484.485368: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39893     kworker/0:0-13450 (13450) [000] d..3 29484.485376: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39894          <idle>-0     (-----) [001] .n.1 29484.485381: cpu_idle: state=4294967295 cpu_id=1
39895     kworker/0:0-13450 (13450) [000] d..2 29484.485384: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39896          <idle>-0     (-----) [001] d..2 29484.485387: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39897          <idle>-0     (-----) [000] d..1 29484.485388: cpu_idle: state=0 cpu_id=0
39898            adbd-23485 ( 1007) [001] d..2 29484.485401: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39899          <idle>-0     (-----) [001] d..1 29484.485408: cpu_idle: state=0 cpu_id=1
39900              ps-13725 (13725) [005] d..2 29484.485459: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39901              ps-13725 (13725) [005] dn.3 29484.485463: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39902              ps-13725 (13725) [005] d..2 29484.485465: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39903 shell svc 13722-13723 ( 1007) [005] d..2 29484.485473: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39904          <idle>-0     (-----) [000] d.h3 29484.485482: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39905          <idle>-0     (-----) [000] dnh4 29484.485490: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39906          <idle>-0     (-----) [000] .n.1 29484.485494: cpu_idle: state=4294967295 cpu_id=0
39907          <idle>-0     (-----) [000] d..2 29484.485498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39908   kworker/u17:2-23076 (23076) [000] d..2 29484.485504: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39909   kworker/u17:2-23076 (23076) [000] d..3 29484.485509: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39910   kworker/u17:2-23076 (23076) [000] d..2 29484.485524: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39911     kworker/0:0-13450 (13450) [000] d..2 29484.485530: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39912     kworker/0:0-13450 (13450) [000] d..3 29484.485538: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39913     kworker/0:0-13450 (13450) [000] d..2 29484.485545: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39914            adbd-23484 ( 1007) [000] d..2 29484.485555: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39915              ps-13725 (13725) [005] d..2 29484.485555: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39916              ps-13725 (13725) [005] dn.3 29484.485558: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39917              ps-13725 (13725) [005] d..2 29484.485560: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39918            adbd-23484 ( 1007) [000] d..3 29484.485560: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39919 shell svc 13722-13723 ( 1007) [005] d..2 29484.485568: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39920            adbd-23484 ( 1007) [000] d..2 29484.485600: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39921              ps-13725 (13725) [005] d..2 29484.485655: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39922            adbd-1007  ( 1007) [000] d..1 29484.485656: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39923              ps-13725 (13725) [005] dn.3 29484.485659: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39924              ps-13725 (13725) [005] d..2 29484.485661: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39925            adbd-1007  ( 1007) [000] d..2 29484.485669: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39926 shell svc 13722-13723 ( 1007) [005] d..2 29484.485670: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39927          <idle>-0     (-----) [001] .n.1 29484.485674: cpu_idle: state=4294967295 cpu_id=1
39928          <idle>-0     (-----) [001] d..2 29484.485679: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39929            adbd-1007  ( 1007) [000] d..2 29484.485697: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39930          <idle>-0     (-----) [000] d..1 29484.485702: cpu_idle: state=0 cpu_id=0
39931            adbd-23485 ( 1007) [001] d..2 29484.485722: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39932          <idle>-0     (-----) [001] d..1 29484.485729: cpu_idle: state=0 cpu_id=1
39933          <idle>-0     (-----) [000] d.h3 29484.485748: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39934          <idle>-0     (-----) [000] dnh4 29484.485753: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39935              ps-13725 (13725) [005] d..2 29484.485754: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39936              ps-13725 (13725) [005] dn.3 29484.485757: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39937          <idle>-0     (-----) [000] .n.1 29484.485758: cpu_idle: state=4294967295 cpu_id=0
39938              ps-13725 (13725) [005] d..2 29484.485760: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39939          <idle>-0     (-----) [000] d..2 29484.485763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39940 shell svc 13722-13723 ( 1007) [005] d..2 29484.485767: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39941   kworker/u17:2-23076 (23076) [000] d..2 29484.485770: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39942   kworker/u17:2-23076 (23076) [000] d..3 29484.485775: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39943   kworker/u17:2-23076 (23076) [000] d..2 29484.485790: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39944     kworker/0:0-13450 (13450) [000] d..2 29484.485795: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39945     kworker/0:0-13450 (13450) [000] d..3 29484.485804: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39946          <idle>-0     (-----) [001] .n.1 29484.485809: cpu_idle: state=4294967295 cpu_id=1
39947     kworker/0:0-13450 (13450) [000] d..2 29484.485811: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39948          <idle>-0     (-----) [001] d..2 29484.485814: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39949          <idle>-0     (-----) [000] d..1 29484.485816: cpu_idle: state=0 cpu_id=0
39950            adbd-23485 ( 1007) [001] d..2 29484.485857: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39951          <idle>-0     (-----) [001] d..1 29484.485863: cpu_idle: state=0 cpu_id=1
39952              ps-13725 (13725) [005] d..2 29484.485865: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39953              ps-13725 (13725) [005] dn.3 29484.485868: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39954              ps-13725 (13725) [005] d..2 29484.485870: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39955 shell svc 13722-13723 ( 1007) [005] d..2 29484.485878: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39956          <idle>-0     (-----) [000] d.h3 29484.485884: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39957          <idle>-0     (-----) [000] dnh4 29484.485889: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39958          <idle>-0     (-----) [000] .n.1 29484.485893: cpu_idle: state=4294967295 cpu_id=0
39959          <idle>-0     (-----) [000] d..2 29484.485897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39960   kworker/u17:2-23076 (23076) [000] d..2 29484.485903: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39961   kworker/u17:2-23076 (23076) [000] d..3 29484.485907: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39962   kworker/u17:2-23076 (23076) [000] d..2 29484.485923: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39963     kworker/0:0-13450 (13450) [000] d..2 29484.485928: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39964     kworker/0:0-13450 (13450) [000] d..3 29484.485936: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
39965          <idle>-0     (-----) [001] .n.1 29484.485941: cpu_idle: state=4294967295 cpu_id=1
39966     kworker/0:0-13450 (13450) [000] d..2 29484.485943: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39967          <idle>-0     (-----) [001] d..2 29484.485947: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
39968          <idle>-0     (-----) [000] d..1 29484.485947: cpu_idle: state=0 cpu_id=0
39969            adbd-23485 ( 1007) [001] d..2 29484.485961: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39970              ps-13725 (13725) [005] d..2 29484.485963: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39971              ps-13725 (13725) [005] dn.3 29484.485966: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39972          <idle>-0     (-----) [001] d..1 29484.485967: cpu_idle: state=0 cpu_id=1
39973              ps-13725 (13725) [005] d..2 29484.485969: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39974 shell svc 13722-13723 ( 1007) [005] d..2 29484.485977: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39975          <idle>-0     (-----) [000] d.h3 29484.486045: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39976          <idle>-0     (-----) [000] dnh4 29484.486050: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
39977              ps-13725 (13725) [005] d..2 29484.486052: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39978          <idle>-0     (-----) [000] .n.1 29484.486054: cpu_idle: state=4294967295 cpu_id=0
39979              ps-13725 (13725) [005] dn.3 29484.486055: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39980              ps-13725 (13725) [005] d..2 29484.486058: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39981          <idle>-0     (-----) [000] d..2 29484.486059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
39982   kworker/u17:2-23076 (23076) [000] d..2 29484.486064: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39983 shell svc 13722-13723 ( 1007) [005] d..2 29484.486065: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39984   kworker/u17:2-23076 (23076) [000] d..3 29484.486069: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
39985   kworker/u17:2-23076 (23076) [000] d..2 29484.486084: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
39986     kworker/0:0-13450 (13450) [000] d..2 29484.486089: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
39987     kworker/0:0-13450 (13450) [000] d..3 29484.486097: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
39988     kworker/0:0-13450 (13450) [000] d..2 29484.486104: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
39989            adbd-23484 ( 1007) [000] d..2 29484.486114: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
39990            adbd-23484 ( 1007) [000] d..3 29484.486119: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
39991              ps-13725 (13725) [005] d..2 29484.486124: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39992              ps-13725 (13725) [005] dn.3 29484.486127: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39993              ps-13725 (13725) [005] d..2 29484.486130: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
39994 shell svc 13722-13723 ( 1007) [005] d..2 29484.486138: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
39995            adbd-23484 ( 1007) [000] d..2 29484.486159: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
39996            adbd-1007  ( 1007) [000] d..1 29484.486215: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
39997              ps-13725 (13725) [005] d..2 29484.486220: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39998              ps-13725 (13725) [005] dn.3 29484.486223: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
39999            adbd-1007  ( 1007) [000] d..2 29484.486225: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40000              ps-13725 (13725) [005] d..2 29484.486225: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40001          <idle>-0     (-----) [001] .n.1 29484.486230: cpu_idle: state=4294967295 cpu_id=1
40002 shell svc 13722-13723 ( 1007) [005] d..2 29484.486233: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40003          <idle>-0     (-----) [001] d..2 29484.486235: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40004            adbd-1007  ( 1007) [000] d..2 29484.486250: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40005          <idle>-0     (-----) [000] d..1 29484.486256: cpu_idle: state=0 cpu_id=0
40006            adbd-23485 ( 1007) [001] d..2 29484.486277: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40007          <idle>-0     (-----) [001] d..1 29484.486283: cpu_idle: state=0 cpu_id=1
40008          <idle>-0     (-----) [000] d.h3 29484.486290: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40009          <idle>-0     (-----) [000] dnh4 29484.486295: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40010          <idle>-0     (-----) [000] .n.1 29484.486300: cpu_idle: state=4294967295 cpu_id=0
40011          <idle>-0     (-----) [000] d..2 29484.486305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40012   kworker/u17:2-23076 (23076) [000] d..2 29484.486311: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40013   kworker/u17:2-23076 (23076) [000] d..3 29484.486316: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40014              ps-13725 (13725) [005] d..2 29484.486324: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40015              ps-13725 (13725) [005] dn.3 29484.486327: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40016              ps-13725 (13725) [005] d..2 29484.486329: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40017   kworker/u17:2-23076 (23076) [000] d..2 29484.486332: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40018     kworker/0:0-13450 (13450) [000] d..2 29484.486337: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40019 shell svc 13722-13723 ( 1007) [005] d..2 29484.486338: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40020     kworker/0:0-13450 (13450) [000] d..3 29484.486345: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40021          <idle>-0     (-----) [001] .n.1 29484.486350: cpu_idle: state=4294967295 cpu_id=1
40022     kworker/0:0-13450 (13450) [000] d..2 29484.486353: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40023          <idle>-0     (-----) [001] d..2 29484.486356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40024          <idle>-0     (-----) [000] d..1 29484.486357: cpu_idle: state=0 cpu_id=0
40025            adbd-23485 ( 1007) [001] d..2 29484.486399: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40026          <idle>-0     (-----) [001] d..1 29484.486405: cpu_idle: state=0 cpu_id=1
40027              ps-13725 (13725) [005] d..2 29484.486425: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40028          <idle>-0     (-----) [000] d.h3 29484.486428: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40029              ps-13725 (13725) [005] dn.3 29484.486428: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40030              ps-13725 (13725) [005] d..2 29484.486431: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40031          <idle>-0     (-----) [000] dnh4 29484.486433: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40032          <idle>-0     (-----) [000] .n.1 29484.486437: cpu_idle: state=4294967295 cpu_id=0
40033 shell svc 13722-13723 ( 1007) [005] d..2 29484.486439: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40034          <idle>-0     (-----) [000] d..2 29484.486441: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40035   kworker/u17:2-23076 (23076) [000] d..2 29484.486447: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40036   kworker/u17:2-23076 (23076) [000] d..3 29484.486451: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40037   kworker/u17:2-23076 (23076) [000] d..2 29484.486466: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40038     kworker/0:0-13450 (13450) [000] d..2 29484.486471: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40039     kworker/0:0-13450 (13450) [000] d..3 29484.486479: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40040          <idle>-0     (-----) [001] .n.1 29484.486484: cpu_idle: state=4294967295 cpu_id=1
40041     kworker/0:0-13450 (13450) [000] d..2 29484.486486: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40042          <idle>-0     (-----) [001] d..2 29484.486489: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40043          <idle>-0     (-----) [000] d..1 29484.486490: cpu_idle: state=0 cpu_id=0
40044            adbd-23485 ( 1007) [001] d..2 29484.486503: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40045          <idle>-0     (-----) [001] d..1 29484.486510: cpu_idle: state=0 cpu_id=1
40046              ps-13725 (13725) [005] d..2 29484.486529: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40047              ps-13725 (13725) [005] dn.3 29484.486532: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40048              ps-13725 (13725) [005] d..2 29484.486534: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40049 shell svc 13722-13723 ( 1007) [005] d..2 29484.486542: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40050          <idle>-0     (-----) [000] d.h3 29484.486617: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40051          <idle>-0     (-----) [000] dnh4 29484.486622: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40052          <idle>-0     (-----) [000] .n.1 29484.486626: cpu_idle: state=4294967295 cpu_id=0
40053          <idle>-0     (-----) [000] d..2 29484.486630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40054              ps-13725 (13725) [005] d..2 29484.486635: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40055   kworker/u17:2-23076 (23076) [000] d..2 29484.486636: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40056              ps-13725 (13725) [005] dn.3 29484.486639: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40057   kworker/u17:2-23076 (23076) [000] d..3 29484.486640: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40058              ps-13725 (13725) [005] d..2 29484.486641: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40059 shell svc 13722-13723 ( 1007) [005] d..2 29484.486649: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40060   kworker/u17:2-23076 (23076) [000] d..2 29484.486655: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40061     kworker/0:0-13450 (13450) [000] d..2 29484.486660: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40062     kworker/0:0-13450 (13450) [000] d..3 29484.486669: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40063     kworker/0:0-13450 (13450) [000] d..2 29484.486676: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40064            adbd-23484 ( 1007) [000] d..2 29484.486686: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40065            adbd-23484 ( 1007) [000] d..3 29484.486691: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40066            adbd-23484 ( 1007) [000] d..2 29484.486732: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40067              ps-13725 (13725) [005] d..2 29484.486735: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40068              ps-13725 (13725) [005] dn.3 29484.486738: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40069              ps-13725 (13725) [005] d..2 29484.486741: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40070 shell svc 13722-13723 ( 1007) [005] d..2 29484.486749: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40071            adbd-1007  ( 1007) [000] d..1 29484.486788: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40072            adbd-1007  ( 1007) [000] d..2 29484.486799: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40073          <idle>-0     (-----) [001] .n.1 29484.486804: cpu_idle: state=4294967295 cpu_id=1
40074          <idle>-0     (-----) [001] d..2 29484.486809: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40075            adbd-1007  ( 1007) [000] d..2 29484.486824: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40076          <idle>-0     (-----) [000] d..1 29484.486830: cpu_idle: state=0 cpu_id=0
40077              ps-13725 (13725) [005] d..2 29484.486840: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40078              ps-13725 (13725) [005] dn.3 29484.486844: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40079              ps-13725 (13725) [005] d..2 29484.486846: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40080            adbd-23485 ( 1007) [001] d..2 29484.486850: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40081 shell svc 13722-13723 ( 1007) [005] d..2 29484.486854: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40082          <idle>-0     (-----) [001] d..1 29484.486857: cpu_idle: state=0 cpu_id=1
40083          <idle>-0     (-----) [000] d.h3 29484.486874: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40084          <idle>-0     (-----) [000] dnh4 29484.486879: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40085          <idle>-0     (-----) [000] .n.1 29484.486884: cpu_idle: state=4294967295 cpu_id=0
40086          <idle>-0     (-----) [000] d..2 29484.486888: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40087   kworker/u17:2-23076 (23076) [000] d..2 29484.486896: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40088   kworker/u17:2-23076 (23076) [000] d..3 29484.486901: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40089   kworker/u17:2-23076 (23076) [000] d..2 29484.486916: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40090     kworker/0:0-13450 (13450) [000] d..2 29484.486921: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40091     kworker/0:0-13450 (13450) [000] d..3 29484.486929: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40092          <idle>-0     (-----) [001] .n.1 29484.486934: cpu_idle: state=4294967295 cpu_id=1
40093     kworker/0:0-13450 (13450) [000] d..2 29484.486937: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40094          <idle>-0     (-----) [001] d..2 29484.486940: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40095          <idle>-0     (-----) [000] d..1 29484.486941: cpu_idle: state=0 cpu_id=0
40096              ps-13725 (13725) [005] d..2 29484.486943: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40097              ps-13725 (13725) [005] dn.3 29484.486946: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40098              ps-13725 (13725) [005] d..2 29484.486949: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40099 shell svc 13722-13723 ( 1007) [005] d..2 29484.486956: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40100            adbd-23485 ( 1007) [001] d..2 29484.486981: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40101          <idle>-0     (-----) [001] d..1 29484.486987: cpu_idle: state=0 cpu_id=1
40102          <idle>-0     (-----) [000] d.h3 29484.487007: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40103          <idle>-0     (-----) [000] dnh4 29484.487012: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40104          <idle>-0     (-----) [000] .n.1 29484.487016: cpu_idle: state=4294967295 cpu_id=0
40105          <idle>-0     (-----) [000] d..2 29484.487020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40106   kworker/u17:2-23076 (23076) [000] d..2 29484.487026: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40107   kworker/u17:2-23076 (23076) [000] d..3 29484.487031: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40108              ps-13725 (13725) [005] d..2 29484.487040: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40109              ps-13725 (13725) [005] dn.3 29484.487043: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40110   kworker/u17:2-23076 (23076) [000] d..2 29484.487046: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40111              ps-13725 (13725) [005] d..2 29484.487046: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40112     kworker/0:0-13450 (13450) [000] d..2 29484.487050: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40113 shell svc 13722-13723 ( 1007) [005] d..2 29484.487054: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40114     kworker/0:0-13450 (13450) [000] d..3 29484.487059: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40115          <idle>-0     (-----) [001] .n.1 29484.487063: cpu_idle: state=4294967295 cpu_id=1
40116          <idle>-0     (-----) [001] d..2 29484.487070: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40117     kworker/0:0-13450 (13450) [000] d.s2 29484.487074: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
40118     kworker/0:0-13450 (13450) [000] dns3 29484.487083: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
40119            adbd-23485 ( 1007) [001] d..2 29484.487104: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40120     kworker/0:0-13450 (13450) [000] d..2 29484.487107: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40121          <idle>-0     (-----) [000] d..1 29484.487115: cpu_idle: state=0 cpu_id=0
40122     rcu_preempt-7     (    7) [001] d..2 29484.487122: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40123          <idle>-0     (-----) [001] d..1 29484.487128: cpu_idle: state=0 cpu_id=1
40124              ps-13725 (13725) [005] d..2 29484.487154: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40125              ps-13725 (13725) [005] dn.3 29484.487157: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40126              ps-13725 (13725) [005] d..2 29484.487160: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40127 shell svc 13722-13723 ( 1007) [005] d..2 29484.487168: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40128          <idle>-0     (-----) [000] d.h3 29484.487201: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40129          <idle>-0     (-----) [000] dnh4 29484.487206: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40130          <idle>-0     (-----) [000] .n.1 29484.487211: cpu_idle: state=4294967295 cpu_id=0
40131          <idle>-0     (-----) [000] d..2 29484.487217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40132   kworker/u17:2-23076 (23076) [000] d..2 29484.487223: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40133   kworker/u17:2-23076 (23076) [000] d..3 29484.487227: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40134   kworker/u17:2-23076 (23076) [000] d..2 29484.487242: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40135     kworker/0:0-13450 (13450) [000] d..2 29484.487247: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40136     kworker/0:0-13450 (13450) [000] d..3 29484.487256: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40137     kworker/0:0-13450 (13450) [000] d..2 29484.487263: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40138            adbd-23484 ( 1007) [000] d..2 29484.487273: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40139            adbd-23484 ( 1007) [000] d..3 29484.487278: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40140              ps-13725 (13725) [005] d..2 29484.487281: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40141              ps-13725 (13725) [005] dn.3 29484.487284: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40142              ps-13725 (13725) [005] d..2 29484.487287: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40143 shell svc 13722-13723 ( 1007) [005] d..2 29484.487295: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40144            adbd-23484 ( 1007) [000] d..2 29484.487317: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40145              ps-13725 (13725) [005] d..2 29484.487353: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40146              ps-13725 (13725) [005] dn.3 29484.487356: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40147              ps-13725 (13725) [005] d..2 29484.487358: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40148 shell svc 13722-13723 ( 1007) [005] d..2 29484.487365: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40149            adbd-1007  ( 1007) [000] d..1 29484.487374: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40150            adbd-1007  ( 1007) [000] d..2 29484.487384: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40151          <idle>-0     (-----) [001] .n.1 29484.487388: cpu_idle: state=4294967295 cpu_id=1
40152          <idle>-0     (-----) [001] d..2 29484.487394: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40153            adbd-1007  ( 1007) [000] d..2 29484.487409: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40154          <idle>-0     (-----) [000] d..1 29484.487418: cpu_idle: state=0 cpu_id=0
40155              ps-13725 (13725) [005] d..2 29484.487420: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40156              ps-13725 (13725) [005] dn.3 29484.487423: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40157              ps-13725 (13725) [005] d..2 29484.487425: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40158 shell svc 13722-13723 ( 1007) [005] d..2 29484.487433: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40159            adbd-23485 ( 1007) [001] d..2 29484.487437: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40160          <idle>-0     (-----) [001] d..1 29484.487443: cpu_idle: state=0 cpu_id=1
40161          <idle>-0     (-----) [000] d.h3 29484.487456: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40162          <idle>-0     (-----) [000] dnh4 29484.487461: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40163          <idle>-0     (-----) [000] .n.1 29484.487466: cpu_idle: state=4294967295 cpu_id=0
40164          <idle>-0     (-----) [000] d..2 29484.487472: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40165   kworker/u17:2-23076 (23076) [000] d..2 29484.487479: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40166   kworker/u17:2-23076 (23076) [000] d..3 29484.487484: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40167              ps-13725 (13725) [005] d..2 29484.487487: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40168              ps-13725 (13725) [005] dn.3 29484.487490: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40169              ps-13725 (13725) [005] d..2 29484.487492: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40170   kworker/u17:2-23076 (23076) [000] d..2 29484.487499: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40171 shell svc 13722-13723 ( 1007) [005] d..2 29484.487499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40172     kworker/0:0-13450 (13450) [000] d..2 29484.487504: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40173     kworker/0:0-13450 (13450) [000] d..3 29484.487513: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40174          <idle>-0     (-----) [001] .n.1 29484.487517: cpu_idle: state=4294967295 cpu_id=1
40175     kworker/0:0-13450 (13450) [000] d..2 29484.487521: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40176          <idle>-0     (-----) [001] d..2 29484.487523: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40177          <idle>-0     (-----) [000] d..1 29484.487527: cpu_idle: state=0 cpu_id=0
40178              ps-13725 (13725) [005] d..2 29484.487553: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40179              ps-13725 (13725) [005] dn.3 29484.487555: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40180              ps-13725 (13725) [005] d..2 29484.487558: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40181 shell svc 13722-13723 ( 1007) [005] d..2 29484.487565: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40182            adbd-23485 ( 1007) [001] d..2 29484.487565: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40183          <idle>-0     (-----) [001] d..1 29484.487571: cpu_idle: state=0 cpu_id=1
40184          <idle>-0     (-----) [000] d.h3 29484.487611: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40185          <idle>-0     (-----) [000] dnh4 29484.487619: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40186              ps-13725 (13725) [005] d..2 29484.487620: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40187              ps-13725 (13725) [005] dn.3 29484.487622: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40188          <idle>-0     (-----) [000] .n.1 29484.487624: cpu_idle: state=4294967295 cpu_id=0
40189              ps-13725 (13725) [005] d..2 29484.487625: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40190          <idle>-0     (-----) [000] d..2 29484.487629: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40191 shell svc 13722-13723 ( 1007) [005] d..2 29484.487632: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40192   kworker/u17:2-23076 (23076) [000] d..2 29484.487635: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40193   kworker/u17:2-23076 (23076) [000] d..3 29484.487639: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40194   kworker/u17:2-23076 (23076) [000] d..2 29484.487654: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40195     kworker/0:0-13450 (13450) [000] d..2 29484.487659: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40196     kworker/0:0-13450 (13450) [000] d..3 29484.487676: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40197          <idle>-0     (-----) [001] .n.1 29484.487681: cpu_idle: state=4294967295 cpu_id=1
40198     kworker/0:0-13450 (13450) [000] d..2 29484.487685: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40199          <idle>-0     (-----) [001] d..2 29484.487687: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40200          <idle>-0     (-----) [000] d..1 29484.487691: cpu_idle: state=0 cpu_id=0
40201            adbd-23485 ( 1007) [001] d..2 29484.487701: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40202          <idle>-0     (-----) [001] d..1 29484.487706: cpu_idle: state=0 cpu_id=1
40203              ps-13725 (13725) [005] d..2 29484.487713: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40204              ps-13725 (13725) [005] dn.3 29484.487716: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40205              ps-13725 (13725) [005] d..2 29484.487719: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40206 shell svc 13722-13723 ( 1007) [005] d..2 29484.487726: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40207          <idle>-0     (-----) [000] d.h3 29484.487786: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40208          <idle>-0     (-----) [000] dnh4 29484.487791: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40209          <idle>-0     (-----) [000] .n.1 29484.487796: cpu_idle: state=4294967295 cpu_id=0
40210          <idle>-0     (-----) [000] d..2 29484.487801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40211   kworker/u17:2-23076 (23076) [000] d..2 29484.487807: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40212   kworker/u17:2-23076 (23076) [000] d..3 29484.487812: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40213              ps-13725 (13725) [005] d..2 29484.487812: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40214              ps-13725 (13725) [005] dn.3 29484.487815: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40215              ps-13725 (13725) [005] d..2 29484.487818: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40216 shell svc 13722-13723 ( 1007) [005] d..2 29484.487827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40217   kworker/u17:2-23076 (23076) [000] d..2 29484.487828: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40218     kworker/0:0-13450 (13450) [000] d..2 29484.487833: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40219     kworker/0:0-13450 (13450) [000] d..3 29484.487841: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40220     kworker/0:0-13450 (13450) [000] d..2 29484.487848: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40221            adbd-23484 ( 1007) [000] d..2 29484.487858: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40222            adbd-23484 ( 1007) [000] d..3 29484.487864: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40223            adbd-23484 ( 1007) [000] d..2 29484.487904: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40224              ps-13725 (13725) [005] d..2 29484.487921: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40225              ps-13725 (13725) [005] dn.3 29484.487924: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40226              ps-13725 (13725) [005] d..2 29484.487926: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40227 shell svc 13722-13723 ( 1007) [005] d..2 29484.487935: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40228            adbd-1007  ( 1007) [000] d..1 29484.487961: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40229            adbd-1007  ( 1007) [000] d..2 29484.487972: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40230          <idle>-0     (-----) [001] .n.1 29484.487976: cpu_idle: state=4294967295 cpu_id=1
40231          <idle>-0     (-----) [001] d..2 29484.487982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40232            adbd-1007  ( 1007) [000] d..2 29484.487996: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40233          <idle>-0     (-----) [000] d..1 29484.488005: cpu_idle: state=0 cpu_id=0
40234            adbd-23485 ( 1007) [001] d..2 29484.488023: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40235          <idle>-0     (-----) [001] d..1 29484.488029: cpu_idle: state=0 cpu_id=1
40236              ps-13725 (13725) [005] d..2 29484.488037: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40237              ps-13725 (13725) [005] dn.3 29484.488040: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40238          <idle>-0     (-----) [000] d.h3 29484.488041: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40239              ps-13725 (13725) [005] d..2 29484.488042: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40240          <idle>-0     (-----) [000] dnh4 29484.488046: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40241 shell svc 13722-13723 ( 1007) [005] d..2 29484.488050: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40242          <idle>-0     (-----) [000] .n.1 29484.488051: cpu_idle: state=4294967295 cpu_id=0
40243          <idle>-0     (-----) [000] d..2 29484.488057: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40244   kworker/u17:2-23076 (23076) [000] d..2 29484.488064: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40245   kworker/u17:2-23076 (23076) [000] d..3 29484.488069: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40246   kworker/u17:2-23076 (23076) [000] d..2 29484.488085: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40247     kworker/0:0-13450 (13450) [000] d..2 29484.488090: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40248     kworker/0:0-13450 (13450) [000] d..3 29484.488099: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40249          <idle>-0     (-----) [001] .n.1 29484.488103: cpu_idle: state=4294967295 cpu_id=1
40250     kworker/0:0-13450 (13450) [000] d..2 29484.488107: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40251          <idle>-0     (-----) [001] d..2 29484.488109: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40252          <idle>-0     (-----) [000] d..1 29484.488113: cpu_idle: state=0 cpu_id=0
40253              ps-13725 (13725) [005] d..2 29484.488133: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40254              ps-13725 (13725) [005] dn.3 29484.488137: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40255              ps-13725 (13725) [005] d..2 29484.488139: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40256 shell svc 13722-13723 ( 1007) [005] d..2 29484.488147: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40257            adbd-23485 ( 1007) [001] d..2 29484.488151: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40258          <idle>-0     (-----) [001] d..1 29484.488157: cpu_idle: state=0 cpu_id=1
40259          <idle>-0     (-----) [000] d.h3 29484.488178: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40260          <idle>-0     (-----) [000] dnh4 29484.488183: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40261          <idle>-0     (-----) [000] .n.1 29484.488188: cpu_idle: state=4294967295 cpu_id=0
40262          <idle>-0     (-----) [000] d..2 29484.488193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40263   kworker/u17:2-23076 (23076) [000] d..2 29484.488199: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40264   kworker/u17:2-23076 (23076) [000] d..3 29484.488204: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40265   kworker/u17:2-23076 (23076) [000] d..2 29484.488218: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40266     kworker/0:0-13450 (13450) [000] d..2 29484.488223: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40267              ps-13725 (13725) [005] d..2 29484.488227: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40268              ps-13725 (13725) [005] dn.3 29484.488230: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40269     kworker/0:0-13450 (13450) [000] d..3 29484.488231: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40270              ps-13725 (13725) [005] d..2 29484.488233: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40271          <idle>-0     (-----) [001] .n.1 29484.488236: cpu_idle: state=4294967295 cpu_id=1
40272     kworker/0:0-13450 (13450) [000] d..2 29484.488239: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40273 shell svc 13722-13723 ( 1007) [005] d..2 29484.488240: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40274          <idle>-0     (-----) [001] d..2 29484.488242: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40275          <idle>-0     (-----) [000] d..1 29484.488245: cpu_idle: state=0 cpu_id=0
40276            adbd-23485 ( 1007) [001] d..2 29484.488256: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40277          <idle>-0     (-----) [001] d..1 29484.488261: cpu_idle: state=0 cpu_id=1
40278              ps-13725 (13725) [005] d..2 29484.488298: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40279              ps-13725 (13725) [005] dn.3 29484.488301: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40280              ps-13725 (13725) [005] d..2 29484.488303: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40281 shell svc 13722-13723 ( 1007) [005] d..2 29484.488310: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40282          <idle>-0     (-----) [000] d.h3 29484.488317: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40283          <idle>-0     (-----) [000] dnh4 29484.488322: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40284          <idle>-0     (-----) [000] .n.1 29484.488326: cpu_idle: state=4294967295 cpu_id=0
40285          <idle>-0     (-----) [000] d..2 29484.488332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40286   kworker/u17:2-23076 (23076) [000] d..2 29484.488337: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40287   kworker/u17:2-23076 (23076) [000] d..3 29484.488342: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40288   kworker/u17:2-23076 (23076) [000] d..2 29484.488356: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40289     kworker/0:0-13450 (13450) [000] d..2 29484.488361: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40290     kworker/0:0-13450 (13450) [000] d..3 29484.488370: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40291     kworker/0:0-13450 (13450) [000] d..2 29484.488377: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40292            adbd-23484 ( 1007) [000] d..2 29484.488387: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40293            adbd-23484 ( 1007) [000] d..3 29484.488392: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40294              ps-13725 (13725) [005] d..2 29484.488394: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40295              ps-13725 (13725) [005] dn.3 29484.488397: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40296              ps-13725 (13725) [005] d..2 29484.488399: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40297 shell svc 13722-13723 ( 1007) [005] d..2 29484.488407: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40298            adbd-23484 ( 1007) [000] d..2 29484.488431: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40299              ps-13725 (13725) [005] d..2 29484.488464: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40300              ps-13725 (13725) [005] dn.3 29484.488467: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40301              ps-13725 (13725) [005] d..2 29484.488469: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40302 shell svc 13722-13723 ( 1007) [005] d..2 29484.488476: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40303            adbd-1007  ( 1007) [000] d..1 29484.488489: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40304            adbd-1007  ( 1007) [000] d..2 29484.488500: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40305          <idle>-0     (-----) [001] .n.1 29484.488504: cpu_idle: state=4294967295 cpu_id=1
40306          <idle>-0     (-----) [001] d..2 29484.488510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40307            adbd-1007  ( 1007) [000] d..2 29484.488525: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40308          <idle>-0     (-----) [000] d..1 29484.488533: cpu_idle: state=0 cpu_id=0
40309            adbd-23485 ( 1007) [001] d..2 29484.488552: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40310          <idle>-0     (-----) [001] d..1 29484.488557: cpu_idle: state=0 cpu_id=1
40311              ps-13725 (13725) [005] d..2 29484.488561: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40312          <idle>-0     (-----) [000] d.h3 29484.488563: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40313              ps-13725 (13725) [005] dn.3 29484.488564: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40314              ps-13725 (13725) [005] d..2 29484.488567: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40315          <idle>-0     (-----) [000] dnh4 29484.488569: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40316          <idle>-0     (-----) [000] .n.1 29484.488574: cpu_idle: state=4294967295 cpu_id=0
40317 shell svc 13722-13723 ( 1007) [005] d..2 29484.488574: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40318          <idle>-0     (-----) [000] d..2 29484.488580: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40319   kworker/u17:2-23076 (23076) [000] d..2 29484.488587: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40320   kworker/u17:2-23076 (23076) [000] d..3 29484.488592: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40321   kworker/u17:2-23076 (23076) [000] d..2 29484.488607: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40322     kworker/0:0-13450 (13450) [000] d..2 29484.488612: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40323     kworker/0:0-13450 (13450) [000] d..3 29484.488620: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40324          <idle>-0     (-----) [001] .n.1 29484.488624: cpu_idle: state=4294967295 cpu_id=1
40325     kworker/0:0-13450 (13450) [000] d..2 29484.488628: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40326          <idle>-0     (-----) [001] d..2 29484.488630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40327          <idle>-0     (-----) [000] d..1 29484.488634: cpu_idle: state=0 cpu_id=0
40328            adbd-23485 ( 1007) [001] d..2 29484.488672: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40329          <idle>-0     (-----) [001] d..1 29484.488677: cpu_idle: state=0 cpu_id=1
40330              ps-13725 (13725) [005] d..2 29484.488686: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40331              ps-13725 (13725) [005] dn.3 29484.488689: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40332              ps-13725 (13725) [005] d..2 29484.488691: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40333 shell svc 13722-13723 ( 1007) [005] d..2 29484.488699: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40334          <idle>-0     (-----) [000] d.h3 29484.488699: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40335          <idle>-0     (-----) [000] dnh4 29484.488704: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40336          <idle>-0     (-----) [000] .n.1 29484.488709: cpu_idle: state=4294967295 cpu_id=0
40337          <idle>-0     (-----) [000] d..2 29484.488714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40338   kworker/u17:2-23076 (23076) [000] d..2 29484.488720: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40339   kworker/u17:2-23076 (23076) [000] d..3 29484.488724: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40340   kworker/u17:2-23076 (23076) [000] d..2 29484.488739: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40341     kworker/0:0-13450 (13450) [000] d..2 29484.488744: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40342     kworker/0:0-13450 (13450) [000] d..3 29484.488752: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40343          <idle>-0     (-----) [001] .n.1 29484.488757: cpu_idle: state=4294967295 cpu_id=1
40344     kworker/0:0-13450 (13450) [000] d..2 29484.488760: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40345          <idle>-0     (-----) [001] d..2 29484.488762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40346          <idle>-0     (-----) [000] d..1 29484.488766: cpu_idle: state=0 cpu_id=0
40347            adbd-23485 ( 1007) [001] d..2 29484.488777: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40348          <idle>-0     (-----) [001] d..1 29484.488782: cpu_idle: state=0 cpu_id=1
40349              ps-13725 (13725) [005] d..2 29484.488785: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40350              ps-13725 (13725) [005] dn.3 29484.488789: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40351              ps-13725 (13725) [005] d..2 29484.488791: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40352 shell svc 13722-13723 ( 1007) [005] d..2 29484.488799: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40353          <idle>-0     (-----) [000] d.h3 29484.488839: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40354          <idle>-0     (-----) [000] dnh4 29484.488844: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40355          <idle>-0     (-----) [000] .n.1 29484.488849: cpu_idle: state=4294967295 cpu_id=0
40356          <idle>-0     (-----) [000] d..2 29484.488854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40357   kworker/u17:2-23076 (23076) [000] d..2 29484.488860: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40358   kworker/u17:2-23076 (23076) [000] d..3 29484.488864: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40359   kworker/u17:2-23076 (23076) [000] d..2 29484.488879: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40360     kworker/0:0-13450 (13450) [000] d..2 29484.488884: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40361              ps-13725 (13725) [005] d..2 29484.488886: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40362              ps-13725 (13725) [005] dn.3 29484.488890: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40363              ps-13725 (13725) [005] d..2 29484.488892: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40364     kworker/0:0-13450 (13450) [000] d..3 29484.488892: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40365     kworker/0:0-13450 (13450) [000] d..2 29484.488899: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40366 shell svc 13722-13723 ( 1007) [005] d..2 29484.488900: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40367            adbd-23484 ( 1007) [000] d..2 29484.488910: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40368            adbd-23484 ( 1007) [000] d..3 29484.488915: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40369            adbd-23484 ( 1007) [000] d..2 29484.488955: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40370              ps-13725 (13725) [005] d..2 29484.488984: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40371              ps-13725 (13725) [005] dn.3 29484.488987: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40372              ps-13725 (13725) [005] d..2 29484.488989: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40373 shell svc 13722-13723 ( 1007) [005] d..2 29484.488997: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40374            adbd-1007  ( 1007) [000] d..1 29484.489011: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40375            adbd-1007  ( 1007) [000] d..2 29484.489021: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40376          <idle>-0     (-----) [001] .n.1 29484.489026: cpu_idle: state=4294967295 cpu_id=1
40377          <idle>-0     (-----) [001] d..2 29484.489031: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40378            adbd-1007  ( 1007) [000] d..2 29484.489046: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40379          <idle>-0     (-----) [000] d..1 29484.489054: cpu_idle: state=0 cpu_id=0
40380            adbd-23485 ( 1007) [001] d..2 29484.489074: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40381          <idle>-0     (-----) [001] d..1 29484.489079: cpu_idle: state=0 cpu_id=1
40382          <idle>-0     (-----) [000] d.h3 29484.489082: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40383              ps-13725 (13725) [005] d..2 29484.489086: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40384          <idle>-0     (-----) [000] dnh4 29484.489088: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40385              ps-13725 (13725) [005] dn.3 29484.489090: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40386              ps-13725 (13725) [005] d..2 29484.489092: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40387          <idle>-0     (-----) [000] .n.1 29484.489093: cpu_idle: state=4294967295 cpu_id=0
40388          <idle>-0     (-----) [000] d..2 29484.489099: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40389 shell svc 13722-13723 ( 1007) [005] d..2 29484.489100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40390   kworker/u17:2-23076 (23076) [000] d..2 29484.489106: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40391   kworker/u17:2-23076 (23076) [000] d..3 29484.489111: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40392   kworker/u17:2-23076 (23076) [000] d..2 29484.489126: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40393     kworker/0:0-13450 (13450) [000] d..2 29484.489131: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40394     kworker/0:0-13450 (13450) [000] d..3 29484.489140: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40395          <idle>-0     (-----) [001] .n.1 29484.489144: cpu_idle: state=4294967295 cpu_id=1
40396     kworker/0:0-13450 (13450) [000] d..2 29484.489147: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40397          <idle>-0     (-----) [001] d..2 29484.489150: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40398          <idle>-0     (-----) [000] d..1 29484.489153: cpu_idle: state=0 cpu_id=0
40399              ps-13725 (13725) [005] d..2 29484.489186: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40400              ps-13725 (13725) [005] dn.3 29484.489190: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40401              ps-13725 (13725) [005] d..2 29484.489193: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40402            adbd-23485 ( 1007) [001] d..2 29484.489193: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40403          <idle>-0     (-----) [001] d..1 29484.489198: cpu_idle: state=0 cpu_id=1
40404 shell svc 13722-13723 ( 1007) [005] d..2 29484.489200: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40405          <idle>-0     (-----) [000] d.h3 29484.489215: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40406          <idle>-0     (-----) [000] dnh4 29484.489220: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40407          <idle>-0     (-----) [000] .n.1 29484.489225: cpu_idle: state=4294967295 cpu_id=0
40408          <idle>-0     (-----) [000] d..2 29484.489230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40409   kworker/u17:2-23076 (23076) [000] d..2 29484.489237: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40410   kworker/u17:2-23076 (23076) [000] d..3 29484.489242: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40411   kworker/u17:2-23076 (23076) [000] d..2 29484.489257: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40412     kworker/0:0-13450 (13450) [000] d..2 29484.489261: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40413     kworker/0:0-13450 (13450) [000] d..3 29484.489269: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40414          <idle>-0     (-----) [001] .n.1 29484.489274: cpu_idle: state=4294967295 cpu_id=1
40415     kworker/0:0-13450 (13450) [000] d..2 29484.489277: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40416          <idle>-0     (-----) [001] d..2 29484.489279: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40417          <idle>-0     (-----) [000] d..1 29484.489283: cpu_idle: state=0 cpu_id=0
40418              ps-13725 (13725) [005] d..2 29484.489287: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40419              ps-13725 (13725) [005] dn.3 29484.489290: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40420              ps-13725 (13725) [005] d..2 29484.489293: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40421            adbd-23485 ( 1007) [001] d..2 29484.489294: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40422          <idle>-0     (-----) [001] d..1 29484.489300: cpu_idle: state=0 cpu_id=1
40423 shell svc 13722-13723 ( 1007) [005] d..2 29484.489301: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40424          <idle>-0     (-----) [000] d.h3 29484.489362: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40425          <idle>-0     (-----) [000] dnh4 29484.489367: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40426          <idle>-0     (-----) [000] .n.1 29484.489372: cpu_idle: state=4294967295 cpu_id=0
40427          <idle>-0     (-----) [000] d..2 29484.489377: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40428   kworker/u17:2-23076 (23076) [000] d..2 29484.489382: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40429   kworker/u17:2-23076 (23076) [000] d..3 29484.489387: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40430              ps-13725 (13725) [005] d..2 29484.489394: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40431              ps-13725 (13725) [005] dn.3 29484.489397: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40432              ps-13725 (13725) [005] d..2 29484.489399: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40433   kworker/u17:2-23076 (23076) [000] d..2 29484.489402: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40434     kworker/0:0-13450 (13450) [000] d..2 29484.489407: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40435 shell svc 13722-13723 ( 1007) [005] d..2 29484.489407: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40436     kworker/0:0-13450 (13450) [000] d..3 29484.489416: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40437     kworker/0:0-13450 (13450) [000] d..2 29484.489423: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40438            adbd-23484 ( 1007) [000] d..2 29484.489433: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40439            adbd-23484 ( 1007) [000] d..3 29484.489439: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40440            adbd-23484 ( 1007) [000] d..2 29484.489479: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40441              ps-13725 (13725) [005] d..2 29484.489501: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40442              ps-13725 (13725) [005] dn.3 29484.489504: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40443              ps-13725 (13725) [005] d..2 29484.489507: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40444 shell svc 13722-13723 ( 1007) [005] d..2 29484.489515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40445            adbd-1007  ( 1007) [000] d..1 29484.489534: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40446            adbd-1007  ( 1007) [000] d..2 29484.489544: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40447          <idle>-0     (-----) [001] .n.1 29484.489549: cpu_idle: state=4294967295 cpu_id=1
40448          <idle>-0     (-----) [001] d..2 29484.489554: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40449            adbd-1007  ( 1007) [000] d..2 29484.489574: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40450          <idle>-0     (-----) [000] d..1 29484.489582: cpu_idle: state=0 cpu_id=0
40451            adbd-23485 ( 1007) [001] d..2 29484.489596: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40452          <idle>-0     (-----) [001] d..1 29484.489602: cpu_idle: state=0 cpu_id=1
40453              ps-13725 (13725) [005] d..2 29484.489603: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40454              ps-13725 (13725) [005] dn.3 29484.489606: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40455              ps-13725 (13725) [005] d..2 29484.489609: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40456 shell svc 13722-13723 ( 1007) [005] d..2 29484.489617: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40457          <idle>-0     (-----) [000] d.h3 29484.489623: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40458          <idle>-0     (-----) [000] dnh4 29484.489631: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40459          <idle>-0     (-----) [000] .n.1 29484.489637: cpu_idle: state=4294967295 cpu_id=0
40460          <idle>-0     (-----) [000] d..2 29484.489642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40461   kworker/u17:2-23076 (23076) [000] d..2 29484.489650: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40462   kworker/u17:2-23076 (23076) [000] d..3 29484.489654: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40463   kworker/u17:2-23076 (23076) [000] d..2 29484.489670: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40464     kworker/0:0-13450 (13450) [000] d..2 29484.489675: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40465     kworker/0:0-13450 (13450) [000] d..3 29484.489693: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40466          <idle>-0     (-----) [001] .n.1 29484.489697: cpu_idle: state=4294967295 cpu_id=1
40467     kworker/0:0-13450 (13450) [000] d..2 29484.489701: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40468          <idle>-0     (-----) [001] d..2 29484.489703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40469          <idle>-0     (-----) [000] d..1 29484.489707: cpu_idle: state=0 cpu_id=0
40470              ps-13725 (13725) [005] d..2 29484.489708: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40471              ps-13725 (13725) [005] dn.3 29484.489711: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40472              ps-13725 (13725) [005] d..2 29484.489714: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40473 shell svc 13722-13723 ( 1007) [005] d..2 29484.489722: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40474            adbd-23485 ( 1007) [001] d..2 29484.489744: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40475          <idle>-0     (-----) [001] d..1 29484.489749: cpu_idle: state=0 cpu_id=1
40476          <idle>-0     (-----) [000] d.h3 29484.489774: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40477          <idle>-0     (-----) [000] dnh4 29484.489779: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40478          <idle>-0     (-----) [000] .n.1 29484.489784: cpu_idle: state=4294967295 cpu_id=0
40479          <idle>-0     (-----) [000] d..2 29484.489789: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40480   kworker/u17:2-23076 (23076) [000] d..2 29484.489795: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40481   kworker/u17:2-23076 (23076) [000] d..3 29484.489800: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40482              ps-13725 (13725) [005] d..2 29484.489808: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40483              ps-13725 (13725) [005] dn.3 29484.489811: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40484              ps-13725 (13725) [005] d..2 29484.489813: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40485   kworker/u17:2-23076 (23076) [000] d..2 29484.489815: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40486     kworker/0:0-13450 (13450) [000] d..2 29484.489820: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40487 shell svc 13722-13723 ( 1007) [005] d..2 29484.489821: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40488     kworker/0:0-13450 (13450) [000] d..3 29484.489828: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40489          <idle>-0     (-----) [001] .n.1 29484.489833: cpu_idle: state=4294967295 cpu_id=1
40490     kworker/0:0-13450 (13450) [000] d..2 29484.489836: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40491          <idle>-0     (-----) [001] d..2 29484.489840: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40492          <idle>-0     (-----) [000] d..1 29484.489841: cpu_idle: state=0 cpu_id=0
40493            adbd-23485 ( 1007) [001] d..2 29484.489853: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40494          <idle>-0     (-----) [001] d..1 29484.489858: cpu_idle: state=0 cpu_id=1
40495          <idle>-0     (-----) [000] d.h3 29484.489913: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40496              ps-13725 (13725) [005] d..2 29484.489915: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40497          <idle>-0     (-----) [000] dnh4 29484.489918: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40498              ps-13725 (13725) [005] dn.3 29484.489918: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40499              ps-13725 (13725) [005] d..2 29484.489921: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40500          <idle>-0     (-----) [000] .n.1 29484.489923: cpu_idle: state=4294967295 cpu_id=0
40501          <idle>-0     (-----) [000] d..2 29484.489928: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40502 shell svc 13722-13723 ( 1007) [005] d..2 29484.489929: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40503   kworker/u17:2-23076 (23076) [000] d..2 29484.489933: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40504   kworker/u17:2-23076 (23076) [000] d..3 29484.489938: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40505   kworker/u17:2-23076 (23076) [000] d..2 29484.489952: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40506     kworker/0:0-13450 (13450) [000] d..2 29484.489957: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40507     kworker/0:0-13450 (13450) [000] d..3 29484.489966: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40508     kworker/0:0-13450 (13450) [000] d..2 29484.489973: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40509            adbd-23484 ( 1007) [000] d..2 29484.489983: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40510            adbd-23484 ( 1007) [000] d..3 29484.489988: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40511              ps-13725 (13725) [005] d..2 29484.490017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40512              ps-13725 (13725) [005] dn.3 29484.490020: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40513              ps-13725 (13725) [005] d..2 29484.490022: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40514            adbd-23484 ( 1007) [000] d..2 29484.490027: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40515 shell svc 13722-13723 ( 1007) [005] d..2 29484.490030: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40516            adbd-1007  ( 1007) [000] d..1 29484.490083: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40517            adbd-1007  ( 1007) [000] d..2 29484.490093: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40518          <idle>-0     (-----) [001] .n.1 29484.490098: cpu_idle: state=4294967295 cpu_id=1
40519          <idle>-0     (-----) [001] d..2 29484.490103: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40520              ps-13725 (13725) [005] d..2 29484.490111: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40521              ps-13725 (13725) [005] dn.3 29484.490114: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40522              ps-13725 (13725) [005] d..2 29484.490116: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40523            adbd-1007  ( 1007) [000] d..2 29484.490118: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40524 shell svc 13722-13723 ( 1007) [005] d..2 29484.490124: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40525          <idle>-0     (-----) [000] d..1 29484.490127: cpu_idle: state=0 cpu_id=0
40526            adbd-23485 ( 1007) [001] d..2 29484.490144: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40527          <idle>-0     (-----) [001] d..1 29484.490149: cpu_idle: state=0 cpu_id=1
40528          <idle>-0     (-----) [000] d.h3 29484.490168: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40529          <idle>-0     (-----) [000] dnh4 29484.490174: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40530          <idle>-0     (-----) [000] .n.1 29484.490178: cpu_idle: state=4294967295 cpu_id=0
40531          <idle>-0     (-----) [000] d..2 29484.490184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40532   kworker/u17:2-23076 (23076) [000] d..2 29484.490191: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40533   kworker/u17:2-23076 (23076) [000] d..3 29484.490197: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40534              ps-13725 (13725) [005] d..2 29484.490209: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40535              ps-13725 (13725) [005] dn.3 29484.490212: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40536   kworker/u17:2-23076 (23076) [000] d..2 29484.490212: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40537              ps-13725 (13725) [005] d..2 29484.490214: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40538     kworker/0:0-13450 (13450) [000] d..2 29484.490217: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40539 shell svc 13722-13723 ( 1007) [005] d..2 29484.490222: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40540     kworker/0:0-13450 (13450) [000] d..3 29484.490226: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40541          <idle>-0     (-----) [001] .n.1 29484.490230: cpu_idle: state=4294967295 cpu_id=1
40542     kworker/0:0-13450 (13450) [000] d..2 29484.490234: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40543          <idle>-0     (-----) [001] d..2 29484.490236: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40544          <idle>-0     (-----) [000] d..1 29484.490240: cpu_idle: state=0 cpu_id=0
40545            adbd-23485 ( 1007) [001] d..2 29484.490277: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40546          <idle>-0     (-----) [001] d..1 29484.490283: cpu_idle: state=0 cpu_id=1
40547          <idle>-0     (-----) [000] d.h3 29484.490297: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40548              ps-13725 (13725) [005] d..2 29484.490301: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40549          <idle>-0     (-----) [000] dnh4 29484.490302: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40550              ps-13725 (13725) [005] dn.3 29484.490305: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40551          <idle>-0     (-----) [000] .n.1 29484.490306: cpu_idle: state=4294967295 cpu_id=0
40552              ps-13725 (13725) [005] d..2 29484.490307: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40553          <idle>-0     (-----) [000] d..2 29484.490312: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40554 shell svc 13722-13723 ( 1007) [005] d..2 29484.490315: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40555   kworker/u17:2-23076 (23076) [000] d..2 29484.490317: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40556   kworker/u17:2-23076 (23076) [000] d..3 29484.490322: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40557   kworker/u17:2-23076 (23076) [000] d..2 29484.490336: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40558     kworker/0:0-13450 (13450) [000] d..2 29484.490341: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40559     kworker/0:0-13450 (13450) [000] d..3 29484.490349: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40560          <idle>-0     (-----) [001] .n.1 29484.490354: cpu_idle: state=4294967295 cpu_id=1
40561     kworker/0:0-13450 (13450) [000] d..2 29484.490357: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40562          <idle>-0     (-----) [001] d..2 29484.490360: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40563          <idle>-0     (-----) [000] d..1 29484.490363: cpu_idle: state=0 cpu_id=0
40564            adbd-23485 ( 1007) [001] d..2 29484.490373: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40565          <idle>-0     (-----) [001] d..1 29484.490378: cpu_idle: state=0 cpu_id=1
40566              ps-13725 (13725) [005] d.s2 29484.490396: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
40567          <idle>-0     (-----) [000] dnh2 29484.490417: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
40568              ps-13725 (13725) [005] d..2 29484.490424: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40569              ps-13725 (13725) [005] dn.3 29484.490427: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40570              ps-13725 (13725) [005] d..2 29484.490430: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40571          <idle>-0     (-----) [000] dnh3 29484.490434: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40572 shell svc 13722-13723 ( 1007) [005] d..2 29484.490438: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40573          <idle>-0     (-----) [000] dnh4 29484.490442: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40574          <idle>-0     (-----) [000] .n.1 29484.490447: cpu_idle: state=4294967295 cpu_id=0
40575          <idle>-0     (-----) [000] d..2 29484.490453: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40576   kworker/u17:2-23076 (23076) [000] d..2 29484.490458: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40577   kworker/u17:2-23076 (23076) [000] d..3 29484.490463: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40578   kworker/u17:2-23076 (23076) [000] d..2 29484.490478: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
40579              ps-13725 (13725) [005] d..2 29484.490508: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40580              ps-13725 (13725) [005] dn.3 29484.490512: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40581              ps-13725 (13725) [005] d..2 29484.490514: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40582 shell svc 13722-13723 ( 1007) [005] d..2 29484.490522: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40583  kworker/u16:10-23868 (23868) [000] .... 29484.490539: clk_set_rate: l3_cluster0_vote_clk 1036800000
40584              ps-13725 (13725) [005] d..2 29484.490614: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40585              ps-13725 (13725) [005] dn.3 29484.490618: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40586              ps-13725 (13725) [005] d..2 29484.490620: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40587 shell svc 13722-13723 ( 1007) [005] d..2 29484.490628: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40588  kworker/u16:10-23868 (23868) [000] d..2 29484.490663: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40589     kworker/0:0-13450 (13450) [000] d..2 29484.490669: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40590     kworker/0:0-13450 (13450) [000] d..3 29484.490678: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40591              ps-13725 (13725) [005] d..2 29484.490685: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40592     kworker/0:0-13450 (13450) [000] d..2 29484.490686: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40593              ps-13725 (13725) [005] dn.3 29484.490688: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40594              ps-13725 (13725) [005] d..2 29484.490691: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40595          <idle>-0     (-----) [003] d.s3 29484.490694: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
40596            adbd-23484 ( 1007) [000] d..2 29484.490696: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40597 shell svc 13722-13723 ( 1007) [005] d..2 29484.490698: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40598            adbd-23484 ( 1007) [000] d..3 29484.490702: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40599          <idle>-0     (-----) [003] d.s4 29484.490709: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
40600          <idle>-0     (-----) [003] dns4 29484.490711: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
40601          <idle>-0     (-----) [003] .n.1 29484.490715: cpu_idle: state=4294967295 cpu_id=3
40602          <idle>-0     (-----) [003] d..2 29484.490722: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
40603            adbd-23484 ( 1007) [000] d..2 29484.490749: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40604  kworker/u16:10-23868 (23868) [003] d..2 29484.490750: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40605              ps-13725 (13725) [005] d..2 29484.490753: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40606              ps-13725 (13725) [005] dn.3 29484.490756: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40607          <idle>-0     (-----) [000] d..1 29484.490758: cpu_idle: state=0 cpu_id=0
40608              ps-13725 (13725) [005] d..2 29484.490759: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40609 shell svc 13722-13723 ( 1007) [005] d..2 29484.490766: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40610            adbd-1007  ( 1007) [003] d..1 29484.490815: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40611            adbd-1007  ( 1007) [003] d..2 29484.490825: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40612          <idle>-0     (-----) [001] .n.1 29484.490830: cpu_idle: state=4294967295 cpu_id=1
40613          <idle>-0     (-----) [001] d..2 29484.490836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40614            adbd-1007  ( 1007) [003] d..2 29484.490858: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40615              ps-13725 (13725) [005] d..2 29484.490866: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40616          <idle>-0     (-----) [003] d..1 29484.490867: cpu_idle: state=0 cpu_id=3
40617              ps-13725 (13725) [005] dn.3 29484.490869: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40618              ps-13725 (13725) [005] d..2 29484.490872: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40619            adbd-23485 ( 1007) [001] d..2 29484.490880: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40620 shell svc 13722-13723 ( 1007) [005] d..2 29484.490880: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40621          <idle>-0     (-----) [001] d..1 29484.490884: cpu_idle: state=0 cpu_id=1
40622          <idle>-0     (-----) [000] d.h3 29484.490894: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40623          <idle>-0     (-----) [000] dnh4 29484.490900: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40624          <idle>-0     (-----) [000] .n.1 29484.490904: cpu_idle: state=4294967295 cpu_id=0
40625          <idle>-0     (-----) [000] d..2 29484.490911: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40626   kworker/u17:2-23076 (23076) [000] d..2 29484.490917: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40627   kworker/u17:2-23076 (23076) [000] d..3 29484.490922: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40628              ps-13725 (13725) [005] d..2 29484.490937: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40629   kworker/u17:2-23076 (23076) [000] d..2 29484.490937: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40630              ps-13725 (13725) [005] dn.3 29484.490940: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40631     kworker/0:0-13450 (13450) [000] d..2 29484.490942: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40632              ps-13725 (13725) [005] d..2 29484.490942: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40633 shell svc 13722-13723 ( 1007) [005] d..2 29484.490950: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40634     kworker/0:0-13450 (13450) [000] d..3 29484.490950: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40635          <idle>-0     (-----) [001] .n.1 29484.490955: cpu_idle: state=4294967295 cpu_id=1
40636     kworker/0:0-13450 (13450) [000] d..2 29484.490958: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40637          <idle>-0     (-----) [001] d..2 29484.490960: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40638          <idle>-0     (-----) [000] d..1 29484.490965: cpu_idle: state=0 cpu_id=0
40639            adbd-23485 ( 1007) [001] d..2 29484.491001: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40640          <idle>-0     (-----) [001] d..1 29484.491005: cpu_idle: state=0 cpu_id=1
40641              ps-13725 (13725) [005] d..2 29484.491006: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40642              ps-13725 (13725) [005] dn.3 29484.491009: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40643              ps-13725 (13725) [005] d..2 29484.491012: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40644 shell svc 13722-13723 ( 1007) [005] d..2 29484.491019: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40645          <idle>-0     (-----) [000] d.h3 29484.491036: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40646          <idle>-0     (-----) [000] dnh4 29484.491041: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40647          <idle>-0     (-----) [000] .n.1 29484.491045: cpu_idle: state=4294967295 cpu_id=0
40648          <idle>-0     (-----) [000] d..2 29484.491050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40649   kworker/u17:2-23076 (23076) [000] d..2 29484.491056: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40650   kworker/u17:2-23076 (23076) [000] d..3 29484.491061: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40651   kworker/u17:2-23076 (23076) [000] d..2 29484.491076: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40652     kworker/0:0-13450 (13450) [000] d..2 29484.491081: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40653     kworker/0:0-13450 (13450) [000] d..3 29484.491089: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40654          <idle>-0     (-----) [001] .n.1 29484.491094: cpu_idle: state=4294967295 cpu_id=1
40655     kworker/0:0-13450 (13450) [000] d..2 29484.491096: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40656          <idle>-0     (-----) [001] d..2 29484.491099: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40657          <idle>-0     (-----) [000] d..1 29484.491103: cpu_idle: state=0 cpu_id=0
40658              ps-13725 (13725) [005] d..2 29484.491111: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40659            adbd-23485 ( 1007) [001] d..2 29484.491112: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40660              ps-13725 (13725) [005] dn.3 29484.491114: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40661          <idle>-0     (-----) [001] d..1 29484.491116: cpu_idle: state=0 cpu_id=1
40662              ps-13725 (13725) [005] d..2 29484.491117: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40663 shell svc 13722-13723 ( 1007) [005] d..2 29484.491125: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40664              ps-13725 (13725) [005] d..2 29484.491187: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40665              ps-13725 (13725) [005] dn.3 29484.491190: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40666              ps-13725 (13725) [005] d..2 29484.491192: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40667 shell svc 13722-13723 ( 1007) [005] d..2 29484.491199: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40668          <idle>-0     (-----) [000] d.h3 29484.491241: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40669          <idle>-0     (-----) [000] dnh4 29484.491246: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40670          <idle>-0     (-----) [000] .n.1 29484.491251: cpu_idle: state=4294967295 cpu_id=0
40671          <idle>-0     (-----) [000] d..2 29484.491256: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40672   kworker/u17:2-23076 (23076) [000] d..2 29484.491261: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40673   kworker/u17:2-23076 (23076) [000] d..3 29484.491266: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40674   kworker/u17:2-23076 (23076) [000] d..2 29484.491280: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40675     kworker/0:0-13450 (13450) [000] d..2 29484.491285: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40676              ps-13725 (13725) [005] d..2 29484.491289: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40677              ps-13725 (13725) [005] dn.3 29484.491292: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40678     kworker/0:0-13450 (13450) [000] d..3 29484.491294: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40679              ps-13725 (13725) [005] d..2 29484.491295: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40680     kworker/0:0-13450 (13450) [000] d..2 29484.491302: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40681 shell svc 13722-13723 ( 1007) [005] d..2 29484.491303: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40682            adbd-23484 ( 1007) [000] d..2 29484.491311: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
40683            adbd-23484 ( 1007) [000] d..3 29484.491321: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40684            adbd-23484 ( 1007) [000] d..2 29484.491361: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40685              ps-13725 (13725) [005] d..2 29484.491363: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40686              ps-13725 (13725) [005] dn.3 29484.491366: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40687              ps-13725 (13725) [005] d..2 29484.491368: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40688 shell svc 13722-13723 ( 1007) [005] d..2 29484.491376: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40689            adbd-1007  ( 1007) [000] d..1 29484.491434: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40690            adbd-1007  ( 1007) [000] d..2 29484.491444: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40691          <idle>-0     (-----) [001] .n.1 29484.491448: cpu_idle: state=4294967295 cpu_id=1
40692          <idle>-0     (-----) [001] d..2 29484.491453: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40693              ps-13725 (13725) [005] d..2 29484.491459: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40694              ps-13725 (13725) [005] dn.3 29484.491462: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40695              ps-13725 (13725) [005] d..2 29484.491465: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40696 shell svc 13722-13723 ( 1007) [005] d..2 29484.491473: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40697            adbd-1007  ( 1007) [000] d..2 29484.491476: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40698          <idle>-0     (-----) [000] d..1 29484.491484: cpu_idle: state=0 cpu_id=0
40699            adbd-23485 ( 1007) [001] d..2 29484.491494: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40700          <idle>-0     (-----) [001] d..1 29484.491499: cpu_idle: state=0 cpu_id=1
40701          <idle>-0     (-----) [000] d.h3 29484.491522: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40702          <idle>-0     (-----) [000] dnh4 29484.491528: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40703          <idle>-0     (-----) [000] .n.1 29484.491538: cpu_idle: state=4294967295 cpu_id=0
40704          <idle>-0     (-----) [000] d..2 29484.491544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40705   kworker/u17:2-23076 (23076) [000] d..2 29484.491551: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40706   kworker/u17:2-23076 (23076) [000] d..3 29484.491556: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40707              ps-13725 (13725) [005] d..2 29484.491561: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40708              ps-13725 (13725) [005] dn.3 29484.491564: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40709              ps-13725 (13725) [005] d..2 29484.491566: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40710   kworker/u17:2-23076 (23076) [000] d..2 29484.491572: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40711 shell svc 13722-13723 ( 1007) [005] d..2 29484.491574: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40712     kworker/0:0-13450 (13450) [000] d..2 29484.491578: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40713     kworker/0:0-13450 (13450) [000] d..3 29484.491586: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40714          <idle>-0     (-----) [001] .n.1 29484.491591: cpu_idle: state=4294967295 cpu_id=1
40715     kworker/0:0-13450 (13450) [000] d..2 29484.491594: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40716          <idle>-0     (-----) [001] d..2 29484.491596: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40717          <idle>-0     (-----) [000] d..1 29484.491600: cpu_idle: state=0 cpu_id=0
40718              ps-13725 (13725) [005] d..2 29484.491633: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40719              ps-13725 (13725) [005] dn.3 29484.491636: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40720            adbd-23485 ( 1007) [001] d..2 29484.491637: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40721              ps-13725 (13725) [005] d..2 29484.491639: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40722          <idle>-0     (-----) [001] d..1 29484.491642: cpu_idle: state=0 cpu_id=1
40723 shell svc 13722-13723 ( 1007) [005] d..2 29484.491646: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40724          <idle>-0     (-----) [000] d.h3 29484.491676: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40725          <idle>-0     (-----) [000] dnh4 29484.491684: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40726          <idle>-0     (-----) [000] .n.1 29484.491689: cpu_idle: state=4294967295 cpu_id=0
40727          <idle>-0     (-----) [000] d..2 29484.491695: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40728   kworker/u17:2-23076 (23076) [000] d..2 29484.491702: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40729              ps-13725 (13725) [005] d..2 29484.491703: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40730   kworker/u17:2-23076 (23076) [000] d..3 29484.491706: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40731              ps-13725 (13725) [005] dn.3 29484.491706: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40732              ps-13725 (13725) [005] d..2 29484.491708: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40733 shell svc 13722-13723 ( 1007) [005] d..2 29484.491716: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40734   kworker/u17:2-23076 (23076) [000] d..2 29484.491721: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40735     kworker/0:0-13450 (13450) [000] d..2 29484.491726: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40736     kworker/0:0-13450 (13450) [000] d..3 29484.491743: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40737          <idle>-0     (-----) [001] .n.1 29484.491748: cpu_idle: state=4294967295 cpu_id=1
40738     kworker/0:0-13450 (13450) [000] d..2 29484.491752: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40739          <idle>-0     (-----) [001] d..2 29484.491753: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40740          <idle>-0     (-----) [000] d..1 29484.491758: cpu_idle: state=0 cpu_id=0
40741            adbd-23485 ( 1007) [001] d..2 29484.491768: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40742          <idle>-0     (-----) [001] d..1 29484.491771: cpu_idle: state=0 cpu_id=1
40743              ps-13725 (13725) [005] d..2 29484.491772: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40744              ps-13725 (13725) [005] dn.3 29484.491775: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40745              ps-13725 (13725) [005] d..2 29484.491778: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40746 shell svc 13722-13723 ( 1007) [005] d..2 29484.491785: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40747              ps-13725 (13725) [005] d..2 29484.491843: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40748              ps-13725 (13725) [005] dn.3 29484.491846: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40749              ps-13725 (13725) [005] d..2 29484.491848: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40750 shell svc 13722-13723 ( 1007) [005] d..2 29484.491855: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40751          <idle>-0     (-----) [000] d.h3 29484.491876: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40752          <idle>-0     (-----) [000] dnh4 29484.491881: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40753          <idle>-0     (-----) [000] .n.1 29484.491885: cpu_idle: state=4294967295 cpu_id=0
40754          <idle>-0     (-----) [000] d..2 29484.491891: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40755   kworker/u17:2-23076 (23076) [000] d..2 29484.491897: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40756   kworker/u17:2-23076 (23076) [000] d..3 29484.491902: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40757   kworker/u17:2-23076 (23076) [000] d..2 29484.491917: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40758     kworker/0:0-13450 (13450) [000] d..2 29484.491922: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40759     kworker/0:0-13450 (13450) [000] d..3 29484.491930: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40760     kworker/0:0-13450 (13450) [000] d..2 29484.491938: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40761              ps-13725 (13725) [005] d..2 29484.491942: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40762              ps-13725 (13725) [005] dn.3 29484.491946: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40763              ps-13725 (13725) [005] d..2 29484.491948: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40764            adbd-23484 ( 1007) [000] d..2 29484.491948: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40765            adbd-23484 ( 1007) [000] d..3 29484.491953: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40766 shell svc 13722-13723 ( 1007) [005] d..2 29484.491956: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40767            adbd-23484 ( 1007) [000] d..2 29484.491993: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40768              ps-13725 (13725) [005] d..2 29484.492048: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40769            adbd-1007  ( 1007) [000] d..1 29484.492050: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40770              ps-13725 (13725) [005] dn.3 29484.492051: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40771              ps-13725 (13725) [005] d..2 29484.492054: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40772            adbd-1007  ( 1007) [000] d..2 29484.492060: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40773 shell svc 13722-13723 ( 1007) [005] d..2 29484.492062: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40774          <idle>-0     (-----) [001] .n.1 29484.492064: cpu_idle: state=4294967295 cpu_id=1
40775          <idle>-0     (-----) [001] d..2 29484.492069: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40776            adbd-1007  ( 1007) [000] d..2 29484.492091: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40777          <idle>-0     (-----) [000] d..1 29484.492099: cpu_idle: state=0 cpu_id=0
40778            adbd-23485 ( 1007) [001] d..2 29484.492110: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40779          <idle>-0     (-----) [001] d..1 29484.492114: cpu_idle: state=0 cpu_id=1
40780          <idle>-0     (-----) [000] d.h3 29484.492126: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40781          <idle>-0     (-----) [000] dnh4 29484.492132: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40782          <idle>-0     (-----) [000] .n.1 29484.492137: cpu_idle: state=4294967295 cpu_id=0
40783          <idle>-0     (-----) [000] d..2 29484.492143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40784   kworker/u17:2-23076 (23076) [000] d..2 29484.492150: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40785          <idle>-0     (-----) [003] ...1 29484.492150: cpu_idle: state=4294967295 cpu_id=3
40786          <idle>-0     (-----) [003] d..1 29484.492153: cpu_idle: state=2 cpu_id=3
40787              ps-13725 (13725) [005] d..2 29484.492154: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40788   kworker/u17:2-23076 (23076) [000] d..3 29484.492155: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40789              ps-13725 (13725) [005] dn.3 29484.492157: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40790              ps-13725 (13725) [005] d..2 29484.492159: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40791 shell svc 13722-13723 ( 1007) [005] d..2 29484.492167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40792   kworker/u17:2-23076 (23076) [000] d..2 29484.492171: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40793     kworker/0:0-13450 (13450) [000] d..2 29484.492176: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40794     kworker/0:0-13450 (13450) [000] d..3 29484.492184: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40795          <idle>-0     (-----) [001] .n.1 29484.492189: cpu_idle: state=4294967295 cpu_id=1
40796     kworker/0:0-13450 (13450) [000] d..2 29484.492192: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40797          <idle>-0     (-----) [001] d..2 29484.492194: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40798          <idle>-0     (-----) [000] d..1 29484.492198: cpu_idle: state=0 cpu_id=0
40799            adbd-23485 ( 1007) [001] d..2 29484.492234: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40800          <idle>-0     (-----) [001] d..1 29484.492238: cpu_idle: state=0 cpu_id=1
40801              ps-13725 (13725) [005] d..2 29484.492256: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40802          <idle>-0     (-----) [000] d.h3 29484.492259: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40803              ps-13725 (13725) [005] dn.3 29484.492260: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40804              ps-13725 (13725) [005] d..2 29484.492262: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40805          <idle>-0     (-----) [000] dnh4 29484.492263: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40806          <idle>-0     (-----) [000] .n.1 29484.492268: cpu_idle: state=4294967295 cpu_id=0
40807 shell svc 13722-13723 ( 1007) [005] d..2 29484.492271: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40808          <idle>-0     (-----) [000] d..2 29484.492273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40809   kworker/u17:2-23076 (23076) [000] d..2 29484.492279: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40810   kworker/u17:2-23076 (23076) [000] d..3 29484.492284: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40811   kworker/u17:2-23076 (23076) [000] d..2 29484.492299: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40812     kworker/0:0-13450 (13450) [000] d..2 29484.492303: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40813     kworker/0:0-13450 (13450) [000] d..3 29484.492311: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40814          <idle>-0     (-----) [001] .n.1 29484.492316: cpu_idle: state=4294967295 cpu_id=1
40815     kworker/0:0-13450 (13450) [000] d..2 29484.492319: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40816          <idle>-0     (-----) [001] d..2 29484.492321: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40817          <idle>-0     (-----) [000] d..1 29484.492325: cpu_idle: state=0 cpu_id=0
40818              ps-13725 (13725) [005] d..2 29484.492329: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40819              ps-13725 (13725) [005] dn.3 29484.492332: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40820              ps-13725 (13725) [005] d..2 29484.492335: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40821            adbd-23485 ( 1007) [001] d..2 29484.492335: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40822          <idle>-0     (-----) [001] d..1 29484.492339: cpu_idle: state=0 cpu_id=1
40823 shell svc 13722-13723 ( 1007) [005] d..2 29484.492343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40824              ps-13725 (13725) [005] d..2 29484.492416: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40825              ps-13725 (13725) [005] dn.3 29484.492419: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40826              ps-13725 (13725) [005] d..2 29484.492421: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40827 shell svc 13722-13723 ( 1007) [005] d..2 29484.492429: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40828          <idle>-0     (-----) [000] d.h3 29484.492444: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40829          <idle>-0     (-----) [000] dnh4 29484.492449: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40830          <idle>-0     (-----) [000] .n.1 29484.492453: cpu_idle: state=4294967295 cpu_id=0
40831          <idle>-0     (-----) [000] d..2 29484.492458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40832   kworker/u17:2-23076 (23076) [000] d..2 29484.492463: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40833   kworker/u17:2-23076 (23076) [000] d..3 29484.492468: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40834   kworker/u17:2-23076 (23076) [000] d..2 29484.492483: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40835     kworker/0:0-13450 (13450) [000] d..2 29484.492488: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40836     kworker/0:0-13450 (13450) [000] d..3 29484.492497: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40837              ps-13725 (13725) [005] d..2 29484.492500: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40838              ps-13725 (13725) [005] dn.3 29484.492503: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40839     kworker/0:0-13450 (13450) [000] d..2 29484.492504: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40840              ps-13725 (13725) [005] d..2 29484.492505: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40841 shell svc 13722-13723 ( 1007) [005] d..2 29484.492513: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40842            adbd-23484 ( 1007) [000] d..2 29484.492514: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40843            adbd-23484 ( 1007) [000] d..3 29484.492519: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40844            adbd-23484 ( 1007) [000] d..2 29484.492560: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40845              ps-13725 (13725) [005] d..2 29484.492590: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40846              ps-13725 (13725) [005] dn.3 29484.492594: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40847              ps-13725 (13725) [005] d..2 29484.492596: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40848 shell svc 13722-13723 ( 1007) [005] d..2 29484.492604: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40849            adbd-1007  ( 1007) [000] d..1 29484.492618: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40850            adbd-1007  ( 1007) [000] d..2 29484.492629: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40851          <idle>-0     (-----) [001] .n.1 29484.492633: cpu_idle: state=4294967295 cpu_id=1
40852          <idle>-0     (-----) [001] d..2 29484.492638: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40853            adbd-1007  ( 1007) [000] d..2 29484.492660: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40854          <idle>-0     (-----) [000] d..1 29484.492668: cpu_idle: state=0 cpu_id=0
40855            adbd-23485 ( 1007) [001] d..2 29484.492680: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40856              ps-13725 (13725) [005] d..2 29484.492681: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40857              ps-13725 (13725) [005] dn.3 29484.492684: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40858          <idle>-0     (-----) [001] d..1 29484.492685: cpu_idle: state=0 cpu_id=1
40859              ps-13725 (13725) [005] d..2 29484.492687: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40860 shell svc 13722-13723 ( 1007) [005] d..2 29484.492694: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40861          <idle>-0     (-----) [000] d.h3 29484.492707: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40862          <idle>-0     (-----) [000] dnh4 29484.492713: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40863          <idle>-0     (-----) [000] .n.1 29484.492718: cpu_idle: state=4294967295 cpu_id=0
40864          <idle>-0     (-----) [000] d..2 29484.492724: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40865   kworker/u17:2-23076 (23076) [000] d..2 29484.492732: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40866   kworker/u17:2-23076 (23076) [000] d..3 29484.492737: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40867   kworker/u17:2-23076 (23076) [000] d..2 29484.492753: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40868              ps-13725 (13725) [005] d..2 29484.492755: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40869              ps-13725 (13725) [005] dn.3 29484.492758: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40870     kworker/0:0-13450 (13450) [000] d..2 29484.492759: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40871              ps-13725 (13725) [005] d..2 29484.492760: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40872     kworker/0:0-13450 (13450) [000] d..3 29484.492767: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40873 shell svc 13722-13723 ( 1007) [005] d..2 29484.492768: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40874          <idle>-0     (-----) [001] .n.1 29484.492771: cpu_idle: state=4294967295 cpu_id=1
40875     kworker/0:0-13450 (13450) [000] d..2 29484.492776: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40876          <idle>-0     (-----) [001] d..2 29484.492777: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40877          <idle>-0     (-----) [000] d..1 29484.492782: cpu_idle: state=0 cpu_id=0
40878            adbd-23485 ( 1007) [001] d..2 29484.492819: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40879          <idle>-0     (-----) [001] d..1 29484.492823: cpu_idle: state=0 cpu_id=1
40880              ps-13725 (13725) [005] d..2 29484.492824: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40881              ps-13725 (13725) [005] dn.3 29484.492827: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40882              ps-13725 (13725) [005] d..2 29484.492830: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40883 shell svc 13722-13723 ( 1007) [005] d..2 29484.492838: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40884          <idle>-0     (-----) [000] d.h3 29484.492864: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40885          <idle>-0     (-----) [000] dnh4 29484.492869: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40886          <idle>-0     (-----) [000] .n.1 29484.492874: cpu_idle: state=4294967295 cpu_id=0
40887          <idle>-0     (-----) [000] d..2 29484.492879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40888   kworker/u17:2-23076 (23076) [000] d..2 29484.492886: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40889   kworker/u17:2-23076 (23076) [000] d..3 29484.492890: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40890              ps-13725 (13725) [005] d..2 29484.492895: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40891              ps-13725 (13725) [005] dn.3 29484.492898: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40892              ps-13725 (13725) [005] d..2 29484.492900: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40893   kworker/u17:2-23076 (23076) [000] d..2 29484.492906: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40894 shell svc 13722-13723 ( 1007) [005] d..2 29484.492907: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40895     kworker/0:0-13450 (13450) [000] d..2 29484.492912: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40896     kworker/0:0-13450 (13450) [000] d..3 29484.492920: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40897          <idle>-0     (-----) [001] .n.1 29484.492924: cpu_idle: state=4294967295 cpu_id=1
40898          <idle>-0     (-----) [001] d..2 29484.492929: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40899     kworker/0:0-13450 (13450) [000] d..2 29484.492933: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40900          <idle>-0     (-----) [000] d..1 29484.492939: cpu_idle: state=0 cpu_id=0
40901            adbd-23485 ( 1007) [001] d..2 29484.492943: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40902          <idle>-0     (-----) [001] d..1 29484.492947: cpu_idle: state=0 cpu_id=1
40903              ps-13725 (13725) [005] d..2 29484.492966: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40904              ps-13725 (13725) [005] dn.3 29484.492969: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40905              ps-13725 (13725) [005] d..2 29484.492971: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40906 shell svc 13722-13723 ( 1007) [005] d..2 29484.492979: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40907              ps-13725 (13725) [005] d..2 29484.493039: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40908              ps-13725 (13725) [005] dn.3 29484.493042: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40909              ps-13725 (13725) [005] d..2 29484.493045: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40910 shell svc 13722-13723 ( 1007) [005] d..2 29484.493052: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40911          <idle>-0     (-----) [000] d.h3 29484.493055: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40912          <idle>-0     (-----) [000] dnh4 29484.493060: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40913          <idle>-0     (-----) [000] .n.1 29484.493065: cpu_idle: state=4294967295 cpu_id=0
40914          <idle>-0     (-----) [000] d..2 29484.493070: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40915   kworker/u17:2-23076 (23076) [000] d..2 29484.493077: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40916   kworker/u17:2-23076 (23076) [000] d..3 29484.493082: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40917   kworker/u17:2-23076 (23076) [000] d..2 29484.493097: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40918     kworker/0:0-13450 (13450) [000] d..2 29484.493103: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
40919              ps-13725 (13725) [005] d..2 29484.493107: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40920              ps-13725 (13725) [005] dn.3 29484.493110: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40921     kworker/0:0-13450 (13450) [000] d..3 29484.493111: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
40922              ps-13725 (13725) [005] d..2 29484.493112: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40923     kworker/0:0-13450 (13450) [000] d..2 29484.493119: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
40924 shell svc 13722-13723 ( 1007) [005] d..2 29484.493119: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40925            adbd-23484 ( 1007) [000] d..2 29484.493129: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
40926            adbd-23484 ( 1007) [000] d..3 29484.493134: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
40927              ps-13725 (13725) [005] d..2 29484.493174: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40928            adbd-23484 ( 1007) [000] d..2 29484.493176: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
40929              ps-13725 (13725) [005] dn.3 29484.493177: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40930              ps-13725 (13725) [005] d..2 29484.493179: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40931 shell svc 13722-13723 ( 1007) [005] d..2 29484.493186: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40932            adbd-1007  ( 1007) [000] d..1 29484.493236: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40933              ps-13725 (13725) [005] d..2 29484.493244: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40934            adbd-1007  ( 1007) [000] d..2 29484.493247: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40935              ps-13725 (13725) [005] dn.3 29484.493247: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40936              ps-13725 (13725) [005] d..2 29484.493249: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40937          <idle>-0     (-----) [001] .n.1 29484.493251: cpu_idle: state=4294967295 cpu_id=1
40938          <idle>-0     (-----) [001] d..2 29484.493256: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40939 shell svc 13722-13723 ( 1007) [005] d..2 29484.493257: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40940            adbd-1007  ( 1007) [000] d..2 29484.493278: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40941          <idle>-0     (-----) [000] d..1 29484.493286: cpu_idle: state=0 cpu_id=0
40942            adbd-23485 ( 1007) [001] d..2 29484.493297: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40943          <idle>-0     (-----) [001] d..1 29484.493301: cpu_idle: state=0 cpu_id=1
40944          <idle>-0     (-----) [000] d.h3 29484.493311: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40945              ps-13725 (13725) [005] d..2 29484.493313: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40946              ps-13725 (13725) [005] dn.3 29484.493316: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40947          <idle>-0     (-----) [000] dnh4 29484.493316: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40948              ps-13725 (13725) [005] d..2 29484.493318: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40949          <idle>-0     (-----) [000] .n.1 29484.493321: cpu_idle: state=4294967295 cpu_id=0
40950 shell svc 13722-13723 ( 1007) [005] d..2 29484.493326: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40951          <idle>-0     (-----) [000] d..2 29484.493327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40952   kworker/u17:2-23076 (23076) [000] d..2 29484.493334: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40953   kworker/u17:2-23076 (23076) [000] d..3 29484.493339: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40954   kworker/u17:2-23076 (23076) [000] d..2 29484.493355: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40955     kworker/0:0-13450 (13450) [000] d..2 29484.493361: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40956     kworker/0:0-13450 (13450) [000] d..3 29484.493369: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40957          <idle>-0     (-----) [001] .n.1 29484.493374: cpu_idle: state=4294967295 cpu_id=1
40958     kworker/0:0-13450 (13450) [000] d..2 29484.493377: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40959          <idle>-0     (-----) [001] d..2 29484.493379: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40960              ps-13725 (13725) [005] d..2 29484.493383: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40961          <idle>-0     (-----) [000] d..1 29484.493383: cpu_idle: state=0 cpu_id=0
40962              ps-13725 (13725) [005] dn.3 29484.493386: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40963              ps-13725 (13725) [005] d..2 29484.493388: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40964 shell svc 13722-13723 ( 1007) [005] d..2 29484.493395: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40965            adbd-23485 ( 1007) [001] d..2 29484.493421: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40966          <idle>-0     (-----) [001] d..1 29484.493426: cpu_idle: state=0 cpu_id=1
40967              ps-13725 (13725) [005] d..2 29484.493452: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40968              ps-13725 (13725) [005] dn.3 29484.493455: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40969              ps-13725 (13725) [005] d..2 29484.493457: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40970          <idle>-0     (-----) [000] d.h3 29484.493460: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40971 shell svc 13722-13723 ( 1007) [005] d..2 29484.493464: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40972          <idle>-0     (-----) [000] dnh4 29484.493465: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40973          <idle>-0     (-----) [000] .n.1 29484.493470: cpu_idle: state=4294967295 cpu_id=0
40974          <idle>-0     (-----) [000] d..2 29484.493475: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40975   kworker/u17:2-23076 (23076) [000] d..2 29484.493481: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40976   kworker/u17:2-23076 (23076) [000] d..3 29484.493486: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40977   kworker/u17:2-23076 (23076) [000] d..2 29484.493501: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
40978     kworker/0:0-13450 (13450) [000] d..2 29484.493506: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
40979     kworker/0:0-13450 (13450) [000] d..3 29484.493514: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
40980          <idle>-0     (-----) [001] .n.1 29484.493518: cpu_idle: state=4294967295 cpu_id=1
40981     kworker/0:0-13450 (13450) [000] d..2 29484.493521: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40982              ps-13725 (13725) [005] d..2 29484.493522: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40983          <idle>-0     (-----) [001] d..2 29484.493523: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
40984              ps-13725 (13725) [005] dn.3 29484.493524: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40985              ps-13725 (13725) [005] d..2 29484.493527: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40986          <idle>-0     (-----) [000] d..1 29484.493528: cpu_idle: state=0 cpu_id=0
40987 shell svc 13722-13723 ( 1007) [005] d..2 29484.493534: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40988            adbd-23485 ( 1007) [001] d..2 29484.493537: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40989          <idle>-0     (-----) [001] d..1 29484.493541: cpu_idle: state=0 cpu_id=1
40990              ps-13725 (13725) [005] d..2 29484.493592: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40991              ps-13725 (13725) [005] dn.3 29484.493595: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
40992              ps-13725 (13725) [005] d..2 29484.493597: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
40993 shell svc 13722-13723 ( 1007) [005] d..2 29484.493604: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
40994          <idle>-0     (-----) [000] d.h3 29484.493605: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40995          <idle>-0     (-----) [000] dnh4 29484.493610: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
40996          <idle>-0     (-----) [000] .n.1 29484.493615: cpu_idle: state=4294967295 cpu_id=0
40997          <idle>-0     (-----) [000] d..2 29484.493620: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
40998   kworker/u17:2-23076 (23076) [000] d..2 29484.493626: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
40999   kworker/u17:2-23076 (23076) [000] d..3 29484.493630: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41000   kworker/u17:2-23076 (23076) [000] d..2 29484.493645: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41001     kworker/0:0-13450 (13450) [000] d..2 29484.493650: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41002     kworker/0:0-13450 (13450) [000] d..3 29484.493659: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41003              ps-13725 (13725) [005] d..2 29484.493662: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41004              ps-13725 (13725) [005] dn.3 29484.493665: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41005     kworker/0:0-13450 (13450) [000] d..2 29484.493666: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41006              ps-13725 (13725) [005] d..2 29484.493668: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41007 shell svc 13722-13723 ( 1007) [005] d..2 29484.493675: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41008            adbd-23484 ( 1007) [000] d..2 29484.493676: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41009            adbd-23484 ( 1007) [000] d..3 29484.493682: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41010            adbd-23484 ( 1007) [000] d..2 29484.493722: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41011          <idle>-0     (-----) [001] d.s2 29484.493739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41012              ps-13725 (13725) [005] d..2 29484.493741: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41013              ps-13725 (13725) [005] dn.3 29484.493744: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41014              ps-13725 (13725) [005] d..2 29484.493746: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41015          <idle>-0     (-----) [001] dns3 29484.493749: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41016 shell svc 13722-13723 ( 1007) [005] d..2 29484.493754: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41017          <idle>-0     (-----) [001] .n.1 29484.493760: cpu_idle: state=4294967295 cpu_id=1
41018          <idle>-0     (-----) [001] d..2 29484.493765: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41019     rcu_preempt-7     (    7) [001] d..2 29484.493771: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
41020     rcu_preempt-7     (    7) [001] d..3 29484.493790: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
41021     rcu_preempt-7     (    7) [001] d..2 29484.493800: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
41022         rcuop/2-29    (   29) [001] d..2 29484.493804: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
41023            adbd-1007  ( 1007) [000] d..1 29484.493807: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41024              ps-13725 (13725) [005] d..2 29484.493811: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41025              ps-13725 (13725) [005] dn.3 29484.493814: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41026              ps-13725 (13725) [005] d..2 29484.493816: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41027            adbd-1007  ( 1007) [000] d..2 29484.493820: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41028 shell svc 13722-13723 ( 1007) [005] d..2 29484.493824: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41029         rcuop/2-29    (   29) [001] d..3 29484.493829: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
41030         rcuop/2-29    (   29) [001] d..2 29484.493834: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
41031         rcuop/3-37    (   37) [001] d..2 29484.493844: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
41032            adbd-1007  ( 1007) [000] d..2 29484.493858: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41033          <idle>-0     (-----) [000] d..1 29484.493867: cpu_idle: state=0 cpu_id=0
41034              ps-13725 (13725) [005] d..2 29484.493880: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41035              ps-13725 (13725) [005] dn.3 29484.493883: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41036              ps-13725 (13725) [005] d..2 29484.493885: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41037            adbd-23485 ( 1007) [001] d..2 29484.493890: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41038 shell svc 13722-13723 ( 1007) [005] d..2 29484.493892: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41039          <idle>-0     (-----) [001] d..1 29484.493899: cpu_idle: state=0 cpu_id=1
41040          <idle>-0     (-----) [000] d.h3 29484.493916: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41041          <idle>-0     (-----) [000] dnh4 29484.493925: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41042          <idle>-0     (-----) [000] .n.1 29484.493930: cpu_idle: state=4294967295 cpu_id=0
41043          <idle>-0     (-----) [000] d..2 29484.493936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41044   kworker/u17:2-23076 (23076) [000] d..2 29484.493944: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41045              ps-13725 (13725) [005] d..2 29484.493947: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41046   kworker/u17:2-23076 (23076) [000] d..3 29484.493949: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41047              ps-13725 (13725) [005] dn.3 29484.493950: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41048              ps-13725 (13725) [005] d..2 29484.493952: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41049 shell svc 13722-13723 ( 1007) [005] d..2 29484.493960: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41050   kworker/u17:2-23076 (23076) [000] d..2 29484.493964: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41051     kworker/0:0-13450 (13450) [000] d..2 29484.493969: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41052     kworker/0:0-13450 (13450) [000] d..3 29484.493987: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41053          <idle>-0     (-----) [001] .n.1 29484.493991: cpu_idle: state=4294967295 cpu_id=1
41054     kworker/0:0-13450 (13450) [000] d..2 29484.493995: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41055          <idle>-0     (-----) [001] d..2 29484.493998: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41056          <idle>-0     (-----) [000] d..1 29484.494001: cpu_idle: state=0 cpu_id=0
41057            adbd-23485 ( 1007) [001] d..2 29484.494043: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41058          <idle>-0     (-----) [001] d..1 29484.494049: cpu_idle: state=0 cpu_id=1
41059              ps-13725 (13725) [005] d..2 29484.494051: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41060              ps-13725 (13725) [005] dn.3 29484.494054: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41061              ps-13725 (13725) [005] d..2 29484.494056: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41062 shell svc 13722-13723 ( 1007) [005] d..2 29484.494064: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41063          <idle>-0     (-----) [000] d.h3 29484.494072: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41064          <idle>-0     (-----) [000] dnh4 29484.494077: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41065          <idle>-0     (-----) [000] .n.1 29484.494082: cpu_idle: state=4294967295 cpu_id=0
41066          <idle>-0     (-----) [000] d..2 29484.494087: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41067   kworker/u17:2-23076 (23076) [000] d..2 29484.494093: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41068   kworker/u17:2-23076 (23076) [000] d..3 29484.494098: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41069   kworker/u17:2-23076 (23076) [000] d..2 29484.494114: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41070     kworker/0:0-13450 (13450) [000] d..2 29484.494118: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41071     kworker/0:0-13450 (13450) [000] d..3 29484.494127: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41072          <idle>-0     (-----) [001] .n.1 29484.494131: cpu_idle: state=4294967295 cpu_id=1
41073     kworker/0:0-13450 (13450) [000] d..2 29484.494134: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41074          <idle>-0     (-----) [001] d..2 29484.494137: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41075          <idle>-0     (-----) [000] d..1 29484.494140: cpu_idle: state=0 cpu_id=0
41076            adbd-23485 ( 1007) [001] d..2 29484.494153: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41077          <idle>-0     (-----) [001] d..1 29484.494158: cpu_idle: state=0 cpu_id=1
41078              ps-13725 (13725) [005] d..2 29484.494160: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41079              ps-13725 (13725) [005] dn.3 29484.494164: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41080              ps-13725 (13725) [005] d..2 29484.494167: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41081 shell svc 13722-13723 ( 1007) [005] d..2 29484.494175: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41082          <idle>-0     (-----) [000] d.h3 29484.494229: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41083          <idle>-0     (-----) [000] dnh4 29484.494234: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41084          <idle>-0     (-----) [000] .n.1 29484.494238: cpu_idle: state=4294967295 cpu_id=0
41085          <idle>-0     (-----) [000] d..2 29484.494244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41086   kworker/u17:2-23076 (23076) [000] d..2 29484.494249: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41087   kworker/u17:2-23076 (23076) [000] d..3 29484.494254: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41088              ps-13725 (13725) [005] d..2 29484.494266: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41089   kworker/u17:2-23076 (23076) [000] d..2 29484.494269: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41090              ps-13725 (13725) [005] dn.3 29484.494269: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41091              ps-13725 (13725) [005] d..2 29484.494271: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41092     kworker/0:0-13450 (13450) [000] d..2 29484.494274: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41093 shell svc 13722-13723 ( 1007) [005] d..2 29484.494279: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41094     kworker/0:0-13450 (13450) [000] d..3 29484.494283: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41095     kworker/0:0-13450 (13450) [000] d..2 29484.494290: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41096            adbd-23484 ( 1007) [000] d..2 29484.494301: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41097            adbd-23484 ( 1007) [000] d..3 29484.494306: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41098            adbd-23484 ( 1007) [000] d..2 29484.494348: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41099            adbd-1007  ( 1007) [000] d..1 29484.494404: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41100            adbd-1007  ( 1007) [000] d..2 29484.494414: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41101          <idle>-0     (-----) [001] .n.1 29484.494419: cpu_idle: state=4294967295 cpu_id=1
41102          <idle>-0     (-----) [001] d..2 29484.494425: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41103            adbd-1007  ( 1007) [000] d..2 29484.494445: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41104          <idle>-0     (-----) [000] d..1 29484.494454: cpu_idle: state=0 cpu_id=0
41105            adbd-23485 ( 1007) [001] d..2 29484.494467: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41106          <idle>-0     (-----) [001] d..1 29484.494473: cpu_idle: state=0 cpu_id=1
41107              ps-13725 (13725) [005] d..2 29484.494475: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41108          <idle>-0     (-----) [000] d.h3 29484.494478: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41109              ps-13725 (13725) [005] dn.3 29484.494479: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41110              ps-13725 (13725) [005] d..2 29484.494482: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41111          <idle>-0     (-----) [000] dnh4 29484.494484: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41112          <idle>-0     (-----) [000] .n.1 29484.494489: cpu_idle: state=4294967295 cpu_id=0
41113 shell svc 13722-13723 ( 1007) [005] d..2 29484.494491: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41114          <idle>-0     (-----) [000] d..2 29484.494495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41115   kworker/u17:2-23076 (23076) [000] d..2 29484.494503: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41116   kworker/u17:2-23076 (23076) [000] d..3 29484.494508: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41117   kworker/u17:2-23076 (23076) [000] d..2 29484.494524: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41118     kworker/0:0-13450 (13450) [000] d..2 29484.494529: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41119     kworker/0:0-13450 (13450) [000] d..3 29484.494538: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41120          <idle>-0     (-----) [001] .n.1 29484.494543: cpu_idle: state=4294967295 cpu_id=1
41121     kworker/0:0-13450 (13450) [000] d..2 29484.494545: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41122          <idle>-0     (-----) [001] d..2 29484.494548: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41123          <idle>-0     (-----) [000] d..1 29484.494551: cpu_idle: state=0 cpu_id=0
41124            adbd-23485 ( 1007) [001] d..2 29484.494590: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41125          <idle>-0     (-----) [001] d..1 29484.494595: cpu_idle: state=0 cpu_id=1
41126          <idle>-0     (-----) [000] d.h3 29484.494611: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41127          <idle>-0     (-----) [000] dnh4 29484.494616: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41128          <idle>-0     (-----) [000] .n.1 29484.494620: cpu_idle: state=4294967295 cpu_id=0
41129          <idle>-0     (-----) [000] d..2 29484.494626: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41130   kworker/u17:2-23076 (23076) [000] d..2 29484.494631: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41131   kworker/u17:2-23076 (23076) [000] d..3 29484.494636: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41132   kworker/u17:2-23076 (23076) [000] d..2 29484.494650: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41133     kworker/0:0-13450 (13450) [000] d..2 29484.494656: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41134              ps-13725 (13725) [005] d..2 29484.494661: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41135     kworker/0:0-13450 (13450) [000] d..3 29484.494664: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41136              ps-13725 (13725) [005] dn.3 29484.494665: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41137              ps-13725 (13725) [005] d..2 29484.494668: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41138          <idle>-0     (-----) [001] .n.1 29484.494669: cpu_idle: state=4294967295 cpu_id=1
41139     kworker/0:0-13450 (13450) [000] d..2 29484.494672: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41140          <idle>-0     (-----) [001] d..2 29484.494675: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41141 shell svc 13722-13723 ( 1007) [005] d..2 29484.494677: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41142          <idle>-0     (-----) [000] d..1 29484.494678: cpu_idle: state=0 cpu_id=0
41143            adbd-23485 ( 1007) [001] d..2 29484.494689: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41144          <idle>-0     (-----) [001] d..1 29484.494694: cpu_idle: state=0 cpu_id=1
41145              ps-13725 (13725) [005] d..2 29484.494738: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41146              ps-13725 (13725) [005] dn.3 29484.494741: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41147              ps-13725 (13725) [005] d..2 29484.494743: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41148          <idle>-0     (-----) [000] d.h3 29484.494748: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41149 shell svc 13722-13723 ( 1007) [005] d..2 29484.494751: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41150          <idle>-0     (-----) [000] dnh4 29484.494753: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41151          <idle>-0     (-----) [000] .n.1 29484.494757: cpu_idle: state=4294967295 cpu_id=0
41152          <idle>-0     (-----) [000] d..2 29484.494763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41153   kworker/u17:2-23076 (23076) [000] d..2 29484.494768: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41154   kworker/u17:2-23076 (23076) [000] d..3 29484.494772: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41155   kworker/u17:2-23076 (23076) [000] d..2 29484.494787: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41156     kworker/0:0-13450 (13450) [000] d..2 29484.494792: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41157     kworker/0:0-13450 (13450) [000] d..3 29484.494801: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41158     kworker/0:0-13450 (13450) [000] d..2 29484.494809: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41159            adbd-23484 ( 1007) [000] d..2 29484.494819: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41160            adbd-23484 ( 1007) [000] d..3 29484.494825: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41161              ps-13725 (13725) [005] d..2 29484.494851: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41162              ps-13725 (13725) [005] dn.3 29484.494854: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41163              ps-13725 (13725) [005] d..2 29484.494857: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41164 shell svc 13722-13723 ( 1007) [005] d..2 29484.494865: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41165            adbd-23484 ( 1007) [000] d..2 29484.494867: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41166            adbd-1007  ( 1007) [000] d..1 29484.494923: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41167              ps-13725 (13725) [005] d..2 29484.494927: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41168              ps-13725 (13725) [005] dn.3 29484.494930: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41169              ps-13725 (13725) [005] d..2 29484.494932: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41170            adbd-1007  ( 1007) [000] d..2 29484.494934: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41171          <idle>-0     (-----) [001] .n.1 29484.494939: cpu_idle: state=4294967295 cpu_id=1
41172 shell svc 13722-13723 ( 1007) [005] d..2 29484.494939: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41173          <idle>-0     (-----) [001] d..2 29484.494944: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41174            adbd-1007  ( 1007) [000] d..2 29484.494959: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41175          <idle>-0     (-----) [000] d..1 29484.494967: cpu_idle: state=0 cpu_id=0
41176            adbd-23485 ( 1007) [001] d..2 29484.494985: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41177          <idle>-0     (-----) [001] d..1 29484.494991: cpu_idle: state=0 cpu_id=1
41178          <idle>-0     (-----) [000] d.h3 29484.494997: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41179          <idle>-0     (-----) [000] dnh4 29484.495002: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41180          <idle>-0     (-----) [000] .n.1 29484.495007: cpu_idle: state=4294967295 cpu_id=0
41181          <idle>-0     (-----) [000] d..2 29484.495013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41182   kworker/u17:2-23076 (23076) [000] d..2 29484.495021: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41183              ps-13725 (13725) [005] d..2 29484.495022: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41184   kworker/u17:2-23076 (23076) [000] d..3 29484.495026: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41185              ps-13725 (13725) [005] dn.3 29484.495026: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41186              ps-13725 (13725) [005] d..2 29484.495028: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41187 shell svc 13722-13723 ( 1007) [005] d..2 29484.495036: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41188   kworker/u17:2-23076 (23076) [000] d..2 29484.495041: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41189     kworker/0:0-13450 (13450) [000] d..2 29484.495046: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41190     kworker/0:0-13450 (13450) [000] d..3 29484.495054: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41191          <idle>-0     (-----) [001] .n.1 29484.495059: cpu_idle: state=4294967295 cpu_id=1
41192     kworker/0:0-13450 (13450) [000] d..2 29484.495062: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41193          <idle>-0     (-----) [001] d..2 29484.495065: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41194          <idle>-0     (-----) [000] d..1 29484.495068: cpu_idle: state=0 cpu_id=0
41195            adbd-23485 ( 1007) [001] d..2 29484.495107: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41196          <idle>-0     (-----) [001] d..1 29484.495112: cpu_idle: state=0 cpu_id=1
41197              ps-13725 (13725) [005] d..2 29484.495117: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41198              ps-13725 (13725) [005] dn.3 29484.495120: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41199              ps-13725 (13725) [005] d..2 29484.495123: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41200          <idle>-0     (-----) [000] d.h3 29484.495128: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41201 shell svc 13722-13723 ( 1007) [005] d..2 29484.495131: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41202          <idle>-0     (-----) [000] dnh4 29484.495133: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41203          <idle>-0     (-----) [000] .n.1 29484.495138: cpu_idle: state=4294967295 cpu_id=0
41204          <idle>-0     (-----) [000] d..2 29484.495143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41205   kworker/u17:2-23076 (23076) [000] d..2 29484.495149: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41206   kworker/u17:2-23076 (23076) [000] d..3 29484.495154: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41207   kworker/u17:2-23076 (23076) [000] d..2 29484.495169: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41208     kworker/0:0-13450 (13450) [000] d..2 29484.495174: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41209     kworker/0:0-13450 (13450) [000] d..3 29484.495182: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41210          <idle>-0     (-----) [001] .n.1 29484.495187: cpu_idle: state=4294967295 cpu_id=1
41211     kworker/0:0-13450 (13450) [000] d..2 29484.495189: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41212              ps-13725 (13725) [005] d..2 29484.495190: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41213          <idle>-0     (-----) [001] d..2 29484.495193: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41214              ps-13725 (13725) [005] dn.3 29484.495194: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41215          <idle>-0     (-----) [000] d..1 29484.495196: cpu_idle: state=0 cpu_id=0
41216              ps-13725 (13725) [005] d..2 29484.495196: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41217 shell svc 13722-13723 ( 1007) [005] d..2 29484.495204: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41218            adbd-23485 ( 1007) [001] d..2 29484.495206: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41219          <idle>-0     (-----) [001] d..1 29484.495211: cpu_idle: state=0 cpu_id=1
41220              ps-13725 (13725) [005] d..2 29484.495265: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41221              ps-13725 (13725) [005] dn.3 29484.495268: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41222              ps-13725 (13725) [005] d..2 29484.495270: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41223 shell svc 13722-13723 ( 1007) [005] d..2 29484.495277: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41224          <idle>-0     (-----) [000] d.h3 29484.495280: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41225          <idle>-0     (-----) [000] dnh4 29484.495285: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41226          <idle>-0     (-----) [000] .n.1 29484.495289: cpu_idle: state=4294967295 cpu_id=0
41227          <idle>-0     (-----) [000] d..2 29484.495294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41228   kworker/u17:2-23076 (23076) [000] d..2 29484.495300: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41229   kworker/u17:2-23076 (23076) [000] d..3 29484.495305: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41230   kworker/u17:2-23076 (23076) [000] d..2 29484.495320: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41231     kworker/0:0-13450 (13450) [000] d..2 29484.495325: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41232     kworker/0:0-13450 (13450) [000] d..3 29484.495334: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41233              ps-13725 (13725) [005] d..2 29484.495335: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41234              ps-13725 (13725) [005] dn.3 29484.495338: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41235              ps-13725 (13725) [005] d..2 29484.495340: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41236     kworker/0:0-13450 (13450) [000] d..2 29484.495342: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41237 shell svc 13722-13723 ( 1007) [005] d..2 29484.495348: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41238            adbd-23484 ( 1007) [000] d..2 29484.495353: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41239            adbd-23484 ( 1007) [000] d..3 29484.495358: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41240            adbd-23484 ( 1007) [000] d..2 29484.495399: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41241              ps-13725 (13725) [005] d..2 29484.495432: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41242              ps-13725 (13725) [005] dn.3 29484.495435: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41243              ps-13725 (13725) [005] d..2 29484.495437: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41244 shell svc 13722-13723 ( 1007) [005] d..2 29484.495445: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41245            adbd-1007  ( 1007) [000] d..1 29484.495458: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41246            adbd-1007  ( 1007) [000] d..2 29484.495469: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41247          <idle>-0     (-----) [001] .n.1 29484.495473: cpu_idle: state=4294967295 cpu_id=1
41248          <idle>-0     (-----) [001] d..2 29484.495478: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41249            adbd-1007  ( 1007) [000] d..2 29484.495495: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41250              ps-13725 (13725) [005] d..2 29484.495502: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41251          <idle>-0     (-----) [000] d..1 29484.495503: cpu_idle: state=0 cpu_id=0
41252              ps-13725 (13725) [005] dn.3 29484.495505: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41253              ps-13725 (13725) [005] d..2 29484.495507: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41254 shell svc 13722-13723 ( 1007) [005] d..2 29484.495515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41255            adbd-23485 ( 1007) [001] d..2 29484.495520: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41256          <idle>-0     (-----) [001] d..1 29484.495525: cpu_idle: state=0 cpu_id=1
41257          <idle>-0     (-----) [000] d.h3 29484.495540: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41258          <idle>-0     (-----) [000] dnh4 29484.495546: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41259          <idle>-0     (-----) [000] .n.1 29484.495551: cpu_idle: state=4294967295 cpu_id=0
41260          <idle>-0     (-----) [000] d..2 29484.495557: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41261   kworker/u17:2-23076 (23076) [000] d..2 29484.495564: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41262   kworker/u17:2-23076 (23076) [000] d..3 29484.495569: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41263              ps-13725 (13725) [005] d..2 29484.495575: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41264              ps-13725 (13725) [005] dn.3 29484.495578: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41265              ps-13725 (13725) [005] d..2 29484.495580: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41266   kworker/u17:2-23076 (23076) [000] d..2 29484.495585: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41267 shell svc 13722-13723 ( 1007) [005] d..2 29484.495588: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41268     kworker/0:0-13450 (13450) [000] d..2 29484.495591: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41269     kworker/0:0-13450 (13450) [000] d..3 29484.495599: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41270          <idle>-0     (-----) [001] .n.1 29484.495604: cpu_idle: state=4294967295 cpu_id=1
41271     kworker/0:0-13450 (13450) [000] d..2 29484.495607: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41272          <idle>-0     (-----) [001] d..2 29484.495610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41273          <idle>-0     (-----) [000] d..1 29484.495614: cpu_idle: state=0 cpu_id=0
41274            adbd-23485 ( 1007) [001] d..2 29484.495652: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41275          <idle>-0     (-----) [001] d..1 29484.495657: cpu_idle: state=0 cpu_id=1
41276          <idle>-0     (-----) [000] d.h3 29484.495679: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41277          <idle>-0     (-----) [000] dnh4 29484.495684: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41278          <idle>-0     (-----) [000] .n.1 29484.495689: cpu_idle: state=4294967295 cpu_id=0
41279          <idle>-0     (-----) [000] d..2 29484.495694: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41280   kworker/u17:2-23076 (23076) [000] d..2 29484.495700: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41281   kworker/u17:2-23076 (23076) [000] d..3 29484.495705: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41282   kworker/u17:2-23076 (23076) [000] d..2 29484.495719: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41283     kworker/0:0-13450 (13450) [000] d..2 29484.495724: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41284     kworker/0:0-13450 (13450) [000] d..3 29484.495732: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41285          <idle>-0     (-----) [001] .n.1 29484.495737: cpu_idle: state=4294967295 cpu_id=1
41286     kworker/0:0-13450 (13450) [000] d..2 29484.495740: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41287          <idle>-0     (-----) [001] d..2 29484.495743: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41288          <idle>-0     (-----) [000] d..1 29484.495746: cpu_idle: state=0 cpu_id=0
41289            adbd-23485 ( 1007) [001] d..2 29484.495756: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41290          <idle>-0     (-----) [001] d..1 29484.495761: cpu_idle: state=0 cpu_id=1
41291          <idle>-0     (-----) [000] d.h3 29484.495821: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41292          <idle>-0     (-----) [000] dnh4 29484.495826: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41293          <idle>-0     (-----) [000] .n.1 29484.495830: cpu_idle: state=4294967295 cpu_id=0
41294          <idle>-0     (-----) [000] d..2 29484.495835: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41295   kworker/u17:2-23076 (23076) [000] d..2 29484.495841: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41296   kworker/u17:2-23076 (23076) [000] d..3 29484.495845: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41297   kworker/u17:2-23076 (23076) [000] d..2 29484.495860: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41298     kworker/0:0-13450 (13450) [000] d..2 29484.495864: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41299     kworker/0:0-13450 (13450) [000] d..3 29484.495873: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41300     kworker/0:0-13450 (13450) [000] d..2 29484.495880: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41301            adbd-23484 ( 1007) [000] d..2 29484.495890: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41302            adbd-23484 ( 1007) [000] d..3 29484.495895: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41303            adbd-23484 ( 1007) [000] d..2 29484.495935: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41304            adbd-1007  ( 1007) [000] d..1 29484.495989: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41305              ps-13725 (13725) [005] d..2 29484.496001: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41306              ps-13725 (13725) [005] dn.3 29484.496005: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41307              ps-13725 (13725) [005] d..2 29484.496007: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41308            adbd-1007  ( 1007) [000] d..2 29484.496012: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41309          <idle>-0     (-----) [001] .n.1 29484.496016: cpu_idle: state=4294967295 cpu_id=1
41310 shell svc 13722-13723 ( 1007) [005] d..2 29484.496017: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41311          <idle>-0     (-----) [001] d..2 29484.496022: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41312            adbd-1007  ( 1007) [000] d..2 29484.496037: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41313          <idle>-0     (-----) [000] d..1 29484.496046: cpu_idle: state=0 cpu_id=0
41314            adbd-23485 ( 1007) [001] d..2 29484.496064: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41315          <idle>-0     (-----) [001] d..1 29484.496069: cpu_idle: state=0 cpu_id=1
41316              ps-13725 (13725) [005] d..2 29484.496077: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41317              ps-13725 (13725) [005] dn.3 29484.496080: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41318          <idle>-0     (-----) [000] d.h3 29484.496082: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41319              ps-13725 (13725) [005] d..2 29484.496082: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41320 shell svc 13722-13723 ( 1007) [005] d..2 29484.496090: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41321          <idle>-0     (-----) [000] dnh4 29484.496090: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41322          <idle>-0     (-----) [000] .n.1 29484.496096: cpu_idle: state=4294967295 cpu_id=0
41323          <idle>-0     (-----) [000] d..2 29484.496102: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41324   kworker/u17:2-23076 (23076) [000] d..2 29484.496109: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41325   kworker/u17:2-23076 (23076) [000] d..3 29484.496115: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41326   kworker/u17:2-23076 (23076) [000] d..2 29484.496131: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41327     kworker/0:0-13450 (13450) [000] d..2 29484.496136: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41328     kworker/0:0-13450 (13450) [000] d..3 29484.496145: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41329              ps-13725 (13725) [005] d..2 29484.496146: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41330          <idle>-0     (-----) [001] .n.1 29484.496149: cpu_idle: state=4294967295 cpu_id=1
41331              ps-13725 (13725) [005] dn.3 29484.496149: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41332              ps-13725 (13725) [005] d..2 29484.496151: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41333     kworker/0:0-13450 (13450) [000] d..2 29484.496153: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41334          <idle>-0     (-----) [001] d..2 29484.496155: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41335 shell svc 13722-13723 ( 1007) [005] d..2 29484.496159: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41336          <idle>-0     (-----) [000] d..1 29484.496159: cpu_idle: state=0 cpu_id=0
41337            adbd-23485 ( 1007) [001] d..2 29484.496196: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41338          <idle>-0     (-----) [001] d..1 29484.496202: cpu_idle: state=0 cpu_id=1
41339              ps-13725 (13725) [005] d..2 29484.496215: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41340              ps-13725 (13725) [005] dn.3 29484.496218: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41341              ps-13725 (13725) [005] d..2 29484.496221: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41342          <idle>-0     (-----) [000] d.h3 29484.496227: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41343 shell svc 13722-13723 ( 1007) [005] d..2 29484.496228: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41344          <idle>-0     (-----) [000] dnh4 29484.496232: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41345          <idle>-0     (-----) [000] .n.1 29484.496237: cpu_idle: state=4294967295 cpu_id=0
41346          <idle>-0     (-----) [000] d..2 29484.496242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41347   kworker/u17:2-23076 (23076) [000] d..2 29484.496248: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41348   kworker/u17:2-23076 (23076) [000] d..3 29484.496253: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41349   kworker/u17:2-23076 (23076) [000] d..2 29484.496268: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41350     kworker/0:0-13450 (13450) [000] d..2 29484.496273: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41351     kworker/0:0-13450 (13450) [000] d..3 29484.496282: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41352              ps-13725 (13725) [005] d..2 29484.496286: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41353          <idle>-0     (-----) [001] .n.1 29484.496287: cpu_idle: state=4294967295 cpu_id=1
41354              ps-13725 (13725) [005] dn.3 29484.496289: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41355     kworker/0:0-13450 (13450) [000] d..2 29484.496289: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41356              ps-13725 (13725) [005] d..2 29484.496291: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41357          <idle>-0     (-----) [001] d..2 29484.496293: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41358          <idle>-0     (-----) [000] d..1 29484.496295: cpu_idle: state=0 cpu_id=0
41359 shell svc 13722-13723 ( 1007) [005] d..2 29484.496299: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41360            adbd-23485 ( 1007) [001] d..2 29484.496308: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41361          <idle>-0     (-----) [001] d..1 29484.496313: cpu_idle: state=0 cpu_id=1
41362              ps-13725 (13725) [005] d..2 29484.496357: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41363              ps-13725 (13725) [005] dn.3 29484.496360: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41364              ps-13725 (13725) [005] d..2 29484.496362: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41365 shell svc 13722-13723 ( 1007) [005] d..2 29484.496370: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41366          <idle>-0     (-----) [000] d.h3 29484.496422: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41367          <idle>-0     (-----) [000] dnh4 29484.496427: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41368              ps-13725 (13725) [005] d..2 29484.496427: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41369              ps-13725 (13725) [005] dn.3 29484.496430: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41370          <idle>-0     (-----) [000] .n.1 29484.496431: cpu_idle: state=4294967295 cpu_id=0
41371              ps-13725 (13725) [005] d..2 29484.496432: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41372          <idle>-0     (-----) [000] d..2 29484.496436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41373 shell svc 13722-13723 ( 1007) [005] d..2 29484.496440: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41374   kworker/u17:2-23076 (23076) [000] d..2 29484.496442: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41375   kworker/u17:2-23076 (23076) [000] d..3 29484.496447: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41376   kworker/u17:2-23076 (23076) [000] d..2 29484.496462: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41377     kworker/0:0-13450 (13450) [000] d..2 29484.496467: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41378     kworker/0:0-13450 (13450) [000] d..3 29484.496476: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41379     kworker/0:0-13450 (13450) [000] d..2 29484.496483: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41380            adbd-23484 ( 1007) [000] d..2 29484.496493: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41381              ps-13725 (13725) [005] d..2 29484.496495: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41382              ps-13725 (13725) [005] dn.3 29484.496498: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41383            adbd-23484 ( 1007) [000] d..3 29484.496498: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41384              ps-13725 (13725) [005] d..2 29484.496501: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41385 shell svc 13722-13723 ( 1007) [005] d..2 29484.496508: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41386            adbd-23484 ( 1007) [000] d..2 29484.496538: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41387              ps-13725 (13725) [005] d..2 29484.496562: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41388              ps-13725 (13725) [005] dn.3 29484.496565: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41389              ps-13725 (13725) [005] d..2 29484.496567: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41390 shell svc 13722-13723 ( 1007) [005] d..2 29484.496575: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41391            adbd-1007  ( 1007) [000] d..1 29484.496598: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41392            adbd-1007  ( 1007) [000] d..2 29484.496609: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41393          <idle>-0     (-----) [001] .n.1 29484.496613: cpu_idle: state=4294967295 cpu_id=1
41394          <idle>-0     (-----) [001] d..2 29484.496619: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41395              ps-13725 (13725) [005] d..2 29484.496632: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41396            adbd-1007  ( 1007) [000] d..2 29484.496634: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41397              ps-13725 (13725) [005] dn.3 29484.496635: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41398              ps-13725 (13725) [005] d..2 29484.496638: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41399          <idle>-0     (-----) [000] d..1 29484.496642: cpu_idle: state=0 cpu_id=0
41400 shell svc 13722-13723 ( 1007) [005] d..2 29484.496645: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41401            adbd-23485 ( 1007) [001] d..2 29484.496660: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41402          <idle>-0     (-----) [001] d..1 29484.496666: cpu_idle: state=0 cpu_id=1
41403          <idle>-0     (-----) [000] d.h3 29484.496686: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41404          <idle>-0     (-----) [000] dnh4 29484.496692: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41405          <idle>-0     (-----) [000] .n.1 29484.496697: cpu_idle: state=4294967295 cpu_id=0
41406          <idle>-0     (-----) [000] d..2 29484.496703: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41407   kworker/u17:2-23076 (23076) [000] d..2 29484.496710: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41408   kworker/u17:2-23076 (23076) [000] d..3 29484.496715: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41409              ps-13725 (13725) [005] d..2 29484.496729: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41410   kworker/u17:2-23076 (23076) [000] d..2 29484.496732: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41411              ps-13725 (13725) [005] dn.3 29484.496733: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41412              ps-13725 (13725) [005] d..2 29484.496735: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41413     kworker/0:0-13450 (13450) [000] d..2 29484.496738: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41414 shell svc 13722-13723 ( 1007) [005] d..2 29484.496743: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41415     kworker/0:0-13450 (13450) [000] d..3 29484.496746: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41416          <idle>-0     (-----) [001] .n.1 29484.496751: cpu_idle: state=4294967295 cpu_id=1
41417     kworker/0:0-13450 (13450) [000] d..2 29484.496754: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41418          <idle>-0     (-----) [001] d..2 29484.496757: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41419          <idle>-0     (-----) [000] d..1 29484.496761: cpu_idle: state=0 cpu_id=0
41420            adbd-23485 ( 1007) [001] d..2 29484.496799: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41421          <idle>-0     (-----) [001] d..1 29484.496804: cpu_idle: state=0 cpu_id=1
41422              ps-13725 (13725) [005] d..2 29484.496824: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41423              ps-13725 (13725) [005] dn.3 29484.496827: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41424          <idle>-0     (-----) [000] d.h3 29484.496827: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41425              ps-13725 (13725) [005] d..2 29484.496830: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41426          <idle>-0     (-----) [000] dnh4 29484.496832: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41427          <idle>-0     (-----) [000] .n.1 29484.496837: cpu_idle: state=4294967295 cpu_id=0
41428 shell svc 13722-13723 ( 1007) [005] d..2 29484.496838: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41429          <idle>-0     (-----) [000] d..2 29484.496842: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41430   kworker/u17:2-23076 (23076) [000] d..2 29484.496848: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41431   kworker/u17:2-23076 (23076) [000] d..3 29484.496853: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41432   kworker/u17:2-23076 (23076) [000] d..2 29484.496868: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41433     kworker/0:0-13450 (13450) [000] d..2 29484.496873: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41434     kworker/0:0-13450 (13450) [000] d..3 29484.496881: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41435          <idle>-0     (-----) [001] .n.1 29484.496885: cpu_idle: state=4294967295 cpu_id=1
41436     kworker/0:0-13450 (13450) [000] d..2 29484.496889: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41437          <idle>-0     (-----) [001] d..2 29484.496891: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41438          <idle>-0     (-----) [000] d..1 29484.496895: cpu_idle: state=0 cpu_id=0
41439            adbd-23485 ( 1007) [001] d..2 29484.496905: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41440              ps-13725 (13725) [005] d..2 29484.496909: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41441          <idle>-0     (-----) [001] d..1 29484.496910: cpu_idle: state=0 cpu_id=1
41442              ps-13725 (13725) [005] dn.3 29484.496912: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41443              ps-13725 (13725) [005] d..2 29484.496914: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41444 shell svc 13722-13723 ( 1007) [005] d..2 29484.496922: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41445              ps-13725 (13725) [005] d..2 29484.496984: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41446              ps-13725 (13725) [005] dn.3 29484.496987: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41447              ps-13725 (13725) [005] d..2 29484.496989: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41448 shell svc 13722-13723 ( 1007) [005] d..2 29484.496997: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41449          <idle>-0     (-----) [000] d.h3 29484.497037: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41450          <idle>-0     (-----) [000] dnh4 29484.497043: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41451          <idle>-0     (-----) [000] .n.1 29484.497047: cpu_idle: state=4294967295 cpu_id=0
41452          <idle>-0     (-----) [000] d..2 29484.497053: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41453   kworker/u17:2-23076 (23076) [000] d..2 29484.497108: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41454              ps-13725 (13725) [005] d.H2 29484.497113: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
41455   kworker/u17:2-23076 (23076) [000] d..3 29484.497114: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41456              ps-13725 (13725) [005] d.H3 29484.497125: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
41457              ps-13725 (13725) [005] d.H2 29484.497127: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
41458   kworker/u17:2-23076 (23076) [000] d..2 29484.497129: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41459     kworker/0:0-13450 (13450) [000] d..2 29484.497135: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41460              ps-13725 (13725) [005] d..2 29484.497143: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41461              ps-13725 (13725) [005] dn.3 29484.497146: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41462              ps-13725 (13725) [005] d..2 29484.497148: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41463 shell svc 13722-13723 ( 1007) [005] d..2 29484.497158: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41464     kworker/0:0-13450 (13450) [000] d..3 29484.497159: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
41465          <idle>-0     (-----) [001] .n.1 29484.497163: cpu_idle: state=4294967295 cpu_id=1
41466          <idle>-0     (-----) [001] d..2 29484.497170: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
41467     kworker/0:0-13450 (13450) [000] d..2 29484.497177: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41468            adbd-23484 ( 1007) [001] d..2 29484.497183: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41469          <idle>-0     (-----) [000] d..1 29484.497184: cpu_idle: state=0 cpu_id=0
41470            adbd-23484 ( 1007) [001] d..3 29484.497195: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
41471            adbd-23484 ( 1007) [001] d..2 29484.497235: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41472              ps-13725 (13725) [005] d..2 29484.497241: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41473              ps-13725 (13725) [005] dn.3 29484.497244: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41474              ps-13725 (13725) [005] d..2 29484.497246: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41475 shell svc 13722-13723 ( 1007) [005] d..2 29484.497254: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41476            adbd-1007  ( 1007) [001] d..1 29484.497302: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41477              ps-13725 (13725) [005] d..2 29484.497312: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41478              ps-13725 (13725) [005] dn.3 29484.497315: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41479              ps-13725 (13725) [005] d..2 29484.497318: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41480 shell svc 13722-13723 ( 1007) [005] d..2 29484.497325: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41481            adbd-1007  ( 1007) [001] d..2 29484.497330: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
41482          <idle>-0     (-----) [000] .n.1 29484.497334: cpu_idle: state=4294967295 cpu_id=0
41483          <idle>-0     (-----) [000] d..2 29484.497341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41484          <idle>-0     (-----) [003] dnh2 29484.497345: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
41485          <idle>-0     (-----) [003] .n.1 29484.497351: cpu_idle: state=4294967295 cpu_id=3
41486          <idle>-0     (-----) [003] d..2 29484.497359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
41487            adbd-1007  ( 1007) [001] d..2 29484.497362: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41488          <idle>-0     (-----) [007] .n.1 29484.497363: cpu_idle: state=4294967295 cpu_id=7
41489          <idle>-0     (-----) [001] d..1 29484.497369: cpu_idle: state=0 cpu_id=1
41490          <idle>-0     (-----) [007] d..2 29484.497371: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
41491              ps-13725 (13725) [005] d..2 29484.497382: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41492         sugov:0-559   (  559) [003] d..2 29484.497383: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41493         sugov:4-560   (  560) [007] d..2 29484.497384: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
41494              ps-13725 (13725) [005] dn.3 29484.497385: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41495            adbd-23485 ( 1007) [000] d..2 29484.497386: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41496              ps-13725 (13725) [005] d..2 29484.497388: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41497          <idle>-0     (-----) [007] d..1 29484.497390: cpu_idle: state=2 cpu_id=7
41498          <idle>-0     (-----) [003] d..1 29484.497390: cpu_idle: state=2 cpu_id=3
41499 shell svc 13722-13723 ( 1007) [005] d..2 29484.497396: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41500          <idle>-0     (-----) [000] d.h4 29484.497402: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41501          <idle>-0     (-----) [000] dnh5 29484.497408: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41502          <idle>-0     (-----) [000] d..2 29484.497415: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41503   kworker/u17:2-23076 (23076) [000] d..2 29484.497421: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41504   kworker/u17:2-23076 (23076) [000] d..3 29484.497426: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41505   kworker/u17:2-23076 (23076) [000] d..2 29484.497440: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41506     kworker/0:0-13450 (13450) [000] d..2 29484.497444: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
41507              ps-13725 (13725) [005] d..2 29484.497452: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41508     kworker/0:0-13450 (13450) [000] d..3 29484.497452: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
41509              ps-13725 (13725) [005] dn.3 29484.497455: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41510              ps-13725 (13725) [005] d..2 29484.497457: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41511     kworker/0:0-13450 (13450) [000] d..2 29484.497460: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
41512 shell svc 13722-13723 ( 1007) [005] d..2 29484.497466: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41513            adbd-23485 ( 1007) [000] d..2 29484.497502: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41514          <idle>-0     (-----) [000] d..1 29484.497509: cpu_idle: state=0 cpu_id=0
41515              ps-13725 (13725) [005] d..2 29484.497523: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41516              ps-13725 (13725) [005] dn.3 29484.497526: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41517              ps-13725 (13725) [005] d..2 29484.497529: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41518          <idle>-0     (-----) [000] d.h3 29484.497529: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41519          <idle>-0     (-----) [000] dnh4 29484.497534: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41520 shell svc 13722-13723 ( 1007) [005] d..2 29484.497536: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41521          <idle>-0     (-----) [000] .n.1 29484.497539: cpu_idle: state=4294967295 cpu_id=0
41522          <idle>-0     (-----) [000] d..2 29484.497545: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41523   kworker/u17:2-23076 (23076) [000] d..2 29484.497550: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41524   kworker/u17:2-23076 (23076) [000] d..3 29484.497555: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41525   kworker/u17:2-23076 (23076) [000] d..2 29484.497570: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41526     kworker/0:0-13450 (13450) [000] d..2 29484.497574: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
41527     kworker/0:0-13450 (13450) [000] d..3 29484.497582: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
41528     kworker/0:0-13450 (13450) [000] d..2 29484.497590: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
41529            adbd-23485 ( 1007) [000] d..2 29484.497606: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41530          <idle>-0     (-----) [000] d..1 29484.497613: cpu_idle: state=0 cpu_id=0
41531              ps-13725 (13725) [005] d..2 29484.497645: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41532              ps-13725 (13725) [005] dn.3 29484.497648: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41533              ps-13725 (13725) [005] d..2 29484.497650: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41534 shell svc 13722-13723 ( 1007) [005] d..2 29484.497658: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41535          <idle>-0     (-----) [000] d.h3 29484.497738: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41536          <idle>-0     (-----) [000] dnh4 29484.497742: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41537          <idle>-0     (-----) [000] .n.1 29484.497747: cpu_idle: state=4294967295 cpu_id=0
41538          <idle>-0     (-----) [000] d..2 29484.497753: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41539   kworker/u17:2-23076 (23076) [000] d..2 29484.497758: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41540   kworker/u17:2-23076 (23076) [000] d..3 29484.497763: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41541   kworker/u17:2-23076 (23076) [000] d..2 29484.497778: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41542              ps-13725 (13725) [005] d..2 29484.497782: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41543     kworker/0:0-13450 (13450) [000] d..2 29484.497784: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
41544              ps-13725 (13725) [005] dn.3 29484.497785: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41545              ps-13725 (13725) [005] d..2 29484.497787: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41546 shell svc 13722-13723 ( 1007) [005] d..2 29484.497796: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41547     kworker/0:0-13450 (13450) [000] d..3 29484.497803: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41548     kworker/0:0-13450 (13450) [000] d..2 29484.497811: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41549            adbd-23484 ( 1007) [000] d..2 29484.497821: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
41550            adbd-23484 ( 1007) [000] d..3 29484.497831: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41551            adbd-23484 ( 1007) [000] d..2 29484.497870: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41552              ps-13725 (13725) [005] d..2 29484.497889: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41553              ps-13725 (13725) [005] dn.3 29484.497892: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41554              ps-13725 (13725) [005] d..2 29484.497894: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41555 shell svc 13722-13723 ( 1007) [005] d..2 29484.497902: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41556            adbd-1007  ( 1007) [000] d..1 29484.497944: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
41557            adbd-1007  ( 1007) [000] d..2 29484.497961: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41558          <idle>-0     (-----) [001] .n.1 29484.497966: cpu_idle: state=4294967295 cpu_id=1
41559          <idle>-0     (-----) [001] d..2 29484.497971: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41560              ps-13725 (13725) [005] d..2 29484.497973: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41561              ps-13725 (13725) [005] dn.3 29484.497976: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41562              ps-13725 (13725) [005] d..2 29484.497978: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41563 shell svc 13722-13723 ( 1007) [005] d..2 29484.497986: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41564            adbd-1007  ( 1007) [000] d..2 29484.497992: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41565          <idle>-0     (-----) [000] d..1 29484.498000: cpu_idle: state=0 cpu_id=0
41566            adbd-23485 ( 1007) [001] d..2 29484.498018: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41567          <idle>-0     (-----) [001] d..1 29484.498024: cpu_idle: state=0 cpu_id=1
41568          <idle>-0     (-----) [000] d.h3 29484.498040: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41569          <idle>-0     (-----) [000] dnh4 29484.498046: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41570          <idle>-0     (-----) [000] .n.1 29484.498051: cpu_idle: state=4294967295 cpu_id=0
41571              ps-13725 (13725) [005] d..2 29484.498056: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41572          <idle>-0     (-----) [000] d..2 29484.498057: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41573              ps-13725 (13725) [005] dn.3 29484.498059: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41574              ps-13725 (13725) [005] d..2 29484.498061: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41575   kworker/u17:2-23076 (23076) [000] d..2 29484.498066: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41576 shell svc 13722-13723 ( 1007) [005] d..2 29484.498069: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41577   kworker/u17:2-23076 (23076) [000] d..3 29484.498071: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41578   kworker/u17:2-23076 (23076) [000] d..2 29484.498086: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41579     kworker/0:0-13450 (13450) [000] d..2 29484.498092: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41580     kworker/0:0-13450 (13450) [000] d..3 29484.498104: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41581          <idle>-0     (-----) [001] .n.1 29484.498108: cpu_idle: state=4294967295 cpu_id=1
41582     kworker/0:0-13450 (13450) [000] d..2 29484.498112: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41583          <idle>-0     (-----) [001] d..2 29484.498114: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41584          <idle>-0     (-----) [000] d..1 29484.498118: cpu_idle: state=0 cpu_id=0
41585              ps-13725 (13725) [005] d..2 29484.498137: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41586              ps-13725 (13725) [005] dn.3 29484.498140: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41587              ps-13725 (13725) [005] d..2 29484.498142: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41588 shell svc 13722-13723 ( 1007) [005] d..2 29484.498150: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41589            adbd-23485 ( 1007) [001] d..2 29484.498156: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41590          <idle>-0     (-----) [001] d..1 29484.498160: cpu_idle: state=0 cpu_id=1
41591          <idle>-0     (-----) [000] d.h3 29484.498196: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41592          <idle>-0     (-----) [000] dnh4 29484.498203: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41593          <idle>-0     (-----) [000] .n.1 29484.498208: cpu_idle: state=4294967295 cpu_id=0
41594          <idle>-0     (-----) [000] d..2 29484.498213: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41595   kworker/u17:2-23076 (23076) [000] d..2 29484.498220: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41596   kworker/u17:2-23076 (23076) [000] d..3 29484.498225: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41597   kworker/u17:2-23076 (23076) [000] d..2 29484.498240: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41598     kworker/0:0-13450 (13450) [000] d..2 29484.498245: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41599     kworker/0:0-13450 (13450) [000] d..3 29484.498253: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41600          <idle>-0     (-----) [001] .n.1 29484.498257: cpu_idle: state=4294967295 cpu_id=1
41601     kworker/0:0-13450 (13450) [000] d..2 29484.498261: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41602          <idle>-0     (-----) [001] d..2 29484.498262: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41603          <idle>-0     (-----) [000] d..1 29484.498267: cpu_idle: state=0 cpu_id=0
41604            adbd-23485 ( 1007) [001] d..2 29484.498277: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41605          <idle>-0     (-----) [001] d..1 29484.498280: cpu_idle: state=0 cpu_id=1
41606              ps-13725 (13725) [005] d..2 29484.498298: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41607              ps-13725 (13725) [005] dn.3 29484.498302: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41608              ps-13725 (13725) [005] d..2 29484.498304: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41609 shell svc 13722-13723 ( 1007) [005] d..2 29484.498312: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41610          <idle>-0     (-----) [000] d.h3 29484.498394: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41611          <idle>-0     (-----) [000] dnh4 29484.498399: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41612          <idle>-0     (-----) [000] .n.1 29484.498404: cpu_idle: state=4294967295 cpu_id=0
41613          <idle>-0     (-----) [000] d..2 29484.498409: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41614              ps-13725 (13725) [005] d..2 29484.498414: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41615   kworker/u17:2-23076 (23076) [000] d..2 29484.498415: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41616              ps-13725 (13725) [005] dn.3 29484.498418: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41617   kworker/u17:2-23076 (23076) [000] d..3 29484.498420: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41618              ps-13725 (13725) [005] d..2 29484.498420: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41619 shell svc 13722-13723 ( 1007) [005] d..2 29484.498428: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41620   kworker/u17:2-23076 (23076) [000] d..2 29484.498434: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41621     kworker/0:0-13450 (13450) [000] d..2 29484.498440: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41622     kworker/0:0-13450 (13450) [000] d..3 29484.498448: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41623     kworker/0:0-13450 (13450) [000] d..2 29484.498455: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41624            adbd-23484 ( 1007) [000] d..2 29484.498466: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41625            adbd-23484 ( 1007) [000] d..3 29484.498471: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41626            adbd-23484 ( 1007) [000] d..2 29484.498514: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41627              ps-13725 (13725) [005] d..2 29484.498540: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41628              ps-13725 (13725) [005] dn.3 29484.498543: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41629              ps-13725 (13725) [005] d..2 29484.498546: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41630 shell svc 13722-13723 ( 1007) [005] d..2 29484.498555: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41631            adbd-1007  ( 1007) [000] d..1 29484.498571: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41632            adbd-1007  ( 1007) [000] d..2 29484.498581: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41633          <idle>-0     (-----) [001] .n.1 29484.498586: cpu_idle: state=4294967295 cpu_id=1
41634          <idle>-0     (-----) [001] d..2 29484.498590: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41635            adbd-1007  ( 1007) [000] d..2 29484.498612: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41636          <idle>-0     (-----) [000] d..1 29484.498620: cpu_idle: state=0 cpu_id=0
41637            adbd-23485 ( 1007) [001] d..2 29484.498633: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41638          <idle>-0     (-----) [001] d..1 29484.498637: cpu_idle: state=0 cpu_id=1
41639          <idle>-0     (-----) [000] d.h3 29484.498644: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41640          <idle>-0     (-----) [000] dnh4 29484.498650: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41641          <idle>-0     (-----) [000] .n.1 29484.498655: cpu_idle: state=4294967295 cpu_id=0
41642          <idle>-0     (-----) [000] d..2 29484.498661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41643              ps-13725 (13725) [005] d..2 29484.498662: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41644              ps-13725 (13725) [005] dn.3 29484.498665: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41645   kworker/u17:2-23076 (23076) [000] d..2 29484.498668: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41646              ps-13725 (13725) [005] d..2 29484.498668: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41647   kworker/u17:2-23076 (23076) [000] d..3 29484.498673: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41648 shell svc 13722-13723 ( 1007) [005] d..2 29484.498676: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41649   kworker/u17:2-23076 (23076) [000] d..2 29484.498688: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41650     kworker/0:0-13450 (13450) [000] d..2 29484.498693: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41651     kworker/0:0-13450 (13450) [000] d..3 29484.498702: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41652          <idle>-0     (-----) [001] .n.1 29484.498706: cpu_idle: state=4294967295 cpu_id=1
41653     kworker/0:0-13450 (13450) [000] d..2 29484.498710: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41654          <idle>-0     (-----) [001] d..2 29484.498712: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41655          <idle>-0     (-----) [000] d..1 29484.498716: cpu_idle: state=0 cpu_id=0
41656            adbd-23485 ( 1007) [001] d..2 29484.498754: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41657          <idle>-0     (-----) [001] d..1 29484.498758: cpu_idle: state=0 cpu_id=1
41658          <idle>-0     (-----) [000] d.h3 29484.498780: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41659          <idle>-0     (-----) [000] dnh4 29484.498784: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41660          <idle>-0     (-----) [000] .n.1 29484.498789: cpu_idle: state=4294967295 cpu_id=0
41661              ps-13725 (13725) [005] d..2 29484.498791: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41662              ps-13725 (13725) [005] dn.3 29484.498794: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41663          <idle>-0     (-----) [000] d..2 29484.498794: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41664              ps-13725 (13725) [005] d..2 29484.498797: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41665   kworker/u17:2-23076 (23076) [000] d..2 29484.498800: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41666 shell svc 13722-13723 ( 1007) [005] d..2 29484.498805: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41667   kworker/u17:2-23076 (23076) [000] d..3 29484.498805: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41668   kworker/u17:2-23076 (23076) [000] d..2 29484.498820: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41669     kworker/0:0-13450 (13450) [000] d..2 29484.498824: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41670     kworker/0:0-13450 (13450) [000] d..3 29484.498833: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41671          <idle>-0     (-----) [001] .n.1 29484.498837: cpu_idle: state=4294967295 cpu_id=1
41672     kworker/0:0-13450 (13450) [000] d..2 29484.498840: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41673          <idle>-0     (-----) [001] d..2 29484.498842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41674          <idle>-0     (-----) [000] d..1 29484.498846: cpu_idle: state=0 cpu_id=0
41675            adbd-23485 ( 1007) [001] d..2 29484.498857: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41676          <idle>-0     (-----) [001] d..1 29484.498861: cpu_idle: state=0 cpu_id=1
41677              ps-13725 (13725) [005] d..2 29484.498921: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41678              ps-13725 (13725) [005] dn.3 29484.498924: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41679              ps-13725 (13725) [005] d..2 29484.498927: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41680 shell svc 13722-13723 ( 1007) [005] d..2 29484.498935: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41681          <idle>-0     (-----) [000] d.h3 29484.498977: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41682          <idle>-0     (-----) [000] dnh4 29484.498982: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41683          <idle>-0     (-----) [000] .n.1 29484.498987: cpu_idle: state=4294967295 cpu_id=0
41684          <idle>-0     (-----) [000] d..2 29484.498992: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41685   kworker/u17:2-23076 (23076) [000] d..2 29484.498997: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41686   kworker/u17:2-23076 (23076) [000] d..3 29484.499002: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41687   kworker/u17:2-23076 (23076) [000] d..2 29484.499017: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41688     kworker/0:0-13450 (13450) [000] d..2 29484.499022: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41689     kworker/0:0-13450 (13450) [000] d..3 29484.499030: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41690              ps-13725 (13725) [005] d..2 29484.499036: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41691     kworker/0:0-13450 (13450) [000] d..2 29484.499038: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41692              ps-13725 (13725) [005] dn.3 29484.499040: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41693              ps-13725 (13725) [005] d..2 29484.499042: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41694            adbd-23484 ( 1007) [000] d..2 29484.499048: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41695 shell svc 13722-13723 ( 1007) [005] d..2 29484.499051: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41696            adbd-23484 ( 1007) [000] d..3 29484.499054: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41697            adbd-23484 ( 1007) [000] d..2 29484.499095: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41698              ps-13725 (13725) [005] d..2 29484.499109: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41699              ps-13725 (13725) [005] dn.3 29484.499112: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41700              ps-13725 (13725) [005] d..2 29484.499114: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41701 shell svc 13722-13723 ( 1007) [005] d..2 29484.499122: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41702            adbd-1007  ( 1007) [000] d..1 29484.499152: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41703            adbd-1007  ( 1007) [000] d..2 29484.499162: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41704          <idle>-0     (-----) [001] .n.1 29484.499167: cpu_idle: state=4294967295 cpu_id=1
41705          <idle>-0     (-----) [001] d..2 29484.499171: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41706            adbd-1007  ( 1007) [000] d..2 29484.499193: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41707          <idle>-0     (-----) [000] d..1 29484.499201: cpu_idle: state=0 cpu_id=0
41708            adbd-23485 ( 1007) [001] d..2 29484.499213: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41709          <idle>-0     (-----) [001] d..1 29484.499217: cpu_idle: state=0 cpu_id=1
41710          <idle>-0     (-----) [000] d.h3 29484.499226: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41711              ps-13725 (13725) [005] d..2 29484.499226: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41712              ps-13725 (13725) [005] dn.3 29484.499230: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41713          <idle>-0     (-----) [000] dnh4 29484.499232: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41714              ps-13725 (13725) [005] d..2 29484.499232: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41715          <idle>-0     (-----) [000] .n.1 29484.499237: cpu_idle: state=4294967295 cpu_id=0
41716 shell svc 13722-13723 ( 1007) [005] d..2 29484.499240: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41717          <idle>-0     (-----) [000] d..2 29484.499243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41718   kworker/u17:2-23076 (23076) [000] d..2 29484.499250: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41719   kworker/u17:2-23076 (23076) [000] d..3 29484.499256: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41720   kworker/u17:2-23076 (23076) [000] d..2 29484.499272: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41721     kworker/0:0-13450 (13450) [000] d..2 29484.499277: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41722     kworker/0:0-13450 (13450) [000] d..3 29484.499285: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41723          <idle>-0     (-----) [001] .n.1 29484.499290: cpu_idle: state=4294967295 cpu_id=1
41724     kworker/0:0-13450 (13450) [000] d..2 29484.499293: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41725          <idle>-0     (-----) [001] d..2 29484.499295: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41726          <idle>-0     (-----) [000] d..1 29484.499299: cpu_idle: state=0 cpu_id=0
41727              ps-13725 (13725) [005] d..2 29484.499300: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41728              ps-13725 (13725) [005] dn.3 29484.499303: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41729              ps-13725 (13725) [005] d..2 29484.499305: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41730 shell svc 13722-13723 ( 1007) [005] d..2 29484.499313: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41731            adbd-23485 ( 1007) [001] d..2 29484.499336: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41732          <idle>-0     (-----) [001] d..1 29484.499340: cpu_idle: state=0 cpu_id=1
41733          <idle>-0     (-----) [000] d.h3 29484.499358: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41734          <idle>-0     (-----) [000] dnh4 29484.499363: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41735          <idle>-0     (-----) [000] .n.1 29484.499368: cpu_idle: state=4294967295 cpu_id=0
41736          <idle>-0     (-----) [000] d..2 29484.499373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41737   kworker/u17:2-23076 (23076) [000] d..2 29484.499379: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41738   kworker/u17:2-23076 (23076) [000] d..3 29484.499384: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41739              ps-13725 (13725) [005] d..2 29484.499389: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41740              ps-13725 (13725) [005] dn.3 29484.499392: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41741              ps-13725 (13725) [005] d..2 29484.499395: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41742   kworker/u17:2-23076 (23076) [000] d..2 29484.499398: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41743 shell svc 13722-13723 ( 1007) [005] d..2 29484.499402: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41744     kworker/0:0-13450 (13450) [000] d..2 29484.499403: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41745     kworker/0:0-13450 (13450) [000] d..3 29484.499411: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41746          <idle>-0     (-----) [001] .n.1 29484.499416: cpu_idle: state=4294967295 cpu_id=1
41747     kworker/0:0-13450 (13450) [000] d..2 29484.499419: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41748          <idle>-0     (-----) [001] d..2 29484.499420: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41749          <idle>-0     (-----) [000] d..1 29484.499425: cpu_idle: state=0 cpu_id=0
41750            adbd-23485 ( 1007) [001] d..2 29484.499434: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41751          <idle>-0     (-----) [001] d..1 29484.499439: cpu_idle: state=0 cpu_id=1
41752              ps-13725 (13725) [005] d..2 29484.499486: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41753              ps-13725 (13725) [005] dn.3 29484.499490: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41754              ps-13725 (13725) [005] d..2 29484.499492: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41755 shell svc 13722-13723 ( 1007) [005] d..2 29484.499501: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41756          <idle>-0     (-----) [000] d.h3 29484.499572: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41757          <idle>-0     (-----) [000] dnh4 29484.499578: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41758          <idle>-0     (-----) [000] .n.1 29484.499582: cpu_idle: state=4294967295 cpu_id=0
41759              ps-13725 (13725) [005] d..2 29484.499583: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41760              ps-13725 (13725) [005] dn.3 29484.499586: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41761          <idle>-0     (-----) [000] d..2 29484.499587: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41762              ps-13725 (13725) [005] d..2 29484.499588: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41763   kworker/u17:2-23076 (23076) [000] d..2 29484.499593: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41764 shell svc 13722-13723 ( 1007) [005] d..2 29484.499596: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41765   kworker/u17:2-23076 (23076) [000] d..3 29484.499598: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41766   kworker/u17:2-23076 (23076) [000] d..2 29484.499613: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41767     kworker/0:0-13450 (13450) [000] d..2 29484.499618: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41768     kworker/0:0-13450 (13450) [000] d..3 29484.499626: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41769     kworker/0:0-13450 (13450) [000] d..2 29484.499634: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41770            adbd-23484 ( 1007) [000] d..2 29484.499644: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41771            adbd-23484 ( 1007) [000] d..3 29484.499649: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41772              ps-13725 (13725) [005] d..2 29484.499654: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41773              ps-13725 (13725) [005] dn.3 29484.499658: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41774              ps-13725 (13725) [005] d..2 29484.499660: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41775 shell svc 13722-13723 ( 1007) [005] d..2 29484.499667: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41776            adbd-23484 ( 1007) [000] d..2 29484.499689: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41777              ps-13725 (13725) [005] d..2 29484.499724: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41778              ps-13725 (13725) [005] dn.3 29484.499727: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41779              ps-13725 (13725) [005] d..2 29484.499730: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41780 shell svc 13722-13723 ( 1007) [005] d..2 29484.499737: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41781            adbd-1007  ( 1007) [000] d..1 29484.499748: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41782            adbd-1007  ( 1007) [000] d..2 29484.499758: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41783          <idle>-0     (-----) [001] .n.1 29484.499763: cpu_idle: state=4294967295 cpu_id=1
41784          <idle>-0     (-----) [001] d..2 29484.499767: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41785            adbd-1007  ( 1007) [000] d..2 29484.499789: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41786          <idle>-0     (-----) [000] d..1 29484.499797: cpu_idle: state=0 cpu_id=0
41787            adbd-23485 ( 1007) [001] d..2 29484.499809: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41788          <idle>-0     (-----) [001] d..1 29484.499813: cpu_idle: state=0 cpu_id=1
41789          <idle>-0     (-----) [000] d.h3 29484.499833: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41790          <idle>-0     (-----) [000] dnh4 29484.499839: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41791              ps-13725 (13725) [005] d..2 29484.499840: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41792          <idle>-0     (-----) [000] .n.1 29484.499844: cpu_idle: state=4294967295 cpu_id=0
41793              ps-13725 (13725) [005] dn.3 29484.499844: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41794              ps-13725 (13725) [005] d..2 29484.499847: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41795          <idle>-0     (-----) [000] d..2 29484.499849: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41796 shell svc 13722-13723 ( 1007) [005] d..2 29484.499855: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41797   kworker/u17:2-23076 (23076) [000] d..2 29484.499857: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41798   kworker/u17:2-23076 (23076) [000] d..3 29484.499862: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41799   kworker/u17:2-23076 (23076) [000] d..2 29484.499878: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41800     kworker/0:0-13450 (13450) [000] d..2 29484.499883: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41801     kworker/0:0-13450 (13450) [000] d..3 29484.499891: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41802          <idle>-0     (-----) [001] .n.1 29484.499895: cpu_idle: state=4294967295 cpu_id=1
41803          <idle>-0     (-----) [001] d..2 29484.499900: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41804     kworker/0:0-13450 (13450) [000] d..2 29484.499904: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41805          <idle>-0     (-----) [000] d..1 29484.499911: cpu_idle: state=0 cpu_id=0
41806            adbd-23485 ( 1007) [001] d..2 29484.499942: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41807          <idle>-0     (-----) [001] d..1 29484.499946: cpu_idle: state=0 cpu_id=1
41808              ps-13725 (13725) [005] d..2 29484.499952: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41809              ps-13725 (13725) [005] dn.3 29484.499955: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41810              ps-13725 (13725) [005] d..2 29484.499958: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41811 shell svc 13722-13723 ( 1007) [005] d..2 29484.499966: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41812          <idle>-0     (-----) [000] d.h3 29484.499977: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41813          <idle>-0     (-----) [000] dnh4 29484.499982: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41814          <idle>-0     (-----) [000] .n.1 29484.499987: cpu_idle: state=4294967295 cpu_id=0
41815          <idle>-0     (-----) [000] d..2 29484.499992: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41816   kworker/u17:2-23076 (23076) [000] d..2 29484.500000: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41817   kworker/u17:2-23076 (23076) [000] d..3 29484.500004: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41818   kworker/u17:2-23076 (23076) [000] d..2 29484.500019: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41819     kworker/0:0-13450 (13450) [000] d..2 29484.500024: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41820     kworker/0:0-13450 (13450) [000] d..3 29484.500032: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41821          <idle>-0     (-----) [001] .n.1 29484.500037: cpu_idle: state=4294967295 cpu_id=1
41822          <idle>-0     (-----) [001] d..2 29484.500042: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41823     kworker/0:0-13450 (13450) [000] d..2 29484.500045: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41824              ps-13725 (13725) [005] d..2 29484.500046: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41825              ps-13725 (13725) [005] dn.3 29484.500049: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41826          <idle>-0     (-----) [000] d..1 29484.500051: cpu_idle: state=0 cpu_id=0
41827              ps-13725 (13725) [005] d..2 29484.500052: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41828            adbd-23485 ( 1007) [001] d..2 29484.500056: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41829 shell svc 13722-13723 ( 1007) [005] d..2 29484.500060: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41830          <idle>-0     (-----) [001] d..1 29484.500060: cpu_idle: state=0 cpu_id=1
41831              ps-13725 (13725) [005] d..2 29484.500157: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41832              ps-13725 (13725) [005] dn.3 29484.500160: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41833              ps-13725 (13725) [005] d..2 29484.500162: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41834          <idle>-0     (-----) [000] d.h3 29484.500170: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41835 shell svc 13722-13723 ( 1007) [005] d..2 29484.500170: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41836          <idle>-0     (-----) [000] dnh4 29484.500175: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41837          <idle>-0     (-----) [000] .n.1 29484.500180: cpu_idle: state=4294967295 cpu_id=0
41838          <idle>-0     (-----) [000] d..2 29484.500185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41839   kworker/u17:2-23076 (23076) [000] d..2 29484.500191: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41840   kworker/u17:2-23076 (23076) [000] d..3 29484.500196: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41841   kworker/u17:2-23076 (23076) [000] d..2 29484.500211: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41842     kworker/0:0-13450 (13450) [000] d..2 29484.500217: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41843     kworker/0:0-13450 (13450) [000] d..3 29484.500225: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
41844     kworker/0:0-13450 (13450) [000] d..2 29484.500233: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
41845            adbd-23484 ( 1007) [000] d..2 29484.500244: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41846            adbd-23484 ( 1007) [000] d..3 29484.500249: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
41847              ps-13725 (13725) [005] d..2 29484.500271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41848              ps-13725 (13725) [005] dn.3 29484.500274: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41849              ps-13725 (13725) [005] d..2 29484.500277: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41850 shell svc 13722-13723 ( 1007) [005] d..2 29484.500285: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41851            adbd-23484 ( 1007) [000] d..2 29484.500288: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41852            adbd-1007  ( 1007) [000] d..1 29484.500345: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41853            adbd-1007  ( 1007) [000] d..2 29484.500359: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41854          <idle>-0     (-----) [001] .n.1 29484.500363: cpu_idle: state=4294967295 cpu_id=1
41855          <idle>-0     (-----) [001] d..2 29484.500367: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41856              ps-13725 (13725) [005] d..2 29484.500375: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41857              ps-13725 (13725) [005] dn.3 29484.500378: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41858              ps-13725 (13725) [005] d..2 29484.500380: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41859 shell svc 13722-13723 ( 1007) [005] d..2 29484.500389: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41860            adbd-1007  ( 1007) [000] d..2 29484.500389: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41861              ps-13725 (13725) [005] d.s4 29484.500402: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
41862            adbd-23485 ( 1007) [001] d.s2 29484.500411: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41863          <idle>-0     (-----) [000] dnh3 29484.500425: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
41864            adbd-23485 ( 1007) [001] d.s3 29484.500436: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41865          <idle>-0     (-----) [000] dnh4 29484.500444: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41866            adbd-23485 ( 1007) [001] d..2 29484.500470: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41867          <idle>-0     (-----) [000] dnh5 29484.500474: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
41868     rcu_preempt-7     (    7) [001] d..2 29484.500479: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
41869          <idle>-0     (-----) [000] d..2 29484.500483: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41870     rcu_preempt-7     (    7) [001] d..3 29484.500495: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
41871     rcu_preempt-7     (    7) [001] d..2 29484.500502: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41872              ps-13725 (13725) [005] d..2 29484.500506: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41873              ps-13725 (13725) [005] dn.3 29484.500510: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41874   kworker/u17:2-23076 (23076) [001] d..2 29484.500511: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
41875              ps-13725 (13725) [005] d..2 29484.500515: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41876   kworker/u17:2-23076 (23076) [001] d..3 29484.500520: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
41877 shell svc 13722-13723 ( 1007) [005] d..2 29484.500527: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41878   kworker/u17:2-23076 (23076) [001] d..2 29484.500535: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
41879     kworker/1:1-13678 (13678) [001] d..2 29484.500541: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41880     kworker/1:1-13678 (13678) [001] d..3 29484.500549: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41881     kworker/1:1-13678 (13678) [001] d..2 29484.500556: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
41882              ps-13725 (13725) [005] d..2 29484.500603: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41883            adbd-23485 ( 1007) [001] d..2 29484.500606: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
41884              ps-13725 (13725) [005] dn.3 29484.500606: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41885              ps-13725 (13725) [005] d..2 29484.500609: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41886         rcuop/4-45    (   45) [001] d..2 29484.500611: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
41887 shell svc 13722-13723 ( 1007) [005] d..2 29484.500617: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41888         rcuop/4-45    (   45) [001] d..3 29484.500632: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
41889         rcuop/4-45    (   45) [001] d..2 29484.500635: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41890         rcuop/4-45    (   45) [001] d..3 29484.500642: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
41891         rcuop/4-45    (   45) [001] d..2 29484.500648: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
41892  kworker/u16:10-23868 (23868) [000] d.h3 29484.500651: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
41893  kworker/u16:10-23868 (23868) [000] d.h4 29484.500662: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
41894  kworker/u16:10-23868 (23868) [000] d..2 29484.500686: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41895              ps-13725 (13725) [005] d..2 29484.500695: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41896              ps-13725 (13725) [005] dn.3 29484.500698: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41897              ps-13725 (13725) [005] d..2 29484.500700: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41898     rcu_preempt-7     (    7) [000] d..2 29484.500704: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41899 shell svc 13722-13723 ( 1007) [005] d..2 29484.500708: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41900   kworker/u17:2-23076 (23076) [000] d..2 29484.500711: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41901   kworker/u17:2-23076 (23076) [000] d..3 29484.500715: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41902   kworker/u17:2-23076 (23076) [000] d..2 29484.500730: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41903     kworker/0:0-13450 (13450) [000] d..2 29484.500735: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41904     kworker/0:0-13450 (13450) [000] d..3 29484.500743: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41905     kworker/0:0-13450 (13450) [000] d..2 29484.500757: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41906          <idle>-0     (-----) [000] d..1 29484.500764: cpu_idle: state=0 cpu_id=0
41907              ps-13725 (13725) [005] d..2 29484.500793: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41908              ps-13725 (13725) [005] dn.3 29484.500796: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41909              ps-13725 (13725) [005] d..2 29484.500799: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41910          <idle>-0     (-----) [003] d.s3 29484.500799: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
41911 shell svc 13722-13723 ( 1007) [005] d..2 29484.500807: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41912          <idle>-0     (-----) [003] d.s4 29484.500808: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
41913          <idle>-0     (-----) [003] d.s4 29484.500814: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
41914          <idle>-0     (-----) [000] .n.1 29484.500818: cpu_idle: state=4294967295 cpu_id=0
41915          <idle>-0     (-----) [003] ...1 29484.500821: cpu_idle: state=4294967295 cpu_id=3
41916          <idle>-0     (-----) [003] d..1 29484.500827: cpu_idle: state=0 cpu_id=3
41917          <idle>-0     (-----) [000] dnh3 29484.500836: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41918          <idle>-0     (-----) [000] dnh4 29484.500843: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41919          <idle>-0     (-----) [000] d..2 29484.500851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41920   kworker/u17:2-23076 (23076) [000] d..2 29484.500857: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41921   kworker/u17:2-23076 (23076) [000] d..3 29484.500861: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41922   kworker/u17:2-23076 (23076) [000] d..2 29484.500877: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
41923         rcuop/5-53    (   53) [001] d..2 29484.500879: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
41924              ps-13725 (13725) [005] d..2 29484.500893: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41925              ps-13725 (13725) [005] dn.3 29484.500896: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41926            adbd-23485 ( 1007) [001] d..2 29484.500896: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41927              ps-13725 (13725) [005] d..2 29484.500898: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41928 shell svc 13722-13723 ( 1007) [005] d..2 29484.500906: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41929          <idle>-0     (-----) [001] d..1 29484.500919: cpu_idle: state=0 cpu_id=1
41930          <idle>-0     (-----) [001] ...1 29484.500929: cpu_idle: state=4294967295 cpu_id=1
41931          <idle>-0     (-----) [001] d..1 29484.500931: cpu_idle: state=0 cpu_id=1
41932  kworker/u16:10-23868 (23868) [000] d..2 29484.500987: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41933     kworker/0:0-13450 (13450) [000] d..2 29484.500993: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
41934              ps-13725 (13725) [005] d..2 29484.500995: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41935              ps-13725 (13725) [005] dn.3 29484.500999: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41936              ps-13725 (13725) [005] d..2 29484.501001: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41937     kworker/0:0-13450 (13450) [000] d..3 29484.501008: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
41938 shell svc 13722-13723 ( 1007) [005] d..2 29484.501009: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41939          <idle>-0     (-----) [001] .n.1 29484.501012: cpu_idle: state=4294967295 cpu_id=1
41940     kworker/0:0-13450 (13450) [000] d..2 29484.501016: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41941          <idle>-0     (-----) [001] d..2 29484.501018: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
41942          <idle>-0     (-----) [000] d..1 29484.501023: cpu_idle: state=0 cpu_id=0
41943            adbd-23484 ( 1007) [001] d..2 29484.501029: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
41944            adbd-23484 ( 1007) [001] d..3 29484.501040: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
41945            adbd-23484 ( 1007) [001] d..2 29484.501082: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
41946              ps-13725 (13725) [005] d..2 29484.501093: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41947              ps-13725 (13725) [005] dn.3 29484.501096: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41948              ps-13725 (13725) [005] d..2 29484.501098: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41949 shell svc 13722-13723 ( 1007) [005] d..2 29484.501106: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41950            adbd-1007  ( 1007) [001] d..1 29484.501143: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41951            adbd-1007  ( 1007) [001] d..2 29484.501155: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41952            adbd-1007  ( 1007) [001] d..2 29484.501181: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
41953              ps-13725 (13725) [005] d..2 29484.501183: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41954              ps-13725 (13725) [005] dn.3 29484.501187: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41955              ps-13725 (13725) [005] d..2 29484.501189: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41956 shell svc 13722-13723 ( 1007) [005] d..2 29484.501197: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41957            adbd-23485 ( 1007) [001] d..2 29484.501226: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41958          <idle>-0     (-----) [001] d..1 29484.501234: cpu_idle: state=0 cpu_id=1
41959          <idle>-0     (-----) [000] d.h3 29484.501248: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41960          <idle>-0     (-----) [000] dnh4 29484.501255: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41961          <idle>-0     (-----) [000] .n.1 29484.501259: cpu_idle: state=4294967295 cpu_id=0
41962          <idle>-0     (-----) [000] d..2 29484.501266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41963   kworker/u17:2-23076 (23076) [000] d..2 29484.501272: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41964   kworker/u17:2-23076 (23076) [000] d..3 29484.501277: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41965              ps-13725 (13725) [005] d..2 29484.501289: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41966              ps-13725 (13725) [005] dn.3 29484.501292: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41967   kworker/u17:2-23076 (23076) [000] d..2 29484.501292: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41968              ps-13725 (13725) [005] d..2 29484.501294: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41969     kworker/0:0-13450 (13450) [000] d..2 29484.501297: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41970 shell svc 13722-13723 ( 1007) [005] d..2 29484.501302: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41971     kworker/0:0-13450 (13450) [000] d..3 29484.501305: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41972          <idle>-0     (-----) [001] .n.1 29484.501311: cpu_idle: state=4294967295 cpu_id=1
41973          <idle>-0     (-----) [001] d..2 29484.501317: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41974     kworker/0:0-13450 (13450) [000] d..2 29484.501319: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41975          <idle>-0     (-----) [000] d..1 29484.501324: cpu_idle: state=0 cpu_id=0
41976            adbd-23485 ( 1007) [001] d..2 29484.501361: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41977          <idle>-0     (-----) [001] d..1 29484.501368: cpu_idle: state=0 cpu_id=1
41978              ps-13725 (13725) [005] d..2 29484.501380: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41979              ps-13725 (13725) [005] dn.3 29484.501383: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41980              ps-13725 (13725) [005] d..2 29484.501386: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
41981          <idle>-0     (-----) [000] d.h3 29484.501388: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41982          <idle>-0     (-----) [000] dnh4 29484.501393: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
41983 shell svc 13722-13723 ( 1007) [005] d..2 29484.501393: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
41984          <idle>-0     (-----) [000] .n.1 29484.501397: cpu_idle: state=4294967295 cpu_id=0
41985          <idle>-0     (-----) [000] d..2 29484.501403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
41986   kworker/u17:2-23076 (23076) [000] d..2 29484.501409: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41987   kworker/u17:2-23076 (23076) [000] d..3 29484.501414: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
41988   kworker/u17:2-23076 (23076) [000] d..2 29484.501428: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
41989     kworker/0:0-13450 (13450) [000] d..2 29484.501433: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
41990     kworker/0:0-13450 (13450) [000] d..3 29484.501441: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
41991          <idle>-0     (-----) [001] .n.1 29484.501446: cpu_idle: state=4294967295 cpu_id=1
41992          <idle>-0     (-----) [001] d..2 29484.501452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
41993     kworker/0:0-13450 (13450) [000] d..2 29484.501453: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41994          <idle>-0     (-----) [000] d..1 29484.501458: cpu_idle: state=0 cpu_id=0
41995            adbd-23485 ( 1007) [001] d..2 29484.501468: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41996          <idle>-0     (-----) [001] d..1 29484.501474: cpu_idle: state=0 cpu_id=1
41997              ps-13725 (13725) [005] d..2 29484.501497: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41998              ps-13725 (13725) [005] dn.3 29484.501501: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
41999              ps-13725 (13725) [005] d..2 29484.501503: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42000 shell svc 13722-13723 ( 1007) [005] d..2 29484.501511: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
42001          <idle>-0     (-----) [000] d.h3 29484.501538: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42002          <idle>-0     (-----) [000] dnh4 29484.501543: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42003          <idle>-0     (-----) [000] .n.1 29484.501547: cpu_idle: state=4294967295 cpu_id=0
42004          <idle>-0     (-----) [000] d..2 29484.501553: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42005   kworker/u17:2-23076 (23076) [000] d..2 29484.501559: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42006   kworker/u17:2-23076 (23076) [000] d..3 29484.501564: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42007              ps-13725 (13725) [005] d..2 29484.501572: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42008              ps-13725 (13725) [005] dn.3 29484.501575: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42009              ps-13725 (13725) [005] d..2 29484.501578: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42010   kworker/u17:2-23076 (23076) [000] d..2 29484.501579: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42011     kworker/0:0-13450 (13450) [000] d..2 29484.501584: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
42012 shell svc 13722-13723 ( 1007) [005] d..2 29484.501586: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
42013     kworker/0:0-13450 (13450) [000] d..3 29484.501603: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42014     kworker/0:0-13450 (13450) [000] d..2 29484.501611: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42015            adbd-23484 ( 1007) [000] d..2 29484.501623: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
42016            adbd-23484 ( 1007) [000] d..3 29484.501632: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42017              ps-13725 (13725) [005] d..2 29484.501644: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42018              ps-13725 (13725) [005] dn.3 29484.501647: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42019              ps-13725 (13725) [005] d..2 29484.501649: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42020 shell svc 13722-13723 ( 1007) [005] d..2 29484.501656: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
42021            adbd-23484 ( 1007) [000] d..2 29484.501675: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42022            adbd-1007  ( 1007) [000] d..1 29484.501736: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
42023            adbd-1007  ( 1007) [000] d..2 29484.501747: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
42024          <idle>-0     (-----) [001] .n.1 29484.501751: cpu_idle: state=4294967295 cpu_id=1
42025              ps-13725 (13725) [005] d..2 29484.501755: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42026          <idle>-0     (-----) [001] d..2 29484.501757: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
42027              ps-13725 (13725) [005] dn.3 29484.501758: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42028              ps-13725 (13725) [005] d..2 29484.501761: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42029 shell svc 13722-13723 ( 1007) [005] d..2 29484.501769: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
42030            adbd-1007  ( 1007) [000] d..2 29484.501777: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42031          <idle>-0     (-----) [000] d..1 29484.501784: cpu_idle: state=0 cpu_id=0
42032            adbd-23485 ( 1007) [001] d..2 29484.501800: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42033          <idle>-0     (-----) [001] d..1 29484.501806: cpu_idle: state=0 cpu_id=1
42034          <idle>-0     (-----) [000] d.h3 29484.501808: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42035          <idle>-0     (-----) [000] dnh4 29484.501814: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42036          <idle>-0     (-----) [000] .n.1 29484.501819: cpu_idle: state=4294967295 cpu_id=0
42037          <idle>-0     (-----) [000] d..2 29484.501825: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42038   kworker/u17:2-23076 (23076) [000] d..2 29484.501832: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42039   kworker/u17:2-23076 (23076) [000] d..3 29484.501837: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42040              ps-13725 (13725) [005] d..2 29484.501849: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42041              ps-13725 (13725) [005] dn.3 29484.501852: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42042   kworker/u17:2-23076 (23076) [000] d..2 29484.501852: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42043              ps-13725 (13725) [005] d..2 29484.501854: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42044     kworker/0:0-13450 (13450) [000] d..2 29484.501857: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
42045 shell svc 13722-13723 ( 1007) [005] d..2 29484.501862: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
42046     kworker/0:0-13450 (13450) [000] d..3 29484.501866: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
42047          <idle>-0     (-----) [001] .n.1 29484.501871: cpu_idle: state=4294967295 cpu_id=1
42048          <idle>-0     (-----) [001] d..2 29484.501877: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
42049     kworker/0:0-13450 (13450) [000] d..2 29484.501878: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42050          <idle>-0     (-----) [000] d..1 29484.501884: cpu_idle: state=0 cpu_id=0
42051            adbd-23485 ( 1007) [001] d..2 29484.501918: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42052          <idle>-0     (-----) [001] d..1 29484.501925: cpu_idle: state=0 cpu_id=1
42053          <idle>-0     (-----) [000] d.h3 29484.501947: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42054          <idle>-0     (-----) [000] dnh4 29484.501952: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42055          <idle>-0     (-----) [000] .n.1 29484.501956: cpu_idle: state=4294967295 cpu_id=0
42056              ps-13725 (13725) [005] d..2 29484.501958: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42057              ps-13725 (13725) [005] dn.3 29484.501961: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42058          <idle>-0     (-----) [000] d..2 29484.501962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42059              ps-13725 (13725) [005] d..2 29484.501964: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42060   kworker/u17:2-23076 (23076) [000] d..2 29484.501967: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42061 shell svc 13722-13723 ( 1007) [005] d..2 29484.501972: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13725 next_prio=120
42062   kworker/u17:2-23076 (23076) [000] d..3 29484.501972: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42063   kworker/u17:2-23076 (23076) [000] d..2 29484.501987: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42064     kworker/0:0-13450 (13450) [000] d..2 29484.501992: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
42065     kworker/0:0-13450 (13450) [000] d..3 29484.502000: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
42066          <idle>-0     (-----) [001] .n.1 29484.502005: cpu_idle: state=4294967295 cpu_id=1
42067          <idle>-0     (-----) [001] d..2 29484.502011: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
42068     kworker/0:0-13450 (13450) [000] d..2 29484.502013: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42069          <idle>-0     (-----) [000] d..1 29484.502018: cpu_idle: state=0 cpu_id=0
42070            adbd-23485 ( 1007) [001] d..2 29484.502026: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42071          <idle>-0     (-----) [001] d..1 29484.502032: cpu_idle: state=0 cpu_id=1
42072          <idle>-0     (-----) [000] d.h3 29484.502101: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42073          <idle>-0     (-----) [000] dnh4 29484.502106: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42074          <idle>-0     (-----) [000] .n.1 29484.502110: cpu_idle: state=4294967295 cpu_id=0
42075          <idle>-0     (-----) [000] d..2 29484.502116: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42076   kworker/u17:2-23076 (23076) [000] d..2 29484.502121: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42077   kworker/u17:2-23076 (23076) [000] d..3 29484.502126: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42078   kworker/u17:2-23076 (23076) [000] d..2 29484.502141: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42079     kworker/0:0-13450 (13450) [000] d..2 29484.502146: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42080     kworker/0:0-13450 (13450) [000] d..3 29484.502161: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
42081          <idle>-0     (-----) [001] .n.1 29484.502166: cpu_idle: state=4294967295 cpu_id=1
42082          <idle>-0     (-----) [001] d..2 29484.502171: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
42083     kworker/0:0-13450 (13450) [000] d..2 29484.502173: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42084          <idle>-0     (-----) [000] d..1 29484.502179: cpu_idle: state=0 cpu_id=0
42085            adbd-23484 ( 1007) [001] d..2 29484.502182: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42086            adbd-23484 ( 1007) [001] d..3 29484.502195: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
42087            adbd-23484 ( 1007) [001] d..2 29484.502235: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42088              ps-13725 (13725) [005] d..3 29484.502283: sched_waking: comm=sh pid=13724 prio=120 target_cpu=003
42089            adbd-1007  ( 1007) [001] d..1 29484.502289: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
42090            adbd-1007  ( 1007) [001] d..2 29484.502299: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
42091              ps-13725 (13725) [005] d..2 29484.502304: sched_switch: prev_comm=ps prev_pid=13725 prev_prio=120 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
42092          <idle>-0     (-----) [000] dnh2 29484.502305: sched_wakeup: comm=sh pid=13724 prio=120 target_cpu=000
42093          <idle>-0     (-----) [000] .n.1 29484.502309: cpu_idle: state=4294967295 cpu_id=0
42094          <idle>-0     (-----) [000] d..2 29484.502314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13724 next_prio=120
42095          <idle>-0     (-----) [005] d..1 29484.502315: cpu_idle: state=2 cpu_id=5
42096            adbd-1007  ( 1007) [001] d..2 29484.502324: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42097            adbd-23485 ( 1007) [001] d..2 29484.502369: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42098          <idle>-0     (-----) [001] d..1 29484.502377: cpu_idle: state=0 cpu_id=1
42099              sh-13724 (13724) [000] d.h2 29484.502393: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42100              sh-13724 (13724) [000] dnh3 29484.502404: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42101              sh-13724 (13724) [000] d..2 29484.502412: sched_switch: prev_comm=sh prev_pid=13724 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42102   kworker/u17:2-23076 (23076) [000] d..2 29484.502419: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42103   kworker/u17:2-23076 (23076) [000] d..3 29484.502424: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42104   kworker/u17:2-23076 (23076) [000] d..2 29484.502440: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=sh next_pid=13724 next_prio=120
42105              sh-13724 (13724) [000] d..2 29484.502484: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
42106              sh-13724 (13724) [000] d..3 29484.502496: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
42107          <idle>-0     (-----) [001] .n.1 29484.503082: cpu_idle: state=4294967295 cpu_id=1
42108          <idle>-0     (-----) [001] d..2 29484.503089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13726 next_prio=120
42109              sh-13724 (13724) [000] d..2 29484.503151: sched_switch: prev_comm=sh prev_pid=13724 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
42110         rcuop/0-10    (   10) [000] d..2 29484.503161: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42111     kworker/0:0-13450 (13450) [000] d..2 29484.503168: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
42112     kworker/0:0-13450 (13450) [000] d..3 29484.503193: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42113          <idle>-0     (-----) [003] .n.1 29484.503198: cpu_idle: state=4294967295 cpu_id=3
42114          <idle>-0     (-----) [003] d..2 29484.503206: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
42115     kworker/0:0-13450 (13450) [000] d..2 29484.503207: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42116          <idle>-0     (-----) [000] d..1 29484.503218: cpu_idle: state=0 cpu_id=0
42117            adbd-23485 ( 1007) [003] d..2 29484.503264: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42118              ps-13726 (13726) [001] d..2 29484.503270: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
42119          <idle>-0     (-----) [003] d..1 29484.503271: cpu_idle: state=0 cpu_id=3
42120          <idle>-0     (-----) [000] d.h3 29484.503272: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42121              ps-13726 (13726) [001] dn.3 29484.503279: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
42122          <idle>-0     (-----) [000] dnh4 29484.503281: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42123          <idle>-0     (-----) [000] .n.1 29484.503285: cpu_idle: state=4294967295 cpu_id=0
42124              ps-13726 (13726) [001] d..2 29484.503286: sched_switch: prev_comm=sh prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
42125          <idle>-0     (-----) [000] d..2 29484.503292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42126   kworker/u17:2-23076 (23076) [000] d..2 29484.503299: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42127   kworker/u17:2-23076 (23076) [000] d..3 29484.503309: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42128     migration/1-17    (   17) [001] d..2 29484.503320: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42129   kworker/u17:2-23076 (23076) [000] d..2 29484.503324: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42130     kworker/0:0-13450 (13450) [000] d..2 29484.503329: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42131          <idle>-0     (-----) [001] d..1 29484.503330: cpu_idle: state=0 cpu_id=1
42132     kworker/0:0-13450 (13450) [000] d..3 29484.503350: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
42133          <idle>-0     (-----) [001] .n.1 29484.503356: cpu_idle: state=4294967295 cpu_id=1
42134     kworker/0:0-13450 (13450) [000] d..2 29484.503360: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13726 next_prio=120
42135          <idle>-0     (-----) [001] d..2 29484.503362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
42136            adbd-23485 ( 1007) [001] d..2 29484.503380: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42137          <idle>-0     (-----) [001] d..1 29484.503387: cpu_idle: state=0 cpu_id=1
42138              ps-13726 (13726) [000] d.h2 29484.503480: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42139              ps-13726 (13726) [000] d.h3 29484.503499: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
42140          <idle>-0     (-----) [001] .n.1 29484.503504: cpu_idle: state=4294967295 cpu_id=1
42141          <idle>-0     (-----) [001] d..2 29484.503510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42142   kworker/u17:2-23076 (23076) [001] d..2 29484.503517: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
42143   kworker/u17:2-23076 (23076) [001] d..3 29484.503524: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
42144   kworker/u17:2-23076 (23076) [001] d..2 29484.503540: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
42145     kworker/1:1-13678 (13678) [001] d..2 29484.503546: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
42146     kworker/1:1-13678 (13678) [001] d..3 29484.503555: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
42147     kworker/1:1-13678 (13678) [001] d..2 29484.503563: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42148            adbd-23484 ( 1007) [001] d..2 29484.503572: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
42149            adbd-23484 ( 1007) [001] d..3 29484.503578: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
42150            adbd-23484 ( 1007) [001] d..2 29484.503622: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42151            adbd-1007  ( 1007) [001] d..2 29484.503679: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42152          <idle>-0     (-----) [001] d..1 29484.503687: cpu_idle: state=0 cpu_id=1
42153              ps-13726 (13726) [000] d.s2 29484.503744: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
42154              ps-13726 (13726) [000] d.s3 29484.503762: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42155          <idle>-0     (-----) [001] .n.1 29484.503767: cpu_idle: state=4294967295 cpu_id=1
42156          <idle>-0     (-----) [001] d..2 29484.503774: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42157  kworker/u16:10-23868 (23868) [001] d..2 29484.503828: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42158          <idle>-0     (-----) [001] d..1 29484.503834: cpu_idle: state=0 cpu_id=1
42159          <idle>-0     (-----) [001] ...1 29484.505052: cpu_idle: state=4294967295 cpu_id=1
42160          <idle>-0     (-----) [001] d..1 29484.505055: cpu_idle: state=2 cpu_id=1
42161              ps-13726 (13726) [000] d.s1 29484.507074: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42162              ps-13726 (13726) [000] d.s2 29484.507092: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
42163          <idle>-0     (-----) [003] .n.1 29484.507097: cpu_idle: state=4294967295 cpu_id=3
42164          <idle>-0     (-----) [003] d..2 29484.507105: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
42165     rcu_preempt-7     (    7) [003] d..2 29484.507125: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42166          <idle>-0     (-----) [003] d..1 29484.507130: cpu_idle: state=0 cpu_id=3
42167              ps-13726 (13726) [000] d.s2 29484.510408: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
42168              ps-13726 (13726) [000] d.s3 29484.510431: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
42169          <idle>-0     (-----) [003] .n.1 29484.510435: cpu_idle: state=4294967295 cpu_id=3
42170          <idle>-0     (-----) [003] d..2 29484.510442: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42171  kworker/u16:10-23868 (23868) [003] .... 29484.510469: clk_set_rate: l3_cluster1_vote_clk 576000000
42172  kworker/u16:10-23868 (23868) [003] .... 29484.510474: clk_set_rate: l3_clk 1036800000
42173  kworker/u16:10-23868 (23868) [003] d..2 29484.510774: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
42174          <idle>-0     (-----) [003] d.s4 29484.510805: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
42175          <idle>-0     (-----) [003] d.s5 29484.510811: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
42176          <idle>-0     (-----) [003] dns5 29484.510814: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
42177          <idle>-0     (-----) [003] d..2 29484.510822: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42178  kworker/u16:10-23868 (23868) [003] .... 29484.510864: clk_set_rate: l3_cluster0_vote_clk 1305600000
42179  kworker/u16:10-23868 (23868) [003] .... 29484.510866: clk_set_rate: l3_clk 1305600000
42180  kworker/u16:10-23868 (23868) [003] d..2 29484.510980: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
42181          <idle>-0     (-----) [003] d.s3 29484.511008: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
42182          <idle>-0     (-----) [003] d.s4 29484.511013: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
42183          <idle>-0     (-----) [003] dns4 29484.511015: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
42184          <idle>-0     (-----) [003] d..2 29484.511023: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42185  kworker/u16:10-23868 (23868) [003] d..2 29484.511038: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42186          <idle>-0     (-----) [003] d..1 29484.511043: cpu_idle: state=0 cpu_id=3
42187          <idle>-0     (-----) [003] d.s2 29484.513738: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
42188              ps-13726 (13726) [000] d.s2 29484.513743: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42189          <idle>-0     (-----) [003] dns3 29484.513747: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
42190              ps-13726 (13726) [000] dns3 29484.513751: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42191          <idle>-0     (-----) [003] .n.1 29484.513759: cpu_idle: state=4294967295 cpu_id=3
42192              ps-13726 (13726) [000] d..2 29484.513759: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42193          <idle>-0     (-----) [003] d..2 29484.513764: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
42194     rcu_preempt-7     (    7) [003] d..2 29484.513768: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
42195     rcu_preempt-7     (    7) [003] d..3 29484.513788: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
42196     rcu_preempt-7     (    7) [003] d..2 29484.513797: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
42197     kworker/0:0-13450 (13450) [000] d..2 29484.513800: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42198         rcuop/4-45    (   45) [003] d..2 29484.513800: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
42199         rcuop/4-45    (   45) [003] d..3 29484.513820: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
42200         rcuop/4-45    (   45) [003] d..2 29484.513826: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
42201         rcuop/5-53    (   53) [003] d..2 29484.514667: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42202          <idle>-0     (-----) [003] d..1 29484.514675: cpu_idle: state=0 cpu_id=3
42203              ps-13726 (13726) [000] d.H2 29484.517143: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
42204              ps-13726 (13726) [000] d.H2 29484.517160: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
42205              ps-13726 (13726) [000] d.H3 29484.517173: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
42206          <idle>-0     (-----) [003] .n.1 29484.517178: cpu_idle: state=4294967295 cpu_id=3
42207          <idle>-0     (-----) [003] d..2 29484.517185: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
42208         sugov:0-559   (  559) [003] d..2 29484.517206: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42209          <idle>-0     (-----) [003] d..1 29484.517210: cpu_idle: state=0 cpu_id=3
42210              ps-13726 (13726) [000] d..2 29484.517475: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
42211              ps-13726 (13726) [000] dn.3 29484.517494: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42212              ps-13726 (13726) [000] d..2 29484.517521: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42213 shell svc 13722-13723 ( 1007) [000] d..2 29484.517553: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
42214 shell svc 13722-13723 ( 1007) [000] d..3 29484.517579: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
42215          <idle>-0     (-----) [003] .n.1 29484.517583: cpu_idle: state=4294967295 cpu_id=3
42216          <idle>-0     (-----) [003] d..2 29484.517589: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
42217 shell svc 13722-13723 ( 1007) [000] d..2 29484.517594: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42218            adbd-1007  ( 1007) [003] d..1 29484.517659: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
42219            adbd-1007  ( 1007) [003] d..2 29484.517682: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42220              ps-13726 (13726) [000] d..2 29484.517707: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42221              ps-13726 (13726) [000] dn.3 29484.517716: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42222            adbd-1007  ( 1007) [003] d..2 29484.517717: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42223              ps-13726 (13726) [000] d..2 29484.517722: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42224 shell svc 13722-13723 ( 1007) [000] d..2 29484.517745: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42225            adbd-23485 ( 1007) [003] d..2 29484.517778: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42226          <idle>-0     (-----) [003] d..1 29484.517785: cpu_idle: state=0 cpu_id=3
42227              ps-13726 (13726) [000] d.h2 29484.517794: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
42228              ps-13726 (13726) [000] d.h3 29484.517819: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42229          <idle>-0     (-----) [003] .n.1 29484.517824: cpu_idle: state=4294967295 cpu_id=3
42230          <idle>-0     (-----) [003] d..2 29484.517830: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42231   kworker/u17:2-23076 (23076) [003] d..2 29484.517843: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42232          <idle>-0     (-----) [007] dnh2 29484.517853: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
42233   kworker/u17:2-23076 (23076) [003] d..3 29484.517853: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42234          <idle>-0     (-----) [007] .n.1 29484.517857: cpu_idle: state=4294967295 cpu_id=7
42235          <idle>-0     (-----) [007] d..2 29484.517863: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
42236   kworker/u17:2-23076 (23076) [003] d..2 29484.517870: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42237         sugov:4-560   (  560) [007] d..2 29484.517874: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
42238     kworker/3:1-12662 (12662) [003] d..2 29484.517878: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42239          <idle>-0     (-----) [007] d..1 29484.517879: cpu_idle: state=2 cpu_id=7
42240     kworker/3:1-12662 (12662) [003] d..3 29484.517887: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42241     kworker/3:1-12662 (12662) [003] d..2 29484.517896: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42242              ps-13726 (13726) [000] d..2 29484.517901: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42243              ps-13726 (13726) [000] dn.3 29484.517909: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42244              ps-13726 (13726) [000] d..2 29484.517914: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42245 shell svc 13722-13723 ( 1007) [000] d..2 29484.517936: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42246            adbd-23485 ( 1007) [003] d..2 29484.517941: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42247          <idle>-0     (-----) [003] d..1 29484.517946: cpu_idle: state=0 cpu_id=3
42248              ps-13726 (13726) [000] d.h2 29484.517955: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42249              ps-13726 (13726) [000] d.h3 29484.517965: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42250          <idle>-0     (-----) [003] .n.1 29484.517969: cpu_idle: state=4294967295 cpu_id=3
42251          <idle>-0     (-----) [003] d..2 29484.517974: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42252   kworker/u17:2-23076 (23076) [003] d..2 29484.517981: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42253   kworker/u17:2-23076 (23076) [003] d..3 29484.517987: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42254   kworker/u17:2-23076 (23076) [003] d..2 29484.518002: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42255     kworker/3:1-12662 (12662) [003] d..2 29484.518006: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42256     kworker/3:1-12662 (12662) [003] d..3 29484.518014: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42257     kworker/3:1-12662 (12662) [003] d..2 29484.518023: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42258            adbd-23485 ( 1007) [003] d..2 29484.518046: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42259          <idle>-0     (-----) [003] d..1 29484.518051: cpu_idle: state=0 cpu_id=3
42260              ps-13726 (13726) [000] d..2 29484.518070: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42261              ps-13726 (13726) [000] dn.3 29484.518078: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42262              ps-13726 (13726) [000] d..2 29484.518084: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42263 shell svc 13722-13723 ( 1007) [000] d..2 29484.518106: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42264              ps-13726 (13726) [000] d.h2 29484.518177: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42265              ps-13726 (13726) [000] d.h3 29484.518188: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42266          <idle>-0     (-----) [003] .n.1 29484.518192: cpu_idle: state=4294967295 cpu_id=3
42267          <idle>-0     (-----) [003] d..2 29484.518197: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42268   kworker/u17:2-23076 (23076) [003] d..2 29484.518205: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42269   kworker/u17:2-23076 (23076) [003] d..3 29484.518210: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42270   kworker/u17:2-23076 (23076) [003] d..2 29484.518226: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42271     kworker/3:1-12662 (12662) [003] d..2 29484.518233: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
42272              ps-13726 (13726) [000] d..2 29484.518247: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42273     kworker/3:1-12662 (12662) [003] d..3 29484.518255: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
42274              ps-13726 (13726) [000] dn.3 29484.518255: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42275              ps-13726 (13726) [000] d..2 29484.518261: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42276     kworker/3:1-12662 (12662) [003] d..2 29484.518264: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42277            adbd-23484 ( 1007) [003] d..2 29484.518280: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
42278 shell svc 13722-13723 ( 1007) [000] d..2 29484.518283: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42279            adbd-23484 ( 1007) [003] d..3 29484.518287: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
42280            adbd-23484 ( 1007) [003] d..2 29484.518331: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42281              ps-13726 (13726) [000] d..2 29484.518387: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42282            adbd-1007  ( 1007) [003] d..1 29484.518393: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42283              ps-13726 (13726) [000] dn.3 29484.518395: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42284              ps-13726 (13726) [000] d..2 29484.518401: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42285            adbd-1007  ( 1007) [003] d..2 29484.518405: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42286 shell svc 13722-13723 ( 1007) [000] d..2 29484.518424: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42287            adbd-1007  ( 1007) [003] d..2 29484.518432: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42288            adbd-23485 ( 1007) [003] d..2 29484.518479: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42289          <idle>-0     (-----) [003] d..1 29484.518485: cpu_idle: state=0 cpu_id=3
42290              ps-13726 (13726) [000] d.h2 29484.518498: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42291              ps-13726 (13726) [000] d.h3 29484.518510: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42292          <idle>-0     (-----) [003] .n.1 29484.518514: cpu_idle: state=4294967295 cpu_id=3
42293          <idle>-0     (-----) [003] d..2 29484.518520: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42294   kworker/u17:2-23076 (23076) [003] d..2 29484.518527: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42295   kworker/u17:2-23076 (23076) [003] d..3 29484.518533: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42296   kworker/u17:2-23076 (23076) [003] d..2 29484.518548: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42297     kworker/3:1-12662 (12662) [003] d..2 29484.518553: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42298     kworker/3:1-12662 (12662) [003] d..3 29484.518561: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42299              ps-13726 (13726) [000] d..2 29484.518564: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42300     kworker/3:1-12662 (12662) [003] d..2 29484.518569: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42301              ps-13726 (13726) [000] dn.3 29484.518571: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42302              ps-13726 (13726) [000] d..2 29484.518577: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42303 shell svc 13722-13723 ( 1007) [000] d..2 29484.518599: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42304            adbd-23485 ( 1007) [003] d..2 29484.518613: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42305          <idle>-0     (-----) [003] d..1 29484.518618: cpu_idle: state=0 cpu_id=3
42306              ps-13726 (13726) [000] d.h2 29484.518622: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42307              ps-13726 (13726) [000] d.h3 29484.518632: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42308          <idle>-0     (-----) [003] .n.1 29484.518637: cpu_idle: state=4294967295 cpu_id=3
42309          <idle>-0     (-----) [003] d..2 29484.518642: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42310   kworker/u17:2-23076 (23076) [003] d..2 29484.518649: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42311   kworker/u17:2-23076 (23076) [003] d..3 29484.518654: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42312   kworker/u17:2-23076 (23076) [003] d..2 29484.518669: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42313     kworker/3:1-12662 (12662) [003] d..2 29484.518674: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42314     kworker/3:1-12662 (12662) [003] d..3 29484.518682: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42315     kworker/3:1-12662 (12662) [003] d..2 29484.518690: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42316            adbd-23485 ( 1007) [003] d..2 29484.518709: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42317          <idle>-0     (-----) [003] d..1 29484.518713: cpu_idle: state=0 cpu_id=3
42318              ps-13726 (13726) [000] d..2 29484.518745: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42319              ps-13726 (13726) [000] dn.3 29484.518755: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42320              ps-13726 (13726) [000] d..2 29484.518760: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42321 shell svc 13722-13723 ( 1007) [000] d.h2 29484.518792: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42322 shell svc 13722-13723 ( 1007) [000] d.h3 29484.518802: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42323          <idle>-0     (-----) [003] .n.1 29484.518807: cpu_idle: state=4294967295 cpu_id=3
42324 shell svc 13722-13723 ( 1007) [000] d..2 29484.518811: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42325          <idle>-0     (-----) [003] d..2 29484.518812: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42326   kworker/u17:2-23076 (23076) [003] d..2 29484.518818: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42327   kworker/u17:2-23076 (23076) [003] d..3 29484.518824: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42328   kworker/u17:2-23076 (23076) [003] d..2 29484.518839: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42329     kworker/3:1-12662 (12662) [003] d..2 29484.518845: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
42330     kworker/3:1-12662 (12662) [003] d..3 29484.518853: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
42331     kworker/3:1-12662 (12662) [003] d..2 29484.518861: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42332            adbd-23484 ( 1007) [003] d..2 29484.518871: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
42333            adbd-23484 ( 1007) [003] d..3 29484.518877: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
42334            adbd-23484 ( 1007) [003] d..2 29484.518918: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42335              ps-13726 (13726) [000] d..2 29484.518921: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42336              ps-13726 (13726) [000] dn.3 29484.518929: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42337              ps-13726 (13726) [000] d..2 29484.518935: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42338 shell svc 13722-13723 ( 1007) [000] d..2 29484.518957: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42339            adbd-1007  ( 1007) [003] d..1 29484.518976: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42340            adbd-1007  ( 1007) [003] d..2 29484.518987: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42341            adbd-1007  ( 1007) [003] d..2 29484.519012: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42342            adbd-23485 ( 1007) [003] d..2 29484.519059: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42343          <idle>-0     (-----) [003] d..1 29484.519065: cpu_idle: state=0 cpu_id=3
42344              ps-13726 (13726) [000] d.h2 29484.519083: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42345              ps-13726 (13726) [000] d.h3 29484.519096: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42346              ps-13726 (13726) [000] d..2 29484.519100: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42347          <idle>-0     (-----) [003] .n.1 29484.519101: cpu_idle: state=4294967295 cpu_id=3
42348              ps-13726 (13726) [000] dn.3 29484.519106: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42349          <idle>-0     (-----) [003] d..2 29484.519107: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42350              ps-13726 (13726) [000] d..2 29484.519113: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42351   kworker/u17:2-23076 (23076) [003] d..2 29484.519114: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42352   kworker/u17:2-23076 (23076) [003] d..3 29484.519120: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42353 shell svc 13722-13723 ( 1007) [000] d..2 29484.519135: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42354   kworker/u17:2-23076 (23076) [003] d..2 29484.519136: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42355     kworker/3:1-12662 (12662) [003] d..2 29484.519141: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42356     kworker/3:1-12662 (12662) [003] d..3 29484.519150: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42357     kworker/3:1-12662 (12662) [003] d..2 29484.519158: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42358            adbd-23485 ( 1007) [003] d..2 29484.519201: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42359          <idle>-0     (-----) [003] d..1 29484.519206: cpu_idle: state=0 cpu_id=3
42360              ps-13726 (13726) [000] d.h2 29484.519226: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42361              ps-13726 (13726) [000] d.h3 29484.519238: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42362          <idle>-0     (-----) [003] .n.1 29484.519243: cpu_idle: state=4294967295 cpu_id=3
42363          <idle>-0     (-----) [003] d..2 29484.519248: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42364   kworker/u17:2-23076 (23076) [003] d..2 29484.519255: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42365   kworker/u17:2-23076 (23076) [003] d..3 29484.519260: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
42366   kworker/u17:2-23076 (23076) [003] d..2 29484.519276: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
42367     kworker/3:1-12662 (12662) [003] d..2 29484.519281: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42368              ps-13726 (13726) [000] d..2 29484.519286: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42369     kworker/3:1-12662 (12662) [003] d..3 29484.519289: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
42370              ps-13726 (13726) [000] dn.3 29484.519294: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42371     kworker/3:1-12662 (12662) [003] d..2 29484.519297: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42372              ps-13726 (13726) [000] d..2 29484.519300: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42373            adbd-23485 ( 1007) [003] d..2 29484.519325: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42374 shell svc 13722-13723 ( 1007) [000] d..2 29484.519334: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42375          <idle>-0     (-----) [000] d..1 29484.519350: cpu_idle: state=0 cpu_id=0
42376              ps-13726 (13726) [003] d..2 29484.519381: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
42377              ps-13726 (13726) [003] d..3 29484.519410: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42378          <idle>-0     (-----) [000] dnh3 29484.519430: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
42379          <idle>-0     (-----) [000] dnh4 29484.519452: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42380          <idle>-0     (-----) [000] .n.1 29484.519457: cpu_idle: state=4294967295 cpu_id=0
42381          <idle>-0     (-----) [000] d..2 29484.519465: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
42382         rcuop/2-29    (   29) [000] d..2 29484.519474: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42383   kworker/u17:2-23076 (23076) [000] d..2 29484.519482: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42384              ps-13726 (13726) [003] d..2 29484.519487: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=000
42385   kworker/u17:2-23076 (23076) [000] d..3 29484.519488: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42386              ps-13726 (13726) [003] dn.3 29484.519502: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42387              ps-13726 (13726) [003] d..2 29484.519508: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42388   kworker/u17:2-23076 (23076) [000] d..2 29484.519509: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42389     kworker/0:0-13450 (13450) [000] d..2 29484.519516: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
42390     kworker/0:0-13450 (13450) [000] d..3 29484.519528: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42391 shell svc 13722-13723 ( 1007) [003] d..2 29484.519533: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42392     kworker/0:0-13450 (13450) [000] d..2 29484.519538: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42393            adbd-23484 ( 1007) [000] d..2 29484.519550: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
42394            adbd-23484 ( 1007) [000] d..3 29484.519560: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42395            adbd-23484 ( 1007) [000] d..2 29484.519603: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42396              ps-13726 (13726) [003] d..2 29484.519641: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42397              ps-13726 (13726) [003] dn.3 29484.519650: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42398              ps-13726 (13726) [003] d..2 29484.519655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42399            adbd-1007  ( 1007) [000] d..1 29484.519666: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
42400 shell svc 13722-13723 ( 1007) [003] d..2 29484.519679: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42401            adbd-1007  ( 1007) [000] d..2 29484.519689: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42402            adbd-1007  ( 1007) [000] d..2 29484.519715: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42403            adbd-23485 ( 1007) [000] d..2 29484.519764: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42404          <idle>-0     (-----) [000] d.h4 29484.519781: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42405          <idle>-0     (-----) [000] dnh5 29484.519786: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42406              ps-13726 (13726) [003] d..2 29484.519788: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42407          <idle>-0     (-----) [000] d..2 29484.519794: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42408              ps-13726 (13726) [003] dn.3 29484.519797: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42409   kworker/u17:2-23076 (23076) [000] d..2 29484.519801: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42410              ps-13726 (13726) [003] d..2 29484.519804: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42411   kworker/u17:2-23076 (23076) [000] d..3 29484.519807: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42412   kworker/u17:2-23076 (23076) [000] d..2 29484.519822: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42413 shell svc 13722-13723 ( 1007) [003] d..2 29484.519825: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42414     kworker/0:0-13450 (13450) [000] d..2 29484.519828: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42415     kworker/0:0-13450 (13450) [000] d..3 29484.519836: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42416     kworker/0:0-13450 (13450) [000] d..2 29484.519844: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42417            adbd-23485 ( 1007) [000] d..2 29484.519883: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42418          <idle>-0     (-----) [000] d..1 29484.519892: cpu_idle: state=0 cpu_id=0
42419          <idle>-0     (-----) [000] d.h3 29484.519915: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42420          <idle>-0     (-----) [000] dnh4 29484.519923: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42421          <idle>-0     (-----) [000] .n.1 29484.519929: cpu_idle: state=4294967295 cpu_id=0
42422          <idle>-0     (-----) [000] d..2 29484.519935: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42423              ps-13726 (13726) [003] d..2 29484.519937: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42424   kworker/u17:2-23076 (23076) [000] d..2 29484.519942: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42425              ps-13726 (13726) [003] dn.3 29484.519945: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42426   kworker/u17:2-23076 (23076) [000] d..3 29484.519947: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42427              ps-13726 (13726) [003] d..2 29484.519950: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42428   kworker/u17:2-23076 (23076) [000] d..2 29484.519964: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42429     kworker/0:0-13450 (13450) [000] d..2 29484.519969: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42430 shell svc 13722-13723 ( 1007) [003] d..2 29484.519972: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42431     kworker/0:0-13450 (13450) [000] d..3 29484.519977: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42432     kworker/0:0-13450 (13450) [000] d..2 29484.519985: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42433            adbd-23485 ( 1007) [000] d..2 29484.519996: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42434          <idle>-0     (-----) [000] d..1 29484.520003: cpu_idle: state=0 cpu_id=0
42435              ps-13726 (13726) [003] d..2 29484.520087: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42436              ps-13726 (13726) [003] dn.3 29484.520095: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42437              ps-13726 (13726) [003] d..2 29484.520101: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42438 shell svc 13722-13723 ( 1007) [003] d..2 29484.520123: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42439          <idle>-0     (-----) [000] d.h3 29484.520126: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42440          <idle>-0     (-----) [000] dnh4 29484.520131: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42441          <idle>-0     (-----) [000] .n.1 29484.520136: cpu_idle: state=4294967295 cpu_id=0
42442          <idle>-0     (-----) [000] d..2 29484.520141: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42443   kworker/u17:2-23076 (23076) [000] d..2 29484.520147: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42444   kworker/u17:2-23076 (23076) [000] d..3 29484.520152: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42445   kworker/u17:2-23076 (23076) [000] d..2 29484.520167: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42446     kworker/0:0-13450 (13450) [000] d..2 29484.520175: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42447     kworker/0:0-13450 (13450) [000] d..3 29484.520183: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42448     kworker/0:0-13450 (13450) [000] d..2 29484.520192: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42449            adbd-23484 ( 1007) [000] d..2 29484.520202: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42450            adbd-23484 ( 1007) [000] d..3 29484.520208: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42451              ps-13726 (13726) [003] d..2 29484.520234: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42452              ps-13726 (13726) [003] dn.3 29484.520242: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42453              ps-13726 (13726) [003] d..2 29484.520248: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42454            adbd-23484 ( 1007) [000] d..2 29484.520250: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42455 shell svc 13722-13723 ( 1007) [003] d..2 29484.520270: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42456            adbd-1007  ( 1007) [000] d..1 29484.520308: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42457            adbd-1007  ( 1007) [000] d..2 29484.520319: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42458            adbd-1007  ( 1007) [000] d..2 29484.520344: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42459              ps-13726 (13726) [003] d..2 29484.520380: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42460            adbd-23485 ( 1007) [000] d..2 29484.520386: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42461              ps-13726 (13726) [003] dn.3 29484.520388: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42462              ps-13726 (13726) [003] dns2 29484.520410: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
42463          <idle>-0     (-----) [000] d.H4 29484.520420: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42464              ps-13726 (13726) [003] dns3 29484.520429: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42465          <idle>-0     (-----) [000] dnH5 29484.520433: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42466          <idle>-0     (-----) [000] dns4 29484.520441: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
42467              ps-13726 (13726) [003] d..2 29484.520444: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42468          <idle>-0     (-----) [000] dns5 29484.520460: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
42469 shell svc 13722-13723 ( 1007) [003] d..2 29484.520468: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42470          <idle>-0     (-----) [000] d..2 29484.520476: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
42471     rcu_preempt-7     (    7) [000] d..2 29484.520482: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
42472     rcu_preempt-7     (    7) [000] d..3 29484.520492: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
42473     rcu_preempt-7     (    7) [000] d..2 29484.520501: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
42474         rcuop/0-10    (   10) [000] d..2 29484.520553: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42475   kworker/u17:2-23076 (23076) [000] d..2 29484.520560: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42476   kworker/u17:2-23076 (23076) [000] d..3 29484.520565: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42477              ps-13726 (13726) [003] d..2 29484.520576: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42478   kworker/u17:2-23076 (23076) [000] d..2 29484.520581: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42479              ps-13726 (13726) [003] dn.3 29484.520585: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42480     kworker/0:0-13450 (13450) [000] d..2 29484.520586: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42481              ps-13726 (13726) [003] d..2 29484.520590: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42482     kworker/0:0-13450 (13450) [000] d..3 29484.520595: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42483     kworker/0:0-13450 (13450) [000] d..2 29484.520603: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42484 shell svc 13722-13723 ( 1007) [003] d..2 29484.520612: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42485  kworker/u16:10-23868 (23868) [000] d..2 29484.520711: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
42486              ps-13726 (13726) [003] d..2 29484.520719: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42487              ps-13726 (13726) [003] dn.3 29484.520727: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42488              ps-13726 (13726) [003] dns3 29484.520752: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
42489            adbd-23485 ( 1007) [000] d..2 29484.520761: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42490              ps-13726 (13726) [003] dns4 29484.520765: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
42491              ps-13726 (13726) [003] dns4 29484.520770: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
42492          <idle>-0     (-----) [000] d..2 29484.520775: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42493              ps-13726 (13726) [003] d..2 29484.520782: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42494  kworker/u16:10-23868 (23868) [000] d.h4 29484.520792: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42495  kworker/u16:10-23868 (23868) [000] dnh5 29484.520802: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42496 shell svc 13722-13723 ( 1007) [003] d..2 29484.520805: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42497  kworker/u16:10-23868 (23868) [000] d..2 29484.520810: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42498   kworker/u17:2-23076 (23076) [000] d..2 29484.520817: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42499   kworker/u17:2-23076 (23076) [000] d..3 29484.520821: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42500   kworker/u17:2-23076 (23076) [000] d..2 29484.520837: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42501     kworker/0:0-13450 (13450) [000] d..2 29484.520842: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42502     kworker/0:0-13450 (13450) [000] d..3 29484.520849: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42503     kworker/0:0-13450 (13450) [000] d..2 29484.520857: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42504  kworker/u16:10-23868 (23868) [000] .... 29484.520902: clk_set_rate: l3_cluster0_vote_clk 1401600000
42505  kworker/u16:10-23868 (23868) [000] .... 29484.520906: clk_set_rate: l3_clk 1401600000
42506              ps-13726 (13726) [003] d..2 29484.520927: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42507              ps-13726 (13726) [003] dn.3 29484.520936: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42508              ps-13726 (13726) [003] d..2 29484.520945: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42509 shell svc 13722-13723 ( 1007) [003] d..2 29484.520976: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42510  kworker/u16:10-23868 (23868) [000] d.h3 29484.521051: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42511  kworker/u16:10-23868 (23868) [000] dnh4 29484.521061: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42512  kworker/u16:10-23868 (23868) [000] d..2 29484.521069: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42513   kworker/u17:2-23076 (23076) [000] d..2 29484.521076: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42514   kworker/u17:2-23076 (23076) [000] d..3 29484.521081: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42515   kworker/u17:2-23076 (23076) [000] d..2 29484.521097: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42516     kworker/0:0-13450 (13450) [000] d..2 29484.521103: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42517              ps-13726 (13726) [003] d..2 29484.521109: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42518     kworker/0:0-13450 (13450) [000] d..3 29484.521110: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42519              ps-13726 (13726) [003] dn.3 29484.521118: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42520     kworker/0:0-13450 (13450) [000] d..2 29484.521118: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42521              ps-13726 (13726) [003] d..2 29484.521124: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42522            adbd-23484 ( 1007) [000] d..2 29484.521129: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42523            adbd-23484 ( 1007) [000] d..3 29484.521138: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42524 shell svc 13722-13723 ( 1007) [003] d..2 29484.521147: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42525            adbd-23484 ( 1007) [000] d..2 29484.521179: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
42526  kworker/u16:10-23868 (23868) [000] .... 29484.521197: clk_set_rate: l3_cluster1_vote_clk 300000000
42527  kworker/u16:10-23868 (23868) [000] d..2 29484.521205: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42528              ps-13726 (13726) [003] d..2 29484.521251: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42529              ps-13726 (13726) [003] dn.3 29484.521260: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42530              ps-13726 (13726) [003] d..2 29484.521265: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42531 shell svc 13722-13723 ( 1007) [003] d..2 29484.521288: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42532            adbd-1007  ( 1007) [000] d..2 29484.521302: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42533            adbd-23485 ( 1007) [000] d..2 29484.521346: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42534          <idle>-0     (-----) [000] d..1 29484.521354: cpu_idle: state=0 cpu_id=0
42535          <idle>-0     (-----) [000] d.h3 29484.521374: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42536          <idle>-0     (-----) [000] dnh4 29484.521380: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42537          <idle>-0     (-----) [000] .n.1 29484.521385: cpu_idle: state=4294967295 cpu_id=0
42538          <idle>-0     (-----) [000] d..2 29484.521391: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42539   kworker/u17:2-23076 (23076) [000] d..2 29484.521399: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42540              ps-13726 (13726) [003] d..2 29484.521401: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42541   kworker/u17:2-23076 (23076) [000] d..3 29484.521404: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42542              ps-13726 (13726) [003] dn.3 29484.521410: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42543              ps-13726 (13726) [003] d..2 29484.521415: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42544   kworker/u17:2-23076 (23076) [000] d..2 29484.521419: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42545     kworker/0:0-13450 (13450) [000] d..2 29484.521424: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42546     kworker/0:0-13450 (13450) [000] d..3 29484.521432: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42547 shell svc 13722-13723 ( 1007) [003] d..2 29484.521437: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42548     kworker/0:0-13450 (13450) [000] d..2 29484.521440: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42549            adbd-23485 ( 1007) [000] d..2 29484.521480: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42550          <idle>-0     (-----) [000] d.h3 29484.521499: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42551          <idle>-0     (-----) [000] dnh4 29484.521505: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42552          <idle>-0     (-----) [000] d..2 29484.521513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42553   kworker/u17:2-23076 (23076) [000] d..2 29484.521520: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42554   kworker/u17:2-23076 (23076) [000] d..3 29484.521525: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42555   kworker/u17:2-23076 (23076) [000] d..2 29484.521541: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42556     kworker/0:0-13450 (13450) [000] d..2 29484.521545: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42557              ps-13726 (13726) [003] d..2 29484.521545: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42558     kworker/0:0-13450 (13450) [000] d..3 29484.521553: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42559              ps-13726 (13726) [003] dn.3 29484.521554: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42560              ps-13726 (13726) [003] d..2 29484.521559: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42561     kworker/0:0-13450 (13450) [000] d..2 29484.521560: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42562            adbd-23485 ( 1007) [000] d..2 29484.521577: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42563 shell svc 13722-13723 ( 1007) [003] d..2 29484.521581: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42564          <idle>-0     (-----) [000] d..1 29484.521583: cpu_idle: state=0 cpu_id=0
42565              ps-13726 (13726) [003] d..2 29484.521690: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42566              ps-13726 (13726) [003] dn.3 29484.521697: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42567              ps-13726 (13726) [003] d..2 29484.521703: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42568          <idle>-0     (-----) [000] d.h3 29484.521716: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42569          <idle>-0     (-----) [000] dnh4 29484.521722: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42570 shell svc 13722-13723 ( 1007) [003] d..2 29484.521724: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42571          <idle>-0     (-----) [000] .n.1 29484.521727: cpu_idle: state=4294967295 cpu_id=0
42572          <idle>-0     (-----) [000] d..2 29484.521733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42573   kworker/u17:2-23076 (23076) [000] d..2 29484.521740: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42574   kworker/u17:2-23076 (23076) [000] d..3 29484.521745: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42575   kworker/u17:2-23076 (23076) [000] d..2 29484.521760: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42576     kworker/0:0-13450 (13450) [000] d..2 29484.521766: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42577     kworker/0:0-13450 (13450) [000] d..3 29484.521774: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42578     kworker/0:0-13450 (13450) [000] d..2 29484.521782: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42579            adbd-23484 ( 1007) [000] d..2 29484.521792: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42580            adbd-23484 ( 1007) [000] d..3 29484.521797: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42581              ps-13726 (13726) [003] d..2 29484.521832: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42582            adbd-23484 ( 1007) [000] d..2 29484.521837: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42583              ps-13726 (13726) [003] dn.3 29484.521840: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42584              ps-13726 (13726) [003] d..2 29484.521846: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42585 shell svc 13722-13723 ( 1007) [003] d..2 29484.521867: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42586            adbd-1007  ( 1007) [000] d..1 29484.521893: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42587            adbd-1007  ( 1007) [000] d..2 29484.521904: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42588            adbd-1007  ( 1007) [000] d..2 29484.521929: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42589            adbd-23485 ( 1007) [000] d..2 29484.521970: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42590              ps-13726 (13726) [003] d..2 29484.521974: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42591          <idle>-0     (-----) [000] d..1 29484.521978: cpu_idle: state=0 cpu_id=0
42592              ps-13726 (13726) [003] dn.3 29484.521983: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42593              ps-13726 (13726) [003] d..2 29484.521988: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42594          <idle>-0     (-----) [000] d.h3 29484.522000: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42595          <idle>-0     (-----) [000] dnh4 29484.522009: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42596 shell svc 13722-13723 ( 1007) [003] d..2 29484.522010: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42597          <idle>-0     (-----) [000] .n.1 29484.522014: cpu_idle: state=4294967295 cpu_id=0
42598          <idle>-0     (-----) [000] d..2 29484.522020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42599   kworker/u17:2-23076 (23076) [000] d..2 29484.522027: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42600   kworker/u17:2-23076 (23076) [000] d..3 29484.522032: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42601   kworker/u17:2-23076 (23076) [000] d..2 29484.522049: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42602     kworker/0:0-13450 (13450) [000] d..2 29484.522053: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42603     kworker/0:0-13450 (13450) [000] d..3 29484.522061: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42604     kworker/0:0-13450 (13450) [000] d..2 29484.522069: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42605            adbd-23485 ( 1007) [000] d..2 29484.522108: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42606              ps-13726 (13726) [003] d..2 29484.522116: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42607          <idle>-0     (-----) [000] d.h4 29484.522125: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42608              ps-13726 (13726) [003] dn.3 29484.522125: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42609          <idle>-0     (-----) [000] dnh5 29484.522130: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42610              ps-13726 (13726) [003] d..2 29484.522130: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42611          <idle>-0     (-----) [000] d..2 29484.522138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42612   kworker/u17:2-23076 (23076) [000] d..2 29484.522144: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42613   kworker/u17:2-23076 (23076) [000] d..3 29484.522149: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42614 shell svc 13722-13723 ( 1007) [003] d..2 29484.522152: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42615   kworker/u17:2-23076 (23076) [000] d..2 29484.522164: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42616     kworker/0:0-13450 (13450) [000] d..2 29484.522170: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42617     kworker/0:0-13450 (13450) [000] d..3 29484.522177: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42618     kworker/0:0-13450 (13450) [000] d..2 29484.522185: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42619            adbd-23485 ( 1007) [000] d..2 29484.522195: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42620          <idle>-0     (-----) [000] d..1 29484.522202: cpu_idle: state=0 cpu_id=0
42621              ps-13726 (13726) [003] d..2 29484.522262: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42622              ps-13726 (13726) [003] dn.3 29484.522270: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42623              ps-13726 (13726) [003] d..2 29484.522277: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42624 shell svc 13722-13723 ( 1007) [003] d..2 29484.522298: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42625          <idle>-0     (-----) [000] d.h3 29484.522327: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42626          <idle>-0     (-----) [000] dnh4 29484.522332: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42627          <idle>-0     (-----) [000] .n.1 29484.522337: cpu_idle: state=4294967295 cpu_id=0
42628          <idle>-0     (-----) [000] d..2 29484.522343: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42629   kworker/u17:2-23076 (23076) [000] d..2 29484.522350: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42630   kworker/u17:2-23076 (23076) [000] d..3 29484.522354: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42631   kworker/u17:2-23076 (23076) [000] d..2 29484.522370: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42632     kworker/0:0-13450 (13450) [000] d..2 29484.522376: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42633     kworker/0:0-13450 (13450) [000] d..3 29484.522384: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42634     kworker/0:0-13450 (13450) [000] d..2 29484.522392: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42635            adbd-23484 ( 1007) [000] d..2 29484.522402: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42636            adbd-23484 ( 1007) [000] d..3 29484.522407: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42637              ps-13726 (13726) [003] d..2 29484.522409: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42638              ps-13726 (13726) [003] dn.3 29484.522417: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42639              ps-13726 (13726) [003] d..2 29484.522422: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42640 shell svc 13722-13723 ( 1007) [003] d..2 29484.522444: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42641            adbd-23484 ( 1007) [000] d..2 29484.522447: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42642            adbd-1007  ( 1007) [000] d..1 29484.522503: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42643            adbd-1007  ( 1007) [000] d..2 29484.522514: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42644            adbd-1007  ( 1007) [000] d..2 29484.522539: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42645              ps-13726 (13726) [003] d..2 29484.522569: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42646              ps-13726 (13726) [003] dn.3 29484.522577: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42647            adbd-23485 ( 1007) [000] d..2 29484.522580: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42648              ps-13726 (13726) [003] d..2 29484.522582: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42649          <idle>-0     (-----) [000] d..1 29484.522588: cpu_idle: state=0 cpu_id=0
42650 shell svc 13722-13723 ( 1007) [003] d..2 29484.522605: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42651          <idle>-0     (-----) [000] d.h3 29484.522605: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42652          <idle>-0     (-----) [000] dnh4 29484.522612: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42653          <idle>-0     (-----) [000] .n.1 29484.522616: cpu_idle: state=4294967295 cpu_id=0
42654          <idle>-0     (-----) [000] d..2 29484.522623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42655   kworker/u17:2-23076 (23076) [000] d..2 29484.522630: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42656   kworker/u17:2-23076 (23076) [000] d..3 29484.522635: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42657   kworker/u17:2-23076 (23076) [000] d..2 29484.522650: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42658     kworker/0:0-13450 (13450) [000] d..2 29484.522655: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42659     kworker/0:0-13450 (13450) [000] d..3 29484.522662: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42660     kworker/0:0-13450 (13450) [000] d..2 29484.522670: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42661            adbd-23485 ( 1007) [000] d..2 29484.522709: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42662              ps-13726 (13726) [003] d..2 29484.522712: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42663              ps-13726 (13726) [003] dn.3 29484.522720: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42664              ps-13726 (13726) [003] d..2 29484.522726: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42665          <idle>-0     (-----) [000] d.h3 29484.522727: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42666          <idle>-0     (-----) [000] dnh4 29484.522733: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42667          <idle>-0     (-----) [000] d..2 29484.522740: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42668   kworker/u17:2-23076 (23076) [000] d..2 29484.522747: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42669 shell svc 13722-13723 ( 1007) [003] d..2 29484.522747: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42670   kworker/u17:2-23076 (23076) [000] d..3 29484.522751: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42671   kworker/u17:2-23076 (23076) [000] d..2 29484.522766: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42672     kworker/0:0-13450 (13450) [000] d..2 29484.522770: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42673     kworker/0:0-13450 (13450) [000] d..3 29484.522778: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42674     kworker/0:0-13450 (13450) [000] d..2 29484.522785: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42675            adbd-23485 ( 1007) [000] d..2 29484.522796: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42676          <idle>-0     (-----) [000] d..1 29484.522803: cpu_idle: state=0 cpu_id=0
42677              ps-13726 (13726) [003] d..2 29484.522856: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42678              ps-13726 (13726) [003] dn.3 29484.522865: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42679              ps-13726 (13726) [003] d..2 29484.522871: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42680 shell svc 13722-13723 ( 1007) [003] d..2 29484.522892: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42681          <idle>-0     (-----) [000] d.h3 29484.522911: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42682          <idle>-0     (-----) [000] dnh4 29484.522916: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42683          <idle>-0     (-----) [000] .n.1 29484.522921: cpu_idle: state=4294967295 cpu_id=0
42684          <idle>-0     (-----) [000] d..2 29484.522927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42685   kworker/u17:2-23076 (23076) [000] d..2 29484.522932: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42686   kworker/u17:2-23076 (23076) [000] d..3 29484.522937: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42687   kworker/u17:2-23076 (23076) [000] d..2 29484.522952: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42688     kworker/0:0-13450 (13450) [000] d..2 29484.522959: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42689     kworker/0:0-13450 (13450) [000] d..3 29484.522966: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42690     kworker/0:0-13450 (13450) [000] d..2 29484.522974: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42691            adbd-23484 ( 1007) [000] d..2 29484.522984: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42692            adbd-23484 ( 1007) [000] d..3 29484.522989: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42693              ps-13726 (13726) [003] d..2 29484.523000: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42694              ps-13726 (13726) [003] dn.3 29484.523008: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42695              ps-13726 (13726) [003] d..2 29484.523013: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42696            adbd-23484 ( 1007) [000] d..2 29484.523030: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42697 shell svc 13722-13723 ( 1007) [003] d..2 29484.523034: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42698            adbd-1007  ( 1007) [000] d..1 29484.523085: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42699            adbd-1007  ( 1007) [000] d..2 29484.523096: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42700            adbd-1007  ( 1007) [000] d..2 29484.523122: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42701              ps-13726 (13726) [003] d..2 29484.523142: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42702              ps-13726 (13726) [003] dn.3 29484.523150: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42703              ps-13726 (13726) [003] d..2 29484.523155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42704            adbd-23485 ( 1007) [000] d..2 29484.523163: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42705          <idle>-0     (-----) [000] d..1 29484.523171: cpu_idle: state=0 cpu_id=0
42706 shell svc 13722-13723 ( 1007) [003] d..2 29484.523177: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42707          <idle>-0     (-----) [000] d.h3 29484.523189: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42708          <idle>-0     (-----) [000] dnh4 29484.523195: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42709          <idle>-0     (-----) [000] .n.1 29484.523199: cpu_idle: state=4294967295 cpu_id=0
42710          <idle>-0     (-----) [000] d..2 29484.523206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42711   kworker/u17:2-23076 (23076) [000] d..2 29484.523213: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42712   kworker/u17:2-23076 (23076) [000] d..3 29484.523218: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42713   kworker/u17:2-23076 (23076) [000] d..2 29484.523234: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42714     kworker/0:0-13450 (13450) [000] d..2 29484.523240: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42715     kworker/0:0-13450 (13450) [000] d..3 29484.523248: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42716     kworker/0:0-13450 (13450) [000] d..2 29484.523256: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42717              ps-13726 (13726) [003] d..2 29484.523286: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42718              ps-13726 (13726) [003] dn.3 29484.523294: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42719            adbd-23485 ( 1007) [000] d..2 29484.523296: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42720              ps-13726 (13726) [003] d..2 29484.523299: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42721          <idle>-0     (-----) [000] d..1 29484.523302: cpu_idle: state=0 cpu_id=0
42722 shell svc 13722-13723 ( 1007) [003] d..2 29484.523320: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42723          <idle>-0     (-----) [000] d.h3 29484.523324: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42724          <idle>-0     (-----) [000] dnh4 29484.523330: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42725          <idle>-0     (-----) [000] .n.1 29484.523335: cpu_idle: state=4294967295 cpu_id=0
42726          <idle>-0     (-----) [000] d..2 29484.523341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42727   kworker/u17:2-23076 (23076) [000] d..2 29484.523347: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42728   kworker/u17:2-23076 (23076) [000] d..3 29484.523351: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42729   kworker/u17:2-23076 (23076) [000] d..2 29484.523366: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42730     kworker/0:0-13450 (13450) [000] d..2 29484.523370: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42731     kworker/0:0-13450 (13450) [000] d..3 29484.523378: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42732     kworker/0:0-13450 (13450) [000] d..2 29484.523386: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42733            adbd-23485 ( 1007) [000] d..2 29484.523396: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42734          <idle>-0     (-----) [000] d..1 29484.523402: cpu_idle: state=0 cpu_id=0
42735              ps-13726 (13726) [003] d..2 29484.523426: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42736              ps-13726 (13726) [003] dn.3 29484.523435: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42737              ps-13726 (13726) [003] d..2 29484.523440: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42738 shell svc 13722-13723 ( 1007) [003] d..2 29484.523461: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42739          <idle>-0     (-----) [000] d.h3 29484.523532: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42740          <idle>-0     (-----) [000] dnh4 29484.523537: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42741          <idle>-0     (-----) [000] .n.1 29484.523541: cpu_idle: state=4294967295 cpu_id=0
42742          <idle>-0     (-----) [000] d..2 29484.523547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42743   kworker/u17:2-23076 (23076) [000] d..2 29484.523553: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42744   kworker/u17:2-23076 (23076) [000] d..3 29484.523558: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42745              ps-13726 (13726) [003] d..2 29484.523569: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42746   kworker/u17:2-23076 (23076) [000] d..2 29484.523574: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42747              ps-13726 (13726) [003] dn.3 29484.523577: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42748     kworker/0:0-13450 (13450) [000] d..2 29484.523580: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42749              ps-13726 (13726) [003] d..2 29484.523583: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42750     kworker/0:0-13450 (13450) [000] d..3 29484.523589: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42751     kworker/0:0-13450 (13450) [000] d..2 29484.523597: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42752 shell svc 13722-13723 ( 1007) [003] d..2 29484.523604: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42753            adbd-23484 ( 1007) [000] d..2 29484.523608: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42754            adbd-23484 ( 1007) [000] d..3 29484.523614: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42755            adbd-23484 ( 1007) [000] d..2 29484.523654: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42756            adbd-1007  ( 1007) [000] d..1 29484.523708: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42757              ps-13726 (13726) [003] d..2 29484.523718: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42758            adbd-1007  ( 1007) [000] d..2 29484.523719: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42759              ps-13726 (13726) [003] dn.3 29484.523727: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42760              ps-13726 (13726) [003] d..2 29484.523752: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42761            adbd-1007  ( 1007) [000] d..2 29484.523763: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42762 shell svc 13722-13723 ( 1007) [003] d..2 29484.523776: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42763            adbd-23485 ( 1007) [000] d..2 29484.523803: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42764          <idle>-0     (-----) [000] d..1 29484.523809: cpu_idle: state=0 cpu_id=0
42765          <idle>-0     (-----) [000] d.h3 29484.523831: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42766          <idle>-0     (-----) [000] dnh4 29484.523837: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42767          <idle>-0     (-----) [000] .n.1 29484.523842: cpu_idle: state=4294967295 cpu_id=0
42768          <idle>-0     (-----) [000] d..2 29484.523846: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42769   kworker/u17:2-23076 (23076) [000] d..2 29484.523853: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42770   kworker/u17:2-23076 (23076) [000] d..3 29484.523857: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42771   kworker/u17:2-23076 (23076) [000] d..2 29484.523872: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42772     kworker/0:0-13450 (13450) [000] d..2 29484.523877: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42773              ps-13726 (13726) [003] d..2 29484.523881: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42774     kworker/0:0-13450 (13450) [000] d..3 29484.523885: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42775              ps-13726 (13726) [003] dn.3 29484.523890: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42776     kworker/0:0-13450 (13450) [000] d..2 29484.523892: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42777              ps-13726 (13726) [003] d..2 29484.523896: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42778 shell svc 13722-13723 ( 1007) [003] d..2 29484.523918: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42779            adbd-23485 ( 1007) [000] d..2 29484.523930: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42780          <idle>-0     (-----) [000] d..1 29484.523935: cpu_idle: state=0 cpu_id=0
42781          <idle>-0     (-----) [000] d.h3 29484.523952: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42782          <idle>-0     (-----) [001] ...1 29484.523952: cpu_idle: state=4294967295 cpu_id=1
42783          <idle>-0     (-----) [000] dnh4 29484.523958: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42784          <idle>-0     (-----) [001] d..1 29484.523960: cpu_idle: state=0 cpu_id=1
42785          <idle>-0     (-----) [000] .n.1 29484.523963: cpu_idle: state=4294967295 cpu_id=0
42786          <idle>-0     (-----) [000] d..2 29484.523967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42787   kworker/u17:2-23076 (23076) [000] d..2 29484.523973: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42788   kworker/u17:2-23076 (23076) [000] d..3 29484.523978: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42789   kworker/u17:2-23076 (23076) [000] d..2 29484.523994: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42790     kworker/0:0-13450 (13450) [000] d..2 29484.523998: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42791     kworker/0:0-13450 (13450) [000] d..3 29484.524006: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42792     kworker/0:0-13450 (13450) [000] d..2 29484.524014: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42793              ps-13726 (13726) [003] d..2 29484.524022: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42794            adbd-23485 ( 1007) [000] d..2 29484.524027: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42795              ps-13726 (13726) [003] dn.3 29484.524030: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42796          <idle>-0     (-----) [000] d..1 29484.524031: cpu_idle: state=0 cpu_id=0
42797              ps-13726 (13726) [003] d..2 29484.524035: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42798 shell svc 13722-13723 ( 1007) [003] d..2 29484.524056: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42799              ps-13726 (13726) [003] d..2 29484.524164: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42800              ps-13726 (13726) [003] dn.3 29484.524172: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42801              ps-13726 (13726) [003] d..2 29484.524177: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42802          <idle>-0     (-----) [000] d.h3 29484.524177: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42803          <idle>-0     (-----) [000] dnh4 29484.524185: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42804          <idle>-0     (-----) [000] .n.1 29484.524189: cpu_idle: state=4294967295 cpu_id=0
42805          <idle>-0     (-----) [000] d..2 29484.524194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42806 shell svc 13722-13723 ( 1007) [003] d..2 29484.524198: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42807   kworker/u17:2-23076 (23076) [000] d..2 29484.524201: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42808   kworker/u17:2-23076 (23076) [000] d..3 29484.524205: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42809   kworker/u17:2-23076 (23076) [000] d..2 29484.524221: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42810     kworker/0:0-13450 (13450) [000] d..2 29484.524226: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42811     kworker/0:0-13450 (13450) [000] d..3 29484.524234: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42812     kworker/0:0-13450 (13450) [000] d..2 29484.524242: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42813            adbd-23484 ( 1007) [000] d..2 29484.524252: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42814            adbd-23484 ( 1007) [000] d..3 29484.524257: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42815            adbd-23484 ( 1007) [000] d..2 29484.524296: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42816              ps-13726 (13726) [003] d..2 29484.524302: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42817              ps-13726 (13726) [003] dn.3 29484.524310: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42818              ps-13726 (13726) [003] d..2 29484.524315: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42819 shell svc 13722-13723 ( 1007) [003] d..2 29484.524339: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42820            adbd-1007  ( 1007) [000] d..1 29484.524352: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42821            adbd-1007  ( 1007) [000] d..2 29484.524363: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42822            adbd-1007  ( 1007) [000] d..2 29484.524388: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42823            adbd-23485 ( 1007) [000] d..2 29484.524428: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42824          <idle>-0     (-----) [000] d..1 29484.524434: cpu_idle: state=0 cpu_id=0
42825              ps-13726 (13726) [003] d..2 29484.524445: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42826              ps-13726 (13726) [003] dn.3 29484.524453: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42827          <idle>-0     (-----) [000] d.h3 29484.524458: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42828              ps-13726 (13726) [003] d..2 29484.524458: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42829          <idle>-0     (-----) [000] dnh4 29484.524464: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42830          <idle>-0     (-----) [000] .n.1 29484.524469: cpu_idle: state=4294967295 cpu_id=0
42831          <idle>-0     (-----) [000] d..2 29484.524473: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42832 shell svc 13722-13723 ( 1007) [003] d..2 29484.524480: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42833   kworker/u17:2-23076 (23076) [000] d..2 29484.524481: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42834   kworker/u17:2-23076 (23076) [000] d..3 29484.524485: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42835   kworker/u17:2-23076 (23076) [000] d..2 29484.524501: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42836     kworker/0:0-13450 (13450) [000] d..2 29484.524507: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42837     kworker/0:0-13450 (13450) [000] d..3 29484.524514: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42838     kworker/0:0-13450 (13450) [000] d..2 29484.524522: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42839            adbd-23485 ( 1007) [000] d..2 29484.524561: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42840          <idle>-0     (-----) [000] d..1 29484.524566: cpu_idle: state=0 cpu_id=0
42841          <idle>-0     (-----) [000] d.h3 29484.524583: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42842              ps-13726 (13726) [003] d..2 29484.524588: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42843          <idle>-0     (-----) [000] dnh4 29484.524589: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42844          <idle>-0     (-----) [000] .n.1 29484.524593: cpu_idle: state=4294967295 cpu_id=0
42845              ps-13726 (13726) [003] dn.3 29484.524596: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42846          <idle>-0     (-----) [000] d..2 29484.524597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42847              ps-13726 (13726) [003] d..2 29484.524601: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42848   kworker/u17:2-23076 (23076) [000] d..2 29484.524603: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42849   kworker/u17:2-23076 (23076) [000] d..3 29484.524608: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42850 shell svc 13722-13723 ( 1007) [003] d..2 29484.524623: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42851   kworker/u17:2-23076 (23076) [000] d..2 29484.524624: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42852     kworker/0:0-13450 (13450) [000] d..2 29484.524628: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42853     kworker/0:0-13450 (13450) [000] d..3 29484.524635: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42854     kworker/0:0-13450 (13450) [000] d..2 29484.524643: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42855            adbd-23485 ( 1007) [000] d..2 29484.524653: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42856          <idle>-0     (-----) [000] d..1 29484.524658: cpu_idle: state=0 cpu_id=0
42857              ps-13726 (13726) [003] d..2 29484.524729: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42858              ps-13726 (13726) [003] dn.3 29484.524736: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42859              ps-13726 (13726) [003] d..2 29484.524742: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42860 shell svc 13722-13723 ( 1007) [003] d..2 29484.524763: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42861          <idle>-0     (-----) [000] d.h3 29484.524789: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42862          <idle>-0     (-----) [000] dnh4 29484.524794: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42863          <idle>-0     (-----) [000] .n.1 29484.524798: cpu_idle: state=4294967295 cpu_id=0
42864          <idle>-0     (-----) [000] d..2 29484.524803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42865   kworker/u17:2-23076 (23076) [000] d..2 29484.524809: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42866   kworker/u17:2-23076 (23076) [000] d..3 29484.524814: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42867   kworker/u17:2-23076 (23076) [000] d..2 29484.524829: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42868     kworker/0:0-13450 (13450) [000] d..2 29484.524834: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42869     kworker/0:0-13450 (13450) [000] d..3 29484.524842: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42870     kworker/0:0-13450 (13450) [000] d..2 29484.524850: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42871            adbd-23484 ( 1007) [000] d..2 29484.524859: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42872            adbd-23484 ( 1007) [000] d..3 29484.524864: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42873              ps-13726 (13726) [003] d..2 29484.524877: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42874              ps-13726 (13726) [003] dn.3 29484.524885: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42875              ps-13726 (13726) [003] d..2 29484.524891: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42876            adbd-23484 ( 1007) [000] d..2 29484.524904: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42877 shell svc 13722-13723 ( 1007) [003] d..2 29484.524912: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42878            adbd-1007  ( 1007) [000] d..1 29484.524960: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42879            adbd-1007  ( 1007) [000] d..2 29484.524970: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42880            adbd-1007  ( 1007) [000] d..2 29484.524995: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42881              ps-13726 (13726) [003] d..2 29484.525017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42882              ps-13726 (13726) [003] dn.3 29484.525025: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42883              ps-13726 (13726) [003] d..2 29484.525030: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42884            adbd-23485 ( 1007) [000] d..2 29484.525036: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42885          <idle>-0     (-----) [000] d..1 29484.525042: cpu_idle: state=0 cpu_id=0
42886 shell svc 13722-13723 ( 1007) [003] d..2 29484.525052: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42887          <idle>-0     (-----) [000] d.h3 29484.525059: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42888          <idle>-0     (-----) [000] dnh4 29484.525065: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42889          <idle>-0     (-----) [000] .n.1 29484.525070: cpu_idle: state=4294967295 cpu_id=0
42890          <idle>-0     (-----) [000] d..2 29484.525074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42891   kworker/u17:2-23076 (23076) [000] d..2 29484.525081: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42892   kworker/u17:2-23076 (23076) [000] d..3 29484.525086: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42893   kworker/u17:2-23076 (23076) [000] d..2 29484.525101: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42894     kworker/0:0-13450 (13450) [000] d..2 29484.525106: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42895     kworker/0:0-13450 (13450) [000] d..3 29484.525114: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42896     kworker/0:0-13450 (13450) [000] d..2 29484.525121: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42897              ps-13726 (13726) [003] d..2 29484.525158: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42898            adbd-23485 ( 1007) [000] d..2 29484.525159: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42899          <idle>-0     (-----) [000] d..1 29484.525164: cpu_idle: state=0 cpu_id=0
42900              ps-13726 (13726) [003] dn.3 29484.525166: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42901              ps-13726 (13726) [003] d..2 29484.525172: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42902          <idle>-0     (-----) [000] d.h3 29484.525188: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42903 shell svc 13722-13723 ( 1007) [003] d..2 29484.525193: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42904          <idle>-0     (-----) [000] dnh4 29484.525195: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42905          <idle>-0     (-----) [001] ...1 29484.525196: cpu_idle: state=4294967295 cpu_id=1
42906          <idle>-0     (-----) [001] d..1 29484.525199: cpu_idle: state=2 cpu_id=1
42907          <idle>-0     (-----) [000] .n.1 29484.525199: cpu_idle: state=4294967295 cpu_id=0
42908          <idle>-0     (-----) [000] d..2 29484.525204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42909   kworker/u17:2-23076 (23076) [000] d..2 29484.525210: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42910   kworker/u17:2-23076 (23076) [000] d..3 29484.525214: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42911   kworker/u17:2-23076 (23076) [000] d..2 29484.525229: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42912     kworker/0:0-13450 (13450) [000] d..2 29484.525233: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42913     kworker/0:0-13450 (13450) [000] d..3 29484.525241: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42914     kworker/0:0-13450 (13450) [000] d..2 29484.525248: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42915            adbd-23485 ( 1007) [000] d..2 29484.525258: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42916          <idle>-0     (-----) [000] d..1 29484.525263: cpu_idle: state=0 cpu_id=0
42917              ps-13726 (13726) [003] d..2 29484.525297: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42918              ps-13726 (13726) [003] dn.3 29484.525305: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42919              ps-13726 (13726) [003] d..2 29484.525310: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42920 shell svc 13722-13723 ( 1007) [003] d..2 29484.525332: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42921          <idle>-0     (-----) [000] d.h3 29484.525368: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42922          <idle>-0     (-----) [000] dnh4 29484.525373: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42923          <idle>-0     (-----) [000] .n.1 29484.525377: cpu_idle: state=4294967295 cpu_id=0
42924          <idle>-0     (-----) [000] d..2 29484.525381: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42925   kworker/u17:2-23076 (23076) [000] d..2 29484.525389: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42926   kworker/u17:2-23076 (23076) [000] d..3 29484.525393: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42927   kworker/u17:2-23076 (23076) [000] d..2 29484.525408: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42928     kworker/0:0-13450 (13450) [000] d..2 29484.525414: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42929     kworker/0:0-13450 (13450) [000] d..3 29484.525422: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42930     kworker/0:0-13450 (13450) [000] d..2 29484.525429: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42931              ps-13726 (13726) [003] d..2 29484.525435: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42932            adbd-23484 ( 1007) [000] d..2 29484.525439: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42933              ps-13726 (13726) [003] dn.3 29484.525443: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42934            adbd-23484 ( 1007) [000] d..3 29484.525445: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42935              ps-13726 (13726) [003] d..2 29484.525448: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42936 shell svc 13722-13723 ( 1007) [003] d..2 29484.525470: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42937            adbd-23484 ( 1007) [000] d..2 29484.525484: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42938            adbd-1007  ( 1007) [000] d..1 29484.525538: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42939            adbd-1007  ( 1007) [000] d..2 29484.525549: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42940            adbd-1007  ( 1007) [000] d..2 29484.525574: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42941              ps-13726 (13726) [003] d..2 29484.525576: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42942              ps-13726 (13726) [003] dn.3 29484.525584: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42943              ps-13726 (13726) [003] d..2 29484.525590: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42944 shell svc 13722-13723 ( 1007) [003] d..2 29484.525611: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42945            adbd-23485 ( 1007) [000] d..2 29484.525614: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42946          <idle>-0     (-----) [000] d..1 29484.525620: cpu_idle: state=0 cpu_id=0
42947          <idle>-0     (-----) [000] d.h3 29484.525644: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42948          <idle>-0     (-----) [000] dnh4 29484.525649: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42949          <idle>-0     (-----) [000] .n.1 29484.525654: cpu_idle: state=4294967295 cpu_id=0
42950          <idle>-0     (-----) [000] d..2 29484.525658: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42951   kworker/u17:2-23076 (23076) [000] d..2 29484.525665: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42952   kworker/u17:2-23076 (23076) [000] d..3 29484.525670: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42953   kworker/u17:2-23076 (23076) [000] d..2 29484.525686: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42954     kworker/0:0-13450 (13450) [000] d..2 29484.525691: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42955     kworker/0:0-13450 (13450) [000] d..3 29484.525699: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42956     kworker/0:0-13450 (13450) [000] d..2 29484.525707: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42957              ps-13726 (13726) [003] d..2 29484.525715: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42958              ps-13726 (13726) [003] dn.3 29484.525723: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42959              ps-13726 (13726) [003] d..2 29484.525729: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42960            adbd-23485 ( 1007) [000] d..2 29484.525746: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42961 shell svc 13722-13723 ( 1007) [003] d..2 29484.525750: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42962          <idle>-0     (-----) [000] d..1 29484.525751: cpu_idle: state=0 cpu_id=0
42963          <idle>-0     (-----) [000] d.h3 29484.525771: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42964          <idle>-0     (-----) [000] dnh4 29484.525776: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42965          <idle>-0     (-----) [000] .n.1 29484.525780: cpu_idle: state=4294967295 cpu_id=0
42966          <idle>-0     (-----) [000] d..2 29484.525785: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42967   kworker/u17:2-23076 (23076) [000] d..2 29484.525791: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42968   kworker/u17:2-23076 (23076) [000] d..3 29484.525796: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42969   kworker/u17:2-23076 (23076) [000] d..2 29484.525812: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42970     kworker/0:0-13450 (13450) [000] d..2 29484.525817: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42971     kworker/0:0-13450 (13450) [000] d..3 29484.525824: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42972     kworker/0:0-13450 (13450) [000] d..2 29484.525832: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
42973            adbd-23485 ( 1007) [000] d..2 29484.525843: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42974          <idle>-0     (-----) [000] d..1 29484.525848: cpu_idle: state=0 cpu_id=0
42975              ps-13726 (13726) [003] d..2 29484.525861: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42976              ps-13726 (13726) [003] dn.3 29484.525870: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42977              ps-13726 (13726) [003] d..2 29484.525875: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42978 shell svc 13722-13723 ( 1007) [003] d..2 29484.525896: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42979          <idle>-0     (-----) [000] d.h3 29484.525966: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42980          <idle>-0     (-----) [000] dnh4 29484.525970: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
42981          <idle>-0     (-----) [000] .n.1 29484.525975: cpu_idle: state=4294967295 cpu_id=0
42982          <idle>-0     (-----) [000] d..2 29484.525979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
42983   kworker/u17:2-23076 (23076) [000] d..2 29484.525987: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42984   kworker/u17:2-23076 (23076) [000] d..3 29484.525991: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
42985   kworker/u17:2-23076 (23076) [000] d..2 29484.526007: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
42986              ps-13726 (13726) [003] d..2 29484.526011: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42987     kworker/0:0-13450 (13450) [000] d..2 29484.526013: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
42988              ps-13726 (13726) [003] dn.3 29484.526020: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42989     kworker/0:0-13450 (13450) [000] d..3 29484.526021: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
42990              ps-13726 (13726) [003] d..2 29484.526025: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
42991     kworker/0:0-13450 (13450) [000] d..2 29484.526030: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
42992            adbd-23484 ( 1007) [000] d..2 29484.526041: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
42993 shell svc 13722-13723 ( 1007) [003] d..2 29484.526047: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
42994            adbd-23484 ( 1007) [000] d..3 29484.526047: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
42995            adbd-23484 ( 1007) [000] d..2 29484.526087: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
42996            adbd-1007  ( 1007) [000] d..1 29484.526141: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
42997              ps-13726 (13726) [003] d..2 29484.526151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
42998            adbd-1007  ( 1007) [000] d..2 29484.526152: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
42999              ps-13726 (13726) [003] dn.3 29484.526160: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43000              ps-13726 (13726) [003] d..2 29484.526165: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43001            adbd-1007  ( 1007) [000] d..2 29484.526177: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43002 shell svc 13722-13723 ( 1007) [003] d..2 29484.526188: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43003            adbd-23485 ( 1007) [000] d..2 29484.526218: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43004          <idle>-0     (-----) [000] d..1 29484.526223: cpu_idle: state=0 cpu_id=0
43005          <idle>-0     (-----) [000] d.h3 29484.526249: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43006          <idle>-0     (-----) [000] dnh4 29484.526257: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43007          <idle>-0     (-----) [000] .n.1 29484.526263: cpu_idle: state=4294967295 cpu_id=0
43008          <idle>-0     (-----) [000] d..2 29484.526267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43009   kworker/u17:2-23076 (23076) [000] d..2 29484.526274: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43010   kworker/u17:2-23076 (23076) [000] d..3 29484.526279: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43011              ps-13726 (13726) [003] d..2 29484.526295: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43012   kworker/u17:2-23076 (23076) [000] d..2 29484.526295: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43013     kworker/0:0-13450 (13450) [000] d..2 29484.526299: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43014              ps-13726 (13726) [003] dn.3 29484.526303: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43015     kworker/0:0-13450 (13450) [000] d..3 29484.526307: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43016              ps-13726 (13726) [003] d..2 29484.526309: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43017     kworker/0:0-13450 (13450) [000] d..2 29484.526315: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43018 shell svc 13722-13723 ( 1007) [003] d..2 29484.526330: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43019            adbd-23485 ( 1007) [000] d..2 29484.526353: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43020          <idle>-0     (-----) [000] d..1 29484.526358: cpu_idle: state=0 cpu_id=0
43021          <idle>-0     (-----) [000] d.h3 29484.526375: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43022          <idle>-0     (-----) [000] dnh4 29484.526380: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43023          <idle>-0     (-----) [000] .n.1 29484.526385: cpu_idle: state=4294967295 cpu_id=0
43024          <idle>-0     (-----) [000] d..2 29484.526389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43025   kworker/u17:2-23076 (23076) [000] d..2 29484.526395: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43026   kworker/u17:2-23076 (23076) [000] d..3 29484.526400: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43027   kworker/u17:2-23076 (23076) [000] d..2 29484.526415: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43028     kworker/0:0-13450 (13450) [000] d..2 29484.526419: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43029     kworker/0:0-13450 (13450) [000] d..3 29484.526427: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43030     kworker/0:0-13450 (13450) [000] d..2 29484.526434: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43031              ps-13726 (13726) [003] d..2 29484.526436: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43032              ps-13726 (13726) [003] dn.3 29484.526444: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43033            adbd-23485 ( 1007) [000] d..2 29484.526446: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43034              ps-13726 (13726) [003] d..2 29484.526450: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43035          <idle>-0     (-----) [000] d..1 29484.526451: cpu_idle: state=0 cpu_id=0
43036 shell svc 13722-13723 ( 1007) [003] d..2 29484.526471: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43037          <idle>-0     (-----) [000] d.h3 29484.526574: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43038          <idle>-0     (-----) [000] dnh4 29484.526579: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43039              ps-13726 (13726) [003] d..2 29484.526581: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43040          <idle>-0     (-----) [000] .n.1 29484.526583: cpu_idle: state=4294967295 cpu_id=0
43041          <idle>-0     (-----) [000] d..2 29484.526587: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43042              ps-13726 (13726) [003] dn.3 29484.526589: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43043   kworker/u17:2-23076 (23076) [000] d..2 29484.526593: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43044              ps-13726 (13726) [003] d..2 29484.526594: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43045   kworker/u17:2-23076 (23076) [000] d..3 29484.526598: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43046   kworker/u17:2-23076 (23076) [000] d..2 29484.526614: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43047 shell svc 13722-13723 ( 1007) [003] d..2 29484.526615: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43048     kworker/0:0-13450 (13450) [000] d..2 29484.526619: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43049     kworker/0:0-13450 (13450) [000] d..3 29484.526627: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43050     kworker/0:0-13450 (13450) [000] d..2 29484.526635: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43051            adbd-23484 ( 1007) [000] d..2 29484.526645: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43052            adbd-23484 ( 1007) [000] d..3 29484.526650: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43053            adbd-23484 ( 1007) [000] d..2 29484.526690: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43054              ps-13726 (13726) [003] d..2 29484.526721: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43055              ps-13726 (13726) [003] dn.3 29484.526729: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43056              ps-13726 (13726) [003] d..2 29484.526734: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43057            adbd-1007  ( 1007) [000] d..1 29484.526743: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43058            adbd-1007  ( 1007) [000] d..2 29484.526755: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43059 shell svc 13722-13723 ( 1007) [003] d..2 29484.526757: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43060            adbd-1007  ( 1007) [000] d..2 29484.526780: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43061            adbd-23485 ( 1007) [000] d..2 29484.526821: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43062          <idle>-0     (-----) [000] d.h4 29484.526837: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43063          <idle>-0     (-----) [000] dnh5 29484.526843: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43064          <idle>-0     (-----) [000] d..2 29484.526850: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43065   kworker/u17:2-23076 (23076) [000] d..2 29484.526856: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43066   kworker/u17:2-23076 (23076) [000] d..3 29484.526861: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43067              ps-13726 (13726) [003] d..2 29484.526862: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43068              ps-13726 (13726) [003] dn.3 29484.526871: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43069              ps-13726 (13726) [003] d..2 29484.526876: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43070   kworker/u17:2-23076 (23076) [000] d..2 29484.526877: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43071     kworker/0:0-13450 (13450) [000] d..2 29484.526883: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43072     kworker/0:0-13450 (13450) [000] d..3 29484.526890: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43073 shell svc 13722-13723 ( 1007) [003] d..2 29484.526898: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43074     kworker/0:0-13450 (13450) [000] d..2 29484.526899: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43075            adbd-23485 ( 1007) [000] d..2 29484.526936: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43076          <idle>-0     (-----) [000] d.h4 29484.526952: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43077          <idle>-0     (-----) [000] dnh5 29484.526958: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43078          <idle>-0     (-----) [000] d..2 29484.526965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43079   kworker/u17:2-23076 (23076) [000] d..2 29484.526971: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43080   kworker/u17:2-23076 (23076) [000] d..3 29484.526975: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43081   kworker/u17:2-23076 (23076) [000] d..2 29484.526991: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43082     kworker/0:0-13450 (13450) [000] d..2 29484.526995: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43083              ps-13726 (13726) [003] d..2 29484.527001: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43084     kworker/0:0-13450 (13450) [000] d..3 29484.527003: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43085     kworker/0:0-13450 (13450) [000] d..2 29484.527010: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43086              ps-13726 (13726) [003] dn.3 29484.527010: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43087              ps-13726 (13726) [003] d..2 29484.527016: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43088            adbd-23485 ( 1007) [000] d..2 29484.527020: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43089          <idle>-0     (-----) [000] d..1 29484.527026: cpu_idle: state=0 cpu_id=0
43090 shell svc 13722-13723 ( 1007) [003] d..2 29484.527037: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43091          <idle>-0     (-----) [000] d.s2 29484.527073: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43092          <idle>-0     (-----) [000] dns3 29484.527081: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43093          <idle>-0     (-----) [000] .n.1 29484.527086: cpu_idle: state=4294967295 cpu_id=0
43094          <idle>-0     (-----) [000] d..2 29484.527091: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
43095     rcu_preempt-7     (    7) [000] d..2 29484.527096: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
43096     rcu_preempt-7     (    7) [000] d..3 29484.527103: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
43097     rcu_preempt-7     (    7) [000] d..2 29484.527104: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
43098     rcu_preempt-7     (    7) [000] d..3 29484.527125: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
43099     rcu_preempt-7     (    7) [000] d.h3 29484.527139: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43100     rcu_preempt-7     (    7) [000] dnh4 29484.527146: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43101     rcu_preempt-7     (    7) [000] d..2 29484.527153: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43102   kworker/u17:2-23076 (23076) [000] d..2 29484.527159: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43103              ps-13726 (13726) [003] d..2 29484.527163: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43104   kworker/u17:2-23076 (23076) [000] d..3 29484.527164: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43105              ps-13726 (13726) [003] dn.3 29484.527172: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43106              ps-13726 (13726) [003] d..2 29484.527177: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43107   kworker/u17:2-23076 (23076) [000] d..2 29484.527180: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
43108     rcu_preempt-7     (    7) [000] d..2 29484.527187: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
43109         rcuop/2-29    (   29) [000] d..2 29484.527190: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
43110 shell svc 13722-13723 ( 1007) [003] d..2 29484.527199: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43111         rcuop/2-29    (   29) [000] d..3 29484.527211: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
43112         rcuop/2-29    (   29) [000] d..2 29484.527217: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
43113         rcuop/4-45    (   45) [000] d..2 29484.527220: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
43114         rcuop/4-45    (   45) [000] d..3 29484.527238: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
43115         rcuop/4-45    (   45) [000] d..2 29484.527244: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
43116         rcuop/3-37    (   37) [000] d..2 29484.527252: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
43117              ps-13726 (13726) [003] d..2 29484.527307: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43118         rcuop/5-53    (   53) [000] d..2 29484.527308: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43119     kworker/0:0-13450 (13450) [000] d..2 29484.527314: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43120              ps-13726 (13726) [003] dn.3 29484.527315: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43121              ps-13726 (13726) [003] d..2 29484.527320: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43122     kworker/0:0-13450 (13450) [000] d..3 29484.527328: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
43123     kworker/0:0-13450 (13450) [000] d..2 29484.527337: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43124 shell svc 13722-13723 ( 1007) [003] d..2 29484.527342: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43125          <idle>-0     (-----) [000] d..1 29484.527344: cpu_idle: state=0 cpu_id=0
43126          <idle>-0     (-----) [001] .n.1 29484.527440: cpu_idle: state=4294967295 cpu_id=1
43127              ps-13726 (13726) [003] d..2 29484.527448: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43128          <idle>-0     (-----) [001] d..2 29484.527454: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
43129              ps-13726 (13726) [003] dn.3 29484.527456: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43130              ps-13726 (13726) [003] d..2 29484.527462: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43131            adbd-23484 ( 1007) [001] d..2 29484.527469: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43132            adbd-23484 ( 1007) [001] d..3 29484.527483: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
43133 shell svc 13722-13723 ( 1007) [003] d..2 29484.527484: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43134            adbd-23484 ( 1007) [001] d..2 29484.527528: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43135              ps-13726 (13726) [003] d..2 29484.527589: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43136            adbd-1007  ( 1007) [001] d..1 29484.527590: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43137              ps-13726 (13726) [003] dn.3 29484.527597: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43138              ps-13726 (13726) [003] d..2 29484.527602: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43139            adbd-1007  ( 1007) [001] d..2 29484.527617: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43140 shell svc 13722-13723 ( 1007) [003] d..2 29484.527624: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43141            adbd-1007  ( 1007) [001] d..2 29484.527644: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43142            adbd-23485 ( 1007) [001] d..2 29484.527694: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43143          <idle>-0     (-----) [001] d..1 29484.527705: cpu_idle: state=0 cpu_id=1
43144          <idle>-0     (-----) [000] d.h3 29484.527709: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43145          <idle>-0     (-----) [000] dnh4 29484.527714: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43146          <idle>-0     (-----) [000] .n.1 29484.527718: cpu_idle: state=4294967295 cpu_id=0
43147          <idle>-0     (-----) [000] d..2 29484.527725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43148              ps-13726 (13726) [003] d..2 29484.527731: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43149   kworker/u17:2-23076 (23076) [000] d..2 29484.527732: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43150   kworker/u17:2-23076 (23076) [000] d..3 29484.527738: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43151              ps-13726 (13726) [003] dn.3 29484.527739: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43152              ps-13726 (13726) [003] d..2 29484.527744: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43153   kworker/u17:2-23076 (23076) [000] d..2 29484.527753: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43154     kworker/0:0-13450 (13450) [000] d..2 29484.527758: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43155 shell svc 13722-13723 ( 1007) [003] d..2 29484.527765: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43156     kworker/0:0-13450 (13450) [000] d..3 29484.527767: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43157          <idle>-0     (-----) [001] .n.1 29484.527772: cpu_idle: state=4294967295 cpu_id=1
43158          <idle>-0     (-----) [001] d..2 29484.527779: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43159     kworker/0:0-13450 (13450) [000] d..2 29484.527782: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43160          <idle>-0     (-----) [000] d..1 29484.527787: cpu_idle: state=0 cpu_id=0
43161            adbd-23485 ( 1007) [001] d..2 29484.527824: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43162          <idle>-0     (-----) [001] d..1 29484.527832: cpu_idle: state=0 cpu_id=1
43163          <idle>-0     (-----) [000] d.h3 29484.527854: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43164          <idle>-0     (-----) [000] dnh4 29484.527859: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43165          <idle>-0     (-----) [000] .n.1 29484.527863: cpu_idle: state=4294967295 cpu_id=0
43166          <idle>-0     (-----) [000] d..2 29484.527869: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43167              ps-13726 (13726) [003] d..2 29484.527870: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43168   kworker/u17:2-23076 (23076) [000] d..2 29484.527876: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43169              ps-13726 (13726) [003] dn.3 29484.527878: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43170   kworker/u17:2-23076 (23076) [000] d..3 29484.527880: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43171              ps-13726 (13726) [003] d..2 29484.527883: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43172   kworker/u17:2-23076 (23076) [000] d..2 29484.527896: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43173     kworker/0:0-13450 (13450) [000] d..2 29484.527901: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43174 shell svc 13722-13723 ( 1007) [003] d..2 29484.527904: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43175     kworker/0:0-13450 (13450) [000] d..3 29484.527910: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43176          <idle>-0     (-----) [001] .n.1 29484.527915: cpu_idle: state=4294967295 cpu_id=1
43177          <idle>-0     (-----) [001] d..2 29484.527921: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43178     kworker/0:0-13450 (13450) [000] d..2 29484.527923: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43179          <idle>-0     (-----) [000] d..1 29484.527929: cpu_idle: state=0 cpu_id=0
43180            adbd-23485 ( 1007) [001] d..2 29484.527939: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43181          <idle>-0     (-----) [001] d..1 29484.527946: cpu_idle: state=0 cpu_id=1
43182              ps-13726 (13726) [003] d..2 29484.528015: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43183          <idle>-0     (-----) [000] d.h3 29484.528022: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43184              ps-13726 (13726) [003] dn.3 29484.528023: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43185          <idle>-0     (-----) [000] dnh4 29484.528027: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43186              ps-13726 (13726) [003] d..2 29484.528028: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43187          <idle>-0     (-----) [000] .n.1 29484.528032: cpu_idle: state=4294967295 cpu_id=0
43188          <idle>-0     (-----) [000] d..2 29484.528038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43189   kworker/u17:2-23076 (23076) [000] d..2 29484.528044: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43190   kworker/u17:2-23076 (23076) [000] d..3 29484.528049: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43191 shell svc 13722-13723 ( 1007) [003] d..2 29484.528049: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43192   kworker/u17:2-23076 (23076) [000] d..2 29484.528064: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43193     kworker/0:0-13450 (13450) [000] d..2 29484.528071: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
43194     kworker/0:0-13450 (13450) [000] d..3 29484.528090: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43195     kworker/0:0-13450 (13450) [000] d..2 29484.528098: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43196            adbd-23484 ( 1007) [000] d..2 29484.528109: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
43197            adbd-23484 ( 1007) [000] d..3 29484.528118: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43198              ps-13726 (13726) [003] d..2 29484.528154: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43199            adbd-23484 ( 1007) [000] d..2 29484.528161: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43200              ps-13726 (13726) [003] dn.3 29484.528162: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43201              ps-13726 (13726) [003] d..2 29484.528167: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43202 shell svc 13722-13723 ( 1007) [003] d..2 29484.528189: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43203            adbd-1007  ( 1007) [000] d..1 29484.528222: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43204            adbd-1007  ( 1007) [000] d..2 29484.528232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43205          <idle>-0     (-----) [001] .n.1 29484.528237: cpu_idle: state=4294967295 cpu_id=1
43206          <idle>-0     (-----) [001] d..2 29484.528243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43207            adbd-1007  ( 1007) [000] d..2 29484.528263: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43208          <idle>-0     (-----) [000] d..1 29484.528270: cpu_idle: state=0 cpu_id=0
43209            adbd-23485 ( 1007) [001] d..2 29484.528288: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43210          <idle>-0     (-----) [001] d..1 29484.528295: cpu_idle: state=0 cpu_id=1
43211              ps-13726 (13726) [003] d..2 29484.528303: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43212              ps-13726 (13726) [003] dn.3 29484.528311: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43213          <idle>-0     (-----) [000] d.h3 29484.528312: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43214              ps-13726 (13726) [003] d..2 29484.528316: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43215          <idle>-0     (-----) [000] dnh4 29484.528321: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43216          <idle>-0     (-----) [000] .n.1 29484.528326: cpu_idle: state=4294967295 cpu_id=0
43217          <idle>-0     (-----) [000] d..2 29484.528334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43218 shell svc 13722-13723 ( 1007) [003] d..2 29484.528338: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43219   kworker/u17:2-23076 (23076) [000] d..2 29484.528342: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43220   kworker/u17:2-23076 (23076) [000] d..3 29484.528347: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43221   kworker/u17:2-23076 (23076) [000] d..2 29484.528364: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43222     kworker/0:0-13450 (13450) [000] d..2 29484.528369: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43223     kworker/0:0-13450 (13450) [000] d..3 29484.528377: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43224          <idle>-0     (-----) [001] .n.1 29484.528382: cpu_idle: state=4294967295 cpu_id=1
43225          <idle>-0     (-----) [001] d..2 29484.528389: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43226     kworker/0:0-13450 (13450) [000] d..2 29484.528391: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43227          <idle>-0     (-----) [000] d..1 29484.528397: cpu_idle: state=0 cpu_id=0
43228            adbd-23485 ( 1007) [001] d..2 29484.528432: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43229          <idle>-0     (-----) [001] d..1 29484.528439: cpu_idle: state=0 cpu_id=1
43230              ps-13726 (13726) [003] d..2 29484.528447: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43231          <idle>-0     (-----) [000] d.h3 29484.528452: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43232              ps-13726 (13726) [003] dn.3 29484.528454: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43233          <idle>-0     (-----) [000] dnh4 29484.528457: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43234              ps-13726 (13726) [003] d..2 29484.528460: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43235          <idle>-0     (-----) [000] .n.1 29484.528462: cpu_idle: state=4294967295 cpu_id=0
43236          <idle>-0     (-----) [000] d..2 29484.528468: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43237   kworker/u17:2-23076 (23076) [000] d..2 29484.528476: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43238   kworker/u17:2-23076 (23076) [000] d..3 29484.528480: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43239 shell svc 13722-13723 ( 1007) [003] d..2 29484.528481: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43240   kworker/u17:2-23076 (23076) [000] d..2 29484.528497: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43241     kworker/0:0-13450 (13450) [000] d..2 29484.528502: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43242     kworker/0:0-13450 (13450) [000] d..3 29484.528511: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43243          <idle>-0     (-----) [001] .n.1 29484.528516: cpu_idle: state=4294967295 cpu_id=1
43244          <idle>-0     (-----) [001] d..2 29484.528522: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43245     kworker/0:0-13450 (13450) [000] d..2 29484.528523: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43246          <idle>-0     (-----) [000] d..1 29484.528530: cpu_idle: state=0 cpu_id=0
43247            adbd-23485 ( 1007) [001] d..2 29484.528537: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43248          <idle>-0     (-----) [001] d..1 29484.528544: cpu_idle: state=0 cpu_id=1
43249              ps-13726 (13726) [003] d..2 29484.528592: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43250              ps-13726 (13726) [003] dn.3 29484.528600: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43251              ps-13726 (13726) [003] d..2 29484.528606: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43252 shell svc 13722-13723 ( 1007) [003] d..2 29484.528627: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43253          <idle>-0     (-----) [000] d.h3 29484.528643: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43254          <idle>-0     (-----) [000] dnh4 29484.528648: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43255          <idle>-0     (-----) [000] .n.1 29484.528652: cpu_idle: state=4294967295 cpu_id=0
43256          <idle>-0     (-----) [000] d..2 29484.528658: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43257   kworker/u17:2-23076 (23076) [000] d..2 29484.528664: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43258   kworker/u17:2-23076 (23076) [000] d..3 29484.528669: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43259   kworker/u17:2-23076 (23076) [000] d..2 29484.528685: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43260     kworker/0:0-13450 (13450) [000] d..2 29484.528691: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43261     kworker/0:0-13450 (13450) [000] d..3 29484.528699: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43262     kworker/0:0-13450 (13450) [000] d..2 29484.528707: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43263            adbd-23484 ( 1007) [000] d..2 29484.528718: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43264            adbd-23484 ( 1007) [000] d..3 29484.528723: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43265              ps-13726 (13726) [003] d..2 29484.528736: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43266              ps-13726 (13726) [003] dn.3 29484.528744: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43267              ps-13726 (13726) [003] d..2 29484.528749: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43268            adbd-23484 ( 1007) [000] d..2 29484.528767: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43269 shell svc 13722-13723 ( 1007) [003] d..2 29484.528771: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43270            adbd-1007  ( 1007) [000] d..1 29484.528822: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43271            adbd-1007  ( 1007) [000] d..2 29484.528834: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43272          <idle>-0     (-----) [001] .n.1 29484.528838: cpu_idle: state=4294967295 cpu_id=1
43273          <idle>-0     (-----) [001] d..2 29484.528844: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43274            adbd-1007  ( 1007) [000] d..2 29484.528864: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43275          <idle>-0     (-----) [000] d..1 29484.528872: cpu_idle: state=0 cpu_id=0
43276              ps-13726 (13726) [003] d..2 29484.528877: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43277              ps-13726 (13726) [003] dn.3 29484.528885: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43278            adbd-23485 ( 1007) [001] d..2 29484.528888: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43279              ps-13726 (13726) [003] d..2 29484.528891: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43280          <idle>-0     (-----) [001] d..1 29484.528895: cpu_idle: state=0 cpu_id=1
43281 shell svc 13722-13723 ( 1007) [003] d..2 29484.528913: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43282          <idle>-0     (-----) [000] d.h3 29484.528913: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43283          <idle>-0     (-----) [000] dnh4 29484.528919: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43284          <idle>-0     (-----) [000] .n.1 29484.528924: cpu_idle: state=4294967295 cpu_id=0
43285          <idle>-0     (-----) [000] d..2 29484.528930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43286   kworker/u17:2-23076 (23076) [000] d..2 29484.528938: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43287   kworker/u17:2-23076 (23076) [000] d..3 29484.528943: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43288   kworker/u17:2-23076 (23076) [000] d..2 29484.528959: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43289     kworker/0:0-13450 (13450) [000] d..2 29484.528965: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43290     kworker/0:0-13450 (13450) [000] d..3 29484.528974: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43291          <idle>-0     (-----) [001] .n.1 29484.528979: cpu_idle: state=4294967295 cpu_id=1
43292          <idle>-0     (-----) [001] d..2 29484.528985: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43293     kworker/0:0-13450 (13450) [000] d..2 29484.528987: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43294          <idle>-0     (-----) [000] d..1 29484.528993: cpu_idle: state=0 cpu_id=0
43295              ps-13726 (13726) [003] d..2 29484.529022: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43296            adbd-23485 ( 1007) [001] d..2 29484.529027: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43297              ps-13726 (13726) [003] dn.3 29484.529030: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43298          <idle>-0     (-----) [001] d..1 29484.529034: cpu_idle: state=0 cpu_id=1
43299              ps-13726 (13726) [003] d..2 29484.529035: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43300          <idle>-0     (-----) [000] d.h3 29484.529040: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43301          <idle>-0     (-----) [000] dnh4 29484.529045: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43302          <idle>-0     (-----) [000] .n.1 29484.529050: cpu_idle: state=4294967295 cpu_id=0
43303          <idle>-0     (-----) [000] d..2 29484.529056: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43304 shell svc 13722-13723 ( 1007) [003] d..2 29484.529057: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43305   kworker/u17:2-23076 (23076) [000] d..2 29484.529063: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43306   kworker/u17:2-23076 (23076) [000] d..3 29484.529068: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43307   kworker/u17:2-23076 (23076) [000] d..2 29484.529084: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43308     kworker/0:0-13450 (13450) [000] d..2 29484.529088: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43309     kworker/0:0-13450 (13450) [000] d..3 29484.529096: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43310          <idle>-0     (-----) [001] .n.1 29484.529101: cpu_idle: state=4294967295 cpu_id=1
43311          <idle>-0     (-----) [001] d..2 29484.529108: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43312     kworker/0:0-13450 (13450) [000] d..2 29484.529109: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43313          <idle>-0     (-----) [000] d..1 29484.529115: cpu_idle: state=0 cpu_id=0
43314            adbd-23485 ( 1007) [001] d..2 29484.529124: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43315          <idle>-0     (-----) [001] d..1 29484.529130: cpu_idle: state=0 cpu_id=1
43316              ps-13726 (13726) [003] d..2 29484.529165: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43317              ps-13726 (13726) [003] dn.3 29484.529174: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43318              ps-13726 (13726) [003] d..2 29484.529179: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43319 shell svc 13722-13723 ( 1007) [003] d..2 29484.529200: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43320          <idle>-0     (-----) [000] d.h3 29484.529217: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43321          <idle>-0     (-----) [000] dnh4 29484.529222: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43322          <idle>-0     (-----) [000] .n.1 29484.529226: cpu_idle: state=4294967295 cpu_id=0
43323          <idle>-0     (-----) [000] d..2 29484.529232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43324   kworker/u17:2-23076 (23076) [000] d..2 29484.529238: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43325   kworker/u17:2-23076 (23076) [000] d..3 29484.529243: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43326   kworker/u17:2-23076 (23076) [000] d..2 29484.529258: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43327     kworker/0:0-13450 (13450) [000] d..2 29484.529264: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43328     kworker/0:0-13450 (13450) [000] d..3 29484.529272: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43329     kworker/0:0-13450 (13450) [000] d..2 29484.529281: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43330            adbd-23484 ( 1007) [000] d..2 29484.529291: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43331            adbd-23484 ( 1007) [000] d..3 29484.529296: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43332              ps-13726 (13726) [003] d..2 29484.529312: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43333              ps-13726 (13726) [003] dn.3 29484.529320: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43334              ps-13726 (13726) [003] d..2 29484.529325: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43335            adbd-23484 ( 1007) [000] d..2 29484.529338: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43336 shell svc 13722-13723 ( 1007) [003] d..2 29484.529347: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43337            adbd-1007  ( 1007) [000] d..1 29484.529394: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43338            adbd-1007  ( 1007) [000] d..2 29484.529405: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43339          <idle>-0     (-----) [001] .n.1 29484.529410: cpu_idle: state=4294967295 cpu_id=1
43340          <idle>-0     (-----) [001] d..2 29484.529415: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43341            adbd-1007  ( 1007) [000] d..2 29484.529436: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43342          <idle>-0     (-----) [000] d..1 29484.529444: cpu_idle: state=0 cpu_id=0
43343            adbd-23485 ( 1007) [001] d..2 29484.529459: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43344              ps-13726 (13726) [003] d..2 29484.529464: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43345          <idle>-0     (-----) [001] d..1 29484.529466: cpu_idle: state=0 cpu_id=1
43346              ps-13726 (13726) [003] dn.3 29484.529472: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43347              ps-13726 (13726) [003] d..2 29484.529478: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43348          <idle>-0     (-----) [000] d.h3 29484.529480: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43349          <idle>-0     (-----) [000] dnh4 29484.529486: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43350          <idle>-0     (-----) [000] .n.1 29484.529491: cpu_idle: state=4294967295 cpu_id=0
43351          <idle>-0     (-----) [000] d..2 29484.529497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43352 shell svc 13722-13723 ( 1007) [003] d..2 29484.529500: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43353   kworker/u17:2-23076 (23076) [000] d..2 29484.529505: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43354   kworker/u17:2-23076 (23076) [000] d..3 29484.529511: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43355   kworker/u17:2-23076 (23076) [000] d..2 29484.529527: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43356     kworker/0:0-13450 (13450) [000] d..2 29484.529532: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43357     kworker/0:0-13450 (13450) [000] d..3 29484.529541: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
43358          <idle>-0     (-----) [001] .n.1 29484.529546: cpu_idle: state=4294967295 cpu_id=1
43359          <idle>-0     (-----) [001] d..2 29484.529552: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
43360     kworker/0:0-13450 (13450) [000] d..2 29484.529554: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43361          <idle>-0     (-----) [000] d..1 29484.529560: cpu_idle: state=0 cpu_id=0
43362            adbd-23485 ( 1007) [001] d..2 29484.529595: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43363          <idle>-0     (-----) [001] d..1 29484.529604: cpu_idle: state=0 cpu_id=1
43364              ps-13726 (13726) [003] d..2 29484.529606: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43365              ps-13726 (13726) [003] dn.3 29484.529614: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43366              ps-13726 (13726) [003] d..2 29484.529619: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43367          <idle>-0     (-----) [000] d.h3 29484.529624: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43368          <idle>-0     (-----) [000] dnh4 29484.529629: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43369          <idle>-0     (-----) [000] .n.1 29484.529633: cpu_idle: state=4294967295 cpu_id=0
43370          <idle>-0     (-----) [000] d..2 29484.529639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43371 shell svc 13722-13723 ( 1007) [003] d..2 29484.529641: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43372   kworker/u17:2-23076 (23076) [000] d..2 29484.529646: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43373   kworker/u17:2-23076 (23076) [000] d..3 29484.529652: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43374   kworker/u17:2-23076 (23076) [000] d..2 29484.529667: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43375     kworker/0:0-13450 (13450) [000] d..2 29484.529672: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
43376     kworker/0:0-13450 (13450) [000] d..3 29484.529692: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43377     kworker/0:0-13450 (13450) [000] d..2 29484.529701: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43378            adbd-23485 ( 1007) [000] d..2 29484.529714: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43379          <idle>-0     (-----) [000] d..1 29484.529721: cpu_idle: state=0 cpu_id=0
43380              ps-13726 (13726) [003] d..2 29484.529748: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43381              ps-13726 (13726) [003] dn.3 29484.529755: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43382              ps-13726 (13726) [003] d..2 29484.529760: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43383          <idle>-0     (-----) [000] d.h3 29484.529765: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43384          <idle>-0     (-----) [000] dnh4 29484.529771: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43385          <idle>-0     (-----) [000] .n.1 29484.529775: cpu_idle: state=4294967295 cpu_id=0
43386 shell svc 13722-13723 ( 1007) [003] d..2 29484.529782: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43387          <idle>-0     (-----) [000] d..2 29484.529782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43388   kworker/u17:2-23076 (23076) [000] d..2 29484.529789: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43389   kworker/u17:2-23076 (23076) [000] d..3 29484.529794: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43390   kworker/u17:2-23076 (23076) [000] d..2 29484.529809: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43391     kworker/0:0-13450 (13450) [000] d..2 29484.529814: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43392     kworker/0:0-13450 (13450) [000] d..3 29484.529823: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43393     kworker/0:0-13450 (13450) [000] d..2 29484.529831: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43394            adbd-23484 ( 1007) [000] d..2 29484.529841: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43395            adbd-23484 ( 1007) [000] d..3 29484.529846: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43396              ps-13726 (13726) [003] d..2 29484.529888: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43397            adbd-23484 ( 1007) [000] d..2 29484.529889: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43398              ps-13726 (13726) [003] dn.3 29484.529896: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43399              ps-13726 (13726) [003] d..2 29484.529901: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43400 shell svc 13722-13723 ( 1007) [003] d..2 29484.529923: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43401            adbd-1007  ( 1007) [000] d..1 29484.529945: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43402            adbd-1007  ( 1007) [000] d..2 29484.529956: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43403            adbd-1007  ( 1007) [000] d..2 29484.529982: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43404            adbd-23485 ( 1007) [000] d..2 29484.530024: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43405              ps-13726 (13726) [003] d..2 29484.530030: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43406              ps-13726 (13726) [003] dn.3 29484.530038: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43407          <idle>-0     (-----) [000] d.h4 29484.530040: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43408              ps-13726 (13726) [003] d..2 29484.530044: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43409          <idle>-0     (-----) [000] dnh5 29484.530047: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43410          <idle>-0     (-----) [000] d..2 29484.530055: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43411   kworker/u17:2-23076 (23076) [000] d..2 29484.530062: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43412 shell svc 13722-13723 ( 1007) [003] d..2 29484.530066: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43413   kworker/u17:2-23076 (23076) [000] d..3 29484.530067: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43414   kworker/u17:2-23076 (23076) [000] d..2 29484.530082: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43415     kworker/0:0-13450 (13450) [000] d..2 29484.530086: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43416     kworker/0:0-13450 (13450) [000] d..3 29484.530094: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43417     kworker/0:0-13450 (13450) [000] d..2 29484.530102: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43418            adbd-23485 ( 1007) [000] d..2 29484.530140: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43419          <idle>-0     (-----) [000] d..1 29484.530148: cpu_idle: state=0 cpu_id=0
43420          <idle>-0     (-----) [000] d.h3 29484.530165: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43421          <idle>-0     (-----) [000] dnh4 29484.530170: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43422              ps-13726 (13726) [003] d..2 29484.530175: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43423          <idle>-0     (-----) [000] .n.1 29484.530175: cpu_idle: state=4294967295 cpu_id=0
43424          <idle>-0     (-----) [000] d..2 29484.530182: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43425              ps-13726 (13726) [003] dn.3 29484.530183: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43426   kworker/u17:2-23076 (23076) [000] d..2 29484.530188: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43427              ps-13726 (13726) [003] d..2 29484.530188: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43428   kworker/u17:2-23076 (23076) [000] d..3 29484.530193: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43429 shell svc 13722-13723 ( 1007) [003] d..2 29484.530210: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43430   kworker/u17:2-23076 (23076) [000] d..2 29484.530211: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43431     kworker/0:0-13450 (13450) [000] d..2 29484.530215: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43432     kworker/0:0-13450 (13450) [000] d..3 29484.530223: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43433     kworker/0:0-13450 (13450) [000] d..2 29484.530230: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43434            adbd-23485 ( 1007) [000] d..2 29484.530241: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43435          <idle>-0     (-----) [000] d..1 29484.530247: cpu_idle: state=0 cpu_id=0
43436              ps-13726 (13726) [003] d..2 29484.530322: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43437              ps-13726 (13726) [003] dn.3 29484.530330: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43438              ps-13726 (13726) [003] d..2 29484.530336: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43439          <idle>-0     (-----) [000] d.h3 29484.530356: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43440 shell svc 13722-13723 ( 1007) [003] d..2 29484.530357: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43441          <idle>-0     (-----) [000] dnh4 29484.530363: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43442          <idle>-0     (-----) [000] .n.1 29484.530368: cpu_idle: state=4294967295 cpu_id=0
43443          <idle>-0     (-----) [000] d..2 29484.530374: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43444   kworker/u17:2-23076 (23076) [000] d..2 29484.530380: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43445   kworker/u17:2-23076 (23076) [000] d..3 29484.530385: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43446              ps-13726 (13726) [003] d.s3 29484.530406: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43447              ps-13726 (13726) [003] d.s4 29484.530418: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43448   kworker/u17:2-23076 (23076) [000] d..2 29484.530424: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43449              ps-13726 (13726) [003] d.s3 29484.530428: sched_waking: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=003
43450              ps-13726 (13726) [003] d.s4 29484.530454: sched_wakeup: comm=kworker/u16:16 pid=25995 prio=120 target_cpu=000
43451              ps-13726 (13726) [003] d..2 29484.530553: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43452              ps-13726 (13726) [003] dn.3 29484.530561: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43453              ps-13726 (13726) [003] d..2 29484.530566: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43454  kworker/u16:10-23868 (23868) [000] d..2 29484.530572: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:16 next_pid=25995 next_prio=120
43455  kworker/u16:16-25995 (25995) [000] d..2 29484.530580: sched_switch: prev_comm=kworker/u16:16 prev_pid=25995 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43456     kworker/0:0-13450 (13450) [000] d..2 29484.530586: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43457     kworker/0:0-13450 (13450) [000] d..3 29484.530602: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
43458 shell svc 13722-13723 ( 1007) [003] d.s2 29484.530604: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43459          <idle>-0     (-----) [001] .n.1 29484.530607: cpu_idle: state=4294967295 cpu_id=1
43460     kworker/0:0-13450 (13450) [000] d..2 29484.530612: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43461          <idle>-0     (-----) [001] d..2 29484.530614: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
43462 shell svc 13722-13723 ( 1007) [003] d.s3 29484.530615: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
43463          <idle>-0     (-----) [000] dn.1 29484.530617: cpu_idle: state=0 cpu_id=0
43464          <idle>-0     (-----) [000] .n.1 29484.530619: cpu_idle: state=4294967295 cpu_id=0
43465 shell svc 13722-13723 ( 1007) [003] d.s3 29484.530620: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43466          <idle>-0     (-----) [000] d..2 29484.530625: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43467            adbd-23484 ( 1007) [001] d..2 29484.530625: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43468 shell svc 13722-13723 ( 1007) [003] d..2 29484.530637: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43469            adbd-23484 ( 1007) [001] d..3 29484.530637: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
43470            adbd-23484 ( 1007) [001] d..2 29484.530688: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43471            adbd-1007  ( 1007) [001] d..1 29484.530743: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43472            adbd-1007  ( 1007) [001] d..2 29484.530754: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43473              ps-13726 (13726) [003] d..2 29484.530760: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43474              ps-13726 (13726) [003] dn.3 29484.530768: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43475              ps-13726 (13726) [003] d..2 29484.530773: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43476            adbd-1007  ( 1007) [001] d..2 29484.530796: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43477  kworker/u16:10-23868 (23868) [000] d..2 29484.530804: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
43478 shell svc 13722-13723 ( 1007) [003] d..2 29484.530806: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43479          <idle>-0     (-----) [003] d.s4 29484.530831: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
43480          <idle>-0     (-----) [003] d.s5 29484.530843: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
43481          <idle>-0     (-----) [003] dns5 29484.530846: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
43482            adbd-23485 ( 1007) [000] d..2 29484.530847: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43483          <idle>-0     (-----) [000] d..1 29484.530853: cpu_idle: state=0 cpu_id=0
43484          <idle>-0     (-----) [003] d..2 29484.530853: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
43485  kworker/u16:10-23868 (23868) [003] d..2 29484.530869: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43486          <idle>-0     (-----) [000] d.h3 29484.530871: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43487          <idle>-0     (-----) [000] dnh4 29484.530877: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43488          <idle>-0     (-----) [003] d..1 29484.530879: cpu_idle: state=0 cpu_id=3
43489          <idle>-0     (-----) [000] .n.1 29484.530882: cpu_idle: state=4294967295 cpu_id=0
43490          <idle>-0     (-----) [000] d..2 29484.530888: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43491   kworker/u17:2-23076 (23076) [000] d..2 29484.530895: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43492   kworker/u17:2-23076 (23076) [000] d..3 29484.530900: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43493   kworker/u17:2-23076 (23076) [000] d..2 29484.530915: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43494     kworker/0:0-13450 (13450) [000] d..2 29484.530920: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43495              ps-13726 (13726) [001] d..2 29484.530920: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=003
43496     kworker/0:0-13450 (13450) [000] d..3 29484.530929: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43497              ps-13726 (13726) [001] dn.3 29484.530934: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43498     kworker/0:0-13450 (13450) [000] d..2 29484.530936: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43499              ps-13726 (13726) [001] d..2 29484.530940: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43500 shell svc 13722-13723 ( 1007) [001] d..2 29484.530965: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43501            adbd-23485 ( 1007) [000] d..2 29484.530975: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43502          <idle>-0     (-----) [000] d..1 29484.530981: cpu_idle: state=0 cpu_id=0
43503          <idle>-0     (-----) [000] d.h3 29484.531000: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43504          <idle>-0     (-----) [000] dnh4 29484.531006: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43505          <idle>-0     (-----) [000] .n.1 29484.531011: cpu_idle: state=4294967295 cpu_id=0
43506          <idle>-0     (-----) [000] d..2 29484.531015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43507   kworker/u17:2-23076 (23076) [000] d..2 29484.531022: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43508   kworker/u17:2-23076 (23076) [000] d..3 29484.531027: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43509   kworker/u17:2-23076 (23076) [000] d..2 29484.531043: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43510     kworker/0:0-13450 (13450) [000] d..2 29484.531047: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43511     kworker/0:0-13450 (13450) [000] d..3 29484.531055: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43512     kworker/0:0-13450 (13450) [000] d..2 29484.531063: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43513            adbd-23485 ( 1007) [000] d..2 29484.531074: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43514              ps-13726 (13726) [001] d..2 29484.531074: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43515          <idle>-0     (-----) [000] d..1 29484.531078: cpu_idle: state=0 cpu_id=0
43516              ps-13726 (13726) [001] dn.3 29484.531082: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43517              ps-13726 (13726) [001] d..2 29484.531088: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43518 shell svc 13722-13723 ( 1007) [001] d..2 29484.531110: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43519          <idle>-0     (-----) [000] d.h3 29484.531146: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43520          <idle>-0     (-----) [000] dnh4 29484.531152: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43521          <idle>-0     (-----) [000] .n.1 29484.531156: cpu_idle: state=4294967295 cpu_id=0
43522          <idle>-0     (-----) [000] d..2 29484.531160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43523   kworker/u17:2-23076 (23076) [000] d..2 29484.531168: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43524   kworker/u17:2-23076 (23076) [000] d..3 29484.531173: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43525   kworker/u17:2-23076 (23076) [000] d..2 29484.531188: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43526     kworker/0:0-13450 (13450) [000] d..2 29484.531194: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
43527     kworker/0:0-13450 (13450) [000] d..3 29484.531214: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43528              ps-13726 (13726) [001] d..2 29484.531218: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43529     kworker/0:0-13450 (13450) [000] d..2 29484.531223: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43530              ps-13726 (13726) [001] dn.3 29484.531227: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43531              ps-13726 (13726) [001] d..2 29484.531232: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43532            adbd-23484 ( 1007) [000] d..2 29484.531234: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
43533            adbd-23484 ( 1007) [000] d..3 29484.531244: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43534 shell svc 13722-13723 ( 1007) [001] d..2 29484.531254: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43535            adbd-23484 ( 1007) [000] d..2 29484.531284: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43536            adbd-1007  ( 1007) [000] d..1 29484.531339: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43537            adbd-1007  ( 1007) [000] d..2 29484.531350: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43538              ps-13726 (13726) [001] d..2 29484.531362: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43539              ps-13726 (13726) [001] dn.3 29484.531370: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43540              ps-13726 (13726) [001] d..2 29484.531375: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43541            adbd-1007  ( 1007) [000] d..2 29484.531377: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43542 shell svc 13722-13723 ( 1007) [001] d..2 29484.531397: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43543            adbd-23485 ( 1007) [000] d..2 29484.531418: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43544          <idle>-0     (-----) [000] d.h3 29484.531436: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43545          <idle>-0     (-----) [000] dnh4 29484.531441: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43546          <idle>-0     (-----) [000] d..2 29484.531449: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43547   kworker/u17:2-23076 (23076) [000] d..2 29484.531455: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43548   kworker/u17:2-23076 (23076) [000] d..3 29484.531460: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43549   kworker/u17:2-23076 (23076) [000] d..2 29484.531475: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43550     kworker/0:0-13450 (13450) [000] d..2 29484.531479: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43551     kworker/0:0-13450 (13450) [000] d..3 29484.531487: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43552     kworker/0:0-13450 (13450) [000] d..2 29484.531495: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43553            adbd-23485 ( 1007) [000] d..2 29484.531532: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43554          <idle>-0     (-----) [000] d..1 29484.531538: cpu_idle: state=0 cpu_id=0
43555          <idle>-0     (-----) [000] d.h3 29484.531566: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43556          <idle>-0     (-----) [000] dnh4 29484.531572: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43557          <idle>-0     (-----) [000] .n.1 29484.531576: cpu_idle: state=4294967295 cpu_id=0
43558          <idle>-0     (-----) [000] d..2 29484.531580: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43559   kworker/u17:2-23076 (23076) [000] d..2 29484.531586: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43560   kworker/u17:2-23076 (23076) [000] d..3 29484.531591: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43561   kworker/u17:2-23076 (23076) [000] d..2 29484.531606: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43562     kworker/0:0-13450 (13450) [000] d..2 29484.531610: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43563     kworker/0:0-13450 (13450) [000] d..3 29484.531618: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43564     kworker/0:0-13450 (13450) [000] d..2 29484.531625: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43565            adbd-23485 ( 1007) [000] d..2 29484.531636: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43566          <idle>-0     (-----) [000] d..1 29484.531641: cpu_idle: state=0 cpu_id=0
43567          <idle>-0     (-----) [000] d.h3 29484.531704: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43568          <idle>-0     (-----) [000] dnh4 29484.531710: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43569          <idle>-0     (-----) [000] .n.1 29484.531714: cpu_idle: state=4294967295 cpu_id=0
43570          <idle>-0     (-----) [000] d..2 29484.531718: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43571   kworker/u17:2-23076 (23076) [000] d..2 29484.531724: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43572   kworker/u17:2-23076 (23076) [000] d..3 29484.531728: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43573   kworker/u17:2-23076 (23076) [000] d..2 29484.531743: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43574     kworker/0:0-13450 (13450) [000] d..2 29484.531748: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43575     kworker/0:0-13450 (13450) [000] d..3 29484.531756: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43576     kworker/0:0-13450 (13450) [000] d..2 29484.531764: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43577            adbd-23484 ( 1007) [000] d..2 29484.531773: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43578            adbd-23484 ( 1007) [000] d..3 29484.531778: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43579            adbd-23484 ( 1007) [000] d..2 29484.531817: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43580            adbd-1007  ( 1007) [000] d..1 29484.531867: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43581            adbd-1007  ( 1007) [000] d..2 29484.531878: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43582            adbd-1007  ( 1007) [000] d..2 29484.531903: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43583            adbd-23485 ( 1007) [000] d..2 29484.531943: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43584          <idle>-0     (-----) [000] d..1 29484.531949: cpu_idle: state=0 cpu_id=0
43585              ps-13726 (13726) [001] d..2 29484.531974: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43586          <idle>-0     (-----) [000] d.h3 29484.531975: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43587          <idle>-0     (-----) [000] dnh4 29484.531982: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43588              ps-13726 (13726) [001] dn.3 29484.531983: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43589          <idle>-0     (-----) [000] .n.1 29484.531987: cpu_idle: state=4294967295 cpu_id=0
43590              ps-13726 (13726) [001] d..2 29484.531988: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43591          <idle>-0     (-----) [003] ...1 29484.531991: cpu_idle: state=4294967295 cpu_id=3
43592          <idle>-0     (-----) [000] d..2 29484.531992: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43593          <idle>-0     (-----) [003] d..1 29484.531994: cpu_idle: state=2 cpu_id=3
43594   kworker/u17:2-23076 (23076) [000] d..2 29484.531998: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43595   kworker/u17:2-23076 (23076) [000] d..3 29484.532003: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43596 shell svc 13722-13723 ( 1007) [001] d..2 29484.532010: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43597   kworker/u17:2-23076 (23076) [000] d..2 29484.532019: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43598     kworker/0:0-13450 (13450) [000] d..2 29484.532023: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43599     kworker/0:0-13450 (13450) [000] d..3 29484.532030: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43600     kworker/0:0-13450 (13450) [000] d..2 29484.532038: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43601            adbd-23485 ( 1007) [000] d..2 29484.532076: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43602          <idle>-0     (-----) [000] d..1 29484.532081: cpu_idle: state=0 cpu_id=0
43603          <idle>-0     (-----) [000] d.h3 29484.532101: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43604          <idle>-0     (-----) [000] dnh4 29484.532106: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43605          <idle>-0     (-----) [000] .n.1 29484.532111: cpu_idle: state=4294967295 cpu_id=0
43606          <idle>-0     (-----) [000] d..2 29484.532115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43607              ps-13726 (13726) [001] d..2 29484.532116: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43608   kworker/u17:2-23076 (23076) [000] d..2 29484.532121: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43609              ps-13726 (13726) [001] dn.3 29484.532124: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43610   kworker/u17:2-23076 (23076) [000] d..3 29484.532126: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43611              ps-13726 (13726) [001] d..2 29484.532130: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43612   kworker/u17:2-23076 (23076) [000] d..2 29484.532142: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43613     kworker/0:0-13450 (13450) [000] d..2 29484.532147: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43614 shell svc 13722-13723 ( 1007) [001] d..2 29484.532152: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43615     kworker/0:0-13450 (13450) [000] d..3 29484.532155: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43616     kworker/0:0-13450 (13450) [000] d..2 29484.532162: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43617            adbd-23485 ( 1007) [000] d..2 29484.532173: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43618          <idle>-0     (-----) [000] d..1 29484.532178: cpu_idle: state=0 cpu_id=0
43619          <idle>-0     (-----) [000] d.h3 29484.532232: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43620          <idle>-0     (-----) [000] dnh4 29484.532237: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43621          <idle>-0     (-----) [000] .n.1 29484.532241: cpu_idle: state=4294967295 cpu_id=0
43622          <idle>-0     (-----) [000] d..2 29484.532245: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43623   kworker/u17:2-23076 (23076) [000] d..2 29484.532252: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43624   kworker/u17:2-23076 (23076) [000] d..3 29484.532257: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43625              ps-13726 (13726) [001] d..2 29484.532259: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43626              ps-13726 (13726) [001] dn.3 29484.532267: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43627              ps-13726 (13726) [001] d..2 29484.532273: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43628   kworker/u17:2-23076 (23076) [000] d..2 29484.532274: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43629     kworker/0:0-13450 (13450) [000] d..2 29484.532280: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43630     kworker/0:0-13450 (13450) [000] d..3 29484.532288: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43631 shell svc 13722-13723 ( 1007) [001] d..2 29484.532294: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43632     kworker/0:0-13450 (13450) [000] d..2 29484.532295: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43633            adbd-23484 ( 1007) [000] d..2 29484.532306: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43634            adbd-23484 ( 1007) [000] d..3 29484.532312: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43635            adbd-23484 ( 1007) [000] d..2 29484.532353: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43636            adbd-1007  ( 1007) [000] d..1 29484.532407: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43637              ps-13726 (13726) [001] d..2 29484.532409: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43638              ps-13726 (13726) [001] dn.3 29484.532417: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43639            adbd-1007  ( 1007) [000] d..2 29484.532419: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43640              ps-13726 (13726) [001] d..2 29484.532423: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43641            adbd-1007  ( 1007) [000] d..2 29484.532446: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43642 shell svc 13722-13723 ( 1007) [001] d..2 29484.532447: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43643            adbd-23485 ( 1007) [000] d..2 29484.532487: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43644          <idle>-0     (-----) [000] d..1 29484.532494: cpu_idle: state=0 cpu_id=0
43645          <idle>-0     (-----) [000] d.h3 29484.532519: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43646          <idle>-0     (-----) [000] dnh4 29484.532527: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43647          <idle>-0     (-----) [000] .n.1 29484.532533: cpu_idle: state=4294967295 cpu_id=0
43648          <idle>-0     (-----) [000] d..2 29484.532537: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43649   kworker/u17:2-23076 (23076) [000] d..2 29484.532544: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43650   kworker/u17:2-23076 (23076) [000] d..3 29484.532549: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43651              ps-13726 (13726) [001] d..2 29484.532554: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43652              ps-13726 (13726) [001] dn.3 29484.532563: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43653   kworker/u17:2-23076 (23076) [000] d..2 29484.532565: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43654              ps-13726 (13726) [001] d..2 29484.532568: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43655     kworker/0:0-13450 (13450) [000] d..2 29484.532570: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43656     kworker/0:0-13450 (13450) [000] d..3 29484.532578: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43657     kworker/0:0-13450 (13450) [000] d..2 29484.532586: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43658 shell svc 13722-13723 ( 1007) [001] d..2 29484.532590: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43659            adbd-23485 ( 1007) [000] d..2 29484.532625: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43660          <idle>-0     (-----) [000] d.h3 29484.532642: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43661          <idle>-0     (-----) [000] dnh4 29484.532647: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43662          <idle>-0     (-----) [000] d..2 29484.532655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43663   kworker/u17:2-23076 (23076) [000] d..2 29484.532661: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43664   kworker/u17:2-23076 (23076) [000] d..3 29484.532665: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43665   kworker/u17:2-23076 (23076) [000] d..2 29484.532681: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43666     kworker/0:0-13450 (13450) [000] d..2 29484.532686: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43667     kworker/0:0-13450 (13450) [000] d..3 29484.532694: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43668              ps-13726 (13726) [001] d..2 29484.532698: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43669     kworker/0:0-13450 (13450) [000] d..2 29484.532703: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43670              ps-13726 (13726) [001] dn.3 29484.532706: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43671              ps-13726 (13726) [001] d..2 29484.532712: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43672            adbd-23485 ( 1007) [000] d..2 29484.532714: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43673          <idle>-0     (-----) [000] d..1 29484.532720: cpu_idle: state=0 cpu_id=0
43674 shell svc 13722-13723 ( 1007) [001] d..2 29484.532733: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43675          <idle>-0     (-----) [000] d.h3 29484.532781: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43676          <idle>-0     (-----) [000] dnh4 29484.532787: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43677          <idle>-0     (-----) [000] .n.1 29484.532794: cpu_idle: state=4294967295 cpu_id=0
43678          <idle>-0     (-----) [000] d..2 29484.532799: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43679   kworker/u17:2-23076 (23076) [000] d..2 29484.532805: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43680   kworker/u17:2-23076 (23076) [000] d..3 29484.532810: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43681   kworker/u17:2-23076 (23076) [000] d..2 29484.532826: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43682     kworker/0:0-13450 (13450) [000] d..2 29484.532831: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43683     kworker/0:0-13450 (13450) [000] d..3 29484.532839: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43684              ps-13726 (13726) [001] d..2 29484.532845: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43685     kworker/0:0-13450 (13450) [000] d..2 29484.532847: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43686              ps-13726 (13726) [001] dn.3 29484.532853: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43687            adbd-23484 ( 1007) [000] d..2 29484.532857: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43688              ps-13726 (13726) [001] d..2 29484.532859: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43689            adbd-23484 ( 1007) [000] d..3 29484.532863: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43690 shell svc 13722-13723 ( 1007) [001] d..2 29484.532881: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43691            adbd-23484 ( 1007) [000] d..2 29484.532902: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43692            adbd-1007  ( 1007) [000] d..1 29484.532957: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43693            adbd-1007  ( 1007) [000] d..2 29484.532968: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43694              ps-13726 (13726) [001] d..2 29484.532990: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43695            adbd-1007  ( 1007) [000] d..2 29484.532993: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43696              ps-13726 (13726) [001] dn.3 29484.532999: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43697              ps-13726 (13726) [001] d..2 29484.533005: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43698 shell svc 13722-13723 ( 1007) [001] d..2 29484.533027: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43699            adbd-23485 ( 1007) [000] d..2 29484.533035: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43700          <idle>-0     (-----) [000] d..1 29484.533041: cpu_idle: state=0 cpu_id=0
43701          <idle>-0     (-----) [000] d.h3 29484.533061: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43702          <idle>-0     (-----) [000] dnh4 29484.533067: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43703          <idle>-0     (-----) [000] .n.1 29484.533071: cpu_idle: state=4294967295 cpu_id=0
43704          <idle>-0     (-----) [000] d..2 29484.533076: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43705   kworker/u17:2-23076 (23076) [000] d..2 29484.533084: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43706   kworker/u17:2-23076 (23076) [000] d..3 29484.533089: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43707   kworker/u17:2-23076 (23076) [000] d..2 29484.533104: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43708     kworker/0:0-13450 (13450) [000] d..2 29484.533109: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43709     kworker/0:0-13450 (13450) [000] d..3 29484.533117: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43710     kworker/0:0-13450 (13450) [000] d..2 29484.533124: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43711              ps-13726 (13726) [001] d..2 29484.533135: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43712              ps-13726 (13726) [001] dn.3 29484.533143: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43713              ps-13726 (13726) [001] d..2 29484.533149: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43714            adbd-23485 ( 1007) [000] d..2 29484.533163: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43715          <idle>-0     (-----) [000] d..1 29484.533169: cpu_idle: state=0 cpu_id=0
43716 shell svc 13722-13723 ( 1007) [001] d..2 29484.533171: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43717          <idle>-0     (-----) [000] d.h3 29484.533188: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43718          <idle>-0     (-----) [000] dnh4 29484.533193: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43719          <idle>-0     (-----) [000] .n.1 29484.533197: cpu_idle: state=4294967295 cpu_id=0
43720          <idle>-0     (-----) [000] d..2 29484.533202: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43721   kworker/u17:2-23076 (23076) [000] d..2 29484.533208: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43722   kworker/u17:2-23076 (23076) [000] d..3 29484.533213: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43723   kworker/u17:2-23076 (23076) [000] d..2 29484.533228: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43724     kworker/0:0-13450 (13450) [000] d..2 29484.533233: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43725     kworker/0:0-13450 (13450) [000] d..3 29484.533241: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43726     kworker/0:0-13450 (13450) [000] d..2 29484.533248: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43727            adbd-23485 ( 1007) [000] d..2 29484.533259: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43728          <idle>-0     (-----) [000] d..1 29484.533263: cpu_idle: state=0 cpu_id=0
43729              ps-13726 (13726) [001] d..2 29484.533278: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43730              ps-13726 (13726) [001] dn.3 29484.533287: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43731              ps-13726 (13726) [001] d..2 29484.533293: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43732 shell svc 13722-13723 ( 1007) [001] d..2 29484.533314: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43733          <idle>-0     (-----) [000] d.h3 29484.533370: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43734          <idle>-0     (-----) [000] dnh4 29484.533375: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43735          <idle>-0     (-----) [000] .n.1 29484.533380: cpu_idle: state=4294967295 cpu_id=0
43736          <idle>-0     (-----) [000] d..2 29484.533384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43737   kworker/u17:2-23076 (23076) [000] d..2 29484.533390: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43738   kworker/u17:2-23076 (23076) [000] d..3 29484.533395: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43739   kworker/u17:2-23076 (23076) [000] d..2 29484.533411: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43740     kworker/0:0-13450 (13450) [000] d..2 29484.533416: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43741              ps-13726 (13726) [001] d..2 29484.533424: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43742     kworker/0:0-13450 (13450) [000] d..3 29484.533424: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43743     kworker/0:0-13450 (13450) [000] d..2 29484.533432: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43744              ps-13726 (13726) [001] dn.3 29484.533432: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43745              ps-13726 (13726) [001] d..2 29484.533438: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43746            adbd-23484 ( 1007) [000] d..2 29484.533442: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43747            adbd-23484 ( 1007) [000] d..3 29484.533447: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43748 shell svc 13722-13723 ( 1007) [001] d..2 29484.533460: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43749            adbd-23484 ( 1007) [000] d..2 29484.533489: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43750            adbd-1007  ( 1007) [000] d..1 29484.533543: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43751            adbd-1007  ( 1007) [000] d..2 29484.533554: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43752              ps-13726 (13726) [001] d..2 29484.533573: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43753            adbd-1007  ( 1007) [000] d..2 29484.533580: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43754              ps-13726 (13726) [001] dn.3 29484.533582: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43755              ps-13726 (13726) [001] d..2 29484.533589: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43756 shell svc 13722-13723 ( 1007) [001] d..2 29484.533611: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43757            adbd-23485 ( 1007) [000] d..2 29484.533620: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43758          <idle>-0     (-----) [000] d..1 29484.533626: cpu_idle: state=0 cpu_id=0
43759          <idle>-0     (-----) [000] d.h3 29484.533646: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43760          <idle>-0     (-----) [000] dnh4 29484.533652: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43761          <idle>-0     (-----) [000] .n.1 29484.533657: cpu_idle: state=4294967295 cpu_id=0
43762          <idle>-0     (-----) [000] d..2 29484.533662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43763   kworker/u17:2-23076 (23076) [000] d..2 29484.533668: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43764   kworker/u17:2-23076 (23076) [000] d..3 29484.533674: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43765   kworker/u17:2-23076 (23076) [000] d..2 29484.533689: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43766     kworker/0:0-13450 (13450) [000] d..2 29484.533694: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43767     kworker/0:0-13450 (13450) [000] d..3 29484.533702: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43768     kworker/0:0-13450 (13450) [000] d..2 29484.533709: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43769              ps-13726 (13726) [001] d..2 29484.533718: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43770              ps-13726 (13726) [001] dn.3 29484.533727: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43771            adbd-23485 ( 1007) [000] d.s1 29484.533736: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43772            adbd-23485 ( 1007) [000] dns2 29484.533746: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43773            adbd-23485 ( 1007) [000] d..2 29484.533754: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
43774              ps-13726 (13726) [001] d..2 29484.533758: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43775     rcu_preempt-7     (    7) [000] d..2 29484.533763: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43776 shell svc 13722-13723 ( 1007) [001] d..2 29484.533781: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43777            adbd-23485 ( 1007) [000] d..2 29484.533794: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43778          <idle>-0     (-----) [000] d.h3 29484.533810: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43779          <idle>-0     (-----) [000] dnh4 29484.533816: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43780          <idle>-0     (-----) [000] d..2 29484.533823: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43781   kworker/u17:2-23076 (23076) [000] d..2 29484.533829: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43782   kworker/u17:2-23076 (23076) [000] d..3 29484.533833: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43783   kworker/u17:2-23076 (23076) [000] d..2 29484.533849: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43784     kworker/0:0-13450 (13450) [000] d..2 29484.533853: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43785     kworker/0:0-13450 (13450) [000] d..3 29484.533860: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43786     kworker/0:0-13450 (13450) [000] d..2 29484.533868: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43787            adbd-23485 ( 1007) [000] d..2 29484.533880: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43788              ps-13726 (13726) [001] d..2 29484.533888: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43789          <idle>-0     (-----) [000] d..1 29484.533888: cpu_idle: state=0 cpu_id=0
43790              ps-13726 (13726) [001] dn.3 29484.533896: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43791              ps-13726 (13726) [001] d..2 29484.533902: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43792          <idle>-0     (-----) [002] ...1 29484.533903: cpu_idle: state=4294967295 cpu_id=2
43793          <idle>-0     (-----) [002] d..1 29484.533910: cpu_idle: state=2 cpu_id=2
43794 shell svc 13722-13723 ( 1007) [001] d..2 29484.533924: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43795          <idle>-0     (-----) [000] d.h3 29484.533975: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43796          <idle>-0     (-----) [000] dnh4 29484.533981: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43797          <idle>-0     (-----) [000] .n.1 29484.533985: cpu_idle: state=4294967295 cpu_id=0
43798          <idle>-0     (-----) [000] d..2 29484.533991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43799   kworker/u17:2-23076 (23076) [000] d..2 29484.533997: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43800   kworker/u17:2-23076 (23076) [000] d..3 29484.534002: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43801   kworker/u17:2-23076 (23076) [000] d..2 29484.534018: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43802     kworker/0:0-13450 (13450) [000] d..2 29484.534024: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43803              ps-13726 (13726) [001] d..2 29484.534029: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43804     kworker/0:0-13450 (13450) [000] d..3 29484.534032: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43805              ps-13726 (13726) [001] dn.3 29484.534038: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43806     kworker/0:0-13450 (13450) [000] d..2 29484.534041: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43807              ps-13726 (13726) [001] d..2 29484.534043: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43808            adbd-23484 ( 1007) [000] d..2 29484.534051: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43809            adbd-23484 ( 1007) [000] d..3 29484.534057: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43810 shell svc 13722-13723 ( 1007) [001] d..2 29484.534065: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43811            adbd-23484 ( 1007) [000] d..2 29484.534096: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43812            adbd-1007  ( 1007) [000] d..1 29484.534152: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43813            adbd-1007  ( 1007) [000] d..2 29484.534163: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43814              ps-13726 (13726) [001] d..2 29484.534172: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43815              ps-13726 (13726) [001] dn.3 29484.534181: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43816              ps-13726 (13726) [001] d..2 29484.534186: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43817            adbd-1007  ( 1007) [000] d..2 29484.534189: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43818 shell svc 13722-13723 ( 1007) [001] d..2 29484.534209: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43819            adbd-23485 ( 1007) [000] d..2 29484.534230: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43820          <idle>-0     (-----) [000] d.h3 29484.534247: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43821          <idle>-0     (-----) [000] dnh4 29484.534252: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43822          <idle>-0     (-----) [000] d..2 29484.534260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43823   kworker/u17:2-23076 (23076) [000] d..2 29484.534268: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43824   kworker/u17:2-23076 (23076) [000] d..3 29484.534274: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43825   kworker/u17:2-23076 (23076) [000] d..2 29484.534289: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43826     kworker/0:0-13450 (13450) [000] d..2 29484.534295: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43827     kworker/0:0-13450 (13450) [000] d..3 29484.534303: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43828     kworker/0:0-13450 (13450) [000] d..2 29484.534312: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43829              ps-13726 (13726) [001] d..2 29484.534316: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43830              ps-13726 (13726) [001] dn.3 29484.534324: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43831              ps-13726 (13726) [001] d..2 29484.534329: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43832 shell svc 13722-13723 ( 1007) [001] d..2 29484.534351: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43833            adbd-23485 ( 1007) [000] d..2 29484.534356: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43834          <idle>-0     (-----) [000] d.h4 29484.534372: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43835          <idle>-0     (-----) [000] dnh5 29484.534378: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43836          <idle>-0     (-----) [000] d..2 29484.534384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43837   kworker/u17:2-23076 (23076) [000] d..2 29484.534390: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43838   kworker/u17:2-23076 (23076) [000] d..3 29484.534395: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43839   kworker/u17:2-23076 (23076) [000] d..2 29484.534410: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43840     kworker/0:0-13450 (13450) [000] d..2 29484.534415: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43841     kworker/0:0-13450 (13450) [000] d..3 29484.534422: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43842     kworker/0:0-13450 (13450) [000] d..2 29484.534429: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43843            adbd-23485 ( 1007) [000] d..2 29484.534440: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43844          <idle>-0     (-----) [000] d..1 29484.534449: cpu_idle: state=0 cpu_id=0
43845              ps-13726 (13726) [001] d..2 29484.534465: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43846              ps-13726 (13726) [001] dn.3 29484.534474: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43847              ps-13726 (13726) [001] d..2 29484.534480: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43848 shell svc 13722-13723 ( 1007) [001] d..2 29484.534502: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43849          <idle>-0     (-----) [000] d.h3 29484.534566: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43850          <idle>-0     (-----) [000] dnh4 29484.534574: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43851          <idle>-0     (-----) [000] .n.1 29484.534579: cpu_idle: state=4294967295 cpu_id=0
43852          <idle>-0     (-----) [000] d..2 29484.534585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43853   kworker/u17:2-23076 (23076) [000] d..2 29484.534591: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43854   kworker/u17:2-23076 (23076) [000] d..3 29484.534596: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43855              ps-13726 (13726) [001] d..2 29484.534611: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43856   kworker/u17:2-23076 (23076) [000] d..2 29484.534611: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43857     kworker/0:0-13450 (13450) [000] d..2 29484.534617: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43858              ps-13726 (13726) [001] dn.3 29484.534619: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43859     kworker/0:0-13450 (13450) [000] d..3 29484.534625: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43860              ps-13726 (13726) [001] d..2 29484.534625: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43861     kworker/0:0-13450 (13450) [000] d..2 29484.534633: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43862            adbd-23484 ( 1007) [000] d..2 29484.534644: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43863 shell svc 13722-13723 ( 1007) [001] d..2 29484.534647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43864            adbd-23484 ( 1007) [000] d..3 29484.534650: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43865            adbd-23484 ( 1007) [000] d..2 29484.534689: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43866            adbd-1007  ( 1007) [000] d..1 29484.534748: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43867            adbd-1007  ( 1007) [000] d..2 29484.534759: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43868              ps-13726 (13726) [001] d..2 29484.534767: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43869              ps-13726 (13726) [001] dn.3 29484.534776: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43870              ps-13726 (13726) [001] d..2 29484.534782: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43871            adbd-1007  ( 1007) [000] d..2 29484.534785: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43872 shell svc 13722-13723 ( 1007) [001] d..2 29484.534804: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43873            adbd-23485 ( 1007) [000] d..2 29484.534825: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43874          <idle>-0     (-----) [000] d..1 29484.534832: cpu_idle: state=0 cpu_id=0
43875          <idle>-0     (-----) [000] d.h3 29484.534853: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43876          <idle>-0     (-----) [000] dnh4 29484.534859: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43877          <idle>-0     (-----) [000] .n.1 29484.534863: cpu_idle: state=4294967295 cpu_id=0
43878          <idle>-0     (-----) [000] d..2 29484.534869: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43879   kworker/u17:2-23076 (23076) [000] d..2 29484.534876: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43880   kworker/u17:2-23076 (23076) [000] d..3 29484.534881: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43881   kworker/u17:2-23076 (23076) [000] d..2 29484.534896: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43882     kworker/0:0-13450 (13450) [000] d..2 29484.534901: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43883     kworker/0:0-13450 (13450) [000] d..3 29484.534909: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43884              ps-13726 (13726) [001] d..2 29484.534911: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43885     kworker/0:0-13450 (13450) [000] d..2 29484.534917: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43886              ps-13726 (13726) [001] dn.3 29484.534920: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43887              ps-13726 (13726) [001] d..2 29484.534925: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43888 shell svc 13722-13723 ( 1007) [001] d..2 29484.534947: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43889            adbd-23485 ( 1007) [000] d..2 29484.534956: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43890          <idle>-0     (-----) [000] d..1 29484.534963: cpu_idle: state=0 cpu_id=0
43891          <idle>-0     (-----) [000] d.h3 29484.534980: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43892          <idle>-0     (-----) [000] dnh4 29484.534985: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43893          <idle>-0     (-----) [000] .n.1 29484.534990: cpu_idle: state=4294967295 cpu_id=0
43894          <idle>-0     (-----) [000] d..2 29484.534995: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43895   kworker/u17:2-23076 (23076) [000] d..2 29484.535002: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43896   kworker/u17:2-23076 (23076) [000] d..3 29484.535007: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43897   kworker/u17:2-23076 (23076) [000] d..2 29484.535022: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43898     kworker/0:0-13450 (13450) [000] d..2 29484.535027: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43899     kworker/0:0-13450 (13450) [000] d..3 29484.535035: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43900     kworker/0:0-13450 (13450) [000] d..2 29484.535042: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43901            adbd-23485 ( 1007) [000] d..2 29484.535053: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43902              ps-13726 (13726) [001] d..2 29484.535056: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43903          <idle>-0     (-----) [000] d..1 29484.535059: cpu_idle: state=0 cpu_id=0
43904              ps-13726 (13726) [001] dn.3 29484.535065: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43905              ps-13726 (13726) [001] d..2 29484.535071: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43906 shell svc 13722-13723 ( 1007) [001] d..2 29484.535092: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43907          <idle>-0     (-----) [000] d.h3 29484.535168: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43908          <idle>-0     (-----) [000] dnh4 29484.535174: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43909          <idle>-0     (-----) [000] .n.1 29484.535178: cpu_idle: state=4294967295 cpu_id=0
43910          <idle>-0     (-----) [000] d..2 29484.535184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43911   kworker/u17:2-23076 (23076) [000] d..2 29484.535190: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43912   kworker/u17:2-23076 (23076) [000] d..3 29484.535195: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43913              ps-13726 (13726) [001] d..2 29484.535204: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43914   kworker/u17:2-23076 (23076) [000] d..2 29484.535212: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43915              ps-13726 (13726) [001] dn.3 29484.535212: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43916     kworker/0:0-13450 (13450) [000] d..2 29484.535217: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43917              ps-13726 (13726) [001] d..2 29484.535218: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43918     kworker/0:0-13450 (13450) [000] d..3 29484.535225: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43919     kworker/0:0-13450 (13450) [000] d..2 29484.535233: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43920 shell svc 13722-13723 ( 1007) [001] d..2 29484.535240: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43921            adbd-23484 ( 1007) [000] d..2 29484.535243: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43922            adbd-23484 ( 1007) [000] d..3 29484.535249: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43923            adbd-23484 ( 1007) [000] d..2 29484.535287: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43924            adbd-1007  ( 1007) [000] d..1 29484.535342: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43925              ps-13726 (13726) [001] d..2 29484.535347: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43926            adbd-1007  ( 1007) [000] d..2 29484.535353: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43927              ps-13726 (13726) [001] dn.3 29484.535356: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43928              ps-13726 (13726) [001] d..2 29484.535362: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43929            adbd-1007  ( 1007) [000] d..2 29484.535379: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43930 shell svc 13722-13723 ( 1007) [001] d..2 29484.535384: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43931            adbd-23485 ( 1007) [000] d..2 29484.535418: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43932          <idle>-0     (-----) [000] d.h3 29484.535438: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43933          <idle>-0     (-----) [000] dnh4 29484.535444: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43934          <idle>-0     (-----) [000] d..2 29484.535453: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43935   kworker/u17:2-23076 (23076) [000] d..2 29484.535459: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43936   kworker/u17:2-23076 (23076) [000] d..3 29484.535464: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43937   kworker/u17:2-23076 (23076) [000] d..2 29484.535480: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43938     kworker/0:0-13450 (13450) [000] d..2 29484.535485: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43939              ps-13726 (13726) [001] d..2 29484.535492: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43940     kworker/0:0-13450 (13450) [000] d..3 29484.535493: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43941     kworker/0:0-13450 (13450) [000] d..2 29484.535501: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43942              ps-13726 (13726) [001] dn.3 29484.535501: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43943              ps-13726 (13726) [001] d..2 29484.535507: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43944 shell svc 13722-13723 ( 1007) [001] d..2 29484.535528: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43945            adbd-23485 ( 1007) [000] d..2 29484.535540: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43946          <idle>-0     (-----) [000] d..1 29484.535547: cpu_idle: state=0 cpu_id=0
43947          <idle>-0     (-----) [000] d.h3 29484.535566: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43948          <idle>-0     (-----) [000] dnh4 29484.535571: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43949          <idle>-0     (-----) [000] .n.1 29484.535576: cpu_idle: state=4294967295 cpu_id=0
43950          <idle>-0     (-----) [000] d..2 29484.535582: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43951   kworker/u17:2-23076 (23076) [000] d..2 29484.535588: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43952   kworker/u17:2-23076 (23076) [000] d..3 29484.535593: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43953   kworker/u17:2-23076 (23076) [000] d..2 29484.535608: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43954     kworker/0:0-13450 (13450) [000] d..2 29484.535613: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43955     kworker/0:0-13450 (13450) [000] d..3 29484.535620: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43956     kworker/0:0-13450 (13450) [000] d..2 29484.535628: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43957              ps-13726 (13726) [001] d..2 29484.535639: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43958            adbd-23485 ( 1007) [000] d..2 29484.535639: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43959          <idle>-0     (-----) [000] d..1 29484.535645: cpu_idle: state=0 cpu_id=0
43960              ps-13726 (13726) [001] dn.3 29484.535647: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43961              ps-13726 (13726) [001] d..2 29484.535653: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43962 shell svc 13722-13723 ( 1007) [001] d..2 29484.535675: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43963          <idle>-0     (-----) [000] d.h3 29484.535744: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43964          <idle>-0     (-----) [000] dnh4 29484.535750: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43965          <idle>-0     (-----) [000] .n.1 29484.535754: cpu_idle: state=4294967295 cpu_id=0
43966          <idle>-0     (-----) [000] d..2 29484.535759: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43967   kworker/u17:2-23076 (23076) [000] d..2 29484.535766: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43968   kworker/u17:2-23076 (23076) [000] d..3 29484.535771: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43969              ps-13726 (13726) [001] d..2 29484.535783: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43970   kworker/u17:2-23076 (23076) [000] d..2 29484.535787: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43971              ps-13726 (13726) [001] dn.3 29484.535791: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43972     kworker/0:0-13450 (13450) [000] d..2 29484.535793: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
43973              ps-13726 (13726) [001] d..2 29484.535797: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43974     kworker/0:0-13450 (13450) [000] d..3 29484.535801: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
43975     kworker/0:0-13450 (13450) [000] d..2 29484.535809: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
43976 shell svc 13722-13723 ( 1007) [001] d..2 29484.535819: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43977            adbd-23484 ( 1007) [000] d..2 29484.535819: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
43978            adbd-23484 ( 1007) [000] d..3 29484.535825: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
43979            adbd-23484 ( 1007) [000] d..2 29484.535864: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
43980            adbd-1007  ( 1007) [000] d..1 29484.535920: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43981            adbd-1007  ( 1007) [000] d..2 29484.535932: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43982              ps-13726 (13726) [001] d..2 29484.535934: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43983              ps-13726 (13726) [001] dn.3 29484.535943: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43984              ps-13726 (13726) [001] d..2 29484.535949: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
43985            adbd-1007  ( 1007) [000] d..2 29484.535959: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
43986 shell svc 13722-13723 ( 1007) [001] d..2 29484.535971: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
43987            adbd-23485 ( 1007) [000] d..2 29484.535999: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43988          <idle>-0     (-----) [000] d..1 29484.536006: cpu_idle: state=0 cpu_id=0
43989          <idle>-0     (-----) [000] d.h3 29484.536023: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43990          <idle>-0     (-----) [000] dnh4 29484.536030: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
43991          <idle>-0     (-----) [000] .n.1 29484.536034: cpu_idle: state=4294967295 cpu_id=0
43992          <idle>-0     (-----) [000] d..2 29484.536041: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
43993   kworker/u17:2-23076 (23076) [000] d..2 29484.536048: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43994   kworker/u17:2-23076 (23076) [000] d..3 29484.536053: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
43995   kworker/u17:2-23076 (23076) [000] d..2 29484.536069: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
43996     kworker/0:0-13450 (13450) [000] d..2 29484.536074: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
43997              ps-13726 (13726) [001] d..2 29484.536078: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
43998     kworker/0:0-13450 (13450) [000] d..3 29484.536082: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
43999              ps-13726 (13726) [001] dn.3 29484.536087: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44000     kworker/0:0-13450 (13450) [000] d..2 29484.536089: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
44001              ps-13726 (13726) [001] d..2 29484.536092: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44002 shell svc 13722-13723 ( 1007) [001] d..2 29484.536114: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44003            adbd-23485 ( 1007) [000] d..2 29484.536128: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44004          <idle>-0     (-----) [000] d.h4 29484.536144: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44005          <idle>-0     (-----) [000] dnh5 29484.536149: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44006          <idle>-0     (-----) [000] d..2 29484.536156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44007   kworker/u17:2-23076 (23076) [000] d..2 29484.536162: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44008   kworker/u17:2-23076 (23076) [000] d..3 29484.536166: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44009   kworker/u17:2-23076 (23076) [000] d..2 29484.536182: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44010     kworker/0:0-13450 (13450) [000] d..2 29484.536186: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
44011     kworker/0:0-13450 (13450) [000] d..3 29484.536194: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
44012     kworker/0:0-13450 (13450) [000] d..2 29484.536201: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
44013            adbd-23485 ( 1007) [000] d..2 29484.536213: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44014          <idle>-0     (-----) [000] d..1 29484.536220: cpu_idle: state=0 cpu_id=0
44015              ps-13726 (13726) [001] d..2 29484.536224: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44016              ps-13726 (13726) [001] dn.3 29484.536233: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44017              ps-13726 (13726) [001] d..2 29484.536239: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44018 shell svc 13722-13723 ( 1007) [001] d..2 29484.536261: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44019          <idle>-0     (-----) [000] d.h3 29484.536351: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44020          <idle>-0     (-----) [000] dnh4 29484.536357: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44021          <idle>-0     (-----) [000] .n.1 29484.536361: cpu_idle: state=4294967295 cpu_id=0
44022          <idle>-0     (-----) [000] d..2 29484.536367: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44023              ps-13726 (13726) [001] d..2 29484.536374: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44024   kworker/u17:2-23076 (23076) [000] d..2 29484.536374: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44025   kworker/u17:2-23076 (23076) [000] d..3 29484.536379: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44026              ps-13726 (13726) [001] dn.3 29484.536383: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44027              ps-13726 (13726) [001] d..2 29484.536389: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44028   kworker/u17:2-23076 (23076) [000] d..2 29484.536395: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44029     kworker/0:0-13450 (13450) [000] d..2 29484.536400: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44030     kworker/0:0-13450 (13450) [000] d..3 29484.536408: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44031 shell svc 13722-13723 ( 1007) [001] d..2 29484.536411: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44032     kworker/0:0-13450 (13450) [000] d..2 29484.536416: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44033            adbd-23484 ( 1007) [000] d..2 29484.536427: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44034            adbd-23484 ( 1007) [000] d..3 29484.536432: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44035            adbd-23484 ( 1007) [000] d..2 29484.536471: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44036              ps-13726 (13726) [001] d..2 29484.536519: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44037            adbd-1007  ( 1007) [000] d..1 29484.536526: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
44038              ps-13726 (13726) [001] dn.3 29484.536527: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44039              ps-13726 (13726) [001] d..2 29484.536533: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44040            adbd-1007  ( 1007) [000] d..2 29484.536538: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
44041 shell svc 13722-13723 ( 1007) [001] d..2 29484.536556: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44042            adbd-1007  ( 1007) [000] d..2 29484.536565: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
44043            adbd-23485 ( 1007) [000] d..2 29484.536606: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44044          <idle>-0     (-----) [000] d.h4 29484.536623: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44045          <idle>-0     (-----) [000] dnh5 29484.536631: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44046          <idle>-0     (-----) [000] d..2 29484.536638: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44047   kworker/u17:2-23076 (23076) [000] d..2 29484.536645: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44048   kworker/u17:2-23076 (23076) [000] d..3 29484.536650: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44049              ps-13726 (13726) [001] d..2 29484.536665: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44050   kworker/u17:2-23076 (23076) [000] d..2 29484.536665: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44051     kworker/0:0-13450 (13450) [000] d..2 29484.536670: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
44052              ps-13726 (13726) [001] dn.3 29484.536674: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44053     kworker/0:0-13450 (13450) [000] d..3 29484.536678: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
44054              ps-13726 (13726) [001] d..2 29484.536680: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44055     kworker/0:0-13450 (13450) [000] d..2 29484.536686: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
44056 shell svc 13722-13723 ( 1007) [001] d..2 29484.536702: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44057            adbd-23485 ( 1007) [000] d..2 29484.536724: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44058          <idle>-0     (-----) [000] d..1 29484.536733: cpu_idle: state=0 cpu_id=0
44059          <idle>-0     (-----) [000] d.h3 29484.536749: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44060          <idle>-0     (-----) [000] dnh4 29484.536755: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44061          <idle>-0     (-----) [000] .n.1 29484.536759: cpu_idle: state=4294967295 cpu_id=0
44062          <idle>-0     (-----) [000] d..2 29484.536766: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44063   kworker/u17:2-23076 (23076) [000] d..2 29484.536772: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44064   kworker/u17:2-23076 (23076) [000] d..3 29484.536776: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44065   kworker/u17:2-23076 (23076) [000] d..2 29484.536792: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44066     kworker/0:0-13450 (13450) [000] d..2 29484.536796: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
44067     kworker/0:0-13450 (13450) [000] d..3 29484.536804: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
44068     kworker/0:0-13450 (13450) [000] d..2 29484.536811: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
44069              ps-13726 (13726) [001] d..2 29484.536813: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44070              ps-13726 (13726) [001] dn.3 29484.536821: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44071            adbd-23485 ( 1007) [000] d..2 29484.536823: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44072              ps-13726 (13726) [001] d..2 29484.536827: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44073          <idle>-0     (-----) [000] d..1 29484.536829: cpu_idle: state=0 cpu_id=0
44074 shell svc 13722-13723 ( 1007) [001] d..2 29484.536849: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44075          <idle>-0     (-----) [000] d.h3 29484.536890: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44076          <idle>-0     (-----) [000] dnh4 29484.536895: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44077          <idle>-0     (-----) [000] .n.1 29484.536899: cpu_idle: state=4294967295 cpu_id=0
44078          <idle>-0     (-----) [000] d..2 29484.536905: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44079   kworker/u17:2-23076 (23076) [000] d..2 29484.536913: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44080   kworker/u17:2-23076 (23076) [000] d..3 29484.536918: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44081   kworker/u17:2-23076 (23076) [000] d..2 29484.536933: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44082     kworker/0:0-13450 (13450) [000] d..2 29484.536938: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44083     kworker/0:0-13450 (13450) [000] d..3 29484.536946: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44084     kworker/0:0-13450 (13450) [000] d..2 29484.536954: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44085              ps-13726 (13726) [001] d..2 29484.536959: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44086            adbd-23484 ( 1007) [000] d..2 29484.536965: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44087              ps-13726 (13726) [001] dn.3 29484.536967: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44088            adbd-23484 ( 1007) [000] d..3 29484.536971: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44089              ps-13726 (13726) [001] d..2 29484.536973: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44090 shell svc 13722-13723 ( 1007) [001] d..2 29484.536995: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44091            adbd-23484 ( 1007) [000] d..2 29484.537011: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44092              ps-13726 (13726) [001] d.h2 29484.537076: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
44093              ps-13726 (13726) [001] dnh3 29484.537112: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
44094              ps-13726 (13726) [001] dns2 29484.537118: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44095            adbd-1007  ( 1007) [000] d.H2 29484.537120: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
44096              ps-13726 (13726) [001] dns3 29484.537130: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44097            adbd-1007  ( 1007) [000] dnH3 29484.537135: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
44098              ps-13726 (13726) [001] d..2 29484.537136: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
44099            adbd-1007  ( 1007) [000] d..2 29484.537148: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
44100     rcu_preempt-7     (    7) [000] d..2 29484.537152: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
44101     migration/1-17    (   17) [001] d.h3 29484.537191: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
44102     rcu_preempt-7     (    7) [000] d..3 29484.537191: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
44103     rcu_preempt-7     (    7) [000] d..2 29484.537199: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44104     migration/1-17    (   17) [001] d..2 29484.537209: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
44105            adbd-1007  ( 1007) [000] d..1 29484.537216: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
44106            adbd-1007  ( 1007) [000] d..2 29484.537235: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
44107          <idle>-0     (-----) [003] .n.1 29484.537239: cpu_idle: state=4294967295 cpu_id=3
44108          <idle>-0     (-----) [003] d..2 29484.537249: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44109         rcuop/0-10    (   10) [001] d..2 29484.537252: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44110         sugov:0-559   (  559) [003] d..2 29484.537260: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
44111          <idle>-0     (-----) [001] d..1 29484.537264: cpu_idle: state=0 cpu_id=1
44112            adbd-1007  ( 1007) [000] d..2 29484.537264: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44113          <idle>-0     (-----) [000] d..1 29484.537274: cpu_idle: state=0 cpu_id=0
44114            adbd-23485 ( 1007) [003] d..2 29484.537316: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44115          <idle>-0     (-----) [003] d..1 29484.537324: cpu_idle: state=0 cpu_id=3
44116          <idle>-0     (-----) [000] d.h3 29484.537351: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44117          <idle>-0     (-----) [000] dnh4 29484.537357: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44118          <idle>-0     (-----) [000] .n.1 29484.537362: cpu_idle: state=4294967295 cpu_id=0
44119          <idle>-0     (-----) [000] d..2 29484.537368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44120   kworker/u17:2-23076 (23076) [000] d..2 29484.537377: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44121   kworker/u17:2-23076 (23076) [000] d..3 29484.537383: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44122   kworker/u17:2-23076 (23076) [000] d..2 29484.537399: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44123     kworker/0:0-13450 (13450) [000] d..2 29484.537405: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
44124     kworker/0:0-13450 (13450) [000] d..3 29484.537426: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44125          <idle>-0     (-----) [001] .n.1 29484.537431: cpu_idle: state=4294967295 cpu_id=1
44126     kworker/0:0-13450 (13450) [000] d..2 29484.537434: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44127          <idle>-0     (-----) [001] d..2 29484.537438: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44128          <idle>-0     (-----) [000] d..1 29484.537441: cpu_idle: state=0 cpu_id=0
44129            adbd-23485 ( 1007) [001] d..2 29484.537493: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44130          <idle>-0     (-----) [001] d..1 29484.537500: cpu_idle: state=0 cpu_id=1
44131          <idle>-0     (-----) [000] d.h3 29484.537519: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44132          <idle>-0     (-----) [000] dnh4 29484.537524: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44133          <idle>-0     (-----) [000] .n.1 29484.537528: cpu_idle: state=4294967295 cpu_id=0
44134          <idle>-0     (-----) [000] d..2 29484.537534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44135   kworker/u17:2-23076 (23076) [000] d..2 29484.537541: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44136   kworker/u17:2-23076 (23076) [000] d..3 29484.537546: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44137   kworker/u17:2-23076 (23076) [000] d..2 29484.537561: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44138     kworker/0:0-13450 (13450) [000] d..2 29484.537566: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44139     kworker/0:0-13450 (13450) [000] d..3 29484.537575: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44140          <idle>-0     (-----) [001] .n.1 29484.537580: cpu_idle: state=4294967295 cpu_id=1
44141     kworker/0:0-13450 (13450) [000] d..2 29484.537582: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44142          <idle>-0     (-----) [001] d..2 29484.537586: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44143          <idle>-0     (-----) [000] d..1 29484.537588: cpu_idle: state=0 cpu_id=0
44144            adbd-23485 ( 1007) [001] d..2 29484.537607: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44145          <idle>-0     (-----) [001] d..1 29484.537613: cpu_idle: state=0 cpu_id=1
44146          <idle>-0     (-----) [000] d.h3 29484.537666: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44147          <idle>-0     (-----) [000] dnh4 29484.537670: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44148          <idle>-0     (-----) [000] .n.1 29484.537675: cpu_idle: state=4294967295 cpu_id=0
44149          <idle>-0     (-----) [000] d..2 29484.537680: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44150   kworker/u17:2-23076 (23076) [000] d..2 29484.537687: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44151   kworker/u17:2-23076 (23076) [000] d..3 29484.537693: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44152   kworker/u17:2-23076 (23076) [000] d..2 29484.537707: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44153     kworker/0:0-13450 (13450) [000] d..2 29484.537713: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44154     kworker/0:0-13450 (13450) [000] d..3 29484.537722: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44155     kworker/0:0-13450 (13450) [000] d..2 29484.537729: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44156            adbd-23484 ( 1007) [000] d..2 29484.537739: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44157            adbd-23484 ( 1007) [000] d..3 29484.537744: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44158            adbd-23484 ( 1007) [000] d..2 29484.537783: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44159          <idle>-0     (-----) [005] .n.1 29484.537806: cpu_idle: state=4294967295 cpu_id=5
44160          <idle>-0     (-----) [005] d..2 29484.537815: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=13726 next_prio=120
44161            adbd-1007  ( 1007) [000] d..2 29484.537833: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44162          <idle>-0     (-----) [007] dnh2 29484.537834: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
44163          <idle>-0     (-----) [007] .n.1 29484.537838: cpu_idle: state=4294967295 cpu_id=7
44164          <idle>-0     (-----) [000] d..1 29484.537840: cpu_idle: state=0 cpu_id=0
44165          <idle>-0     (-----) [007] d..2 29484.537843: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44166              ps-13726 (13726) [005] d..2 29484.537852: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
44167         sugov:4-560   (  560) [007] .... 29484.537861: clk_set_rate: perfcl_clk 825600000
44168         sugov:4-560   (  560) [007] .... 29484.537862: clk_set_rate: cpu7_perfcl_clk 2803200000
44169         sugov:4-560   (  560) [007] .... 29484.537867: clk_set_rate: cpu6_perfcl_clk 2803200000
44170              ps-13726 (13726) [005] d..2 29484.537868: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
44171          <idle>-0     (-----) [000] dnh2 29484.537870: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
44172         sugov:4-560   (  560) [007] .... 29484.537871: clk_set_rate: cpu5_perfcl_clk 2803200000
44173          <idle>-0     (-----) [000] .n.1 29484.537874: cpu_idle: state=4294967295 cpu_id=0
44174         sugov:4-560   (  560) [007] .... 29484.537876: clk_set_rate: cpu4_perfcl_clk 825600000
44175          <idle>-0     (-----) [000] d..2 29484.537880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
44176              ps-13726 (13726) [005] dn.3 29484.537880: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44177         sugov:4-560   (  560) [007] .... 29484.537881: cpu_frequency: state=825600 cpu_id=4
44178         rcuop/4-45    (   45) [000] d..2 29484.537904: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44179              ps-13726 (13726) [005] dnh3 29484.537904: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
44180          <idle>-0     (-----) [000] d..1 29484.537908: cpu_idle: state=0 cpu_id=0
44181              ps-13726 (13726) [005] d..2 29484.537921: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44182          <idle>-0     (-----) [003] dnh2 29484.537923: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
44183          <idle>-0     (-----) [003] .n.1 29484.537927: cpu_idle: state=4294967295 cpu_id=3
44184          <idle>-0     (-----) [003] d..2 29484.537932: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
44185         sugov:0-559   (  559) [003] d..2 29484.537950: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44186 shell svc 13722-13723 ( 1007) [005] d..2 29484.537954: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44187          <idle>-0     (-----) [003] d..1 29484.537955: cpu_idle: state=0 cpu_id=3
44188          <idle>-0     (-----) [000] dnh2 29484.537973: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44189          <idle>-0     (-----) [000] .n.1 29484.537977: cpu_idle: state=4294967295 cpu_id=0
44190 shell svc 13722-13723 ( 1007) [005] d..2 29484.537981: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44191          <idle>-0     (-----) [000] d..2 29484.537982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
44192            adbd-1007  ( 1007) [000] d..1 29484.538016: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44193         sugov:4-560   (  560) [007] d..2 29484.538024: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
44194            adbd-1007  ( 1007) [000] d..2 29484.538027: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44195          <idle>-0     (-----) [001] .n.1 29484.538032: cpu_idle: state=4294967295 cpu_id=1
44196          <idle>-0     (-----) [007] d..1 29484.538036: cpu_idle: state=2 cpu_id=7
44197          <idle>-0     (-----) [001] d..2 29484.538038: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44198          <idle>-0     (-----) [003] d.s3 29484.538048: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
44199            adbd-1007  ( 1007) [000] d..2 29484.538054: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44200          <idle>-0     (-----) [000] d..1 29484.538060: cpu_idle: state=0 cpu_id=0
44201          <idle>-0     (-----) [003] ...1 29484.538064: cpu_idle: state=4294967295 cpu_id=3
44202          <idle>-0     (-----) [003] d..1 29484.538066: cpu_idle: state=0 cpu_id=3
44203            adbd-23485 ( 1007) [001] d..2 29484.538082: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44204          <idle>-0     (-----) [001] d..1 29484.538088: cpu_idle: state=0 cpu_id=1
44205          <idle>-0     (-----) [000] d.h3 29484.538106: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44206          <idle>-0     (-----) [000] dnh4 29484.538112: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44207          <idle>-0     (-----) [000] .n.1 29484.538117: cpu_idle: state=4294967295 cpu_id=0
44208              ps-13726 (13726) [005] d..2 29484.538121: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44209          <idle>-0     (-----) [000] d..2 29484.538123: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44210              ps-13726 (13726) [005] dn.3 29484.538129: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44211   kworker/u17:2-23076 (23076) [000] d..2 29484.538130: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44212              ps-13726 (13726) [005] d..2 29484.538134: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44213   kworker/u17:2-23076 (23076) [000] d..3 29484.538136: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44214   kworker/u17:2-23076 (23076) [000] d..2 29484.538151: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44215     kworker/0:0-13450 (13450) [000] d..2 29484.538156: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44216 shell svc 13722-13723 ( 1007) [005] d..2 29484.538158: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44217     kworker/0:0-13450 (13450) [000] d..3 29484.538165: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44218          <idle>-0     (-----) [001] .n.1 29484.538170: cpu_idle: state=4294967295 cpu_id=1
44219     kworker/0:0-13450 (13450) [000] d..2 29484.538173: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44220          <idle>-0     (-----) [001] d..2 29484.538176: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44221          <idle>-0     (-----) [000] d..1 29484.538179: cpu_idle: state=0 cpu_id=0
44222            adbd-23485 ( 1007) [001] d..2 29484.538217: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44223          <idle>-0     (-----) [001] d..1 29484.538223: cpu_idle: state=0 cpu_id=1
44224          <idle>-0     (-----) [000] d.h3 29484.538245: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44225          <idle>-0     (-----) [000] dnh4 29484.538250: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44226          <idle>-0     (-----) [000] .n.1 29484.538254: cpu_idle: state=4294967295 cpu_id=0
44227          <idle>-0     (-----) [000] d..2 29484.538260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44228              ps-13726 (13726) [005] d..2 29484.538266: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44229   kworker/u17:2-23076 (23076) [000] d..2 29484.538266: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44230   kworker/u17:2-23076 (23076) [000] d..3 29484.538271: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44231              ps-13726 (13726) [005] dn.3 29484.538273: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44232              ps-13726 (13726) [005] d..2 29484.538278: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44233   kworker/u17:2-23076 (23076) [000] d..2 29484.538285: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44234     kworker/0:0-13450 (13450) [000] d..2 29484.538290: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44235     kworker/0:0-13450 (13450) [000] d..3 29484.538298: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44236 shell svc 13722-13723 ( 1007) [005] d..2 29484.538300: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44237          <idle>-0     (-----) [001] .n.1 29484.538303: cpu_idle: state=4294967295 cpu_id=1
44238     kworker/0:0-13450 (13450) [000] d..2 29484.538306: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44239          <idle>-0     (-----) [001] d..2 29484.538309: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44240          <idle>-0     (-----) [000] d..1 29484.538311: cpu_idle: state=0 cpu_id=0
44241            adbd-23485 ( 1007) [001] d..2 29484.538324: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44242          <idle>-0     (-----) [001] d..1 29484.538330: cpu_idle: state=0 cpu_id=1
44243          <idle>-0     (-----) [000] d.h3 29484.538391: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44244          <idle>-0     (-----) [000] dnh4 29484.538396: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44245          <idle>-0     (-----) [007] dnh2 29484.538399: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
44246          <idle>-0     (-----) [000] .n.1 29484.538400: cpu_idle: state=4294967295 cpu_id=0
44247              ps-13726 (13726) [005] d..2 29484.538402: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44248          <idle>-0     (-----) [007] .n.1 29484.538405: cpu_idle: state=4294967295 cpu_id=7
44249          <idle>-0     (-----) [000] d..2 29484.538406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44250              ps-13726 (13726) [005] dn.3 29484.538409: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44251   kworker/u17:2-23076 (23076) [000] d..2 29484.538412: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44252          <idle>-0     (-----) [007] d..2 29484.538414: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
44253              ps-13726 (13726) [005] d..2 29484.538414: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44254   kworker/u17:2-23076 (23076) [000] d..3 29484.538417: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44255         sugov:4-560   (  560) [007] .... 29484.538422: cpu_frequency: state=825600 cpu_id=5
44256         sugov:4-560   (  560) [007] .... 29484.538428: cpu_frequency: state=825600 cpu_id=6
44257         sugov:4-560   (  560) [007] .... 29484.538430: cpu_frequency: state=825600 cpu_id=7
44258   kworker/u17:2-23076 (23076) [000] d..2 29484.538432: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44259 shell svc 13722-13723 ( 1007) [005] d..2 29484.538436: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44260     kworker/0:0-13450 (13450) [000] d..2 29484.538437: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44261     kworker/0:0-13450 (13450) [000] d..3 29484.538446: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44262         sugov:4-560   (  560) [007] .... 29484.538447: clk_set_rate: perfcl_clk 1209600000
44263         sugov:4-560   (  560) [007] .... 29484.538449: clk_set_rate: cpu7_perfcl_clk 825600000
44264     kworker/0:0-13450 (13450) [000] d..2 29484.538454: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44265         sugov:4-560   (  560) [007] .... 29484.538454: clk_set_rate: cpu6_perfcl_clk 825600000
44266         sugov:4-560   (  560) [007] .... 29484.538459: clk_set_rate: cpu5_perfcl_clk 825600000
44267         sugov:4-560   (  560) [007] .... 29484.538464: clk_set_rate: cpu4_perfcl_clk 1209600000
44268            adbd-23484 ( 1007) [000] d..2 29484.538466: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44269         sugov:4-560   (  560) [007] .... 29484.538469: cpu_frequency: state=1209600 cpu_id=4
44270            adbd-23484 ( 1007) [000] d..3 29484.538472: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44271         sugov:4-560   (  560) [007] .... 29484.538475: cpu_frequency: state=1209600 cpu_id=5
44272         sugov:4-560   (  560) [007] .... 29484.538478: cpu_frequency: state=1209600 cpu_id=6
44273         sugov:4-560   (  560) [007] .... 29484.538481: cpu_frequency: state=1209600 cpu_id=7
44274         sugov:4-560   (  560) [007] d..2 29484.538497: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
44275          <idle>-0     (-----) [007] d..1 29484.538506: cpu_idle: state=2 cpu_id=7
44276            adbd-23484 ( 1007) [000] d..2 29484.538513: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44277              ps-13726 (13726) [005] d..2 29484.538535: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44278              ps-13726 (13726) [005] dn.3 29484.538540: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44279              ps-13726 (13726) [005] d..2 29484.538543: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44280 shell svc 13722-13723 ( 1007) [005] d..2 29484.538558: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44281            adbd-1007  ( 1007) [000] d..1 29484.538570: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44282            adbd-1007  ( 1007) [000] d..2 29484.538580: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44283          <idle>-0     (-----) [001] .n.1 29484.538585: cpu_idle: state=4294967295 cpu_id=1
44284          <idle>-0     (-----) [001] d..2 29484.538591: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44285            adbd-1007  ( 1007) [000] d..2 29484.538605: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44286          <idle>-0     (-----) [000] d..1 29484.538613: cpu_idle: state=0 cpu_id=0
44287              ps-13726 (13726) [005] d..2 29484.538628: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44288            adbd-23485 ( 1007) [001] d..2 29484.538632: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44289              ps-13726 (13726) [005] dn.3 29484.538633: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44290              ps-13726 (13726) [005] d..2 29484.538636: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44291          <idle>-0     (-----) [001] d..1 29484.538638: cpu_idle: state=0 cpu_id=1
44292          <idle>-0     (-----) [000] d.h3 29484.538646: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44293 shell svc 13722-13723 ( 1007) [005] d..2 29484.538650: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44294          <idle>-0     (-----) [000] dnh4 29484.538654: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44295          <idle>-0     (-----) [000] .n.1 29484.538659: cpu_idle: state=4294967295 cpu_id=0
44296          <idle>-0     (-----) [000] d..2 29484.538665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44297   kworker/u17:2-23076 (23076) [000] d..2 29484.538672: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44298   kworker/u17:2-23076 (23076) [000] d..3 29484.538677: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44299   kworker/u17:2-23076 (23076) [000] d..2 29484.538693: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44300     kworker/0:0-13450 (13450) [000] d..2 29484.538698: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44301     kworker/0:0-13450 (13450) [000] d..3 29484.538707: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44302          <idle>-0     (-----) [001] .n.1 29484.538711: cpu_idle: state=4294967295 cpu_id=1
44303     kworker/0:0-13450 (13450) [000] d..2 29484.538714: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44304          <idle>-0     (-----) [001] d..2 29484.538718: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44305          <idle>-0     (-----) [000] d..1 29484.538720: cpu_idle: state=0 cpu_id=0
44306              ps-13726 (13726) [005] d..2 29484.538721: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44307              ps-13726 (13726) [005] dn.3 29484.538726: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44308              ps-13726 (13726) [005] d..2 29484.538729: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44309 shell svc 13722-13723 ( 1007) [005] d..2 29484.538744: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44310            adbd-23485 ( 1007) [001] d..2 29484.538760: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44311          <idle>-0     (-----) [001] d..1 29484.538766: cpu_idle: state=0 cpu_id=1
44312          <idle>-0     (-----) [000] d.h3 29484.538790: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44313          <idle>-0     (-----) [000] dnh4 29484.538795: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44314          <idle>-0     (-----) [000] .n.1 29484.538799: cpu_idle: state=4294967295 cpu_id=0
44315          <idle>-0     (-----) [000] d..2 29484.538805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44316   kworker/u17:2-23076 (23076) [000] d..2 29484.538811: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44317              ps-13726 (13726) [005] d..2 29484.538814: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44318   kworker/u17:2-23076 (23076) [000] d..3 29484.538815: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44319              ps-13726 (13726) [005] dn.3 29484.538819: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44320              ps-13726 (13726) [005] d..2 29484.538823: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44321   kworker/u17:2-23076 (23076) [000] d..2 29484.538830: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44322     kworker/0:0-13450 (13450) [000] d..2 29484.538835: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44323 shell svc 13722-13723 ( 1007) [005] d..2 29484.538838: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44324     kworker/0:0-13450 (13450) [000] d..3 29484.538844: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44325          <idle>-0     (-----) [001] .n.1 29484.538848: cpu_idle: state=4294967295 cpu_id=1
44326     kworker/0:0-13450 (13450) [000] d..2 29484.538851: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44327          <idle>-0     (-----) [001] d..2 29484.538854: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44328          <idle>-0     (-----) [000] d..1 29484.538856: cpu_idle: state=0 cpu_id=0
44329            adbd-23485 ( 1007) [001] d..2 29484.538870: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44330          <idle>-0     (-----) [001] d..1 29484.538876: cpu_idle: state=0 cpu_id=1
44331              ps-13726 (13726) [005] d..2 29484.538913: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44332              ps-13726 (13726) [005] dn.3 29484.538918: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44333              ps-13726 (13726) [005] d..2 29484.538922: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44334          <idle>-0     (-----) [000] d.h3 29484.538928: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44335          <idle>-0     (-----) [000] dnh4 29484.538933: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44336 shell svc 13722-13723 ( 1007) [005] d..2 29484.538936: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44337          <idle>-0     (-----) [000] .n.1 29484.538937: cpu_idle: state=4294967295 cpu_id=0
44338          <idle>-0     (-----) [000] d..2 29484.538943: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44339   kworker/u17:2-23076 (23076) [000] d..2 29484.538948: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44340   kworker/u17:2-23076 (23076) [000] d..3 29484.538953: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44341   kworker/u17:2-23076 (23076) [000] d..2 29484.538968: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44342     kworker/0:0-13450 (13450) [000] d..2 29484.538974: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44343     kworker/0:0-13450 (13450) [000] d..3 29484.538982: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44344     kworker/0:0-13450 (13450) [000] d..2 29484.538990: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44345            adbd-23484 ( 1007) [000] d..2 29484.539000: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44346            adbd-23484 ( 1007) [000] d..3 29484.539005: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44347              ps-13726 (13726) [005] d..2 29484.539008: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44348              ps-13726 (13726) [005] dn.3 29484.539013: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44349              ps-13726 (13726) [005] d..2 29484.539016: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44350 shell svc 13722-13723 ( 1007) [005] d..2 29484.539031: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44351            adbd-23484 ( 1007) [000] d..2 29484.539045: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44352              ps-13726 (13726) [005] d..2 29484.539102: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44353            adbd-1007  ( 1007) [000] d..1 29484.539103: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44354              ps-13726 (13726) [005] dn.3 29484.539106: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44355              ps-13726 (13726) [005] d..2 29484.539110: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44356            adbd-1007  ( 1007) [000] d..2 29484.539113: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44357          <idle>-0     (-----) [001] .n.1 29484.539117: cpu_idle: state=4294967295 cpu_id=1
44358          <idle>-0     (-----) [001] d..2 29484.539123: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44359 shell svc 13722-13723 ( 1007) [005] d..2 29484.539126: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44360            adbd-1007  ( 1007) [000] d..2 29484.539138: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44361          <idle>-0     (-----) [000] d..1 29484.539145: cpu_idle: state=0 cpu_id=0
44362            adbd-23485 ( 1007) [001] d..2 29484.539164: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44363          <idle>-0     (-----) [001] d..1 29484.539171: cpu_idle: state=0 cpu_id=1
44364          <idle>-0     (-----) [000] d.h3 29484.539187: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44365          <idle>-0     (-----) [000] dnh4 29484.539193: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44366              ps-13726 (13726) [005] d..2 29484.539196: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44367          <idle>-0     (-----) [000] .n.1 29484.539197: cpu_idle: state=4294967295 cpu_id=0
44368              ps-13726 (13726) [005] dn.3 29484.539201: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44369          <idle>-0     (-----) [000] d..2 29484.539204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44370              ps-13726 (13726) [005] d..2 29484.539205: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44371   kworker/u17:2-23076 (23076) [000] d..2 29484.539211: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44372   kworker/u17:2-23076 (23076) [000] d..3 29484.539216: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44373 shell svc 13722-13723 ( 1007) [005] d..2 29484.539219: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44374   kworker/u17:2-23076 (23076) [000] d..2 29484.539232: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44375     kworker/0:0-13450 (13450) [000] d..2 29484.539237: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44376     kworker/0:0-13450 (13450) [000] d..3 29484.539245: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44377          <idle>-0     (-----) [001] .n.1 29484.539250: cpu_idle: state=4294967295 cpu_id=1
44378     kworker/0:0-13450 (13450) [000] d..2 29484.539254: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44379          <idle>-0     (-----) [001] d..2 29484.539256: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44380          <idle>-0     (-----) [000] d..1 29484.539259: cpu_idle: state=0 cpu_id=0
44381              ps-13726 (13726) [005] d..2 29484.539293: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44382              ps-13726 (13726) [005] dn.3 29484.539298: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44383            adbd-23485 ( 1007) [001] d..2 29484.539299: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44384              ps-13726 (13726) [005] d..2 29484.539302: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44385          <idle>-0     (-----) [001] d..1 29484.539305: cpu_idle: state=0 cpu_id=1
44386          <idle>-0     (-----) [000] d.h3 29484.539311: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44387 shell svc 13722-13723 ( 1007) [005] d..2 29484.539316: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44388          <idle>-0     (-----) [000] dnh4 29484.539317: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44389          <idle>-0     (-----) [000] .n.1 29484.539321: cpu_idle: state=4294967295 cpu_id=0
44390          <idle>-0     (-----) [000] d..2 29484.539326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44391   kworker/u17:2-23076 (23076) [000] d..2 29484.539332: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44392   kworker/u17:2-23076 (23076) [000] d..3 29484.539337: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44393   kworker/u17:2-23076 (23076) [000] d..2 29484.539352: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44394     kworker/0:0-13450 (13450) [000] d..2 29484.539357: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44395     kworker/0:0-13450 (13450) [000] d..3 29484.539365: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44396          <idle>-0     (-----) [001] .n.1 29484.539370: cpu_idle: state=4294967295 cpu_id=1
44397     kworker/0:0-13450 (13450) [000] d..2 29484.539372: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44398          <idle>-0     (-----) [001] d..2 29484.539376: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44399          <idle>-0     (-----) [000] d..1 29484.539377: cpu_idle: state=0 cpu_id=0
44400              ps-13726 (13726) [005] d..2 29484.539387: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44401            adbd-23485 ( 1007) [001] d..2 29484.539391: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44402              ps-13726 (13726) [005] dn.3 29484.539391: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44403              ps-13726 (13726) [005] d..2 29484.539395: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44404          <idle>-0     (-----) [001] d..1 29484.539397: cpu_idle: state=0 cpu_id=1
44405 shell svc 13722-13723 ( 1007) [005] d..2 29484.539409: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44406          <idle>-0     (-----) [000] d.h3 29484.539449: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44407          <idle>-0     (-----) [000] dnh4 29484.539454: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44408          <idle>-0     (-----) [000] .n.1 29484.539458: cpu_idle: state=4294967295 cpu_id=0
44409          <idle>-0     (-----) [000] d..2 29484.539463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44410   kworker/u17:2-23076 (23076) [000] d..2 29484.539470: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44411   kworker/u17:2-23076 (23076) [000] d..3 29484.539474: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44412              ps-13726 (13726) [005] d..2 29484.539481: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44413              ps-13726 (13726) [005] dn.3 29484.539486: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44414   kworker/u17:2-23076 (23076) [000] d..2 29484.539490: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44415              ps-13726 (13726) [005] d..2 29484.539490: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44416     kworker/0:0-13450 (13450) [000] d..2 29484.539494: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44417     kworker/0:0-13450 (13450) [000] d..3 29484.539503: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44418 shell svc 13722-13723 ( 1007) [005] d..2 29484.539504: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44419     kworker/0:0-13450 (13450) [000] d..2 29484.539511: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44420            adbd-23484 ( 1007) [000] d..2 29484.539522: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44421            adbd-23484 ( 1007) [000] d..3 29484.539527: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44422            adbd-23484 ( 1007) [000] d..2 29484.539567: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44423              ps-13726 (13726) [005] d..2 29484.539574: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44424              ps-13726 (13726) [005] dn.3 29484.539578: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44425              ps-13726 (13726) [005] d..2 29484.539582: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44426 shell svc 13722-13723 ( 1007) [005] d..2 29484.539597: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44427            adbd-1007  ( 1007) [000] d..1 29484.539626: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44428            adbd-1007  ( 1007) [000] d..2 29484.539640: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44429          <idle>-0     (-----) [001] .n.1 29484.539644: cpu_idle: state=4294967295 cpu_id=1
44430          <idle>-0     (-----) [001] d..2 29484.539649: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44431            adbd-1007  ( 1007) [000] d..2 29484.539666: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44432              ps-13726 (13726) [005] d..2 29484.539668: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44433              ps-13726 (13726) [005] dn.3 29484.539673: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44434          <idle>-0     (-----) [000] d..1 29484.539673: cpu_idle: state=0 cpu_id=0
44435              ps-13726 (13726) [005] d..2 29484.539677: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44436            adbd-23485 ( 1007) [001] d..2 29484.539691: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44437 shell svc 13722-13723 ( 1007) [005] d..2 29484.539692: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44438          <idle>-0     (-----) [001] d..1 29484.539697: cpu_idle: state=0 cpu_id=1
44439          <idle>-0     (-----) [000] d.h3 29484.539707: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44440          <idle>-0     (-----) [000] dnh4 29484.539712: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44441          <idle>-0     (-----) [000] .n.1 29484.539717: cpu_idle: state=4294967295 cpu_id=0
44442          <idle>-0     (-----) [000] d..2 29484.539723: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44443   kworker/u17:2-23076 (23076) [000] d..2 29484.539731: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44444   kworker/u17:2-23076 (23076) [000] d..3 29484.539736: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44445   kworker/u17:2-23076 (23076) [000] d..2 29484.539751: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44446     kworker/0:0-13450 (13450) [000] d..2 29484.539756: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44447              ps-13726 (13726) [005] d..2 29484.539760: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44448              ps-13726 (13726) [005] dn.3 29484.539765: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44449     kworker/0:0-13450 (13450) [000] d..3 29484.539765: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44450              ps-13726 (13726) [005] d..2 29484.539769: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44451          <idle>-0     (-----) [001] .n.1 29484.539769: cpu_idle: state=4294967295 cpu_id=1
44452     kworker/0:0-13450 (13450) [000] d..2 29484.539772: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44453          <idle>-0     (-----) [001] d..2 29484.539775: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44454          <idle>-0     (-----) [000] d..1 29484.539778: cpu_idle: state=0 cpu_id=0
44455 shell svc 13722-13723 ( 1007) [005] d..2 29484.539783: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44456            adbd-23485 ( 1007) [001] d..2 29484.539818: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44457          <idle>-0     (-----) [001] d..1 29484.539824: cpu_idle: state=0 cpu_id=1
44458          <idle>-0     (-----) [000] d.h3 29484.539837: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44459          <idle>-0     (-----) [000] dnh4 29484.539842: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44460          <idle>-0     (-----) [000] .n.1 29484.539847: cpu_idle: state=4294967295 cpu_id=0
44461              ps-13726 (13726) [005] d..2 29484.539850: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44462          <idle>-0     (-----) [000] d..2 29484.539852: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44463              ps-13726 (13726) [005] dn.3 29484.539855: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44464              ps-13726 (13726) [005] d..2 29484.539858: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44465   kworker/u17:2-23076 (23076) [000] d..2 29484.539859: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44466   kworker/u17:2-23076 (23076) [000] d..3 29484.539863: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44467 shell svc 13722-13723 ( 1007) [005] d..2 29484.539873: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44468   kworker/u17:2-23076 (23076) [000] d..2 29484.539878: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44469     kworker/0:0-13450 (13450) [000] d..2 29484.539883: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44470     kworker/0:0-13450 (13450) [000] d..3 29484.539891: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44471          <idle>-0     (-----) [001] .n.1 29484.539896: cpu_idle: state=4294967295 cpu_id=1
44472     kworker/0:0-13450 (13450) [000] d..2 29484.539898: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44473          <idle>-0     (-----) [001] d..2 29484.539902: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44474          <idle>-0     (-----) [000] d..1 29484.539904: cpu_idle: state=0 cpu_id=0
44475            adbd-23485 ( 1007) [001] d..2 29484.539916: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44476          <idle>-0     (-----) [001] d..1 29484.539922: cpu_idle: state=0 cpu_id=1
44477              ps-13726 (13726) [005] d..2 29484.539944: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44478              ps-13726 (13726) [005] dn.3 29484.539949: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44479              ps-13726 (13726) [005] d..2 29484.539952: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44480 shell svc 13722-13723 ( 1007) [005] d..2 29484.539967: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44481          <idle>-0     (-----) [000] d.h3 29484.539976: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44482          <idle>-0     (-----) [000] dnh4 29484.539981: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44483          <idle>-0     (-----) [000] .n.1 29484.539985: cpu_idle: state=4294967295 cpu_id=0
44484          <idle>-0     (-----) [000] d..2 29484.539991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44485   kworker/u17:2-23076 (23076) [000] d..2 29484.539996: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44486   kworker/u17:2-23076 (23076) [000] d..3 29484.540001: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44487   kworker/u17:2-23076 (23076) [000] d..2 29484.540016: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44488     kworker/0:0-13450 (13450) [000] d..2 29484.540021: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44489     kworker/0:0-13450 (13450) [000] d..3 29484.540029: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44490              ps-13726 (13726) [005] d..2 29484.540035: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44491     kworker/0:0-13450 (13450) [000] d..2 29484.540037: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44492              ps-13726 (13726) [005] dn.3 29484.540040: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44493              ps-13726 (13726) [005] d..2 29484.540043: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44494            adbd-23484 ( 1007) [000] d..2 29484.540047: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44495            adbd-23484 ( 1007) [000] d..3 29484.540053: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44496 shell svc 13722-13723 ( 1007) [005] d..2 29484.540058: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44497            adbd-23484 ( 1007) [000] d..2 29484.540094: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44498              ps-13726 (13726) [005] d..2 29484.540125: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44499              ps-13726 (13726) [005] dn.3 29484.540130: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44500              ps-13726 (13726) [005] d..2 29484.540134: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44501 shell svc 13722-13723 ( 1007) [005] d..2 29484.540149: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44502            adbd-1007  ( 1007) [000] d..1 29484.540152: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44503            adbd-1007  ( 1007) [000] d..2 29484.540162: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44504          <idle>-0     (-----) [001] .n.1 29484.540167: cpu_idle: state=4294967295 cpu_id=1
44505          <idle>-0     (-----) [001] d..2 29484.540172: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44506            adbd-1007  ( 1007) [000] d..2 29484.540187: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44507          <idle>-0     (-----) [000] d..1 29484.540194: cpu_idle: state=0 cpu_id=0
44508            adbd-23485 ( 1007) [001] d..2 29484.540215: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44509              ps-13726 (13726) [005] d..2 29484.540220: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44510          <idle>-0     (-----) [001] d..1 29484.540222: cpu_idle: state=0 cpu_id=1
44511              ps-13726 (13726) [005] dn.3 29484.540224: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44512          <idle>-0     (-----) [000] d.h3 29484.540226: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44513              ps-13726 (13726) [005] d..2 29484.540228: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44514          <idle>-0     (-----) [000] dnh4 29484.540232: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44515          <idle>-0     (-----) [000] .n.1 29484.540237: cpu_idle: state=4294967295 cpu_id=0
44516 shell svc 13722-13723 ( 1007) [005] d..2 29484.540242: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44517          <idle>-0     (-----) [000] d..2 29484.540243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44518   kworker/u17:2-23076 (23076) [000] d..2 29484.540252: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44519   kworker/u17:2-23076 (23076) [000] d..3 29484.540257: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44520   kworker/u17:2-23076 (23076) [000] d..2 29484.540273: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44521     kworker/0:0-13450 (13450) [000] d..2 29484.540278: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44522     kworker/0:0-13450 (13450) [000] d..3 29484.540286: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44523          <idle>-0     (-----) [001] .n.1 29484.540291: cpu_idle: state=4294967295 cpu_id=1
44524     kworker/0:0-13450 (13450) [000] d..2 29484.540294: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44525          <idle>-0     (-----) [001] d..2 29484.540297: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44526          <idle>-0     (-----) [000] d..1 29484.540300: cpu_idle: state=0 cpu_id=0
44527              ps-13726 (13726) [005] d..2 29484.540310: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44528              ps-13726 (13726) [005] dn.3 29484.540315: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44529              ps-13726 (13726) [005] d..2 29484.540318: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44530 shell svc 13722-13723 ( 1007) [005] d..2 29484.540332: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44531            adbd-23485 ( 1007) [001] d..2 29484.540338: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44532          <idle>-0     (-----) [001] d..1 29484.540345: cpu_idle: state=0 cpu_id=1
44533          <idle>-0     (-----) [000] d.h3 29484.540353: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44534          <idle>-0     (-----) [000] dnh4 29484.540358: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44535          <idle>-0     (-----) [000] .n.1 29484.540363: cpu_idle: state=4294967295 cpu_id=0
44536          <idle>-0     (-----) [000] d..2 29484.540368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44537   kworker/u17:2-23076 (23076) [000] d..2 29484.540375: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44538   kworker/u17:2-23076 (23076) [000] d..3 29484.540381: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44539              ps-13726 (13726) [005] d.s2 29484.540404: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
44540   kworker/u17:2-23076 (23076) [000] d..2 29484.540414: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44541     kworker/0:0-13450 (13450) [000] d..2 29484.540419: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44542     kworker/0:0-13450 (13450) [000] d..3 29484.540435: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44543          <idle>-0     (-----) [001] dnh2 29484.540439: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
44544          <idle>-0     (-----) [001] .n.1 29484.540446: cpu_idle: state=4294967295 cpu_id=1
44545     kworker/0:0-13450 (13450) [000] d..2 29484.540448: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44546          <idle>-0     (-----) [000] d..1 29484.540452: cpu_idle: state=0 cpu_id=0
44547          <idle>-0     (-----) [001] d..2 29484.540452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
44548              ps-13726 (13726) [005] d..2 29484.540453: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44549              ps-13726 (13726) [005] dn.3 29484.540458: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44550              ps-13726 (13726) [005] d..2 29484.540462: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44551 shell svc 13722-13723 ( 1007) [005] d..2 29484.540489: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44552  kworker/u16:10-23868 (23868) [001] .... 29484.540498: clk_set_rate: l3_cluster0_vote_clk 1209600000
44553  kworker/u16:10-23868 (23868) [001] .... 29484.540501: clk_set_rate: l3_clk 1209600000
44554          <idle>-0     (-----) [000] d.h3 29484.540548: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44555  kworker/u16:10-23868 (23868) [001] .... 29484.540551: clk_set_rate: l3_cluster1_vote_clk 576000000
44556          <idle>-0     (-----) [000] dnh4 29484.540553: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44557          <idle>-0     (-----) [000] .n.1 29484.540558: cpu_idle: state=4294967295 cpu_id=0
44558  kworker/u16:10-23868 (23868) [001] d..2 29484.540562: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
44559          <idle>-0     (-----) [000] d..2 29484.540563: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44560   kworker/u17:2-23076 (23076) [000] d..2 29484.540570: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44561   kworker/u17:2-23076 (23076) [000] d..3 29484.540574: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44562              ps-13726 (13726) [005] d..2 29484.540575: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44563              ps-13726 (13726) [005] dn.3 29484.540581: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44564              ps-13726 (13726) [005] d..2 29484.540584: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44565            adbd-23485 ( 1007) [001] d..2 29484.540586: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44566   kworker/u17:2-23076 (23076) [000] d..2 29484.540590: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44567          <idle>-0     (-----) [001] d..1 29484.540594: cpu_idle: state=0 cpu_id=1
44568     kworker/0:0-13450 (13450) [000] d..2 29484.540595: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44569 shell svc 13722-13723 ( 1007) [005] d..2 29484.540599: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44570     kworker/0:0-13450 (13450) [000] d..3 29484.540604: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44571     kworker/0:0-13450 (13450) [000] d..2 29484.540612: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44572            adbd-23484 ( 1007) [000] d..2 29484.540624: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44573            adbd-23484 ( 1007) [000] d..3 29484.540629: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44574              ps-13726 (13726) [005] d..2 29484.540670: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44575            adbd-23484 ( 1007) [000] d..2 29484.540671: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44576              ps-13726 (13726) [005] dn.3 29484.540674: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44577              ps-13726 (13726) [005] d..2 29484.540678: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44578 shell svc 13722-13723 ( 1007) [005] d..2 29484.540692: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44579            adbd-1007  ( 1007) [000] d..1 29484.540731: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44580            adbd-1007  ( 1007) [000] d..2 29484.540742: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44581          <idle>-0     (-----) [001] .n.1 29484.540747: cpu_idle: state=4294967295 cpu_id=1
44582          <idle>-0     (-----) [001] d..2 29484.540753: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44583              ps-13726 (13726) [005] d..2 29484.540762: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44584              ps-13726 (13726) [005] dn.3 29484.540768: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44585            adbd-1007  ( 1007) [000] d..2 29484.540768: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44586              ps-13726 (13726) [005] d..2 29484.540771: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44587          <idle>-0     (-----) [000] d..1 29484.540774: cpu_idle: state=0 cpu_id=0
44588 shell svc 13722-13723 ( 1007) [005] d..2 29484.540786: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44589            adbd-23485 ( 1007) [001] d..2 29484.540799: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44590          <idle>-0     (-----) [001] d..1 29484.540806: cpu_idle: state=0 cpu_id=1
44591          <idle>-0     (-----) [000] d.h3 29484.540811: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44592          <idle>-0     (-----) [000] dnh4 29484.540820: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44593          <idle>-0     (-----) [000] .n.1 29484.540825: cpu_idle: state=4294967295 cpu_id=0
44594          <idle>-0     (-----) [000] d..2 29484.540830: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44595   kworker/u17:2-23076 (23076) [000] d..2 29484.540838: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44596   kworker/u17:2-23076 (23076) [000] d..3 29484.540843: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44597              ps-13726 (13726) [005] d..2 29484.540854: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44598              ps-13726 (13726) [005] dn.3 29484.540858: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44599   kworker/u17:2-23076 (23076) [000] d..2 29484.540859: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44600              ps-13726 (13726) [005] d..2 29484.540862: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44601     kworker/0:0-13450 (13450) [000] d..2 29484.540864: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44602     kworker/0:0-13450 (13450) [000] d..3 29484.540873: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44603 shell svc 13722-13723 ( 1007) [005] d..2 29484.540877: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44604          <idle>-0     (-----) [001] .n.1 29484.540878: cpu_idle: state=4294967295 cpu_id=1
44605     kworker/0:0-13450 (13450) [000] d..2 29484.540881: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44606          <idle>-0     (-----) [001] d..2 29484.540884: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44607          <idle>-0     (-----) [000] d..1 29484.540885: cpu_idle: state=0 cpu_id=0
44608            adbd-23485 ( 1007) [001] d..2 29484.540927: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44609          <idle>-0     (-----) [001] d..1 29484.540934: cpu_idle: state=0 cpu_id=1
44610              ps-13726 (13726) [005] d..2 29484.540945: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44611          <idle>-0     (-----) [000] d.h3 29484.540949: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44612              ps-13726 (13726) [005] dn.3 29484.540950: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44613          <idle>-0     (-----) [000] dnh4 29484.540953: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44614              ps-13726 (13726) [005] d..2 29484.540954: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44615          <idle>-0     (-----) [000] .n.1 29484.540958: cpu_idle: state=4294967295 cpu_id=0
44616          <idle>-0     (-----) [000] d..2 29484.540962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44617 shell svc 13722-13723 ( 1007) [005] d..2 29484.540968: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44618   kworker/u17:2-23076 (23076) [000] d..2 29484.540968: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44619   kworker/u17:2-23076 (23076) [000] d..3 29484.540973: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44620   kworker/u17:2-23076 (23076) [000] d..2 29484.540988: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44621     kworker/0:0-13450 (13450) [000] d..2 29484.540993: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44622     kworker/0:0-13450 (13450) [000] d..3 29484.541001: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44623          <idle>-0     (-----) [001] .n.1 29484.541006: cpu_idle: state=4294967295 cpu_id=1
44624     kworker/0:0-13450 (13450) [000] d..2 29484.541009: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44625          <idle>-0     (-----) [001] d..2 29484.541012: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44626          <idle>-0     (-----) [000] d..1 29484.541013: cpu_idle: state=0 cpu_id=0
44627            adbd-23485 ( 1007) [001] d..2 29484.541028: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44628          <idle>-0     (-----) [001] d..1 29484.541034: cpu_idle: state=0 cpu_id=1
44629              ps-13726 (13726) [005] d..2 29484.541039: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44630              ps-13726 (13726) [005] dn.3 29484.541043: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44631              ps-13726 (13726) [005] d..2 29484.541047: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44632 shell svc 13722-13723 ( 1007) [005] d..2 29484.541062: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44633          <idle>-0     (-----) [000] d.h3 29484.541101: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44634          <idle>-0     (-----) [000] dnh4 29484.541107: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44635          <idle>-0     (-----) [000] .n.1 29484.541111: cpu_idle: state=4294967295 cpu_id=0
44636          <idle>-0     (-----) [000] d..2 29484.541115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44637   kworker/u17:2-23076 (23076) [000] d..2 29484.541121: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44638   kworker/u17:2-23076 (23076) [000] d..3 29484.541125: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44639              ps-13726 (13726) [005] d..2 29484.541132: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44640              ps-13726 (13726) [005] dn.3 29484.541137: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44641   kworker/u17:2-23076 (23076) [000] d..2 29484.541140: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44642              ps-13726 (13726) [005] d..2 29484.541141: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44643     kworker/0:0-13450 (13450) [000] d..2 29484.541146: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44644     kworker/0:0-13450 (13450) [000] d..3 29484.541155: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44645 shell svc 13722-13723 ( 1007) [005] d..2 29484.541155: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44646     kworker/0:0-13450 (13450) [000] d..2 29484.541163: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44647            adbd-23484 ( 1007) [000] d..2 29484.541175: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44648            adbd-23484 ( 1007) [000] d..3 29484.541180: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44649            adbd-23484 ( 1007) [000] d..2 29484.541222: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44650              ps-13726 (13726) [005] d..2 29484.541229: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44651              ps-13726 (13726) [005] dn.3 29484.541234: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44652              ps-13726 (13726) [005] d..2 29484.541238: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44653 shell svc 13722-13723 ( 1007) [005] d..2 29484.541252: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44654            adbd-1007  ( 1007) [000] d..1 29484.541283: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44655            adbd-1007  ( 1007) [000] d..2 29484.541294: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44656          <idle>-0     (-----) [001] .n.1 29484.541298: cpu_idle: state=4294967295 cpu_id=1
44657          <idle>-0     (-----) [001] d..2 29484.541304: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44658            adbd-1007  ( 1007) [000] d..2 29484.541320: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44659              ps-13726 (13726) [005] d..2 29484.541322: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44660          <idle>-0     (-----) [000] d..1 29484.541326: cpu_idle: state=0 cpu_id=0
44661              ps-13726 (13726) [005] dn.3 29484.541326: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44662              ps-13726 (13726) [005] d..2 29484.541330: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44663 shell svc 13722-13723 ( 1007) [005] d..2 29484.541345: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44664            adbd-23485 ( 1007) [001] d..2 29484.541347: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44665          <idle>-0     (-----) [001] d..1 29484.541353: cpu_idle: state=0 cpu_id=1
44666          <idle>-0     (-----) [000] d.h3 29484.541373: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44667          <idle>-0     (-----) [000] dnh4 29484.541379: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44668          <idle>-0     (-----) [000] .n.1 29484.541383: cpu_idle: state=4294967295 cpu_id=0
44669          <idle>-0     (-----) [000] d..2 29484.541388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44670   kworker/u17:2-23076 (23076) [000] d..2 29484.541396: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44671   kworker/u17:2-23076 (23076) [000] d..3 29484.541401: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44672              ps-13726 (13726) [005] d..2 29484.541413: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44673   kworker/u17:2-23076 (23076) [000] d..2 29484.541417: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44674              ps-13726 (13726) [005] dn.3 29484.541417: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44675              ps-13726 (13726) [005] d..2 29484.541421: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44676     kworker/0:0-13450 (13450) [000] d..2 29484.541422: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44677     kworker/0:0-13450 (13450) [000] d..3 29484.541430: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44678 shell svc 13722-13723 ( 1007) [005] d..2 29484.541434: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44679          <idle>-0     (-----) [001] .n.1 29484.541435: cpu_idle: state=4294967295 cpu_id=1
44680     kworker/0:0-13450 (13450) [000] d..2 29484.541439: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44681          <idle>-0     (-----) [001] d..2 29484.541441: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44682          <idle>-0     (-----) [000] d..1 29484.541443: cpu_idle: state=0 cpu_id=0
44683            adbd-23485 ( 1007) [001] d..2 29484.541484: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44684          <idle>-0     (-----) [001] d..1 29484.541490: cpu_idle: state=0 cpu_id=1
44685          <idle>-0     (-----) [000] d.h3 29484.541499: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44686              ps-13726 (13726) [005] d..2 29484.541504: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44687          <idle>-0     (-----) [000] dnh4 29484.541504: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44688          <idle>-0     (-----) [000] .n.1 29484.541508: cpu_idle: state=4294967295 cpu_id=0
44689              ps-13726 (13726) [005] dn.3 29484.541508: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44690              ps-13726 (13726) [005] d..2 29484.541512: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44691          <idle>-0     (-----) [000] d..2 29484.541513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44692   kworker/u17:2-23076 (23076) [000] d..2 29484.541520: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44693   kworker/u17:2-23076 (23076) [000] d..3 29484.541524: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44694 shell svc 13722-13723 ( 1007) [005] d..2 29484.541526: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44695   kworker/u17:2-23076 (23076) [000] d..2 29484.541540: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44696     kworker/0:0-13450 (13450) [000] d..2 29484.541544: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44697     kworker/0:0-13450 (13450) [000] d..3 29484.541553: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44698          <idle>-0     (-----) [001] .n.1 29484.541558: cpu_idle: state=4294967295 cpu_id=1
44699     kworker/0:0-13450 (13450) [000] d..2 29484.541561: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44700          <idle>-0     (-----) [001] d..2 29484.541564: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44701          <idle>-0     (-----) [000] d..1 29484.541565: cpu_idle: state=0 cpu_id=0
44702            adbd-23485 ( 1007) [001] d..2 29484.541578: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44703          <idle>-0     (-----) [001] d..1 29484.541584: cpu_idle: state=0 cpu_id=1
44704              ps-13726 (13726) [005] d..2 29484.541595: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44705              ps-13726 (13726) [005] dn.3 29484.541600: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44706              ps-13726 (13726) [005] d..2 29484.541604: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44707 shell svc 13722-13723 ( 1007) [005] d..2 29484.541618: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44708          <idle>-0     (-----) [000] d.h3 29484.541684: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44709              ps-13726 (13726) [005] d..2 29484.541689: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44710          <idle>-0     (-----) [000] dnh4 29484.541689: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44711          <idle>-0     (-----) [000] .n.1 29484.541693: cpu_idle: state=4294967295 cpu_id=0
44712              ps-13726 (13726) [005] dn.3 29484.541693: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44713              ps-13726 (13726) [005] d..2 29484.541697: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44714          <idle>-0     (-----) [000] d..2 29484.541699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44715   kworker/u17:2-23076 (23076) [000] d..2 29484.541705: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44716   kworker/u17:2-23076 (23076) [000] d..3 29484.541709: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44717 shell svc 13722-13723 ( 1007) [005] d..2 29484.541711: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44718   kworker/u17:2-23076 (23076) [000] d..2 29484.541725: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44719     kworker/0:0-13450 (13450) [000] d..2 29484.541730: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44720     kworker/0:0-13450 (13450) [000] d..3 29484.541739: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44721     kworker/0:0-13450 (13450) [000] d..2 29484.541747: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44722            adbd-23484 ( 1007) [000] d..2 29484.541759: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44723            adbd-23484 ( 1007) [000] d..3 29484.541764: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44724              ps-13726 (13726) [005] d..2 29484.541778: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44725              ps-13726 (13726) [005] dn.3 29484.541783: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44726              ps-13726 (13726) [005] d..2 29484.541787: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44727 shell svc 13722-13723 ( 1007) [005] d..2 29484.541801: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44728            adbd-23484 ( 1007) [000] d..2 29484.541805: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44729            adbd-1007  ( 1007) [000] d..1 29484.541865: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44730              ps-13726 (13726) [005] d..2 29484.541866: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44731              ps-13726 (13726) [005] dn.3 29484.541871: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44732              ps-13726 (13726) [005] d..2 29484.541874: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44733            adbd-1007  ( 1007) [000] d..2 29484.541880: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44734          <idle>-0     (-----) [001] .n.1 29484.541885: cpu_idle: state=4294967295 cpu_id=1
44735 shell svc 13722-13723 ( 1007) [005] d..2 29484.541888: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44736          <idle>-0     (-----) [001] d..2 29484.541890: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44737            adbd-1007  ( 1007) [000] d..2 29484.541906: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44738          <idle>-0     (-----) [000] d..1 29484.541912: cpu_idle: state=0 cpu_id=0
44739            adbd-23485 ( 1007) [001] d..2 29484.541932: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44740          <idle>-0     (-----) [001] d..1 29484.541939: cpu_idle: state=0 cpu_id=1
44741              ps-13726 (13726) [005] d..2 29484.541962: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44742              ps-13726 (13726) [005] dn.3 29484.541967: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44743              ps-13726 (13726) [005] d..2 29484.541971: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44744          <idle>-0     (-----) [000] d.h3 29484.541976: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44745          <idle>-0     (-----) [000] dnh4 29484.541982: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44746 shell svc 13722-13723 ( 1007) [005] d..2 29484.541985: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44747          <idle>-0     (-----) [000] .n.1 29484.541986: cpu_idle: state=4294967295 cpu_id=0
44748          <idle>-0     (-----) [000] d..2 29484.541991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44749   kworker/u17:2-23076 (23076) [000] d..2 29484.541999: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44750   kworker/u17:2-23076 (23076) [000] d..3 29484.542004: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44751   kworker/u17:2-23076 (23076) [000] d..2 29484.542019: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44752     kworker/0:0-13450 (13450) [000] d..2 29484.542025: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44753     kworker/0:0-13450 (13450) [000] d..3 29484.542033: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44754          <idle>-0     (-----) [001] .n.1 29484.542038: cpu_idle: state=4294967295 cpu_id=1
44755     kworker/0:0-13450 (13450) [000] d..2 29484.542041: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44756          <idle>-0     (-----) [001] d..2 29484.542044: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44757          <idle>-0     (-----) [000] d..1 29484.542045: cpu_idle: state=0 cpu_id=0
44758              ps-13726 (13726) [005] d..2 29484.542054: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44759              ps-13726 (13726) [005] dn.3 29484.542058: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44760              ps-13726 (13726) [005] d..2 29484.542062: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44761 shell svc 13722-13723 ( 1007) [005] d..2 29484.542077: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44762            adbd-23485 ( 1007) [001] d..2 29484.542087: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44763          <idle>-0     (-----) [001] d..1 29484.542093: cpu_idle: state=0 cpu_id=1
44764          <idle>-0     (-----) [000] d.h3 29484.542104: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44765          <idle>-0     (-----) [000] dnh4 29484.542109: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44766          <idle>-0     (-----) [000] .n.1 29484.542114: cpu_idle: state=4294967295 cpu_id=0
44767          <idle>-0     (-----) [000] d..2 29484.542118: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44768   kworker/u17:2-23076 (23076) [000] d..2 29484.542125: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44769   kworker/u17:2-23076 (23076) [000] d..3 29484.542130: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44770   kworker/u17:2-23076 (23076) [000] d..2 29484.542145: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44771              ps-13726 (13726) [005] d..2 29484.542148: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44772     kworker/0:0-13450 (13450) [000] d..2 29484.542150: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44773              ps-13726 (13726) [005] dn.3 29484.542153: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44774              ps-13726 (13726) [005] d..2 29484.542156: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44775     kworker/0:0-13450 (13450) [000] d..3 29484.542158: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44776          <idle>-0     (-----) [001] .n.1 29484.542163: cpu_idle: state=4294967295 cpu_id=1
44777     kworker/0:0-13450 (13450) [000] d..2 29484.542166: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44778          <idle>-0     (-----) [001] d..2 29484.542169: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44779          <idle>-0     (-----) [000] d..1 29484.542170: cpu_idle: state=0 cpu_id=0
44780 shell svc 13722-13723 ( 1007) [005] d..2 29484.542170: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44781            adbd-23485 ( 1007) [001] d..2 29484.542185: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44782          <idle>-0     (-----) [001] d..1 29484.542190: cpu_idle: state=0 cpu_id=1
44783              ps-13726 (13726) [005] d..2 29484.542241: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44784              ps-13726 (13726) [005] dn.3 29484.542246: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44785              ps-13726 (13726) [005] d..2 29484.542251: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44786 shell svc 13722-13723 ( 1007) [005] d..2 29484.542265: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44787          <idle>-0     (-----) [000] d.h3 29484.542313: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44788          <idle>-0     (-----) [000] dnh4 29484.542318: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44789          <idle>-0     (-----) [000] .n.1 29484.542322: cpu_idle: state=4294967295 cpu_id=0
44790          <idle>-0     (-----) [000] d..2 29484.542326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44791   kworker/u17:2-23076 (23076) [000] d..2 29484.542331: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44792   kworker/u17:2-23076 (23076) [000] d..3 29484.542336: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44793              ps-13726 (13726) [005] d..2 29484.542340: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44794              ps-13726 (13726) [005] dn.3 29484.542344: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44795              ps-13726 (13726) [005] d..2 29484.542348: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44796   kworker/u17:2-23076 (23076) [000] d..2 29484.542351: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44797     kworker/0:0-13450 (13450) [000] d..2 29484.542356: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44798 shell svc 13722-13723 ( 1007) [005] d..2 29484.542362: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44799     kworker/0:0-13450 (13450) [000] d..3 29484.542365: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44800     kworker/0:0-13450 (13450) [000] d..2 29484.542372: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44801            adbd-23484 ( 1007) [000] d..2 29484.542383: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44802            adbd-23484 ( 1007) [000] d..3 29484.542389: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44803            adbd-23484 ( 1007) [000] d..2 29484.542429: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44804              ps-13726 (13726) [005] d..2 29484.542432: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44805              ps-13726 (13726) [005] dn.3 29484.542437: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44806              ps-13726 (13726) [005] d..2 29484.542441: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44807 shell svc 13722-13723 ( 1007) [005] d..2 29484.542455: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44808            adbd-1007  ( 1007) [000] d..1 29484.542491: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44809            adbd-1007  ( 1007) [000] d..2 29484.542502: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44810          <idle>-0     (-----) [001] .n.1 29484.542507: cpu_idle: state=4294967295 cpu_id=1
44811          <idle>-0     (-----) [001] d..2 29484.542513: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44812              ps-13726 (13726) [005] d..2 29484.542525: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44813            adbd-1007  ( 1007) [000] d..2 29484.542527: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44814              ps-13726 (13726) [005] dn.3 29484.542529: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44815              ps-13726 (13726) [005] d..2 29484.542533: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44816          <idle>-0     (-----) [000] d..1 29484.542533: cpu_idle: state=0 cpu_id=0
44817 shell svc 13722-13723 ( 1007) [005] d..2 29484.542549: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44818            adbd-23485 ( 1007) [001] d..2 29484.542555: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44819          <idle>-0     (-----) [001] d..1 29484.542562: cpu_idle: state=0 cpu_id=1
44820          <idle>-0     (-----) [000] d.h3 29484.542583: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44821          <idle>-0     (-----) [000] dnh4 29484.542589: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44822          <idle>-0     (-----) [000] .n.1 29484.542594: cpu_idle: state=4294967295 cpu_id=0
44823          <idle>-0     (-----) [000] d..2 29484.542599: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44824   kworker/u17:2-23076 (23076) [000] d..2 29484.542606: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44825   kworker/u17:2-23076 (23076) [000] d..3 29484.542611: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44826              ps-13726 (13726) [005] d..2 29484.542619: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44827              ps-13726 (13726) [005] dn.3 29484.542624: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44828   kworker/u17:2-23076 (23076) [000] d..2 29484.542627: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44829              ps-13726 (13726) [005] d..2 29484.542628: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44830     kworker/0:0-13450 (13450) [000] d..2 29484.542632: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44831     kworker/0:0-13450 (13450) [000] d..3 29484.542640: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44832 shell svc 13722-13723 ( 1007) [005] d..2 29484.542642: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44833          <idle>-0     (-----) [001] .n.1 29484.542645: cpu_idle: state=4294967295 cpu_id=1
44834     kworker/0:0-13450 (13450) [000] d..2 29484.542648: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44835          <idle>-0     (-----) [001] d..2 29484.542651: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44836          <idle>-0     (-----) [000] d..1 29484.542653: cpu_idle: state=0 cpu_id=0
44837            adbd-23485 ( 1007) [001] d..2 29484.542693: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44838          <idle>-0     (-----) [001] d..1 29484.542699: cpu_idle: state=0 cpu_id=1
44839              ps-13726 (13726) [005] d..2 29484.542716: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44840              ps-13726 (13726) [005] dn.3 29484.542720: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44841              ps-13726 (13726) [005] d..2 29484.542724: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44842          <idle>-0     (-----) [000] d.h3 29484.542729: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44843          <idle>-0     (-----) [000] dnh4 29484.542735: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44844 shell svc 13722-13723 ( 1007) [005] d..2 29484.542738: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44845          <idle>-0     (-----) [000] .n.1 29484.542739: cpu_idle: state=4294967295 cpu_id=0
44846          <idle>-0     (-----) [000] d..2 29484.542744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44847   kworker/u17:2-23076 (23076) [000] d..2 29484.542750: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44848   kworker/u17:2-23076 (23076) [000] d..3 29484.542754: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44849   kworker/u17:2-23076 (23076) [000] d..2 29484.542769: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44850     kworker/0:0-13450 (13450) [000] d..2 29484.542775: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44851     kworker/0:0-13450 (13450) [000] d..3 29484.542783: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44852          <idle>-0     (-----) [001] .n.1 29484.542787: cpu_idle: state=4294967295 cpu_id=1
44853     kworker/0:0-13450 (13450) [000] d..2 29484.542790: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44854          <idle>-0     (-----) [001] d..2 29484.542793: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44855          <idle>-0     (-----) [000] d..1 29484.542795: cpu_idle: state=0 cpu_id=0
44856            adbd-23485 ( 1007) [001] d..2 29484.542808: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44857              ps-13726 (13726) [005] d..2 29484.542810: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44858          <idle>-0     (-----) [001] d..1 29484.542814: cpu_idle: state=0 cpu_id=1
44859              ps-13726 (13726) [005] dn.3 29484.542814: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44860              ps-13726 (13726) [005] d..2 29484.542818: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44861 shell svc 13722-13723 ( 1007) [005] d..2 29484.542832: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44862          <idle>-0     (-----) [000] d.h3 29484.542872: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44863          <idle>-0     (-----) [000] dnh4 29484.542881: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44864          <idle>-0     (-----) [000] .n.1 29484.542885: cpu_idle: state=4294967295 cpu_id=0
44865          <idle>-0     (-----) [000] d..2 29484.542890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44866   kworker/u17:2-23076 (23076) [000] d..2 29484.542896: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44867   kworker/u17:2-23076 (23076) [000] d..3 29484.542901: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44868              ps-13726 (13726) [005] d..2 29484.542902: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44869              ps-13726 (13726) [005] dn.3 29484.542907: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44870              ps-13726 (13726) [005] d..2 29484.542910: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44871   kworker/u17:2-23076 (23076) [000] d..2 29484.542916: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44872     kworker/0:0-13450 (13450) [000] d..2 29484.542922: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44873 shell svc 13722-13723 ( 1007) [005] d..2 29484.542925: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44874     kworker/0:0-13450 (13450) [000] d..3 29484.542930: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44875     kworker/0:0-13450 (13450) [000] d..2 29484.542937: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44876            adbd-23484 ( 1007) [000] d..2 29484.542949: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44877            adbd-23484 ( 1007) [000] d..3 29484.542954: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44878              ps-13726 (13726) [005] d..2 29484.542994: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44879            adbd-23484 ( 1007) [000] d..2 29484.542996: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44880              ps-13726 (13726) [005] dn.3 29484.542999: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44881              ps-13726 (13726) [005] d..2 29484.543002: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44882 shell svc 13722-13723 ( 1007) [005] d..2 29484.543016: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44883            adbd-1007  ( 1007) [000] d..1 29484.543056: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44884            adbd-1007  ( 1007) [000] d..2 29484.543067: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44885          <idle>-0     (-----) [001] .n.1 29484.543072: cpu_idle: state=4294967295 cpu_id=1
44886          <idle>-0     (-----) [001] d..2 29484.543077: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44887              ps-13726 (13726) [005] d..2 29484.543086: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44888              ps-13726 (13726) [005] dn.3 29484.543091: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44889            adbd-1007  ( 1007) [000] d..2 29484.543093: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44890              ps-13726 (13726) [005] d..2 29484.543094: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44891          <idle>-0     (-----) [000] d..1 29484.543100: cpu_idle: state=0 cpu_id=0
44892 shell svc 13722-13723 ( 1007) [005] d..2 29484.543109: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44893            adbd-23485 ( 1007) [001] d..2 29484.543120: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44894          <idle>-0     (-----) [001] d..1 29484.543127: cpu_idle: state=0 cpu_id=1
44895          <idle>-0     (-----) [000] d.h3 29484.543142: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44896          <idle>-0     (-----) [000] dnh4 29484.543148: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44897          <idle>-0     (-----) [000] .n.1 29484.543153: cpu_idle: state=4294967295 cpu_id=0
44898          <idle>-0     (-----) [000] d..2 29484.543158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44899   kworker/u17:2-23076 (23076) [000] d..2 29484.543166: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44900   kworker/u17:2-23076 (23076) [000] d..3 29484.543171: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44901              ps-13726 (13726) [005] d..2 29484.543179: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44902              ps-13726 (13726) [005] dn.3 29484.543184: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44903   kworker/u17:2-23076 (23076) [000] d..2 29484.543186: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44904              ps-13726 (13726) [005] d..2 29484.543188: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44905     kworker/0:0-13450 (13450) [000] d..2 29484.543192: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44906     kworker/0:0-13450 (13450) [000] d..3 29484.543201: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44907 shell svc 13722-13723 ( 1007) [005] d..2 29484.543202: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44908          <idle>-0     (-----) [001] .n.1 29484.543206: cpu_idle: state=4294967295 cpu_id=1
44909     kworker/0:0-13450 (13450) [000] d..2 29484.543208: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44910          <idle>-0     (-----) [001] d..2 29484.543212: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44911          <idle>-0     (-----) [000] d..1 29484.543213: cpu_idle: state=0 cpu_id=0
44912            adbd-23485 ( 1007) [001] d..2 29484.543254: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44913          <idle>-0     (-----) [001] d..1 29484.543260: cpu_idle: state=0 cpu_id=1
44914              ps-13726 (13726) [005] d..2 29484.543271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44915          <idle>-0     (-----) [000] d.h3 29484.543271: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44916              ps-13726 (13726) [005] dn.3 29484.543275: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44917          <idle>-0     (-----) [000] dnh4 29484.543277: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44918              ps-13726 (13726) [005] d..2 29484.543279: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44919          <idle>-0     (-----) [000] .n.1 29484.543281: cpu_idle: state=4294967295 cpu_id=0
44920          <idle>-0     (-----) [000] d..2 29484.543286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44921   kworker/u17:2-23076 (23076) [000] d..2 29484.543293: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44922 shell svc 13722-13723 ( 1007) [005] d..2 29484.543293: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44923   kworker/u17:2-23076 (23076) [000] d..3 29484.543297: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44924   kworker/u17:2-23076 (23076) [000] d..2 29484.543312: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44925     kworker/0:0-13450 (13450) [000] d..2 29484.543318: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44926     kworker/0:0-13450 (13450) [000] d..3 29484.543326: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44927          <idle>-0     (-----) [001] .n.1 29484.543330: cpu_idle: state=4294967295 cpu_id=1
44928     kworker/0:0-13450 (13450) [000] d..2 29484.543333: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44929          <idle>-0     (-----) [001] d..2 29484.543336: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44930          <idle>-0     (-----) [000] d..1 29484.543337: cpu_idle: state=0 cpu_id=0
44931            adbd-23485 ( 1007) [001] d..2 29484.543352: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44932          <idle>-0     (-----) [001] d..1 29484.543358: cpu_idle: state=0 cpu_id=1
44933              ps-13726 (13726) [005] d..2 29484.543362: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44934              ps-13726 (13726) [005] dn.3 29484.543366: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44935              ps-13726 (13726) [005] d..2 29484.543371: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44936 shell svc 13722-13723 ( 1007) [005] d..2 29484.543385: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44937          <idle>-0     (-----) [000] d.h3 29484.543406: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44938          <idle>-0     (-----) [000] dnh4 29484.543410: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44939          <idle>-0     (-----) [000] .n.1 29484.543415: cpu_idle: state=4294967295 cpu_id=0
44940          <idle>-0     (-----) [000] d..2 29484.543419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44941   kworker/u17:2-23076 (23076) [000] d..2 29484.543426: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44942   kworker/u17:2-23076 (23076) [000] d..3 29484.543431: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44943   kworker/u17:2-23076 (23076) [000] d..2 29484.543446: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44944     kworker/0:0-13450 (13450) [000] d..2 29484.543451: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
44945              ps-13726 (13726) [005] d..2 29484.543457: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44946     kworker/0:0-13450 (13450) [000] d..3 29484.543460: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
44947              ps-13726 (13726) [005] dn.3 29484.543461: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44948              ps-13726 (13726) [005] d..2 29484.543465: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44949     kworker/0:0-13450 (13450) [000] d..2 29484.543467: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
44950            adbd-23484 ( 1007) [000] d..2 29484.543478: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
44951 shell svc 13722-13723 ( 1007) [005] d..2 29484.543479: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44952            adbd-23484 ( 1007) [000] d..3 29484.543483: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
44953            adbd-23484 ( 1007) [000] d..2 29484.543523: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
44954              ps-13726 (13726) [005] d..2 29484.543549: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44955              ps-13726 (13726) [005] dn.3 29484.543554: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44956              ps-13726 (13726) [005] d..2 29484.543558: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44957 shell svc 13722-13723 ( 1007) [005] d..2 29484.543572: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44958            adbd-1007  ( 1007) [000] d..1 29484.543583: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44959            adbd-1007  ( 1007) [000] d..2 29484.543594: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44960          <idle>-0     (-----) [001] .n.1 29484.543598: cpu_idle: state=4294967295 cpu_id=1
44961          <idle>-0     (-----) [001] d..2 29484.543604: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44962            adbd-1007  ( 1007) [000] d..2 29484.543620: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44963          <idle>-0     (-----) [000] d..1 29484.543626: cpu_idle: state=0 cpu_id=0
44964              ps-13726 (13726) [005] d..2 29484.543641: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44965              ps-13726 (13726) [005] dn.3 29484.543646: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44966            adbd-23485 ( 1007) [001] d..2 29484.543646: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44967              ps-13726 (13726) [005] d..2 29484.543649: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44968          <idle>-0     (-----) [001] d..1 29484.543653: cpu_idle: state=0 cpu_id=1
44969 shell svc 13722-13723 ( 1007) [005] d..2 29484.543663: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44970          <idle>-0     (-----) [000] d.h3 29484.543665: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44971          <idle>-0     (-----) [000] dnh4 29484.543671: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44972          <idle>-0     (-----) [000] .n.1 29484.543675: cpu_idle: state=4294967295 cpu_id=0
44973          <idle>-0     (-----) [000] d..2 29484.543680: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44974   kworker/u17:2-23076 (23076) [000] d..2 29484.543688: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44975   kworker/u17:2-23076 (23076) [000] d..3 29484.543693: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44976   kworker/u17:2-23076 (23076) [000] d..2 29484.543709: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44977     kworker/0:0-13450 (13450) [000] d..2 29484.543714: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
44978     kworker/0:0-13450 (13450) [000] d..3 29484.543723: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
44979          <idle>-0     (-----) [001] .n.1 29484.543727: cpu_idle: state=4294967295 cpu_id=1
44980          <idle>-0     (-----) [001] d..2 29484.543736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
44981     kworker/0:0-13450 (13450) [000] d.s2 29484.543740: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44982              ps-13726 (13726) [005] d..2 29484.543747: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44983     kworker/0:0-13450 (13450) [000] d.s3 29484.543749: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
44984              ps-13726 (13726) [005] dn.3 29484.543751: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
44985              ps-13726 (13726) [005] d..2 29484.543755: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
44986     kworker/0:0-13450 (13450) [000] d..2 29484.543761: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
44987     rcu_preempt-7     (    7) [000] d..2 29484.543770: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44988 shell svc 13722-13723 ( 1007) [005] d..2 29484.543770: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
44989          <idle>-0     (-----) [000] d..1 29484.543777: cpu_idle: state=0 cpu_id=0
44990            adbd-23485 ( 1007) [001] d..2 29484.543780: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44991          <idle>-0     (-----) [001] d..1 29484.543787: cpu_idle: state=0 cpu_id=1
44992          <idle>-0     (-----) [000] d.h3 29484.543793: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44993          <idle>-0     (-----) [000] dnh4 29484.543799: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
44994          <idle>-0     (-----) [000] .n.1 29484.543803: cpu_idle: state=4294967295 cpu_id=0
44995          <idle>-0     (-----) [000] d..2 29484.543810: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
44996   kworker/u17:2-23076 (23076) [000] d..2 29484.543817: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44997   kworker/u17:2-23076 (23076) [000] d..3 29484.543822: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
44998   kworker/u17:2-23076 (23076) [000] d..2 29484.543837: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
44999              ps-13726 (13726) [005] d..2 29484.543841: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45000     kworker/0:0-13450 (13450) [000] d..2 29484.543843: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45001              ps-13726 (13726) [005] dn.3 29484.543846: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45002              ps-13726 (13726) [005] d..2 29484.543849: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45003     kworker/0:0-13450 (13450) [000] d..3 29484.543851: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45004          <idle>-0     (-----) [001] .n.1 29484.543856: cpu_idle: state=4294967295 cpu_id=1
45005     kworker/0:0-13450 (13450) [000] d..2 29484.543859: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45006          <idle>-0     (-----) [001] d..2 29484.543862: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45007 shell svc 13722-13723 ( 1007) [005] d..2 29484.543864: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45008          <idle>-0     (-----) [000] d..1 29484.543865: cpu_idle: state=0 cpu_id=0
45009            adbd-23485 ( 1007) [001] d..2 29484.543878: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45010          <idle>-0     (-----) [001] d..1 29484.543884: cpu_idle: state=0 cpu_id=1
45011          <idle>-0     (-----) [000] d.h3 29484.543930: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45012              ps-13726 (13726) [005] d..2 29484.543935: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45013          <idle>-0     (-----) [000] dnh4 29484.543935: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45014          <idle>-0     (-----) [000] .n.1 29484.543939: cpu_idle: state=4294967295 cpu_id=0
45015              ps-13726 (13726) [005] dn.3 29484.543939: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45016              ps-13726 (13726) [005] d..2 29484.543943: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45017          <idle>-0     (-----) [000] d..2 29484.543944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45018   kworker/u17:2-23076 (23076) [000] d..2 29484.543951: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45019   kworker/u17:2-23076 (23076) [000] d..3 29484.543956: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45020 shell svc 13722-13723 ( 1007) [005] d..2 29484.543956: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45021   kworker/u17:2-23076 (23076) [000] d..2 29484.543971: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45022     kworker/0:0-13450 (13450) [000] d..2 29484.543976: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45023     kworker/0:0-13450 (13450) [000] d..3 29484.543985: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45024     kworker/0:0-13450 (13450) [000] d..2 29484.543992: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45025            adbd-23484 ( 1007) [000] d..2 29484.544004: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45026            adbd-23484 ( 1007) [000] d..3 29484.544009: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45027              ps-13726 (13726) [005] d..2 29484.544027: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45028              ps-13726 (13726) [005] dn.3 29484.544032: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45029              ps-13726 (13726) [005] d..2 29484.544035: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45030 shell svc 13722-13723 ( 1007) [005] d..2 29484.544049: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45031            adbd-23484 ( 1007) [000] d..2 29484.544051: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45032            adbd-1007  ( 1007) [000] d..1 29484.544110: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45033              ps-13726 (13726) [005] d..2 29484.544119: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45034              ps-13726 (13726) [005] dn.3 29484.544123: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45035            adbd-1007  ( 1007) [000] d..2 29484.544124: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45036              ps-13726 (13726) [005] d..2 29484.544127: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45037          <idle>-0     (-----) [001] .n.1 29484.544129: cpu_idle: state=4294967295 cpu_id=1
45038          <idle>-0     (-----) [001] d..2 29484.544134: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45039 shell svc 13722-13723 ( 1007) [005] d..2 29484.544142: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45040            adbd-1007  ( 1007) [000] d..2 29484.544151: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45041          <idle>-0     (-----) [000] d..1 29484.544159: cpu_idle: state=0 cpu_id=0
45042            adbd-23485 ( 1007) [001] d..2 29484.544177: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45043          <idle>-0     (-----) [001] d..1 29484.544183: cpu_idle: state=0 cpu_id=1
45044          <idle>-0     (-----) [000] d.h3 29484.544185: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45045          <idle>-0     (-----) [000] dnh4 29484.544191: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45046          <idle>-0     (-----) [000] .n.1 29484.544196: cpu_idle: state=4294967295 cpu_id=0
45047          <idle>-0     (-----) [000] d..2 29484.544202: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45048   kworker/u17:2-23076 (23076) [000] d..2 29484.544210: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45049   kworker/u17:2-23076 (23076) [000] d..3 29484.544216: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45050              ps-13726 (13726) [005] d..2 29484.544216: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45051              ps-13726 (13726) [005] dn.3 29484.544221: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45052              ps-13726 (13726) [005] d..2 29484.544224: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45053   kworker/u17:2-23076 (23076) [000] d..2 29484.544231: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45054     kworker/0:0-13450 (13450) [000] d..2 29484.544237: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45055 shell svc 13722-13723 ( 1007) [005] d..2 29484.544240: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45056     kworker/0:0-13450 (13450) [000] d..3 29484.544246: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45057          <idle>-0     (-----) [001] .n.1 29484.544251: cpu_idle: state=4294967295 cpu_id=1
45058     kworker/0:0-13450 (13450) [000] d..2 29484.544254: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45059          <idle>-0     (-----) [001] d..2 29484.544258: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45060          <idle>-0     (-----) [000] d..1 29484.544260: cpu_idle: state=0 cpu_id=0
45061            adbd-23485 ( 1007) [001] d..2 29484.544300: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45062          <idle>-0     (-----) [001] d..1 29484.544307: cpu_idle: state=0 cpu_id=1
45063              ps-13726 (13726) [005] d..2 29484.544309: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45064              ps-13726 (13726) [005] dn.3 29484.544313: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45065          <idle>-0     (-----) [000] d.h3 29484.544314: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45066              ps-13726 (13726) [005] d..2 29484.544317: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45067          <idle>-0     (-----) [000] dnh4 29484.544319: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45068          <idle>-0     (-----) [000] .n.1 29484.544323: cpu_idle: state=4294967295 cpu_id=0
45069          <idle>-0     (-----) [000] d..2 29484.544329: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45070 shell svc 13722-13723 ( 1007) [005] d..2 29484.544331: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45071   kworker/u17:2-23076 (23076) [000] d..2 29484.544336: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45072   kworker/u17:2-23076 (23076) [000] d..3 29484.544341: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45073   kworker/u17:2-23076 (23076) [000] d..2 29484.544355: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45074     kworker/0:0-13450 (13450) [000] d..2 29484.544360: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45075     kworker/0:0-13450 (13450) [000] d..3 29484.544369: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45076          <idle>-0     (-----) [001] .n.1 29484.544374: cpu_idle: state=4294967295 cpu_id=1
45077     kworker/0:0-13450 (13450) [000] d..2 29484.544377: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45078          <idle>-0     (-----) [001] d..2 29484.544379: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45079          <idle>-0     (-----) [000] d..1 29484.544383: cpu_idle: state=0 cpu_id=0
45080            adbd-23485 ( 1007) [001] d..2 29484.544394: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45081              ps-13726 (13726) [005] d..2 29484.544399: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45082          <idle>-0     (-----) [001] d..1 29484.544400: cpu_idle: state=0 cpu_id=1
45083              ps-13726 (13726) [005] dn.3 29484.544404: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45084              ps-13726 (13726) [005] d..2 29484.544407: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45085 shell svc 13722-13723 ( 1007) [005] d..2 29484.544421: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45086          <idle>-0     (-----) [000] d.h3 29484.544463: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45087          <idle>-0     (-----) [000] dnh4 29484.544469: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45088          <idle>-0     (-----) [000] .n.1 29484.544473: cpu_idle: state=4294967295 cpu_id=0
45089          <idle>-0     (-----) [000] d..2 29484.544479: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45090   kworker/u17:2-23076 (23076) [000] d..2 29484.544484: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45091   kworker/u17:2-23076 (23076) [000] d..3 29484.544489: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45092              ps-13726 (13726) [005] d..2 29484.544492: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45093              ps-13726 (13726) [005] dn.3 29484.544497: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45094              ps-13726 (13726) [005] d..2 29484.544501: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45095   kworker/u17:2-23076 (23076) [000] d..2 29484.544504: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45096     kworker/0:0-13450 (13450) [000] d..2 29484.544510: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45097 shell svc 13722-13723 ( 1007) [005] d..2 29484.544515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45098     kworker/0:0-13450 (13450) [000] d..3 29484.544518: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45099     kworker/0:0-13450 (13450) [000] d..2 29484.544526: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45100            adbd-23484 ( 1007) [000] d..2 29484.544537: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45101            adbd-23484 ( 1007) [000] d..3 29484.544543: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45102              ps-13726 (13726) [005] d..2 29484.544583: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45103            adbd-23484 ( 1007) [000] d..2 29484.544584: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45104              ps-13726 (13726) [005] dn.3 29484.544587: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45105              ps-13726 (13726) [005] d..2 29484.544591: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45106 shell svc 13722-13723 ( 1007) [005] d..2 29484.544605: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45107            adbd-1007  ( 1007) [000] d..1 29484.544645: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45108            adbd-1007  ( 1007) [000] d..2 29484.544656: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45109          <idle>-0     (-----) [001] .n.1 29484.544661: cpu_idle: state=4294967295 cpu_id=1
45110          <idle>-0     (-----) [001] d..2 29484.544667: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45111              ps-13726 (13726) [005] d..2 29484.544673: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45112              ps-13726 (13726) [005] dn.3 29484.544678: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45113              ps-13726 (13726) [005] d..2 29484.544682: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45114            adbd-1007  ( 1007) [000] d..2 29484.544682: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45115          <idle>-0     (-----) [000] d..1 29484.544690: cpu_idle: state=0 cpu_id=0
45116 shell svc 13722-13723 ( 1007) [005] d..2 29484.544696: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45117            adbd-23485 ( 1007) [001] d..2 29484.544710: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45118          <idle>-0     (-----) [001] d..1 29484.544716: cpu_idle: state=0 cpu_id=1
45119          <idle>-0     (-----) [000] d.h3 29484.544727: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45120          <idle>-0     (-----) [000] dnh4 29484.544733: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45121          <idle>-0     (-----) [000] .n.1 29484.544737: cpu_idle: state=4294967295 cpu_id=0
45122          <idle>-0     (-----) [000] d..2 29484.544744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45123   kworker/u17:2-23076 (23076) [000] d..2 29484.544751: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45124   kworker/u17:2-23076 (23076) [000] d..3 29484.544756: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45125              ps-13726 (13726) [005] d..2 29484.544765: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45126              ps-13726 (13726) [005] dn.3 29484.544769: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45127   kworker/u17:2-23076 (23076) [000] d..2 29484.544772: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45128              ps-13726 (13726) [005] d..2 29484.544773: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45129     kworker/0:0-13450 (13450) [000] d..2 29484.544778: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45130     kworker/0:0-13450 (13450) [000] d..3 29484.544786: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45131 shell svc 13722-13723 ( 1007) [005] d..2 29484.544787: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45132          <idle>-0     (-----) [001] .n.1 29484.544791: cpu_idle: state=4294967295 cpu_id=1
45133     kworker/0:0-13450 (13450) [000] d..2 29484.544794: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45134          <idle>-0     (-----) [001] d..2 29484.544797: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45135          <idle>-0     (-----) [000] d..1 29484.544799: cpu_idle: state=0 cpu_id=0
45136            adbd-23485 ( 1007) [001] d..2 29484.544839: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45137          <idle>-0     (-----) [001] d..1 29484.544845: cpu_idle: state=0 cpu_id=1
45138          <idle>-0     (-----) [000] d.h3 29484.544856: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45139              ps-13726 (13726) [005] d..2 29484.544857: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45140          <idle>-0     (-----) [000] dnh4 29484.544861: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45141              ps-13726 (13726) [005] dn.3 29484.544862: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45142          <idle>-0     (-----) [000] .n.1 29484.544865: cpu_idle: state=4294967295 cpu_id=0
45143              ps-13726 (13726) [005] d..2 29484.544866: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45144          <idle>-0     (-----) [000] d..2 29484.544870: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45145   kworker/u17:2-23076 (23076) [000] d..2 29484.544877: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45146 shell svc 13722-13723 ( 1007) [005] d..2 29484.544880: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45147   kworker/u17:2-23076 (23076) [000] d..3 29484.544882: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45148   kworker/u17:2-23076 (23076) [000] d..2 29484.544897: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45149     kworker/0:0-13450 (13450) [000] d..2 29484.544902: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45150     kworker/0:0-13450 (13450) [000] d..3 29484.544910: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45151          <idle>-0     (-----) [001] .n.1 29484.544915: cpu_idle: state=4294967295 cpu_id=1
45152     kworker/0:0-13450 (13450) [000] d..2 29484.544917: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45153          <idle>-0     (-----) [001] d..2 29484.544921: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45154          <idle>-0     (-----) [000] d..1 29484.544923: cpu_idle: state=0 cpu_id=0
45155            adbd-23485 ( 1007) [001] d..2 29484.544936: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45156          <idle>-0     (-----) [001] d..1 29484.544942: cpu_idle: state=0 cpu_id=1
45157              ps-13726 (13726) [005] d..2 29484.544956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45158              ps-13726 (13726) [005] dn.3 29484.544961: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45159              ps-13726 (13726) [005] d..2 29484.544965: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45160 shell svc 13722-13723 ( 1007) [005] d..2 29484.544979: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45161          <idle>-0     (-----) [000] d.h3 29484.544992: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45162          <idle>-0     (-----) [000] dnh4 29484.545000: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45163          <idle>-0     (-----) [000] .n.1 29484.545004: cpu_idle: state=4294967295 cpu_id=0
45164          <idle>-0     (-----) [000] d..2 29484.545010: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45165   kworker/u17:2-23076 (23076) [000] d..2 29484.545017: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45166   kworker/u17:2-23076 (23076) [000] d..3 29484.545022: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45167   kworker/u17:2-23076 (23076) [000] d..2 29484.545038: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45168     kworker/0:0-13450 (13450) [000] d..2 29484.545043: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45169              ps-13726 (13726) [005] d..2 29484.545050: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45170     kworker/0:0-13450 (13450) [000] d..3 29484.545051: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45171              ps-13726 (13726) [005] dn.3 29484.545055: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45172     kworker/0:0-13450 (13450) [000] d..2 29484.545058: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45173              ps-13726 (13726) [005] d..2 29484.545059: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45174            adbd-23484 ( 1007) [000] d..2 29484.545070: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45175 shell svc 13722-13723 ( 1007) [005] d..2 29484.545073: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45176            adbd-23484 ( 1007) [000] d..3 29484.545076: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45177            adbd-23484 ( 1007) [000] d..2 29484.545118: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45178              ps-13726 (13726) [005] d..2 29484.545142: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45179              ps-13726 (13726) [005] dn.3 29484.545146: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45180              ps-13726 (13726) [005] d..2 29484.545150: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45181 shell svc 13722-13723 ( 1007) [005] d..2 29484.545165: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45182            adbd-1007  ( 1007) [000] d..1 29484.545179: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45183            adbd-1007  ( 1007) [000] d..2 29484.545189: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45184          <idle>-0     (-----) [001] .n.1 29484.545194: cpu_idle: state=4294967295 cpu_id=1
45185          <idle>-0     (-----) [001] d..2 29484.545200: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45186            adbd-1007  ( 1007) [000] d..2 29484.545215: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45187          <idle>-0     (-----) [000] d..1 29484.545223: cpu_idle: state=0 cpu_id=0
45188              ps-13726 (13726) [005] d..2 29484.545233: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45189              ps-13726 (13726) [005] dn.3 29484.545237: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45190              ps-13726 (13726) [005] d..2 29484.545241: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45191            adbd-23485 ( 1007) [001] d..2 29484.545243: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45192          <idle>-0     (-----) [001] d..1 29484.545250: cpu_idle: state=0 cpu_id=1
45193          <idle>-0     (-----) [000] d.h3 29484.545250: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45194 shell svc 13722-13723 ( 1007) [005] d..2 29484.545255: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45195          <idle>-0     (-----) [000] dnh4 29484.545257: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45196          <idle>-0     (-----) [000] .n.1 29484.545264: cpu_idle: state=4294967295 cpu_id=0
45197          <idle>-0     (-----) [000] d..2 29484.545271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45198   kworker/u17:2-23076 (23076) [000] d..2 29484.545278: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45199   kworker/u17:2-23076 (23076) [000] d..3 29484.545284: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45200   kworker/u17:2-23076 (23076) [000] d..2 29484.545301: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45201     kworker/0:0-13450 (13450) [000] d..2 29484.545306: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45202     kworker/0:0-13450 (13450) [000] d..3 29484.545314: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45203          <idle>-0     (-----) [001] .n.1 29484.545320: cpu_idle: state=4294967295 cpu_id=1
45204              ps-13726 (13726) [005] d..2 29484.545322: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45205     kworker/0:0-13450 (13450) [000] d..2 29484.545323: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45206          <idle>-0     (-----) [001] d..2 29484.545326: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45207              ps-13726 (13726) [005] dn.3 29484.545326: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45208          <idle>-0     (-----) [000] d..1 29484.545329: cpu_idle: state=0 cpu_id=0
45209              ps-13726 (13726) [005] d..2 29484.545330: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45210 shell svc 13722-13723 ( 1007) [005] d..2 29484.545344: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45211            adbd-23485 ( 1007) [001] d..2 29484.545368: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45212          <idle>-0     (-----) [001] d..1 29484.545374: cpu_idle: state=0 cpu_id=1
45213          <idle>-0     (-----) [000] d.h3 29484.545395: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45214          <idle>-0     (-----) [000] dnh4 29484.545400: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45215          <idle>-0     (-----) [000] .n.1 29484.545404: cpu_idle: state=4294967295 cpu_id=0
45216          <idle>-0     (-----) [000] d..2 29484.545410: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45217              ps-13726 (13726) [005] d..2 29484.545411: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45218              ps-13726 (13726) [005] dn.3 29484.545416: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45219   kworker/u17:2-23076 (23076) [000] d..2 29484.545416: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45220              ps-13726 (13726) [005] d..2 29484.545420: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45221   kworker/u17:2-23076 (23076) [000] d..3 29484.545421: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45222 shell svc 13722-13723 ( 1007) [005] d..2 29484.545434: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45223   kworker/u17:2-23076 (23076) [000] d..2 29484.545435: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45224     kworker/0:0-13450 (13450) [000] d..2 29484.545440: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45225     kworker/0:0-13450 (13450) [000] d..3 29484.545448: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45226          <idle>-0     (-----) [001] .n.1 29484.545453: cpu_idle: state=4294967295 cpu_id=1
45227     kworker/0:0-13450 (13450) [000] d..2 29484.545456: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45228          <idle>-0     (-----) [001] d..2 29484.545459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45229          <idle>-0     (-----) [000] d..1 29484.545461: cpu_idle: state=0 cpu_id=0
45230            adbd-23485 ( 1007) [001] d..2 29484.545475: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45231          <idle>-0     (-----) [001] d..1 29484.545481: cpu_idle: state=0 cpu_id=1
45232              ps-13726 (13726) [005] d..2 29484.545503: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45233              ps-13726 (13726) [005] dn.3 29484.545508: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45234              ps-13726 (13726) [005] d..2 29484.545512: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45235 shell svc 13722-13723 ( 1007) [005] d..2 29484.545526: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45236          <idle>-0     (-----) [000] d.h3 29484.545540: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45237          <idle>-0     (-----) [000] dnh4 29484.545545: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45238          <idle>-0     (-----) [000] .n.1 29484.545549: cpu_idle: state=4294967295 cpu_id=0
45239          <idle>-0     (-----) [000] d..2 29484.545555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45240   kworker/u17:2-23076 (23076) [000] d..2 29484.545561: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45241   kworker/u17:2-23076 (23076) [000] d..3 29484.545566: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45242   kworker/u17:2-23076 (23076) [000] d..2 29484.545581: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45243     kworker/0:0-13450 (13450) [000] d..2 29484.545587: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45244              ps-13726 (13726) [005] d..2 29484.545594: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45245     kworker/0:0-13450 (13450) [000] d..3 29484.545595: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45246              ps-13726 (13726) [005] dn.3 29484.545598: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45247              ps-13726 (13726) [005] d..2 29484.545602: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45248     kworker/0:0-13450 (13450) [000] d..2 29484.545603: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45249            adbd-23484 ( 1007) [000] d..2 29484.545614: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45250 shell svc 13722-13723 ( 1007) [005] d..2 29484.545616: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45251            adbd-23484 ( 1007) [000] d..3 29484.545620: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45252            adbd-23484 ( 1007) [000] d..2 29484.545660: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45253              ps-13726 (13726) [005] d..2 29484.545688: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45254              ps-13726 (13726) [005] dn.3 29484.545693: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45255              ps-13726 (13726) [005] d..2 29484.545696: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45256 shell svc 13722-13723 ( 1007) [005] d..2 29484.545711: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45257            adbd-1007  ( 1007) [000] d..1 29484.545720: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45258            adbd-1007  ( 1007) [000] d..2 29484.545731: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45259          <idle>-0     (-----) [001] .n.1 29484.545736: cpu_idle: state=4294967295 cpu_id=1
45260          <idle>-0     (-----) [001] d..2 29484.545742: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45261            adbd-1007  ( 1007) [000] d..2 29484.545758: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45262          <idle>-0     (-----) [000] d..1 29484.545765: cpu_idle: state=0 cpu_id=0
45263              ps-13726 (13726) [005] d..2 29484.545779: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45264              ps-13726 (13726) [005] dn.3 29484.545784: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45265            adbd-23485 ( 1007) [001] d..2 29484.545784: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45266              ps-13726 (13726) [005] d..2 29484.545788: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45267          <idle>-0     (-----) [001] d..1 29484.545791: cpu_idle: state=0 cpu_id=1
45268 shell svc 13722-13723 ( 1007) [005] d..2 29484.545802: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45269          <idle>-0     (-----) [000] d.h3 29484.545810: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45270          <idle>-0     (-----) [000] dnh4 29484.545816: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45271          <idle>-0     (-----) [000] .n.1 29484.545821: cpu_idle: state=4294967295 cpu_id=0
45272          <idle>-0     (-----) [000] d..2 29484.545828: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45273   kworker/u17:2-23076 (23076) [000] d..2 29484.545835: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45274   kworker/u17:2-23076 (23076) [000] d..3 29484.545840: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45275   kworker/u17:2-23076 (23076) [000] d..2 29484.545856: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45276     kworker/0:0-13450 (13450) [000] d..2 29484.545861: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45277     kworker/0:0-13450 (13450) [000] d..3 29484.545870: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45278              ps-13726 (13726) [005] d..2 29484.545873: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45279          <idle>-0     (-----) [001] .n.1 29484.545875: cpu_idle: state=4294967295 cpu_id=1
45280              ps-13726 (13726) [005] dn.3 29484.545877: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45281     kworker/0:0-13450 (13450) [000] d..2 29484.545878: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45282          <idle>-0     (-----) [001] d..2 29484.545881: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45283              ps-13726 (13726) [005] d..2 29484.545881: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45284          <idle>-0     (-----) [000] d..1 29484.545884: cpu_idle: state=0 cpu_id=0
45285 shell svc 13722-13723 ( 1007) [005] d..2 29484.545897: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45286            adbd-23485 ( 1007) [001] d..2 29484.545923: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45287          <idle>-0     (-----) [001] d..1 29484.545929: cpu_idle: state=0 cpu_id=1
45288          <idle>-0     (-----) [000] d.h3 29484.545938: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45289          <idle>-0     (-----) [000] dnh4 29484.545943: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45290          <idle>-0     (-----) [000] .n.1 29484.545948: cpu_idle: state=4294967295 cpu_id=0
45291          <idle>-0     (-----) [000] d..2 29484.545953: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45292   kworker/u17:2-23076 (23076) [000] d..2 29484.545960: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45293   kworker/u17:2-23076 (23076) [000] d..3 29484.545964: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45294              ps-13726 (13726) [005] d..2 29484.545968: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45295              ps-13726 (13726) [005] dn.3 29484.545972: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45296              ps-13726 (13726) [005] d..2 29484.545976: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45297   kworker/u17:2-23076 (23076) [000] d..2 29484.545980: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45298     kworker/0:0-13450 (13450) [000] d..2 29484.545985: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45299 shell svc 13722-13723 ( 1007) [005] d..2 29484.545990: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45300     kworker/0:0-13450 (13450) [000] d..3 29484.545994: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45301          <idle>-0     (-----) [001] .n.1 29484.545999: cpu_idle: state=4294967295 cpu_id=1
45302     kworker/0:0-13450 (13450) [000] d..2 29484.546001: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45303          <idle>-0     (-----) [001] d..2 29484.546005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45304          <idle>-0     (-----) [000] d..1 29484.546007: cpu_idle: state=0 cpu_id=0
45305            adbd-23485 ( 1007) [001] d..2 29484.546019: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45306          <idle>-0     (-----) [001] d..1 29484.546025: cpu_idle: state=0 cpu_id=1
45307              ps-13726 (13726) [005] d..2 29484.546062: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45308              ps-13726 (13726) [005] dn.3 29484.546067: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45309              ps-13726 (13726) [005] d..2 29484.546070: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45310          <idle>-0     (-----) [000] d.h3 29484.546082: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45311 shell svc 13722-13723 ( 1007) [005] d..2 29484.546085: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45312          <idle>-0     (-----) [000] dnh4 29484.546087: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45313          <idle>-0     (-----) [000] .n.1 29484.546091: cpu_idle: state=4294967295 cpu_id=0
45314          <idle>-0     (-----) [000] d..2 29484.546097: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45315   kworker/u17:2-23076 (23076) [000] d..2 29484.546102: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45316   kworker/u17:2-23076 (23076) [000] d..3 29484.546107: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45317   kworker/u17:2-23076 (23076) [000] d..2 29484.546122: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45318     kworker/0:0-13450 (13450) [000] d..2 29484.546128: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45319     kworker/0:0-13450 (13450) [000] d..3 29484.546137: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45320     kworker/0:0-13450 (13450) [000] d..2 29484.546144: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45321              ps-13726 (13726) [005] d..2 29484.546155: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45322            adbd-23484 ( 1007) [000] d..2 29484.546155: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45323              ps-13726 (13726) [005] dn.3 29484.546160: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45324            adbd-23484 ( 1007) [000] d..3 29484.546161: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45325              ps-13726 (13726) [005] d..2 29484.546163: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45326 shell svc 13722-13723 ( 1007) [005] d..2 29484.546178: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45327            adbd-23484 ( 1007) [000] d..2 29484.546203: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45328              ps-13726 (13726) [005] d..2 29484.546247: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45329              ps-13726 (13726) [005] dn.3 29484.546251: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45330              ps-13726 (13726) [005] d..2 29484.546255: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45331            adbd-1007  ( 1007) [000] d..1 29484.546262: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45332 shell svc 13722-13723 ( 1007) [005] d..2 29484.546269: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45333            adbd-1007  ( 1007) [000] d..2 29484.546276: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45334          <idle>-0     (-----) [001] .n.1 29484.546280: cpu_idle: state=4294967295 cpu_id=1
45335          <idle>-0     (-----) [001] d..2 29484.546286: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45336            adbd-1007  ( 1007) [000] d..2 29484.546302: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45337          <idle>-0     (-----) [000] d..1 29484.546310: cpu_idle: state=0 cpu_id=0
45338            adbd-23485 ( 1007) [001] d..2 29484.546329: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45339          <idle>-0     (-----) [001] d..1 29484.546335: cpu_idle: state=0 cpu_id=1
45340              ps-13726 (13726) [005] d..2 29484.546338: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45341              ps-13726 (13726) [005] dn.3 29484.546343: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45342              ps-13726 (13726) [005] d..2 29484.546347: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45343          <idle>-0     (-----) [000] d.h3 29484.546351: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45344          <idle>-0     (-----) [000] dnh4 29484.546357: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45345 shell svc 13722-13723 ( 1007) [005] d..2 29484.546361: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45346          <idle>-0     (-----) [000] .n.1 29484.546362: cpu_idle: state=4294967295 cpu_id=0
45347          <idle>-0     (-----) [000] d..2 29484.546369: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45348   kworker/u17:2-23076 (23076) [000] d..2 29484.546376: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45349   kworker/u17:2-23076 (23076) [000] d..3 29484.546381: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45350   kworker/u17:2-23076 (23076) [000] d..2 29484.546397: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45351     kworker/0:0-13450 (13450) [000] d..2 29484.546402: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45352     kworker/0:0-13450 (13450) [000] d..3 29484.546411: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45353          <idle>-0     (-----) [001] .n.1 29484.546416: cpu_idle: state=4294967295 cpu_id=1
45354     kworker/0:0-13450 (13450) [000] d..2 29484.546419: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45355          <idle>-0     (-----) [001] d..2 29484.546422: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45356          <idle>-0     (-----) [000] d..1 29484.546425: cpu_idle: state=0 cpu_id=0
45357              ps-13726 (13726) [005] d..2 29484.546435: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45358              ps-13726 (13726) [005] dn.3 29484.546440: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45359              ps-13726 (13726) [005] d..2 29484.546444: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45360 shell svc 13722-13723 ( 1007) [005] d..2 29484.546458: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45361            adbd-23485 ( 1007) [001] d..2 29484.546464: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45362          <idle>-0     (-----) [001] d..1 29484.546470: cpu_idle: state=0 cpu_id=1
45363          <idle>-0     (-----) [000] d.h3 29484.546477: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45364          <idle>-0     (-----) [000] dnh4 29484.546482: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45365          <idle>-0     (-----) [000] .n.1 29484.546487: cpu_idle: state=4294967295 cpu_id=0
45366          <idle>-0     (-----) [000] d..2 29484.546494: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45367   kworker/u17:2-23076 (23076) [000] d..2 29484.546500: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45368   kworker/u17:2-23076 (23076) [000] d..3 29484.546504: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45369   kworker/u17:2-23076 (23076) [000] d..2 29484.546520: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45370     kworker/0:0-13450 (13450) [000] d..2 29484.546524: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45371              ps-13726 (13726) [005] d..2 29484.546524: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45372              ps-13726 (13726) [005] dn.3 29484.546529: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45373              ps-13726 (13726) [005] d..2 29484.546533: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45374     kworker/0:0-13450 (13450) [000] d..3 29484.546534: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45375          <idle>-0     (-----) [001] .n.1 29484.546538: cpu_idle: state=4294967295 cpu_id=1
45376     kworker/0:0-13450 (13450) [000] d..2 29484.546541: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45377          <idle>-0     (-----) [001] d..2 29484.546544: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45378          <idle>-0     (-----) [000] d..1 29484.546546: cpu_idle: state=0 cpu_id=0
45379 shell svc 13722-13723 ( 1007) [005] d..2 29484.546547: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45380            adbd-23485 ( 1007) [001] d..2 29484.546559: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45381          <idle>-0     (-----) [001] d..1 29484.546565: cpu_idle: state=0 cpu_id=1
45382              ps-13726 (13726) [005] d..2 29484.546614: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45383              ps-13726 (13726) [005] dn.3 29484.546619: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45384              ps-13726 (13726) [005] d..2 29484.546622: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45385          <idle>-0     (-----) [000] d.h3 29484.546628: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45386          <idle>-0     (-----) [000] dnh4 29484.546633: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45387 shell svc 13722-13723 ( 1007) [005] d..2 29484.546636: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45388          <idle>-0     (-----) [000] .n.1 29484.546637: cpu_idle: state=4294967295 cpu_id=0
45389          <idle>-0     (-----) [000] d..2 29484.546643: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45390   kworker/u17:2-23076 (23076) [000] d..2 29484.546648: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45391   kworker/u17:2-23076 (23076) [000] d..3 29484.546653: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45392   kworker/u17:2-23076 (23076) [000] d..2 29484.546667: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45393     kworker/0:0-13450 (13450) [000] d..2 29484.546673: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45394     kworker/0:0-13450 (13450) [000] d..3 29484.546682: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45395     kworker/0:0-13450 (13450) [000] d..2 29484.546690: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45396            adbd-23484 ( 1007) [000] d..2 29484.546701: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45397              ps-13726 (13726) [005] d..2 29484.546701: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45398              ps-13726 (13726) [005] dn.3 29484.546706: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45399            adbd-23484 ( 1007) [000] d..3 29484.546706: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45400              ps-13726 (13726) [005] d..2 29484.546710: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45401 shell svc 13722-13723 ( 1007) [005] d..2 29484.546724: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45402            adbd-23484 ( 1007) [000] d..2 29484.546746: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45403              ps-13726 (13726) [005] d..2 29484.546796: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45404              ps-13726 (13726) [005] dn.3 29484.546800: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45405              ps-13726 (13726) [005] d..2 29484.546804: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45406            adbd-1007  ( 1007) [000] d..1 29484.546806: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45407            adbd-1007  ( 1007) [000] d..2 29484.546817: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45408 shell svc 13722-13723 ( 1007) [005] d..2 29484.546819: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45409          <idle>-0     (-----) [001] .n.1 29484.546821: cpu_idle: state=4294967295 cpu_id=1
45410          <idle>-0     (-----) [001] d..2 29484.546827: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45411            adbd-1007  ( 1007) [000] d..2 29484.546843: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45412          <idle>-0     (-----) [000] d..1 29484.546851: cpu_idle: state=0 cpu_id=0
45413            adbd-23485 ( 1007) [001] d..2 29484.546869: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45414          <idle>-0     (-----) [001] d..1 29484.546876: cpu_idle: state=0 cpu_id=1
45415              ps-13726 (13726) [005] d..2 29484.546887: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45416              ps-13726 (13726) [005] dn.3 29484.546891: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45417          <idle>-0     (-----) [000] d.h3 29484.546894: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45418              ps-13726 (13726) [005] d..2 29484.546895: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45419          <idle>-0     (-----) [000] dnh4 29484.546900: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45420          <idle>-0     (-----) [000] .n.1 29484.546904: cpu_idle: state=4294967295 cpu_id=0
45421 shell svc 13722-13723 ( 1007) [005] d..2 29484.546909: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45422          <idle>-0     (-----) [000] d..2 29484.546911: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45423   kworker/u17:2-23076 (23076) [000] d..2 29484.546918: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45424   kworker/u17:2-23076 (23076) [000] d..3 29484.546923: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45425   kworker/u17:2-23076 (23076) [000] d..2 29484.546939: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45426     kworker/0:0-13450 (13450) [000] d..2 29484.546944: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45427     kworker/0:0-13450 (13450) [000] d..3 29484.546952: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45428          <idle>-0     (-----) [001] .n.1 29484.546957: cpu_idle: state=4294967295 cpu_id=1
45429     kworker/0:0-13450 (13450) [000] d..2 29484.546960: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45430          <idle>-0     (-----) [001] d..2 29484.546963: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45431          <idle>-0     (-----) [000] d..1 29484.546966: cpu_idle: state=0 cpu_id=0
45432              ps-13726 (13726) [005] d..2 29484.546975: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45433              ps-13726 (13726) [005] dn.3 29484.546980: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45434              ps-13726 (13726) [005] d..2 29484.546983: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45435 shell svc 13722-13723 ( 1007) [005] d..2 29484.546997: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45436            adbd-23485 ( 1007) [001] d..2 29484.547005: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45437          <idle>-0     (-----) [001] d..1 29484.547011: cpu_idle: state=0 cpu_id=1
45438          <idle>-0     (-----) [000] d.h3 29484.547020: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45439          <idle>-0     (-----) [000] dnh4 29484.547028: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45440          <idle>-0     (-----) [000] .n.1 29484.547032: cpu_idle: state=4294967295 cpu_id=0
45441          <idle>-0     (-----) [000] d..2 29484.547038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45442   kworker/u17:2-23076 (23076) [000] d..2 29484.547044: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45443   kworker/u17:2-23076 (23076) [000] d..3 29484.547049: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45444              ps-13726 (13726) [005] d..2 29484.547079: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45445   kworker/u17:2-23076 (23076) [000] d..2 29484.547082: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45446              ps-13726 (13726) [005] dn.3 29484.547084: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45447     kworker/0:0-13450 (13450) [000] d..2 29484.547087: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45448              ps-13726 (13726) [005] d..2 29484.547088: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45449     kworker/0:0-13450 (13450) [000] d..3 29484.547096: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45450          <idle>-0     (-----) [001] .n.1 29484.547101: cpu_idle: state=4294967295 cpu_id=1
45451 shell svc 13722-13723 ( 1007) [005] d..2 29484.547103: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45452     kworker/0:0-13450 (13450) [000] d..2 29484.547104: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45453          <idle>-0     (-----) [001] d..2 29484.547108: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45454          <idle>-0     (-----) [000] d..1 29484.547109: cpu_idle: state=0 cpu_id=0
45455            adbd-23485 ( 1007) [001] d..2 29484.547127: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45456          <idle>-0     (-----) [001] d..1 29484.547134: cpu_idle: state=0 cpu_id=1
45457          <idle>-0     (-----) [000] d.h3 29484.547173: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45458          <idle>-0     (-----) [000] dnh4 29484.547178: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45459              ps-13726 (13726) [005] d..2 29484.547179: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45460          <idle>-0     (-----) [000] .n.1 29484.547182: cpu_idle: state=4294967295 cpu_id=0
45461              ps-13726 (13726) [005] dn.3 29484.547184: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45462          <idle>-0     (-----) [000] d..2 29484.547187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45463              ps-13726 (13726) [005] d..2 29484.547188: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45464   kworker/u17:2-23076 (23076) [000] d..2 29484.547193: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45465   kworker/u17:2-23076 (23076) [000] d..3 29484.547197: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45466 shell svc 13722-13723 ( 1007) [005] d..2 29484.547202: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45467   kworker/u17:2-23076 (23076) [000] d..2 29484.547212: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45468     kworker/0:0-13450 (13450) [000] d..2 29484.547218: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45469     kworker/0:0-13450 (13450) [000] d..3 29484.547226: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45470     kworker/0:0-13450 (13450) [000] d..2 29484.547234: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45471            adbd-23484 ( 1007) [000] d..2 29484.547245: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45472            adbd-23484 ( 1007) [000] d..3 29484.547250: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45473              ps-13726 (13726) [005] d..2 29484.547274: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45474              ps-13726 (13726) [005] dn.3 29484.547279: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45475              ps-13726 (13726) [005] d..2 29484.547282: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45476            adbd-23484 ( 1007) [000] d..2 29484.547293: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45477 shell svc 13722-13723 ( 1007) [005] d..2 29484.547296: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45478            adbd-1007  ( 1007) [000] d..1 29484.547352: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45479            adbd-1007  ( 1007) [000] d..2 29484.547362: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45480              ps-13726 (13726) [005] d..2 29484.547366: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45481          <idle>-0     (-----) [001] .n.1 29484.547367: cpu_idle: state=4294967295 cpu_id=1
45482              ps-13726 (13726) [005] dn.3 29484.547370: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45483          <idle>-0     (-----) [001] d..2 29484.547372: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45484              ps-13726 (13726) [005] d..2 29484.547374: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45485            adbd-1007  ( 1007) [000] d..2 29484.547388: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45486 shell svc 13722-13723 ( 1007) [005] d..2 29484.547389: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45487          <idle>-0     (-----) [000] d..1 29484.547394: cpu_idle: state=0 cpu_id=0
45488            adbd-23485 ( 1007) [001] d..2 29484.547415: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45489          <idle>-0     (-----) [001] d..1 29484.547422: cpu_idle: state=0 cpu_id=1
45490          <idle>-0     (-----) [000] d.h3 29484.547436: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45491          <idle>-0     (-----) [000] dnh4 29484.547441: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45492          <idle>-0     (-----) [000] .n.1 29484.547446: cpu_idle: state=4294967295 cpu_id=0
45493          <idle>-0     (-----) [000] d..2 29484.547451: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45494              ps-13726 (13726) [005] d..2 29484.547454: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45495   kworker/u17:2-23076 (23076) [000] d..2 29484.547459: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45496              ps-13726 (13726) [005] dn.3 29484.547459: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45497              ps-13726 (13726) [005] d..2 29484.547463: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45498   kworker/u17:2-23076 (23076) [000] d..3 29484.547464: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45499 shell svc 13722-13723 ( 1007) [005] d..2 29484.547477: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45500   kworker/u17:2-23076 (23076) [000] d..2 29484.547480: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45501     kworker/0:0-13450 (13450) [000] d..2 29484.547485: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45502     kworker/0:0-13450 (13450) [000] d..3 29484.547494: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45503          <idle>-0     (-----) [001] .n.1 29484.547499: cpu_idle: state=4294967295 cpu_id=1
45504     kworker/0:0-13450 (13450) [000] d..2 29484.547501: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45505          <idle>-0     (-----) [001] d..2 29484.547505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45506          <idle>-0     (-----) [000] d..1 29484.547506: cpu_idle: state=0 cpu_id=0
45507              ps-13726 (13726) [005] d..2 29484.547545: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45508            adbd-23485 ( 1007) [001] d..2 29484.547547: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45509              ps-13726 (13726) [005] dn.3 29484.547550: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45510              ps-13726 (13726) [005] d..2 29484.547554: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45511          <idle>-0     (-----) [001] d..1 29484.547554: cpu_idle: state=0 cpu_id=1
45512          <idle>-0     (-----) [000] d.h3 29484.547566: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45513 shell svc 13722-13723 ( 1007) [005] d..2 29484.547569: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45514          <idle>-0     (-----) [000] dnh4 29484.547571: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45515          <idle>-0     (-----) [000] .n.1 29484.547575: cpu_idle: state=4294967295 cpu_id=0
45516          <idle>-0     (-----) [000] d..2 29484.547580: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45517   kworker/u17:2-23076 (23076) [000] d..2 29484.547586: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45518   kworker/u17:2-23076 (23076) [000] d..3 29484.547590: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45519   kworker/u17:2-23076 (23076) [000] d..2 29484.547606: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45520     kworker/0:0-13450 (13450) [000] d..2 29484.547611: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45521     kworker/0:0-13450 (13450) [000] d..3 29484.547619: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45522          <idle>-0     (-----) [001] .n.1 29484.547624: cpu_idle: state=4294967295 cpu_id=1
45523     kworker/0:0-13450 (13450) [000] d..2 29484.547627: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45524          <idle>-0     (-----) [001] d..2 29484.547630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45525          <idle>-0     (-----) [000] d..1 29484.547632: cpu_idle: state=0 cpu_id=0
45526              ps-13726 (13726) [005] d..2 29484.547640: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45527              ps-13726 (13726) [005] dn.3 29484.547644: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45528            adbd-23485 ( 1007) [001] d..2 29484.547646: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45529              ps-13726 (13726) [005] d..2 29484.547648: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45530          <idle>-0     (-----) [001] d..1 29484.547652: cpu_idle: state=0 cpu_id=1
45531 shell svc 13722-13723 ( 1007) [005] d..2 29484.547662: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45532          <idle>-0     (-----) [000] d.h3 29484.547704: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45533          <idle>-0     (-----) [000] dnh4 29484.547709: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45534          <idle>-0     (-----) [000] .n.1 29484.547713: cpu_idle: state=4294967295 cpu_id=0
45535          <idle>-0     (-----) [000] d..2 29484.547718: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45536   kworker/u17:2-23076 (23076) [000] d..2 29484.547723: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45537   kworker/u17:2-23076 (23076) [000] d..3 29484.547727: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45538              ps-13726 (13726) [005] d..2 29484.547733: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45539              ps-13726 (13726) [005] dn.3 29484.547738: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45540              ps-13726 (13726) [005] d..2 29484.547742: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45541   kworker/u17:2-23076 (23076) [000] d..2 29484.547743: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45542     kworker/0:0-13450 (13450) [000] d..2 29484.547748: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45543 shell svc 13722-13723 ( 1007) [005] d..2 29484.547756: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45544     kworker/0:0-13450 (13450) [000] d..3 29484.547757: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45545     kworker/0:0-13450 (13450) [000] d..2 29484.547764: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45546            adbd-23484 ( 1007) [000] d..2 29484.547775: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45547            adbd-23484 ( 1007) [000] d..3 29484.547781: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45548            adbd-23484 ( 1007) [000] d..2 29484.547822: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45549              ps-13726 (13726) [005] d..2 29484.547826: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45550              ps-13726 (13726) [005] dn.3 29484.547831: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45551              ps-13726 (13726) [005] d..2 29484.547834: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45552 shell svc 13722-13723 ( 1007) [005] d..2 29484.547849: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45553            adbd-1007  ( 1007) [000] d..1 29484.547882: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45554            adbd-1007  ( 1007) [000] d..2 29484.547893: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45555          <idle>-0     (-----) [001] .n.1 29484.547898: cpu_idle: state=4294967295 cpu_id=1
45556          <idle>-0     (-----) [001] d..2 29484.547903: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45557            adbd-1007  ( 1007) [000] d..2 29484.547919: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45558          <idle>-0     (-----) [000] d..1 29484.547924: cpu_idle: state=0 cpu_id=0
45559              ps-13726 (13726) [005] d..2 29484.547928: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45560              ps-13726 (13726) [005] dn.3 29484.547933: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45561              ps-13726 (13726) [005] d..2 29484.547936: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45562            adbd-23485 ( 1007) [001] d..2 29484.547945: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45563 shell svc 13722-13723 ( 1007) [005] d..2 29484.547951: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45564          <idle>-0     (-----) [001] d..1 29484.547952: cpu_idle: state=0 cpu_id=1
45565          <idle>-0     (-----) [000] d.h3 29484.547959: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45566          <idle>-0     (-----) [000] dnh4 29484.547964: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45567          <idle>-0     (-----) [000] .n.1 29484.547969: cpu_idle: state=4294967295 cpu_id=0
45568          <idle>-0     (-----) [000] d..2 29484.547974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45569   kworker/u17:2-23076 (23076) [000] d..2 29484.547981: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45570   kworker/u17:2-23076 (23076) [000] d..3 29484.547986: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45571   kworker/u17:2-23076 (23076) [000] d..2 29484.548002: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45572     kworker/0:0-13450 (13450) [000] d..2 29484.548007: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45573     kworker/0:0-13450 (13450) [000] d..3 29484.548016: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45574          <idle>-0     (-----) [001] .n.1 29484.548021: cpu_idle: state=4294967295 cpu_id=1
45575              ps-13726 (13726) [005] d..2 29484.548021: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45576     kworker/0:0-13450 (13450) [000] d..2 29484.548024: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45577              ps-13726 (13726) [005] dn.3 29484.548026: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45578          <idle>-0     (-----) [001] d..2 29484.548027: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45579          <idle>-0     (-----) [000] d..1 29484.548028: cpu_idle: state=0 cpu_id=0
45580              ps-13726 (13726) [005] d..2 29484.548030: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45581 shell svc 13722-13723 ( 1007) [005] d..2 29484.548044: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45582            adbd-23485 ( 1007) [001] d..2 29484.548069: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45583          <idle>-0     (-----) [001] d..1 29484.548076: cpu_idle: state=0 cpu_id=1
45584          <idle>-0     (-----) [000] d.h3 29484.548103: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45585          <idle>-0     (-----) [000] dnh4 29484.548108: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45586              ps-13726 (13726) [005] d..2 29484.548113: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45587          <idle>-0     (-----) [000] .n.1 29484.548113: cpu_idle: state=4294967295 cpu_id=0
45588          <idle>-0     (-----) [000] d..2 29484.548117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45589              ps-13726 (13726) [005] dn.3 29484.548117: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45590              ps-13726 (13726) [005] d..2 29484.548121: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45591   kworker/u17:2-23076 (23076) [000] d..2 29484.548123: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45592   kworker/u17:2-23076 (23076) [000] d..3 29484.548129: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45593 shell svc 13722-13723 ( 1007) [005] d..2 29484.548135: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45594   kworker/u17:2-23076 (23076) [000] d..2 29484.548144: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45595     kworker/0:0-13450 (13450) [000] d..2 29484.548148: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45596     kworker/0:0-13450 (13450) [000] d..3 29484.548156: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45597          <idle>-0     (-----) [001] .n.1 29484.548162: cpu_idle: state=4294967295 cpu_id=1
45598     kworker/0:0-13450 (13450) [000] d..2 29484.548164: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45599          <idle>-0     (-----) [001] d..2 29484.548168: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45600          <idle>-0     (-----) [000] d..1 29484.548168: cpu_idle: state=0 cpu_id=0
45601            adbd-23485 ( 1007) [001] d..2 29484.548182: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45602          <idle>-0     (-----) [001] d..1 29484.548188: cpu_idle: state=0 cpu_id=1
45603              ps-13726 (13726) [005] d..2 29484.548205: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45604              ps-13726 (13726) [005] dn.3 29484.548210: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45605              ps-13726 (13726) [005] d..2 29484.548213: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45606 shell svc 13722-13723 ( 1007) [005] d..2 29484.548227: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45607          <idle>-0     (-----) [000] d.h3 29484.548249: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45608          <idle>-0     (-----) [000] dnh4 29484.548254: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45609          <idle>-0     (-----) [000] .n.1 29484.548258: cpu_idle: state=4294967295 cpu_id=0
45610          <idle>-0     (-----) [000] d..2 29484.548262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45611   kworker/u17:2-23076 (23076) [000] d..2 29484.548268: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45612   kworker/u17:2-23076 (23076) [000] d..3 29484.548272: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45613   kworker/u17:2-23076 (23076) [000] d..2 29484.548287: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45614     kworker/0:0-13450 (13450) [000] d..2 29484.548292: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45615              ps-13726 (13726) [005] d..2 29484.548294: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45616              ps-13726 (13726) [005] dn.3 29484.548299: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45617     kworker/0:0-13450 (13450) [000] d..3 29484.548301: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45618              ps-13726 (13726) [005] d..2 29484.548302: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45619     kworker/0:0-13450 (13450) [000] d..2 29484.548309: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45620 shell svc 13722-13723 ( 1007) [005] d..2 29484.548316: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45621            adbd-23484 ( 1007) [000] d..2 29484.548320: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45622            adbd-23484 ( 1007) [000] d..3 29484.548326: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45623            adbd-23484 ( 1007) [000] d..2 29484.548366: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45624              ps-13726 (13726) [005] d..2 29484.548385: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45625              ps-13726 (13726) [005] dn.3 29484.548390: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45626              ps-13726 (13726) [005] d..2 29484.548393: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45627 shell svc 13722-13723 ( 1007) [005] d..2 29484.548408: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45628            adbd-1007  ( 1007) [000] d..1 29484.548426: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45629            adbd-1007  ( 1007) [000] d..2 29484.548440: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45630          <idle>-0     (-----) [001] .n.1 29484.548444: cpu_idle: state=4294967295 cpu_id=1
45631          <idle>-0     (-----) [001] d..2 29484.548451: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45632            adbd-1007  ( 1007) [000] d..2 29484.548466: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45633          <idle>-0     (-----) [000] d..1 29484.548472: cpu_idle: state=0 cpu_id=0
45634              ps-13726 (13726) [005] d..2 29484.548475: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45635              ps-13726 (13726) [005] dn.3 29484.548480: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45636              ps-13726 (13726) [005] d..2 29484.548483: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45637            adbd-23485 ( 1007) [001] d..2 29484.548493: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45638 shell svc 13722-13723 ( 1007) [005] d..2 29484.548498: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45639          <idle>-0     (-----) [001] d..1 29484.548500: cpu_idle: state=0 cpu_id=1
45640          <idle>-0     (-----) [000] d.h3 29484.548520: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45641          <idle>-0     (-----) [000] dnh4 29484.548526: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45642          <idle>-0     (-----) [000] .n.1 29484.548531: cpu_idle: state=4294967295 cpu_id=0
45643          <idle>-0     (-----) [000] d..2 29484.548535: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45644   kworker/u17:2-23076 (23076) [000] d..2 29484.548543: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45645   kworker/u17:2-23076 (23076) [000] d..3 29484.548548: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45646   kworker/u17:2-23076 (23076) [000] d..2 29484.548563: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45647              ps-13726 (13726) [005] d..2 29484.548565: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45648     kworker/0:0-13450 (13450) [000] d..2 29484.548568: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45649              ps-13726 (13726) [005] dn.3 29484.548570: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45650              ps-13726 (13726) [005] d..2 29484.548573: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45651     kworker/0:0-13450 (13450) [000] d..3 29484.548577: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45652          <idle>-0     (-----) [001] .n.1 29484.548582: cpu_idle: state=4294967295 cpu_id=1
45653     kworker/0:0-13450 (13450) [000] d..2 29484.548585: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45654 shell svc 13722-13723 ( 1007) [005] d..2 29484.548587: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45655          <idle>-0     (-----) [001] d..2 29484.548588: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45656          <idle>-0     (-----) [000] d..1 29484.548590: cpu_idle: state=0 cpu_id=0
45657            adbd-23485 ( 1007) [001] d..2 29484.548631: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45658          <idle>-0     (-----) [001] d..1 29484.548637: cpu_idle: state=0 cpu_id=1
45659          <idle>-0     (-----) [000] d.h3 29484.548650: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45660          <idle>-0     (-----) [000] dnh4 29484.548655: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45661          <idle>-0     (-----) [000] .n.1 29484.548659: cpu_idle: state=4294967295 cpu_id=0
45662              ps-13726 (13726) [005] d..2 29484.548662: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45663          <idle>-0     (-----) [000] d..2 29484.548663: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45664              ps-13726 (13726) [005] dn.3 29484.548667: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45665   kworker/u17:2-23076 (23076) [000] d..2 29484.548670: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45666              ps-13726 (13726) [005] d..2 29484.548670: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45667   kworker/u17:2-23076 (23076) [000] d..3 29484.548674: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45668 shell svc 13722-13723 ( 1007) [005] d..2 29484.548685: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45669   kworker/u17:2-23076 (23076) [000] d..2 29484.548689: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45670     kworker/0:0-13450 (13450) [000] d..2 29484.548694: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45671     kworker/0:0-13450 (13450) [000] d..3 29484.548703: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45672          <idle>-0     (-----) [001] .n.1 29484.548708: cpu_idle: state=4294967295 cpu_id=1
45673     kworker/0:0-13450 (13450) [000] d..2 29484.548710: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45674          <idle>-0     (-----) [001] d..2 29484.548714: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45675          <idle>-0     (-----) [000] d..1 29484.548714: cpu_idle: state=0 cpu_id=0
45676            adbd-23485 ( 1007) [001] d..2 29484.548729: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45677          <idle>-0     (-----) [001] d..1 29484.548734: cpu_idle: state=0 cpu_id=1
45678              ps-13726 (13726) [005] d..2 29484.548756: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45679              ps-13726 (13726) [005] dn.3 29484.548761: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45680              ps-13726 (13726) [005] d..2 29484.548764: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45681 shell svc 13722-13723 ( 1007) [005] d..2 29484.548779: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45682          <idle>-0     (-----) [000] d.h3 29484.548791: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45683          <idle>-0     (-----) [000] dnh4 29484.548796: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45684          <idle>-0     (-----) [000] .n.1 29484.548800: cpu_idle: state=4294967295 cpu_id=0
45685          <idle>-0     (-----) [000] d..2 29484.548805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45686   kworker/u17:2-23076 (23076) [000] d..2 29484.548811: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45687   kworker/u17:2-23076 (23076) [000] d..3 29484.548816: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45688   kworker/u17:2-23076 (23076) [000] d..2 29484.548831: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45689     kworker/0:0-13450 (13450) [000] d..2 29484.548837: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45690              ps-13726 (13726) [005] d..2 29484.548846: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45691     kworker/0:0-13450 (13450) [000] d..3 29484.548846: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45692              ps-13726 (13726) [005] dn.3 29484.548850: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45693     kworker/0:0-13450 (13450) [000] d..2 29484.548854: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45694              ps-13726 (13726) [005] d..2 29484.548854: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45695            adbd-23484 ( 1007) [000] d..2 29484.548865: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45696 shell svc 13722-13723 ( 1007) [005] d..2 29484.548868: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45697            adbd-23484 ( 1007) [000] d..3 29484.548870: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45698            adbd-23484 ( 1007) [000] d..2 29484.548911: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45699              ps-13726 (13726) [005] d..2 29484.548935: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45700              ps-13726 (13726) [005] dn.3 29484.548940: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45701              ps-13726 (13726) [005] d..2 29484.548943: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45702 shell svc 13722-13723 ( 1007) [005] d..2 29484.548958: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45703            adbd-1007  ( 1007) [000] d..1 29484.548971: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45704            adbd-1007  ( 1007) [000] d..2 29484.548982: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45705          <idle>-0     (-----) [001] .n.1 29484.548986: cpu_idle: state=4294967295 cpu_id=1
45706          <idle>-0     (-----) [001] d..2 29484.548992: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45707            adbd-1007  ( 1007) [000] d..2 29484.549007: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45708          <idle>-0     (-----) [000] d..1 29484.549013: cpu_idle: state=0 cpu_id=0
45709              ps-13726 (13726) [005] d..2 29484.549026: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45710              ps-13726 (13726) [005] dn.3 29484.549031: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45711            adbd-23485 ( 1007) [001] d..2 29484.549034: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45712              ps-13726 (13726) [005] d..2 29484.549034: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45713          <idle>-0     (-----) [001] d..1 29484.549041: cpu_idle: state=0 cpu_id=1
45714 shell svc 13722-13723 ( 1007) [005] d..2 29484.549048: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45715          <idle>-0     (-----) [000] d.h3 29484.549060: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45716          <idle>-0     (-----) [000] dnh4 29484.549069: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45717          <idle>-0     (-----) [000] .n.1 29484.549074: cpu_idle: state=4294967295 cpu_id=0
45718          <idle>-0     (-----) [000] d..2 29484.549079: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45719   kworker/u17:2-23076 (23076) [000] d..2 29484.549087: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45720   kworker/u17:2-23076 (23076) [000] d..3 29484.549092: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45721   kworker/u17:2-23076 (23076) [000] d..2 29484.549108: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45722     kworker/0:0-13450 (13450) [000] d..2 29484.549114: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45723              ps-13726 (13726) [005] d..2 29484.549117: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45724              ps-13726 (13726) [005] dn.3 29484.549121: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45725     kworker/0:0-13450 (13450) [000] d..3 29484.549122: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45726              ps-13726 (13726) [005] d..2 29484.549125: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45727          <idle>-0     (-----) [001] .n.1 29484.549127: cpu_idle: state=4294967295 cpu_id=1
45728     kworker/0:0-13450 (13450) [000] d..2 29484.549130: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45729          <idle>-0     (-----) [001] d..2 29484.549133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45730          <idle>-0     (-----) [000] d..1 29484.549134: cpu_idle: state=0 cpu_id=0
45731 shell svc 13722-13723 ( 1007) [005] d..2 29484.549139: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45732            adbd-23485 ( 1007) [001] d..2 29484.549176: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45733          <idle>-0     (-----) [001] d..1 29484.549182: cpu_idle: state=0 cpu_id=1
45734          <idle>-0     (-----) [000] d.h3 29484.549192: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45735          <idle>-0     (-----) [000] dnh4 29484.549197: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45736          <idle>-0     (-----) [000] .n.1 29484.549201: cpu_idle: state=4294967295 cpu_id=0
45737          <idle>-0     (-----) [000] d..2 29484.549205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45738              ps-13726 (13726) [005] d..2 29484.549207: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45739   kworker/u17:2-23076 (23076) [000] d..2 29484.549212: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45740              ps-13726 (13726) [005] dn.3 29484.549212: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45741              ps-13726 (13726) [005] d..2 29484.549215: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45742   kworker/u17:2-23076 (23076) [000] d..3 29484.549216: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45743 shell svc 13722-13723 ( 1007) [005] d..2 29484.549230: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45744   kworker/u17:2-23076 (23076) [000] d..2 29484.549231: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45745     kworker/0:0-13450 (13450) [000] d..2 29484.549236: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45746     kworker/0:0-13450 (13450) [000] d..3 29484.549244: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45747          <idle>-0     (-----) [001] .n.1 29484.549249: cpu_idle: state=4294967295 cpu_id=1
45748     kworker/0:0-13450 (13450) [000] d..2 29484.549252: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45749          <idle>-0     (-----) [001] d..2 29484.549255: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45750          <idle>-0     (-----) [000] d..1 29484.549256: cpu_idle: state=0 cpu_id=0
45751            adbd-23485 ( 1007) [001] d..2 29484.549270: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45752          <idle>-0     (-----) [001] d..1 29484.549276: cpu_idle: state=0 cpu_id=1
45753              ps-13726 (13726) [005] d..2 29484.549298: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45754              ps-13726 (13726) [005] dn.3 29484.549303: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45755              ps-13726 (13726) [005] d..2 29484.549306: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45756 shell svc 13722-13723 ( 1007) [005] d..2 29484.549320: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45757          <idle>-0     (-----) [000] d.h3 29484.549335: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45758          <idle>-0     (-----) [000] dnh4 29484.549340: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45759          <idle>-0     (-----) [000] .n.1 29484.549344: cpu_idle: state=4294967295 cpu_id=0
45760          <idle>-0     (-----) [000] d..2 29484.549348: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45761   kworker/u17:2-23076 (23076) [000] d..2 29484.549355: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45762   kworker/u17:2-23076 (23076) [000] d..3 29484.549360: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45763   kworker/u17:2-23076 (23076) [000] d..2 29484.549375: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45764     kworker/0:0-13450 (13450) [000] d..2 29484.549380: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45765     kworker/0:0-13450 (13450) [000] d..3 29484.549388: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45766              ps-13726 (13726) [005] d..2 29484.549392: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45767     kworker/0:0-13450 (13450) [000] d..2 29484.549396: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45768              ps-13726 (13726) [005] dn.3 29484.549396: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45769              ps-13726 (13726) [005] d..2 29484.549400: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45770            adbd-23484 ( 1007) [000] d..2 29484.549407: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45771            adbd-23484 ( 1007) [000] d..3 29484.549413: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45772 shell svc 13722-13723 ( 1007) [005] d..2 29484.549415: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45773            adbd-23484 ( 1007) [000] d..2 29484.549454: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45774              ps-13726 (13726) [005] d..2 29484.549483: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45775              ps-13726 (13726) [005] dn.3 29484.549488: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45776              ps-13726 (13726) [005] d..2 29484.549492: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45777 shell svc 13722-13723 ( 1007) [005] d..2 29484.549506: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45778            adbd-1007  ( 1007) [000] d..1 29484.549515: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45779            adbd-1007  ( 1007) [000] d..2 29484.549525: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45780          <idle>-0     (-----) [001] .n.1 29484.549529: cpu_idle: state=4294967295 cpu_id=1
45781          <idle>-0     (-----) [001] d..2 29484.549535: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45782            adbd-1007  ( 1007) [000] d..2 29484.549551: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45783          <idle>-0     (-----) [000] d..1 29484.549557: cpu_idle: state=0 cpu_id=0
45784              ps-13726 (13726) [005] d..2 29484.549576: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45785            adbd-23485 ( 1007) [001] d..2 29484.549578: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45786              ps-13726 (13726) [005] dn.3 29484.549580: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45787              ps-13726 (13726) [005] d..2 29484.549584: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45788          <idle>-0     (-----) [001] d..1 29484.549584: cpu_idle: state=0 cpu_id=1
45789 shell svc 13722-13723 ( 1007) [005] d..2 29484.549599: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45790          <idle>-0     (-----) [000] d.h3 29484.549602: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45791          <idle>-0     (-----) [000] dnh4 29484.549608: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45792          <idle>-0     (-----) [000] .n.1 29484.549612: cpu_idle: state=4294967295 cpu_id=0
45793          <idle>-0     (-----) [000] d..2 29484.549617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45794   kworker/u17:2-23076 (23076) [000] d..2 29484.549625: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45795   kworker/u17:2-23076 (23076) [000] d..3 29484.549630: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45796   kworker/u17:2-23076 (23076) [000] d..2 29484.549645: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45797     kworker/0:0-13450 (13450) [000] d..2 29484.549651: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45798     kworker/0:0-13450 (13450) [000] d..3 29484.549659: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45799          <idle>-0     (-----) [001] .n.1 29484.549664: cpu_idle: state=4294967295 cpu_id=1
45800              ps-13726 (13726) [005] d..2 29484.549666: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45801     kworker/0:0-13450 (13450) [000] d..2 29484.549667: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45802          <idle>-0     (-----) [001] d..2 29484.549670: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45803              ps-13726 (13726) [005] dn.3 29484.549671: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45804          <idle>-0     (-----) [000] d..1 29484.549671: cpu_idle: state=0 cpu_id=0
45805              ps-13726 (13726) [005] d..2 29484.549674: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45806 shell svc 13722-13723 ( 1007) [005] d..2 29484.549688: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45807            adbd-23485 ( 1007) [001] d..2 29484.549712: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45808          <idle>-0     (-----) [001] d..1 29484.549719: cpu_idle: state=0 cpu_id=1
45809          <idle>-0     (-----) [000] d.h3 29484.549731: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45810          <idle>-0     (-----) [000] dnh4 29484.549736: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45811          <idle>-0     (-----) [000] .n.1 29484.549740: cpu_idle: state=4294967295 cpu_id=0
45812          <idle>-0     (-----) [000] d..2 29484.549745: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45813   kworker/u17:2-23076 (23076) [000] d..2 29484.549751: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45814   kworker/u17:2-23076 (23076) [000] d..3 29484.549755: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45815              ps-13726 (13726) [005] d..2 29484.549757: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45816              ps-13726 (13726) [005] dn.3 29484.549762: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45817              ps-13726 (13726) [005] d..2 29484.549765: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45818   kworker/u17:2-23076 (23076) [000] d..2 29484.549770: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45819     kworker/0:0-13450 (13450) [000] d..2 29484.549775: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45820 shell svc 13722-13723 ( 1007) [005] d..2 29484.549780: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45821     kworker/0:0-13450 (13450) [000] d..3 29484.549783: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45822          <idle>-0     (-----) [001] .n.1 29484.549788: cpu_idle: state=4294967295 cpu_id=1
45823     kworker/0:0-13450 (13450) [000] d..2 29484.549791: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45824          <idle>-0     (-----) [001] d..2 29484.549794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45825          <idle>-0     (-----) [000] d..1 29484.549795: cpu_idle: state=0 cpu_id=0
45826            adbd-23485 ( 1007) [001] d..2 29484.549811: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45827          <idle>-0     (-----) [001] d..1 29484.549817: cpu_idle: state=0 cpu_id=1
45828              ps-13726 (13726) [005] d..2 29484.549848: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45829              ps-13726 (13726) [005] dn.3 29484.549853: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45830              ps-13726 (13726) [005] d..2 29484.549857: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45831 shell svc 13722-13723 ( 1007) [005] d..2 29484.549871: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45832          <idle>-0     (-----) [000] d.h3 29484.549895: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45833          <idle>-0     (-----) [000] dnh4 29484.549900: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45834          <idle>-0     (-----) [000] .n.1 29484.549904: cpu_idle: state=4294967295 cpu_id=0
45835          <idle>-0     (-----) [000] d..2 29484.549908: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45836   kworker/u17:2-23076 (23076) [000] d..2 29484.549915: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45837   kworker/u17:2-23076 (23076) [000] d..3 29484.549920: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45838   kworker/u17:2-23076 (23076) [000] d..2 29484.549934: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45839              ps-13726 (13726) [005] d..2 29484.549939: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45840     kworker/0:0-13450 (13450) [000] d..2 29484.549940: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45841              ps-13726 (13726) [005] dn.3 29484.549944: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45842              ps-13726 (13726) [005] d..2 29484.549947: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45843     kworker/0:0-13450 (13450) [000] d..3 29484.549949: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45844     kworker/0:0-13450 (13450) [000] d..2 29484.549956: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45845 shell svc 13722-13723 ( 1007) [005] d..2 29484.549961: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45846            adbd-23484 ( 1007) [000] d..2 29484.549968: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45847            adbd-23484 ( 1007) [000] d..3 29484.549973: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45848            adbd-23484 ( 1007) [000] d..2 29484.550014: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45849              ps-13726 (13726) [005] d..2 29484.550028: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45850              ps-13726 (13726) [005] dn.3 29484.550033: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45851              ps-13726 (13726) [005] d..2 29484.550036: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45852 shell svc 13722-13723 ( 1007) [005] d..2 29484.550051: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45853            adbd-1007  ( 1007) [000] d..1 29484.550073: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45854            adbd-1007  ( 1007) [000] d..2 29484.550084: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45855          <idle>-0     (-----) [001] .n.1 29484.550088: cpu_idle: state=4294967295 cpu_id=1
45856          <idle>-0     (-----) [001] d..2 29484.550094: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45857            adbd-1007  ( 1007) [000] d..2 29484.550111: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45858          <idle>-0     (-----) [000] d..1 29484.550116: cpu_idle: state=0 cpu_id=0
45859              ps-13726 (13726) [005] d..2 29484.550123: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45860              ps-13726 (13726) [005] dn.3 29484.550128: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45861              ps-13726 (13726) [005] d..2 29484.550132: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45862            adbd-23485 ( 1007) [001] d..2 29484.550137: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45863          <idle>-0     (-----) [001] d..1 29484.550143: cpu_idle: state=0 cpu_id=1
45864          <idle>-0     (-----) [000] d.h3 29484.550144: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45865 shell svc 13722-13723 ( 1007) [005] d..2 29484.550146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45866          <idle>-0     (-----) [000] dnh4 29484.550151: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45867          <idle>-0     (-----) [000] .n.1 29484.550155: cpu_idle: state=4294967295 cpu_id=0
45868          <idle>-0     (-----) [000] d..2 29484.550160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45869   kworker/u17:2-23076 (23076) [000] d..2 29484.550167: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45870   kworker/u17:2-23076 (23076) [000] d..3 29484.550172: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45871   kworker/u17:2-23076 (23076) [000] d..2 29484.550189: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45872     kworker/0:0-13450 (13450) [000] d..2 29484.550194: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45873     kworker/0:0-13450 (13450) [000] d..3 29484.550202: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45874          <idle>-0     (-----) [001] .n.1 29484.550207: cpu_idle: state=4294967295 cpu_id=1
45875     kworker/0:0-13450 (13450) [000] d..2 29484.550210: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45876          <idle>-0     (-----) [001] d..2 29484.550213: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45877              ps-13726 (13726) [005] d..2 29484.550214: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45878          <idle>-0     (-----) [000] d..1 29484.550215: cpu_idle: state=0 cpu_id=0
45879              ps-13726 (13726) [005] dn.3 29484.550219: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45880              ps-13726 (13726) [005] d..2 29484.550222: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45881 shell svc 13722-13723 ( 1007) [005] d..2 29484.550236: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45882            adbd-23485 ( 1007) [001] d..2 29484.550256: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45883          <idle>-0     (-----) [001] d..1 29484.550263: cpu_idle: state=0 cpu_id=1
45884          <idle>-0     (-----) [000] d.h3 29484.550275: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45885          <idle>-0     (-----) [000] dnh4 29484.550280: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45886          <idle>-0     (-----) [000] .n.1 29484.550284: cpu_idle: state=4294967295 cpu_id=0
45887          <idle>-0     (-----) [000] d..2 29484.550288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45888   kworker/u17:2-23076 (23076) [000] d..2 29484.550295: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45889   kworker/u17:2-23076 (23076) [000] d..3 29484.550300: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45890              ps-13726 (13726) [005] d..2 29484.550305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45891              ps-13726 (13726) [005] dn.3 29484.550310: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45892              ps-13726 (13726) [005] d..2 29484.550314: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45893   kworker/u17:2-23076 (23076) [000] d..2 29484.550315: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45894     kworker/0:0-13450 (13450) [000] d..2 29484.550320: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45895 shell svc 13722-13723 ( 1007) [005] d..2 29484.550328: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45896     kworker/0:0-13450 (13450) [000] d..3 29484.550328: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45897          <idle>-0     (-----) [001] .n.1 29484.550333: cpu_idle: state=4294967295 cpu_id=1
45898     kworker/0:0-13450 (13450) [000] d..2 29484.550336: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45899          <idle>-0     (-----) [001] d..2 29484.550339: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45900          <idle>-0     (-----) [000] d..1 29484.550340: cpu_idle: state=0 cpu_id=0
45901            adbd-23485 ( 1007) [001] d..2 29484.550354: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45902          <idle>-0     (-----) [001] d..1 29484.550360: cpu_idle: state=0 cpu_id=1
45903              ps-13726 (13726) [005] d.s2 29484.550400: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
45904          <idle>-0     (-----) [000] d.s2 29484.550405: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45905          <idle>-0     (-----) [000] dns3 29484.550418: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
45906          <idle>-0     (-----) [000] dnH4 29484.550433: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45907              ps-13726 (13726) [005] d..2 29484.550434: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45908              ps-13726 (13726) [005] dn.3 29484.550439: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45909          <idle>-0     (-----) [000] dnH5 29484.550440: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45910              ps-13726 (13726) [005] d..2 29484.550442: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45911          <idle>-0     (-----) [000] dnH3 29484.550448: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
45912 shell svc 13722-13723 ( 1007) [005] d..2 29484.550458: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45913          <idle>-0     (-----) [000] .n.1 29484.550459: cpu_idle: state=4294967295 cpu_id=0
45914          <idle>-0     (-----) [000] d..2 29484.550464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
45915  kworker/u16:10-23868 (23868) [000] .... 29484.550499: clk_set_rate: l3_cluster1_vote_clk 940800000
45916  kworker/u16:10-23868 (23868) [000] .... 29484.550518: clk_set_rate: l3_cluster0_vote_clk 1132800000
45917  kworker/u16:10-23868 (23868) [000] .... 29484.550521: clk_set_rate: l3_clk 1132800000
45918              ps-13726 (13726) [005] d..2 29484.550546: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45919              ps-13726 (13726) [005] dn.3 29484.550551: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45920              ps-13726 (13726) [005] d..2 29484.550558: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45921  kworker/u16:10-23868 (23868) [000] d..2 29484.550574: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45922 shell svc 13722-13723 ( 1007) [005] d..2 29484.550578: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45923   kworker/u17:2-23076 (23076) [000] d..2 29484.550584: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45924   kworker/u17:2-23076 (23076) [000] d..3 29484.550590: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45925   kworker/u17:2-23076 (23076) [000] d..2 29484.550605: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
45926     rcu_preempt-7     (    7) [000] d..2 29484.550610: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
45927     rcu_preempt-7     (    7) [000] d..3 29484.550620: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
45928     rcu_preempt-7     (    7) [000] d..2 29484.550627: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
45929         rcuop/2-29    (   29) [000] d..2 29484.550631: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
45930         rcuop/2-29    (   29) [000] d..3 29484.550640: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
45931         rcuop/2-29    (   29) [000] d..2 29484.550645: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
45932              ps-13726 (13726) [005] d..2 29484.550647: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45933              ps-13726 (13726) [005] dn.3 29484.550652: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45934              ps-13726 (13726) [005] d..2 29484.550656: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45935 shell svc 13722-13723 ( 1007) [005] d..2 29484.550670: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45936         rcuop/3-37    (   37) [000] d..2 29484.550692: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45937     kworker/0:0-13450 (13450) [000] d..2 29484.550698: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
45938     kworker/0:0-13450 (13450) [000] d..3 29484.550707: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
45939     kworker/0:0-13450 (13450) [000] d..2 29484.550715: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
45940            adbd-23484 ( 1007) [000] d..2 29484.550727: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
45941            adbd-23484 ( 1007) [000] d..3 29484.550732: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
45942              ps-13726 (13726) [005] d..2 29484.550738: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45943              ps-13726 (13726) [005] dn.3 29484.550742: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45944              ps-13726 (13726) [005] d..2 29484.550746: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45945 shell svc 13722-13723 ( 1007) [005] d..2 29484.550760: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45946            adbd-23484 ( 1007) [000] d..2 29484.550774: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
45947              ps-13726 (13726) [005] d..2 29484.550827: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45948              ps-13726 (13726) [005] dn.3 29484.550832: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45949              ps-13726 (13726) [005] d..2 29484.550836: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45950            adbd-1007  ( 1007) [000] d..1 29484.550837: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45951 shell svc 13722-13723 ( 1007) [005] d..2 29484.550850: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45952            adbd-1007  ( 1007) [000] d..2 29484.550851: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45953          <idle>-0     (-----) [001] .n.1 29484.550855: cpu_idle: state=4294967295 cpu_id=1
45954          <idle>-0     (-----) [001] d..2 29484.550862: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45955            adbd-1007  ( 1007) [000] d..2 29484.550878: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45956          <idle>-0     (-----) [000] d..1 29484.550886: cpu_idle: state=0 cpu_id=0
45957            adbd-23485 ( 1007) [001] d..2 29484.550906: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45958          <idle>-0     (-----) [001] d..1 29484.550913: cpu_idle: state=0 cpu_id=1
45959          <idle>-0     (-----) [000] d.h3 29484.550913: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45960          <idle>-0     (-----) [000] dnh4 29484.550919: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45961              ps-13726 (13726) [005] d..2 29484.550921: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45962          <idle>-0     (-----) [000] .n.1 29484.550924: cpu_idle: state=4294967295 cpu_id=0
45963              ps-13726 (13726) [005] dn.3 29484.550926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45964              ps-13726 (13726) [005] d..2 29484.550929: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45965          <idle>-0     (-----) [000] d..2 29484.550930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45966   kworker/u17:2-23076 (23076) [000] d..2 29484.550938: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45967   kworker/u17:2-23076 (23076) [000] d..3 29484.550943: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45968 shell svc 13722-13723 ( 1007) [005] d..2 29484.550945: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45969   kworker/u17:2-23076 (23076) [000] d..2 29484.550959: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45970     kworker/0:0-13450 (13450) [000] d..2 29484.550964: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45971     kworker/0:0-13450 (13450) [000] d..3 29484.550973: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45972          <idle>-0     (-----) [001] .n.1 29484.550977: cpu_idle: state=4294967295 cpu_id=1
45973     kworker/0:0-13450 (13450) [000] d..2 29484.550981: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45974          <idle>-0     (-----) [001] d..2 29484.550983: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45975          <idle>-0     (-----) [000] d..1 29484.550987: cpu_idle: state=0 cpu_id=0
45976              ps-13726 (13726) [005] d..2 29484.551014: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45977              ps-13726 (13726) [005] dn.3 29484.551018: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45978              ps-13726 (13726) [005] d..2 29484.551023: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45979            adbd-23485 ( 1007) [001] d..2 29484.551028: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45980          <idle>-0     (-----) [001] d..1 29484.551034: cpu_idle: state=0 cpu_id=1
45981 shell svc 13722-13723 ( 1007) [005] d..2 29484.551037: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
45982          <idle>-0     (-----) [000] d.h3 29484.551043: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45983          <idle>-0     (-----) [000] dnh4 29484.551048: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
45984          <idle>-0     (-----) [000] .n.1 29484.551052: cpu_idle: state=4294967295 cpu_id=0
45985          <idle>-0     (-----) [000] d..2 29484.551058: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
45986   kworker/u17:2-23076 (23076) [000] d..2 29484.551064: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45987   kworker/u17:2-23076 (23076) [000] d..3 29484.551069: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
45988   kworker/u17:2-23076 (23076) [000] d..2 29484.551085: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
45989     kworker/0:0-13450 (13450) [000] d..2 29484.551090: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
45990     kworker/0:0-13450 (13450) [000] d..3 29484.551098: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
45991          <idle>-0     (-----) [001] .n.1 29484.551103: cpu_idle: state=4294967295 cpu_id=1
45992              ps-13726 (13726) [005] d..2 29484.551105: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45993     kworker/0:0-13450 (13450) [000] d..2 29484.551106: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45994          <idle>-0     (-----) [001] d..2 29484.551109: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
45995              ps-13726 (13726) [005] dn.3 29484.551110: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
45996          <idle>-0     (-----) [000] d..1 29484.551112: cpu_idle: state=0 cpu_id=0
45997              ps-13726 (13726) [005] d..2 29484.551113: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
45998            adbd-23485 ( 1007) [001] d..2 29484.551124: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45999 shell svc 13722-13723 ( 1007) [005] d..2 29484.551127: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46000          <idle>-0     (-----) [001] d..1 29484.551130: cpu_idle: state=0 cpu_id=1
46001              ps-13726 (13726) [005] d..2 29484.551197: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46002              ps-13726 (13726) [005] dn.3 29484.551202: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46003              ps-13726 (13726) [005] d..2 29484.551205: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46004          <idle>-0     (-----) [000] d.h3 29484.551208: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46005          <idle>-0     (-----) [000] dnh4 29484.551217: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46006 shell svc 13722-13723 ( 1007) [005] d..2 29484.551219: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46007          <idle>-0     (-----) [000] .n.1 29484.551221: cpu_idle: state=4294967295 cpu_id=0
46008          <idle>-0     (-----) [000] d..2 29484.551227: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46009   kworker/u17:2-23076 (23076) [000] d..2 29484.551233: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46010   kworker/u17:2-23076 (23076) [000] d..3 29484.551238: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46011   kworker/u17:2-23076 (23076) [000] d..2 29484.551252: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46012     kworker/0:0-13450 (13450) [000] d..2 29484.551258: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46013     kworker/0:0-13450 (13450) [000] d..3 29484.551266: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46014     kworker/0:0-13450 (13450) [000] d..2 29484.551274: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46015            adbd-23484 ( 1007) [000] d..2 29484.551285: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46016            adbd-23484 ( 1007) [000] d..3 29484.551291: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46017            adbd-23484 ( 1007) [000] d..2 29484.551331: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46018            adbd-1007  ( 1007) [000] d..1 29484.551390: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46019            adbd-1007  ( 1007) [000] d..2 29484.551401: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46020          <idle>-0     (-----) [001] .n.1 29484.551406: cpu_idle: state=4294967295 cpu_id=1
46021          <idle>-0     (-----) [001] d..2 29484.551412: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46022            adbd-1007  ( 1007) [000] d..2 29484.551428: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46023          <idle>-0     (-----) [000] d..1 29484.551435: cpu_idle: state=0 cpu_id=0
46024            adbd-23485 ( 1007) [001] d..2 29484.551453: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46025          <idle>-0     (-----) [001] d..1 29484.551460: cpu_idle: state=0 cpu_id=1
46026          <idle>-0     (-----) [000] d.h3 29484.551479: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46027          <idle>-0     (-----) [000] dnh4 29484.551485: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46028          <idle>-0     (-----) [000] .n.1 29484.551490: cpu_idle: state=4294967295 cpu_id=0
46029          <idle>-0     (-----) [000] d..2 29484.551497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46030   kworker/u17:2-23076 (23076) [000] d..2 29484.551504: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46031   kworker/u17:2-23076 (23076) [000] d..3 29484.551509: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46032   kworker/u17:2-23076 (23076) [000] d..2 29484.551524: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46033     kworker/0:0-13450 (13450) [000] d..2 29484.551529: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46034     kworker/0:0-13450 (13450) [000] d..3 29484.551538: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46035          <idle>-0     (-----) [001] .n.1 29484.551543: cpu_idle: state=4294967295 cpu_id=1
46036     kworker/0:0-13450 (13450) [000] d..2 29484.551546: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46037          <idle>-0     (-----) [001] d..2 29484.551549: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46038          <idle>-0     (-----) [000] d..1 29484.551551: cpu_idle: state=0 cpu_id=0
46039            adbd-23485 ( 1007) [001] d..2 29484.551590: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46040          <idle>-0     (-----) [001] d..1 29484.551597: cpu_idle: state=0 cpu_id=1
46041          <idle>-0     (-----) [000] d.h3 29484.551607: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46042          <idle>-0     (-----) [000] dnh4 29484.551613: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46043          <idle>-0     (-----) [000] .n.1 29484.551617: cpu_idle: state=4294967295 cpu_id=0
46044          <idle>-0     (-----) [000] d..2 29484.551623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46045   kworker/u17:2-23076 (23076) [000] d..2 29484.551629: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46046              ps-13726 (13726) [005] d..2 29484.551629: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46047   kworker/u17:2-23076 (23076) [000] d..3 29484.551633: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46048              ps-13726 (13726) [005] dn.3 29484.551635: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46049              ps-13726 (13726) [005] d..2 29484.551638: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46050   kworker/u17:2-23076 (23076) [000] d..2 29484.551648: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46051     kworker/0:0-13450 (13450) [000] d..2 29484.551653: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46052 shell svc 13722-13723 ( 1007) [005] d..2 29484.551654: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46053     kworker/0:0-13450 (13450) [000] d..3 29484.551662: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46054          <idle>-0     (-----) [001] .n.1 29484.551667: cpu_idle: state=4294967295 cpu_id=1
46055     kworker/0:0-13450 (13450) [000] d..2 29484.551669: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46056          <idle>-0     (-----) [001] d..2 29484.551673: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46057          <idle>-0     (-----) [000] d..1 29484.551675: cpu_idle: state=0 cpu_id=0
46058            adbd-23485 ( 1007) [001] d..2 29484.551687: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46059          <idle>-0     (-----) [001] d..1 29484.551694: cpu_idle: state=0 cpu_id=1
46060              ps-13726 (13726) [005] d..2 29484.551724: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46061              ps-13726 (13726) [005] dn.3 29484.551729: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46062              ps-13726 (13726) [005] d..2 29484.551732: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46063 shell svc 13722-13723 ( 1007) [005] d..2 29484.551746: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46064          <idle>-0     (-----) [000] d.h3 29484.551760: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46065          <idle>-0     (-----) [000] dnh4 29484.551765: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46066          <idle>-0     (-----) [000] .n.1 29484.551770: cpu_idle: state=4294967295 cpu_id=0
46067          <idle>-0     (-----) [000] d..2 29484.551776: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46068   kworker/u17:2-23076 (23076) [000] d..2 29484.551783: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46069   kworker/u17:2-23076 (23076) [000] d..3 29484.551787: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46070   kworker/u17:2-23076 (23076) [000] d..2 29484.551803: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46071     kworker/0:0-13450 (13450) [000] d..2 29484.551808: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46072              ps-13726 (13726) [005] d..2 29484.551816: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46073     kworker/0:0-13450 (13450) [000] d..3 29484.551817: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46074              ps-13726 (13726) [005] dn.3 29484.551821: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46075     kworker/0:0-13450 (13450) [000] d..2 29484.551824: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46076              ps-13726 (13726) [005] d..2 29484.551825: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46077            adbd-23484 ( 1007) [000] d..2 29484.551836: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46078 shell svc 13722-13723 ( 1007) [005] d..2 29484.551839: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46079            adbd-23484 ( 1007) [000] d..3 29484.551842: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46080            adbd-23484 ( 1007) [000] d..2 29484.551884: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46081              ps-13726 (13726) [005] d..2 29484.551908: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46082              ps-13726 (13726) [005] dn.3 29484.551912: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46083              ps-13726 (13726) [005] d..2 29484.551916: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46084 shell svc 13722-13723 ( 1007) [005] d..2 29484.551931: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46085            adbd-1007  ( 1007) [000] d..1 29484.551943: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46086            adbd-1007  ( 1007) [000] d..2 29484.551955: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46087          <idle>-0     (-----) [001] .n.1 29484.551959: cpu_idle: state=4294967295 cpu_id=1
46088          <idle>-0     (-----) [001] d..2 29484.551964: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46089            adbd-1007  ( 1007) [000] d..2 29484.551981: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46090          <idle>-0     (-----) [000] d..1 29484.551988: cpu_idle: state=0 cpu_id=0
46091              ps-13726 (13726) [005] d..2 29484.552004: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46092            adbd-23485 ( 1007) [001] d..2 29484.552007: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46093              ps-13726 (13726) [005] dn.3 29484.552009: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46094              ps-13726 (13726) [005] d..2 29484.552013: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46095          <idle>-0     (-----) [001] d..1 29484.552014: cpu_idle: state=0 cpu_id=1
46096          <idle>-0     (-----) [000] d.h3 29484.552019: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46097          <idle>-0     (-----) [000] dnh4 29484.552025: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46098 shell svc 13722-13723 ( 1007) [005] d..2 29484.552027: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46099          <idle>-0     (-----) [000] .n.1 29484.552030: cpu_idle: state=4294967295 cpu_id=0
46100          <idle>-0     (-----) [000] d..2 29484.552036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46101   kworker/u17:2-23076 (23076) [000] d..2 29484.552043: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46102   kworker/u17:2-23076 (23076) [000] d..3 29484.552049: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46103   kworker/u17:2-23076 (23076) [000] d..2 29484.552064: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46104     kworker/0:0-13450 (13450) [000] d..2 29484.552070: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46105     kworker/0:0-13450 (13450) [000] d..3 29484.552079: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46106          <idle>-0     (-----) [001] .n.1 29484.552084: cpu_idle: state=4294967295 cpu_id=1
46107     kworker/0:0-13450 (13450) [000] d..2 29484.552087: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46108          <idle>-0     (-----) [001] d..2 29484.552090: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46109          <idle>-0     (-----) [000] d..1 29484.552093: cpu_idle: state=0 cpu_id=0
46110              ps-13726 (13726) [005] d..2 29484.552099: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46111              ps-13726 (13726) [005] dn.3 29484.552103: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46112              ps-13726 (13726) [005] d..2 29484.552107: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46113 shell svc 13722-13723 ( 1007) [005] d..2 29484.552121: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46114            adbd-23485 ( 1007) [001] d..2 29484.552133: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46115          <idle>-0     (-----) [001] d..1 29484.552139: cpu_idle: state=0 cpu_id=1
46116          <idle>-0     (-----) [000] d.h3 29484.552146: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46117          <idle>-0     (-----) [000] dnh4 29484.552151: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46118          <idle>-0     (-----) [000] .n.1 29484.552156: cpu_idle: state=4294967295 cpu_id=0
46119          <idle>-0     (-----) [000] d..2 29484.552161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46120   kworker/u17:2-23076 (23076) [000] d..2 29484.552168: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46121   kworker/u17:2-23076 (23076) [000] d..3 29484.552173: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46122   kworker/u17:2-23076 (23076) [000] d..2 29484.552188: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46123              ps-13726 (13726) [005] d..2 29484.552189: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46124     kworker/0:0-13450 (13450) [000] d..2 29484.552193: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46125              ps-13726 (13726) [005] dn.3 29484.552194: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46126              ps-13726 (13726) [005] d..2 29484.552198: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46127     kworker/0:0-13450 (13450) [000] d..3 29484.552201: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46128          <idle>-0     (-----) [001] .n.1 29484.552205: cpu_idle: state=4294967295 cpu_id=1
46129     kworker/0:0-13450 (13450) [000] d..2 29484.552209: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46130          <idle>-0     (-----) [001] d..2 29484.552211: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46131 shell svc 13722-13723 ( 1007) [005] d..2 29484.552212: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46132          <idle>-0     (-----) [000] d..1 29484.552214: cpu_idle: state=0 cpu_id=0
46133            adbd-23485 ( 1007) [001] d..2 29484.552228: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46134          <idle>-0     (-----) [001] d..1 29484.552234: cpu_idle: state=0 cpu_id=1
46135              ps-13726 (13726) [005] d..2 29484.552283: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46136              ps-13726 (13726) [005] dn.3 29484.552287: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46137              ps-13726 (13726) [005] d..2 29484.552291: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46138 shell svc 13722-13723 ( 1007) [005] d..2 29484.552305: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46139          <idle>-0     (-----) [000] d.h3 29484.552307: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46140          <idle>-0     (-----) [000] dnh4 29484.552312: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46141          <idle>-0     (-----) [000] .n.1 29484.552317: cpu_idle: state=4294967295 cpu_id=0
46142          <idle>-0     (-----) [000] d..2 29484.552322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46143   kworker/u17:2-23076 (23076) [000] d..2 29484.552328: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46144   kworker/u17:2-23076 (23076) [000] d..3 29484.552333: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46145   kworker/u17:2-23076 (23076) [000] d..2 29484.552348: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46146     kworker/0:0-13450 (13450) [000] d..2 29484.552353: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46147     kworker/0:0-13450 (13450) [000] d..3 29484.552361: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46148     kworker/0:0-13450 (13450) [000] d..2 29484.552369: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46149              ps-13726 (13726) [005] d..2 29484.552374: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46150              ps-13726 (13726) [005] dn.3 29484.552379: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46151            adbd-23484 ( 1007) [000] d..2 29484.552381: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46152              ps-13726 (13726) [005] d..2 29484.552382: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46153            adbd-23484 ( 1007) [000] d..3 29484.552387: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46154 shell svc 13722-13723 ( 1007) [005] d..2 29484.552396: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46155            adbd-23484 ( 1007) [000] d..2 29484.552428: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46156              ps-13726 (13726) [005] d..2 29484.552463: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46157              ps-13726 (13726) [005] dn.3 29484.552468: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46158              ps-13726 (13726) [005] d..2 29484.552471: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46159 shell svc 13722-13723 ( 1007) [005] d..2 29484.552485: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46160            adbd-1007  ( 1007) [000] d..1 29484.552489: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46161            adbd-1007  ( 1007) [000] d..2 29484.552500: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46162          <idle>-0     (-----) [001] .n.1 29484.552505: cpu_idle: state=4294967295 cpu_id=1
46163          <idle>-0     (-----) [001] d..2 29484.552510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46164            adbd-1007  ( 1007) [000] d..2 29484.552526: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46165          <idle>-0     (-----) [000] d..1 29484.552534: cpu_idle: state=0 cpu_id=0
46166              ps-13726 (13726) [005] d..2 29484.552553: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46167            adbd-23485 ( 1007) [001] d..2 29484.552553: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46168              ps-13726 (13726) [005] dn.3 29484.552557: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46169          <idle>-0     (-----) [001] d..1 29484.552560: cpu_idle: state=0 cpu_id=1
46170              ps-13726 (13726) [005] d..2 29484.552561: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46171          <idle>-0     (-----) [000] d.h3 29484.552563: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46172          <idle>-0     (-----) [000] dnh4 29484.552569: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46173          <idle>-0     (-----) [000] .n.1 29484.552574: cpu_idle: state=4294967295 cpu_id=0
46174 shell svc 13722-13723 ( 1007) [005] d..2 29484.552575: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46175          <idle>-0     (-----) [000] d..2 29484.552581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46176   kworker/u17:2-23076 (23076) [000] d..2 29484.552588: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46177   kworker/u17:2-23076 (23076) [000] d..3 29484.552594: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46178   kworker/u17:2-23076 (23076) [000] d..2 29484.552609: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46179     kworker/0:0-13450 (13450) [000] d..2 29484.552615: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46180     kworker/0:0-13450 (13450) [000] d..3 29484.552624: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46181          <idle>-0     (-----) [001] .n.1 29484.552628: cpu_idle: state=4294967295 cpu_id=1
46182     kworker/0:0-13450 (13450) [000] d..2 29484.552632: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46183          <idle>-0     (-----) [001] d..2 29484.552634: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46184          <idle>-0     (-----) [000] d..1 29484.552637: cpu_idle: state=0 cpu_id=0
46185              ps-13726 (13726) [005] d..2 29484.552642: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46186              ps-13726 (13726) [005] dn.3 29484.552647: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46187              ps-13726 (13726) [005] d..2 29484.552651: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46188 shell svc 13722-13723 ( 1007) [005] d..2 29484.552665: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46189            adbd-23485 ( 1007) [001] d..2 29484.552677: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46190          <idle>-0     (-----) [001] d..1 29484.552684: cpu_idle: state=0 cpu_id=1
46191          <idle>-0     (-----) [000] d.h3 29484.552691: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46192          <idle>-0     (-----) [000] dnh4 29484.552696: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46193          <idle>-0     (-----) [000] .n.1 29484.552701: cpu_idle: state=4294967295 cpu_id=0
46194          <idle>-0     (-----) [000] d..2 29484.552707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46195   kworker/u17:2-23076 (23076) [000] d..2 29484.552714: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46196   kworker/u17:2-23076 (23076) [000] d..3 29484.552718: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46197   kworker/u17:2-23076 (23076) [000] d..2 29484.552734: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46198              ps-13726 (13726) [005] d..2 29484.552739: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46199     kworker/0:0-13450 (13450) [000] d..2 29484.552739: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46200              ps-13726 (13726) [005] dn.3 29484.552744: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46201              ps-13726 (13726) [005] d..2 29484.552747: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46202     kworker/0:0-13450 (13450) [000] d..3 29484.552748: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46203          <idle>-0     (-----) [001] .n.1 29484.552753: cpu_idle: state=4294967295 cpu_id=1
46204     kworker/0:0-13450 (13450) [000] d..2 29484.552756: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46205          <idle>-0     (-----) [001] d..2 29484.552760: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46206          <idle>-0     (-----) [000] d..1 29484.552761: cpu_idle: state=0 cpu_id=0
46207 shell svc 13722-13723 ( 1007) [005] d..2 29484.552762: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46208            adbd-23485 ( 1007) [001] d..2 29484.552775: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46209          <idle>-0     (-----) [001] d..1 29484.552781: cpu_idle: state=0 cpu_id=1
46210              ps-13726 (13726) [005] d..2 29484.552832: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46211              ps-13726 (13726) [005] dn.3 29484.552837: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46212              ps-13726 (13726) [005] d..2 29484.552841: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46213          <idle>-0     (-----) [000] d.h3 29484.552852: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46214 shell svc 13722-13723 ( 1007) [005] d..2 29484.552855: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46215          <idle>-0     (-----) [000] dnh4 29484.552857: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46216          <idle>-0     (-----) [000] .n.1 29484.552861: cpu_idle: state=4294967295 cpu_id=0
46217          <idle>-0     (-----) [000] d..2 29484.552867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46218   kworker/u17:2-23076 (23076) [000] d..2 29484.552873: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46219   kworker/u17:2-23076 (23076) [000] d..3 29484.552878: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46220   kworker/u17:2-23076 (23076) [000] d..2 29484.552894: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46221     kworker/0:0-13450 (13450) [000] d..2 29484.552900: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46222     kworker/0:0-13450 (13450) [000] d..3 29484.552908: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46223     kworker/0:0-13450 (13450) [000] d..2 29484.552916: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46224              ps-13726 (13726) [005] d..2 29484.552922: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46225              ps-13726 (13726) [005] dn.3 29484.552926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46226            adbd-23484 ( 1007) [000] d..2 29484.552928: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46227              ps-13726 (13726) [005] d..2 29484.552930: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46228            adbd-23484 ( 1007) [000] d..3 29484.552933: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46229 shell svc 13722-13723 ( 1007) [005] d..2 29484.552945: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46230            adbd-23484 ( 1007) [000] d..2 29484.552974: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46231              ps-13726 (13726) [005] d..2 29484.553012: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46232              ps-13726 (13726) [005] dn.3 29484.553017: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46233              ps-13726 (13726) [005] d..2 29484.553021: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46234 shell svc 13722-13723 ( 1007) [005] d..2 29484.553035: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46235            adbd-1007  ( 1007) [000] d..1 29484.553036: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46236            adbd-1007  ( 1007) [000] d..2 29484.553050: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46237          <idle>-0     (-----) [001] .n.1 29484.553055: cpu_idle: state=4294967295 cpu_id=1
46238          <idle>-0     (-----) [001] d..2 29484.553061: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46239            adbd-1007  ( 1007) [000] d..2 29484.553077: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46240          <idle>-0     (-----) [000] d..1 29484.553085: cpu_idle: state=0 cpu_id=0
46241              ps-13726 (13726) [005] d..2 29484.553103: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46242            adbd-23485 ( 1007) [001] d..2 29484.553105: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46243              ps-13726 (13726) [005] dn.3 29484.553107: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46244              ps-13726 (13726) [005] d..2 29484.553111: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46245          <idle>-0     (-----) [001] d..1 29484.553111: cpu_idle: state=0 cpu_id=1
46246          <idle>-0     (-----) [000] d.h3 29484.553123: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46247 shell svc 13722-13723 ( 1007) [005] d..2 29484.553125: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46248          <idle>-0     (-----) [000] dnh4 29484.553129: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46249          <idle>-0     (-----) [000] .n.1 29484.553134: cpu_idle: state=4294967295 cpu_id=0
46250          <idle>-0     (-----) [000] d..2 29484.553140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46251   kworker/u17:2-23076 (23076) [000] d..2 29484.553148: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46252   kworker/u17:2-23076 (23076) [000] d..3 29484.553153: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46253   kworker/u17:2-23076 (23076) [000] d..2 29484.553169: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46254     kworker/0:0-13450 (13450) [000] d..2 29484.553175: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46255     kworker/0:0-13450 (13450) [000] d..3 29484.553183: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46256          <idle>-0     (-----) [001] .n.1 29484.553188: cpu_idle: state=4294967295 cpu_id=1
46257     kworker/0:0-13450 (13450) [000] d..2 29484.553191: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46258              ps-13726 (13726) [005] d..2 29484.553193: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46259          <idle>-0     (-----) [001] d..2 29484.553194: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46260          <idle>-0     (-----) [000] d..1 29484.553196: cpu_idle: state=0 cpu_id=0
46261              ps-13726 (13726) [005] dn.3 29484.553198: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46262              ps-13726 (13726) [005] d..2 29484.553201: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46263 shell svc 13722-13723 ( 1007) [005] d..2 29484.553215: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46264            adbd-23485 ( 1007) [001] d..2 29484.553237: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46265          <idle>-0     (-----) [001] d..1 29484.553243: cpu_idle: state=0 cpu_id=1
46266          <idle>-0     (-----) [000] d.h3 29484.553250: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46267          <idle>-0     (-----) [000] dnh4 29484.553259: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46268          <idle>-0     (-----) [000] .n.1 29484.553264: cpu_idle: state=4294967295 cpu_id=0
46269          <idle>-0     (-----) [000] d..2 29484.553270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46270   kworker/u17:2-23076 (23076) [000] d..2 29484.553277: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46271   kworker/u17:2-23076 (23076) [000] d..3 29484.553281: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46272              ps-13726 (13726) [005] d..2 29484.553284: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46273              ps-13726 (13726) [005] dn.3 29484.553288: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46274              ps-13726 (13726) [005] d..2 29484.553292: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46275   kworker/u17:2-23076 (23076) [000] d..2 29484.553296: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46276     kworker/0:0-13450 (13450) [000] d..2 29484.553302: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46277 shell svc 13722-13723 ( 1007) [005] d..2 29484.553306: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46278     kworker/0:0-13450 (13450) [000] d..3 29484.553310: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46279          <idle>-0     (-----) [001] .n.1 29484.553314: cpu_idle: state=4294967295 cpu_id=1
46280     kworker/0:0-13450 (13450) [000] d..2 29484.553317: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46281          <idle>-0     (-----) [001] d..2 29484.553320: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46282          <idle>-0     (-----) [000] d..1 29484.553323: cpu_idle: state=0 cpu_id=0
46283            adbd-23485 ( 1007) [001] d..2 29484.553335: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46284          <idle>-0     (-----) [001] d..1 29484.553341: cpu_idle: state=0 cpu_id=1
46285              ps-13726 (13726) [005] d..2 29484.553378: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46286              ps-13726 (13726) [005] dn.3 29484.553383: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46287              ps-13726 (13726) [005] d..2 29484.553388: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46288          <idle>-0     (-----) [000] d.h3 29484.553398: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46289 shell svc 13722-13723 ( 1007) [005] d..2 29484.553402: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46290          <idle>-0     (-----) [000] dnh4 29484.553403: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46291          <idle>-0     (-----) [000] .n.1 29484.553407: cpu_idle: state=4294967295 cpu_id=0
46292          <idle>-0     (-----) [000] d..2 29484.553413: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46293   kworker/u17:2-23076 (23076) [000] d..2 29484.553418: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46294   kworker/u17:2-23076 (23076) [000] d..3 29484.553423: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46295   kworker/u17:2-23076 (23076) [000] d..2 29484.553438: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46296     kworker/0:0-13450 (13450) [000] d..2 29484.553444: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46297     kworker/0:0-13450 (13450) [000] d..3 29484.553452: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46298     kworker/0:0-13450 (13450) [000] d..2 29484.553460: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46299            adbd-23484 ( 1007) [000] d..2 29484.553471: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46300              ps-13726 (13726) [005] d..2 29484.553473: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46301            adbd-23484 ( 1007) [000] d..3 29484.553477: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46302              ps-13726 (13726) [005] dn.3 29484.553478: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46303              ps-13726 (13726) [005] d..2 29484.553481: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46304 shell svc 13722-13723 ( 1007) [005] d..2 29484.553496: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46305            adbd-23484 ( 1007) [000] d..2 29484.553518: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46306              ps-13726 (13726) [005] d..2 29484.553566: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46307              ps-13726 (13726) [005] dn.3 29484.553570: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46308              ps-13726 (13726) [005] d..2 29484.553574: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46309            adbd-1007  ( 1007) [000] d..1 29484.553577: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46310            adbd-1007  ( 1007) [000] d..2 29484.553588: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46311 shell svc 13722-13723 ( 1007) [005] d..2 29484.553589: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46312          <idle>-0     (-----) [001] .n.1 29484.553593: cpu_idle: state=4294967295 cpu_id=1
46313          <idle>-0     (-----) [001] d..2 29484.553599: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46314            adbd-1007  ( 1007) [000] d..2 29484.553614: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46315          <idle>-0     (-----) [000] d..1 29484.553623: cpu_idle: state=0 cpu_id=0
46316            adbd-23485 ( 1007) [001] d..2 29484.553641: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46317          <idle>-0     (-----) [001] d..1 29484.553648: cpu_idle: state=0 cpu_id=1
46318              ps-13726 (13726) [005] d..2 29484.553660: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46319          <idle>-0     (-----) [000] d.h3 29484.553664: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46320              ps-13726 (13726) [005] dn.3 29484.553665: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46321              ps-13726 (13726) [005] d..2 29484.553669: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46322          <idle>-0     (-----) [000] dnh4 29484.553670: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46323          <idle>-0     (-----) [000] .n.1 29484.553675: cpu_idle: state=4294967295 cpu_id=0
46324          <idle>-0     (-----) [000] d..2 29484.553682: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46325 shell svc 13722-13723 ( 1007) [005] d..2 29484.553683: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46326   kworker/u17:2-23076 (23076) [000] d..2 29484.553690: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46327   kworker/u17:2-23076 (23076) [000] d..3 29484.553695: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46328   kworker/u17:2-23076 (23076) [000] d..2 29484.553711: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46329     kworker/0:0-13450 (13450) [000] d..2 29484.553716: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46330     kworker/0:0-13450 (13450) [000] d..3 29484.553725: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46331          <idle>-0     (-----) [001] .n.1 29484.553729: cpu_idle: state=4294967295 cpu_id=1
46332              ps-13726 (13726) [005] d.s2 29484.553734: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
46333          <idle>-0     (-----) [001] d..2 29484.553737: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46334     kworker/0:0-13450 (13450) [000] d..2 29484.553750: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46335          <idle>-0     (-----) [000] dnh3 29484.553757: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
46336          <idle>-0     (-----) [000] d..2 29484.553763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
46337              ps-13726 (13726) [005] d..2 29484.553782: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46338            adbd-23485 ( 1007) [001] d..2 29484.553782: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46339              ps-13726 (13726) [005] dn.3 29484.553786: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46340          <idle>-0     (-----) [001] d..1 29484.553789: cpu_idle: state=0 cpu_id=1
46341              ps-13726 (13726) [005] d..2 29484.553790: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46342 shell svc 13722-13723 ( 1007) [005] d..2 29484.553806: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46343  kworker/u16:10-23868 (23868) [000] d.h3 29484.553810: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46344  kworker/u16:10-23868 (23868) [000] dnh4 29484.553820: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46345  kworker/u16:10-23868 (23868) [000] d..2 29484.553828: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46346   kworker/u17:2-23076 (23076) [000] d..2 29484.553834: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46347   kworker/u17:2-23076 (23076) [000] d..3 29484.553838: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46348   kworker/u17:2-23076 (23076) [000] d..2 29484.553854: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
46349  kworker/u16:10-23868 (23868) [000] d..2 29484.553863: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46350     kworker/0:0-13450 (13450) [000] d..2 29484.553868: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46351     kworker/0:0-13450 (13450) [000] d..3 29484.553877: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46352              ps-13726 (13726) [005] d..2 29484.553879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46353          <idle>-0     (-----) [001] .n.1 29484.553881: cpu_idle: state=4294967295 cpu_id=1
46354              ps-13726 (13726) [005] dn.3 29484.553884: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46355     kworker/0:0-13450 (13450) [000] d..2 29484.553884: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46356          <idle>-0     (-----) [001] d..2 29484.553887: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46357              ps-13726 (13726) [005] d..2 29484.553888: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46358          <idle>-0     (-----) [000] d..1 29484.553890: cpu_idle: state=0 cpu_id=0
46359 shell svc 13722-13723 ( 1007) [005] d..2 29484.553903: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46360            adbd-23485 ( 1007) [001] d..2 29484.553905: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46361          <idle>-0     (-----) [001] d..1 29484.553911: cpu_idle: state=0 cpu_id=1
46362          <idle>-0     (-----) [000] d.h3 29484.553932: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46363          <idle>-0     (-----) [000] dnh4 29484.553937: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46364          <idle>-0     (-----) [000] .n.1 29484.553941: cpu_idle: state=4294967295 cpu_id=0
46365          <idle>-0     (-----) [000] d..2 29484.553947: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46366   kworker/u17:2-23076 (23076) [000] d..2 29484.553952: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46367   kworker/u17:2-23076 (23076) [000] d..3 29484.553957: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46368              ps-13726 (13726) [005] d..2 29484.553972: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46369   kworker/u17:2-23076 (23076) [000] d..2 29484.553972: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46370              ps-13726 (13726) [005] dn.3 29484.553977: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46371     kworker/0:0-13450 (13450) [000] d..2 29484.553978: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46372              ps-13726 (13726) [005] d..2 29484.553981: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46373     kworker/0:0-13450 (13450) [000] d..3 29484.553987: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46374     kworker/0:0-13450 (13450) [000] d..2 29484.553994: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46375 shell svc 13722-13723 ( 1007) [005] d..2 29484.553997: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46376            adbd-23484 ( 1007) [000] d..2 29484.554006: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46377            adbd-23484 ( 1007) [000] d..3 29484.554012: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46378            adbd-23484 ( 1007) [000] d..2 29484.554054: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46379              ps-13726 (13726) [005] d..2 29484.554065: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46380              ps-13726 (13726) [005] dn.3 29484.554070: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46381              ps-13726 (13726) [005] d..2 29484.554074: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46382 shell svc 13722-13723 ( 1007) [005] d..2 29484.554088: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46383            adbd-1007  ( 1007) [000] d..1 29484.554116: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46384            adbd-1007  ( 1007) [000] d..2 29484.554128: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46385          <idle>-0     (-----) [001] .n.1 29484.554133: cpu_idle: state=4294967295 cpu_id=1
46386          <idle>-0     (-----) [001] d..2 29484.554139: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46387            adbd-1007  ( 1007) [000] d..2 29484.554154: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46388              ps-13726 (13726) [005] d..2 29484.554156: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46389              ps-13726 (13726) [005] dn.3 29484.554160: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46390          <idle>-0     (-----) [000] d..1 29484.554161: cpu_idle: state=0 cpu_id=0
46391              ps-13726 (13726) [005] d..2 29484.554164: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46392 shell svc 13722-13723 ( 1007) [005] d..2 29484.554178: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46393            adbd-23485 ( 1007) [001] d..2 29484.554182: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46394          <idle>-0     (-----) [001] d..1 29484.554189: cpu_idle: state=0 cpu_id=1
46395          <idle>-0     (-----) [000] d.h3 29484.554209: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46396          <idle>-0     (-----) [000] dnh4 29484.554214: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46397          <idle>-0     (-----) [000] .n.1 29484.554219: cpu_idle: state=4294967295 cpu_id=0
46398          <idle>-0     (-----) [000] d..2 29484.554224: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46399   kworker/u17:2-23076 (23076) [000] d..2 29484.554232: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46400   kworker/u17:2-23076 (23076) [000] d..3 29484.554237: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46401              ps-13726 (13726) [005] d..2 29484.554251: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46402   kworker/u17:2-23076 (23076) [000] d..2 29484.554253: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46403              ps-13726 (13726) [005] dn.3 29484.554256: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46404     kworker/0:0-13450 (13450) [000] d..2 29484.554258: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46405              ps-13726 (13726) [005] d..2 29484.554259: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46406     kworker/0:0-13450 (13450) [000] d..3 29484.554267: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46407          <idle>-0     (-----) [001] .n.1 29484.554272: cpu_idle: state=4294967295 cpu_id=1
46408 shell svc 13722-13723 ( 1007) [005] d..2 29484.554274: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46409     kworker/0:0-13450 (13450) [000] d..2 29484.554275: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46410          <idle>-0     (-----) [001] d..2 29484.554278: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46411          <idle>-0     (-----) [000] d..1 29484.554280: cpu_idle: state=0 cpu_id=0
46412            adbd-23485 ( 1007) [001] d..2 29484.554322: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46413          <idle>-0     (-----) [001] d..1 29484.554329: cpu_idle: state=0 cpu_id=1
46414              ps-13726 (13726) [005] d..2 29484.554344: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46415              ps-13726 (13726) [005] dn.3 29484.554349: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46416              ps-13726 (13726) [005] d..2 29484.554353: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46417          <idle>-0     (-----) [000] d.h3 29484.554354: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46418          <idle>-0     (-----) [000] dnh4 29484.554359: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46419          <idle>-0     (-----) [000] .n.1 29484.554364: cpu_idle: state=4294967295 cpu_id=0
46420 shell svc 13722-13723 ( 1007) [005] d..2 29484.554367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46421          <idle>-0     (-----) [000] d..2 29484.554368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46422   kworker/u17:2-23076 (23076) [000] d..2 29484.554374: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46423   kworker/u17:2-23076 (23076) [000] d..3 29484.554379: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46424   kworker/u17:2-23076 (23076) [000] d..2 29484.554394: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46425     kworker/0:0-13450 (13450) [000] d..2 29484.554399: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46426     kworker/0:0-13450 (13450) [000] d..3 29484.554408: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46427          <idle>-0     (-----) [001] .n.1 29484.554413: cpu_idle: state=4294967295 cpu_id=1
46428     kworker/0:0-13450 (13450) [000] d..2 29484.554415: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46429          <idle>-0     (-----) [001] d..2 29484.554419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46430          <idle>-0     (-----) [000] d..1 29484.554419: cpu_idle: state=0 cpu_id=0
46431            adbd-23485 ( 1007) [001] d..2 29484.554435: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46432              ps-13726 (13726) [005] d..2 29484.554436: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46433              ps-13726 (13726) [005] dn.3 29484.554441: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46434          <idle>-0     (-----) [001] d..1 29484.554442: cpu_idle: state=0 cpu_id=1
46435              ps-13726 (13726) [005] d..2 29484.554444: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46436 shell svc 13722-13723 ( 1007) [005] d..2 29484.554459: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46437          <idle>-0     (-----) [000] d.h3 29484.554490: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46438          <idle>-0     (-----) [000] dnh4 29484.554495: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46439          <idle>-0     (-----) [000] .n.1 29484.554500: cpu_idle: state=4294967295 cpu_id=0
46440          <idle>-0     (-----) [000] d..2 29484.554504: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46441   kworker/u17:2-23076 (23076) [000] d..2 29484.554510: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46442   kworker/u17:2-23076 (23076) [000] d..3 29484.554515: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46443   kworker/u17:2-23076 (23076) [000] d..2 29484.554530: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46444              ps-13726 (13726) [005] d..2 29484.554530: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46445              ps-13726 (13726) [005] dn.3 29484.554535: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46446     kworker/0:0-13450 (13450) [000] d..2 29484.554535: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46447              ps-13726 (13726) [005] d..2 29484.554538: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46448     kworker/0:0-13450 (13450) [000] d..3 29484.554544: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46449     kworker/0:0-13450 (13450) [000] d..2 29484.554552: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46450 shell svc 13722-13723 ( 1007) [005] d..2 29484.554553: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46451            adbd-23484 ( 1007) [000] d..2 29484.554564: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46452            adbd-23484 ( 1007) [000] d..3 29484.554570: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46453            adbd-23484 ( 1007) [000] d..2 29484.554611: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46454              ps-13726 (13726) [005] d..2 29484.554623: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46455              ps-13726 (13726) [005] dn.3 29484.554627: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46456              ps-13726 (13726) [005] d..2 29484.554631: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46457 shell svc 13722-13723 ( 1007) [005] d..2 29484.554647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46458            adbd-1007  ( 1007) [000] d..1 29484.554672: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46459            adbd-1007  ( 1007) [000] d..2 29484.554683: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46460          <idle>-0     (-----) [001] .n.1 29484.554687: cpu_idle: state=4294967295 cpu_id=1
46461          <idle>-0     (-----) [001] d..2 29484.554693: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46462            adbd-1007  ( 1007) [000] d..2 29484.554710: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46463              ps-13726 (13726) [005] d..2 29484.554716: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46464          <idle>-0     (-----) [000] d..1 29484.554716: cpu_idle: state=0 cpu_id=0
46465              ps-13726 (13726) [005] dn.3 29484.554720: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46466              ps-13726 (13726) [005] d..2 29484.554724: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46467            adbd-23485 ( 1007) [001] d..2 29484.554736: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46468 shell svc 13722-13723 ( 1007) [005] d..2 29484.554739: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46469          <idle>-0     (-----) [001] d..1 29484.554743: cpu_idle: state=0 cpu_id=1
46470          <idle>-0     (-----) [000] d.h3 29484.554749: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46471          <idle>-0     (-----) [000] dnh4 29484.554755: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46472          <idle>-0     (-----) [000] .n.1 29484.554760: cpu_idle: state=4294967295 cpu_id=0
46473          <idle>-0     (-----) [000] d..2 29484.554764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46474   kworker/u17:2-23076 (23076) [000] d..2 29484.554773: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46475   kworker/u17:2-23076 (23076) [000] d..3 29484.554779: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46476   kworker/u17:2-23076 (23076) [000] d..2 29484.554795: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46477     kworker/0:0-13450 (13450) [000] d..2 29484.554801: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46478              ps-13726 (13726) [005] d..2 29484.554807: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46479     kworker/0:0-13450 (13450) [000] d..3 29484.554809: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46480              ps-13726 (13726) [005] dn.3 29484.554812: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46481          <idle>-0     (-----) [001] .n.1 29484.554814: cpu_idle: state=4294967295 cpu_id=1
46482              ps-13726 (13726) [005] d..2 29484.554816: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46483     kworker/0:0-13450 (13450) [000] d..2 29484.554818: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46484          <idle>-0     (-----) [001] d..2 29484.554820: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46485          <idle>-0     (-----) [000] d..1 29484.554822: cpu_idle: state=0 cpu_id=0
46486 shell svc 13722-13723 ( 1007) [005] d..2 29484.554830: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46487            adbd-23485 ( 1007) [001] d..2 29484.554863: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46488          <idle>-0     (-----) [001] d..1 29484.554869: cpu_idle: state=0 cpu_id=1
46489          <idle>-0     (-----) [000] d.h3 29484.554878: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46490          <idle>-0     (-----) [000] dnh4 29484.554884: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46491          <idle>-0     (-----) [000] .n.1 29484.554888: cpu_idle: state=4294967295 cpu_id=0
46492          <idle>-0     (-----) [000] d..2 29484.554894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46493              ps-13726 (13726) [005] d..2 29484.554899: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46494   kworker/u17:2-23076 (23076) [000] d..2 29484.554900: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46495              ps-13726 (13726) [005] dn.3 29484.554903: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46496   kworker/u17:2-23076 (23076) [000] d..3 29484.554905: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46497              ps-13726 (13726) [005] d..2 29484.554907: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46498   kworker/u17:2-23076 (23076) [000] d..2 29484.554921: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46499 shell svc 13722-13723 ( 1007) [005] d..2 29484.554921: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46500     kworker/0:0-13450 (13450) [000] d..2 29484.554926: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46501     kworker/0:0-13450 (13450) [000] d..3 29484.554934: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46502          <idle>-0     (-----) [001] .n.1 29484.554939: cpu_idle: state=4294967295 cpu_id=1
46503     kworker/0:0-13450 (13450) [000] d..2 29484.554942: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46504          <idle>-0     (-----) [001] d..2 29484.554945: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46505          <idle>-0     (-----) [000] d..1 29484.554946: cpu_idle: state=0 cpu_id=0
46506            adbd-23485 ( 1007) [001] d..2 29484.554960: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46507          <idle>-0     (-----) [001] d..1 29484.554966: cpu_idle: state=0 cpu_id=1
46508              ps-13726 (13726) [005] d..2 29484.554996: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46509              ps-13726 (13726) [005] dn.3 29484.555001: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46510              ps-13726 (13726) [005] d..2 29484.555005: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46511          <idle>-0     (-----) [000] d.h3 29484.555014: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46512          <idle>-0     (-----) [000] dnh4 29484.555019: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46513 shell svc 13722-13723 ( 1007) [005] d..2 29484.555020: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46514          <idle>-0     (-----) [000] .n.1 29484.555023: cpu_idle: state=4294967295 cpu_id=0
46515          <idle>-0     (-----) [000] d..2 29484.555028: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46516   kworker/u17:2-23076 (23076) [000] d..2 29484.555033: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46517   kworker/u17:2-23076 (23076) [000] d..3 29484.555037: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46518   kworker/u17:2-23076 (23076) [000] d..2 29484.555052: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46519     kworker/0:0-13450 (13450) [000] d..2 29484.555058: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46520     kworker/0:0-13450 (13450) [000] d..3 29484.555067: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46521     kworker/0:0-13450 (13450) [000] d..2 29484.555074: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46522            adbd-23484 ( 1007) [000] d..2 29484.555086: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46523            adbd-23484 ( 1007) [000] d..3 29484.555091: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46524              ps-13726 (13726) [005] d..2 29484.555092: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46525              ps-13726 (13726) [005] dn.3 29484.555096: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46526              ps-13726 (13726) [005] d..2 29484.555100: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46527 shell svc 13722-13723 ( 1007) [005] d..2 29484.555114: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46528            adbd-23484 ( 1007) [000] d..2 29484.555132: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46529              ps-13726 (13726) [005] d..2 29484.555182: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46530              ps-13726 (13726) [005] dn.3 29484.555186: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46531              ps-13726 (13726) [005] d..2 29484.555190: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46532            adbd-1007  ( 1007) [000] d..1 29484.555192: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46533 shell svc 13722-13723 ( 1007) [005] d..2 29484.555204: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46534            adbd-1007  ( 1007) [000] d..2 29484.555206: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46535          <idle>-0     (-----) [001] .n.1 29484.555211: cpu_idle: state=4294967295 cpu_id=1
46536          <idle>-0     (-----) [001] d..2 29484.555217: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46537            adbd-1007  ( 1007) [000] d..2 29484.555233: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46538          <idle>-0     (-----) [000] d..1 29484.555239: cpu_idle: state=0 cpu_id=0
46539            adbd-23485 ( 1007) [001] d..2 29484.555261: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46540          <idle>-0     (-----) [001] d..1 29484.555267: cpu_idle: state=0 cpu_id=1
46541          <idle>-0     (-----) [000] d.h3 29484.555269: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46542              ps-13726 (13726) [005] d..2 29484.555273: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46543              ps-13726 (13726) [005] dn.3 29484.555277: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46544          <idle>-0     (-----) [000] dnh4 29484.555278: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46545              ps-13726 (13726) [005] d..2 29484.555281: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46546          <idle>-0     (-----) [000] .n.1 29484.555283: cpu_idle: state=4294967295 cpu_id=0
46547          <idle>-0     (-----) [000] d..2 29484.555288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46548 shell svc 13722-13723 ( 1007) [005] d..2 29484.555295: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46549   kworker/u17:2-23076 (23076) [000] d..2 29484.555295: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46550   kworker/u17:2-23076 (23076) [000] d..3 29484.555300: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46551   kworker/u17:2-23076 (23076) [000] d..2 29484.555316: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46552     kworker/0:0-13450 (13450) [000] d..2 29484.555321: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46553     kworker/0:0-13450 (13450) [000] d..3 29484.555329: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46554          <idle>-0     (-----) [001] .n.1 29484.555334: cpu_idle: state=4294967295 cpu_id=1
46555     kworker/0:0-13450 (13450) [000] d..2 29484.555337: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46556          <idle>-0     (-----) [001] d..2 29484.555340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46557          <idle>-0     (-----) [000] d..1 29484.555343: cpu_idle: state=0 cpu_id=0
46558              ps-13726 (13726) [005] d..2 29484.555363: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46559              ps-13726 (13726) [005] dn.3 29484.555367: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46560              ps-13726 (13726) [005] d..2 29484.555371: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46561            adbd-23485 ( 1007) [001] d..2 29484.555382: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46562 shell svc 13722-13723 ( 1007) [005] d..2 29484.555385: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46563          <idle>-0     (-----) [001] d..1 29484.555389: cpu_idle: state=0 cpu_id=1
46564          <idle>-0     (-----) [000] d.h3 29484.555398: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46565          <idle>-0     (-----) [000] dnh4 29484.555402: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46566          <idle>-0     (-----) [000] .n.1 29484.555407: cpu_idle: state=4294967295 cpu_id=0
46567          <idle>-0     (-----) [000] d..2 29484.555411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46568   kworker/u17:2-23076 (23076) [000] d..2 29484.555418: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46569   kworker/u17:2-23076 (23076) [000] d..3 29484.555422: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46570   kworker/u17:2-23076 (23076) [000] d..2 29484.555437: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46571     kworker/0:0-13450 (13450) [000] d..2 29484.555443: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46572     kworker/0:0-13450 (13450) [000] d..3 29484.555451: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46573              ps-13726 (13726) [005] d..2 29484.555452: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46574          <idle>-0     (-----) [001] .n.1 29484.555456: cpu_idle: state=4294967295 cpu_id=1
46575              ps-13726 (13726) [005] dn.3 29484.555457: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46576     kworker/0:0-13450 (13450) [000] d..2 29484.555459: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46577              ps-13726 (13726) [005] d..2 29484.555461: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46578          <idle>-0     (-----) [001] d..2 29484.555462: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46579          <idle>-0     (-----) [000] d..1 29484.555463: cpu_idle: state=0 cpu_id=0
46580 shell svc 13722-13723 ( 1007) [005] d..2 29484.555475: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46581            adbd-23485 ( 1007) [001] d..2 29484.555478: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46582          <idle>-0     (-----) [001] d..1 29484.555485: cpu_idle: state=0 cpu_id=1
46583          <idle>-0     (-----) [000] d.h3 29484.555533: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46584          <idle>-0     (-----) [000] dnh4 29484.555538: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46585          <idle>-0     (-----) [000] .n.1 29484.555542: cpu_idle: state=4294967295 cpu_id=0
46586          <idle>-0     (-----) [000] d..2 29484.555547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46587              ps-13726 (13726) [005] d..2 29484.555548: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46588   kworker/u17:2-23076 (23076) [000] d..2 29484.555552: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46589              ps-13726 (13726) [005] dn.3 29484.555552: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46590              ps-13726 (13726) [005] d..2 29484.555556: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46591   kworker/u17:2-23076 (23076) [000] d..3 29484.555557: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46592 shell svc 13722-13723 ( 1007) [005] d..2 29484.555570: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46593   kworker/u17:2-23076 (23076) [000] d..2 29484.555572: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46594     kworker/0:0-13450 (13450) [000] d..2 29484.555578: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46595     kworker/0:0-13450 (13450) [000] d..3 29484.555586: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46596     kworker/0:0-13450 (13450) [000] d..2 29484.555594: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46597            adbd-23484 ( 1007) [000] d..2 29484.555605: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46598            adbd-23484 ( 1007) [000] d..3 29484.555610: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46599              ps-13726 (13726) [005] d..2 29484.555639: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46600              ps-13726 (13726) [005] dn.3 29484.555643: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46601              ps-13726 (13726) [005] d..2 29484.555647: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46602            adbd-23484 ( 1007) [000] d..2 29484.555651: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46603 shell svc 13722-13723 ( 1007) [005] d..2 29484.555661: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46604            adbd-1007  ( 1007) [000] d..1 29484.555713: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46605            adbd-1007  ( 1007) [000] d..2 29484.555724: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46606          <idle>-0     (-----) [001] .n.1 29484.555729: cpu_idle: state=4294967295 cpu_id=1
46607          <idle>-0     (-----) [001] d..2 29484.555734: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46608              ps-13726 (13726) [005] d..2 29484.555735: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46609              ps-13726 (13726) [005] dn.3 29484.555739: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46610              ps-13726 (13726) [005] d..2 29484.555743: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46611            adbd-1007  ( 1007) [000] d..2 29484.555750: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46612          <idle>-0     (-----) [000] d..1 29484.555756: cpu_idle: state=0 cpu_id=0
46613 shell svc 13722-13723 ( 1007) [005] d..2 29484.555757: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46614            adbd-23485 ( 1007) [001] d..2 29484.555777: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46615          <idle>-0     (-----) [001] d..1 29484.555784: cpu_idle: state=0 cpu_id=1
46616          <idle>-0     (-----) [000] d.h3 29484.555790: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46617          <idle>-0     (-----) [000] dnh4 29484.555796: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46618          <idle>-0     (-----) [000] .n.1 29484.555801: cpu_idle: state=4294967295 cpu_id=0
46619          <idle>-0     (-----) [000] d..2 29484.555806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46620   kworker/u17:2-23076 (23076) [000] d..2 29484.555813: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46621   kworker/u17:2-23076 (23076) [000] d..3 29484.555819: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46622              ps-13726 (13726) [005] d..2 29484.555824: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46623              ps-13726 (13726) [005] dn.3 29484.555828: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46624              ps-13726 (13726) [005] d..2 29484.555832: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46625   kworker/u17:2-23076 (23076) [000] d..2 29484.555835: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46626     kworker/0:0-13450 (13450) [000] d..2 29484.555840: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46627 shell svc 13722-13723 ( 1007) [005] d..2 29484.555847: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46628     kworker/0:0-13450 (13450) [000] d..3 29484.555848: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46629          <idle>-0     (-----) [001] .n.1 29484.555853: cpu_idle: state=4294967295 cpu_id=1
46630     kworker/0:0-13450 (13450) [000] d..2 29484.555856: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46631          <idle>-0     (-----) [001] d..2 29484.555859: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46632          <idle>-0     (-----) [000] d..1 29484.555861: cpu_idle: state=0 cpu_id=0
46633            adbd-23485 ( 1007) [001] d..2 29484.555903: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46634          <idle>-0     (-----) [001] d..1 29484.555910: cpu_idle: state=0 cpu_id=1
46635              ps-13726 (13726) [005] d..2 29484.555915: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46636          <idle>-0     (-----) [000] d.h3 29484.555918: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46637              ps-13726 (13726) [005] dn.3 29484.555920: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46638          <idle>-0     (-----) [000] dnh4 29484.555923: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46639              ps-13726 (13726) [005] d..2 29484.555923: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46640          <idle>-0     (-----) [000] .n.1 29484.555927: cpu_idle: state=4294967295 cpu_id=0
46641          <idle>-0     (-----) [000] d..2 29484.555932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46642 shell svc 13722-13723 ( 1007) [005] d..2 29484.555937: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46643   kworker/u17:2-23076 (23076) [000] d..2 29484.555939: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46644   kworker/u17:2-23076 (23076) [000] d..3 29484.555945: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46645   kworker/u17:2-23076 (23076) [000] d..2 29484.555960: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46646     kworker/0:0-13450 (13450) [000] d..2 29484.555965: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46647     kworker/0:0-13450 (13450) [000] d..3 29484.555973: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46648          <idle>-0     (-----) [001] .n.1 29484.555978: cpu_idle: state=4294967295 cpu_id=1
46649     kworker/0:0-13450 (13450) [000] d..2 29484.555981: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46650          <idle>-0     (-----) [001] d..2 29484.555984: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46651          <idle>-0     (-----) [000] d..1 29484.555986: cpu_idle: state=0 cpu_id=0
46652            adbd-23485 ( 1007) [001] d..2 29484.555998: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46653          <idle>-0     (-----) [001] d..1 29484.556005: cpu_idle: state=0 cpu_id=1
46654              ps-13726 (13726) [005] d..2 29484.556005: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46655              ps-13726 (13726) [005] dn.3 29484.556010: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46656              ps-13726 (13726) [005] d..2 29484.556014: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46657 shell svc 13722-13723 ( 1007) [005] d..2 29484.556028: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46658          <idle>-0     (-----) [000] d.h3 29484.556055: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46659          <idle>-0     (-----) [000] dnh4 29484.556059: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46660          <idle>-0     (-----) [000] .n.1 29484.556064: cpu_idle: state=4294967295 cpu_id=0
46661          <idle>-0     (-----) [000] d..2 29484.556068: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46662   kworker/u17:2-23076 (23076) [000] d..2 29484.556073: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46663   kworker/u17:2-23076 (23076) [000] d..3 29484.556078: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46664   kworker/u17:2-23076 (23076) [000] d..2 29484.556093: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46665              ps-13726 (13726) [005] d..2 29484.556097: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46666     kworker/0:0-13450 (13450) [000] d..2 29484.556098: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46667              ps-13726 (13726) [005] dn.3 29484.556101: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46668              ps-13726 (13726) [005] d..2 29484.556105: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46669     kworker/0:0-13450 (13450) [000] d..3 29484.556108: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46670     kworker/0:0-13450 (13450) [000] d..2 29484.556115: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46671 shell svc 13722-13723 ( 1007) [005] d..2 29484.556119: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46672            adbd-23484 ( 1007) [000] d..2 29484.556127: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46673            adbd-23484 ( 1007) [000] d..3 29484.556132: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46674            adbd-23484 ( 1007) [000] d..2 29484.556174: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46675              ps-13726 (13726) [005] d..2 29484.556186: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46676              ps-13726 (13726) [005] dn.3 29484.556190: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46677              ps-13726 (13726) [005] d..2 29484.556194: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46678 shell svc 13722-13723 ( 1007) [005] d..2 29484.556208: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46679            adbd-1007  ( 1007) [000] d..1 29484.556234: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46680            adbd-1007  ( 1007) [000] d..2 29484.556245: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46681          <idle>-0     (-----) [001] .n.1 29484.556250: cpu_idle: state=4294967295 cpu_id=1
46682          <idle>-0     (-----) [001] d..2 29484.556256: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46683            adbd-1007  ( 1007) [000] d..2 29484.556271: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46684              ps-13726 (13726) [005] d..2 29484.556276: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46685          <idle>-0     (-----) [000] d..1 29484.556277: cpu_idle: state=0 cpu_id=0
46686              ps-13726 (13726) [005] dn.3 29484.556281: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46687              ps-13726 (13726) [005] d..2 29484.556284: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46688            adbd-23485 ( 1007) [001] d..2 29484.556299: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46689 shell svc 13722-13723 ( 1007) [005] d..2 29484.556300: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46690          <idle>-0     (-----) [001] d..1 29484.556305: cpu_idle: state=0 cpu_id=1
46691          <idle>-0     (-----) [000] d.h3 29484.556312: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46692          <idle>-0     (-----) [000] dnh4 29484.556318: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46693          <idle>-0     (-----) [000] .n.1 29484.556322: cpu_idle: state=4294967295 cpu_id=0
46694          <idle>-0     (-----) [000] d..2 29484.556327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46695   kworker/u17:2-23076 (23076) [000] d..2 29484.556336: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46696   kworker/u17:2-23076 (23076) [000] d..3 29484.556341: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46697   kworker/u17:2-23076 (23076) [000] d..2 29484.556356: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46698     kworker/0:0-13450 (13450) [000] d..2 29484.556361: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46699              ps-13726 (13726) [005] d..2 29484.556366: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46700     kworker/0:0-13450 (13450) [000] d..3 29484.556370: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46701              ps-13726 (13726) [005] dn.3 29484.556370: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46702              ps-13726 (13726) [005] d..2 29484.556374: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46703          <idle>-0     (-----) [001] .n.1 29484.556375: cpu_idle: state=4294967295 cpu_id=1
46704     kworker/0:0-13450 (13450) [000] d..2 29484.556378: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46705          <idle>-0     (-----) [001] d..2 29484.556381: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46706          <idle>-0     (-----) [000] d..1 29484.556383: cpu_idle: state=0 cpu_id=0
46707 shell svc 13722-13723 ( 1007) [005] d..2 29484.556388: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46708            adbd-23485 ( 1007) [001] d..2 29484.556424: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46709          <idle>-0     (-----) [001] d..1 29484.556431: cpu_idle: state=0 cpu_id=1
46710          <idle>-0     (-----) [000] d.h3 29484.556437: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46711          <idle>-0     (-----) [000] dnh4 29484.556442: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46712          <idle>-0     (-----) [000] .n.1 29484.556446: cpu_idle: state=4294967295 cpu_id=0
46713          <idle>-0     (-----) [000] d..2 29484.556451: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46714   kworker/u17:2-23076 (23076) [000] d..2 29484.556457: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46715              ps-13726 (13726) [005] d..2 29484.556462: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46716   kworker/u17:2-23076 (23076) [000] d..3 29484.556462: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46717              ps-13726 (13726) [005] dn.3 29484.556467: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46718              ps-13726 (13726) [005] d..2 29484.556470: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46719   kworker/u17:2-23076 (23076) [000] d..2 29484.556478: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46720     kworker/0:0-13450 (13450) [000] d..2 29484.556483: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46721 shell svc 13722-13723 ( 1007) [005] d..2 29484.556484: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46722     kworker/0:0-13450 (13450) [000] d..3 29484.556491: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46723          <idle>-0     (-----) [001] .n.1 29484.556496: cpu_idle: state=4294967295 cpu_id=1
46724     kworker/0:0-13450 (13450) [000] d..2 29484.556499: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46725          <idle>-0     (-----) [001] d..2 29484.556502: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46726          <idle>-0     (-----) [000] d..1 29484.556503: cpu_idle: state=0 cpu_id=0
46727            adbd-23485 ( 1007) [001] d..2 29484.556518: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46728          <idle>-0     (-----) [001] d..1 29484.556525: cpu_idle: state=0 cpu_id=1
46729              ps-13726 (13726) [005] d..2 29484.556555: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46730              ps-13726 (13726) [005] dn.3 29484.556560: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46731              ps-13726 (13726) [005] d..2 29484.556564: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46732          <idle>-0     (-----) [000] d.h3 29484.556577: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46733 shell svc 13722-13723 ( 1007) [005] d..2 29484.556578: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46734          <idle>-0     (-----) [000] dnh4 29484.556582: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46735          <idle>-0     (-----) [000] .n.1 29484.556586: cpu_idle: state=4294967295 cpu_id=0
46736          <idle>-0     (-----) [000] d..2 29484.556591: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46737   kworker/u17:2-23076 (23076) [000] d..2 29484.556596: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46738   kworker/u17:2-23076 (23076) [000] d..3 29484.556601: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46739   kworker/u17:2-23076 (23076) [000] d..2 29484.556616: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46740     kworker/0:0-13450 (13450) [000] d..2 29484.556622: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46741     kworker/0:0-13450 (13450) [000] d..3 29484.556631: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
46742     kworker/0:0-13450 (13450) [000] d..2 29484.556639: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46743              ps-13726 (13726) [005] d..2 29484.556647: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46744            adbd-23484 ( 1007) [000] d..2 29484.556650: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46745              ps-13726 (13726) [005] dn.3 29484.556652: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46746              ps-13726 (13726) [005] d..2 29484.556655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46747            adbd-23484 ( 1007) [000] d..3 29484.556656: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
46748 shell svc 13722-13723 ( 1007) [005] d..2 29484.556670: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46749            adbd-23484 ( 1007) [000] d..2 29484.556697: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46750              ps-13726 (13726) [005] d..2 29484.556737: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46751              ps-13726 (13726) [005] dn.3 29484.556741: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46752              ps-13726 (13726) [005] d..2 29484.556745: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46753            adbd-1007  ( 1007) [000] d..1 29484.556757: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46754 shell svc 13722-13723 ( 1007) [005] d..2 29484.556761: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46755            adbd-1007  ( 1007) [000] d..2 29484.556768: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46756          <idle>-0     (-----) [001] .n.1 29484.556773: cpu_idle: state=4294967295 cpu_id=1
46757          <idle>-0     (-----) [001] d..2 29484.556779: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46758            adbd-1007  ( 1007) [000] d..2 29484.556795: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46759          <idle>-0     (-----) [000] d..1 29484.556801: cpu_idle: state=0 cpu_id=0
46760            adbd-23485 ( 1007) [001] d..2 29484.556822: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46761          <idle>-0     (-----) [001] d..1 29484.556828: cpu_idle: state=0 cpu_id=1
46762              ps-13726 (13726) [005] d..2 29484.556830: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46763          <idle>-0     (-----) [000] d.h3 29484.556834: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46764              ps-13726 (13726) [005] dn.3 29484.556834: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46765              ps-13726 (13726) [005] d..2 29484.556838: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46766          <idle>-0     (-----) [000] dnh4 29484.556840: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46767          <idle>-0     (-----) [000] .n.1 29484.556845: cpu_idle: state=4294967295 cpu_id=0
46768          <idle>-0     (-----) [000] d..2 29484.556850: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46769 shell svc 13722-13723 ( 1007) [005] d..2 29484.556852: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46770   kworker/u17:2-23076 (23076) [000] d..2 29484.556857: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46771   kworker/u17:2-23076 (23076) [000] d..3 29484.556863: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46772   kworker/u17:2-23076 (23076) [000] d..2 29484.556878: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46773     kworker/0:0-13450 (13450) [000] d..2 29484.556883: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46774     kworker/0:0-13450 (13450) [000] d..3 29484.556892: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46775          <idle>-0     (-----) [001] .n.1 29484.556897: cpu_idle: state=4294967295 cpu_id=1
46776     kworker/0:0-13450 (13450) [000] d..2 29484.556901: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46777          <idle>-0     (-----) [001] d..2 29484.556904: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46778          <idle>-0     (-----) [000] d..1 29484.556905: cpu_idle: state=0 cpu_id=0
46779              ps-13726 (13726) [005] d..2 29484.556920: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46780              ps-13726 (13726) [005] dn.3 29484.556925: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46781              ps-13726 (13726) [005] d..2 29484.556928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46782 shell svc 13722-13723 ( 1007) [005] d..2 29484.556942: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46783            adbd-23485 ( 1007) [001] d..2 29484.556947: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46784          <idle>-0     (-----) [001] d..1 29484.556953: cpu_idle: state=0 cpu_id=1
46785          <idle>-0     (-----) [000] d.h3 29484.556978: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46786          <idle>-0     (-----) [000] dnh4 29484.556983: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46787          <idle>-0     (-----) [000] .n.1 29484.556990: cpu_idle: state=4294967295 cpu_id=0
46788          <idle>-0     (-----) [000] d..2 29484.556994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46789   kworker/u17:2-23076 (23076) [000] d..2 29484.557001: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46790   kworker/u17:2-23076 (23076) [000] d..3 29484.557006: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46791              ps-13726 (13726) [005] d..2 29484.557011: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46792              ps-13726 (13726) [005] dn.3 29484.557016: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46793              ps-13726 (13726) [005] d..2 29484.557019: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46794   kworker/u17:2-23076 (23076) [000] d..2 29484.557021: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46795     kworker/0:0-13450 (13450) [000] d..2 29484.557026: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46796 shell svc 13722-13723 ( 1007) [005] d..2 29484.557033: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46797     kworker/0:0-13450 (13450) [000] d..3 29484.557035: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
46798          <idle>-0     (-----) [001] .n.1 29484.557040: cpu_idle: state=4294967295 cpu_id=1
46799     kworker/0:0-13450 (13450) [000] d..2 29484.557042: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46800          <idle>-0     (-----) [001] d..2 29484.557046: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46801          <idle>-0     (-----) [000] d..1 29484.557046: cpu_idle: state=0 cpu_id=0
46802            adbd-23485 ( 1007) [001] d..2 29484.557066: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46803          <idle>-0     (-----) [000] d.s2 29484.557073: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46804          <idle>-0     (-----) [000] dns3 29484.557083: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46805          <idle>-0     (-----) [000] .n.1 29484.557089: cpu_idle: state=4294967295 cpu_id=0
46806              ps-13726 (13726) [005] d..2 29484.557118: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46807          <idle>-0     (-----) [000] d..2 29484.557119: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
46808              ps-13726 (13726) [005] dn.3 29484.557124: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46809              ps-13726 (13726) [005] d..2 29484.557128: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46810     rcu_preempt-7     (    7) [000] d.h4 29484.557133: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46811          <idle>-0     (-----) [001] d.H4 29484.557135: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
46812 shell svc 13722-13723 ( 1007) [005] d..2 29484.557144: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46813          <idle>-0     (-----) [001] dnH4 29484.557146: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
46814     rcu_preempt-7     (    7) [000] d.h5 29484.557149: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
46815          <idle>-0     (-----) [001] dnH5 29484.557155: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
46816          <idle>-0     (-----) [003] .n.1 29484.557160: cpu_idle: state=4294967295 cpu_id=3
46817     rcu_preempt-7     (    7) [000] d..2 29484.557161: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46818          <idle>-0     (-----) [003] d..2 29484.557166: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
46819          <idle>-0     (-----) [000] d..1 29484.557167: cpu_idle: state=0 cpu_id=0
46820          <idle>-0     (-----) [001] d..2 29484.557174: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46821         sugov:0-559   (  559) [003] d..2 29484.557182: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46822   kworker/u17:2-23076 (23076) [001] d..2 29484.557185: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
46823          <idle>-0     (-----) [003] d..1 29484.557188: cpu_idle: state=2 cpu_id=3
46824   kworker/u17:2-23076 (23076) [001] d..3 29484.557195: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
46825   kworker/u17:2-23076 (23076) [001] d..2 29484.557211: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
46826              ps-13726 (13726) [005] d..2 29484.557218: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46827     kworker/1:1-13678 (13678) [001] d..2 29484.557219: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
46828              ps-13726 (13726) [005] dn.3 29484.557223: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46829              ps-13726 (13726) [005] d..2 29484.557227: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46830     kworker/1:1-13678 (13678) [001] d..3 29484.557241: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
46831 shell svc 13722-13723 ( 1007) [005] d..2 29484.557241: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46832     kworker/1:1-13678 (13678) [001] d..2 29484.557250: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
46833            adbd-23484 ( 1007) [001] d..2 29484.557263: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
46834            adbd-23484 ( 1007) [001] d..3 29484.557273: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
46835              ps-13726 (13726) [005] d..2 29484.557307: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46836              ps-13726 (13726) [005] dn.3 29484.557312: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46837            adbd-23484 ( 1007) [001] d..2 29484.557314: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46838              ps-13726 (13726) [005] d..2 29484.557316: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46839 shell svc 13722-13723 ( 1007) [005] d..2 29484.557330: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46840          <idle>-0     (-----) [007] dnh2 29484.557340: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
46841          <idle>-0     (-----) [007] .n.1 29484.557346: cpu_idle: state=4294967295 cpu_id=7
46842          <idle>-0     (-----) [007] d..2 29484.557353: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
46843         sugov:4-560   (  560) [007] .... 29484.557370: clk_set_rate: perfcl_clk 1363200000
46844         sugov:4-560   (  560) [007] .... 29484.557371: clk_set_rate: cpu7_perfcl_clk 1209600000
46845         sugov:4-560   (  560) [007] .... 29484.557376: clk_set_rate: cpu6_perfcl_clk 1209600000
46846         sugov:4-560   (  560) [007] .... 29484.557381: clk_set_rate: cpu5_perfcl_clk 1209600000
46847            adbd-1007  ( 1007) [001] d..1 29484.557384: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
46848         sugov:4-560   (  560) [007] .... 29484.557387: clk_set_rate: cpu4_perfcl_clk 1363200000
46849         sugov:4-560   (  560) [007] .... 29484.557392: cpu_frequency: state=1363200 cpu_id=4
46850              ps-13726 (13726) [005] d..2 29484.557400: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46851         sugov:4-560   (  560) [007] .... 29484.557401: cpu_frequency: state=1363200 cpu_id=5
46852            adbd-1007  ( 1007) [001] d..2 29484.557402: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
46853         sugov:4-560   (  560) [007] .... 29484.557404: cpu_frequency: state=1363200 cpu_id=6
46854              ps-13726 (13726) [005] dn.3 29484.557405: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46855         sugov:4-560   (  560) [007] .... 29484.557406: cpu_frequency: state=1363200 cpu_id=7
46856          <idle>-0     (-----) [000] .n.1 29484.557406: cpu_idle: state=4294967295 cpu_id=0
46857              ps-13726 (13726) [005] d..2 29484.557408: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46858          <idle>-0     (-----) [000] d..2 29484.557414: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46859         sugov:4-560   (  560) [007] d..2 29484.557423: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46860 shell svc 13722-13723 ( 1007) [005] d..2 29484.557424: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46861          <idle>-0     (-----) [007] d..1 29484.557430: cpu_idle: state=2 cpu_id=7
46862            adbd-1007  ( 1007) [001] d..2 29484.557437: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46863          <idle>-0     (-----) [001] d..1 29484.557446: cpu_idle: state=0 cpu_id=1
46864            adbd-23485 ( 1007) [000] d..2 29484.557457: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46865          <idle>-0     (-----) [000] d..1 29484.557464: cpu_idle: state=0 cpu_id=0
46866          <idle>-0     (-----) [000] d.h3 29484.557481: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
46867              ps-13726 (13726) [005] d..2 29484.557487: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46868              ps-13726 (13726) [005] dn.3 29484.557491: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46869              ps-13726 (13726) [005] d..2 29484.557494: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46870          <idle>-0     (-----) [000] dnh4 29484.557499: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46871          <idle>-0     (-----) [000] .n.1 29484.557504: cpu_idle: state=4294967295 cpu_id=0
46872 shell svc 13722-13723 ( 1007) [005] d..2 29484.557507: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46873          <idle>-0     (-----) [000] d..2 29484.557510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46874   kworker/u17:2-23076 (23076) [000] d..2 29484.557517: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46875   kworker/u17:2-23076 (23076) [000] d..3 29484.557523: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46876   kworker/u17:2-23076 (23076) [000] d..2 29484.557538: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46877     kworker/0:0-13450 (13450) [000] d..2 29484.557543: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
46878     kworker/0:0-13450 (13450) [000] d..3 29484.557551: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
46879     kworker/0:0-13450 (13450) [000] d..2 29484.557558: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
46880              ps-13726 (13726) [005] d..2 29484.557568: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46881              ps-13726 (13726) [005] dn.3 29484.557572: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46882              ps-13726 (13726) [005] d..2 29484.557575: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46883 shell svc 13722-13723 ( 1007) [005] d..2 29484.557588: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46884            adbd-23485 ( 1007) [000] d..2 29484.557597: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46885          <idle>-0     (-----) [000] d..1 29484.557604: cpu_idle: state=0 cpu_id=0
46886          <idle>-0     (-----) [000] d.h3 29484.557626: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46887          <idle>-0     (-----) [000] dnh4 29484.557632: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46888          <idle>-0     (-----) [000] .n.1 29484.557637: cpu_idle: state=4294967295 cpu_id=0
46889          <idle>-0     (-----) [000] d..2 29484.557642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46890   kworker/u17:2-23076 (23076) [000] d..2 29484.557648: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46891              ps-13726 (13726) [005] d..2 29484.557649: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46892   kworker/u17:2-23076 (23076) [000] d..3 29484.557653: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46893              ps-13726 (13726) [005] dn.3 29484.557654: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46894              ps-13726 (13726) [005] d..2 29484.557657: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46895   kworker/u17:2-23076 (23076) [000] d..2 29484.557668: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46896 shell svc 13722-13723 ( 1007) [005] d..2 29484.557670: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46897     kworker/0:0-13450 (13450) [000] d..2 29484.557673: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
46898     kworker/0:0-13450 (13450) [000] d..3 29484.557681: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
46899     kworker/0:0-13450 (13450) [000] d..2 29484.557689: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
46900            adbd-23485 ( 1007) [000] d..2 29484.557701: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46901          <idle>-0     (-----) [000] d..1 29484.557708: cpu_idle: state=0 cpu_id=0
46902              ps-13726 (13726) [005] d..2 29484.557731: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46903              ps-13726 (13726) [005] dn.3 29484.557736: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46904              ps-13726 (13726) [005] d..2 29484.557739: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46905 shell svc 13722-13723 ( 1007) [005] d..2 29484.557752: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46906          <idle>-0     (-----) [000] d.h3 29484.557772: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46907          <idle>-0     (-----) [000] dnh4 29484.557778: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46908          <idle>-0     (-----) [000] .n.1 29484.557783: cpu_idle: state=4294967295 cpu_id=0
46909          <idle>-0     (-----) [000] d..2 29484.557788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46910   kworker/u17:2-23076 (23076) [000] d..2 29484.557795: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46911   kworker/u17:2-23076 (23076) [000] d..3 29484.557800: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46912   kworker/u17:2-23076 (23076) [000] d..2 29484.557815: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46913              ps-13726 (13726) [005] d..2 29484.557816: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46914              ps-13726 (13726) [005] dn.3 29484.557820: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46915     kworker/0:0-13450 (13450) [000] d..2 29484.557821: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
46916              ps-13726 (13726) [005] d..2 29484.557823: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46917     kworker/0:0-13450 (13450) [000] d..3 29484.557830: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
46918          <idle>-0     (-----) [001] .n.1 29484.557836: cpu_idle: state=4294967295 cpu_id=1
46919 shell svc 13722-13723 ( 1007) [005] d..2 29484.557836: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46920     kworker/0:0-13450 (13450) [000] d..2 29484.557838: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46921          <idle>-0     (-----) [001] d..2 29484.557843: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
46922          <idle>-0     (-----) [000] d..1 29484.557843: cpu_idle: state=0 cpu_id=0
46923            adbd-23484 ( 1007) [001] d..2 29484.557855: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
46924            adbd-23484 ( 1007) [001] d..3 29484.557861: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
46925              ps-13726 (13726) [005] d..2 29484.557905: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46926            adbd-23484 ( 1007) [001] d..2 29484.557905: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
46927              ps-13726 (13726) [005] dn.3 29484.557909: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46928              ps-13726 (13726) [005] d..2 29484.557912: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46929 shell svc 13722-13723 ( 1007) [005] d..2 29484.557926: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46930            adbd-1007  ( 1007) [001] d..1 29484.557967: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
46931              ps-13726 (13726) [005] d..2 29484.557989: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46932            adbd-1007  ( 1007) [001] d..2 29484.557990: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
46933              ps-13726 (13726) [005] dn.3 29484.557993: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46934          <idle>-0     (-----) [000] .n.1 29484.557995: cpu_idle: state=4294967295 cpu_id=0
46935              ps-13726 (13726) [005] d..2 29484.557997: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46936          <idle>-0     (-----) [000] d..2 29484.558001: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
46937 shell svc 13722-13723 ( 1007) [005] d..2 29484.558010: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46938            adbd-1007  ( 1007) [001] d..2 29484.558022: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46939          <idle>-0     (-----) [001] d..1 29484.558031: cpu_idle: state=0 cpu_id=1
46940            adbd-23485 ( 1007) [000] d..2 29484.558041: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46941          <idle>-0     (-----) [000] d..1 29484.558048: cpu_idle: state=0 cpu_id=0
46942          <idle>-0     (-----) [000] d.h3 29484.558065: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46943          <idle>-0     (-----) [000] dnh4 29484.558071: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46944              ps-13726 (13726) [005] d..2 29484.558074: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46945          <idle>-0     (-----) [000] .n.1 29484.558075: cpu_idle: state=4294967295 cpu_id=0
46946              ps-13726 (13726) [005] dn.3 29484.558078: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46947          <idle>-0     (-----) [000] d..2 29484.558081: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46948              ps-13726 (13726) [005] d..2 29484.558082: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46949   kworker/u17:2-23076 (23076) [000] d..2 29484.558088: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46950   kworker/u17:2-23076 (23076) [000] d..3 29484.558093: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46951 shell svc 13722-13723 ( 1007) [005] d..2 29484.558095: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46952   kworker/u17:2-23076 (23076) [000] d..2 29484.558109: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46953     kworker/0:0-13450 (13450) [000] d..2 29484.558113: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
46954     kworker/0:0-13450 (13450) [000] d..3 29484.558122: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
46955     kworker/0:0-13450 (13450) [000] d..2 29484.558129: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
46956              ps-13726 (13726) [005] d..2 29484.558155: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46957              ps-13726 (13726) [005] dn.3 29484.558159: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46958              ps-13726 (13726) [005] d..2 29484.558163: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46959            adbd-23485 ( 1007) [000] d..2 29484.558173: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46960 shell svc 13722-13723 ( 1007) [005] d..2 29484.558175: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46961          <idle>-0     (-----) [000] d..1 29484.558180: cpu_idle: state=0 cpu_id=0
46962          <idle>-0     (-----) [000] d.h3 29484.558202: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46963          <idle>-0     (-----) [000] dnh4 29484.558208: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46964          <idle>-0     (-----) [000] .n.1 29484.558213: cpu_idle: state=4294967295 cpu_id=0
46965          <idle>-0     (-----) [000] d..2 29484.558219: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46966   kworker/u17:2-23076 (23076) [000] d..2 29484.558225: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46967   kworker/u17:2-23076 (23076) [000] d..3 29484.558230: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46968              ps-13726 (13726) [005] d..2 29484.558239: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46969              ps-13726 (13726) [005] dn.3 29484.558243: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46970   kworker/u17:2-23076 (23076) [000] d..2 29484.558245: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46971              ps-13726 (13726) [005] d..2 29484.558247: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46972     kworker/0:0-13450 (13450) [000] d..2 29484.558249: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
46973     kworker/0:0-13450 (13450) [000] d..3 29484.558258: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
46974 shell svc 13722-13723 ( 1007) [005] d..2 29484.558260: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46975     kworker/0:0-13450 (13450) [000] d..2 29484.558265: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
46976            adbd-23485 ( 1007) [000] d..2 29484.558276: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46977          <idle>-0     (-----) [000] d..1 29484.558282: cpu_idle: state=0 cpu_id=0
46978              ps-13726 (13726) [005] d..2 29484.558322: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46979              ps-13726 (13726) [005] dn.3 29484.558327: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46980              ps-13726 (13726) [005] d..2 29484.558331: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46981 shell svc 13722-13723 ( 1007) [005] d..2 29484.558343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46982          <idle>-0     (-----) [000] d.h3 29484.558351: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46983          <idle>-0     (-----) [000] dnh4 29484.558357: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
46984          <idle>-0     (-----) [000] .n.1 29484.558361: cpu_idle: state=4294967295 cpu_id=0
46985          <idle>-0     (-----) [000] d..2 29484.558367: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
46986   kworker/u17:2-23076 (23076) [000] d..2 29484.558374: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46987   kworker/u17:2-23076 (23076) [000] d..3 29484.558379: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
46988   kworker/u17:2-23076 (23076) [000] d..2 29484.558394: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
46989     kworker/0:0-13450 (13450) [000] d..2 29484.558400: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
46990              ps-13726 (13726) [005] d..2 29484.558408: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46991     kworker/0:0-13450 (13450) [000] d..3 29484.558409: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
46992              ps-13726 (13726) [005] dn.3 29484.558412: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
46993          <idle>-0     (-----) [001] .n.1 29484.558414: cpu_idle: state=4294967295 cpu_id=1
46994              ps-13726 (13726) [005] d..2 29484.558415: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
46995     kworker/0:0-13450 (13450) [000] d..2 29484.558416: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46996          <idle>-0     (-----) [001] d..2 29484.558422: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
46997          <idle>-0     (-----) [000] d..1 29484.558422: cpu_idle: state=0 cpu_id=0
46998 shell svc 13722-13723 ( 1007) [005] d..2 29484.558428: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
46999            adbd-23484 ( 1007) [001] d..2 29484.558433: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47000            adbd-23484 ( 1007) [001] d..3 29484.558439: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47001            adbd-23484 ( 1007) [001] d..2 29484.558485: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47002              ps-13726 (13726) [005] d..2 29484.558489: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47003              ps-13726 (13726) [005] dn.3 29484.558493: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47004              ps-13726 (13726) [005] d..2 29484.558496: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47005 shell svc 13722-13723 ( 1007) [005] d..2 29484.558509: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47006            adbd-1007  ( 1007) [001] d..1 29484.558544: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47007            adbd-1007  ( 1007) [001] d..2 29484.558556: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47008          <idle>-0     (-----) [000] .n.1 29484.558560: cpu_idle: state=4294967295 cpu_id=0
47009          <idle>-0     (-----) [000] d..2 29484.558566: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47010              ps-13726 (13726) [005] d..2 29484.558575: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47011              ps-13726 (13726) [005] dn.3 29484.558579: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47012              ps-13726 (13726) [005] d..2 29484.558582: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47013            adbd-1007  ( 1007) [001] d..2 29484.558588: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47014 shell svc 13722-13723 ( 1007) [005] d..2 29484.558596: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47015          <idle>-0     (-----) [001] d..1 29484.558597: cpu_idle: state=0 cpu_id=1
47016            adbd-23485 ( 1007) [000] d..2 29484.558607: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47017          <idle>-0     (-----) [000] d.h4 29484.558623: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47018          <idle>-0     (-----) [000] dnh5 29484.558628: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47019          <idle>-0     (-----) [000] d..2 29484.558636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47020   kworker/u17:2-23076 (23076) [000] d..2 29484.558642: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47021   kworker/u17:2-23076 (23076) [000] d..3 29484.558647: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47022              ps-13726 (13726) [005] d..2 29484.558659: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47023   kworker/u17:2-23076 (23076) [000] d..2 29484.558663: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47024              ps-13726 (13726) [005] dn.3 29484.558663: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47025              ps-13726 (13726) [005] d..2 29484.558666: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47026     kworker/0:0-13450 (13450) [000] d..2 29484.558667: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47027     kworker/0:0-13450 (13450) [000] d..3 29484.558676: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47028 shell svc 13722-13723 ( 1007) [005] d..2 29484.558679: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47029     kworker/0:0-13450 (13450) [000] d..2 29484.558684: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47030            adbd-23485 ( 1007) [000] d..2 29484.558722: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47031          <idle>-0     (-----) [000] d..1 29484.558729: cpu_idle: state=0 cpu_id=0
47032              ps-13726 (13726) [005] d..2 29484.558743: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47033              ps-13726 (13726) [005] dn.3 29484.558747: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47034              ps-13726 (13726) [005] d..2 29484.558750: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47035          <idle>-0     (-----) [000] d.h3 29484.558751: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47036          <idle>-0     (-----) [000] dnh4 29484.558757: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47037          <idle>-0     (-----) [000] .n.1 29484.558761: cpu_idle: state=4294967295 cpu_id=0
47038 shell svc 13722-13723 ( 1007) [005] d..2 29484.558763: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47039          <idle>-0     (-----) [000] d..2 29484.558767: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47040   kworker/u17:2-23076 (23076) [000] d..2 29484.558774: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47041   kworker/u17:2-23076 (23076) [000] d..3 29484.558779: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47042   kworker/u17:2-23076 (23076) [000] d..2 29484.558793: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47043     kworker/0:0-13450 (13450) [000] d..2 29484.558798: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47044     kworker/0:0-13450 (13450) [000] d..3 29484.558806: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47045     kworker/0:0-13450 (13450) [000] d..2 29484.558814: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47046            adbd-23485 ( 1007) [000] d..2 29484.558826: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47047              ps-13726 (13726) [005] d..2 29484.558827: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47048              ps-13726 (13726) [005] dn.3 29484.558831: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47049          <idle>-0     (-----) [000] d..1 29484.558833: cpu_idle: state=0 cpu_id=0
47050              ps-13726 (13726) [005] d..2 29484.558835: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47051 shell svc 13722-13723 ( 1007) [005] d..2 29484.558847: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47052          <idle>-0     (-----) [000] d.h3 29484.558890: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47053          <idle>-0     (-----) [000] dnh4 29484.558895: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47054          <idle>-0     (-----) [000] .n.1 29484.558900: cpu_idle: state=4294967295 cpu_id=0
47055          <idle>-0     (-----) [000] d..2 29484.558906: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47056              ps-13726 (13726) [005] d..2 29484.558910: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47057   kworker/u17:2-23076 (23076) [000] d..2 29484.558913: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47058              ps-13726 (13726) [005] dn.3 29484.558914: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47059   kworker/u17:2-23076 (23076) [000] d..3 29484.558918: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47060              ps-13726 (13726) [005] d..2 29484.558918: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47061 shell svc 13722-13723 ( 1007) [005] d..2 29484.558930: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47062   kworker/u17:2-23076 (23076) [000] d..2 29484.558933: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47063     kworker/0:0-13450 (13450) [000] d..2 29484.558939: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47064     kworker/0:0-13450 (13450) [000] d..3 29484.558947: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47065          <idle>-0     (-----) [001] .n.1 29484.558953: cpu_idle: state=4294967295 cpu_id=1
47066     kworker/0:0-13450 (13450) [000] d..2 29484.558955: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47067          <idle>-0     (-----) [001] d..2 29484.558960: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47068          <idle>-0     (-----) [000] d..1 29484.558960: cpu_idle: state=0 cpu_id=0
47069            adbd-23484 ( 1007) [001] d..2 29484.558971: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47070            adbd-23484 ( 1007) [001] d..3 29484.558977: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47071              ps-13726 (13726) [005] d..2 29484.558991: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47072              ps-13726 (13726) [005] dn.3 29484.558995: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47073              ps-13726 (13726) [005] d..2 29484.558999: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47074 shell svc 13722-13723 ( 1007) [005] d..2 29484.559011: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47075            adbd-23484 ( 1007) [001] d..2 29484.559020: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47076              ps-13726 (13726) [005] d..2 29484.559075: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47077            adbd-1007  ( 1007) [001] d..1 29484.559078: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47078              ps-13726 (13726) [005] dn.3 29484.559079: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47079              ps-13726 (13726) [005] d..2 29484.559082: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47080            adbd-1007  ( 1007) [001] d..2 29484.559089: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47081          <idle>-0     (-----) [000] .n.1 29484.559094: cpu_idle: state=4294967295 cpu_id=0
47082 shell svc 13722-13723 ( 1007) [005] d..2 29484.559095: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47083          <idle>-0     (-----) [000] d..2 29484.559100: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47084            adbd-1007  ( 1007) [001] d..2 29484.559121: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47085          <idle>-0     (-----) [001] d..1 29484.559130: cpu_idle: state=0 cpu_id=1
47086            adbd-23485 ( 1007) [000] d..2 29484.559140: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47087          <idle>-0     (-----) [000] d..1 29484.559146: cpu_idle: state=0 cpu_id=0
47088              ps-13726 (13726) [005] d..2 29484.559156: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47089              ps-13726 (13726) [005] dn.3 29484.559161: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47090              ps-13726 (13726) [005] d..2 29484.559164: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47091          <idle>-0     (-----) [000] d.h3 29484.559165: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47092          <idle>-0     (-----) [000] dnh4 29484.559171: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47093          <idle>-0     (-----) [000] .n.1 29484.559176: cpu_idle: state=4294967295 cpu_id=0
47094 shell svc 13722-13723 ( 1007) [005] d..2 29484.559177: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47095          <idle>-0     (-----) [000] d..2 29484.559182: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47096   kworker/u17:2-23076 (23076) [000] d..2 29484.559188: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47097   kworker/u17:2-23076 (23076) [000] d..3 29484.559193: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47098   kworker/u17:2-23076 (23076) [000] d..2 29484.559208: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47099     kworker/0:0-13450 (13450) [000] d..2 29484.559213: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47100     kworker/0:0-13450 (13450) [000] d..3 29484.559222: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47101     kworker/0:0-13450 (13450) [000] d..2 29484.559230: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47102              ps-13726 (13726) [005] d..2 29484.559241: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47103              ps-13726 (13726) [005] dn.3 29484.559245: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47104              ps-13726 (13726) [005] d..2 29484.559249: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47105 shell svc 13722-13723 ( 1007) [005] d..2 29484.559262: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47106            adbd-23485 ( 1007) [000] d..2 29484.559269: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47107          <idle>-0     (-----) [000] d..1 29484.559275: cpu_idle: state=0 cpu_id=0
47108          <idle>-0     (-----) [000] d.h3 29484.559292: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47109          <idle>-0     (-----) [000] dnh4 29484.559298: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47110          <idle>-0     (-----) [000] .n.1 29484.559302: cpu_idle: state=4294967295 cpu_id=0
47111          <idle>-0     (-----) [000] d..2 29484.559308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47112   kworker/u17:2-23076 (23076) [000] d..2 29484.559315: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47113   kworker/u17:2-23076 (23076) [000] d..3 29484.559320: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47114              ps-13726 (13726) [005] d..2 29484.559324: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47115              ps-13726 (13726) [005] dn.3 29484.559328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47116              ps-13726 (13726) [005] d..2 29484.559332: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47117   kworker/u17:2-23076 (23076) [000] d..2 29484.559335: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47118     kworker/0:0-13450 (13450) [000] d..2 29484.559340: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47119 shell svc 13722-13723 ( 1007) [005] d..2 29484.559345: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47120     kworker/0:0-13450 (13450) [000] d..3 29484.559348: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47121     kworker/0:0-13450 (13450) [000] d..2 29484.559357: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47122            adbd-23485 ( 1007) [000] d..2 29484.559368: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47123          <idle>-0     (-----) [000] d..1 29484.559373: cpu_idle: state=0 cpu_id=0
47124              ps-13726 (13726) [005] d..2 29484.559410: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47125              ps-13726 (13726) [005] dn.3 29484.559414: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47126              ps-13726 (13726) [005] d..2 29484.559417: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47127          <idle>-0     (-----) [000] d.h3 29484.559428: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47128 shell svc 13722-13723 ( 1007) [005] d..2 29484.559431: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47129          <idle>-0     (-----) [000] dnh4 29484.559434: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47130          <idle>-0     (-----) [000] .n.1 29484.559438: cpu_idle: state=4294967295 cpu_id=0
47131          <idle>-0     (-----) [000] d..2 29484.559444: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47132   kworker/u17:2-23076 (23076) [000] d..2 29484.559450: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47133   kworker/u17:2-23076 (23076) [000] d..3 29484.559454: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47134   kworker/u17:2-23076 (23076) [000] d..2 29484.559470: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47135     kworker/0:0-13450 (13450) [000] d..2 29484.559476: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47136     kworker/0:0-13450 (13450) [000] d..3 29484.559488: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47137          <idle>-0     (-----) [001] .n.1 29484.559493: cpu_idle: state=4294967295 cpu_id=1
47138              ps-13726 (13726) [005] d..2 29484.559495: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47139     kworker/0:0-13450 (13450) [000] d..2 29484.559495: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47140              ps-13726 (13726) [005] dn.3 29484.559499: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47141          <idle>-0     (-----) [001] d..2 29484.559501: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47142          <idle>-0     (-----) [000] d..1 29484.559501: cpu_idle: state=0 cpu_id=0
47143              ps-13726 (13726) [005] d..2 29484.559503: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47144            adbd-23484 ( 1007) [001] d..2 29484.559512: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47145 shell svc 13722-13723 ( 1007) [005] d..2 29484.559515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47146            adbd-23484 ( 1007) [001] d..3 29484.559518: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47147            adbd-23484 ( 1007) [001] d..2 29484.559562: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47148              ps-13726 (13726) [005] d..2 29484.559576: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47149              ps-13726 (13726) [005] dn.3 29484.559580: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47150              ps-13726 (13726) [005] d..2 29484.559583: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47151 shell svc 13722-13723 ( 1007) [005] d..2 29484.559596: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47152            adbd-1007  ( 1007) [001] d..1 29484.559620: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47153            adbd-1007  ( 1007) [001] d..2 29484.559631: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47154          <idle>-0     (-----) [000] .n.1 29484.559636: cpu_idle: state=4294967295 cpu_id=0
47155          <idle>-0     (-----) [000] d..2 29484.559642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47156              ps-13726 (13726) [005] d..2 29484.559658: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47157              ps-13726 (13726) [005] dn.3 29484.559662: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47158            adbd-1007  ( 1007) [001] d..2 29484.559663: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47159              ps-13726 (13726) [005] d..2 29484.559666: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47160          <idle>-0     (-----) [001] d..1 29484.559672: cpu_idle: state=0 cpu_id=1
47161 shell svc 13722-13723 ( 1007) [005] d..2 29484.559678: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47162            adbd-23485 ( 1007) [000] d..2 29484.559682: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47163          <idle>-0     (-----) [000] d..1 29484.559689: cpu_idle: state=0 cpu_id=0
47164          <idle>-0     (-----) [000] d.h3 29484.559706: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47165          <idle>-0     (-----) [000] dnh4 29484.559715: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47166          <idle>-0     (-----) [000] .n.1 29484.559720: cpu_idle: state=4294967295 cpu_id=0
47167          <idle>-0     (-----) [000] d..2 29484.559726: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47168   kworker/u17:2-23076 (23076) [000] d..2 29484.559732: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47169   kworker/u17:2-23076 (23076) [000] d..3 29484.559737: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47170              ps-13726 (13726) [005] d..2 29484.559740: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47171              ps-13726 (13726) [005] dn.3 29484.559745: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47172              ps-13726 (13726) [005] d..2 29484.559748: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47173   kworker/u17:2-23076 (23076) [000] d..2 29484.559753: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47174     kworker/0:0-13450 (13450) [000] d..2 29484.559758: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47175 shell svc 13722-13723 ( 1007) [005] d..2 29484.559761: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47176     kworker/0:0-13450 (13450) [000] d..3 29484.559765: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47177     kworker/0:0-13450 (13450) [000] d..2 29484.559773: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47178            adbd-23485 ( 1007) [000] d..2 29484.559812: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47179          <idle>-0     (-----) [000] d..1 29484.559819: cpu_idle: state=0 cpu_id=0
47180              ps-13726 (13726) [005] d..2 29484.559823: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47181              ps-13726 (13726) [005] dn.3 29484.559827: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47182              ps-13726 (13726) [005] d..2 29484.559831: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47183 shell svc 13722-13723 ( 1007) [005] d..2 29484.559843: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47184          <idle>-0     (-----) [000] d.h3 29484.559855: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47185          <idle>-0     (-----) [000] dnh4 29484.559861: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47186          <idle>-0     (-----) [000] .n.1 29484.559867: cpu_idle: state=4294967295 cpu_id=0
47187          <idle>-0     (-----) [000] d..2 29484.559873: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47188   kworker/u17:2-23076 (23076) [000] d..2 29484.559881: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47189   kworker/u17:2-23076 (23076) [000] d..3 29484.559886: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47190   kworker/u17:2-23076 (23076) [000] d..2 29484.559901: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47191     kworker/0:0-13450 (13450) [000] d..2 29484.559906: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47192              ps-13726 (13726) [005] d..2 29484.559910: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47193     kworker/0:0-13450 (13450) [000] d..3 29484.559914: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47194              ps-13726 (13726) [005] dn.3 29484.559915: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47195              ps-13726 (13726) [005] d..2 29484.559918: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47196     kworker/0:0-13450 (13450) [000] d..2 29484.559922: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47197 shell svc 13722-13723 ( 1007) [005] d..2 29484.559931: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47198            adbd-23485 ( 1007) [000] d..2 29484.559934: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47199          <idle>-0     (-----) [000] d..1 29484.559940: cpu_idle: state=0 cpu_id=0
47200              ps-13726 (13726) [005] d..2 29484.559997: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47201              ps-13726 (13726) [005] dn.3 29484.560001: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47202              ps-13726 (13726) [005] d..2 29484.560005: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47203          <idle>-0     (-----) [000] d.h3 29484.560009: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47204          <idle>-0     (-----) [000] dnh4 29484.560015: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47205 shell svc 13722-13723 ( 1007) [005] d..2 29484.560017: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47206          <idle>-0     (-----) [000] .n.1 29484.560020: cpu_idle: state=4294967295 cpu_id=0
47207          <idle>-0     (-----) [000] d..2 29484.560025: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47208   kworker/u17:2-23076 (23076) [000] d..2 29484.560032: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47209   kworker/u17:2-23076 (23076) [000] d..3 29484.560036: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47210   kworker/u17:2-23076 (23076) [000] d..2 29484.560052: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47211     kworker/0:0-13450 (13450) [000] d..2 29484.560058: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47212     kworker/0:0-13450 (13450) [000] d..3 29484.560066: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47213          <idle>-0     (-----) [001] .n.1 29484.560072: cpu_idle: state=4294967295 cpu_id=1
47214     kworker/0:0-13450 (13450) [000] d..2 29484.560074: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47215          <idle>-0     (-----) [001] d..2 29484.560079: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47216          <idle>-0     (-----) [000] d..1 29484.560079: cpu_idle: state=0 cpu_id=0
47217              ps-13726 (13726) [005] d..2 29484.560080: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47218              ps-13726 (13726) [005] dn.3 29484.560084: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47219              ps-13726 (13726) [005] d..2 29484.560087: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47220            adbd-23484 ( 1007) [001] d..2 29484.560090: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47221            adbd-23484 ( 1007) [001] d..3 29484.560097: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47222 shell svc 13722-13723 ( 1007) [005] d..2 29484.560100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47223            adbd-23484 ( 1007) [001] d..2 29484.560141: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47224              ps-13726 (13726) [005] d..2 29484.560160: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47225              ps-13726 (13726) [005] dn.3 29484.560164: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47226              ps-13726 (13726) [005] d..2 29484.560168: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47227 shell svc 13722-13723 ( 1007) [005] d..2 29484.560181: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47228            adbd-1007  ( 1007) [001] d..1 29484.560200: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47229            adbd-1007  ( 1007) [001] d..2 29484.560222: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47230          <idle>-0     (-----) [000] .n.1 29484.560226: cpu_idle: state=4294967295 cpu_id=0
47231          <idle>-0     (-----) [000] d..2 29484.560232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47232              ps-13726 (13726) [005] d..2 29484.560242: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47233              ps-13726 (13726) [005] dn.3 29484.560246: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47234              ps-13726 (13726) [005] d..2 29484.560249: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47235            adbd-1007  ( 1007) [001] d..2 29484.560254: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47236 shell svc 13722-13723 ( 1007) [005] d..2 29484.560262: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47237          <idle>-0     (-----) [001] d..1 29484.560263: cpu_idle: state=0 cpu_id=1
47238            adbd-23485 ( 1007) [000] d..2 29484.560271: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47239          <idle>-0     (-----) [000] d.h3 29484.560290: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47240          <idle>-0     (-----) [000] dnh4 29484.560296: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47241          <idle>-0     (-----) [000] d..2 29484.560305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47242   kworker/u17:2-23076 (23076) [000] d..2 29484.560311: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47243   kworker/u17:2-23076 (23076) [000] d..3 29484.560316: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47244              ps-13726 (13726) [005] d..2 29484.560324: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47245              ps-13726 (13726) [005] dn.3 29484.560328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47246   kworker/u17:2-23076 (23076) [000] d..2 29484.560331: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47247              ps-13726 (13726) [005] d..2 29484.560332: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47248     kworker/0:0-13450 (13450) [000] d..2 29484.560336: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47249 shell svc 13722-13723 ( 1007) [005] d..2 29484.560344: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47250     kworker/0:0-13450 (13450) [000] d..3 29484.560345: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47251     kworker/0:0-13450 (13450) [000] d..2 29484.560353: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47252            adbd-23485 ( 1007) [000] d..2 29484.560391: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47253              ps-13726 (13726) [005] d.s2 29484.560400: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
47254          <idle>-0     (-----) [000] d.H4 29484.560426: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47255          <idle>-0     (-----) [000] dnH5 29484.560435: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47256              ps-13726 (13726) [005] d..2 29484.560436: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47257              ps-13726 (13726) [005] dn.3 29484.560441: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47258          <idle>-0     (-----) [000] dnH3 29484.560444: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
47259              ps-13726 (13726) [005] d..2 29484.560445: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47260 shell svc 13722-13723 ( 1007) [005] d..2 29484.560459: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47261          <idle>-0     (-----) [000] d..2 29484.560460: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47262   kworker/u17:2-23076 (23076) [000] d..2 29484.560466: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47263   kworker/u17:2-23076 (23076) [000] d..3 29484.560471: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47264   kworker/u17:2-23076 (23076) [000] d..2 29484.560487: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
47265              ps-13726 (13726) [005] d..2 29484.560537: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47266              ps-13726 (13726) [005] dn.3 29484.560542: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47267              ps-13726 (13726) [005] d..2 29484.560549: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47268 shell svc 13722-13723 ( 1007) [005] d..2 29484.560568: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47269  kworker/u16:10-23868 (23868) [000] d..2 29484.560570: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47270     kworker/0:0-13450 (13450) [000] d..2 29484.560575: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47271     kworker/0:0-13450 (13450) [000] d..3 29484.560584: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47272     kworker/0:0-13450 (13450) [000] d.h2 29484.560600: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47273     kworker/0:0-13450 (13450) [000] dnh3 29484.560607: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47274     kworker/0:0-13450 (13450) [000] d..2 29484.560614: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47275   kworker/u17:2-23076 (23076) [000] d..2 29484.560634: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47276              ps-13726 (13726) [005] d..2 29484.560635: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47277              ps-13726 (13726) [005] dn.3 29484.560640: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47278     kworker/0:0-13450 (13450) [000] d..2 29484.560642: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47279              ps-13726 (13726) [005] d..2 29484.560644: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47280     kworker/0:0-13450 (13450) [000] d..3 29484.560651: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47281          <idle>-0     (-----) [001] .n.1 29484.560656: cpu_idle: state=4294967295 cpu_id=1
47282 shell svc 13722-13723 ( 1007) [005] d..2 29484.560657: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47283     kworker/0:0-13450 (13450) [000] d..2 29484.560658: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47284          <idle>-0     (-----) [001] d..2 29484.560664: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47285            adbd-23485 ( 1007) [000] d..2 29484.560670: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47286            adbd-23484 ( 1007) [001] d..2 29484.560675: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47287          <idle>-0     (-----) [000] d..1 29484.560676: cpu_idle: state=0 cpu_id=0
47288            adbd-23484 ( 1007) [001] d..3 29484.560682: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47289              ps-13726 (13726) [005] d..2 29484.560719: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47290              ps-13726 (13726) [005] dn.3 29484.560724: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47291            adbd-23484 ( 1007) [001] d..2 29484.560726: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47292              ps-13726 (13726) [005] d..2 29484.560727: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47293 shell svc 13722-13723 ( 1007) [005] d..2 29484.560740: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47294            adbd-1007  ( 1007) [001] d..1 29484.560784: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47295            adbd-1007  ( 1007) [001] d..2 29484.560796: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47296          <idle>-0     (-----) [000] .n.1 29484.560801: cpu_idle: state=4294967295 cpu_id=0
47297              ps-13726 (13726) [005] d..2 29484.560804: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47298          <idle>-0     (-----) [000] d..2 29484.560806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47299              ps-13726 (13726) [005] dn.3 29484.560809: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47300              ps-13726 (13726) [005] d..2 29484.560812: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47301 shell svc 13722-13723 ( 1007) [005] d..2 29484.560825: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47302            adbd-1007  ( 1007) [001] d..2 29484.560830: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47303          <idle>-0     (-----) [001] d..1 29484.560839: cpu_idle: state=0 cpu_id=1
47304            adbd-23485 ( 1007) [000] d..2 29484.560846: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47305          <idle>-0     (-----) [000] d..1 29484.560851: cpu_idle: state=0 cpu_id=0
47306          <idle>-0     (-----) [000] d.h3 29484.560871: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47307          <idle>-0     (-----) [000] dnh4 29484.560877: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47308          <idle>-0     (-----) [000] .n.1 29484.560881: cpu_idle: state=4294967295 cpu_id=0
47309          <idle>-0     (-----) [000] d..2 29484.560885: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47310              ps-13726 (13726) [005] d..2 29484.560889: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47311   kworker/u17:2-23076 (23076) [000] d..2 29484.560891: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47312              ps-13726 (13726) [005] dn.3 29484.560894: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47313   kworker/u17:2-23076 (23076) [000] d..3 29484.560897: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47314              ps-13726 (13726) [005] d..2 29484.560897: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47315 shell svc 13722-13723 ( 1007) [005] d..2 29484.560910: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47316   kworker/u17:2-23076 (23076) [000] d..2 29484.560912: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47317     kworker/0:0-13450 (13450) [000] d..2 29484.560916: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47318     kworker/0:0-13450 (13450) [000] d..3 29484.560925: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47319     kworker/0:0-13450 (13450) [000] d..2 29484.560933: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47320            adbd-23485 ( 1007) [000] d..2 29484.560972: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47321              ps-13726 (13726) [005] d..2 29484.560974: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47322          <idle>-0     (-----) [000] d..1 29484.560977: cpu_idle: state=0 cpu_id=0
47323              ps-13726 (13726) [005] dn.3 29484.560979: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47324              ps-13726 (13726) [005] d..2 29484.560982: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47325 shell svc 13722-13723 ( 1007) [005] d..2 29484.560997: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47326          <idle>-0     (-----) [000] d.h3 29484.560999: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47327          <idle>-0     (-----) [000] dnh4 29484.561005: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47328          <idle>-0     (-----) [000] .n.1 29484.561010: cpu_idle: state=4294967295 cpu_id=0
47329          <idle>-0     (-----) [000] d..2 29484.561014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47330   kworker/u17:2-23076 (23076) [000] d..2 29484.561020: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47331   kworker/u17:2-23076 (23076) [000] d..3 29484.561025: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47332   kworker/u17:2-23076 (23076) [000] d..2 29484.561040: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47333     kworker/0:0-13450 (13450) [000] d..2 29484.561045: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47334     kworker/0:0-13450 (13450) [000] d..3 29484.561053: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47335              ps-13726 (13726) [005] d..2 29484.561060: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47336     kworker/0:0-13450 (13450) [000] d..2 29484.561061: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47337              ps-13726 (13726) [005] dn.3 29484.561065: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47338              ps-13726 (13726) [005] d..2 29484.561068: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47339            adbd-23485 ( 1007) [000] d..2 29484.561073: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47340          <idle>-0     (-----) [000] d..1 29484.561078: cpu_idle: state=0 cpu_id=0
47341 shell svc 13722-13723 ( 1007) [005] d..2 29484.561081: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47342              ps-13726 (13726) [005] d..2 29484.561146: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47343              ps-13726 (13726) [005] dn.3 29484.561150: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47344              ps-13726 (13726) [005] d..2 29484.561154: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47345 shell svc 13722-13723 ( 1007) [005] d..2 29484.561167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47346          <idle>-0     (-----) [000] d.h3 29484.561226: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47347              ps-13726 (13726) [005] d..2 29484.561231: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47348          <idle>-0     (-----) [000] dnh4 29484.561233: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47349              ps-13726 (13726) [005] dn.3 29484.561235: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47350          <idle>-0     (-----) [000] .n.1 29484.561238: cpu_idle: state=4294967295 cpu_id=0
47351              ps-13726 (13726) [005] d..2 29484.561238: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47352          <idle>-0     (-----) [000] d..2 29484.561242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47353   kworker/u17:2-23076 (23076) [000] d..2 29484.561248: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47354 shell svc 13722-13723 ( 1007) [005] d..2 29484.561252: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47355   kworker/u17:2-23076 (23076) [000] d..3 29484.561253: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47356   kworker/u17:2-23076 (23076) [000] d..2 29484.561268: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47357     kworker/0:0-13450 (13450) [000] d..2 29484.561274: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47358     kworker/0:0-13450 (13450) [000] d..3 29484.561282: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47359          <idle>-0     (-----) [001] .n.1 29484.561288: cpu_idle: state=4294967295 cpu_id=1
47360     kworker/0:0-13450 (13450) [000] d..2 29484.561291: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47361          <idle>-0     (-----) [001] d..2 29484.561294: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47362          <idle>-0     (-----) [000] d..1 29484.561295: cpu_idle: state=0 cpu_id=0
47363            adbd-23484 ( 1007) [001] d..2 29484.561306: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47364            adbd-23484 ( 1007) [001] d..3 29484.561312: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47365              ps-13726 (13726) [005] d..2 29484.561316: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47366              ps-13726 (13726) [005] dn.3 29484.561320: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47367              ps-13726 (13726) [005] d..2 29484.561324: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47368 shell svc 13722-13723 ( 1007) [005] d..2 29484.561336: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47369            adbd-23484 ( 1007) [001] d..2 29484.561356: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47370              ps-13726 (13726) [005] d..2 29484.561398: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47371              ps-13726 (13726) [005] dn.3 29484.561403: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47372              ps-13726 (13726) [005] d..2 29484.561407: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47373            adbd-1007  ( 1007) [001] d..1 29484.561416: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47374 shell svc 13722-13723 ( 1007) [005] d..2 29484.561420: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47375            adbd-1007  ( 1007) [001] d..2 29484.561427: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47376          <idle>-0     (-----) [000] .n.1 29484.561431: cpu_idle: state=4294967295 cpu_id=0
47377          <idle>-0     (-----) [000] d..2 29484.561436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47378            adbd-1007  ( 1007) [001] d..2 29484.561459: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47379          <idle>-0     (-----) [001] d..1 29484.561469: cpu_idle: state=0 cpu_id=1
47380            adbd-23485 ( 1007) [000] d..2 29484.561476: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47381          <idle>-0     (-----) [000] d..1 29484.561482: cpu_idle: state=0 cpu_id=0
47382              ps-13726 (13726) [005] d..2 29484.561482: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47383              ps-13726 (13726) [005] dn.3 29484.561486: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47384              ps-13726 (13726) [005] d..2 29484.561489: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47385          <idle>-0     (-----) [000] d.h3 29484.561498: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47386 shell svc 13722-13723 ( 1007) [005] d..2 29484.561502: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47387          <idle>-0     (-----) [000] dnh4 29484.561504: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47388          <idle>-0     (-----) [000] .n.1 29484.561509: cpu_idle: state=4294967295 cpu_id=0
47389          <idle>-0     (-----) [000] d..2 29484.561514: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47390   kworker/u17:2-23076 (23076) [000] d..2 29484.561519: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47391   kworker/u17:2-23076 (23076) [000] d..3 29484.561524: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47392   kworker/u17:2-23076 (23076) [000] d..2 29484.561540: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47393     kworker/0:0-13450 (13450) [000] d..2 29484.561546: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47394     kworker/0:0-13450 (13450) [000] d..3 29484.561555: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47395     kworker/0:0-13450 (13450) [000] d..2 29484.561562: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47396              ps-13726 (13726) [005] d..2 29484.561566: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47397              ps-13726 (13726) [005] dn.3 29484.561570: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47398              ps-13726 (13726) [005] d..2 29484.561574: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47399 shell svc 13722-13723 ( 1007) [005] d..2 29484.561586: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47400            adbd-23485 ( 1007) [000] d..2 29484.561600: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47401          <idle>-0     (-----) [000] d..1 29484.561605: cpu_idle: state=0 cpu_id=0
47402          <idle>-0     (-----) [000] d.h3 29484.561628: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47403          <idle>-0     (-----) [000] dnh4 29484.561634: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47404          <idle>-0     (-----) [000] .n.1 29484.561638: cpu_idle: state=4294967295 cpu_id=0
47405          <idle>-0     (-----) [000] d..2 29484.561642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47406   kworker/u17:2-23076 (23076) [000] d..2 29484.561649: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47407              ps-13726 (13726) [005] d..2 29484.561652: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47408   kworker/u17:2-23076 (23076) [000] d..3 29484.561653: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47409              ps-13726 (13726) [005] dn.3 29484.561657: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47410              ps-13726 (13726) [005] d..2 29484.561660: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47411   kworker/u17:2-23076 (23076) [000] d..2 29484.561669: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47412 shell svc 13722-13723 ( 1007) [005] d..2 29484.561672: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47413     kworker/0:0-13450 (13450) [000] d..2 29484.561674: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47414     kworker/0:0-13450 (13450) [000] d..3 29484.561682: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47415     kworker/0:0-13450 (13450) [000] d..2 29484.561689: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47416            adbd-23485 ( 1007) [000] d..2 29484.561700: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47417          <idle>-0     (-----) [000] d..1 29484.561705: cpu_idle: state=0 cpu_id=0
47418              ps-13726 (13726) [005] d..2 29484.561735: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47419              ps-13726 (13726) [005] dn.3 29484.561740: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47420              ps-13726 (13726) [005] d..2 29484.561744: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47421 shell svc 13722-13723 ( 1007) [005] d..2 29484.561756: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47422          <idle>-0     (-----) [000] d.h3 29484.561815: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47423              ps-13726 (13726) [005] d..2 29484.561818: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47424              ps-13726 (13726) [005] dn.3 29484.561822: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47425          <idle>-0     (-----) [000] dnh4 29484.561823: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47426              ps-13726 (13726) [005] d..2 29484.561826: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47427          <idle>-0     (-----) [000] .n.1 29484.561828: cpu_idle: state=4294967295 cpu_id=0
47428          <idle>-0     (-----) [000] d..2 29484.561833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47429 shell svc 13722-13723 ( 1007) [005] d..2 29484.561838: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47430   kworker/u17:2-23076 (23076) [000] d..2 29484.561839: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47431   kworker/u17:2-23076 (23076) [000] d..3 29484.561844: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47432   kworker/u17:2-23076 (23076) [000] d..2 29484.561860: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47433     kworker/0:0-13450 (13450) [000] d..2 29484.561865: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47434     kworker/0:0-13450 (13450) [000] d..3 29484.561876: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47435          <idle>-0     (-----) [001] .n.1 29484.561881: cpu_idle: state=4294967295 cpu_id=1
47436     kworker/0:0-13450 (13450) [000] d..2 29484.561884: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47437          <idle>-0     (-----) [000] d..1 29484.561888: cpu_idle: state=0 cpu_id=0
47438          <idle>-0     (-----) [001] d..2 29484.561888: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47439            adbd-23484 ( 1007) [001] d..2 29484.561900: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47440              ps-13726 (13726) [005] d..2 29484.561900: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47441              ps-13726 (13726) [005] dn.3 29484.561905: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47442            adbd-23484 ( 1007) [001] d..3 29484.561906: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47443              ps-13726 (13726) [005] d..2 29484.561908: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47444 shell svc 13722-13723 ( 1007) [005] d..2 29484.561921: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47445            adbd-23484 ( 1007) [001] d..2 29484.561950: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47446              ps-13726 (13726) [005] d..2 29484.561986: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47447              ps-13726 (13726) [005] dn.3 29484.561991: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47448              ps-13726 (13726) [005] d..2 29484.561994: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47449 shell svc 13722-13723 ( 1007) [005] d..2 29484.562007: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47450            adbd-1007  ( 1007) [001] d..1 29484.562011: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47451            adbd-1007  ( 1007) [001] d..2 29484.562023: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47452          <idle>-0     (-----) [000] .n.1 29484.562027: cpu_idle: state=4294967295 cpu_id=0
47453          <idle>-0     (-----) [000] d..2 29484.562032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47454            adbd-1007  ( 1007) [001] d..2 29484.562055: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47455          <idle>-0     (-----) [001] d..1 29484.562064: cpu_idle: state=0 cpu_id=1
47456              ps-13726 (13726) [005] d..2 29484.562069: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47457            adbd-23485 ( 1007) [000] d..2 29484.562073: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47458              ps-13726 (13726) [005] dn.3 29484.562073: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47459              ps-13726 (13726) [005] d..2 29484.562076: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47460          <idle>-0     (-----) [000] d..1 29484.562078: cpu_idle: state=0 cpu_id=0
47461 shell svc 13722-13723 ( 1007) [005] d..2 29484.562089: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47462          <idle>-0     (-----) [000] d.h3 29484.562100: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47463          <idle>-0     (-----) [000] dnh4 29484.562106: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47464          <idle>-0     (-----) [000] .n.1 29484.562111: cpu_idle: state=4294967295 cpu_id=0
47465          <idle>-0     (-----) [000] d..2 29484.562115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47466   kworker/u17:2-23076 (23076) [000] d..2 29484.562121: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47467   kworker/u17:2-23076 (23076) [000] d..3 29484.562126: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47468   kworker/u17:2-23076 (23076) [000] d..2 29484.562142: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47469     kworker/0:0-13450 (13450) [000] d..2 29484.562146: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47470              ps-13726 (13726) [005] d..2 29484.562152: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47471     kworker/0:0-13450 (13450) [000] d..3 29484.562154: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47472              ps-13726 (13726) [005] dn.3 29484.562156: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47473              ps-13726 (13726) [005] d..2 29484.562160: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47474     kworker/0:0-13450 (13450) [000] d..2 29484.562162: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47475 shell svc 13722-13723 ( 1007) [005] d..2 29484.562173: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47476            adbd-23485 ( 1007) [000] d..2 29484.562200: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47477          <idle>-0     (-----) [000] d..1 29484.562205: cpu_idle: state=0 cpu_id=0
47478          <idle>-0     (-----) [000] d.h3 29484.562230: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47479              ps-13726 (13726) [005] d..2 29484.562234: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47480          <idle>-0     (-----) [000] dnh4 29484.562236: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47481              ps-13726 (13726) [005] dn.3 29484.562238: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47482          <idle>-0     (-----) [000] .n.1 29484.562241: cpu_idle: state=4294967295 cpu_id=0
47483              ps-13726 (13726) [005] d..2 29484.562242: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47484          <idle>-0     (-----) [000] d..2 29484.562245: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47485   kworker/u17:2-23076 (23076) [000] d..2 29484.562251: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47486 shell svc 13722-13723 ( 1007) [005] d..2 29484.562255: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47487   kworker/u17:2-23076 (23076) [000] d..3 29484.562256: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47488   kworker/u17:2-23076 (23076) [000] d..2 29484.562272: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47489     kworker/0:0-13450 (13450) [000] d..2 29484.562276: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47490     kworker/0:0-13450 (13450) [000] d..3 29484.562284: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47491     kworker/0:0-13450 (13450) [000] d..2 29484.562292: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47492            adbd-23485 ( 1007) [000] d..2 29484.562303: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47493          <idle>-0     (-----) [000] d..1 29484.562308: cpu_idle: state=0 cpu_id=0
47494              ps-13726 (13726) [005] d..2 29484.562318: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47495              ps-13726 (13726) [005] dn.3 29484.562322: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47496              ps-13726 (13726) [005] d..2 29484.562326: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47497 shell svc 13722-13723 ( 1007) [005] d..2 29484.562338: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47498              ps-13726 (13726) [005] d..2 29484.562403: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47499              ps-13726 (13726) [005] dn.3 29484.562407: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47500              ps-13726 (13726) [005] d..2 29484.562411: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47501 shell svc 13722-13723 ( 1007) [005] d..2 29484.562424: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47502          <idle>-0     (-----) [000] d.h3 29484.562425: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47503          <idle>-0     (-----) [000] dnh4 29484.562430: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47504          <idle>-0     (-----) [000] .n.1 29484.562435: cpu_idle: state=4294967295 cpu_id=0
47505          <idle>-0     (-----) [000] d..2 29484.562439: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47506   kworker/u17:2-23076 (23076) [000] d..2 29484.562445: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47507   kworker/u17:2-23076 (23076) [000] d..3 29484.562450: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47508   kworker/u17:2-23076 (23076) [000] d..2 29484.562466: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47509     kworker/0:0-13450 (13450) [000] d..2 29484.562471: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47510     kworker/0:0-13450 (13450) [000] d..3 29484.562479: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47511          <idle>-0     (-----) [001] .n.1 29484.562485: cpu_idle: state=4294967295 cpu_id=1
47512              ps-13726 (13726) [005] d..2 29484.562485: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47513     kworker/0:0-13450 (13450) [000] d..2 29484.562488: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47514              ps-13726 (13726) [005] dn.3 29484.562489: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47515          <idle>-0     (-----) [001] d..2 29484.562491: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47516          <idle>-0     (-----) [000] d..1 29484.562492: cpu_idle: state=0 cpu_id=0
47517              ps-13726 (13726) [005] d..2 29484.562493: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47518            adbd-23484 ( 1007) [001] d..2 29484.562503: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47519 shell svc 13722-13723 ( 1007) [005] d..2 29484.562507: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47520            adbd-23484 ( 1007) [001] d..3 29484.562509: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47521            adbd-23484 ( 1007) [001] d..2 29484.562553: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47522              ps-13726 (13726) [005] d..2 29484.562568: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47523              ps-13726 (13726) [005] dn.3 29484.562572: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47524              ps-13726 (13726) [005] d..2 29484.562576: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47525 shell svc 13722-13723 ( 1007) [005] d..2 29484.562589: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47526            adbd-1007  ( 1007) [001] d..1 29484.562613: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47527            adbd-1007  ( 1007) [001] d..2 29484.562635: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47528          <idle>-0     (-----) [000] .n.1 29484.562639: cpu_idle: state=4294967295 cpu_id=0
47529          <idle>-0     (-----) [000] d..2 29484.562644: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47530              ps-13726 (13726) [005] d..2 29484.562655: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47531              ps-13726 (13726) [005] dn.3 29484.562659: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47532              ps-13726 (13726) [005] d..2 29484.562662: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47533            adbd-1007  ( 1007) [001] d..2 29484.562667: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47534 shell svc 13722-13723 ( 1007) [005] d..2 29484.562675: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47535          <idle>-0     (-----) [001] d..1 29484.562676: cpu_idle: state=0 cpu_id=1
47536            adbd-23485 ( 1007) [000] d..2 29484.562692: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47537          <idle>-0     (-----) [000] d.h4 29484.562709: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47538          <idle>-0     (-----) [000] dnh5 29484.562715: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47539          <idle>-0     (-----) [000] d..2 29484.562722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47540   kworker/u17:2-23076 (23076) [000] d..2 29484.562729: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47541   kworker/u17:2-23076 (23076) [000] d..3 29484.562734: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47542              ps-13726 (13726) [005] d..2 29484.562737: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47543              ps-13726 (13726) [005] dn.3 29484.562742: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47544              ps-13726 (13726) [005] d..2 29484.562745: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47545   kworker/u17:2-23076 (23076) [000] d..2 29484.562749: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47546     kworker/0:0-13450 (13450) [000] d..2 29484.562754: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47547 shell svc 13722-13723 ( 1007) [005] d..2 29484.562758: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47548     kworker/0:0-13450 (13450) [000] d..3 29484.562762: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47549     kworker/0:0-13450 (13450) [000] d..2 29484.562770: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47550            adbd-23485 ( 1007) [000] d..2 29484.562809: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47551              ps-13726 (13726) [005] d..2 29484.562820: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47552              ps-13726 (13726) [005] dn.3 29484.562825: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47553          <idle>-0     (-----) [000] d.h3 29484.562827: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47554              ps-13726 (13726) [005] d..2 29484.562828: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47555          <idle>-0     (-----) [000] dnh4 29484.562832: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47556          <idle>-0     (-----) [000] d..2 29484.562839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47557 shell svc 13722-13723 ( 1007) [005] d..2 29484.562841: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47558   kworker/u17:2-23076 (23076) [000] d..2 29484.562846: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47559   kworker/u17:2-23076 (23076) [000] d..3 29484.562850: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47560   kworker/u17:2-23076 (23076) [000] d..2 29484.562865: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47561     kworker/0:0-13450 (13450) [000] d..2 29484.562869: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47562     kworker/0:0-13450 (13450) [000] d..3 29484.562877: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47563     kworker/0:0-13450 (13450) [000] d..2 29484.562885: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47564            adbd-23485 ( 1007) [000] d..2 29484.562896: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47565          <idle>-0     (-----) [000] d..1 29484.562901: cpu_idle: state=0 cpu_id=0
47566              ps-13726 (13726) [005] d..2 29484.562903: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47567              ps-13726 (13726) [005] dn.3 29484.562907: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47568              ps-13726 (13726) [005] d..2 29484.562911: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47569 shell svc 13722-13723 ( 1007) [005] d..2 29484.562923: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47570              ps-13726 (13726) [005] d..2 29484.562986: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47571              ps-13726 (13726) [005] dn.3 29484.562991: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47572              ps-13726 (13726) [005] d..2 29484.562995: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47573 shell svc 13722-13723 ( 1007) [005] d..2 29484.563007: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47574          <idle>-0     (-----) [000] d.h3 29484.563008: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47575          <idle>-0     (-----) [000] dnh4 29484.563013: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47576          <idle>-0     (-----) [000] .n.1 29484.563018: cpu_idle: state=4294967295 cpu_id=0
47577          <idle>-0     (-----) [000] d..2 29484.563022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47578   kworker/u17:2-23076 (23076) [000] d..2 29484.563028: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47579   kworker/u17:2-23076 (23076) [000] d..3 29484.563033: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47580   kworker/u17:2-23076 (23076) [000] d..2 29484.563049: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47581     kworker/0:0-13450 (13450) [000] d..2 29484.563054: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47582     kworker/0:0-13450 (13450) [000] d..3 29484.563062: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47583          <idle>-0     (-----) [001] .n.1 29484.563068: cpu_idle: state=4294967295 cpu_id=1
47584              ps-13726 (13726) [005] d..2 29484.563068: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47585     kworker/0:0-13450 (13450) [000] d..2 29484.563070: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47586              ps-13726 (13726) [005] dn.3 29484.563073: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47587          <idle>-0     (-----) [000] d..1 29484.563074: cpu_idle: state=0 cpu_id=0
47588          <idle>-0     (-----) [001] d..2 29484.563075: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47589              ps-13726 (13726) [005] d..2 29484.563076: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47590            adbd-23484 ( 1007) [001] d..2 29484.563087: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47591 shell svc 13722-13723 ( 1007) [005] d..2 29484.563089: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47592            adbd-23484 ( 1007) [001] d..3 29484.563093: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47593            adbd-23484 ( 1007) [001] d..2 29484.563138: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47594              ps-13726 (13726) [005] d..2 29484.563151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47595              ps-13726 (13726) [005] dn.3 29484.563156: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47596              ps-13726 (13726) [005] d..2 29484.563159: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47597 shell svc 13722-13723 ( 1007) [005] d..2 29484.563172: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47598            adbd-1007  ( 1007) [001] d..1 29484.563197: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47599            adbd-1007  ( 1007) [001] d..2 29484.563209: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47600          <idle>-0     (-----) [000] .n.1 29484.563213: cpu_idle: state=4294967295 cpu_id=0
47601          <idle>-0     (-----) [000] d..2 29484.563218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47602              ps-13726 (13726) [005] d..2 29484.563233: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47603              ps-13726 (13726) [005] dn.3 29484.563238: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47604            adbd-1007  ( 1007) [001] d..2 29484.563240: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47605              ps-13726 (13726) [005] d..2 29484.563241: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47606          <idle>-0     (-----) [001] d..1 29484.563249: cpu_idle: state=0 cpu_id=1
47607 shell svc 13722-13723 ( 1007) [005] d..2 29484.563254: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47608            adbd-23485 ( 1007) [000] d..2 29484.563257: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47609          <idle>-0     (-----) [000] d.h4 29484.563273: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47610          <idle>-0     (-----) [000] dnh5 29484.563279: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47611          <idle>-0     (-----) [000] d..2 29484.563286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47612   kworker/u17:2-23076 (23076) [000] d..2 29484.563293: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47613   kworker/u17:2-23076 (23076) [000] d..3 29484.563298: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47614   kworker/u17:2-23076 (23076) [000] d..2 29484.563313: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47615     kworker/0:0-13450 (13450) [000] d..2 29484.563317: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47616              ps-13726 (13726) [005] d..2 29484.563321: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47617              ps-13726 (13726) [005] dn.3 29484.563325: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47618     kworker/0:0-13450 (13450) [000] d..3 29484.563326: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47619              ps-13726 (13726) [005] d..2 29484.563328: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47620     kworker/0:0-13450 (13450) [000] d..2 29484.563333: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47621 shell svc 13722-13723 ( 1007) [005] d..2 29484.563341: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47622            adbd-23485 ( 1007) [000] d..2 29484.563371: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47623          <idle>-0     (-----) [000] d..1 29484.563377: cpu_idle: state=0 cpu_id=0
47624          <idle>-0     (-----) [000] d.h3 29484.563397: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47625          <idle>-0     (-----) [000] dnh4 29484.563403: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47626              ps-13726 (13726) [005] d..2 29484.563403: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47627          <idle>-0     (-----) [000] .n.1 29484.563407: cpu_idle: state=4294967295 cpu_id=0
47628              ps-13726 (13726) [005] dn.3 29484.563408: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47629              ps-13726 (13726) [005] d..2 29484.563411: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47630          <idle>-0     (-----) [000] d..2 29484.563412: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47631   kworker/u17:2-23076 (23076) [000] d..2 29484.563418: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47632   kworker/u17:2-23076 (23076) [000] d..3 29484.563423: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47633 shell svc 13722-13723 ( 1007) [005] d..2 29484.563424: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47634   kworker/u17:2-23076 (23076) [000] d..2 29484.563438: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47635     kworker/0:0-13450 (13450) [000] d..2 29484.563442: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47636     kworker/0:0-13450 (13450) [000] d..3 29484.563451: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47637     kworker/0:0-13450 (13450) [000] d..2 29484.563458: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47638            adbd-23485 ( 1007) [000] d..2 29484.563471: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47639          <idle>-0     (-----) [000] d..1 29484.563475: cpu_idle: state=0 cpu_id=0
47640              ps-13726 (13726) [005] d..2 29484.563488: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47641              ps-13726 (13726) [005] dn.3 29484.563492: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47642              ps-13726 (13726) [005] d..2 29484.563496: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47643 shell svc 13722-13723 ( 1007) [005] d..2 29484.563509: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47644          <idle>-0     (-----) [000] d.h3 29484.563541: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47645          <idle>-0     (-----) [000] dnh4 29484.563546: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47646          <idle>-0     (-----) [000] .n.1 29484.563551: cpu_idle: state=4294967295 cpu_id=0
47647          <idle>-0     (-----) [000] d..2 29484.563555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47648   kworker/u17:2-23076 (23076) [000] d..2 29484.563562: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47649   kworker/u17:2-23076 (23076) [000] d..3 29484.563566: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47650              ps-13726 (13726) [005] d..2 29484.563571: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47651              ps-13726 (13726) [005] dn.3 29484.563575: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47652              ps-13726 (13726) [005] d..2 29484.563578: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47653   kworker/u17:2-23076 (23076) [000] d..2 29484.563581: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47654     kworker/0:0-13450 (13450) [000] d..2 29484.563587: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47655 shell svc 13722-13723 ( 1007) [005] d..2 29484.563591: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47656     kworker/0:0-13450 (13450) [000] d..3 29484.563596: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47657          <idle>-0     (-----) [001] .n.1 29484.563601: cpu_idle: state=4294967295 cpu_id=1
47658     kworker/0:0-13450 (13450) [000] d..2 29484.563604: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47659          <idle>-0     (-----) [001] d..2 29484.563608: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47660          <idle>-0     (-----) [000] d..1 29484.563608: cpu_idle: state=0 cpu_id=0
47661            adbd-23484 ( 1007) [001] d..2 29484.563620: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47662            adbd-23484 ( 1007) [001] d..3 29484.563626: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47663              ps-13726 (13726) [005] d..2 29484.563653: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47664              ps-13726 (13726) [005] dn.3 29484.563658: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47665              ps-13726 (13726) [005] d..2 29484.563661: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47666            adbd-23484 ( 1007) [001] d..2 29484.563669: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47667 shell svc 13722-13723 ( 1007) [005] d..2 29484.563674: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47668          <idle>-0     (-----) [000] d.s2 29484.563739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
47669          <idle>-0     (-----) [000] dns3 29484.563747: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
47670              ps-13726 (13726) [005] d..2 29484.563751: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47671          <idle>-0     (-----) [000] .n.1 29484.563752: cpu_idle: state=4294967295 cpu_id=0
47672              ps-13726 (13726) [005] dn.3 29484.563756: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47673          <idle>-0     (-----) [000] d..2 29484.563757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
47674            adbd-1007  ( 1007) [001] d..1 29484.563759: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47675              ps-13726 (13726) [005] d..2 29484.563759: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47676     rcu_preempt-7     (    7) [000] d..2 29484.563761: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
47677            adbd-1007  ( 1007) [001] d..2 29484.563772: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47678 shell svc 13722-13723 ( 1007) [005] d..2 29484.563773: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47679     rcu_preempt-7     (    7) [000] d..3 29484.563776: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
47680     rcu_preempt-7     (    7) [000] d..2 29484.563777: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
47681     rcu_preempt-7     (    7) [000] d..3 29484.563789: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
47682            adbd-1007  ( 1007) [001] d..2 29484.563795: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
47683         rcuop/0-10    (   10) [001] d..2 29484.563804: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
47684     rcu_preempt-7     (    7) [000] d..2 29484.563805: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
47685         rcuop/4-45    (   45) [000] d..2 29484.563810: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
47686         rcuop/0-10    (   10) [001] d..3 29484.563816: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
47687         rcuop/0-10    (   10) [001] d..2 29484.563828: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
47688              ps-13726 (13726) [005] d..2 29484.563838: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47689         rcuop/4-45    (   45) [000] d..3 29484.563839: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
47690              ps-13726 (13726) [005] dn.3 29484.563842: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47691         rcuop/4-45    (   45) [000] d..2 29484.563846: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47692              ps-13726 (13726) [005] d..2 29484.563846: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47693 shell svc 13722-13723 ( 1007) [005] d..2 29484.563859: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47694         rcuop/1-21    (   21) [001] d..2 29484.563867: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
47695         rcuop/5-53    (   53) [001] d..2 29484.563875: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47696            adbd-23485 ( 1007) [000] d..2 29484.563886: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47697          <idle>-0     (-----) [000] d..1 29484.563894: cpu_idle: state=0 cpu_id=0
47698            adbd-1007  ( 1007) [001] d..2 29484.563900: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47699          <idle>-0     (-----) [001] d..1 29484.563911: cpu_idle: state=0 cpu_id=1
47700          <idle>-0     (-----) [000] d.h3 29484.563917: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47701              ps-13726 (13726) [005] d..2 29484.563921: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47702          <idle>-0     (-----) [000] dnh4 29484.563925: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47703              ps-13726 (13726) [005] dn.3 29484.563926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47704              ps-13726 (13726) [005] d..2 29484.563929: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47705          <idle>-0     (-----) [000] .n.1 29484.563930: cpu_idle: state=4294967295 cpu_id=0
47706          <idle>-0     (-----) [000] d..2 29484.563937: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47707 shell svc 13722-13723 ( 1007) [005] d..2 29484.563942: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47708   kworker/u17:2-23076 (23076) [000] d..2 29484.563944: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47709   kworker/u17:2-23076 (23076) [000] d..3 29484.563949: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47710   kworker/u17:2-23076 (23076) [000] d..2 29484.563964: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47711     kworker/0:0-13450 (13450) [000] d..2 29484.563969: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47712     kworker/0:0-13450 (13450) [000] d..3 29484.563976: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47713     kworker/0:0-13450 (13450) [000] d..2 29484.563984: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47714              ps-13726 (13726) [005] d..2 29484.564010: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47715              ps-13726 (13726) [005] dn.3 29484.564015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47716              ps-13726 (13726) [005] d..2 29484.564018: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47717            adbd-23485 ( 1007) [000] d..2 29484.564023: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47718 shell svc 13722-13723 ( 1007) [005] d..2 29484.564032: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47719          <idle>-0     (-----) [000] d.h3 29484.564043: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47720          <idle>-0     (-----) [000] dnh4 29484.564048: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47721          <idle>-0     (-----) [000] d..2 29484.564057: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47722   kworker/u17:2-23076 (23076) [000] d..2 29484.564063: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47723   kworker/u17:2-23076 (23076) [000] d..3 29484.564068: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47724   kworker/u17:2-23076 (23076) [000] d..2 29484.564084: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47725     kworker/0:0-13450 (13450) [000] d..2 29484.564088: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47726              ps-13726 (13726) [005] d..2 29484.564094: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47727     kworker/0:0-13450 (13450) [000] d..3 29484.564096: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47728              ps-13726 (13726) [005] dn.3 29484.564098: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47729              ps-13726 (13726) [005] d..2 29484.564102: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47730     kworker/0:0-13450 (13450) [000] d..2 29484.564103: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47731 shell svc 13722-13723 ( 1007) [005] d..2 29484.564115: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47732            adbd-23485 ( 1007) [000] d..2 29484.564117: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47733          <idle>-0     (-----) [000] d..1 29484.564124: cpu_idle: state=0 cpu_id=0
47734              ps-13726 (13726) [005] d..2 29484.564179: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47735              ps-13726 (13726) [005] dn.3 29484.564183: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47736              ps-13726 (13726) [005] d..2 29484.564187: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47737          <idle>-0     (-----) [000] d.h3 29484.564187: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47738          <idle>-0     (-----) [000] dnh4 29484.564193: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47739          <idle>-0     (-----) [000] .n.1 29484.564198: cpu_idle: state=4294967295 cpu_id=0
47740 shell svc 13722-13723 ( 1007) [005] d..2 29484.564199: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47741          <idle>-0     (-----) [000] d..2 29484.564204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47742   kworker/u17:2-23076 (23076) [000] d..2 29484.564211: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47743   kworker/u17:2-23076 (23076) [000] d..3 29484.564215: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47744   kworker/u17:2-23076 (23076) [000] d..2 29484.564231: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47745     kworker/0:0-13450 (13450) [000] d..2 29484.564237: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47746     kworker/0:0-13450 (13450) [000] d..3 29484.564248: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47747          <idle>-0     (-----) [001] .n.1 29484.564254: cpu_idle: state=4294967295 cpu_id=1
47748     kworker/0:0-13450 (13450) [000] d..2 29484.564256: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47749          <idle>-0     (-----) [001] d..2 29484.564261: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47750              ps-13726 (13726) [005] d..2 29484.564262: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47751          <idle>-0     (-----) [000] d..1 29484.564263: cpu_idle: state=0 cpu_id=0
47752              ps-13726 (13726) [005] dn.3 29484.564266: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47753              ps-13726 (13726) [005] d..2 29484.564269: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47754            adbd-23484 ( 1007) [001] d..2 29484.564273: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47755            adbd-23484 ( 1007) [001] d..3 29484.564279: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47756 shell svc 13722-13723 ( 1007) [005] d..2 29484.564282: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47757            adbd-23484 ( 1007) [001] d..2 29484.564324: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47758              ps-13726 (13726) [005] d..2 29484.564342: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47759              ps-13726 (13726) [005] dn.3 29484.564346: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47760              ps-13726 (13726) [005] d..2 29484.564349: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47761 shell svc 13722-13723 ( 1007) [005] d..2 29484.564362: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47762            adbd-1007  ( 1007) [001] d..1 29484.564386: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47763            adbd-1007  ( 1007) [001] d..2 29484.564397: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47764          <idle>-0     (-----) [000] .n.1 29484.564402: cpu_idle: state=4294967295 cpu_id=0
47765          <idle>-0     (-----) [000] d..2 29484.564408: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47766            adbd-1007  ( 1007) [001] d..2 29484.564431: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47767              ps-13726 (13726) [005] d..2 29484.564436: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47768          <idle>-0     (-----) [001] d..1 29484.564440: cpu_idle: state=0 cpu_id=1
47769              ps-13726 (13726) [005] dn.3 29484.564441: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47770              ps-13726 (13726) [005] d..2 29484.564444: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47771            adbd-23485 ( 1007) [000] d..2 29484.564448: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47772          <idle>-0     (-----) [000] d..1 29484.564455: cpu_idle: state=0 cpu_id=0
47773 shell svc 13722-13723 ( 1007) [005] d..2 29484.564457: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47774          <idle>-0     (-----) [000] d.h3 29484.564479: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47775          <idle>-0     (-----) [000] dnh4 29484.564484: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47776          <idle>-0     (-----) [000] .n.1 29484.564489: cpu_idle: state=4294967295 cpu_id=0
47777          <idle>-0     (-----) [000] d..2 29484.564495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47778   kworker/u17:2-23076 (23076) [000] d..2 29484.564502: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47779   kworker/u17:2-23076 (23076) [000] d..3 29484.564507: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47780   kworker/u17:2-23076 (23076) [000] d..2 29484.564523: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47781              ps-13726 (13726) [005] d..2 29484.564526: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47782     kworker/0:0-13450 (13450) [000] d..2 29484.564527: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47783              ps-13726 (13726) [005] dn.3 29484.564531: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47784              ps-13726 (13726) [005] d..2 29484.564534: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47785     kworker/0:0-13450 (13450) [000] d..3 29484.564536: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47786     kworker/0:0-13450 (13450) [000] d..2 29484.564544: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47787 shell svc 13722-13723 ( 1007) [005] d..2 29484.564547: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47788            adbd-23485 ( 1007) [000] d..2 29484.564583: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47789          <idle>-0     (-----) [000] d..1 29484.564590: cpu_idle: state=0 cpu_id=0
47790          <idle>-0     (-----) [000] d.h3 29484.564607: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47791          <idle>-0     (-----) [000] dnh4 29484.564612: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47792          <idle>-0     (-----) [000] .n.1 29484.564617: cpu_idle: state=4294967295 cpu_id=0
47793              ps-13726 (13726) [005] d..2 29484.564621: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47794          <idle>-0     (-----) [000] d..2 29484.564622: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47795              ps-13726 (13726) [005] dn.3 29484.564626: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47796   kworker/u17:2-23076 (23076) [000] d..2 29484.564628: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47797              ps-13726 (13726) [005] d..2 29484.564629: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47798   kworker/u17:2-23076 (23076) [000] d..3 29484.564633: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47799 shell svc 13722-13723 ( 1007) [005] d..2 29484.564643: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47800   kworker/u17:2-23076 (23076) [000] d..2 29484.564649: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47801     kworker/0:0-13450 (13450) [000] d..2 29484.564653: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47802     kworker/0:0-13450 (13450) [000] d..3 29484.564661: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47803     kworker/0:0-13450 (13450) [000] d..2 29484.564668: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47804            adbd-23485 ( 1007) [000] d..2 29484.564679: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47805          <idle>-0     (-----) [000] d..1 29484.564686: cpu_idle: state=0 cpu_id=0
47806              ps-13726 (13726) [005] d..2 29484.564711: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47807              ps-13726 (13726) [005] dn.3 29484.564715: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47808              ps-13726 (13726) [005] d..2 29484.564719: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47809 shell svc 13722-13723 ( 1007) [005] d..2 29484.564732: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47810          <idle>-0     (-----) [000] d.h3 29484.564744: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47811          <idle>-0     (-----) [000] dnh4 29484.564749: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47812          <idle>-0     (-----) [000] .n.1 29484.564753: cpu_idle: state=4294967295 cpu_id=0
47813          <idle>-0     (-----) [000] d..2 29484.564759: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47814   kworker/u17:2-23076 (23076) [000] d..2 29484.564766: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47815   kworker/u17:2-23076 (23076) [000] d..3 29484.564772: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47816   kworker/u17:2-23076 (23076) [000] d..2 29484.564787: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47817     kworker/0:0-13450 (13450) [000] d..2 29484.564793: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47818              ps-13726 (13726) [005] d..2 29484.564795: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47819              ps-13726 (13726) [005] dn.3 29484.564799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47820     kworker/0:0-13450 (13450) [000] d..3 29484.564802: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47821              ps-13726 (13726) [005] d..2 29484.564803: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47822          <idle>-0     (-----) [001] .n.1 29484.564807: cpu_idle: state=4294967295 cpu_id=1
47823     kworker/0:0-13450 (13450) [000] d..2 29484.564809: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47824          <idle>-0     (-----) [001] d..2 29484.564814: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47825          <idle>-0     (-----) [000] d..1 29484.564815: cpu_idle: state=0 cpu_id=0
47826 shell svc 13722-13723 ( 1007) [005] d..2 29484.564816: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47827            adbd-23484 ( 1007) [001] d..2 29484.564826: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47828            adbd-23484 ( 1007) [001] d..3 29484.564833: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47829            adbd-23484 ( 1007) [001] d..2 29484.564876: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47830            adbd-1007  ( 1007) [001] d..1 29484.564933: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47831            adbd-1007  ( 1007) [001] d..2 29484.564954: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47832          <idle>-0     (-----) [000] .n.1 29484.564958: cpu_idle: state=4294967295 cpu_id=0
47833          <idle>-0     (-----) [000] d..2 29484.564964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47834            adbd-1007  ( 1007) [001] d..2 29484.564986: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47835          <idle>-0     (-----) [001] d..1 29484.564995: cpu_idle: state=0 cpu_id=1
47836            adbd-23485 ( 1007) [000] d..2 29484.565004: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47837          <idle>-0     (-----) [000] d.h4 29484.565020: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47838          <idle>-0     (-----) [000] dnh5 29484.565026: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47839          <idle>-0     (-----) [000] d..2 29484.565033: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47840   kworker/u17:2-23076 (23076) [000] d..2 29484.565039: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47841   kworker/u17:2-23076 (23076) [000] d..3 29484.565044: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47842   kworker/u17:2-23076 (23076) [000] d..2 29484.565059: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47843     kworker/0:0-13450 (13450) [000] d..2 29484.565064: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47844     kworker/0:0-13450 (13450) [000] d..3 29484.565073: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47845     kworker/0:0-13450 (13450) [000] d..2 29484.565081: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47846            adbd-23485 ( 1007) [000] d..2 29484.565120: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47847          <idle>-0     (-----) [000] d..1 29484.565127: cpu_idle: state=0 cpu_id=0
47848          <idle>-0     (-----) [000] d.h3 29484.565144: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47849          <idle>-0     (-----) [000] dnh4 29484.565150: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47850          <idle>-0     (-----) [000] .n.1 29484.565154: cpu_idle: state=4294967295 cpu_id=0
47851              ps-13726 (13726) [005] d..2 29484.565159: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47852          <idle>-0     (-----) [000] d..2 29484.565160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47853              ps-13726 (13726) [005] dn.3 29484.565164: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47854   kworker/u17:2-23076 (23076) [000] d..2 29484.565166: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47855              ps-13726 (13726) [005] d..2 29484.565168: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47856   kworker/u17:2-23076 (23076) [000] d..3 29484.565171: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47857 shell svc 13722-13723 ( 1007) [005] d..2 29484.565182: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47858   kworker/u17:2-23076 (23076) [000] d..2 29484.565186: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47859              ps-13726 (13726) [005] d..2 29484.565190: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47860     kworker/0:0-13450 (13450) [000] d..2 29484.565190: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47861              ps-13726 (13726) [005] dn.3 29484.565194: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47862              ps-13726 (13726) [005] d..2 29484.565197: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47863     kworker/0:0-13450 (13450) [000] d..3 29484.565199: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47864     kworker/0:0-13450 (13450) [000] d..2 29484.565207: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47865 shell svc 13722-13723 ( 1007) [005] d..2 29484.565208: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47866              ps-13726 (13726) [005] d..2 29484.565215: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47867              ps-13726 (13726) [005] dn.3 29484.565219: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47868            adbd-23485 ( 1007) [000] d..2 29484.565219: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47869              ps-13726 (13726) [005] d..2 29484.565222: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47870          <idle>-0     (-----) [000] d..1 29484.565225: cpu_idle: state=0 cpu_id=0
47871 shell svc 13722-13723 ( 1007) [005] d..2 29484.565233: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47872              ps-13726 (13726) [005] d..2 29484.565240: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47873              ps-13726 (13726) [005] dn.3 29484.565243: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47874              ps-13726 (13726) [005] d..2 29484.565247: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47875 shell svc 13722-13723 ( 1007) [005] d..2 29484.565257: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47876              ps-13726 (13726) [005] d..2 29484.565264: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47877              ps-13726 (13726) [005] dn.3 29484.565267: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47878          <idle>-0     (-----) [000] d.h3 29484.565270: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47879              ps-13726 (13726) [005] d..2 29484.565270: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47880          <idle>-0     (-----) [000] dnh4 29484.565276: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47881          <idle>-0     (-----) [000] .n.1 29484.565280: cpu_idle: state=4294967295 cpu_id=0
47882 shell svc 13722-13723 ( 1007) [005] d..2 29484.565281: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47883          <idle>-0     (-----) [000] d..2 29484.565286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47884              ps-13726 (13726) [005] d..2 29484.565287: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47885              ps-13726 (13726) [005] dn.3 29484.565290: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47886   kworker/u17:2-23076 (23076) [000] d..2 29484.565292: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47887              ps-13726 (13726) [005] d..2 29484.565293: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47888   kworker/u17:2-23076 (23076) [000] d..3 29484.565297: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47889 shell svc 13722-13723 ( 1007) [005] d..2 29484.565303: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47890              ps-13726 (13726) [005] d..2 29484.565310: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47891   kworker/u17:2-23076 (23076) [000] d..2 29484.565313: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47892              ps-13726 (13726) [005] dn.3 29484.565314: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47893              ps-13726 (13726) [005] d..2 29484.565317: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47894     kworker/0:0-13450 (13450) [000] d..2 29484.565318: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47895     kworker/0:0-13450 (13450) [000] d..3 29484.565327: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47896 shell svc 13722-13723 ( 1007) [005] d..2 29484.565327: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47897          <idle>-0     (-----) [001] .n.1 29484.565332: cpu_idle: state=4294967295 cpu_id=1
47898     kworker/0:0-13450 (13450) [000] d..2 29484.565335: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47899          <idle>-0     (-----) [001] d..2 29484.565339: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47900          <idle>-0     (-----) [000] d..1 29484.565340: cpu_idle: state=0 cpu_id=0
47901            adbd-23484 ( 1007) [001] d..2 29484.565350: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47902            adbd-23484 ( 1007) [001] d..3 29484.565356: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47903            adbd-23484 ( 1007) [001] d..2 29484.565401: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47904              ps-13726 (13726) [005] d..2 29484.565426: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47905              ps-13726 (13726) [005] dn.3 29484.565430: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47906              ps-13726 (13726) [005] d..2 29484.565434: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47907 shell svc 13722-13723 ( 1007) [005] d..2 29484.565448: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47908            adbd-1007  ( 1007) [001] d..1 29484.565461: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47909            adbd-1007  ( 1007) [001] d..2 29484.565473: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47910          <idle>-0     (-----) [000] .n.1 29484.565477: cpu_idle: state=4294967295 cpu_id=0
47911          <idle>-0     (-----) [000] d..2 29484.565483: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47912            adbd-1007  ( 1007) [001] d..2 29484.565504: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47913          <idle>-0     (-----) [001] d..1 29484.565513: cpu_idle: state=0 cpu_id=1
47914            adbd-23485 ( 1007) [000] d..2 29484.565523: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47915          <idle>-0     (-----) [000] d.h3 29484.565542: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47916          <idle>-0     (-----) [000] dnh4 29484.565547: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47917          <idle>-0     (-----) [000] d..2 29484.565556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47918   kworker/u17:2-23076 (23076) [000] d..2 29484.565562: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47919   kworker/u17:2-23076 (23076) [000] d..3 29484.565567: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47920   kworker/u17:2-23076 (23076) [000] d..2 29484.565582: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47921     kworker/0:0-13450 (13450) [000] d..2 29484.565587: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47922              ps-13726 (13726) [005] d..2 29484.565590: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47923              ps-13726 (13726) [005] dn.3 29484.565595: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47924     kworker/0:0-13450 (13450) [000] d..3 29484.565596: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47925              ps-13726 (13726) [005] d..2 29484.565599: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47926     kworker/0:0-13450 (13450) [000] d..2 29484.565604: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47927 shell svc 13722-13723 ( 1007) [005] d..2 29484.565614: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47928              ps-13726 (13726) [005] d..2 29484.565621: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47929              ps-13726 (13726) [005] dn.3 29484.565625: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47930              ps-13726 (13726) [005] d..2 29484.565628: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47931 shell svc 13722-13723 ( 1007) [005] d..2 29484.565639: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47932            adbd-23485 ( 1007) [000] d..2 29484.565642: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47933          <idle>-0     (-----) [000] d..1 29484.565649: cpu_idle: state=0 cpu_id=0
47934          <idle>-0     (-----) [000] d.h3 29484.565671: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47935          <idle>-0     (-----) [000] dnh4 29484.565676: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47936          <idle>-0     (-----) [000] .n.1 29484.565681: cpu_idle: state=4294967295 cpu_id=0
47937          <idle>-0     (-----) [000] d..2 29484.565687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47938   kworker/u17:2-23076 (23076) [000] d..2 29484.565693: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47939   kworker/u17:2-23076 (23076) [000] d..3 29484.565697: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47940              ps-13726 (13726) [005] d..2 29484.565706: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47941              ps-13726 (13726) [005] dn.3 29484.565710: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47942   kworker/u17:2-23076 (23076) [000] d..2 29484.565712: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47943              ps-13726 (13726) [005] d..2 29484.565714: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47944     kworker/0:0-13450 (13450) [000] d..2 29484.565717: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47945     kworker/0:0-13450 (13450) [000] d..3 29484.565725: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47946 shell svc 13722-13723 ( 1007) [005] d..2 29484.565727: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47947     kworker/0:0-13450 (13450) [000] d..2 29484.565733: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47948            adbd-23485 ( 1007) [000] d..2 29484.565745: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47949          <idle>-0     (-----) [000] d..1 29484.565751: cpu_idle: state=0 cpu_id=0
47950              ps-13726 (13726) [005] d..2 29484.565791: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47951              ps-13726 (13726) [005] dn.3 29484.565796: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47952              ps-13726 (13726) [005] d..2 29484.565800: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47953 shell svc 13722-13723 ( 1007) [005] d..2 29484.565812: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47954          <idle>-0     (-----) [000] d.h3 29484.565849: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47955          <idle>-0     (-----) [000] dnh4 29484.565855: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47956          <idle>-0     (-----) [000] .n.1 29484.565859: cpu_idle: state=4294967295 cpu_id=0
47957          <idle>-0     (-----) [000] d..2 29484.565865: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47958   kworker/u17:2-23076 (23076) [000] d..2 29484.565871: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47959   kworker/u17:2-23076 (23076) [000] d..3 29484.565876: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47960              ps-13726 (13726) [005] d..2 29484.565881: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47961              ps-13726 (13726) [005] dn.3 29484.565886: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47962              ps-13726 (13726) [005] d..2 29484.565889: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47963   kworker/u17:2-23076 (23076) [000] d..2 29484.565892: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47964     kworker/0:0-13450 (13450) [000] d..2 29484.565898: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
47965 shell svc 13722-13723 ( 1007) [005] d..2 29484.565902: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47966     kworker/0:0-13450 (13450) [000] d..3 29484.565906: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
47967          <idle>-0     (-----) [001] .n.1 29484.565912: cpu_idle: state=4294967295 cpu_id=1
47968     kworker/0:0-13450 (13450) [000] d..2 29484.565914: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47969          <idle>-0     (-----) [001] d..2 29484.565919: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
47970          <idle>-0     (-----) [000] d..1 29484.565920: cpu_idle: state=0 cpu_id=0
47971            adbd-23484 ( 1007) [001] d..2 29484.565930: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
47972            adbd-23484 ( 1007) [001] d..3 29484.565936: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
47973            adbd-23484 ( 1007) [001] d..2 29484.565979: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
47974            adbd-1007  ( 1007) [001] d..1 29484.566035: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47975            adbd-1007  ( 1007) [001] d..2 29484.566047: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47976          <idle>-0     (-----) [000] .n.1 29484.566051: cpu_idle: state=4294967295 cpu_id=0
47977          <idle>-0     (-----) [000] d..2 29484.566057: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
47978            adbd-1007  ( 1007) [001] d..2 29484.566078: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47979          <idle>-0     (-----) [001] d..1 29484.566087: cpu_idle: state=0 cpu_id=1
47980            adbd-23485 ( 1007) [000] d..2 29484.566097: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47981          <idle>-0     (-----) [000] d..1 29484.566103: cpu_idle: state=0 cpu_id=0
47982          <idle>-0     (-----) [000] d.h3 29484.566124: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47983          <idle>-0     (-----) [000] dnh4 29484.566133: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47984          <idle>-0     (-----) [000] .n.1 29484.566138: cpu_idle: state=4294967295 cpu_id=0
47985          <idle>-0     (-----) [000] d..2 29484.566144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
47986   kworker/u17:2-23076 (23076) [000] d..2 29484.566151: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47987   kworker/u17:2-23076 (23076) [000] d..3 29484.566156: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
47988   kworker/u17:2-23076 (23076) [000] d..2 29484.566172: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
47989     kworker/0:0-13450 (13450) [000] d..2 29484.566176: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
47990     kworker/0:0-13450 (13450) [000] d..3 29484.566184: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
47991     kworker/0:0-13450 (13450) [000] d..2 29484.566191: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
47992              ps-13726 (13726) [005] d..2 29484.566229: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47993            adbd-23485 ( 1007) [000] d..2 29484.566230: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47994              ps-13726 (13726) [005] dn.3 29484.566234: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
47995          <idle>-0     (-----) [000] d..1 29484.566236: cpu_idle: state=0 cpu_id=0
47996              ps-13726 (13726) [005] d..2 29484.566238: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
47997 shell svc 13722-13723 ( 1007) [005] d..2 29484.566252: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
47998          <idle>-0     (-----) [000] d.h3 29484.566253: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
47999          <idle>-0     (-----) [000] dnh4 29484.566259: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48000              ps-13726 (13726) [005] d..2 29484.566259: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48001              ps-13726 (13726) [005] dn.3 29484.566263: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48002          <idle>-0     (-----) [000] .n.1 29484.566264: cpu_idle: state=4294967295 cpu_id=0
48003              ps-13726 (13726) [005] d..2 29484.566266: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48004          <idle>-0     (-----) [000] d..2 29484.566270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48005 shell svc 13722-13723 ( 1007) [005] d..2 29484.566277: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48006   kworker/u17:2-23076 (23076) [000] d..2 29484.566278: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48007   kworker/u17:2-23076 (23076) [000] d..3 29484.566284: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48008              ps-13726 (13726) [005] d..2 29484.566285: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48009              ps-13726 (13726) [005] dn.3 29484.566288: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48010              ps-13726 (13726) [005] d..2 29484.566291: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48011   kworker/u17:2-23076 (23076) [000] d..2 29484.566298: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48012 shell svc 13722-13723 ( 1007) [005] d..2 29484.566301: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48013     kworker/0:0-13450 (13450) [000] d..2 29484.566304: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48014              ps-13726 (13726) [005] d..2 29484.566308: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48015              ps-13726 (13726) [005] dn.3 29484.566311: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48016     kworker/0:0-13450 (13450) [000] d..3 29484.566312: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48017              ps-13726 (13726) [005] d..2 29484.566314: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48018     kworker/0:0-13450 (13450) [000] d..2 29484.566319: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48019 shell svc 13722-13723 ( 1007) [005] d..2 29484.566324: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48020              ps-13726 (13726) [005] d..2 29484.566331: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48021            adbd-23485 ( 1007) [000] d..2 29484.566331: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48022              ps-13726 (13726) [005] dn.3 29484.566334: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48023              ps-13726 (13726) [005] d..2 29484.566337: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48024          <idle>-0     (-----) [000] d..1 29484.566338: cpu_idle: state=0 cpu_id=0
48025 shell svc 13722-13723 ( 1007) [005] d..2 29484.566348: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48026              ps-13726 (13726) [005] d..2 29484.566355: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48027              ps-13726 (13726) [005] dn.3 29484.566358: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48028              ps-13726 (13726) [005] d..2 29484.566361: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48029 shell svc 13722-13723 ( 1007) [005] d..2 29484.566371: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48030              ps-13726 (13726) [005] d..2 29484.566379: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48031              ps-13726 (13726) [005] dn.3 29484.566382: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48032              ps-13726 (13726) [005] d..2 29484.566385: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48033          <idle>-0     (-----) [000] d.h3 29484.566394: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48034 shell svc 13722-13723 ( 1007) [005] d..2 29484.566395: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48035          <idle>-0     (-----) [000] dnh4 29484.566400: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48036          <idle>-0     (-----) [000] .n.1 29484.566404: cpu_idle: state=4294967295 cpu_id=0
48037          <idle>-0     (-----) [000] d..2 29484.566410: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48038   kworker/u17:2-23076 (23076) [000] d..2 29484.566416: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48039   kworker/u17:2-23076 (23076) [000] d..3 29484.566421: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48040   kworker/u17:2-23076 (23076) [000] d..2 29484.566435: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48041     kworker/0:0-13450 (13450) [000] d..2 29484.566441: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48042     kworker/0:0-13450 (13450) [000] d..3 29484.566452: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48043          <idle>-0     (-----) [001] .n.1 29484.566458: cpu_idle: state=4294967295 cpu_id=1
48044     kworker/0:0-13450 (13450) [000] d..2 29484.566461: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48045          <idle>-0     (-----) [001] d..2 29484.566465: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48046          <idle>-0     (-----) [000] d..1 29484.566466: cpu_idle: state=0 cpu_id=0
48047            adbd-23484 ( 1007) [001] d..2 29484.566476: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48048            adbd-23484 ( 1007) [001] d..3 29484.566482: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48049              ps-13726 (13726) [005] d..2 29484.566498: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48050              ps-13726 (13726) [005] dn.3 29484.566502: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48051              ps-13726 (13726) [005] d..2 29484.566506: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48052 shell svc 13722-13723 ( 1007) [005] d..2 29484.566519: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48053            adbd-23484 ( 1007) [001] d..2 29484.566526: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48054              ps-13726 (13726) [005] d..2 29484.566584: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48055            adbd-1007  ( 1007) [001] d..1 29484.566587: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48056              ps-13726 (13726) [005] dn.3 29484.566589: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48057              ps-13726 (13726) [005] d..2 29484.566593: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48058            adbd-1007  ( 1007) [001] d..2 29484.566598: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48059          <idle>-0     (-----) [000] .n.1 29484.566603: cpu_idle: state=4294967295 cpu_id=0
48060 shell svc 13722-13723 ( 1007) [005] d..2 29484.566606: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48061          <idle>-0     (-----) [000] d..2 29484.566609: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48062            adbd-1007  ( 1007) [001] d..2 29484.566631: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48063          <idle>-0     (-----) [001] d..1 29484.566639: cpu_idle: state=0 cpu_id=1
48064            adbd-23485 ( 1007) [000] d..2 29484.566649: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48065          <idle>-0     (-----) [000] d.h4 29484.566666: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48066          <idle>-0     (-----) [000] dnh5 29484.566671: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48067          <idle>-0     (-----) [000] d..2 29484.566678: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48068   kworker/u17:2-23076 (23076) [000] d..2 29484.566684: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48069   kworker/u17:2-23076 (23076) [000] d..3 29484.566689: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48070   kworker/u17:2-23076 (23076) [000] d..2 29484.566704: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48071     kworker/0:0-13450 (13450) [000] d..2 29484.566708: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48072     kworker/0:0-13450 (13450) [000] d..3 29484.566717: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48073     kworker/0:0-13450 (13450) [000] d..2 29484.566724: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48074            adbd-23485 ( 1007) [000] d..2 29484.566763: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48075          <idle>-0     (-----) [000] d..1 29484.566771: cpu_idle: state=0 cpu_id=0
48076          <idle>-0     (-----) [000] d.h3 29484.566794: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48077          <idle>-0     (-----) [000] dnh4 29484.566800: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48078          <idle>-0     (-----) [000] .n.1 29484.566804: cpu_idle: state=4294967295 cpu_id=0
48079          <idle>-0     (-----) [000] d..2 29484.566810: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48080   kworker/u17:2-23076 (23076) [000] d..2 29484.566817: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48081   kworker/u17:2-23076 (23076) [000] d..3 29484.566822: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48082   kworker/u17:2-23076 (23076) [000] d..2 29484.566837: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48083     kworker/0:0-13450 (13450) [000] d..2 29484.566841: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48084     kworker/0:0-13450 (13450) [000] d..3 29484.566849: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48085     kworker/0:0-13450 (13450) [000] d..2 29484.566857: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48086            adbd-23485 ( 1007) [000] d..2 29484.566869: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48087          <idle>-0     (-----) [000] d..1 29484.566875: cpu_idle: state=0 cpu_id=0
48088          <idle>-0     (-----) [000] d.h3 29484.566931: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48089          <idle>-0     (-----) [000] dnh4 29484.566937: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48090          <idle>-0     (-----) [000] .n.1 29484.566941: cpu_idle: state=4294967295 cpu_id=0
48091          <idle>-0     (-----) [000] d..2 29484.566947: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48092   kworker/u17:2-23076 (23076) [000] d..2 29484.566953: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48093   kworker/u17:2-23076 (23076) [000] d..3 29484.566958: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48094   kworker/u17:2-23076 (23076) [000] d..2 29484.566973: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48095     kworker/0:0-13450 (13450) [000] d..2 29484.566979: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48096     kworker/0:0-13450 (13450) [000] d..3 29484.566988: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48097          <idle>-0     (-----) [001] .n.1 29484.566993: cpu_idle: state=4294967295 cpu_id=1
48098     kworker/0:0-13450 (13450) [000] d..2 29484.566995: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48099          <idle>-0     (-----) [001] d..2 29484.567000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48100          <idle>-0     (-----) [000] d..1 29484.567000: cpu_idle: state=0 cpu_id=0
48101            adbd-23484 ( 1007) [001] d..2 29484.567011: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48102            adbd-23484 ( 1007) [001] d..3 29484.567018: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48103              ps-13726 (13726) [005] d..2 29484.567024: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48104              ps-13726 (13726) [005] dn.3 29484.567029: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48105              ps-13726 (13726) [005] d..2 29484.567033: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48106 shell svc 13722-13723 ( 1007) [005] d..2 29484.567047: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48107              ps-13726 (13726) [005] d..2 29484.567071: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48108              ps-13726 (13726) [005] dn.3 29484.567074: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48109              ps-13726 (13726) [005] d..2 29484.567078: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48110            adbd-23484 ( 1007) [001] d..2 29484.567080: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48111 shell svc 13722-13723 ( 1007) [005] d..2 29484.567090: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48112              ps-13726 (13726) [005] d..2 29484.567097: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48113              ps-13726 (13726) [005] dn.3 29484.567100: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48114              ps-13726 (13726) [005] d..2 29484.567103: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48115 shell svc 13722-13723 ( 1007) [005] d..2 29484.567114: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48116              ps-13726 (13726) [005] d..2 29484.567121: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48117              ps-13726 (13726) [005] dn.3 29484.567124: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48118              ps-13726 (13726) [005] d..2 29484.567128: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48119            adbd-1007  ( 1007) [001] d..1 29484.567138: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48120 shell svc 13722-13723 ( 1007) [005] d..2 29484.567140: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48121              ps-13726 (13726) [005] d..2 29484.567148: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48122              ps-13726 (13726) [005] dn.3 29484.567150: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48123              ps-13726 (13726) [005] d..2 29484.567153: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48124            adbd-1007  ( 1007) [001] d..2 29484.567159: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48125          <idle>-0     (-----) [000] .n.1 29484.567164: cpu_idle: state=4294967295 cpu_id=0
48126 shell svc 13722-13723 ( 1007) [005] d..2 29484.567165: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48127          <idle>-0     (-----) [000] d..2 29484.567171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48128              ps-13726 (13726) [005] d..2 29484.567171: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48129              ps-13726 (13726) [005] dn.3 29484.567175: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48130              ps-13726 (13726) [005] d..2 29484.567178: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48131 shell svc 13722-13723 ( 1007) [005] d..2 29484.567189: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48132            adbd-1007  ( 1007) [001] d..2 29484.567194: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48133              ps-13726 (13726) [005] d..2 29484.567196: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48134              ps-13726 (13726) [005] dn.3 29484.567199: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48135              ps-13726 (13726) [005] d..2 29484.567202: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48136          <idle>-0     (-----) [001] d..1 29484.567203: cpu_idle: state=0 cpu_id=1
48137            adbd-23485 ( 1007) [000] d..2 29484.567211: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48138 shell svc 13722-13723 ( 1007) [005] d..2 29484.567212: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48139              ps-13726 (13726) [005] d..2 29484.567218: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48140              ps-13726 (13726) [005] dn.3 29484.567221: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48141              ps-13726 (13726) [005] d..2 29484.567224: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48142          <idle>-0     (-----) [000] d.h3 29484.567228: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48143          <idle>-0     (-----) [000] dnh4 29484.567233: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48144 shell svc 13722-13723 ( 1007) [005] d..2 29484.567234: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48145              ps-13726 (13726) [005] d..2 29484.567241: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48146          <idle>-0     (-----) [000] d..2 29484.567241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48147              ps-13726 (13726) [005] dn.3 29484.567244: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48148              ps-13726 (13726) [005] d..2 29484.567247: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48149   kworker/u17:2-23076 (23076) [000] d..2 29484.567247: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48150   kworker/u17:2-23076 (23076) [000] d..3 29484.567253: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48151 shell svc 13722-13723 ( 1007) [005] d..2 29484.567257: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48152              ps-13726 (13726) [005] d..2 29484.567263: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48153              ps-13726 (13726) [005] dn.3 29484.567266: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48154   kworker/u17:2-23076 (23076) [000] d..2 29484.567268: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48155              ps-13726 (13726) [005] d..2 29484.567269: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48156     kworker/0:0-13450 (13450) [000] d..2 29484.567272: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48157 shell svc 13722-13723 ( 1007) [005] d..2 29484.567279: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48158     kworker/0:0-13450 (13450) [000] d..3 29484.567281: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48159     kworker/0:0-13450 (13450) [000] d..2 29484.567288: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48160            adbd-23485 ( 1007) [000] d..2 29484.567326: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48161          <idle>-0     (-----) [000] d..1 29484.567332: cpu_idle: state=0 cpu_id=0
48162              ps-13726 (13726) [005] d..2 29484.567349: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48163              ps-13726 (13726) [005] dn.3 29484.567353: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48164          <idle>-0     (-----) [000] d.h3 29484.567356: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48165              ps-13726 (13726) [005] d..2 29484.567356: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48166          <idle>-0     (-----) [000] dnh4 29484.567361: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48167          <idle>-0     (-----) [000] .n.1 29484.567366: cpu_idle: state=4294967295 cpu_id=0
48168 shell svc 13722-13723 ( 1007) [005] d..2 29484.567369: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48169          <idle>-0     (-----) [000] d..2 29484.567370: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48170   kworker/u17:2-23076 (23076) [000] d..2 29484.567377: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48171   kworker/u17:2-23076 (23076) [000] d..3 29484.567382: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48172   kworker/u17:2-23076 (23076) [000] d..2 29484.567397: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48173     kworker/0:0-13450 (13450) [000] d..2 29484.567401: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48174     kworker/0:0-13450 (13450) [000] d..3 29484.567409: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48175     kworker/0:0-13450 (13450) [000] d..2 29484.567416: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48176            adbd-23485 ( 1007) [000] d..2 29484.567428: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48177          <idle>-0     (-----) [000] d..1 29484.567433: cpu_idle: state=0 cpu_id=0
48178              ps-13726 (13726) [005] d..2 29484.567447: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48179              ps-13726 (13726) [005] dn.3 29484.567451: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48180              ps-13726 (13726) [005] d..2 29484.567454: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48181 shell svc 13722-13723 ( 1007) [005] d..2 29484.567468: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48182          <idle>-0     (-----) [000] d.h3 29484.567487: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48183          <idle>-0     (-----) [000] dnh4 29484.567493: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48184          <idle>-0     (-----) [000] .n.1 29484.567497: cpu_idle: state=4294967295 cpu_id=0
48185          <idle>-0     (-----) [000] d..2 29484.567502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48186   kworker/u17:2-23076 (23076) [000] d..2 29484.567508: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48187   kworker/u17:2-23076 (23076) [000] d..3 29484.567512: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48188   kworker/u17:2-23076 (23076) [000] d..2 29484.567528: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48189     kworker/0:0-13450 (13450) [000] d..2 29484.567533: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48190     kworker/0:0-13450 (13450) [000] d..3 29484.567542: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48191              ps-13726 (13726) [005] d..2 29484.567542: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48192              ps-13726 (13726) [005] dn.3 29484.567547: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48193          <idle>-0     (-----) [001] .n.1 29484.567547: cpu_idle: state=4294967295 cpu_id=1
48194     kworker/0:0-13450 (13450) [000] d..2 29484.567549: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48195              ps-13726 (13726) [005] d..2 29484.567551: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48196          <idle>-0     (-----) [000] d..1 29484.567554: cpu_idle: state=0 cpu_id=0
48197          <idle>-0     (-----) [001] d..2 29484.567554: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48198 shell svc 13722-13723 ( 1007) [005] d..2 29484.567564: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48199            adbd-23484 ( 1007) [001] d..2 29484.567566: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48200            adbd-23484 ( 1007) [001] d..3 29484.567572: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48201            adbd-23484 ( 1007) [001] d..2 29484.567617: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48202              ps-13726 (13726) [005] d..2 29484.567663: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48203              ps-13726 (13726) [005] dn.3 29484.567667: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48204              ps-13726 (13726) [005] d..2 29484.567670: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48205            adbd-1007  ( 1007) [001] d..1 29484.567681: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48206 shell svc 13722-13723 ( 1007) [005] d..2 29484.567684: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48207            adbd-1007  ( 1007) [001] d..2 29484.567693: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48208          <idle>-0     (-----) [000] .n.1 29484.567697: cpu_idle: state=4294967295 cpu_id=0
48209          <idle>-0     (-----) [000] d..2 29484.567702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48210            adbd-1007  ( 1007) [001] d..2 29484.567725: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48211          <idle>-0     (-----) [001] d..1 29484.567734: cpu_idle: state=0 cpu_id=1
48212            adbd-23485 ( 1007) [000] d..2 29484.567742: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48213          <idle>-0     (-----) [000] d..1 29484.567747: cpu_idle: state=0 cpu_id=0
48214          <idle>-0     (-----) [000] d.h3 29484.567768: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48215          <idle>-0     (-----) [000] dnh4 29484.567774: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48216          <idle>-0     (-----) [000] .n.1 29484.567778: cpu_idle: state=4294967295 cpu_id=0
48217          <idle>-0     (-----) [000] d..2 29484.567783: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48218   kworker/u17:2-23076 (23076) [000] d..2 29484.567789: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48219   kworker/u17:2-23076 (23076) [000] d..3 29484.567793: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48220              ps-13726 (13726) [005] d..2 29484.567794: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48221              ps-13726 (13726) [005] dn.3 29484.567799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48222              ps-13726 (13726) [005] d..2 29484.567803: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48223   kworker/u17:2-23076 (23076) [000] d..2 29484.567809: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48224     kworker/0:0-13450 (13450) [000] d..2 29484.567813: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48225 shell svc 13722-13723 ( 1007) [005] d..2 29484.567817: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48226     kworker/0:0-13450 (13450) [000] d..3 29484.567822: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48227     kworker/0:0-13450 (13450) [000] d..2 29484.567829: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48228            adbd-23485 ( 1007) [000] d..2 29484.567867: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48229          <idle>-0     (-----) [000] d..1 29484.567873: cpu_idle: state=0 cpu_id=0
48230          <idle>-0     (-----) [000] d.h3 29484.567900: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48231          <idle>-0     (-----) [000] dnh4 29484.567906: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48232          <idle>-0     (-----) [000] .n.1 29484.567910: cpu_idle: state=4294967295 cpu_id=0
48233              ps-13726 (13726) [005] d..2 29484.567913: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48234          <idle>-0     (-----) [000] d..2 29484.567915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48235              ps-13726 (13726) [005] dn.3 29484.567917: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48236              ps-13726 (13726) [005] d..2 29484.567921: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48237   kworker/u17:2-23076 (23076) [000] d..2 29484.567921: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48238   kworker/u17:2-23076 (23076) [000] d..3 29484.567926: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48239 shell svc 13722-13723 ( 1007) [005] d..2 29484.567935: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48240   kworker/u17:2-23076 (23076) [000] d..2 29484.567942: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48241     kworker/0:0-13450 (13450) [000] d..2 29484.567946: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48242     kworker/0:0-13450 (13450) [000] d..3 29484.567954: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48243     kworker/0:0-13450 (13450) [000] d..2 29484.567961: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48244            adbd-23485 ( 1007) [000] d..2 29484.567973: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48245          <idle>-0     (-----) [000] d..1 29484.567979: cpu_idle: state=0 cpu_id=0
48246          <idle>-0     (-----) [000] d.h3 29484.568032: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48247          <idle>-0     (-----) [000] dnh4 29484.568038: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48248          <idle>-0     (-----) [000] .n.1 29484.568043: cpu_idle: state=4294967295 cpu_id=0
48249          <idle>-0     (-----) [000] d..2 29484.568047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48250   kworker/u17:2-23076 (23076) [000] d..2 29484.568053: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48251   kworker/u17:2-23076 (23076) [000] d..3 29484.568058: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48252   kworker/u17:2-23076 (23076) [000] d..2 29484.568073: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48253     kworker/0:0-13450 (13450) [000] d..2 29484.568079: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48254     kworker/0:0-13450 (13450) [000] d..3 29484.568087: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48255              ps-13726 (13726) [005] d..2 29484.568091: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48256          <idle>-0     (-----) [001] .n.1 29484.568093: cpu_idle: state=4294967295 cpu_id=1
48257     kworker/0:0-13450 (13450) [000] d..2 29484.568095: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48258              ps-13726 (13726) [005] dn.3 29484.568095: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48259              ps-13726 (13726) [005] d..2 29484.568099: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48260          <idle>-0     (-----) [000] d..1 29484.568099: cpu_idle: state=0 cpu_id=0
48261          <idle>-0     (-----) [001] d..2 29484.568100: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48262            adbd-23484 ( 1007) [001] d..2 29484.568112: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48263 shell svc 13722-13723 ( 1007) [005] d..2 29484.568113: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48264            adbd-23484 ( 1007) [001] d..3 29484.568118: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48265              ps-13726 (13726) [005] d..2 29484.568120: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48266              ps-13726 (13726) [005] dn.3 29484.568123: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48267              ps-13726 (13726) [005] d..2 29484.568127: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48268 shell svc 13722-13723 ( 1007) [005] d..2 29484.568138: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48269              ps-13726 (13726) [005] d..2 29484.568145: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48270              ps-13726 (13726) [005] dn.3 29484.568149: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48271              ps-13726 (13726) [005] d..2 29484.568152: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48272            adbd-23484 ( 1007) [001] d..2 29484.568161: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48273 shell svc 13722-13723 ( 1007) [005] d..2 29484.568163: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48274            adbd-1007  ( 1007) [001] d..1 29484.568220: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48275            adbd-1007  ( 1007) [001] d..2 29484.568232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48276          <idle>-0     (-----) [000] .n.1 29484.568236: cpu_idle: state=4294967295 cpu_id=0
48277          <idle>-0     (-----) [000] d..2 29484.568241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48278            adbd-1007  ( 1007) [001] d..2 29484.568263: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48279          <idle>-0     (-----) [001] d..1 29484.568272: cpu_idle: state=0 cpu_id=1
48280            adbd-23485 ( 1007) [000] d..2 29484.568282: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48281          <idle>-0     (-----) [000] d..1 29484.568287: cpu_idle: state=0 cpu_id=0
48282          <idle>-0     (-----) [000] d.h3 29484.568311: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48283          <idle>-0     (-----) [000] dnh4 29484.568320: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48284              ps-13726 (13726) [005] d..2 29484.568321: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48285          <idle>-0     (-----) [000] .n.1 29484.568325: cpu_idle: state=4294967295 cpu_id=0
48286              ps-13726 (13726) [005] dn.3 29484.568326: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48287              ps-13726 (13726) [005] d..2 29484.568329: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48288          <idle>-0     (-----) [000] d..2 29484.568330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48289   kworker/u17:2-23076 (23076) [000] d..2 29484.568337: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48290   kworker/u17:2-23076 (23076) [000] d..3 29484.568342: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48291 shell svc 13722-13723 ( 1007) [005] d..2 29484.568343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48292              ps-13726 (13726) [005] d..2 29484.568351: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48293              ps-13726 (13726) [005] dn.3 29484.568354: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48294   kworker/u17:2-23076 (23076) [000] d..2 29484.568357: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48295              ps-13726 (13726) [005] d..2 29484.568357: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48296     kworker/0:0-13450 (13450) [000] d..2 29484.568361: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48297 shell svc 13722-13723 ( 1007) [005] d..2 29484.568369: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48298     kworker/0:0-13450 (13450) [000] d..3 29484.568369: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48299              ps-13726 (13726) [005] d..2 29484.568377: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48300     kworker/0:0-13450 (13450) [000] d..2 29484.568377: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48301              ps-13726 (13726) [005] dn.3 29484.568380: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48302              ps-13726 (13726) [005] d..2 29484.568384: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48303 shell svc 13722-13723 ( 1007) [005] d..2 29484.568395: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48304            adbd-23485 ( 1007) [000] d..2 29484.568415: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48305          <idle>-0     (-----) [000] d..1 29484.568420: cpu_idle: state=0 cpu_id=0
48306          <idle>-0     (-----) [000] d.h3 29484.568438: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48307          <idle>-0     (-----) [000] dnh4 29484.568444: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48308          <idle>-0     (-----) [000] .n.1 29484.568449: cpu_idle: state=4294967295 cpu_id=0
48309          <idle>-0     (-----) [000] d..2 29484.568453: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48310   kworker/u17:2-23076 (23076) [000] d..2 29484.568459: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48311   kworker/u17:2-23076 (23076) [000] d..3 29484.568464: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48312   kworker/u17:2-23076 (23076) [000] d..2 29484.568479: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48313     kworker/0:0-13450 (13450) [000] d..2 29484.568483: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48314     kworker/0:0-13450 (13450) [000] d..3 29484.568491: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48315     kworker/0:0-13450 (13450) [000] d..2 29484.568498: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48316            adbd-23485 ( 1007) [000] d..2 29484.568509: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48317          <idle>-0     (-----) [000] d..1 29484.568514: cpu_idle: state=0 cpu_id=0
48318          <idle>-0     (-----) [000] d.h3 29484.568576: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48319          <idle>-0     (-----) [000] dnh4 29484.568582: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48320          <idle>-0     (-----) [000] .n.1 29484.568586: cpu_idle: state=4294967295 cpu_id=0
48321          <idle>-0     (-----) [000] d..2 29484.568592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48322   kworker/u17:2-23076 (23076) [000] d..2 29484.568597: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48323   kworker/u17:2-23076 (23076) [000] d..3 29484.568602: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48324   kworker/u17:2-23076 (23076) [000] d..2 29484.568617: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48325     kworker/0:0-13450 (13450) [000] d..2 29484.568623: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48326     kworker/0:0-13450 (13450) [000] d..3 29484.568635: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48327          <idle>-0     (-----) [001] .n.1 29484.568639: cpu_idle: state=4294967295 cpu_id=1
48328     kworker/0:0-13450 (13450) [000] d..2 29484.568643: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48329          <idle>-0     (-----) [001] d..2 29484.568646: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48330          <idle>-0     (-----) [000] d..1 29484.568647: cpu_idle: state=0 cpu_id=0
48331            adbd-23484 ( 1007) [001] d..2 29484.568657: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48332            adbd-23484 ( 1007) [001] d..3 29484.568663: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48333            adbd-23484 ( 1007) [001] d..2 29484.568706: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48334            adbd-1007  ( 1007) [001] d..1 29484.568761: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48335            adbd-1007  ( 1007) [001] d..2 29484.568772: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48336          <idle>-0     (-----) [000] .n.1 29484.568776: cpu_idle: state=4294967295 cpu_id=0
48337              ps-13726 (13726) [005] d..2 29484.568779: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48338          <idle>-0     (-----) [000] d..2 29484.568781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48339              ps-13726 (13726) [005] dn.3 29484.568784: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48340              ps-13726 (13726) [005] d..2 29484.568787: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48341 shell svc 13722-13723 ( 1007) [005] d..2 29484.568802: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48342            adbd-1007  ( 1007) [001] d..2 29484.568804: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48343              ps-13726 (13726) [005] d..2 29484.568810: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48344              ps-13726 (13726) [005] dn.3 29484.568813: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48345          <idle>-0     (-----) [001] d..1 29484.568813: cpu_idle: state=0 cpu_id=1
48346              ps-13726 (13726) [005] d..2 29484.568816: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48347            adbd-23485 ( 1007) [000] d..2 29484.568821: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48348          <idle>-0     (-----) [000] d..1 29484.568826: cpu_idle: state=0 cpu_id=0
48349 shell svc 13722-13723 ( 1007) [005] d..2 29484.568827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48350              ps-13726 (13726) [005] d..2 29484.568834: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48351              ps-13726 (13726) [005] dn.3 29484.568837: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48352              ps-13726 (13726) [005] d..2 29484.568840: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48353 shell svc 13722-13723 ( 1007) [005] d..2 29484.568851: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48354          <idle>-0     (-----) [000] d.h3 29484.568853: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48355              ps-13726 (13726) [005] d..2 29484.568858: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48356          <idle>-0     (-----) [000] dnh4 29484.568858: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48357              ps-13726 (13726) [005] dn.3 29484.568861: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48358          <idle>-0     (-----) [000] .n.1 29484.568863: cpu_idle: state=4294967295 cpu_id=0
48359              ps-13726 (13726) [005] d..2 29484.568864: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48360          <idle>-0     (-----) [000] d..2 29484.568867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48361   kworker/u17:2-23076 (23076) [000] d..2 29484.568874: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48362 shell svc 13722-13723 ( 1007) [005] d..2 29484.568875: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48363   kworker/u17:2-23076 (23076) [000] d..3 29484.568879: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48364              ps-13726 (13726) [005] d..2 29484.568882: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48365              ps-13726 (13726) [005] dn.3 29484.568885: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48366              ps-13726 (13726) [005] d..2 29484.568888: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48367   kworker/u17:2-23076 (23076) [000] d..2 29484.568895: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48368 shell svc 13722-13723 ( 1007) [005] d..2 29484.568898: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48369     kworker/0:0-13450 (13450) [000] d..2 29484.568900: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48370              ps-13726 (13726) [005] d..2 29484.568904: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48371              ps-13726 (13726) [005] dn.3 29484.568907: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48372     kworker/0:0-13450 (13450) [000] d..3 29484.568908: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48373              ps-13726 (13726) [005] d..2 29484.568910: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48374     kworker/0:0-13450 (13450) [000] d..2 29484.568916: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48375 shell svc 13722-13723 ( 1007) [005] d..2 29484.568920: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48376              ps-13726 (13726) [005] d..2 29484.568926: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48377              ps-13726 (13726) [005] dn.3 29484.568929: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48378              ps-13726 (13726) [005] d..2 29484.568932: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48379 shell svc 13722-13723 ( 1007) [005] d..2 29484.568942: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48380              ps-13726 (13726) [005] d..2 29484.568948: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48381              ps-13726 (13726) [005] dn.3 29484.568951: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48382              ps-13726 (13726) [005] d..2 29484.568954: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48383            adbd-23485 ( 1007) [000] d..2 29484.568954: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48384          <idle>-0     (-----) [000] d..1 29484.568959: cpu_idle: state=0 cpu_id=0
48385 shell svc 13722-13723 ( 1007) [005] d..2 29484.568964: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48386              ps-13726 (13726) [005] d..2 29484.568971: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48387              ps-13726 (13726) [005] dn.3 29484.568974: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48388              ps-13726 (13726) [005] d..2 29484.568976: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48389          <idle>-0     (-----) [000] d.h3 29484.568980: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48390          <idle>-0     (-----) [000] dnh4 29484.568985: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48391 shell svc 13722-13723 ( 1007) [005] d..2 29484.568987: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48392          <idle>-0     (-----) [000] .n.1 29484.568990: cpu_idle: state=4294967295 cpu_id=0
48393          <idle>-0     (-----) [000] d..2 29484.568994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48394   kworker/u17:2-23076 (23076) [000] d..2 29484.569001: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48395   kworker/u17:2-23076 (23076) [000] d..3 29484.569005: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48396   kworker/u17:2-23076 (23076) [000] d..2 29484.569020: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48397     kworker/0:0-13450 (13450) [000] d..2 29484.569024: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48398     kworker/0:0-13450 (13450) [000] d..3 29484.569032: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48399     kworker/0:0-13450 (13450) [000] d..2 29484.569040: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48400            adbd-23485 ( 1007) [000] d..2 29484.569052: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48401          <idle>-0     (-----) [000] d..1 29484.569056: cpu_idle: state=0 cpu_id=0
48402              ps-13726 (13726) [005] d..2 29484.569146: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48403              ps-13726 (13726) [005] dn.3 29484.569151: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48404              ps-13726 (13726) [005] d..2 29484.569155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48405 shell svc 13722-13723 ( 1007) [005] d..2 29484.569168: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48406              ps-13726 (13726) [005] d..2 29484.569176: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48407          <idle>-0     (-----) [000] d.h3 29484.569178: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48408              ps-13726 (13726) [005] dn.3 29484.569179: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48409              ps-13726 (13726) [005] d..2 29484.569182: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48410          <idle>-0     (-----) [000] dnh4 29484.569183: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48411          <idle>-0     (-----) [000] .n.1 29484.569190: cpu_idle: state=4294967295 cpu_id=0
48412 shell svc 13722-13723 ( 1007) [005] d..2 29484.569193: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48413          <idle>-0     (-----) [000] d..2 29484.569195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48414              ps-13726 (13726) [005] d..2 29484.569200: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48415   kworker/u17:2-23076 (23076) [000] d..2 29484.569202: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48416              ps-13726 (13726) [005] dn.3 29484.569203: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48417              ps-13726 (13726) [005] d..2 29484.569206: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48418   kworker/u17:2-23076 (23076) [000] d..3 29484.569207: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48419 shell svc 13722-13723 ( 1007) [005] d..2 29484.569216: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48420   kworker/u17:2-23076 (23076) [000] d..2 29484.569222: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48421     kworker/0:0-13450 (13450) [000] d..2 29484.569227: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48422     kworker/0:0-13450 (13450) [000] d..3 29484.569235: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48423          <idle>-0     (-----) [001] .n.1 29484.569240: cpu_idle: state=4294967295 cpu_id=1
48424     kworker/0:0-13450 (13450) [000] d..2 29484.569243: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48425          <idle>-0     (-----) [000] d..1 29484.569247: cpu_idle: state=0 cpu_id=0
48426          <idle>-0     (-----) [001] d..2 29484.569247: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48427            adbd-23484 ( 1007) [001] d..2 29484.569258: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48428            adbd-23484 ( 1007) [001] d..3 29484.569265: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48429              ps-13726 (13726) [005] d..2 29484.569283: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48430              ps-13726 (13726) [005] dn.3 29484.569287: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48431              ps-13726 (13726) [005] d..2 29484.569291: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48432 shell svc 13722-13723 ( 1007) [005] d..2 29484.569304: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48433            adbd-23484 ( 1007) [001] d..2 29484.569308: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48434              ps-13726 (13726) [005] d..2 29484.569369: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48435            adbd-1007  ( 1007) [001] d..1 29484.569373: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48436              ps-13726 (13726) [005] dn.3 29484.569373: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48437              ps-13726 (13726) [005] d..2 29484.569377: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48438 shell svc 13722-13723 ( 1007) [005] d..2 29484.569390: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48439            adbd-1007  ( 1007) [001] d..2 29484.569395: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48440          <idle>-0     (-----) [000] .n.1 29484.569399: cpu_idle: state=4294967295 cpu_id=0
48441          <idle>-0     (-----) [000] d..2 29484.569404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48442            adbd-1007  ( 1007) [001] d..2 29484.569427: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48443          <idle>-0     (-----) [001] d..1 29484.569436: cpu_idle: state=0 cpu_id=1
48444            adbd-23485 ( 1007) [000] d..2 29484.569444: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48445              ps-13726 (13726) [005] d..2 29484.569454: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48446              ps-13726 (13726) [005] dn.3 29484.569459: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48447          <idle>-0     (-----) [000] d.h4 29484.569460: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48448              ps-13726 (13726) [005] d..2 29484.569462: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48449          <idle>-0     (-----) [000] dnh5 29484.569467: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48450          <idle>-0     (-----) [000] d..2 29484.569474: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48451 shell svc 13722-13723 ( 1007) [005] d..2 29484.569475: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48452   kworker/u17:2-23076 (23076) [000] d..2 29484.569481: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48453   kworker/u17:2-23076 (23076) [000] d..3 29484.569486: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48454   kworker/u17:2-23076 (23076) [000] d..2 29484.569501: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48455     kworker/0:0-13450 (13450) [000] d..2 29484.569505: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48456     kworker/0:0-13450 (13450) [000] d..3 29484.569515: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48457     kworker/0:0-13450 (13450) [000] d..2 29484.569523: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48458              ps-13726 (13726) [005] d..2 29484.569550: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48459              ps-13726 (13726) [005] dn.3 29484.569554: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48460              ps-13726 (13726) [005] d..2 29484.569558: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48461            adbd-23485 ( 1007) [000] d..2 29484.569562: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48462          <idle>-0     (-----) [000] d..1 29484.569567: cpu_idle: state=0 cpu_id=0
48463 shell svc 13722-13723 ( 1007) [005] d..2 29484.569571: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48464          <idle>-0     (-----) [000] d.h3 29484.569600: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48465          <idle>-0     (-----) [000] dnh4 29484.569606: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48466          <idle>-0     (-----) [000] .n.1 29484.569611: cpu_idle: state=4294967295 cpu_id=0
48467          <idle>-0     (-----) [000] d..2 29484.569615: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48468   kworker/u17:2-23076 (23076) [000] d..2 29484.569621: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48469   kworker/u17:2-23076 (23076) [000] d..3 29484.569626: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48470              ps-13726 (13726) [005] d..2 29484.569638: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48471   kworker/u17:2-23076 (23076) [000] d..2 29484.569641: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48472              ps-13726 (13726) [005] dn.3 29484.569642: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48473              ps-13726 (13726) [005] d..2 29484.569645: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48474     kworker/0:0-13450 (13450) [000] d..2 29484.569646: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48475     kworker/0:0-13450 (13450) [000] d..3 29484.569653: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48476 shell svc 13722-13723 ( 1007) [005] d..2 29484.569659: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48477     kworker/0:0-13450 (13450) [000] d..2 29484.569662: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48478            adbd-23485 ( 1007) [000] d..2 29484.569673: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48479          <idle>-0     (-----) [000] d..1 29484.569678: cpu_idle: state=0 cpu_id=0
48480          <idle>-0     (-----) [000] d.h3 29484.569759: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48481          <idle>-0     (-----) [000] dnh4 29484.569764: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48482          <idle>-0     (-----) [000] .n.1 29484.569768: cpu_idle: state=4294967295 cpu_id=0
48483          <idle>-0     (-----) [000] d..2 29484.569773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48484   kworker/u17:2-23076 (23076) [000] d..2 29484.569778: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48485   kworker/u17:2-23076 (23076) [000] d..3 29484.569783: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48486   kworker/u17:2-23076 (23076) [000] d..2 29484.569798: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48487     kworker/0:0-13450 (13450) [000] d..2 29484.569803: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48488     kworker/0:0-13450 (13450) [000] d..3 29484.569811: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48489          <idle>-0     (-----) [001] .n.1 29484.569817: cpu_idle: state=4294967295 cpu_id=1
48490     kworker/0:0-13450 (13450) [000] d..2 29484.569819: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48491          <idle>-0     (-----) [000] d..1 29484.569823: cpu_idle: state=0 cpu_id=0
48492          <idle>-0     (-----) [001] d..2 29484.569824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48493            adbd-23484 ( 1007) [001] d..2 29484.569835: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48494            adbd-23484 ( 1007) [001] d..3 29484.569841: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48495            adbd-23484 ( 1007) [001] d..2 29484.569884: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48496            adbd-1007  ( 1007) [001] d..1 29484.569939: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48497            adbd-1007  ( 1007) [001] d..2 29484.569950: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48498          <idle>-0     (-----) [000] .n.1 29484.569955: cpu_idle: state=4294967295 cpu_id=0
48499          <idle>-0     (-----) [000] d..2 29484.569960: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48500            adbd-1007  ( 1007) [001] d..2 29484.569982: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48501          <idle>-0     (-----) [001] d..1 29484.569990: cpu_idle: state=0 cpu_id=1
48502            adbd-23485 ( 1007) [000] d..2 29484.569999: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48503          <idle>-0     (-----) [000] d..1 29484.570004: cpu_idle: state=0 cpu_id=0
48504          <idle>-0     (-----) [000] d.h3 29484.570020: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48505          <idle>-0     (-----) [000] dnh4 29484.570026: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48506          <idle>-0     (-----) [000] .n.1 29484.570030: cpu_idle: state=4294967295 cpu_id=0
48507          <idle>-0     (-----) [000] d..2 29484.570035: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48508   kworker/u17:2-23076 (23076) [000] d..2 29484.570041: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48509   kworker/u17:2-23076 (23076) [000] d..3 29484.570046: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48510   kworker/u17:2-23076 (23076) [000] d..2 29484.570061: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48511     kworker/0:0-13450 (13450) [000] d..2 29484.570065: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48512     kworker/0:0-13450 (13450) [000] d..3 29484.570074: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48513     kworker/0:0-13450 (13450) [000] d..2 29484.570081: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48514            adbd-23485 ( 1007) [000] d..2 29484.570119: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48515          <idle>-0     (-----) [000] d..1 29484.570124: cpu_idle: state=0 cpu_id=0
48516          <idle>-0     (-----) [000] d.h3 29484.570150: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48517          <idle>-0     (-----) [000] dnh4 29484.570155: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48518          <idle>-0     (-----) [000] .n.1 29484.570160: cpu_idle: state=4294967295 cpu_id=0
48519          <idle>-0     (-----) [000] d..2 29484.570164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48520   kworker/u17:2-23076 (23076) [000] d..2 29484.570170: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48521   kworker/u17:2-23076 (23076) [000] d..3 29484.570174: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48522   kworker/u17:2-23076 (23076) [000] d..2 29484.570189: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48523     kworker/0:0-13450 (13450) [000] d..2 29484.570194: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48524     kworker/0:0-13450 (13450) [000] d..3 29484.570202: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48525     kworker/0:0-13450 (13450) [000] d..2 29484.570209: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48526            adbd-23485 ( 1007) [000] d..2 29484.570222: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48527          <idle>-0     (-----) [000] d..1 29484.570227: cpu_idle: state=0 cpu_id=0
48528              ps-13726 (13726) [005] d..2 29484.570247: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48529              ps-13726 (13726) [005] dn.3 29484.570253: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48530              ps-13726 (13726) [005] d..2 29484.570257: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48531 shell svc 13722-13723 ( 1007) [005] d..2 29484.570272: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48532              ps-13726 (13726) [005] d..2 29484.570337: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48533          <idle>-0     (-----) [000] d.h3 29484.570338: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48534              ps-13726 (13726) [005] dn.3 29484.570341: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48535              ps-13726 (13726) [005] d..2 29484.570345: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48536          <idle>-0     (-----) [000] dnh4 29484.570345: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48537          <idle>-0     (-----) [000] .n.1 29484.570350: cpu_idle: state=4294967295 cpu_id=0
48538          <idle>-0     (-----) [000] d..2 29484.570354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48539 shell svc 13722-13723 ( 1007) [005] d..2 29484.570359: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48540   kworker/u17:2-23076 (23076) [000] d..2 29484.570360: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48541   kworker/u17:2-23076 (23076) [000] d..3 29484.570365: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48542   kworker/u17:2-23076 (23076) [000] d..2 29484.570380: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48543     kworker/0:0-13450 (13450) [000] d..2 29484.570386: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48544     kworker/0:0-13450 (13450) [000] d..3 29484.570395: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48545              ps-13726 (13726) [005] d.s2 29484.570400: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
48546          <idle>-0     (-----) [001] .n.1 29484.570400: cpu_idle: state=4294967295 cpu_id=1
48547          <idle>-0     (-----) [001] d..2 29484.570409: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48548     kworker/0:0-13450 (13450) [000] d.s2 29484.570412: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
48549            adbd-23484 ( 1007) [001] d..2 29484.570420: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48550            adbd-23484 ( 1007) [001] d..3 29484.570427: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48551            adbd-23484 ( 1007) [001] d.h2 29484.570432: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
48552     kworker/0:0-13450 (13450) [000] d.s3 29484.570441: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
48553     kworker/0:0-13450 (13450) [000] d..2 29484.570455: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48554              ps-13726 (13726) [005] d..2 29484.570463: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48555          <idle>-0     (-----) [000] d..1 29484.570463: cpu_idle: state=0 cpu_id=0
48556              ps-13726 (13726) [005] dn.3 29484.570468: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48557              ps-13726 (13726) [005] d..2 29484.570471: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48558            adbd-23484 ( 1007) [001] d..2 29484.570482: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
48559 shell svc 13722-13723 ( 1007) [005] d..2 29484.570486: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48560  kworker/u16:10-23868 (23868) [001] .... 29484.570537: clk_set_rate: l3_cluster0_vote_clk 940800000
48561  kworker/u16:10-23868 (23868) [001] .... 29484.570541: clk_set_rate: l3_clk 940800000
48562              ps-13726 (13726) [005] d..2 29484.570565: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48563              ps-13726 (13726) [005] dn.3 29484.570570: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48564              ps-13726 (13726) [005] d..2 29484.570577: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48565 shell svc 13722-13723 ( 1007) [005] d..2 29484.570597: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48566  kworker/u16:10-23868 (23868) [001] d..2 29484.570599: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48567     rcu_preempt-7     (    7) [001] d..2 29484.570610: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48568              ps-13726 (13726) [005] d..2 29484.570663: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48569              ps-13726 (13726) [005] dn.3 29484.570668: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48570              ps-13726 (13726) [005] d..2 29484.570671: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48571            adbd-1007  ( 1007) [001] d..1 29484.570674: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48572 shell svc 13722-13723 ( 1007) [005] d..2 29484.570685: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48573            adbd-1007  ( 1007) [001] d..2 29484.570686: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48574          <idle>-0     (-----) [000] .n.1 29484.570691: cpu_idle: state=4294967295 cpu_id=0
48575          <idle>-0     (-----) [000] d..2 29484.570698: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48576            adbd-1007  ( 1007) [001] d..2 29484.570722: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48577          <idle>-0     (-----) [001] d..1 29484.570733: cpu_idle: state=0 cpu_id=1
48578            adbd-23485 ( 1007) [000] d..2 29484.570748: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48579              ps-13726 (13726) [005] d..2 29484.570749: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48580              ps-13726 (13726) [005] dn.3 29484.570753: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48581              ps-13726 (13726) [005] d..2 29484.570757: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48582          <idle>-0     (-----) [000] d.h4 29484.570765: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48583 shell svc 13722-13723 ( 1007) [005] d..2 29484.570770: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48584          <idle>-0     (-----) [000] dnh5 29484.570771: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48585          <idle>-0     (-----) [000] d..2 29484.570779: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48586   kworker/u17:2-23076 (23076) [000] d..2 29484.570786: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48587   kworker/u17:2-23076 (23076) [000] d..3 29484.570790: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48588   kworker/u17:2-23076 (23076) [000] d..2 29484.570806: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48589     kworker/0:0-13450 (13450) [000] d..2 29484.570812: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48590     kworker/0:0-13450 (13450) [000] d..3 29484.570820: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48591     kworker/0:0-13450 (13450) [000] d..2 29484.570828: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48592              ps-13726 (13726) [005] d..2 29484.570837: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48593              ps-13726 (13726) [005] dn.3 29484.570842: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48594              ps-13726 (13726) [005] d..2 29484.570845: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48595 shell svc 13722-13723 ( 1007) [005] d..2 29484.570859: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48596            adbd-23485 ( 1007) [000] d..2 29484.570873: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48597          <idle>-0     (-----) [000] d..1 29484.570882: cpu_idle: state=0 cpu_id=0
48598          <idle>-0     (-----) [000] d.h3 29484.570900: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48599          <idle>-0     (-----) [000] dnh4 29484.570906: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48600          <idle>-0     (-----) [000] .n.1 29484.570912: cpu_idle: state=4294967295 cpu_id=0
48601          <idle>-0     (-----) [000] d..2 29484.570918: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48602              ps-13726 (13726) [005] d..2 29484.570923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48603   kworker/u17:2-23076 (23076) [000] d..2 29484.570924: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48604              ps-13726 (13726) [005] dn.3 29484.570927: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48605   kworker/u17:2-23076 (23076) [000] d..3 29484.570929: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48606              ps-13726 (13726) [005] d..2 29484.570930: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48607 shell svc 13722-13723 ( 1007) [005] d..2 29484.570943: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48608   kworker/u17:2-23076 (23076) [000] d..2 29484.570945: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48609     kworker/0:0-13450 (13450) [000] d..2 29484.570950: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48610     kworker/0:0-13450 (13450) [000] d..3 29484.570958: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48611     kworker/0:0-13450 (13450) [000] d..2 29484.570966: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48612            adbd-23485 ( 1007) [000] d..2 29484.570981: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48613          <idle>-0     (-----) [000] d..1 29484.570989: cpu_idle: state=0 cpu_id=0
48614              ps-13726 (13726) [005] d..2 29484.571010: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48615              ps-13726 (13726) [005] dn.3 29484.571015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48616              ps-13726 (13726) [005] d..2 29484.571018: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48617 shell svc 13722-13723 ( 1007) [005] d..2 29484.571031: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48618          <idle>-0     (-----) [000] d.h3 29484.571115: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48619          <idle>-0     (-----) [000] dnh4 29484.571121: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48620          <idle>-0     (-----) [000] .n.1 29484.571126: cpu_idle: state=4294967295 cpu_id=0
48621          <idle>-0     (-----) [000] d..2 29484.571132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48622   kworker/u17:2-23076 (23076) [000] d..2 29484.571139: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48623   kworker/u17:2-23076 (23076) [000] d..3 29484.571144: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48624   kworker/u17:2-23076 (23076) [000] d..2 29484.571160: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48625     kworker/0:0-13450 (13450) [000] d..2 29484.571166: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48626     kworker/0:0-13450 (13450) [000] d..3 29484.571184: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48627          <idle>-0     (-----) [001] .n.1 29484.571190: cpu_idle: state=4294967295 cpu_id=1
48628          <idle>-0     (-----) [001] d..2 29484.571198: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48629     kworker/0:0-13450 (13450) [000] d..2 29484.571199: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48630          <idle>-0     (-----) [000] d..1 29484.571206: cpu_idle: state=0 cpu_id=0
48631            adbd-23484 ( 1007) [001] d..2 29484.571211: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48632            adbd-23484 ( 1007) [001] d..3 29484.571218: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48633            adbd-23484 ( 1007) [001] d..2 29484.571263: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48634              ps-13726 (13726) [005] d..2 29484.571301: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48635              ps-13726 (13726) [005] dn.3 29484.571306: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48636              ps-13726 (13726) [005] d..2 29484.571310: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48637 shell svc 13722-13723 ( 1007) [005] d..2 29484.571325: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48638            adbd-1007  ( 1007) [001] d..1 29484.571326: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48639              ps-13726 (13726) [005] d..2 29484.571333: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48640              ps-13726 (13726) [005] dn.3 29484.571337: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48641            adbd-1007  ( 1007) [001] d..2 29484.571337: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48642              ps-13726 (13726) [005] d..2 29484.571339: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48643          <idle>-0     (-----) [000] .n.1 29484.571343: cpu_idle: state=4294967295 cpu_id=0
48644          <idle>-0     (-----) [000] d..2 29484.571349: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48645 shell svc 13722-13723 ( 1007) [005] d..2 29484.571351: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48646              ps-13726 (13726) [005] d..2 29484.571358: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48647              ps-13726 (13726) [005] dn.3 29484.571361: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48648              ps-13726 (13726) [005] d..2 29484.571364: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48649            adbd-1007  ( 1007) [001] d..2 29484.571370: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48650 shell svc 13722-13723 ( 1007) [005] d..2 29484.571375: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48651          <idle>-0     (-----) [001] d..1 29484.571379: cpu_idle: state=0 cpu_id=1
48652              ps-13726 (13726) [005] d..2 29484.571381: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48653              ps-13726 (13726) [005] dn.3 29484.571385: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48654              ps-13726 (13726) [005] d..2 29484.571387: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48655            adbd-23485 ( 1007) [000] d..2 29484.571396: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48656 shell svc 13722-13723 ( 1007) [005] d..2 29484.571397: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48657              ps-13726 (13726) [005] d..2 29484.571405: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48658              ps-13726 (13726) [005] dn.3 29484.571408: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48659              ps-13726 (13726) [005] d..2 29484.571410: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48660          <idle>-0     (-----) [000] d.h3 29484.571417: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48661 shell svc 13722-13723 ( 1007) [005] d..2 29484.571421: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48662          <idle>-0     (-----) [000] dnh4 29484.571423: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48663              ps-13726 (13726) [005] d..2 29484.571428: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48664              ps-13726 (13726) [005] dn.3 29484.571431: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48665          <idle>-0     (-----) [000] d..2 29484.571431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48666              ps-13726 (13726) [005] d..2 29484.571433: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48667   kworker/u17:2-23076 (23076) [000] d..2 29484.571438: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48668   kworker/u17:2-23076 (23076) [000] d..3 29484.571443: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48669 shell svc 13722-13723 ( 1007) [005] d..2 29484.571444: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48670   kworker/u17:2-23076 (23076) [000] d..2 29484.571459: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48671     kworker/0:0-13450 (13450) [000] d..2 29484.571464: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48672     kworker/0:0-13450 (13450) [000] d..3 29484.571472: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48673     kworker/0:0-13450 (13450) [000] d..2 29484.571480: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48674              ps-13726 (13726) [005] d..2 29484.571510: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48675              ps-13726 (13726) [005] dn.3 29484.571515: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48676              ps-13726 (13726) [005] d..2 29484.571518: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48677            adbd-23485 ( 1007) [000] d..2 29484.571526: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48678 shell svc 13722-13723 ( 1007) [005] d..2 29484.571531: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48679          <idle>-0     (-----) [000] d.h4 29484.571543: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48680          <idle>-0     (-----) [000] dnh5 29484.571548: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48681          <idle>-0     (-----) [000] d..2 29484.571556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48682   kworker/u17:2-23076 (23076) [000] d..2 29484.571562: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48683   kworker/u17:2-23076 (23076) [000] d..3 29484.571567: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48684   kworker/u17:2-23076 (23076) [000] d..2 29484.571583: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48685     kworker/0:0-13450 (13450) [000] d..2 29484.571588: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48686     kworker/0:0-13450 (13450) [000] d..3 29484.571596: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48687              ps-13726 (13726) [005] d..2 29484.571597: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48688              ps-13726 (13726) [005] dn.3 29484.571601: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48689     kworker/0:0-13450 (13450) [000] d..2 29484.571604: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48690              ps-13726 (13726) [005] d..2 29484.571604: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48691            adbd-23485 ( 1007) [000] d..2 29484.571616: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48692 shell svc 13722-13723 ( 1007) [005] d..2 29484.571617: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48693          <idle>-0     (-----) [000] d..1 29484.571625: cpu_idle: state=0 cpu_id=0
48694              ps-13726 (13726) [005] d..2 29484.571684: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48695              ps-13726 (13726) [005] dn.3 29484.571689: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48696              ps-13726 (13726) [005] d..2 29484.571693: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48697 shell svc 13722-13723 ( 1007) [005] d..2 29484.571706: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48698          <idle>-0     (-----) [000] d.h3 29484.571727: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48699          <idle>-0     (-----) [000] dnh4 29484.571733: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48700          <idle>-0     (-----) [000] .n.1 29484.571738: cpu_idle: state=4294967295 cpu_id=0
48701          <idle>-0     (-----) [000] d..2 29484.571744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48702   kworker/u17:2-23076 (23076) [000] d..2 29484.571750: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48703   kworker/u17:2-23076 (23076) [000] d..3 29484.571755: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48704   kworker/u17:2-23076 (23076) [000] d..2 29484.571771: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48705              ps-13726 (13726) [005] d..2 29484.571772: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48706              ps-13726 (13726) [005] dn.3 29484.571777: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48707     kworker/0:0-13450 (13450) [000] d..2 29484.571777: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48708              ps-13726 (13726) [005] d..2 29484.571780: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48709     kworker/0:0-13450 (13450) [000] d..3 29484.571786: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48710          <idle>-0     (-----) [001] .n.1 29484.571791: cpu_idle: state=4294967295 cpu_id=1
48711 shell svc 13722-13723 ( 1007) [005] d..2 29484.571793: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48712     kworker/0:0-13450 (13450) [000] d..2 29484.571795: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48713          <idle>-0     (-----) [001] d..2 29484.571799: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48714          <idle>-0     (-----) [000] d..1 29484.571801: cpu_idle: state=0 cpu_id=0
48715            adbd-23484 ( 1007) [001] d..2 29484.571811: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48716            adbd-23484 ( 1007) [001] d..3 29484.571817: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48717              ps-13726 (13726) [005] d..2 29484.571856: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48718              ps-13726 (13726) [005] dn.3 29484.571861: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48719            adbd-23484 ( 1007) [001] d..2 29484.571862: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48720              ps-13726 (13726) [005] d..2 29484.571864: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48721 shell svc 13722-13723 ( 1007) [005] d..2 29484.571879: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48722            adbd-1007  ( 1007) [001] d..1 29484.571927: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48723              ps-13726 (13726) [005] d..2 29484.571941: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48724              ps-13726 (13726) [005] dn.3 29484.571945: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48725              ps-13726 (13726) [005] d..2 29484.571949: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48726            adbd-1007  ( 1007) [001] d..2 29484.571950: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48727          <idle>-0     (-----) [000] .n.1 29484.571954: cpu_idle: state=4294967295 cpu_id=0
48728          <idle>-0     (-----) [000] d..2 29484.571961: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48729 shell svc 13722-13723 ( 1007) [005] d..2 29484.571962: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48730            adbd-1007  ( 1007) [001] d..2 29484.571984: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48731          <idle>-0     (-----) [001] d..1 29484.571992: cpu_idle: state=0 cpu_id=1
48732            adbd-23485 ( 1007) [000] d..2 29484.572011: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48733              ps-13726 (13726) [005] d..2 29484.572024: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48734          <idle>-0     (-----) [000] d.h4 29484.572028: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48735              ps-13726 (13726) [005] dn.3 29484.572029: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48736              ps-13726 (13726) [005] d..2 29484.572032: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48737          <idle>-0     (-----) [000] dnh5 29484.572034: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48738          <idle>-0     (-----) [000] d..2 29484.572042: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48739 shell svc 13722-13723 ( 1007) [005] d..2 29484.572046: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48740   kworker/u17:2-23076 (23076) [000] d..2 29484.572049: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48741   kworker/u17:2-23076 (23076) [000] d..3 29484.572053: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48742   kworker/u17:2-23076 (23076) [000] d..2 29484.572068: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48743     kworker/0:0-13450 (13450) [000] d..2 29484.572073: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48744     kworker/0:0-13450 (13450) [000] d..3 29484.572081: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48745     kworker/0:0-13450 (13450) [000] d..2 29484.572089: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48746              ps-13726 (13726) [005] d..2 29484.572111: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48747              ps-13726 (13726) [005] dn.3 29484.572116: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48748              ps-13726 (13726) [005] d..2 29484.572119: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48749            adbd-23485 ( 1007) [000] d..2 29484.572129: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48750 shell svc 13722-13723 ( 1007) [005] d..2 29484.572133: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48751          <idle>-0     (-----) [000] d.h3 29484.572149: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48752          <idle>-0     (-----) [000] dnh4 29484.572155: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48753          <idle>-0     (-----) [000] d..2 29484.572164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48754   kworker/u17:2-23076 (23076) [000] d..2 29484.572172: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48755   kworker/u17:2-23076 (23076) [000] d..3 29484.572176: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48756   kworker/u17:2-23076 (23076) [000] d..2 29484.572192: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48757     kworker/0:0-13450 (13450) [000] d..2 29484.572196: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48758              ps-13726 (13726) [005] d..2 29484.572198: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48759              ps-13726 (13726) [005] dn.3 29484.572202: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48760     kworker/0:0-13450 (13450) [000] d..3 29484.572204: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48761              ps-13726 (13726) [005] d..2 29484.572206: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48762     kworker/0:0-13450 (13450) [000] d..2 29484.572212: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48763 shell svc 13722-13723 ( 1007) [005] d..2 29484.572219: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48764            adbd-23485 ( 1007) [000] d..2 29484.572224: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48765          <idle>-0     (-----) [000] d..1 29484.572232: cpu_idle: state=0 cpu_id=0
48766              ps-13726 (13726) [005] d..2 29484.572286: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48767              ps-13726 (13726) [005] dn.3 29484.572291: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48768              ps-13726 (13726) [005] d..2 29484.572295: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48769 shell svc 13722-13723 ( 1007) [005] d..2 29484.572308: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48770          <idle>-0     (-----) [000] d.h3 29484.572350: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48771          <idle>-0     (-----) [000] dnh4 29484.572358: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48772          <idle>-0     (-----) [000] .n.1 29484.572363: cpu_idle: state=4294967295 cpu_id=0
48773          <idle>-0     (-----) [000] d..2 29484.572369: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48774              ps-13726 (13726) [005] d..2 29484.572375: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48775   kworker/u17:2-23076 (23076) [000] d..2 29484.572376: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48776              ps-13726 (13726) [005] dn.3 29484.572379: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48777   kworker/u17:2-23076 (23076) [000] d..3 29484.572381: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48778              ps-13726 (13726) [005] d..2 29484.572382: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48779 shell svc 13722-13723 ( 1007) [005] d..2 29484.572395: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48780   kworker/u17:2-23076 (23076) [000] d..2 29484.572397: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48781     kworker/0:0-13450 (13450) [000] d..2 29484.572404: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48782     kworker/0:0-13450 (13450) [000] d..3 29484.572412: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48783          <idle>-0     (-----) [001] .n.1 29484.572418: cpu_idle: state=4294967295 cpu_id=1
48784     kworker/0:0-13450 (13450) [000] d..2 29484.572420: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48785          <idle>-0     (-----) [001] d..2 29484.572425: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48786          <idle>-0     (-----) [000] d..1 29484.572427: cpu_idle: state=0 cpu_id=0
48787            adbd-23484 ( 1007) [001] d..2 29484.572438: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48788            adbd-23484 ( 1007) [001] d..3 29484.572445: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48789              ps-13726 (13726) [005] d..2 29484.572458: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48790              ps-13726 (13726) [005] dn.3 29484.572462: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48791              ps-13726 (13726) [005] d..2 29484.572466: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48792 shell svc 13722-13723 ( 1007) [005] d..2 29484.572478: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48793            adbd-23484 ( 1007) [001] d..2 29484.572490: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48794              ps-13726 (13726) [005] d..2 29484.572543: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48795              ps-13726 (13726) [005] dn.3 29484.572549: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48796              ps-13726 (13726) [005] d..2 29484.572552: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48797            adbd-1007  ( 1007) [001] d..1 29484.572555: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48798 shell svc 13722-13723 ( 1007) [005] d..2 29484.572566: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48799            adbd-1007  ( 1007) [001] d..2 29484.572566: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48800          <idle>-0     (-----) [000] .n.1 29484.572571: cpu_idle: state=4294967295 cpu_id=0
48801          <idle>-0     (-----) [000] d..2 29484.572577: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48802            adbd-1007  ( 1007) [001] d..2 29484.572599: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48803          <idle>-0     (-----) [001] d..1 29484.572607: cpu_idle: state=0 cpu_id=1
48804            adbd-23485 ( 1007) [000] d..2 29484.572626: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48805              ps-13726 (13726) [005] d..2 29484.572630: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48806              ps-13726 (13726) [005] dn.3 29484.572634: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48807              ps-13726 (13726) [005] d..2 29484.572638: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48808          <idle>-0     (-----) [000] d.h3 29484.572647: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48809 shell svc 13722-13723 ( 1007) [005] d..2 29484.572651: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48810          <idle>-0     (-----) [000] dnh4 29484.572653: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48811          <idle>-0     (-----) [000] d..2 29484.572662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48812   kworker/u17:2-23076 (23076) [000] d..2 29484.572668: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48813   kworker/u17:2-23076 (23076) [000] d..3 29484.572673: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48814   kworker/u17:2-23076 (23076) [000] d..2 29484.572689: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48815     kworker/0:0-13450 (13450) [000] d..2 29484.572694: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48816     kworker/0:0-13450 (13450) [000] d..3 29484.572702: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48817     kworker/0:0-13450 (13450) [000] d..2 29484.572710: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48818              ps-13726 (13726) [005] d..2 29484.572717: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48819              ps-13726 (13726) [005] dn.3 29484.572721: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48820              ps-13726 (13726) [005] d..2 29484.572724: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48821 shell svc 13722-13723 ( 1007) [005] d..2 29484.572738: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48822            adbd-23485 ( 1007) [000] d..2 29484.572749: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48823          <idle>-0     (-----) [000] d..1 29484.572758: cpu_idle: state=0 cpu_id=0
48824          <idle>-0     (-----) [000] d.h3 29484.572775: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48825          <idle>-0     (-----) [000] dnh4 29484.572782: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48826          <idle>-0     (-----) [000] .n.1 29484.572787: cpu_idle: state=4294967295 cpu_id=0
48827          <idle>-0     (-----) [000] d..2 29484.572792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48828   kworker/u17:2-23076 (23076) [000] d..2 29484.572799: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48829   kworker/u17:2-23076 (23076) [000] d..3 29484.572804: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48830              ps-13726 (13726) [005] d..2 29484.572806: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48831              ps-13726 (13726) [005] dn.3 29484.572810: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48832              ps-13726 (13726) [005] d..2 29484.572814: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48833   kworker/u17:2-23076 (23076) [000] d..2 29484.572820: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48834     kworker/0:0-13450 (13450) [000] d..2 29484.572824: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48835 shell svc 13722-13723 ( 1007) [005] d..2 29484.572828: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48836     kworker/0:0-13450 (13450) [000] d..3 29484.572833: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48837     kworker/0:0-13450 (13450) [000] d..2 29484.572841: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48838            adbd-23485 ( 1007) [000] d..2 29484.572854: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48839          <idle>-0     (-----) [000] d..1 29484.572862: cpu_idle: state=0 cpu_id=0
48840              ps-13726 (13726) [005] d..2 29484.572895: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48841              ps-13726 (13726) [005] dn.3 29484.572900: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48842              ps-13726 (13726) [005] d..2 29484.572903: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48843 shell svc 13722-13723 ( 1007) [005] d..2 29484.572916: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48844          <idle>-0     (-----) [000] d.h3 29484.572977: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48845              ps-13726 (13726) [005] d..2 29484.572980: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48846          <idle>-0     (-----) [000] dnh4 29484.572983: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48847              ps-13726 (13726) [005] dn.3 29484.572984: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48848          <idle>-0     (-----) [000] .n.1 29484.572988: cpu_idle: state=4294967295 cpu_id=0
48849              ps-13726 (13726) [005] d..2 29484.572988: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48850          <idle>-0     (-----) [000] d..2 29484.572993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48851   kworker/u17:2-23076 (23076) [000] d..2 29484.573000: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48852 shell svc 13722-13723 ( 1007) [005] d..2 29484.573001: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48853   kworker/u17:2-23076 (23076) [000] d..3 29484.573005: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48854   kworker/u17:2-23076 (23076) [000] d..2 29484.573021: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48855     kworker/0:0-13450 (13450) [000] d..2 29484.573027: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48856     kworker/0:0-13450 (13450) [000] d..3 29484.573035: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48857          <idle>-0     (-----) [001] .n.1 29484.573040: cpu_idle: state=4294967295 cpu_id=1
48858     kworker/0:0-13450 (13450) [000] d..2 29484.573043: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48859          <idle>-0     (-----) [001] d..2 29484.573048: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48860          <idle>-0     (-----) [000] d..1 29484.573050: cpu_idle: state=0 cpu_id=0
48861            adbd-23484 ( 1007) [001] d..2 29484.573059: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48862              ps-13726 (13726) [005] d..2 29484.573064: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48863            adbd-23484 ( 1007) [001] d..3 29484.573066: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48864              ps-13726 (13726) [005] dn.3 29484.573069: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48865              ps-13726 (13726) [005] d..2 29484.573072: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48866 shell svc 13722-13723 ( 1007) [005] d..2 29484.573085: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48867            adbd-23484 ( 1007) [001] d..2 29484.573111: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48868              ps-13726 (13726) [005] d..2 29484.573147: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48869              ps-13726 (13726) [005] dn.3 29484.573152: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48870              ps-13726 (13726) [005] d..2 29484.573155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48871 shell svc 13722-13723 ( 1007) [005] d..2 29484.573169: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48872            adbd-1007  ( 1007) [001] d..1 29484.573174: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48873            adbd-1007  ( 1007) [001] d..2 29484.573186: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48874          <idle>-0     (-----) [000] .n.1 29484.573190: cpu_idle: state=4294967295 cpu_id=0
48875          <idle>-0     (-----) [000] d..2 29484.573196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48876            adbd-1007  ( 1007) [001] d..2 29484.573218: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48877          <idle>-0     (-----) [001] d..1 29484.573226: cpu_idle: state=0 cpu_id=1
48878              ps-13726 (13726) [005] d..2 29484.573243: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48879            adbd-23485 ( 1007) [000] d..2 29484.573246: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48880              ps-13726 (13726) [005] dn.3 29484.573248: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48881              ps-13726 (13726) [005] d..2 29484.573251: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48882          <idle>-0     (-----) [000] d..1 29484.573254: cpu_idle: state=0 cpu_id=0
48883 shell svc 13722-13723 ( 1007) [005] d..2 29484.573264: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48884          <idle>-0     (-----) [000] d.h3 29484.573271: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48885          <idle>-0     (-----) [000] dnh4 29484.573278: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48886          <idle>-0     (-----) [000] .n.1 29484.573283: cpu_idle: state=4294967295 cpu_id=0
48887          <idle>-0     (-----) [000] d..2 29484.573289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48888   kworker/u17:2-23076 (23076) [000] d..2 29484.573295: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48889   kworker/u17:2-23076 (23076) [000] d..3 29484.573300: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48890   kworker/u17:2-23076 (23076) [000] d..2 29484.573316: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48891     kworker/0:0-13450 (13450) [000] d..2 29484.573321: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48892     kworker/0:0-13450 (13450) [000] d..3 29484.573329: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48893     kworker/0:0-13450 (13450) [000] d..2 29484.573337: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48894            adbd-23485 ( 1007) [000] d..2 29484.573376: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48895              ps-13726 (13726) [005] d..2 29484.573382: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48896          <idle>-0     (-----) [000] d..1 29484.573384: cpu_idle: state=0 cpu_id=0
48897              ps-13726 (13726) [005] dn.3 29484.573387: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48898              ps-13726 (13726) [005] d..2 29484.573391: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48899          <idle>-0     (-----) [000] d.h3 29484.573401: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48900 shell svc 13722-13723 ( 1007) [005] d..2 29484.573405: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48901          <idle>-0     (-----) [000] dnh4 29484.573407: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48902          <idle>-0     (-----) [000] .n.1 29484.573412: cpu_idle: state=4294967295 cpu_id=0
48903          <idle>-0     (-----) [000] d..2 29484.573418: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48904   kworker/u17:2-23076 (23076) [000] d..2 29484.573425: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48905   kworker/u17:2-23076 (23076) [000] d..3 29484.573429: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48906   kworker/u17:2-23076 (23076) [000] d..2 29484.573445: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48907     kworker/0:0-13450 (13450) [000] d..2 29484.573450: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48908     kworker/0:0-13450 (13450) [000] d..3 29484.573458: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48909     kworker/0:0-13450 (13450) [000] d..2 29484.573466: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48910            adbd-23485 ( 1007) [000] d..2 29484.573478: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48911          <idle>-0     (-----) [000] d..1 29484.573485: cpu_idle: state=0 cpu_id=0
48912          <idle>-0     (-----) [000] d.h3 29484.573588: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48913          <idle>-0     (-----) [000] dnh4 29484.573594: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48914          <idle>-0     (-----) [000] .n.1 29484.573599: cpu_idle: state=4294967295 cpu_id=0
48915          <idle>-0     (-----) [000] d..2 29484.573604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48916              ps-13726 (13726) [005] d..2 29484.573608: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48917   kworker/u17:2-23076 (23076) [000] d..2 29484.573611: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48918              ps-13726 (13726) [005] dn.3 29484.573613: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48919   kworker/u17:2-23076 (23076) [000] d..3 29484.573616: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48920              ps-13726 (13726) [005] d..2 29484.573617: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48921   kworker/u17:2-23076 (23076) [000] d..2 29484.573631: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48922 shell svc 13722-13723 ( 1007) [005] d..2 29484.573633: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48923     kworker/0:0-13450 (13450) [000] d..2 29484.573637: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
48924              ps-13726 (13726) [005] d..2 29484.573641: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48925              ps-13726 (13726) [005] dn.3 29484.573644: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48926              ps-13726 (13726) [005] d..2 29484.573648: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48927     kworker/0:0-13450 (13450) [000] d..3 29484.573656: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
48928 shell svc 13722-13723 ( 1007) [005] d..2 29484.573659: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48929          <idle>-0     (-----) [001] .n.1 29484.573661: cpu_idle: state=4294967295 cpu_id=1
48930     kworker/0:0-13450 (13450) [000] d..2 29484.573664: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48931              ps-13726 (13726) [005] d..2 29484.573665: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48932              ps-13726 (13726) [005] dn.3 29484.573669: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48933          <idle>-0     (-----) [001] d..2 29484.573669: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
48934          <idle>-0     (-----) [000] d..1 29484.573671: cpu_idle: state=0 cpu_id=0
48935              ps-13726 (13726) [005] d..2 29484.573672: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48936            adbd-23484 ( 1007) [001] d..2 29484.573682: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
48937 shell svc 13722-13723 ( 1007) [005] d..2 29484.573682: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48938            adbd-23484 ( 1007) [001] d..3 29484.573688: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
48939              ps-13726 (13726) [005] d..2 29484.573688: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48940              ps-13726 (13726) [005] dn.3 29484.573692: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48941              ps-13726 (13726) [005] d..2 29484.573694: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48942 shell svc 13722-13723 ( 1007) [005] d..2 29484.573705: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48943            adbd-23484 ( 1007) [001] d.s3 29484.573745: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
48944            adbd-23484 ( 1007) [001] d.s4 29484.573756: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
48945            adbd-23484 ( 1007) [001] d..2 29484.573768: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48946     rcu_preempt-7     (    7) [001] d..2 29484.573772: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
48947     rcu_preempt-7     (    7) [001] d..3 29484.573795: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
48948     rcu_preempt-7     (    7) [001] d..2 29484.573803: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
48949         rcuop/2-29    (   29) [001] d..2 29484.573807: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
48950         rcuop/2-29    (   29) [001] d..3 29484.573827: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
48951         rcuop/2-29    (   29) [001] d..2 29484.573833: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
48952         rcuop/3-37    (   37) [001] d..2 29484.573868: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
48953              ps-13726 (13726) [005] d..2 29484.573908: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48954              ps-13726 (13726) [005] dn.3 29484.573913: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48955              ps-13726 (13726) [005] d..2 29484.573917: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48956 shell svc 13722-13723 ( 1007) [005] d..2 29484.573932: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48957            adbd-1007  ( 1007) [001] d..1 29484.573934: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48958              ps-13726 (13726) [005] d..2 29484.573940: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48959              ps-13726 (13726) [005] dn.3 29484.573943: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48960              ps-13726 (13726) [005] d..2 29484.573946: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48961            adbd-1007  ( 1007) [001] d..2 29484.573955: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48962 shell svc 13722-13723 ( 1007) [005] d..2 29484.573957: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48963          <idle>-0     (-----) [000] .n.1 29484.573960: cpu_idle: state=4294967295 cpu_id=0
48964              ps-13726 (13726) [005] d..2 29484.573965: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48965          <idle>-0     (-----) [000] d..2 29484.573967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
48966              ps-13726 (13726) [005] dn.3 29484.573969: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48967              ps-13726 (13726) [005] d..2 29484.573971: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48968 shell svc 13722-13723 ( 1007) [005] d..2 29484.573982: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48969              ps-13726 (13726) [005] d..2 29484.573989: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48970            adbd-1007  ( 1007) [001] d..2 29484.573992: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48971              ps-13726 (13726) [005] dn.3 29484.573992: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
48972              ps-13726 (13726) [005] d..2 29484.573995: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
48973          <idle>-0     (-----) [001] d..1 29484.574001: cpu_idle: state=0 cpu_id=1
48974 shell svc 13722-13723 ( 1007) [005] d..2 29484.574005: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
48975            adbd-23485 ( 1007) [000] d..2 29484.574017: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48976          <idle>-0     (-----) [000] d.h4 29484.574033: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48977          <idle>-0     (-----) [000] dnh5 29484.574039: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48978          <idle>-0     (-----) [000] d..2 29484.574047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48979   kworker/u17:2-23076 (23076) [000] d..2 29484.574054: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48980   kworker/u17:2-23076 (23076) [000] d..3 29484.574059: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48981   kworker/u17:2-23076 (23076) [000] d..2 29484.574074: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48982     kworker/0:0-13450 (13450) [000] d..2 29484.574079: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48983     kworker/0:0-13450 (13450) [000] d..3 29484.574087: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48984     kworker/0:0-13450 (13450) [000] d..2 29484.574095: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48985            adbd-23485 ( 1007) [000] d..2 29484.574139: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48986          <idle>-0     (-----) [000] d..1 29484.574148: cpu_idle: state=0 cpu_id=0
48987          <idle>-0     (-----) [000] d.h3 29484.574170: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48988          <idle>-0     (-----) [000] dnh4 29484.574177: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
48989          <idle>-0     (-----) [000] .n.1 29484.574182: cpu_idle: state=4294967295 cpu_id=0
48990          <idle>-0     (-----) [000] d..2 29484.574188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
48991   kworker/u17:2-23076 (23076) [000] d..2 29484.574194: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48992   kworker/u17:2-23076 (23076) [000] d..3 29484.574199: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
48993   kworker/u17:2-23076 (23076) [000] d..2 29484.574216: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
48994     kworker/0:0-13450 (13450) [000] d..2 29484.574220: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
48995     kworker/0:0-13450 (13450) [000] d..3 29484.574228: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
48996     kworker/0:0-13450 (13450) [000] d..2 29484.574236: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
48997            adbd-23485 ( 1007) [000] d..2 29484.574253: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48998          <idle>-0     (-----) [000] d..1 29484.574261: cpu_idle: state=0 cpu_id=0
48999          <idle>-0     (-----) [000] d.h3 29484.574384: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49000          <idle>-0     (-----) [000] dnh4 29484.574393: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49001          <idle>-0     (-----) [000] .n.1 29484.574398: cpu_idle: state=4294967295 cpu_id=0
49002          <idle>-0     (-----) [000] d..2 29484.574404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49003   kworker/u17:2-23076 (23076) [000] d..2 29484.574410: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49004   kworker/u17:2-23076 (23076) [000] d..3 29484.574415: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49005   kworker/u17:2-23076 (23076) [000] d..2 29484.574432: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49006     kworker/0:0-13450 (13450) [000] d..2 29484.574439: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49007     kworker/0:0-13450 (13450) [000] d..3 29484.574447: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49008          <idle>-0     (-----) [001] .n.1 29484.574453: cpu_idle: state=4294967295 cpu_id=1
49009     kworker/0:0-13450 (13450) [000] d..2 29484.574460: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49010          <idle>-0     (-----) [001] d..2 29484.574461: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49011          <idle>-0     (-----) [000] d..1 29484.574467: cpu_idle: state=0 cpu_id=0
49012            adbd-23484 ( 1007) [001] d..2 29484.574473: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49013            adbd-23484 ( 1007) [001] d..3 29484.574480: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49014            adbd-23484 ( 1007) [001] d..2 29484.574525: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49015            adbd-1007  ( 1007) [001] d..1 29484.574581: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49016            adbd-1007  ( 1007) [001] d..2 29484.574593: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49017          <idle>-0     (-----) [000] .n.1 29484.574598: cpu_idle: state=4294967295 cpu_id=0
49018          <idle>-0     (-----) [000] d..2 29484.574604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49019            adbd-1007  ( 1007) [001] d..2 29484.574626: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49020          <idle>-0     (-----) [001] d..1 29484.574635: cpu_idle: state=0 cpu_id=1
49021            adbd-23485 ( 1007) [000] d..2 29484.574652: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49022              ps-13726 (13726) [005] d..2 29484.574662: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49023              ps-13726 (13726) [005] dn.3 29484.574668: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49024          <idle>-0     (-----) [000] d.h4 29484.574669: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49025              ps-13726 (13726) [005] d..2 29484.574672: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49026          <idle>-0     (-----) [000] dnh5 29484.574675: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49027          <idle>-0     (-----) [000] d..2 29484.574683: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49028 shell svc 13722-13723 ( 1007) [005] d..2 29484.574687: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49029   kworker/u17:2-23076 (23076) [000] d..2 29484.574689: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49030   kworker/u17:2-23076 (23076) [000] d..3 29484.574694: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49031              ps-13726 (13726) [005] d..2 29484.574696: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49032              ps-13726 (13726) [005] dn.3 29484.574699: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49033              ps-13726 (13726) [005] d..2 29484.574702: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49034   kworker/u17:2-23076 (23076) [000] d..2 29484.574709: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49035 shell svc 13722-13723 ( 1007) [005] d..2 29484.574713: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49036     kworker/0:0-13450 (13450) [000] d..2 29484.574713: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49037              ps-13726 (13726) [005] d..2 29484.574720: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49038     kworker/0:0-13450 (13450) [000] d..3 29484.574722: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49039              ps-13726 (13726) [005] dn.3 29484.574723: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49040              ps-13726 (13726) [005] d..2 29484.574726: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49041     kworker/0:0-13450 (13450) [000] d..2 29484.574729: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49042 shell svc 13722-13723 ( 1007) [005] d..2 29484.574736: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49043              ps-13726 (13726) [005] d..2 29484.574743: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49044              ps-13726 (13726) [005] dn.3 29484.574746: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49045              ps-13726 (13726) [005] d..2 29484.574749: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49046 shell svc 13722-13723 ( 1007) [005] d..2 29484.574759: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49047              ps-13726 (13726) [005] d..2 29484.574766: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49048              ps-13726 (13726) [005] dn.3 29484.574769: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49049              ps-13726 (13726) [005] d..2 29484.574772: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49050            adbd-23485 ( 1007) [000] d..2 29484.574774: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49051 shell svc 13722-13723 ( 1007) [005] d..2 29484.574782: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49052              ps-13726 (13726) [005] d..2 29484.574788: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49053          <idle>-0     (-----) [000] d.h4 29484.574791: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49054              ps-13726 (13726) [005] dn.3 29484.574791: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49055              ps-13726 (13726) [005] d..2 29484.574794: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49056          <idle>-0     (-----) [000] dnh5 29484.574796: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49057          <idle>-0     (-----) [000] d..2 29484.574804: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49058 shell svc 13722-13723 ( 1007) [005] d..2 29484.574805: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49059              ps-13726 (13726) [005] d..2 29484.574811: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49060   kworker/u17:2-23076 (23076) [000] d..2 29484.574811: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49061              ps-13726 (13726) [005] dn.3 29484.574814: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49062   kworker/u17:2-23076 (23076) [000] d..3 29484.574816: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49063              ps-13726 (13726) [005] d..2 29484.574817: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49064 shell svc 13722-13723 ( 1007) [005] d..2 29484.574827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49065   kworker/u17:2-23076 (23076) [000] d..2 29484.574832: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49066              ps-13726 (13726) [005] d..2 29484.574834: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49067              ps-13726 (13726) [005] dn.3 29484.574837: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49068     kworker/0:0-13450 (13450) [000] d..2 29484.574837: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49069              ps-13726 (13726) [005] d..2 29484.574840: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49070     kworker/0:0-13450 (13450) [000] d..3 29484.574845: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49071 shell svc 13722-13723 ( 1007) [005] d..2 29484.574850: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49072     kworker/0:0-13450 (13450) [000] d..2 29484.574853: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49073              ps-13726 (13726) [005] d..2 29484.574858: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49074              ps-13726 (13726) [005] dn.3 29484.574861: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49075              ps-13726 (13726) [005] d..2 29484.574864: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49076            adbd-23485 ( 1007) [000] d..2 29484.574865: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49077          <idle>-0     (-----) [000] d..1 29484.574874: cpu_idle: state=0 cpu_id=0
49078 shell svc 13722-13723 ( 1007) [005] d..2 29484.574874: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49079              ps-13726 (13726) [005] d..2 29484.574881: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49080              ps-13726 (13726) [005] dn.3 29484.574884: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49081              ps-13726 (13726) [005] d..2 29484.574887: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49082 shell svc 13722-13723 ( 1007) [005] d..2 29484.574897: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49083              ps-13726 (13726) [005] d..2 29484.574904: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49084              ps-13726 (13726) [005] dn.3 29484.574907: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49085              ps-13726 (13726) [005] d..2 29484.574910: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49086 shell svc 13722-13723 ( 1007) [005] d..2 29484.574921: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49087              ps-13726 (13726) [005] d..2 29484.574928: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49088              ps-13726 (13726) [005] dn.3 29484.574931: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49089              ps-13726 (13726) [005] d..2 29484.574935: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49090 shell svc 13722-13723 ( 1007) [005] d..2 29484.574945: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49091              ps-13726 (13726) [005] d..2 29484.574952: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49092              ps-13726 (13726) [005] dn.3 29484.574955: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49093          <idle>-0     (-----) [000] d.h3 29484.574957: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49094              ps-13726 (13726) [005] d..2 29484.574958: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49095          <idle>-0     (-----) [000] dnh4 29484.574962: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49096          <idle>-0     (-----) [000] .n.1 29484.574967: cpu_idle: state=4294967295 cpu_id=0
49097 shell svc 13722-13723 ( 1007) [005] d..2 29484.574968: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49098          <idle>-0     (-----) [000] d..2 29484.574974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49099              ps-13726 (13726) [005] d..2 29484.574975: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49100              ps-13726 (13726) [005] dn.3 29484.574978: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49101   kworker/u17:2-23076 (23076) [000] d..2 29484.574980: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49102              ps-13726 (13726) [005] d..2 29484.574981: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49103   kworker/u17:2-23076 (23076) [000] d..3 29484.574985: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49104 shell svc 13722-13723 ( 1007) [005] d..2 29484.574991: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49105              ps-13726 (13726) [005] d..2 29484.574998: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49106              ps-13726 (13726) [005] dn.3 29484.575001: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49107   kworker/u17:2-23076 (23076) [000] d..2 29484.575002: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49108              ps-13726 (13726) [005] d..2 29484.575004: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49109     kworker/0:0-13450 (13450) [000] d..2 29484.575008: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49110 shell svc 13722-13723 ( 1007) [005] d..2 29484.575014: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49111     kworker/0:0-13450 (13450) [000] d..3 29484.575016: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49112              ps-13726 (13726) [005] d..2 29484.575021: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49113          <idle>-0     (-----) [001] .n.1 29484.575022: cpu_idle: state=4294967295 cpu_id=1
49114              ps-13726 (13726) [005] dn.3 29484.575024: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49115     kworker/0:0-13450 (13450) [000] d..2 29484.575025: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49116              ps-13726 (13726) [005] d..2 29484.575027: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49117          <idle>-0     (-----) [001] d..2 29484.575029: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49118          <idle>-0     (-----) [000] d..1 29484.575032: cpu_idle: state=0 cpu_id=0
49119 shell svc 13722-13723 ( 1007) [005] d..2 29484.575037: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49120            adbd-23484 ( 1007) [001] d..2 29484.575041: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49121            adbd-23484 ( 1007) [001] d..3 29484.575048: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49122            adbd-23484 ( 1007) [001] d..2 29484.575095: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49123              ps-13726 (13726) [005] d..2 29484.575116: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49124              ps-13726 (13726) [005] dn.3 29484.575121: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49125              ps-13726 (13726) [005] d..2 29484.575124: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49126 shell svc 13722-13723 ( 1007) [005] d..2 29484.575138: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49127            adbd-1007  ( 1007) [001] d..1 29484.575167: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49128            adbd-1007  ( 1007) [001] d..2 29484.575180: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49129          <idle>-0     (-----) [000] .n.1 29484.575185: cpu_idle: state=4294967295 cpu_id=0
49130          <idle>-0     (-----) [000] d..2 29484.575191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49131            adbd-1007  ( 1007) [001] d..2 29484.575214: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49132          <idle>-0     (-----) [001] d..1 29484.575222: cpu_idle: state=0 cpu_id=1
49133            adbd-23485 ( 1007) [000] d..2 29484.575241: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49134          <idle>-0     (-----) [000] d.h4 29484.575258: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49135          <idle>-0     (-----) [000] dnh5 29484.575264: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49136          <idle>-0     (-----) [000] d..2 29484.575272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49137   kworker/u17:2-23076 (23076) [000] d..2 29484.575278: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49138   kworker/u17:2-23076 (23076) [000] d..3 29484.575283: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49139   kworker/u17:2-23076 (23076) [000] d..2 29484.575298: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49140     kworker/0:0-13450 (13450) [000] d..2 29484.575303: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49141     kworker/0:0-13450 (13450) [000] d..3 29484.575311: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49142     kworker/0:0-13450 (13450) [000] d..2 29484.575319: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49143            adbd-23485 ( 1007) [000] d..2 29484.575362: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49144          <idle>-0     (-----) [000] d..1 29484.575372: cpu_idle: state=0 cpu_id=0
49145          <idle>-0     (-----) [000] d.h3 29484.575389: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49146          <idle>-0     (-----) [000] dnh4 29484.575396: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49147          <idle>-0     (-----) [000] .n.1 29484.575401: cpu_idle: state=4294967295 cpu_id=0
49148          <idle>-0     (-----) [000] d..2 29484.575407: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49149   kworker/u17:2-23076 (23076) [000] d..2 29484.575414: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49150   kworker/u17:2-23076 (23076) [000] d..3 29484.575419: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49151   kworker/u17:2-23076 (23076) [000] d..2 29484.575434: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49152     kworker/0:0-13450 (13450) [000] d..2 29484.575439: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49153     kworker/0:0-13450 (13450) [000] d..3 29484.575447: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49154     kworker/0:0-13450 (13450) [000] d..2 29484.575455: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49155            adbd-23485 ( 1007) [000] d..2 29484.575468: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49156          <idle>-0     (-----) [000] d..1 29484.575476: cpu_idle: state=0 cpu_id=0
49157              ps-13726 (13726) [005] d..2 29484.575527: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49158              ps-13726 (13726) [005] dn.3 29484.575532: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49159          <idle>-0     (-----) [000] d.h3 29484.575535: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49160              ps-13726 (13726) [005] d..2 29484.575536: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49161          <idle>-0     (-----) [000] dnh4 29484.575541: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49162          <idle>-0     (-----) [000] .n.1 29484.575546: cpu_idle: state=4294967295 cpu_id=0
49163 shell svc 13722-13723 ( 1007) [005] d..2 29484.575550: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49164          <idle>-0     (-----) [000] d..2 29484.575552: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49165   kworker/u17:2-23076 (23076) [000] d..2 29484.575558: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49166              ps-13726 (13726) [005] d..2 29484.575558: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49167              ps-13726 (13726) [005] dn.3 29484.575562: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49168   kworker/u17:2-23076 (23076) [000] d..3 29484.575564: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49169              ps-13726 (13726) [005] d..2 29484.575565: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49170 shell svc 13722-13723 ( 1007) [005] d..2 29484.575576: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49171   kworker/u17:2-23076 (23076) [000] d..2 29484.575580: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49172              ps-13726 (13726) [005] d..2 29484.575584: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49173     kworker/0:0-13450 (13450) [000] d..2 29484.575586: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49174              ps-13726 (13726) [005] dn.3 29484.575587: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49175              ps-13726 (13726) [005] d..2 29484.575590: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49176     kworker/0:0-13450 (13450) [000] d..3 29484.575594: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49177          <idle>-0     (-----) [001] .n.1 29484.575599: cpu_idle: state=4294967295 cpu_id=1
49178 shell svc 13722-13723 ( 1007) [005] d..2 29484.575601: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49179     kworker/0:0-13450 (13450) [000] d..2 29484.575602: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49180          <idle>-0     (-----) [001] d..2 29484.575607: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49181              ps-13726 (13726) [005] d..2 29484.575608: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49182          <idle>-0     (-----) [000] d..1 29484.575609: cpu_idle: state=0 cpu_id=0
49183              ps-13726 (13726) [005] dn.3 29484.575612: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49184              ps-13726 (13726) [005] d..2 29484.575614: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49185            adbd-23484 ( 1007) [001] d..2 29484.575619: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49186 shell svc 13722-13723 ( 1007) [005] d..2 29484.575624: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49187            adbd-23484 ( 1007) [001] d..3 29484.575626: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49188              ps-13726 (13726) [005] d..2 29484.575631: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49189              ps-13726 (13726) [005] dn.3 29484.575634: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49190              ps-13726 (13726) [005] d..2 29484.575637: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49191 shell svc 13722-13723 ( 1007) [005] d..2 29484.575647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49192              ps-13726 (13726) [005] d..2 29484.575654: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49193              ps-13726 (13726) [005] dn.3 29484.575658: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49194              ps-13726 (13726) [005] d..2 29484.575660: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49195 shell svc 13722-13723 ( 1007) [005] d..2 29484.575671: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49196            adbd-23484 ( 1007) [001] d..2 29484.575671: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49197              ps-13726 (13726) [005] d..2 29484.575677: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49198              ps-13726 (13726) [005] dn.3 29484.575680: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49199              ps-13726 (13726) [005] d..2 29484.575683: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49200 shell svc 13722-13723 ( 1007) [005] d..2 29484.575693: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49201              ps-13726 (13726) [005] d..2 29484.575699: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49202              ps-13726 (13726) [005] dn.3 29484.575703: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49203              ps-13726 (13726) [005] d..2 29484.575705: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49204 shell svc 13722-13723 ( 1007) [005] d..2 29484.575716: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49205              ps-13726 (13726) [005] d..2 29484.575723: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49206              ps-13726 (13726) [005] dn.3 29484.575726: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49207              ps-13726 (13726) [005] d..2 29484.575728: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49208            adbd-1007  ( 1007) [001] d..1 29484.575734: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49209 shell svc 13722-13723 ( 1007) [005] d..2 29484.575739: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49210            adbd-1007  ( 1007) [001] d..2 29484.575746: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49211          <idle>-0     (-----) [000] .n.1 29484.575751: cpu_idle: state=4294967295 cpu_id=0
49212          <idle>-0     (-----) [000] d..2 29484.575757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49213            adbd-1007  ( 1007) [001] d..2 29484.575779: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49214          <idle>-0     (-----) [001] d..1 29484.575787: cpu_idle: state=0 cpu_id=1
49215            adbd-23485 ( 1007) [000] d..2 29484.575807: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49216          <idle>-0     (-----) [000] d.h4 29484.575823: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49217          <idle>-0     (-----) [000] dnh5 29484.575829: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49218          <idle>-0     (-----) [000] d..2 29484.575838: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49219   kworker/u17:2-23076 (23076) [000] d..2 29484.575845: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49220   kworker/u17:2-23076 (23076) [000] d..3 29484.575849: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49221   kworker/u17:2-23076 (23076) [000] d..2 29484.575866: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49222     kworker/0:0-13450 (13450) [000] d..2 29484.575870: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49223     kworker/0:0-13450 (13450) [000] d..3 29484.575878: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49224     kworker/0:0-13450 (13450) [000] d..2 29484.575886: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49225            adbd-23485 ( 1007) [000] d..2 29484.575926: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49226          <idle>-0     (-----) [000] d..1 29484.575935: cpu_idle: state=0 cpu_id=0
49227          <idle>-0     (-----) [000] d.h3 29484.575961: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49228          <idle>-0     (-----) [000] dnh4 29484.575967: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49229          <idle>-0     (-----) [000] .n.1 29484.575971: cpu_idle: state=4294967295 cpu_id=0
49230          <idle>-0     (-----) [000] d..2 29484.575977: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49231   kworker/u17:2-23076 (23076) [000] d..2 29484.575984: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49232   kworker/u17:2-23076 (23076) [000] d..3 29484.575988: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49233   kworker/u17:2-23076 (23076) [000] d..2 29484.576004: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49234     kworker/0:0-13450 (13450) [000] d..2 29484.576009: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49235     kworker/0:0-13450 (13450) [000] d..3 29484.576017: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49236     kworker/0:0-13450 (13450) [000] d..2 29484.576025: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49237            adbd-23485 ( 1007) [000] d..2 29484.576037: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49238          <idle>-0     (-----) [000] d..1 29484.576044: cpu_idle: state=0 cpu_id=0
49239          <idle>-0     (-----) [000] d.h3 29484.576138: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49240          <idle>-0     (-----) [000] dnh4 29484.576143: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49241          <idle>-0     (-----) [000] .n.1 29484.576148: cpu_idle: state=4294967295 cpu_id=0
49242          <idle>-0     (-----) [000] d..2 29484.576154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49243   kworker/u17:2-23076 (23076) [000] d..2 29484.576160: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49244   kworker/u17:2-23076 (23076) [000] d..3 29484.576165: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49245              ps-13726 (13726) [005] d..2 29484.576166: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49246              ps-13726 (13726) [005] dn.3 29484.576172: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49247              ps-13726 (13726) [005] d..2 29484.576175: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49248   kworker/u17:2-23076 (23076) [000] d..2 29484.576181: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49249     kworker/0:0-13450 (13450) [000] d..2 29484.576187: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49250 shell svc 13722-13723 ( 1007) [005] d..2 29484.576190: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49251              ps-13726 (13726) [005] d..2 29484.576198: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49252              ps-13726 (13726) [005] dn.3 29484.576201: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49253              ps-13726 (13726) [005] d..2 29484.576205: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49254     kworker/0:0-13450 (13450) [000] d..3 29484.576205: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49255          <idle>-0     (-----) [001] .n.1 29484.576210: cpu_idle: state=4294967295 cpu_id=1
49256     kworker/0:0-13450 (13450) [000] d..2 29484.576215: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49257 shell svc 13722-13723 ( 1007) [005] d..2 29484.576216: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49258          <idle>-0     (-----) [001] d..2 29484.576218: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49259          <idle>-0     (-----) [000] d..1 29484.576222: cpu_idle: state=0 cpu_id=0
49260              ps-13726 (13726) [005] d..2 29484.576223: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49261              ps-13726 (13726) [005] dn.3 29484.576226: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49262              ps-13726 (13726) [005] d..2 29484.576229: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49263            adbd-23484 ( 1007) [001] d..2 29484.576230: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49264            adbd-23484 ( 1007) [001] d..3 29484.576237: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49265 shell svc 13722-13723 ( 1007) [005] d..2 29484.576241: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49266              ps-13726 (13726) [005] d..2 29484.576247: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49267              ps-13726 (13726) [005] dn.3 29484.576250: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49268              ps-13726 (13726) [005] d..2 29484.576253: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49269 shell svc 13722-13723 ( 1007) [005] d..2 29484.576263: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49270              ps-13726 (13726) [005] d..2 29484.576270: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49271              ps-13726 (13726) [005] dn.3 29484.576273: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49272              ps-13726 (13726) [005] d..2 29484.576275: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49273            adbd-23484 ( 1007) [001] d..2 29484.576283: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49274 shell svc 13722-13723 ( 1007) [005] d..2 29484.576285: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49275              ps-13726 (13726) [005] d..2 29484.576293: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49276              ps-13726 (13726) [005] dn.3 29484.576296: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49277              ps-13726 (13726) [005] d..2 29484.576299: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49278 shell svc 13722-13723 ( 1007) [005] d..2 29484.576309: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49279              ps-13726 (13726) [005] d..2 29484.576315: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49280              ps-13726 (13726) [005] dn.3 29484.576318: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49281              ps-13726 (13726) [005] d..2 29484.576321: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49282 shell svc 13722-13723 ( 1007) [005] d..2 29484.576331: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49283              ps-13726 (13726) [005] d..2 29484.576338: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49284              ps-13726 (13726) [005] dn.3 29484.576341: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49285              ps-13726 (13726) [005] d..2 29484.576344: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49286            adbd-1007  ( 1007) [001] d..1 29484.576347: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49287 shell svc 13722-13723 ( 1007) [005] d..2 29484.576355: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49288              ps-13726 (13726) [005] d..2 29484.576362: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49289              ps-13726 (13726) [005] dn.3 29484.576365: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49290              ps-13726 (13726) [005] d..2 29484.576368: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49291            adbd-1007  ( 1007) [001] d..2 29484.576371: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49292          <idle>-0     (-----) [000] .n.1 29484.576376: cpu_idle: state=4294967295 cpu_id=0
49293 shell svc 13722-13723 ( 1007) [005] d..2 29484.576378: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49294          <idle>-0     (-----) [000] d..2 29484.576382: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49295              ps-13726 (13726) [005] d..2 29484.576384: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49296              ps-13726 (13726) [005] dn.3 29484.576387: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49297              ps-13726 (13726) [005] d..2 29484.576390: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49298 shell svc 13722-13723 ( 1007) [005] d..2 29484.576400: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49299            adbd-1007  ( 1007) [001] d..2 29484.576411: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49300          <idle>-0     (-----) [001] d..1 29484.576419: cpu_idle: state=0 cpu_id=1
49301            adbd-23485 ( 1007) [000] d..2 29484.576431: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49302          <idle>-0     (-----) [000] d.h4 29484.576448: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49303          <idle>-0     (-----) [000] dnh5 29484.576457: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49304          <idle>-0     (-----) [000] d..2 29484.576465: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49305   kworker/u17:2-23076 (23076) [000] d..2 29484.576471: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49306   kworker/u17:2-23076 (23076) [000] d..3 29484.576476: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49307   kworker/u17:2-23076 (23076) [000] d..2 29484.576492: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49308     kworker/0:0-13450 (13450) [000] d..2 29484.576497: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49309     kworker/0:0-13450 (13450) [000] d..3 29484.576504: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49310     kworker/0:0-13450 (13450) [000] d..2 29484.576512: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49311              ps-13726 (13726) [005] d..2 29484.576519: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49312              ps-13726 (13726) [005] dn.3 29484.576524: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49313              ps-13726 (13726) [005] d..2 29484.576528: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49314 shell svc 13722-13723 ( 1007) [005] d..2 29484.576542: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49315              ps-13726 (13726) [005] d..2 29484.576550: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49316            adbd-23485 ( 1007) [000] d..2 29484.576552: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49317              ps-13726 (13726) [005] dn.3 29484.576553: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49318              ps-13726 (13726) [005] d..2 29484.576557: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49319 shell svc 13722-13723 ( 1007) [005] d..2 29484.576567: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49320          <idle>-0     (-----) [000] d.h3 29484.576568: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49321          <idle>-0     (-----) [000] dnh4 29484.576574: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49322          <idle>-0     (-----) [000] d..2 29484.576582: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49323   kworker/u17:2-23076 (23076) [000] d..2 29484.576588: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49324   kworker/u17:2-23076 (23076) [000] d..3 29484.576593: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49325   kworker/u17:2-23076 (23076) [000] d..2 29484.576609: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49326     kworker/0:0-13450 (13450) [000] d..2 29484.576613: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49327     kworker/0:0-13450 (13450) [000] d..3 29484.576621: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49328     kworker/0:0-13450 (13450) [000] d..2 29484.576629: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49329            adbd-23485 ( 1007) [000] d..2 29484.576641: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49330              ps-13726 (13726) [005] d..2 29484.576647: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49331          <idle>-0     (-----) [000] d..1 29484.576650: cpu_idle: state=0 cpu_id=0
49332              ps-13726 (13726) [005] dn.3 29484.576651: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49333              ps-13726 (13726) [005] d..2 29484.576655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49334 shell svc 13722-13723 ( 1007) [005] d..2 29484.576668: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49335          <idle>-0     (-----) [000] d.h3 29484.576709: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49336          <idle>-0     (-----) [000] dnh4 29484.576715: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49337          <idle>-0     (-----) [000] .n.1 29484.576720: cpu_idle: state=4294967295 cpu_id=0
49338          <idle>-0     (-----) [000] d..2 29484.576726: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49339   kworker/u17:2-23076 (23076) [000] d..2 29484.576733: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49340   kworker/u17:2-23076 (23076) [000] d..3 29484.576738: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49341   kworker/u17:2-23076 (23076) [000] d..2 29484.576753: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49342     kworker/0:0-13450 (13450) [000] d..2 29484.576759: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49343     kworker/0:0-13450 (13450) [000] d..3 29484.576767: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49344          <idle>-0     (-----) [001] .n.1 29484.576773: cpu_idle: state=4294967295 cpu_id=1
49345     kworker/0:0-13450 (13450) [000] d..2 29484.576775: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49346          <idle>-0     (-----) [001] d..2 29484.576780: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49347          <idle>-0     (-----) [000] d..1 29484.576782: cpu_idle: state=0 cpu_id=0
49348              ps-13726 (13726) [005] d..2 29484.576785: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49349              ps-13726 (13726) [005] dn.3 29484.576789: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49350            adbd-23484 ( 1007) [001] d..2 29484.576793: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49351              ps-13726 (13726) [005] d..2 29484.576793: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49352            adbd-23484 ( 1007) [001] d..3 29484.576799: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49353 shell svc 13722-13723 ( 1007) [005] d..2 29484.576807: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49354              ps-13726 (13726) [005] d..2 29484.576815: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49355              ps-13726 (13726) [005] dn.3 29484.576818: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49356              ps-13726 (13726) [005] d..2 29484.576821: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49357 shell svc 13722-13723 ( 1007) [005] d..2 29484.576832: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49358            adbd-23484 ( 1007) [001] d..2 29484.576844: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49359            adbd-1007  ( 1007) [001] d..1 29484.576907: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49360            adbd-1007  ( 1007) [001] d..2 29484.576919: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49361          <idle>-0     (-----) [000] .n.1 29484.576924: cpu_idle: state=4294967295 cpu_id=0
49362          <idle>-0     (-----) [000] d..2 29484.576930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49363            adbd-1007  ( 1007) [001] d..2 29484.576952: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49364          <idle>-0     (-----) [001] d..1 29484.576960: cpu_idle: state=0 cpu_id=1
49365            adbd-23485 ( 1007) [000] d..2 29484.576972: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49366          <idle>-0     (-----) [000] d..1 29484.576980: cpu_idle: state=0 cpu_id=0
49367              ps-13726 (13726) [005] d..2 29484.576986: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49368              ps-13726 (13726) [005] dn.3 29484.576990: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49369              ps-13726 (13726) [005] d..2 29484.576994: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49370          <idle>-0     (-----) [000] d.h3 29484.576999: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49371          <idle>-0     (-----) [000] dnh4 29484.577005: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49372 shell svc 13722-13723 ( 1007) [005] d..2 29484.577008: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49373          <idle>-0     (-----) [000] .n.1 29484.577011: cpu_idle: state=4294967295 cpu_id=0
49374          <idle>-0     (-----) [000] d..2 29484.577016: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49375              ps-13726 (13726) [005] d..2 29484.577016: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49376              ps-13726 (13726) [005] dn.3 29484.577020: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49377              ps-13726 (13726) [005] d..2 29484.577023: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49378   kworker/u17:2-23076 (23076) [000] d..2 29484.577024: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49379   kworker/u17:2-23076 (23076) [000] d..3 29484.577029: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49380 shell svc 13722-13723 ( 1007) [005] d..2 29484.577034: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49381              ps-13726 (13726) [005] d..2 29484.577042: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49382              ps-13726 (13726) [005] dn.3 29484.577045: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49383   kworker/u17:2-23076 (23076) [000] d..2 29484.577045: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49384              ps-13726 (13726) [005] d..2 29484.577048: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49385     kworker/0:0-13450 (13450) [000] d..2 29484.577051: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49386     kworker/0:0-13450 (13450) [000] d..3 29484.577066: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49387 shell svc 13722-13723 ( 1007) [005] d..2 29484.577076: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49388     kworker/0:0-13450 (13450) [000] d.H3 29484.577131: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
49389     kworker/0:0-13450 (13450) [000] d.H3 29484.577144: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
49390     kworker/0:0-13450 (13450) [000] d.H4 29484.577155: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
49391     kworker/0:0-13450 (13450) [000] d..2 29484.577171: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49392              ps-13726 (13726) [005] d..2 29484.577208: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49393            adbd-23485 ( 1007) [000] d..2 29484.577211: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49394              ps-13726 (13726) [005] dn.3 29484.577214: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49395              ps-13726 (13726) [005] d..2 29484.577218: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49396 shell svc 13722-13723 ( 1007) [005] d..2 29484.577232: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49397          <idle>-0     (-----) [000] d.h3 29484.577233: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49398              ps-13726 (13726) [005] d..2 29484.577240: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49399          <idle>-0     (-----) [000] dnh4 29484.577240: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49400              ps-13726 (13726) [005] dn.3 29484.577243: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49401              ps-13726 (13726) [005] d..2 29484.577246: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49402          <idle>-0     (-----) [000] d..2 29484.577249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49403   kworker/u17:2-23076 (23076) [000] d..2 29484.577256: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49404 shell svc 13722-13723 ( 1007) [005] d..2 29484.577257: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49405   kworker/u17:2-23076 (23076) [000] d..3 29484.577260: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49406   kworker/u17:2-23076 (23076) [000] d..2 29484.577276: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49407     kworker/0:0-13450 (13450) [000] d..2 29484.577280: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49408     kworker/0:0-13450 (13450) [000] d..3 29484.577300: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
49409     kworker/0:0-13450 (13450) [000] d..2 29484.577309: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49410          <idle>-0     (-----) [000] d..1 29484.577316: cpu_idle: state=0 cpu_id=0
49411          <idle>-0     (-----) [003] .n.1 29484.577336: cpu_idle: state=4294967295 cpu_id=3
49412          <idle>-0     (-----) [003] d..2 29484.577348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49413         sugov:0-559   (  559) [003] .... 29484.577370: clk_set_rate: pwrcl_clk 1516800000
49414          <idle>-0     (-----) [007] dnh2 29484.577375: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
49415          <idle>-0     (-----) [007] .n.1 29484.577381: cpu_idle: state=4294967295 cpu_id=7
49416          <idle>-0     (-----) [007] d..2 29484.577388: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49417          <idle>-0     (-----) [000] d.h3 29484.577403: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49418          <idle>-0     (-----) [000] dnh4 29484.577409: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49419          <idle>-0     (-----) [000] .n.1 29484.577414: cpu_idle: state=4294967295 cpu_id=0
49420          <idle>-0     (-----) [000] d..2 29484.577420: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49421   kworker/u17:2-23076 (23076) [000] d..2 29484.577426: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49422   kworker/u17:2-23076 (23076) [000] d..3 29484.577431: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49423              ps-13726 (13726) [005] d..2 29484.577434: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49424              ps-13726 (13726) [005] dn.3 29484.577439: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49425              ps-13726 (13726) [005] d..2 29484.577443: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49426         sugov:0-559   (  559) [003] d.s1 29484.577445: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
49427   kworker/u17:2-23076 (23076) [000] d..2 29484.577447: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49428     kworker/0:0-13450 (13450) [000] d..2 29484.577453: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49429         sugov:0-559   (  559) [003] d.s2 29484.577457: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
49430 shell svc 13722-13723 ( 1007) [005] d..2 29484.577458: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49431         sugov:0-559   (  559) [003] .... 29484.577462: clk_set_rate: cpu3_pwrcl_clk 1766400000
49432     kworker/0:0-13450 (13450) [000] d..3 29484.577462: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49433              ps-13726 (13726) [005] d..2 29484.577466: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49434          <idle>-0     (-----) [001] .n.1 29484.577468: cpu_idle: state=4294967295 cpu_id=1
49435              ps-13726 (13726) [005] dn.3 29484.577469: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49436         sugov:0-559   (  559) [003] .... 29484.577470: clk_set_rate: cpu2_pwrcl_clk 1766400000
49437     kworker/0:0-13450 (13450) [000] d..2 29484.577470: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49438              ps-13726 (13726) [005] d..2 29484.577472: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49439          <idle>-0     (-----) [001] d..2 29484.577476: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49440          <idle>-0     (-----) [000] d..1 29484.577477: cpu_idle: state=0 cpu_id=0
49441         sugov:0-559   (  559) [003] .... 29484.577477: clk_set_rate: cpu1_pwrcl_clk 1766400000
49442         sugov:0-559   (  559) [003] .... 29484.577483: clk_set_rate: cpu0_pwrcl_clk 1516800000
49443 shell svc 13722-13723 ( 1007) [005] d..2 29484.577484: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49444            adbd-23484 ( 1007) [001] d..2 29484.577488: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49445              ps-13726 (13726) [005] d..2 29484.577491: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49446              ps-13726 (13726) [005] dn.3 29484.577494: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49447              ps-13726 (13726) [005] d..2 29484.577497: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49448            adbd-23484 ( 1007) [001] d..3 29484.577500: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49449 shell svc 13722-13723 ( 1007) [005] d..2 29484.577508: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49450            adbd-23484 ( 1007) [001] d..2 29484.577569: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49451         sugov:0-559   (  559) [003] .... 29484.577594: cpu_frequency: state=1516800 cpu_id=0
49452         sugov:4-560   (  560) [007] .... 29484.577603: clk_set_rate: perfcl_clk 1459200000
49453         sugov:4-560   (  560) [007] .... 29484.577604: clk_set_rate: cpu7_perfcl_clk 1363200000
49454         sugov:4-560   (  560) [007] .... 29484.577609: clk_set_rate: cpu6_perfcl_clk 1363200000
49455         sugov:4-560   (  560) [007] .... 29484.577614: clk_set_rate: cpu5_perfcl_clk 1363200000
49456         sugov:4-560   (  560) [007] .... 29484.577619: clk_set_rate: cpu4_perfcl_clk 1459200000
49457         sugov:4-560   (  560) [007] .... 29484.577624: cpu_frequency: state=1459200 cpu_id=4
49458            adbd-1007  ( 1007) [001] d..2 29484.577678: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49459          <idle>-0     (-----) [001] d..1 29484.577686: cpu_idle: state=0 cpu_id=1
49460         sugov:0-559   (  559) [003] d..2 29484.577742: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=D ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
49461         sugov:4-560   (  560) [007] d..2 29484.577757: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
49462          <idle>-0     (-----) [007] d..1 29484.577764: cpu_idle: state=2 cpu_id=7
49463     ksoftirqd/3-34    (   34) [003] d.s4 29484.577770: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
49464     ksoftirqd/3-34    (   34) [003] d.s5 29484.577790: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=000
49465          <idle>-0     (-----) [000] .n.1 29484.577795: cpu_idle: state=4294967295 cpu_id=0
49466     ksoftirqd/3-34    (   34) [003] d..2 29484.577801: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49467          <idle>-0     (-----) [000] d..2 29484.577802: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
49468         sugov:0-559   (  559) [000] d..1 29484.577812: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
49469         sugov:0-559   (  559) [000] .... 29484.577823: cpu_frequency: state=1516800 cpu_id=1
49470         sugov:0-559   (  559) [000] .... 29484.577828: cpu_frequency: state=1516800 cpu_id=2
49471         sugov:0-559   (  559) [000] .... 29484.577830: cpu_frequency: state=1516800 cpu_id=3
49472         sugov:0-559   (  559) [000] d..2 29484.577847: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49473          <idle>-0     (-----) [000] d..1 29484.577854: cpu_idle: state=0 cpu_id=0
49474            adbd-23485 ( 1007) [003] d..2 29484.577872: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49475          <idle>-0     (-----) [000] d.h3 29484.577875: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49476          <idle>-0     (-----) [000] dnh4 29484.577882: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49477          <idle>-0     (-----) [003] d..1 29484.577882: cpu_idle: state=2 cpu_id=3
49478          <idle>-0     (-----) [000] .n.1 29484.577887: cpu_idle: state=4294967295 cpu_id=0
49479          <idle>-0     (-----) [000] d..2 29484.577894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49480   kworker/u17:2-23076 (23076) [000] d..2 29484.577902: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49481   kworker/u17:2-23076 (23076) [000] d..3 29484.577907: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49482   kworker/u17:2-23076 (23076) [000] d..2 29484.577924: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49483     kworker/0:0-13450 (13450) [000] d..2 29484.577929: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
49484     kworker/0:0-13450 (13450) [000] d..3 29484.577939: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
49485     kworker/0:0-13450 (13450) [000] d..2 29484.577954: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49486          <idle>-0     (-----) [000] d..1 29484.577961: cpu_idle: state=0 cpu_id=0
49487          <idle>-0     (-----) [003] .n.1 29484.578051: cpu_idle: state=4294967295 cpu_id=3
49488          <idle>-0     (-----) [003] d..2 29484.578064: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49489          <idle>-0     (-----) [007] dnh2 29484.578093: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
49490              ps-13726 (13726) [005] d..2 29484.578097: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49491          <idle>-0     (-----) [007] .n.1 29484.578098: cpu_idle: state=4294967295 cpu_id=7
49492              ps-13726 (13726) [005] dn.3 29484.578103: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49493          <idle>-0     (-----) [007] d..2 29484.578104: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
49494              ps-13726 (13726) [005] d..2 29484.578107: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49495         sugov:4-560   (  560) [007] .... 29484.578109: cpu_frequency: state=1459200 cpu_id=5
49496         sugov:4-560   (  560) [007] .... 29484.578112: cpu_frequency: state=1459200 cpu_id=6
49497         sugov:4-560   (  560) [007] .... 29484.578114: cpu_frequency: state=1459200 cpu_id=7
49498 shell svc 13722-13723 ( 1007) [005] d..2 29484.578122: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49499         sugov:4-560   (  560) [007] d..2 29484.578125: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
49500            adbd-23485 ( 1007) [003] d..2 29484.578125: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49501              ps-13726 (13726) [005] d..2 29484.578129: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49502          <idle>-0     (-----) [007] d..1 29484.578131: cpu_idle: state=2 cpu_id=7
49503              ps-13726 (13726) [005] dn.3 29484.578133: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49504              ps-13726 (13726) [005] d..2 29484.578135: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49505          <idle>-0     (-----) [003] d..1 29484.578136: cpu_idle: state=0 cpu_id=3
49506 shell svc 13722-13723 ( 1007) [005] d..2 29484.578146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49507          <idle>-0     (-----) [000] d.h3 29484.578149: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49508              ps-13726 (13726) [005] d..2 29484.578152: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49509          <idle>-0     (-----) [000] dnh4 29484.578155: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49510              ps-13726 (13726) [005] dn.3 29484.578155: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49511              ps-13726 (13726) [005] d..2 29484.578158: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49512          <idle>-0     (-----) [000] .n.1 29484.578161: cpu_idle: state=4294967295 cpu_id=0
49513          <idle>-0     (-----) [000] d..2 29484.578167: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49514 shell svc 13722-13723 ( 1007) [005] d..2 29484.578168: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49515              ps-13726 (13726) [005] d..2 29484.578174: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49516   kworker/u17:2-23076 (23076) [000] d..2 29484.578174: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49517              ps-13726 (13726) [005] dn.3 29484.578177: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49518              ps-13726 (13726) [005] d..2 29484.578180: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49519   kworker/u17:2-23076 (23076) [000] d..3 29484.578180: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49520 shell svc 13722-13723 ( 1007) [005] d..2 29484.578189: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49521              ps-13726 (13726) [005] d..2 29484.578195: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49522   kworker/u17:2-23076 (23076) [000] d..2 29484.578196: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49523              ps-13726 (13726) [005] dn.3 29484.578198: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49524              ps-13726 (13726) [005] d..2 29484.578201: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49525     kworker/0:0-13450 (13450) [000] d..2 29484.578202: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
49526 shell svc 13722-13723 ( 1007) [005] d..2 29484.578210: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49527     kworker/0:0-13450 (13450) [000] d..3 29484.578211: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
49528          <idle>-0     (-----) [003] .n.1 29484.578217: cpu_idle: state=4294967295 cpu_id=3
49529              ps-13726 (13726) [005] d..2 29484.578218: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49530              ps-13726 (13726) [005] dn.3 29484.578221: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49531          <idle>-0     (-----) [003] d..2 29484.578224: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49532              ps-13726 (13726) [005] d..2 29484.578224: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49533     kworker/0:0-13450 (13450) [000] d..2 29484.578226: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49534 shell svc 13722-13723 ( 1007) [005] d..2 29484.578233: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49535          <idle>-0     (-----) [000] d..1 29484.578233: cpu_idle: state=0 cpu_id=0
49536              ps-13726 (13726) [005] d..2 29484.578239: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49537              ps-13726 (13726) [005] dn.3 29484.578242: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49538              ps-13726 (13726) [005] d..2 29484.578246: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49539            adbd-23485 ( 1007) [003] d..2 29484.578246: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49540          <idle>-0     (-----) [003] d..1 29484.578254: cpu_idle: state=0 cpu_id=3
49541 shell svc 13722-13723 ( 1007) [005] d..2 29484.578256: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49542              ps-13726 (13726) [005] d..2 29484.578263: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49543              ps-13726 (13726) [005] dn.3 29484.578266: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49544              ps-13726 (13726) [005] d..2 29484.578269: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49545 shell svc 13722-13723 ( 1007) [005] d..2 29484.578278: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49546              ps-13726 (13726) [005] d..2 29484.578284: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49547              ps-13726 (13726) [005] dn.3 29484.578287: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49548              ps-13726 (13726) [005] d..2 29484.578291: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49549 shell svc 13722-13723 ( 1007) [005] d..2 29484.578300: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49550              ps-13726 (13726) [005] d..2 29484.578307: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49551              ps-13726 (13726) [005] dn.3 29484.578310: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49552              ps-13726 (13726) [005] d..2 29484.578313: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49553          <idle>-0     (-----) [000] d.h3 29484.578316: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49554          <idle>-0     (-----) [000] dnh4 29484.578322: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49555 shell svc 13722-13723 ( 1007) [005] d..2 29484.578322: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49556          <idle>-0     (-----) [000] .n.1 29484.578327: cpu_idle: state=4294967295 cpu_id=0
49557              ps-13726 (13726) [005] d..2 29484.578328: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49558              ps-13726 (13726) [005] dn.3 29484.578331: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49559          <idle>-0     (-----) [000] d..2 29484.578334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49560              ps-13726 (13726) [005] d..2 29484.578334: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49561   kworker/u17:2-23076 (23076) [000] d..2 29484.578340: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49562 shell svc 13722-13723 ( 1007) [005] d..2 29484.578343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49563   kworker/u17:2-23076 (23076) [000] d..3 29484.578346: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49564              ps-13726 (13726) [005] d..2 29484.578350: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49565              ps-13726 (13726) [005] dn.3 29484.578353: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49566              ps-13726 (13726) [005] d..2 29484.578356: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49567   kworker/u17:2-23076 (23076) [000] d..2 29484.578362: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49568 shell svc 13722-13723 ( 1007) [005] d..2 29484.578365: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49569     kworker/0:0-13450 (13450) [000] d..2 29484.578370: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49570              ps-13726 (13726) [005] d..2 29484.578372: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49571              ps-13726 (13726) [005] dn.3 29484.578374: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49572              ps-13726 (13726) [005] d..2 29484.578377: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49573 shell svc 13722-13723 ( 1007) [005] d..2 29484.578387: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49574     kworker/0:0-13450 (13450) [000] d..3 29484.578391: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49575              ps-13726 (13726) [005] d..2 29484.578393: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49576          <idle>-0     (-----) [001] .n.1 29484.578396: cpu_idle: state=4294967295 cpu_id=1
49577              ps-13726 (13726) [005] dn.3 29484.578396: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49578              ps-13726 (13726) [005] d..2 29484.578398: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49579          <idle>-0     (-----) [001] d..2 29484.578402: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49580     kworker/0:0-13450 (13450) [000] d..2 29484.578405: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49581 shell svc 13722-13723 ( 1007) [005] d..2 29484.578408: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49582              ps-13726 (13726) [005] d..2 29484.578414: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49583          <idle>-0     (-----) [000] d..1 29484.578414: cpu_idle: state=0 cpu_id=0
49584            adbd-23484 ( 1007) [001] d..2 29484.578415: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49585              ps-13726 (13726) [005] dn.3 29484.578416: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49586              ps-13726 (13726) [005] d..2 29484.578419: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49587            adbd-23484 ( 1007) [001] d..3 29484.578423: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49588 shell svc 13722-13723 ( 1007) [005] d..2 29484.578429: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49589            adbd-23484 ( 1007) [001] d..2 29484.578471: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49590              ps-13726 (13726) [005] d..2 29484.578524: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49591              ps-13726 (13726) [005] dn.3 29484.578529: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49592              ps-13726 (13726) [005] d..2 29484.578532: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49593 shell svc 13722-13723 ( 1007) [005] d..2 29484.578546: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49594            adbd-1007  ( 1007) [001] d..1 29484.578552: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
49595            adbd-1007  ( 1007) [001] d..2 29484.578584: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49596          <idle>-0     (-----) [000] .n.1 29484.578589: cpu_idle: state=4294967295 cpu_id=0
49597          <idle>-0     (-----) [000] d..2 29484.578596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49598            adbd-1007  ( 1007) [001] d..2 29484.578622: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49599          <idle>-0     (-----) [001] d..1 29484.578629: cpu_idle: state=0 cpu_id=1
49600              ps-13726 (13726) [005] d..2 29484.578638: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49601              ps-13726 (13726) [005] dn.3 29484.578643: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49602              ps-13726 (13726) [005] d..2 29484.578646: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49603            adbd-23485 ( 1007) [000] d..2 29484.578649: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49604 shell svc 13722-13723 ( 1007) [005] d..2 29484.578660: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49605          <idle>-0     (-----) [000] d.h4 29484.578667: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49606          <idle>-0     (-----) [000] dnh5 29484.578677: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49607          <idle>-0     (-----) [000] d..2 29484.578685: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49608   kworker/u17:2-23076 (23076) [000] d..2 29484.578692: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49609   kworker/u17:2-23076 (23076) [000] d..3 29484.578698: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49610   kworker/u17:2-23076 (23076) [000] d..2 29484.578714: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49611     kworker/0:0-13450 (13450) [000] d..2 29484.578720: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49612     kworker/0:0-13450 (13450) [000] d..3 29484.578729: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49613     kworker/0:0-13450 (13450) [000] d..2 29484.578737: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49614              ps-13726 (13726) [005] d..2 29484.578758: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49615              ps-13726 (13726) [005] dn.3 29484.578763: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49616              ps-13726 (13726) [005] d..2 29484.578766: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49617 shell svc 13722-13723 ( 1007) [005] d..2 29484.578779: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49618            adbd-23485 ( 1007) [000] d..2 29484.578785: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49619          <idle>-0     (-----) [000] d..1 29484.578794: cpu_idle: state=0 cpu_id=0
49620          <idle>-0     (-----) [000] d.h3 29484.578822: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49621          <idle>-0     (-----) [000] dnh4 29484.578829: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49622          <idle>-0     (-----) [000] .n.1 29484.578834: cpu_idle: state=4294967295 cpu_id=0
49623          <idle>-0     (-----) [000] d..2 29484.578841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49624   kworker/u17:2-23076 (23076) [000] d..2 29484.578849: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49625   kworker/u17:2-23076 (23076) [000] d..3 29484.578855: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49626   kworker/u17:2-23076 (23076) [000] d..2 29484.578871: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49627     kworker/0:0-13450 (13450) [000] d..2 29484.578876: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49628     kworker/0:0-13450 (13450) [000] d..3 29484.578885: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49629     kworker/0:0-13450 (13450) [000] d..2 29484.578895: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49630            adbd-23485 ( 1007) [000] d..2 29484.578914: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49631          <idle>-0     (-----) [000] d..1 29484.578923: cpu_idle: state=0 cpu_id=0
49632          <idle>-0     (-----) [000] d.h3 29484.579018: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49633          <idle>-0     (-----) [000] dnh4 29484.579024: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49634          <idle>-0     (-----) [000] .n.1 29484.579031: cpu_idle: state=4294967295 cpu_id=0
49635          <idle>-0     (-----) [000] d..2 29484.579037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49636   kworker/u17:2-23076 (23076) [000] d..2 29484.579044: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49637   kworker/u17:2-23076 (23076) [000] d..3 29484.579050: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49638   kworker/u17:2-23076 (23076) [000] d..2 29484.579068: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49639     kworker/0:0-13450 (13450) [000] d..2 29484.579074: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49640     kworker/0:0-13450 (13450) [000] d..3 29484.579083: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49641          <idle>-0     (-----) [001] .n.1 29484.579089: cpu_idle: state=4294967295 cpu_id=1
49642          <idle>-0     (-----) [001] d..2 29484.579096: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49643     kworker/0:0-13450 (13450) [000] d..2 29484.579098: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49644          <idle>-0     (-----) [000] d..1 29484.579106: cpu_idle: state=0 cpu_id=0
49645            adbd-23484 ( 1007) [001] d..2 29484.579108: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49646            adbd-23484 ( 1007) [001] d..3 29484.579116: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49647            adbd-23484 ( 1007) [001] d..2 29484.579164: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49648            adbd-1007  ( 1007) [001] d..1 29484.579226: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49649            adbd-1007  ( 1007) [001] d..2 29484.579239: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49650          <idle>-0     (-----) [000] .n.1 29484.579244: cpu_idle: state=4294967295 cpu_id=0
49651          <idle>-0     (-----) [000] d..2 29484.579251: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49652              ps-13726 (13726) [005] d..2 29484.579273: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49653            adbd-1007  ( 1007) [001] d..2 29484.579275: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49654              ps-13726 (13726) [005] dn.3 29484.579278: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49655          <idle>-0     (-----) [001] d..1 29484.579282: cpu_idle: state=0 cpu_id=1
49656              ps-13726 (13726) [005] d..2 29484.579282: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49657 shell svc 13722-13723 ( 1007) [005] d..2 29484.579298: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49658            adbd-23485 ( 1007) [000] d..2 29484.579301: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49659              ps-13726 (13726) [005] d..2 29484.579305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49660              ps-13726 (13726) [005] dn.3 29484.579309: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49661              ps-13726 (13726) [005] d..2 29484.579312: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49662          <idle>-0     (-----) [000] d.h4 29484.579319: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49663 shell svc 13722-13723 ( 1007) [005] d..2 29484.579322: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49664          <idle>-0     (-----) [000] dnh5 29484.579325: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49665              ps-13726 (13726) [005] d..2 29484.579329: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49666              ps-13726 (13726) [005] dn.3 29484.579332: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49667          <idle>-0     (-----) [000] d..2 29484.579334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49668              ps-13726 (13726) [005] d..2 29484.579335: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49669   kworker/u17:2-23076 (23076) [000] d..2 29484.579341: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49670 shell svc 13722-13723 ( 1007) [005] d..2 29484.579345: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49671   kworker/u17:2-23076 (23076) [000] d..3 29484.579347: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49672              ps-13726 (13726) [005] d..2 29484.579351: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49673              ps-13726 (13726) [005] dn.3 29484.579354: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49674              ps-13726 (13726) [005] d..2 29484.579357: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49675   kworker/u17:2-23076 (23076) [000] d..2 29484.579363: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49676 shell svc 13722-13723 ( 1007) [005] d..2 29484.579366: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49677     kworker/0:0-13450 (13450) [000] d..2 29484.579368: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49678              ps-13726 (13726) [005] d..2 29484.579374: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49679              ps-13726 (13726) [005] dn.3 29484.579377: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49680     kworker/0:0-13450 (13450) [000] d..3 29484.579377: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49681              ps-13726 (13726) [005] d..2 29484.579380: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49682     kworker/0:0-13450 (13450) [000] d..2 29484.579386: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49683 shell svc 13722-13723 ( 1007) [005] d..2 29484.579390: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49684              ps-13726 (13726) [005] d..2 29484.579396: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49685              ps-13726 (13726) [005] dn.3 29484.579399: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49686              ps-13726 (13726) [005] d..2 29484.579402: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49687 shell svc 13722-13723 ( 1007) [005] d..2 29484.579411: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49688              ps-13726 (13726) [005] d..2 29484.579418: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49689              ps-13726 (13726) [005] dn.3 29484.579421: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49690              ps-13726 (13726) [005] d..2 29484.579423: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49691 shell svc 13722-13723 ( 1007) [005] d..2 29484.579433: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49692            adbd-23485 ( 1007) [000] d..2 29484.579435: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49693              ps-13726 (13726) [005] d..2 29484.579440: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49694              ps-13726 (13726) [005] dn.3 29484.579443: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49695              ps-13726 (13726) [005] d..2 29484.579446: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49696          <idle>-0     (-----) [000] d.h4 29484.579453: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49697 shell svc 13722-13723 ( 1007) [005] d..2 29484.579455: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49698          <idle>-0     (-----) [000] dnh5 29484.579460: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49699              ps-13726 (13726) [005] d..2 29484.579462: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49700              ps-13726 (13726) [005] dn.3 29484.579465: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49701          <idle>-0     (-----) [000] d..2 29484.579468: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49702              ps-13726 (13726) [005] d..2 29484.579468: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49703   kworker/u17:2-23076 (23076) [000] d..2 29484.579476: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49704 shell svc 13722-13723 ( 1007) [005] d..2 29484.579478: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49705   kworker/u17:2-23076 (23076) [000] d..3 29484.579482: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49706              ps-13726 (13726) [005] d..2 29484.579484: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49707              ps-13726 (13726) [005] dn.3 29484.579487: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49708              ps-13726 (13726) [005] d..2 29484.579490: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49709   kworker/u17:2-23076 (23076) [000] d..2 29484.579498: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49710 shell svc 13722-13723 ( 1007) [005] d..2 29484.579499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49711     kworker/0:0-13450 (13450) [000] d..2 29484.579503: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49712              ps-13726 (13726) [005] d..2 29484.579506: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49713              ps-13726 (13726) [005] dn.3 29484.579509: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49714     kworker/0:0-13450 (13450) [000] d..3 29484.579512: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49715              ps-13726 (13726) [005] d..2 29484.579512: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49716     kworker/0:0-13450 (13450) [000] d..2 29484.579521: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49717 shell svc 13722-13723 ( 1007) [005] d..2 29484.579522: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49718              ps-13726 (13726) [005] d..2 29484.579528: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49719              ps-13726 (13726) [005] dn.3 29484.579531: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49720              ps-13726 (13726) [005] d..2 29484.579534: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49721            adbd-23485 ( 1007) [000] d..2 29484.579539: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49722 shell svc 13722-13723 ( 1007) [005] d..2 29484.579543: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49723          <idle>-0     (-----) [000] d..1 29484.579549: cpu_idle: state=0 cpu_id=0
49724          <idle>-0     (-----) [000] d.h3 29484.579630: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49725          <idle>-0     (-----) [000] dnh4 29484.579636: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49726          <idle>-0     (-----) [000] .n.1 29484.579641: cpu_idle: state=4294967295 cpu_id=0
49727          <idle>-0     (-----) [000] d..2 29484.579648: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49728   kworker/u17:2-23076 (23076) [000] d..2 29484.579655: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49729   kworker/u17:2-23076 (23076) [000] d..3 29484.579660: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49730   kworker/u17:2-23076 (23076) [000] d..2 29484.579676: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49731     kworker/0:0-13450 (13450) [000] d..2 29484.579684: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49732     kworker/0:0-13450 (13450) [000] d..3 29484.579693: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49733          <idle>-0     (-----) [001] .n.1 29484.579699: cpu_idle: state=4294967295 cpu_id=1
49734          <idle>-0     (-----) [001] d..2 29484.579705: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49735     kworker/0:0-13450 (13450) [000] d..2 29484.579708: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49736          <idle>-0     (-----) [000] d..1 29484.579716: cpu_idle: state=0 cpu_id=0
49737            adbd-23484 ( 1007) [001] d..2 29484.579718: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49738            adbd-23484 ( 1007) [001] d..3 29484.579726: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49739            adbd-23484 ( 1007) [001] d..2 29484.579773: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49740              ps-13726 (13726) [005] d..2 29484.579838: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49741              ps-13726 (13726) [005] dn.3 29484.579843: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49742              ps-13726 (13726) [005] d..2 29484.579847: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49743            adbd-1007  ( 1007) [001] d..1 29484.579847: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49744            adbd-1007  ( 1007) [001] d..2 29484.579859: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49745 shell svc 13722-13723 ( 1007) [005] d..2 29484.579861: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49746          <idle>-0     (-----) [000] .n.1 29484.579865: cpu_idle: state=4294967295 cpu_id=0
49747              ps-13726 (13726) [005] d..2 29484.579869: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49748          <idle>-0     (-----) [000] d..2 29484.579871: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49749              ps-13726 (13726) [005] dn.3 29484.579873: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49750              ps-13726 (13726) [005] d..2 29484.579875: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49751 shell svc 13722-13723 ( 1007) [005] d..2 29484.579885: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49752              ps-13726 (13726) [005] d..2 29484.579892: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49753              ps-13726 (13726) [005] dn.3 29484.579896: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49754            adbd-1007  ( 1007) [001] d..2 29484.579897: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49755              ps-13726 (13726) [005] d..2 29484.579899: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49756          <idle>-0     (-----) [001] d..1 29484.579904: cpu_idle: state=0 cpu_id=1
49757 shell svc 13722-13723 ( 1007) [005] d..2 29484.579909: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49758              ps-13726 (13726) [005] d..2 29484.579915: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49759              ps-13726 (13726) [005] dn.3 29484.579919: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49760            adbd-23485 ( 1007) [000] d..2 29484.579921: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49761              ps-13726 (13726) [005] d..2 29484.579921: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49762 shell svc 13722-13723 ( 1007) [005] d..2 29484.579932: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49763              ps-13726 (13726) [005] d..2 29484.579938: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49764          <idle>-0     (-----) [000] d.h4 29484.579939: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49765              ps-13726 (13726) [005] dn.3 29484.579941: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49766              ps-13726 (13726) [005] d..2 29484.579944: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49767          <idle>-0     (-----) [000] dnh5 29484.579945: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49768          <idle>-0     (-----) [000] d..2 29484.579953: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49769 shell svc 13722-13723 ( 1007) [005] d..2 29484.579954: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49770   kworker/u17:2-23076 (23076) [000] d..2 29484.579960: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49771              ps-13726 (13726) [005] d..2 29484.579961: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49772              ps-13726 (13726) [005] dn.3 29484.579964: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49773   kworker/u17:2-23076 (23076) [000] d..3 29484.579966: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49774              ps-13726 (13726) [005] d..2 29484.579967: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49775 shell svc 13722-13723 ( 1007) [005] d..2 29484.579977: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49776   kworker/u17:2-23076 (23076) [000] d..2 29484.579982: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49777     kworker/0:0-13450 (13450) [000] d..2 29484.579987: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49778     kworker/0:0-13450 (13450) [000] d..3 29484.579997: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49779     kworker/0:0-13450 (13450) [000] d..2 29484.580005: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49780            adbd-23485 ( 1007) [000] d..2 29484.580052: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49781          <idle>-0     (-----) [000] d..1 29484.580061: cpu_idle: state=0 cpu_id=0
49782              ps-13726 (13726) [005] d..2 29484.580078: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49783              ps-13726 (13726) [005] dn.3 29484.580083: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49784          <idle>-0     (-----) [000] d.h3 29484.580084: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49785              ps-13726 (13726) [005] d..2 29484.580087: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49786          <idle>-0     (-----) [000] dnh4 29484.580091: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49787          <idle>-0     (-----) [000] .n.1 29484.580097: cpu_idle: state=4294967295 cpu_id=0
49788 shell svc 13722-13723 ( 1007) [005] d..2 29484.580100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49789          <idle>-0     (-----) [000] d..2 29484.580104: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49790   kworker/u17:2-23076 (23076) [000] d..2 29484.580111: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49791   kworker/u17:2-23076 (23076) [000] d..3 29484.580117: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49792   kworker/u17:2-23076 (23076) [000] d..2 29484.580133: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49793     kworker/0:0-13450 (13450) [000] d..2 29484.580138: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49794     kworker/0:0-13450 (13450) [000] d..3 29484.580147: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49795     kworker/0:0-13450 (13450) [000] d..2 29484.580155: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49796            adbd-23485 ( 1007) [000] d..2 29484.580169: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49797          <idle>-0     (-----) [000] d..1 29484.580177: cpu_idle: state=0 cpu_id=0
49798          <idle>-0     (-----) [000] d.h3 29484.580242: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49799          <idle>-0     (-----) [000] dnh4 29484.580248: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49800          <idle>-0     (-----) [000] .n.1 29484.580253: cpu_idle: state=4294967295 cpu_id=0
49801          <idle>-0     (-----) [000] d..2 29484.580260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49802   kworker/u17:2-23076 (23076) [000] d..2 29484.580267: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49803              ps-13726 (13726) [005] d..2 29484.580271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49804   kworker/u17:2-23076 (23076) [000] d..3 29484.580273: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49805              ps-13726 (13726) [005] dn.3 29484.580275: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49806              ps-13726 (13726) [005] d..2 29484.580279: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49807   kworker/u17:2-23076 (23076) [000] d..2 29484.580290: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49808 shell svc 13722-13723 ( 1007) [005] d..2 29484.580292: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49809     kworker/0:0-13450 (13450) [000] d..2 29484.580298: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49810              ps-13726 (13726) [005] d..2 29484.580300: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49811              ps-13726 (13726) [005] dn.3 29484.580303: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49812              ps-13726 (13726) [005] d..2 29484.580306: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49813     kworker/0:0-13450 (13450) [000] d..3 29484.580307: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49814          <idle>-0     (-----) [001] .n.1 29484.580313: cpu_idle: state=4294967295 cpu_id=1
49815     kworker/0:0-13450 (13450) [000] d..2 29484.580317: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49816 shell svc 13722-13723 ( 1007) [005] d..2 29484.580317: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49817          <idle>-0     (-----) [001] d..2 29484.580319: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49818              ps-13726 (13726) [005] d..2 29484.580324: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49819          <idle>-0     (-----) [000] d..1 29484.580325: cpu_idle: state=0 cpu_id=0
49820              ps-13726 (13726) [005] dn.3 29484.580328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49821              ps-13726 (13726) [005] d..2 29484.580331: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49822            adbd-23484 ( 1007) [001] d..2 29484.580333: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49823            adbd-23484 ( 1007) [001] d..3 29484.580340: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49824 shell svc 13722-13723 ( 1007) [005] d..2 29484.580341: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49825            adbd-23484 ( 1007) [001] d..2 29484.580389: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49826              ps-13726 (13726) [005] d.s2 29484.580400: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
49827            adbd-1007  ( 1007) [001] d.s3 29484.580411: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
49828            adbd-1007  ( 1007) [001] dns4 29484.580425: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
49829            adbd-1007  ( 1007) [001] dnH4 29484.580430: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
49830            adbd-1007  ( 1007) [001] d..2 29484.580440: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49831     rcu_preempt-7     (    7) [001] d..2 29484.580447: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
49832              ps-13726 (13726) [005] d..2 29484.580467: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49833     rcu_preempt-7     (    7) [001] d..3 29484.580470: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
49834              ps-13726 (13726) [005] dn.3 29484.580472: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49835              ps-13726 (13726) [005] d..2 29484.580476: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49836     rcu_preempt-7     (    7) [001] d..2 29484.580478: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
49837 shell svc 13722-13723 ( 1007) [005] d..2 29484.580491: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49838  kworker/u16:10-23868 (23868) [001] .... 29484.580530: clk_set_rate: l3_cluster0_vote_clk 844800000
49839  kworker/u16:10-23868 (23868) [001] .... 29484.580571: clk_set_rate: l3_cluster1_vote_clk 1209600000
49840  kworker/u16:10-23868 (23868) [001] .... 29484.580574: clk_set_rate: l3_clk 1209600000
49841              ps-13726 (13726) [005] d..2 29484.580625: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49842              ps-13726 (13726) [005] dn.3 29484.580630: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49843              ps-13726 (13726) [005] d..2 29484.580634: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49844 shell svc 13722-13723 ( 1007) [005] d..2 29484.580647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49845              ps-13726 (13726) [005] d..2 29484.580654: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49846              ps-13726 (13726) [005] dn.3 29484.580658: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49847              ps-13726 (13726) [005] d..2 29484.580661: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49848 shell svc 13722-13723 ( 1007) [005] d..2 29484.580672: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49849  kworker/u16:10-23868 (23868) [001] d..2 29484.580714: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
49850         rcuop/4-45    (   45) [001] d..2 29484.580718: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
49851         rcuop/4-45    (   45) [001] d..3 29484.580729: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
49852         rcuop/4-45    (   45) [001] d..2 29484.580732: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
49853          <idle>-0     (-----) [003] d.s3 29484.580739: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
49854         rcuop/4-45    (   45) [001] d..3 29484.580740: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
49855         rcuop/4-45    (   45) [001] d..2 29484.580749: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
49856          <idle>-0     (-----) [003] d.s4 29484.580758: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
49857          <idle>-0     (-----) [003] dns4 29484.580762: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
49858          <idle>-0     (-----) [003] .n.1 29484.580767: cpu_idle: state=4294967295 cpu_id=3
49859          <idle>-0     (-----) [003] d..2 29484.580775: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
49860  kworker/u16:10-23868 (23868) [003] d..2 29484.580808: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
49861     rcu_preempt-7     (    7) [003] d..2 29484.580824: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49862          <idle>-0     (-----) [003] d..1 29484.580831: cpu_idle: state=0 cpu_id=3
49863              ps-13726 (13726) [005] d..2 29484.580851: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49864              ps-13726 (13726) [005] dn.3 29484.580856: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49865              ps-13726 (13726) [005] d..2 29484.580859: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49866 shell svc 13722-13723 ( 1007) [005] d..2 29484.580872: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49867              ps-13726 (13726) [005] d..2 29484.580879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49868              ps-13726 (13726) [005] dn.3 29484.580883: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49869              ps-13726 (13726) [005] d..2 29484.580885: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49870 shell svc 13722-13723 ( 1007) [005] d..2 29484.580896: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49871              ps-13726 (13726) [005] d..2 29484.580903: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49872              ps-13726 (13726) [005] dn.3 29484.580906: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49873              ps-13726 (13726) [005] d..2 29484.580908: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49874 shell svc 13722-13723 ( 1007) [005] d..2 29484.580919: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49875              ps-13726 (13726) [005] d..2 29484.580925: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49876              ps-13726 (13726) [005] dn.3 29484.580928: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49877              ps-13726 (13726) [005] d..2 29484.580930: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49878 shell svc 13722-13723 ( 1007) [005] d..2 29484.580940: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49879         rcuop/5-53    (   53) [001] d..2 29484.580994: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49880              ps-13726 (13726) [005] d..2 29484.581014: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49881              ps-13726 (13726) [005] dn.3 29484.581019: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49882              ps-13726 (13726) [005] d..2 29484.581022: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49883 shell svc 13722-13723 ( 1007) [005] d..2 29484.581035: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49884            adbd-1007  ( 1007) [001] d..1 29484.581077: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49885            adbd-1007  ( 1007) [001] d..2 29484.581092: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49886          <idle>-0     (-----) [000] .n.1 29484.581097: cpu_idle: state=4294967295 cpu_id=0
49887              ps-13726 (13726) [005] d..2 29484.581104: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49888          <idle>-0     (-----) [000] d..2 29484.581105: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49889              ps-13726 (13726) [005] dn.3 29484.581108: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49890              ps-13726 (13726) [005] d..2 29484.581111: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49891 shell svc 13722-13723 ( 1007) [005] d..2 29484.581124: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49892            adbd-1007  ( 1007) [001] d..2 29484.581130: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49893          <idle>-0     (-----) [001] d..1 29484.581140: cpu_idle: state=0 cpu_id=1
49894            adbd-23485 ( 1007) [000] d..2 29484.581154: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49895          <idle>-0     (-----) [000] d.h4 29484.581171: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49896          <idle>-0     (-----) [000] dnh5 29484.581180: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49897          <idle>-0     (-----) [000] d..2 29484.581189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49898              ps-13726 (13726) [005] d..2 29484.581191: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49899              ps-13726 (13726) [005] dn.3 29484.581195: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49900   kworker/u17:2-23076 (23076) [000] d..2 29484.581197: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49901              ps-13726 (13726) [005] d..2 29484.581198: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49902   kworker/u17:2-23076 (23076) [000] d..3 29484.581202: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49903 shell svc 13722-13723 ( 1007) [005] d..2 29484.581211: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49904   kworker/u17:2-23076 (23076) [000] d..2 29484.581218: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49905     kworker/0:0-13450 (13450) [000] d..2 29484.581223: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49906     kworker/0:0-13450 (13450) [000] d..3 29484.581232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49907     kworker/0:0-13450 (13450) [000] d..2 29484.581240: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49908            adbd-23485 ( 1007) [000] d..2 29484.581287: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49909          <idle>-0     (-----) [000] d..1 29484.581296: cpu_idle: state=0 cpu_id=0
49910          <idle>-0     (-----) [000] d.h3 29484.581314: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49911          <idle>-0     (-----) [000] dnh4 29484.581320: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49912              ps-13726 (13726) [005] d..2 29484.581322: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49913          <idle>-0     (-----) [000] .n.1 29484.581326: cpu_idle: state=4294967295 cpu_id=0
49914              ps-13726 (13726) [005] dn.3 29484.581327: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49915              ps-13726 (13726) [005] d..2 29484.581331: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49916          <idle>-0     (-----) [000] d..2 29484.581332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49917   kworker/u17:2-23076 (23076) [000] d..2 29484.581339: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49918 shell svc 13722-13723 ( 1007) [005] d..2 29484.581343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49919   kworker/u17:2-23076 (23076) [000] d..3 29484.581345: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49920              ps-13726 (13726) [005] d..2 29484.581351: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49921              ps-13726 (13726) [005] dn.3 29484.581354: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49922              ps-13726 (13726) [005] d..2 29484.581357: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49923   kworker/u17:2-23076 (23076) [000] d..2 29484.581361: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49924     kworker/0:0-13450 (13450) [000] d..2 29484.581366: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49925 shell svc 13722-13723 ( 1007) [005] d..2 29484.581368: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49926     kworker/0:0-13450 (13450) [000] d..3 29484.581375: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49927     kworker/0:0-13450 (13450) [000] d..2 29484.581383: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49928            adbd-23485 ( 1007) [000] d..2 29484.581402: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49929          <idle>-0     (-----) [000] d..1 29484.581410: cpu_idle: state=0 cpu_id=0
49930          <idle>-0     (-----) [000] d.h3 29484.581478: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49931          <idle>-0     (-----) [000] dnh4 29484.581484: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49932          <idle>-0     (-----) [000] .n.1 29484.581489: cpu_idle: state=4294967295 cpu_id=0
49933          <idle>-0     (-----) [000] d..2 29484.581495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49934   kworker/u17:2-23076 (23076) [000] d..2 29484.581504: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49935   kworker/u17:2-23076 (23076) [000] d..3 29484.581510: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49936              ps-13726 (13726) [005] d..2 29484.581518: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49937              ps-13726 (13726) [005] dn.3 29484.581523: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49938   kworker/u17:2-23076 (23076) [000] d..2 29484.581526: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49939              ps-13726 (13726) [005] d..2 29484.581526: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49940     kworker/0:0-13450 (13450) [000] d..2 29484.581533: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
49941 shell svc 13722-13723 ( 1007) [005] d..2 29484.581539: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49942     kworker/0:0-13450 (13450) [000] d..3 29484.581545: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
49943              ps-13726 (13726) [005] d..2 29484.581546: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49944              ps-13726 (13726) [005] dn.3 29484.581550: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49945          <idle>-0     (-----) [001] .n.1 29484.581551: cpu_idle: state=4294967295 cpu_id=1
49946              ps-13726 (13726) [005] d..2 29484.581553: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49947          <idle>-0     (-----) [001] d..2 29484.581558: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
49948     kworker/0:0-13450 (13450) [000] d..2 29484.581560: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49949 shell svc 13722-13723 ( 1007) [005] d..2 29484.581563: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49950          <idle>-0     (-----) [000] d..1 29484.581567: cpu_idle: state=0 cpu_id=0
49951              ps-13726 (13726) [005] d..2 29484.581570: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49952            adbd-23484 ( 1007) [001] d..2 29484.581571: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
49953              ps-13726 (13726) [005] dn.3 29484.581573: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49954              ps-13726 (13726) [005] d..2 29484.581575: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49955            adbd-23484 ( 1007) [001] d..3 29484.581579: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
49956 shell svc 13722-13723 ( 1007) [005] d..2 29484.581585: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49957            adbd-23484 ( 1007) [001] d..2 29484.581626: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
49958              ps-13726 (13726) [005] d..2 29484.581653: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49959              ps-13726 (13726) [005] dn.3 29484.581657: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49960              ps-13726 (13726) [005] d..2 29484.581660: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49961 shell svc 13722-13723 ( 1007) [005] d..2 29484.581673: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49962            adbd-1007  ( 1007) [001] d..1 29484.581693: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49963            adbd-1007  ( 1007) [001] d..2 29484.581705: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49964          <idle>-0     (-----) [000] .n.1 29484.581710: cpu_idle: state=4294967295 cpu_id=0
49965          <idle>-0     (-----) [000] d..2 29484.581716: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
49966            adbd-1007  ( 1007) [001] d..2 29484.581740: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49967          <idle>-0     (-----) [001] d..1 29484.581750: cpu_idle: state=0 cpu_id=1
49968            adbd-23485 ( 1007) [000] d..2 29484.581766: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49969          <idle>-0     (-----) [000] d..1 29484.581773: cpu_idle: state=0 cpu_id=0
49970          <idle>-0     (-----) [000] d.h3 29484.581791: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49971          <idle>-0     (-----) [000] dnh4 29484.581797: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49972          <idle>-0     (-----) [000] .n.1 29484.581803: cpu_idle: state=4294967295 cpu_id=0
49973          <idle>-0     (-----) [000] d..2 29484.581809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
49974   kworker/u17:2-23076 (23076) [000] d..2 29484.581817: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49975   kworker/u17:2-23076 (23076) [000] d..3 29484.581822: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
49976   kworker/u17:2-23076 (23076) [000] d..2 29484.581839: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
49977     kworker/0:0-13450 (13450) [000] d..2 29484.581844: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
49978     kworker/0:0-13450 (13450) [000] d..3 29484.581853: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
49979     kworker/0:0-13450 (13450) [000] d..2 29484.581862: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
49980              ps-13726 (13726) [005] d..2 29484.581873: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49981              ps-13726 (13726) [005] dn.3 29484.581877: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49982              ps-13726 (13726) [005] d..2 29484.581881: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49983 shell svc 13722-13723 ( 1007) [005] d..2 29484.581894: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49984              ps-13726 (13726) [005] d..2 29484.581901: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49985              ps-13726 (13726) [005] dn.3 29484.581904: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49986              ps-13726 (13726) [005] d..2 29484.581907: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49987            adbd-23485 ( 1007) [000] d..2 29484.581910: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49988          <idle>-0     (-----) [000] d..1 29484.581918: cpu_idle: state=0 cpu_id=0
49989 shell svc 13722-13723 ( 1007) [005] d..2 29484.581918: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49990              ps-13726 (13726) [005] d..2 29484.581925: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49991              ps-13726 (13726) [005] dn.3 29484.581928: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49992              ps-13726 (13726) [005] d..2 29484.581930: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
49993          <idle>-0     (-----) [000] d.h3 29484.581940: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49994 shell svc 13722-13723 ( 1007) [005] d..2 29484.581940: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
49995          <idle>-0     (-----) [000] dnh4 29484.581946: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
49996              ps-13726 (13726) [005] d..2 29484.581947: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49997              ps-13726 (13726) [005] dn.3 29484.581950: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
49998          <idle>-0     (-----) [000] .n.1 29484.581952: cpu_idle: state=4294967295 cpu_id=0
49999              ps-13726 (13726) [005] d..2 29484.581953: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50000          <idle>-0     (-----) [000] d..2 29484.581958: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50001 shell svc 13722-13723 ( 1007) [005] d..2 29484.581962: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50002   kworker/u17:2-23076 (23076) [000] d..2 29484.581966: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50003   kworker/u17:2-23076 (23076) [000] d..3 29484.581971: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50004   kworker/u17:2-23076 (23076) [000] d..2 29484.581988: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50005     kworker/0:0-13450 (13450) [000] d..2 29484.581992: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50006     kworker/0:0-13450 (13450) [000] d..3 29484.582001: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50007     kworker/0:0-13450 (13450) [000] d..2 29484.582010: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50008            adbd-23485 ( 1007) [000] d..2 29484.582028: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50009          <idle>-0     (-----) [000] d..1 29484.582035: cpu_idle: state=0 cpu_id=0
50010              ps-13726 (13726) [005] d..2 29484.582046: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50011              ps-13726 (13726) [005] dn.3 29484.582050: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50012              ps-13726 (13726) [005] d..2 29484.582053: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50013 shell svc 13722-13723 ( 1007) [005] d..2 29484.582066: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50014          <idle>-0     (-----) [000] d.h3 29484.582136: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50015          <idle>-0     (-----) [000] dnh4 29484.582142: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50016          <idle>-0     (-----) [000] .n.1 29484.582148: cpu_idle: state=4294967295 cpu_id=0
50017          <idle>-0     (-----) [000] d..2 29484.582154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50018   kworker/u17:2-23076 (23076) [000] d..2 29484.582161: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50019   kworker/u17:2-23076 (23076) [000] d..3 29484.582167: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50020   kworker/u17:2-23076 (23076) [000] d..2 29484.582183: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50021     kworker/0:0-13450 (13450) [000] d..2 29484.582189: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50022     kworker/0:0-13450 (13450) [000] d..3 29484.582198: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50023          <idle>-0     (-----) [001] .n.1 29484.582204: cpu_idle: state=4294967295 cpu_id=1
50024          <idle>-0     (-----) [001] d..2 29484.582212: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50025     kworker/0:0-13450 (13450) [000] d..2 29484.582213: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50026          <idle>-0     (-----) [000] d..1 29484.582221: cpu_idle: state=0 cpu_id=0
50027            adbd-23484 ( 1007) [001] d..2 29484.582223: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50028            adbd-23484 ( 1007) [001] d..3 29484.582231: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50029            adbd-23484 ( 1007) [001] d..2 29484.582277: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50030            adbd-1007  ( 1007) [001] d..1 29484.582340: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50031              ps-13726 (13726) [005] d..2 29484.582344: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50032              ps-13726 (13726) [005] dn.3 29484.582349: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50033              ps-13726 (13726) [005] d..2 29484.582353: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50034            adbd-1007  ( 1007) [001] d..2 29484.582353: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50035          <idle>-0     (-----) [000] .n.1 29484.582359: cpu_idle: state=4294967295 cpu_id=0
50036          <idle>-0     (-----) [000] d..2 29484.582365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50037 shell svc 13722-13723 ( 1007) [005] d..2 29484.582367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50038              ps-13726 (13726) [005] d..2 29484.582374: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50039              ps-13726 (13726) [005] dn.3 29484.582378: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50040              ps-13726 (13726) [005] d..2 29484.582380: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50041            adbd-1007  ( 1007) [001] d..2 29484.582388: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50042 shell svc 13722-13723 ( 1007) [005] d..2 29484.582391: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50043          <idle>-0     (-----) [001] d..1 29484.582398: cpu_idle: state=0 cpu_id=1
50044              ps-13726 (13726) [005] d..2 29484.582398: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50045              ps-13726 (13726) [005] dn.3 29484.582401: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50046              ps-13726 (13726) [005] d..2 29484.582404: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50047            adbd-23485 ( 1007) [000] d..2 29484.582413: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50048 shell svc 13722-13723 ( 1007) [005] d..2 29484.582414: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50049              ps-13726 (13726) [005] d..2 29484.582420: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50050          <idle>-0     (-----) [000] d..1 29484.582421: cpu_idle: state=0 cpu_id=0
50051              ps-13726 (13726) [005] dn.3 29484.582423: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50052              ps-13726 (13726) [005] d..2 29484.582426: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50053 shell svc 13722-13723 ( 1007) [005] d..2 29484.582436: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50054          <idle>-0     (-----) [000] d.h3 29484.582439: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50055              ps-13726 (13726) [005] d..2 29484.582443: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50056          <idle>-0     (-----) [000] dnh4 29484.582445: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50057              ps-13726 (13726) [005] dn.3 29484.582445: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50058              ps-13726 (13726) [005] d..2 29484.582448: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50059          <idle>-0     (-----) [000] .n.1 29484.582452: cpu_idle: state=4294967295 cpu_id=0
50060 shell svc 13722-13723 ( 1007) [005] d..2 29484.582457: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50061          <idle>-0     (-----) [000] d..2 29484.582459: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50062              ps-13726 (13726) [005] d..2 29484.582464: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50063   kworker/u17:2-23076 (23076) [000] d..2 29484.582466: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50064              ps-13726 (13726) [005] dn.3 29484.582467: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50065              ps-13726 (13726) [005] d..2 29484.582470: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50066   kworker/u17:2-23076 (23076) [000] d..3 29484.582472: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50067 shell svc 13722-13723 ( 1007) [005] d..2 29484.582479: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50068   kworker/u17:2-23076 (23076) [000] d..2 29484.582489: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50069     kworker/0:0-13450 (13450) [000] d..2 29484.582494: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50070     kworker/0:0-13450 (13450) [000] d..3 29484.582502: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50071     kworker/0:0-13450 (13450) [000] d..2 29484.582511: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50072            adbd-23485 ( 1007) [000] d..2 29484.582558: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50073          <idle>-0     (-----) [000] d..1 29484.582566: cpu_idle: state=0 cpu_id=0
50074          <idle>-0     (-----) [000] d.h3 29484.582583: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50075          <idle>-0     (-----) [000] dnh4 29484.582590: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50076          <idle>-0     (-----) [000] .n.1 29484.582596: cpu_idle: state=4294967295 cpu_id=0
50077          <idle>-0     (-----) [000] d..2 29484.582602: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50078   kworker/u17:2-23076 (23076) [000] d..2 29484.582609: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50079   kworker/u17:2-23076 (23076) [000] d..3 29484.582614: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50080   kworker/u17:2-23076 (23076) [000] d..2 29484.582631: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50081     kworker/0:0-13450 (13450) [000] d..2 29484.582637: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50082     kworker/0:0-13450 (13450) [000] d..3 29484.582645: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50083     kworker/0:0-13450 (13450) [000] d..2 29484.582654: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50084            adbd-23485 ( 1007) [000] d..2 29484.582671: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50085          <idle>-0     (-----) [000] d..1 29484.582679: cpu_idle: state=0 cpu_id=0
50086          <idle>-0     (-----) [000] d.h3 29484.582756: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50087          <idle>-0     (-----) [000] dnh4 29484.582762: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50088          <idle>-0     (-----) [000] .n.1 29484.582767: cpu_idle: state=4294967295 cpu_id=0
50089          <idle>-0     (-----) [000] d..2 29484.582773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50090   kworker/u17:2-23076 (23076) [000] d..2 29484.582782: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50091   kworker/u17:2-23076 (23076) [000] d..3 29484.582787: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50092   kworker/u17:2-23076 (23076) [000] d..2 29484.582803: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50093     kworker/0:0-13450 (13450) [000] d..2 29484.582810: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50094     kworker/0:0-13450 (13450) [000] d..3 29484.582819: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50095          <idle>-0     (-----) [001] .n.1 29484.582824: cpu_idle: state=4294967295 cpu_id=1
50096          <idle>-0     (-----) [001] d..2 29484.582832: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50097     kworker/0:0-13450 (13450) [000] d..2 29484.582833: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50098          <idle>-0     (-----) [000] d..1 29484.582841: cpu_idle: state=0 cpu_id=0
50099            adbd-23484 ( 1007) [001] d..2 29484.582843: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50100            adbd-23484 ( 1007) [001] d..3 29484.582850: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50101              ps-13726 (13726) [005] d..2 29484.582854: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50102              ps-13726 (13726) [005] dn.3 29484.582859: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50103              ps-13726 (13726) [005] d..2 29484.582862: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50104 shell svc 13722-13723 ( 1007) [005] d..2 29484.582875: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50105              ps-13726 (13726) [005] d..2 29484.582883: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50106              ps-13726 (13726) [005] dn.3 29484.582886: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50107              ps-13726 (13726) [005] d..2 29484.582889: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50108            adbd-23484 ( 1007) [001] d..2 29484.582896: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50109 shell svc 13722-13723 ( 1007) [005] d..2 29484.582900: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50110              ps-13726 (13726) [005] d..2 29484.582906: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50111              ps-13726 (13726) [005] dn.3 29484.582909: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50112              ps-13726 (13726) [005] d..2 29484.582912: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50113 shell svc 13722-13723 ( 1007) [005] d..2 29484.582923: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50114              ps-13726 (13726) [005] d..2 29484.582929: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50115              ps-13726 (13726) [005] dn.3 29484.582932: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50116              ps-13726 (13726) [005] d..2 29484.582935: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50117 shell svc 13722-13723 ( 1007) [005] d..2 29484.582945: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50118              ps-13726 (13726) [005] d..2 29484.582954: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50119              ps-13726 (13726) [005] dn.3 29484.582957: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50120              ps-13726 (13726) [005] d..2 29484.582959: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50121            adbd-1007  ( 1007) [001] d..1 29484.582967: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50122 shell svc 13722-13723 ( 1007) [005] d..2 29484.582970: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50123              ps-13726 (13726) [005] d..2 29484.582977: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50124            adbd-1007  ( 1007) [001] d..2 29484.582979: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50125              ps-13726 (13726) [005] dn.3 29484.582980: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50126              ps-13726 (13726) [005] d..2 29484.582983: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50127          <idle>-0     (-----) [000] .n.1 29484.582984: cpu_idle: state=4294967295 cpu_id=0
50128          <idle>-0     (-----) [000] d..2 29484.582990: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50129 shell svc 13722-13723 ( 1007) [005] d..2 29484.582993: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50130              ps-13726 (13726) [005] d..2 29484.582999: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50131              ps-13726 (13726) [005] dn.3 29484.583002: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50132              ps-13726 (13726) [005] d..2 29484.583004: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50133 shell svc 13722-13723 ( 1007) [005] d..2 29484.583014: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50134            adbd-1007  ( 1007) [001] d..2 29484.583015: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50135              ps-13726 (13726) [005] d..2 29484.583020: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50136              ps-13726 (13726) [005] dn.3 29484.583023: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50137          <idle>-0     (-----) [001] d..1 29484.583024: cpu_idle: state=0 cpu_id=1
50138              ps-13726 (13726) [005] d..2 29484.583026: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50139 shell svc 13722-13723 ( 1007) [005] d..2 29484.583035: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50140            adbd-23485 ( 1007) [000] d..2 29484.583039: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50141              ps-13726 (13726) [005] d..2 29484.583042: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50142              ps-13726 (13726) [005] dn.3 29484.583045: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50143          <idle>-0     (-----) [000] d..1 29484.583046: cpu_idle: state=0 cpu_id=0
50144              ps-13726 (13726) [005] d..2 29484.583048: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50145 shell svc 13722-13723 ( 1007) [005] d..2 29484.583057: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50146          <idle>-0     (-----) [000] d.h3 29484.583064: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50147          <idle>-0     (-----) [000] dnh4 29484.583070: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50148          <idle>-0     (-----) [000] .n.1 29484.583076: cpu_idle: state=4294967295 cpu_id=0
50149          <idle>-0     (-----) [000] d..2 29484.583082: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50150   kworker/u17:2-23076 (23076) [000] d..2 29484.583089: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50151   kworker/u17:2-23076 (23076) [000] d..3 29484.583094: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50152   kworker/u17:2-23076 (23076) [000] d..2 29484.583111: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50153     kworker/0:0-13450 (13450) [000] d..2 29484.583116: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50154     kworker/0:0-13450 (13450) [000] d..3 29484.583125: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50155     kworker/0:0-13450 (13450) [000] d..2 29484.583133: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50156            adbd-23485 ( 1007) [000] d..2 29484.583180: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50157          <idle>-0     (-----) [000] d..1 29484.583188: cpu_idle: state=0 cpu_id=0
50158              ps-13726 (13726) [005] d..2 29484.583204: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50159          <idle>-0     (-----) [000] d.h3 29484.583206: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50160              ps-13726 (13726) [005] dn.3 29484.583208: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50161              ps-13726 (13726) [005] d..2 29484.583212: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50162          <idle>-0     (-----) [000] dnh4 29484.583215: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50163          <idle>-0     (-----) [000] .n.1 29484.583221: cpu_idle: state=4294967295 cpu_id=0
50164 shell svc 13722-13723 ( 1007) [005] d..2 29484.583224: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50165          <idle>-0     (-----) [000] d..2 29484.583227: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50166              ps-13726 (13726) [005] d..2 29484.583232: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50167   kworker/u17:2-23076 (23076) [000] d..2 29484.583234: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50168              ps-13726 (13726) [005] dn.3 29484.583236: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50169              ps-13726 (13726) [005] d..2 29484.583239: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50170   kworker/u17:2-23076 (23076) [000] d..3 29484.583239: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50171 shell svc 13722-13723 ( 1007) [005] d..2 29484.583249: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50172   kworker/u17:2-23076 (23076) [000] d..2 29484.583256: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50173              ps-13726 (13726) [005] d..2 29484.583256: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50174              ps-13726 (13726) [005] dn.3 29484.583259: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50175     kworker/0:0-13450 (13450) [000] d..2 29484.583261: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50176              ps-13726 (13726) [005] d..2 29484.583262: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50177     kworker/0:0-13450 (13450) [000] d..3 29484.583270: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50178 shell svc 13722-13723 ( 1007) [005] d..2 29484.583272: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50179     kworker/0:0-13450 (13450) [000] d..2 29484.583279: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50180            adbd-23485 ( 1007) [000] d..2 29484.583296: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50181          <idle>-0     (-----) [000] d..1 29484.583304: cpu_idle: state=0 cpu_id=0
50182              ps-13726 (13726) [005] d..2 29484.583335: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50183              ps-13726 (13726) [005] dn.3 29484.583341: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50184              ps-13726 (13726) [005] d..2 29484.583344: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50185 shell svc 13722-13723 ( 1007) [005] d..2 29484.583357: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50186          <idle>-0     (-----) [000] d.h3 29484.583429: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50187          <idle>-0     (-----) [000] dnh4 29484.583434: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50188          <idle>-0     (-----) [000] .n.1 29484.583440: cpu_idle: state=4294967295 cpu_id=0
50189          <idle>-0     (-----) [000] d..2 29484.583446: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50190   kworker/u17:2-23076 (23076) [000] d..2 29484.583453: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50191   kworker/u17:2-23076 (23076) [000] d..3 29484.583458: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50192   kworker/u17:2-23076 (23076) [000] d..2 29484.583476: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50193     kworker/0:0-13450 (13450) [000] d..2 29484.583483: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50194     kworker/0:0-13450 (13450) [000] d..3 29484.583492: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50195          <idle>-0     (-----) [001] .n.1 29484.583498: cpu_idle: state=4294967295 cpu_id=1
50196          <idle>-0     (-----) [001] d..2 29484.583507: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50197     kworker/0:0-13450 (13450) [000] d..2 29484.583507: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50198          <idle>-0     (-----) [000] d..1 29484.583515: cpu_idle: state=0 cpu_id=0
50199            adbd-23484 ( 1007) [001] d..2 29484.583519: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50200            adbd-23484 ( 1007) [001] d..3 29484.583526: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50201              ps-13726 (13726) [005] d..2 29484.583574: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50202            adbd-23484 ( 1007) [001] d..2 29484.583575: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50203              ps-13726 (13726) [005] dn.3 29484.583579: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50204              ps-13726 (13726) [005] d..2 29484.583582: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50205 shell svc 13722-13723 ( 1007) [005] d..2 29484.583595: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50206              ps-13726 (13726) [005] d..2 29484.583603: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50207              ps-13726 (13726) [005] dn.3 29484.583606: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50208              ps-13726 (13726) [005] d..2 29484.583608: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50209 shell svc 13722-13723 ( 1007) [005] d..2 29484.583619: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50210              ps-13726 (13726) [005] d..2 29484.583625: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50211              ps-13726 (13726) [005] dn.3 29484.583628: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50212              ps-13726 (13726) [005] d..2 29484.583631: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50213 shell svc 13722-13723 ( 1007) [005] d..2 29484.583641: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50214            adbd-1007  ( 1007) [001] d..1 29484.583646: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50215              ps-13726 (13726) [005] d..2 29484.583648: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50216              ps-13726 (13726) [005] dn.3 29484.583651: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50217              ps-13726 (13726) [005] d..2 29484.583654: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50218            adbd-1007  ( 1007) [001] d..2 29484.583662: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50219 shell svc 13722-13723 ( 1007) [005] d..2 29484.583664: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50220          <idle>-0     (-----) [000] .n.1 29484.583667: cpu_idle: state=4294967295 cpu_id=0
50221              ps-13726 (13726) [005] d..2 29484.583671: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50222          <idle>-0     (-----) [000] d..2 29484.583673: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50223              ps-13726 (13726) [005] dn.3 29484.583674: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50224              ps-13726 (13726) [005] d..2 29484.583677: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50225 shell svc 13722-13723 ( 1007) [005] d..2 29484.583687: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50226            adbd-1007  ( 1007) [001] d..2 29484.583697: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50227          <idle>-0     (-----) [001] d..1 29484.583707: cpu_idle: state=0 cpu_id=1
50228            adbd-23485 ( 1007) [000] d..2 29484.583721: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50229          <idle>-0     (-----) [000] d.h4 29484.583739: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50230          <idle>-0     (-----) [000] dnh5 29484.583746: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50231              ps-13726 (13726) [005] d..2 29484.583776: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50232          <idle>-0     (-----) [000] d..2 29484.583779: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50233              ps-13726 (13726) [005] dn.3 29484.583781: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50234              ps-13726 (13726) [005] d..2 29484.583784: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50235   kworker/u17:2-23076 (23076) [000] d..2 29484.583786: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50236   kworker/u17:2-23076 (23076) [000] d..3 29484.583792: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50237 shell svc 13722-13723 ( 1007) [005] d..2 29484.583797: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50238   kworker/u17:2-23076 (23076) [000] d..2 29484.583809: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50239     kworker/0:0-13450 (13450) [000] d..2 29484.583814: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50240     kworker/0:0-13450 (13450) [000] d..3 29484.583823: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50241     kworker/0:0-13450 (13450) [000] d..2 29484.583832: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50242            adbd-23485 ( 1007) [000] d..2 29484.583883: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50243          <idle>-0     (-----) [000] d.h4 29484.583900: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50244              ps-13726 (13726) [005] d..2 29484.583902: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50245          <idle>-0     (-----) [000] dnh5 29484.583906: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50246              ps-13726 (13726) [005] dn.3 29484.583906: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50247              ps-13726 (13726) [005] d..2 29484.583910: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50248          <idle>-0     (-----) [000] d..2 29484.583914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50249   kworker/u17:2-23076 (23076) [000] d..2 29484.583921: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50250 shell svc 13722-13723 ( 1007) [005] d..2 29484.583923: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50251   kworker/u17:2-23076 (23076) [000] d..3 29484.583927: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50252              ps-13726 (13726) [005] d..2 29484.583930: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50253              ps-13726 (13726) [005] dn.3 29484.583934: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50254              ps-13726 (13726) [005] d..2 29484.583936: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50255   kworker/u17:2-23076 (23076) [000] d..2 29484.583943: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50256 shell svc 13722-13723 ( 1007) [005] d..2 29484.583948: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50257     kworker/0:0-13450 (13450) [000] d..2 29484.583949: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50258     kworker/0:0-13450 (13450) [000] d..3 29484.583958: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50259     kworker/0:0-13450 (13450) [000] d..2 29484.583966: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50260            adbd-23485 ( 1007) [000] d..2 29484.583979: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50261          <idle>-0     (-----) [000] d..1 29484.583989: cpu_idle: state=0 cpu_id=0
50262              ps-13726 (13726) [005] d..2 29484.584019: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50263              ps-13726 (13726) [005] dn.3 29484.584024: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50264              ps-13726 (13726) [005] d..2 29484.584028: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50265 shell svc 13722-13723 ( 1007) [005] d..2 29484.584040: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50266          <idle>-0     (-----) [000] d.h3 29484.584100: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50267          <idle>-0     (-----) [000] dnh4 29484.584106: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50268          <idle>-0     (-----) [000] .n.1 29484.584111: cpu_idle: state=4294967295 cpu_id=0
50269          <idle>-0     (-----) [000] d..2 29484.584118: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50270   kworker/u17:2-23076 (23076) [000] d..2 29484.584124: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50271   kworker/u17:2-23076 (23076) [000] d..3 29484.584129: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50272   kworker/u17:2-23076 (23076) [000] d..2 29484.584146: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50273     kworker/0:0-13450 (13450) [000] d..2 29484.584152: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50274     kworker/0:0-13450 (13450) [000] d..3 29484.584164: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50275          <idle>-0     (-----) [001] .n.1 29484.584169: cpu_idle: state=4294967295 cpu_id=1
50276          <idle>-0     (-----) [001] d..2 29484.584177: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50277     kworker/0:0-13450 (13450) [000] d..2 29484.584179: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50278          <idle>-0     (-----) [000] d..1 29484.584186: cpu_idle: state=0 cpu_id=0
50279            adbd-23484 ( 1007) [001] d..2 29484.584189: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50280            adbd-23484 ( 1007) [001] d..3 29484.584197: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50281            adbd-23484 ( 1007) [001] d..2 29484.584242: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50282            adbd-1007  ( 1007) [001] d..1 29484.584306: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50283            adbd-1007  ( 1007) [001] d..2 29484.584318: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50284          <idle>-0     (-----) [000] .n.1 29484.584324: cpu_idle: state=4294967295 cpu_id=0
50285          <idle>-0     (-----) [000] d..2 29484.584330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50286            adbd-1007  ( 1007) [001] d..2 29484.584354: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50287          <idle>-0     (-----) [001] d..1 29484.584363: cpu_idle: state=0 cpu_id=1
50288            adbd-23485 ( 1007) [000] d..2 29484.584380: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50289          <idle>-0     (-----) [000] d.h4 29484.584397: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50290          <idle>-0     (-----) [000] dnh5 29484.584403: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50291          <idle>-0     (-----) [000] d..2 29484.584411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50292   kworker/u17:2-23076 (23076) [000] d..2 29484.584419: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50293   kworker/u17:2-23076 (23076) [000] d..3 29484.584424: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50294   kworker/u17:2-23076 (23076) [000] d..2 29484.584440: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50295     kworker/0:0-13450 (13450) [000] d..2 29484.584445: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50296     kworker/0:0-13450 (13450) [000] d..3 29484.584453: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50297     kworker/0:0-13450 (13450) [000] d..2 29484.584462: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50298            adbd-23485 ( 1007) [000] d..2 29484.584507: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50299          <idle>-0     (-----) [000] d.h4 29484.584524: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50300          <idle>-0     (-----) [000] dnh5 29484.584530: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50301          <idle>-0     (-----) [000] d..2 29484.584538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50302   kworker/u17:2-23076 (23076) [000] d..2 29484.584546: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50303   kworker/u17:2-23076 (23076) [000] d..3 29484.584551: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50304   kworker/u17:2-23076 (23076) [000] d..2 29484.584567: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50305     kworker/0:0-13450 (13450) [000] d..2 29484.584572: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50306     kworker/0:0-13450 (13450) [000] d..3 29484.584581: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50307     kworker/0:0-13450 (13450) [000] d..2 29484.584589: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50308            adbd-23485 ( 1007) [000] d..2 29484.584602: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50309          <idle>-0     (-----) [000] d..1 29484.584611: cpu_idle: state=0 cpu_id=0
50310          <idle>-0     (-----) [000] d.h3 29484.584725: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50311          <idle>-0     (-----) [000] dnh4 29484.584731: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50312          <idle>-0     (-----) [000] .n.1 29484.584736: cpu_idle: state=4294967295 cpu_id=0
50313          <idle>-0     (-----) [000] d..2 29484.584743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50314   kworker/u17:2-23076 (23076) [000] d..2 29484.584751: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50315   kworker/u17:2-23076 (23076) [000] d..3 29484.584756: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50316   kworker/u17:2-23076 (23076) [000] d..2 29484.584773: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50317     kworker/0:0-13450 (13450) [000] d..2 29484.584780: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50318     kworker/0:0-13450 (13450) [000] d..3 29484.584790: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50319          <idle>-0     (-----) [001] .n.1 29484.584796: cpu_idle: state=4294967295 cpu_id=1
50320          <idle>-0     (-----) [001] d..2 29484.584803: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50321     kworker/0:0-13450 (13450) [000] d..2 29484.584804: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50322          <idle>-0     (-----) [000] d..1 29484.584812: cpu_idle: state=0 cpu_id=0
50323            adbd-23484 ( 1007) [001] d..2 29484.584814: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50324            adbd-23484 ( 1007) [001] d..3 29484.584822: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50325            adbd-23484 ( 1007) [001] d..2 29484.584868: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50326            adbd-1007  ( 1007) [001] d..2 29484.584929: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50327          <idle>-0     (-----) [001] d..1 29484.584940: cpu_idle: state=0 cpu_id=1
50328              ps-13726 (13726) [005] d..2 29484.585057: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50329              ps-13726 (13726) [005] dn.3 29484.585062: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50330              ps-13726 (13726) [005] d..2 29484.585065: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50331 shell svc 13722-13723 ( 1007) [005] d..2 29484.585074: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50332 shell svc 13722-13723 ( 1007) [005] d..2 29484.585099: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50333          <idle>-0     (-----) [000] dnh2 29484.585101: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
50334          <idle>-0     (-----) [000] .n.1 29484.585106: cpu_idle: state=4294967295 cpu_id=0
50335              ps-13726 (13726) [005] d..2 29484.585107: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50336              ps-13726 (13726) [005] dn.3 29484.585110: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50337          <idle>-0     (-----) [000] d..2 29484.585112: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
50338              ps-13726 (13726) [005] d..2 29484.585113: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50339 shell svc 13722-13723 ( 1007) [005] d..2 29484.585125: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50340              ps-13726 (13726) [005] d..2 29484.585132: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50341              ps-13726 (13726) [005] dn.3 29484.585135: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50342              ps-13726 (13726) [005] d..2 29484.585137: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50343 shell svc 13722-13723 ( 1007) [005] d..2 29484.585147: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50344              ps-13726 (13726) [005] d..2 29484.585154: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50345              ps-13726 (13726) [005] dn.3 29484.585157: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50346              ps-13726 (13726) [005] d..2 29484.585160: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50347 shell svc 13722-13723 ( 1007) [005] d..2 29484.585170: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50348            adbd-1007  ( 1007) [000] d..1 29484.585172: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50349              ps-13726 (13726) [005] d..2 29484.585176: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50350              ps-13726 (13726) [005] dn.3 29484.585180: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50351              ps-13726 (13726) [005] d..2 29484.585182: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50352            adbd-1007  ( 1007) [000] d..2 29484.585192: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
50353 shell svc 13722-13723 ( 1007) [005] d..2 29484.585192: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50354          <idle>-0     (-----) [001] .n.1 29484.585197: cpu_idle: state=4294967295 cpu_id=1
50355              ps-13726 (13726) [005] d..2 29484.585198: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50356              ps-13726 (13726) [005] dn.3 29484.585201: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50357              ps-13726 (13726) [005] d..2 29484.585204: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50358          <idle>-0     (-----) [001] d..2 29484.585204: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50359 shell svc 13722-13723 ( 1007) [005] d..2 29484.585214: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50360              ps-13726 (13726) [005] d..2 29484.585219: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50361              ps-13726 (13726) [005] dn.3 29484.585222: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50362              ps-13726 (13726) [005] d..2 29484.585225: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50363            adbd-1007  ( 1007) [000] d..2 29484.585230: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50364 shell svc 13722-13723 ( 1007) [005] d..2 29484.585234: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50365          <idle>-0     (-----) [000] d..1 29484.585239: cpu_idle: state=0 cpu_id=0
50366              ps-13726 (13726) [005] d..2 29484.585241: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50367              ps-13726 (13726) [005] dn.3 29484.585244: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50368              ps-13726 (13726) [005] d..2 29484.585246: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50369            adbd-23485 ( 1007) [001] d..2 29484.585254: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50370 shell svc 13722-13723 ( 1007) [005] d..2 29484.585256: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50371          <idle>-0     (-----) [001] d..1 29484.585262: cpu_idle: state=0 cpu_id=1
50372              ps-13726 (13726) [005] d..2 29484.585263: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50373              ps-13726 (13726) [005] dn.3 29484.585266: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50374              ps-13726 (13726) [005] d..2 29484.585268: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50375          <idle>-0     (-----) [000] d.h3 29484.585268: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50376 shell svc 13722-13723 ( 1007) [005] d..2 29484.585278: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50377          <idle>-0     (-----) [000] dnh4 29484.585278: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50378              ps-13726 (13726) [005] d..2 29484.585284: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50379          <idle>-0     (-----) [000] .n.1 29484.585284: cpu_idle: state=4294967295 cpu_id=0
50380              ps-13726 (13726) [005] dn.3 29484.585287: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50381              ps-13726 (13726) [005] d..2 29484.585290: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50382          <idle>-0     (-----) [000] d..2 29484.585291: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50383 shell svc 13722-13723 ( 1007) [005] d..2 29484.585299: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50384   kworker/u17:2-23076 (23076) [000] d..2 29484.585300: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50385              ps-13726 (13726) [005] d..2 29484.585305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50386   kworker/u17:2-23076 (23076) [000] d..3 29484.585306: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50387              ps-13726 (13726) [005] dn.3 29484.585308: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50388              ps-13726 (13726) [005] d..2 29484.585311: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50389 shell svc 13722-13723 ( 1007) [005] d..2 29484.585320: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50390   kworker/u17:2-23076 (23076) [000] d..2 29484.585323: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50391              ps-13726 (13726) [005] d..2 29484.585326: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50392     kworker/0:0-13450 (13450) [000] d..2 29484.585329: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
50393              ps-13726 (13726) [005] dn.3 29484.585329: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50394              ps-13726 (13726) [005] d..2 29484.585332: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50395     kworker/0:0-13450 (13450) [000] d..3 29484.585339: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
50396 shell svc 13722-13723 ( 1007) [005] d..2 29484.585341: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50397          <idle>-0     (-----) [001] .n.1 29484.585344: cpu_idle: state=4294967295 cpu_id=1
50398              ps-13726 (13726) [005] d..2 29484.585348: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50399              ps-13726 (13726) [005] dn.3 29484.585351: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50400          <idle>-0     (-----) [001] d..2 29484.585352: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50401     kworker/0:0-13450 (13450) [000] d..2 29484.585353: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50402              ps-13726 (13726) [005] d..2 29484.585354: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50403          <idle>-0     (-----) [000] d..1 29484.585360: cpu_idle: state=0 cpu_id=0
50404 shell svc 13722-13723 ( 1007) [005] d..2 29484.585363: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50405              ps-13726 (13726) [005] d..2 29484.585370: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50406              ps-13726 (13726) [005] dn.3 29484.585373: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50407              ps-13726 (13726) [005] d..2 29484.585375: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50408 shell svc 13722-13723 ( 1007) [005] d..2 29484.585385: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50409              ps-13726 (13726) [005] d..2 29484.585392: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50410              ps-13726 (13726) [005] dn.3 29484.585395: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50411              ps-13726 (13726) [005] d..2 29484.585397: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50412            adbd-23485 ( 1007) [001] d..2 29484.585399: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50413          <idle>-0     (-----) [001] d..1 29484.585406: cpu_idle: state=0 cpu_id=1
50414 shell svc 13722-13723 ( 1007) [005] d..2 29484.585407: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50415              ps-13726 (13726) [005] d..2 29484.585413: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50416              ps-13726 (13726) [005] dn.3 29484.585416: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50417          <idle>-0     (-----) [000] d.h3 29484.585416: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50418              ps-13726 (13726) [005] d..2 29484.585419: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50419          <idle>-0     (-----) [000] dnh4 29484.585423: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50420          <idle>-0     (-----) [000] .n.1 29484.585428: cpu_idle: state=4294967295 cpu_id=0
50421 shell svc 13722-13723 ( 1007) [005] d..2 29484.585428: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50422          <idle>-0     (-----) [000] d..2 29484.585434: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50423              ps-13726 (13726) [005] d..2 29484.585435: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50424              ps-13726 (13726) [005] dn.3 29484.585438: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50425              ps-13726 (13726) [005] d..2 29484.585441: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50426   kworker/u17:2-23076 (23076) [000] d..2 29484.585442: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50427   kworker/u17:2-23076 (23076) [000] d..3 29484.585447: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50428 shell svc 13722-13723 ( 1007) [005] d..2 29484.585451: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50429              ps-13726 (13726) [005] d..2 29484.585457: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50430              ps-13726 (13726) [005] dn.3 29484.585460: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50431              ps-13726 (13726) [005] d..2 29484.585463: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50432   kworker/u17:2-23076 (23076) [000] d..2 29484.585464: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50433     kworker/0:0-13450 (13450) [000] d..2 29484.585471: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
50434 shell svc 13722-13723 ( 1007) [005] d..2 29484.585473: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50435              ps-13726 (13726) [005] d..2 29484.585479: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50436     kworker/0:0-13450 (13450) [000] d..3 29484.585481: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
50437              ps-13726 (13726) [005] dn.3 29484.585482: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50438              ps-13726 (13726) [005] d..2 29484.585485: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50439          <idle>-0     (-----) [001] .n.1 29484.585485: cpu_idle: state=4294967295 cpu_id=1
50440          <idle>-0     (-----) [001] d..2 29484.585493: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50441     kworker/0:0-13450 (13450) [000] d..2 29484.585495: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50442 shell svc 13722-13723 ( 1007) [005] d..2 29484.585495: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50443              ps-13726 (13726) [005] d..2 29484.585501: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50444          <idle>-0     (-----) [000] d..1 29484.585502: cpu_idle: state=0 cpu_id=0
50445              ps-13726 (13726) [005] dn.3 29484.585504: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50446              ps-13726 (13726) [005] d..2 29484.585507: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50447            adbd-23485 ( 1007) [001] d..2 29484.585510: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50448 shell svc 13722-13723 ( 1007) [005] d..2 29484.585516: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50449          <idle>-0     (-----) [001] d..1 29484.585518: cpu_idle: state=0 cpu_id=1
50450              ps-13726 (13726) [005] d..2 29484.585523: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50451              ps-13726 (13726) [005] dn.3 29484.585526: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50452              ps-13726 (13726) [005] d..2 29484.585529: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50453 shell svc 13722-13723 ( 1007) [005] d..2 29484.585538: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50454              ps-13726 (13726) [005] d..2 29484.585545: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50455              ps-13726 (13726) [005] dn.3 29484.585548: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50456              ps-13726 (13726) [005] d..2 29484.585550: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50457 shell svc 13722-13723 ( 1007) [005] d..2 29484.585560: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50458              ps-13726 (13726) [005] d..2 29484.585566: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50459              ps-13726 (13726) [005] dn.3 29484.585569: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50460              ps-13726 (13726) [005] d..2 29484.585572: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50461 shell svc 13722-13723 ( 1007) [005] d..2 29484.585581: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50462              ps-13726 (13726) [005] d..2 29484.585587: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50463              ps-13726 (13726) [005] dn.3 29484.585590: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50464              ps-13726 (13726) [005] d..2 29484.585593: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50465 shell svc 13722-13723 ( 1007) [005] d..2 29484.585602: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50466              ps-13726 (13726) [005] d..2 29484.585609: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50467              ps-13726 (13726) [005] dn.3 29484.585612: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50468              ps-13726 (13726) [005] d..2 29484.585614: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50469 shell svc 13722-13723 ( 1007) [005] d..2 29484.585624: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50470          <idle>-0     (-----) [000] d.h3 29484.585624: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50471          <idle>-0     (-----) [000] dnh4 29484.585630: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50472              ps-13726 (13726) [005] d..2 29484.585630: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50473              ps-13726 (13726) [005] dn.3 29484.585633: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50474          <idle>-0     (-----) [000] .n.1 29484.585635: cpu_idle: state=4294967295 cpu_id=0
50475              ps-13726 (13726) [005] d..2 29484.585636: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50476          <idle>-0     (-----) [000] d..2 29484.585641: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50477 shell svc 13722-13723 ( 1007) [005] d..2 29484.585645: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50478   kworker/u17:2-23076 (23076) [000] d..2 29484.585649: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50479              ps-13726 (13726) [005] d..2 29484.585651: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50480              ps-13726 (13726) [005] dn.3 29484.585654: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50481   kworker/u17:2-23076 (23076) [000] d..3 29484.585654: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50482              ps-13726 (13726) [005] d..2 29484.585657: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50483 shell svc 13722-13723 ( 1007) [005] d..2 29484.585666: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50484   kworker/u17:2-23076 (23076) [000] d..2 29484.585671: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50485              ps-13726 (13726) [005] d..2 29484.585672: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50486              ps-13726 (13726) [005] dn.3 29484.585675: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50487     kworker/0:0-13450 (13450) [000] d..2 29484.585677: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50488              ps-13726 (13726) [005] d..2 29484.585677: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50489     kworker/0:0-13450 (13450) [000] d..3 29484.585686: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50490 shell svc 13722-13723 ( 1007) [005] d..2 29484.585687: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50491          <idle>-0     (-----) [001] .n.1 29484.585691: cpu_idle: state=4294967295 cpu_id=1
50492          <idle>-0     (-----) [001] d..2 29484.585698: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50493     kworker/0:0-13450 (13450) [000] d..2 29484.585700: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50494          <idle>-0     (-----) [000] d..1 29484.585707: cpu_idle: state=0 cpu_id=0
50495            adbd-23484 ( 1007) [001] d..2 29484.585709: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
50496            adbd-23484 ( 1007) [001] d..3 29484.585722: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50497              ps-13726 (13726) [005] d..2 29484.585760: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50498              ps-13726 (13726) [005] dn.3 29484.585765: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50499            adbd-23484 ( 1007) [001] d..2 29484.585766: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50500              ps-13726 (13726) [005] d..2 29484.585768: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50501 shell svc 13722-13723 ( 1007) [005] d..2 29484.585781: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50502            adbd-1007  ( 1007) [001] d..1 29484.585854: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
50503              ps-13726 (13726) [005] d..2 29484.585854: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50504              ps-13726 (13726) [005] dn.3 29484.585858: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50505              ps-13726 (13726) [005] d..2 29484.585862: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50506            adbd-1007  ( 1007) [001] d..2 29484.585873: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50507 shell svc 13722-13723 ( 1007) [005] d..2 29484.585874: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50508          <idle>-0     (-----) [000] .n.1 29484.585878: cpu_idle: state=4294967295 cpu_id=0
50509          <idle>-0     (-----) [000] d..2 29484.585885: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50510            adbd-1007  ( 1007) [001] d..2 29484.585910: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50511          <idle>-0     (-----) [001] d..1 29484.585920: cpu_idle: state=0 cpu_id=1
50512            adbd-23485 ( 1007) [000] d..2 29484.585934: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50513          <idle>-0     (-----) [000] d..1 29484.585942: cpu_idle: state=0 cpu_id=0
50514              ps-13726 (13726) [005] d..2 29484.585945: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50515              ps-13726 (13726) [005] dn.3 29484.585949: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50516              ps-13726 (13726) [005] d..2 29484.585952: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50517          <idle>-0     (-----) [000] d.h3 29484.585960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50518 shell svc 13722-13723 ( 1007) [005] d..2 29484.585964: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50519          <idle>-0     (-----) [000] dnh4 29484.585967: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50520          <idle>-0     (-----) [000] .n.1 29484.585972: cpu_idle: state=4294967295 cpu_id=0
50521          <idle>-0     (-----) [000] d..2 29484.585979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50522   kworker/u17:2-23076 (23076) [000] d..2 29484.585985: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50523   kworker/u17:2-23076 (23076) [000] d..3 29484.585991: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50524   kworker/u17:2-23076 (23076) [000] d..2 29484.586008: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50525     kworker/0:0-13450 (13450) [000] d..2 29484.586013: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50526     kworker/0:0-13450 (13450) [000] d..3 29484.586022: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50527     kworker/0:0-13450 (13450) [000] d..2 29484.586030: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50528            adbd-23485 ( 1007) [000] d..2 29484.586079: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50529          <idle>-0     (-----) [000] d..1 29484.586087: cpu_idle: state=0 cpu_id=0
50530              ps-13726 (13726) [005] d..2 29484.586117: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50531          <idle>-0     (-----) [000] d.h3 29484.586121: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50532              ps-13726 (13726) [005] dn.3 29484.586121: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50533              ps-13726 (13726) [005] d..2 29484.586125: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50534          <idle>-0     (-----) [000] dnh4 29484.586127: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50535          <idle>-0     (-----) [000] .n.1 29484.586133: cpu_idle: state=4294967295 cpu_id=0
50536 shell svc 13722-13723 ( 1007) [005] d..2 29484.586137: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50537          <idle>-0     (-----) [000] d..2 29484.586139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50538              ps-13726 (13726) [005] d..2 29484.586145: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50539   kworker/u17:2-23076 (23076) [000] d..2 29484.586146: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50540              ps-13726 (13726) [005] dn.3 29484.586148: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50541              ps-13726 (13726) [005] d..2 29484.586151: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50542   kworker/u17:2-23076 (23076) [000] d..3 29484.586152: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50543 shell svc 13722-13723 ( 1007) [005] d..2 29484.586161: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50544              ps-13726 (13726) [005] d..2 29484.586168: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50545   kworker/u17:2-23076 (23076) [000] d..2 29484.586169: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50546              ps-13726 (13726) [005] dn.3 29484.586171: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50547     kworker/0:0-13450 (13450) [000] d..2 29484.586174: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50548              ps-13726 (13726) [005] d..2 29484.586174: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50549     kworker/0:0-13450 (13450) [000] d..3 29484.586183: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50550 shell svc 13722-13723 ( 1007) [005] d..2 29484.586184: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50551     kworker/0:0-13450 (13450) [000] d..2 29484.586191: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50552            adbd-23485 ( 1007) [000] d..2 29484.586209: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50553          <idle>-0     (-----) [000] d..1 29484.586218: cpu_idle: state=0 cpu_id=0
50554              ps-13726 (13726) [005] d..2 29484.586293: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50555              ps-13726 (13726) [005] dn.3 29484.586298: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50556              ps-13726 (13726) [005] d..2 29484.586301: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50557 shell svc 13722-13723 ( 1007) [005] d..2 29484.586316: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50558              ps-13726 (13726) [005] d..2 29484.586323: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50559              ps-13726 (13726) [005] dn.3 29484.586327: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50560              ps-13726 (13726) [005] d..2 29484.586330: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50561 shell svc 13722-13723 ( 1007) [005] d..2 29484.586340: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50562          <idle>-0     (-----) [000] d.h3 29484.586341: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50563          <idle>-0     (-----) [000] dnh4 29484.586348: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50564          <idle>-0     (-----) [000] .n.1 29484.586353: cpu_idle: state=4294967295 cpu_id=0
50565          <idle>-0     (-----) [000] d..2 29484.586359: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50566   kworker/u17:2-23076 (23076) [000] d..2 29484.586366: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50567   kworker/u17:2-23076 (23076) [000] d..3 29484.586371: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50568   kworker/u17:2-23076 (23076) [000] d..2 29484.586388: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50569     kworker/0:0-13450 (13450) [000] d..2 29484.586394: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50570     kworker/0:0-13450 (13450) [000] d..3 29484.586406: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50571          <idle>-0     (-----) [001] .n.1 29484.586412: cpu_idle: state=4294967295 cpu_id=1
50572          <idle>-0     (-----) [001] d..2 29484.586419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50573     kworker/0:0-13450 (13450) [000] d..2 29484.586420: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50574          <idle>-0     (-----) [000] d..1 29484.586428: cpu_idle: state=0 cpu_id=0
50575            adbd-23484 ( 1007) [001] d..2 29484.586431: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50576            adbd-23484 ( 1007) [001] d..3 29484.586439: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50577            adbd-23484 ( 1007) [001] d..2 29484.586485: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50578            adbd-1007  ( 1007) [001] d..1 29484.586550: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50579            adbd-1007  ( 1007) [001] d..2 29484.586565: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50580          <idle>-0     (-----) [000] .n.1 29484.586570: cpu_idle: state=4294967295 cpu_id=0
50581          <idle>-0     (-----) [000] d..2 29484.586577: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50582            adbd-1007  ( 1007) [001] d..2 29484.586600: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50583          <idle>-0     (-----) [001] d..1 29484.586611: cpu_idle: state=0 cpu_id=1
50584            adbd-23485 ( 1007) [000] d..2 29484.586624: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50585          <idle>-0     (-----) [000] d.h3 29484.586645: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50586          <idle>-0     (-----) [000] dnh4 29484.586652: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50587          <idle>-0     (-----) [000] d..2 29484.586661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50588   kworker/u17:2-23076 (23076) [000] d..2 29484.586669: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50589   kworker/u17:2-23076 (23076) [000] d..3 29484.586675: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50590   kworker/u17:2-23076 (23076) [000] d..2 29484.586691: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50591     kworker/0:0-13450 (13450) [000] d..2 29484.586696: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50592     kworker/0:0-13450 (13450) [000] d..3 29484.586704: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50593     kworker/0:0-13450 (13450) [000] d..2 29484.586714: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50594            adbd-23485 ( 1007) [000] d..2 29484.586762: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50595          <idle>-0     (-----) [000] d..1 29484.586771: cpu_idle: state=0 cpu_id=0
50596          <idle>-0     (-----) [000] d.h3 29484.586793: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50597          <idle>-0     (-----) [000] dnh4 29484.586799: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50598          <idle>-0     (-----) [000] .n.1 29484.586805: cpu_idle: state=4294967295 cpu_id=0
50599          <idle>-0     (-----) [000] d..2 29484.586811: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50600   kworker/u17:2-23076 (23076) [000] d..2 29484.586818: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50601   kworker/u17:2-23076 (23076) [000] d..3 29484.586823: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50602   kworker/u17:2-23076 (23076) [000] d..2 29484.586840: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50603     kworker/0:0-13450 (13450) [000] d..2 29484.586845: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50604     kworker/0:0-13450 (13450) [000] d..3 29484.586853: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50605     kworker/0:0-13450 (13450) [000] d..2 29484.586862: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50606            adbd-23485 ( 1007) [000] d..2 29484.586881: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50607          <idle>-0     (-----) [000] d..1 29484.586889: cpu_idle: state=0 cpu_id=0
50608              ps-13726 (13726) [005] d..2 29484.586924: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50609              ps-13726 (13726) [005] dn.3 29484.586929: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50610              ps-13726 (13726) [005] d..2 29484.586933: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50611 shell svc 13722-13723 ( 1007) [005] d..2 29484.586947: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50612              ps-13726 (13726) [005] d..2 29484.586954: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50613              ps-13726 (13726) [005] dn.3 29484.586957: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50614              ps-13726 (13726) [005] d..2 29484.586960: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50615 shell svc 13722-13723 ( 1007) [005] d..2 29484.586971: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50616              ps-13726 (13726) [005] d..2 29484.586977: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50617              ps-13726 (13726) [005] dn.3 29484.586980: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50618              ps-13726 (13726) [005] d..2 29484.586983: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50619 shell svc 13722-13723 ( 1007) [005] d..2 29484.586994: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50620              ps-13726 (13726) [005] d..2 29484.587000: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50621              ps-13726 (13726) [005] dn.3 29484.587003: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50622              ps-13726 (13726) [005] d..2 29484.587006: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50623          <idle>-0     (-----) [000] d.h3 29484.587013: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50624 shell svc 13722-13723 ( 1007) [005] d..2 29484.587016: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50625          <idle>-0     (-----) [000] dnh4 29484.587019: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50626              ps-13726 (13726) [005] d..2 29484.587021: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50627          <idle>-0     (-----) [000] .n.1 29484.587025: cpu_idle: state=4294967295 cpu_id=0
50628              ps-13726 (13726) [005] dn.3 29484.587025: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50629              ps-13726 (13726) [005] d..2 29484.587027: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50630          <idle>-0     (-----) [000] d..2 29484.587031: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50631 shell svc 13722-13723 ( 1007) [005] d..2 29484.587037: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50632   kworker/u17:2-23076 (23076) [000] d..2 29484.587039: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50633              ps-13726 (13726) [005] d..2 29484.587043: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50634   kworker/u17:2-23076 (23076) [000] d..3 29484.587044: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50635              ps-13726 (13726) [005] dn.3 29484.587046: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50636              ps-13726 (13726) [005] d..2 29484.587049: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50637 shell svc 13722-13723 ( 1007) [005] d.s2 29484.587067: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
50638 shell svc 13722-13723 ( 1007) [005] d.s3 29484.587073: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
50639          <idle>-0     (-----) [003] d.s2 29484.587074: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
50640   kworker/u17:2-23076 (23076) [000] d..2 29484.587081: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50641 shell svc 13722-13723 ( 1007) [005] d..2 29484.587082: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
50642          <idle>-0     (-----) [003] dns3 29484.587083: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
50643     kworker/0:0-13450 (13450) [000] d..2 29484.587088: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50644          <idle>-0     (-----) [003] .n.1 29484.587095: cpu_idle: state=4294967295 cpu_id=3
50645     kworker/5:0-24254 (24254) [005] d..2 29484.587097: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50646     kworker/0:0-13450 (13450) [000] d..3 29484.587098: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50647          <idle>-0     (-----) [003] d..2 29484.587101: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50648          <idle>-0     (-----) [001] .n.1 29484.587103: cpu_idle: state=4294967295 cpu_id=1
50649              ps-13726 (13726) [005] d..2 29484.587105: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50650              ps-13726 (13726) [005] dn.3 29484.587108: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50651              ps-13726 (13726) [005] d..2 29484.587112: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50652          <idle>-0     (-----) [001] d..2 29484.587112: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50653     kworker/0:0-13450 (13450) [000] d..2 29484.587115: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50654     rcu_preempt-7     (    7) [003] d..2 29484.587117: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50655 shell svc 13722-13723 ( 1007) [005] d..2 29484.587123: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50656          <idle>-0     (-----) [000] d..1 29484.587123: cpu_idle: state=0 cpu_id=0
50657          <idle>-0     (-----) [003] d..1 29484.587124: cpu_idle: state=0 cpu_id=3
50658            adbd-23484 ( 1007) [001] d..2 29484.587124: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50659              ps-13726 (13726) [005] d..2 29484.587129: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50660            adbd-23484 ( 1007) [001] d..3 29484.587131: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50661              ps-13726 (13726) [005] dn.3 29484.587132: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50662              ps-13726 (13726) [005] d..2 29484.587135: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50663 shell svc 13722-13723 ( 1007) [005] d..2 29484.587145: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50664              ps-13726 (13726) [005] d..2 29484.587151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50665              ps-13726 (13726) [005] dn.3 29484.587153: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50666              ps-13726 (13726) [005] d..2 29484.587156: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50667 shell svc 13722-13723 ( 1007) [005] d..2 29484.587165: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50668              ps-13726 (13726) [005] d..2 29484.587171: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50669              ps-13726 (13726) [005] dn.3 29484.587174: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50670              ps-13726 (13726) [005] d..2 29484.587177: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50671            adbd-23484 ( 1007) [001] d..2 29484.587177: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50672 shell svc 13722-13723 ( 1007) [005] d..2 29484.587186: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50673              ps-13726 (13726) [005] d..2 29484.587193: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50674              ps-13726 (13726) [005] dn.3 29484.587196: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50675              ps-13726 (13726) [005] d..2 29484.587198: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50676 shell svc 13722-13723 ( 1007) [005] d..2 29484.587208: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50677              ps-13726 (13726) [005] d..2 29484.587214: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50678              ps-13726 (13726) [005] dn.3 29484.587217: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50679              ps-13726 (13726) [005] d..2 29484.587219: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50680 shell svc 13722-13723 ( 1007) [005] d..2 29484.587229: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50681              ps-13726 (13726) [005] d..2 29484.587235: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50682              ps-13726 (13726) [005] dn.3 29484.587238: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50683              ps-13726 (13726) [005] d..2 29484.587240: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50684            adbd-1007  ( 1007) [001] d..1 29484.587249: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50685 shell svc 13722-13723 ( 1007) [005] d..2 29484.587250: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50686              ps-13726 (13726) [005] d..2 29484.587257: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50687              ps-13726 (13726) [005] dn.3 29484.587260: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50688            adbd-1007  ( 1007) [001] d..2 29484.587261: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50689              ps-13726 (13726) [005] d..2 29484.587263: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50690          <idle>-0     (-----) [000] .n.1 29484.587265: cpu_idle: state=4294967295 cpu_id=0
50691          <idle>-0     (-----) [000] d..2 29484.587272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50692 shell svc 13722-13723 ( 1007) [005] d..2 29484.587272: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50693            adbd-1007  ( 1007) [001] d..2 29484.587296: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50694          <idle>-0     (-----) [001] d..1 29484.587306: cpu_idle: state=0 cpu_id=1
50695            adbd-23485 ( 1007) [000] d..2 29484.587321: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50696          <idle>-0     (-----) [000] d.h4 29484.587339: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50697              ps-13726 (13726) [005] d..2 29484.587342: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50698              ps-13726 (13726) [005] dn.3 29484.587346: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50699          <idle>-0     (-----) [000] dnh5 29484.587349: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50700              ps-13726 (13726) [005] d..2 29484.587349: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50701          <idle>-0     (-----) [000] d..2 29484.587357: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50702 shell svc 13722-13723 ( 1007) [005] d..2 29484.587363: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50703   kworker/u17:2-23076 (23076) [000] d..2 29484.587364: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50704   kworker/u17:2-23076 (23076) [000] d..3 29484.587369: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50705   kworker/u17:2-23076 (23076) [000] d..2 29484.587385: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50706     kworker/0:0-13450 (13450) [000] d..2 29484.587391: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50707     kworker/0:0-13450 (13450) [000] d..3 29484.587400: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50708     kworker/0:0-13450 (13450) [000] d..2 29484.587408: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50709              ps-13726 (13726) [005] d..2 29484.587424: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50710              ps-13726 (13726) [005] dn.3 29484.587428: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50711              ps-13726 (13726) [005] d..2 29484.587431: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50712 shell svc 13722-13723 ( 1007) [005] d..2 29484.587443: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50713            adbd-23485 ( 1007) [000] d..2 29484.587454: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50714          <idle>-0     (-----) [000] d..1 29484.587463: cpu_idle: state=0 cpu_id=0
50715          <idle>-0     (-----) [000] d.h3 29484.587487: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50716          <idle>-0     (-----) [000] dnh4 29484.587494: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50717          <idle>-0     (-----) [000] .n.1 29484.587499: cpu_idle: state=4294967295 cpu_id=0
50718              ps-13726 (13726) [005] d..2 29484.587503: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50719          <idle>-0     (-----) [000] d..2 29484.587506: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50720              ps-13726 (13726) [005] dn.3 29484.587508: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50721              ps-13726 (13726) [005] d..2 29484.587511: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50722   kworker/u17:2-23076 (23076) [000] d..2 29484.587514: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50723   kworker/u17:2-23076 (23076) [000] d..3 29484.587520: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50724 shell svc 13722-13723 ( 1007) [005] d..2 29484.587524: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50725   kworker/u17:2-23076 (23076) [000] d..2 29484.587537: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50726     kworker/0:0-13450 (13450) [000] d..2 29484.587542: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50727     kworker/0:0-13450 (13450) [000] d..3 29484.587550: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50728     kworker/0:0-13450 (13450) [000] d..2 29484.587559: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50729            adbd-23485 ( 1007) [000] d..2 29484.587580: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50730              ps-13726 (13726) [005] d..2 29484.587583: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50731              ps-13726 (13726) [005] dn.3 29484.587587: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50732          <idle>-0     (-----) [000] d..1 29484.587588: cpu_idle: state=0 cpu_id=0
50733              ps-13726 (13726) [005] d..2 29484.587590: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50734 shell svc 13722-13723 ( 1007) [005] d..2 29484.587603: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50735              ps-13726 (13726) [005] d..2 29484.587664: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50736              ps-13726 (13726) [005] dn.3 29484.587668: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50737              ps-13726 (13726) [005] d..2 29484.587671: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50738 shell svc 13722-13723 ( 1007) [005] d..2 29484.587682: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50739          <idle>-0     (-----) [000] d.h3 29484.587684: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50740          <idle>-0     (-----) [000] dnh4 29484.587690: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50741          <idle>-0     (-----) [000] .n.1 29484.587696: cpu_idle: state=4294967295 cpu_id=0
50742          <idle>-0     (-----) [000] d..2 29484.587702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50743   kworker/u17:2-23076 (23076) [000] d..2 29484.587709: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50744   kworker/u17:2-23076 (23076) [000] d..3 29484.587715: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50745   kworker/u17:2-23076 (23076) [000] d..2 29484.587733: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50746     kworker/0:0-13450 (13450) [000] d..2 29484.587739: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50747     kworker/0:0-13450 (13450) [000] d..3 29484.587748: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50748          <idle>-0     (-----) [001] .n.1 29484.587754: cpu_idle: state=4294967295 cpu_id=1
50749          <idle>-0     (-----) [001] d..2 29484.587761: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50750     kworker/0:0-13450 (13450) [000] d..2 29484.587762: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50751          <idle>-0     (-----) [000] d..1 29484.587770: cpu_idle: state=0 cpu_id=0
50752            adbd-23484 ( 1007) [001] d..2 29484.587773: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50753            adbd-23484 ( 1007) [001] d..3 29484.587781: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50754            adbd-23484 ( 1007) [001] d..2 29484.587827: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50755              ps-13726 (13726) [005] d..2 29484.587866: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50756              ps-13726 (13726) [005] dn.3 29484.587870: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50757              ps-13726 (13726) [005] d..2 29484.587874: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50758 shell svc 13722-13723 ( 1007) [005] d..2 29484.587888: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50759            adbd-1007  ( 1007) [001] d..1 29484.587893: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50760              ps-13726 (13726) [005] d..2 29484.587896: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50761              ps-13726 (13726) [005] dn.3 29484.587899: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50762              ps-13726 (13726) [005] d..2 29484.587901: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50763            adbd-1007  ( 1007) [001] d..2 29484.587905: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50764          <idle>-0     (-----) [000] .n.1 29484.587910: cpu_idle: state=4294967295 cpu_id=0
50765 shell svc 13722-13723 ( 1007) [005] d..2 29484.587912: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50766          <idle>-0     (-----) [000] d..2 29484.587917: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50767              ps-13726 (13726) [005] d..2 29484.587919: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50768              ps-13726 (13726) [005] dn.3 29484.587922: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50769              ps-13726 (13726) [005] d..2 29484.587925: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50770 shell svc 13722-13723 ( 1007) [005] d..2 29484.587935: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50771            adbd-1007  ( 1007) [001] d..2 29484.587941: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50772              ps-13726 (13726) [005] d..2 29484.587942: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50773              ps-13726 (13726) [005] dn.3 29484.587945: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50774              ps-13726 (13726) [005] d..2 29484.587948: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50775          <idle>-0     (-----) [001] d..1 29484.587950: cpu_idle: state=0 cpu_id=1
50776 shell svc 13722-13723 ( 1007) [005] d..2 29484.587957: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50777            adbd-23485 ( 1007) [000] d..2 29484.587964: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50778          <idle>-0     (-----) [000] d.h4 29484.587981: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50779          <idle>-0     (-----) [000] dnh5 29484.587987: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50780          <idle>-0     (-----) [000] d..2 29484.587996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50781   kworker/u17:2-23076 (23076) [000] d..2 29484.588003: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50782   kworker/u17:2-23076 (23076) [000] d..3 29484.588008: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50783   kworker/u17:2-23076 (23076) [000] d..2 29484.588025: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50784     kworker/0:0-13450 (13450) [000] d..2 29484.588029: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50785     kworker/0:0-13450 (13450) [000] d..3 29484.588038: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50786     kworker/0:0-13450 (13450) [000] d..2 29484.588047: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50787            adbd-23485 ( 1007) [000] d..2 29484.588094: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50788              ps-13726 (13726) [005] d..2 29484.588102: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50789          <idle>-0     (-----) [000] d..1 29484.588103: cpu_idle: state=0 cpu_id=0
50790              ps-13726 (13726) [005] dn.3 29484.588107: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50791              ps-13726 (13726) [005] d..2 29484.588110: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50792 shell svc 13722-13723 ( 1007) [005] d..2 29484.588123: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50793          <idle>-0     (-----) [000] d.h3 29484.588127: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50794              ps-13726 (13726) [005] d..2 29484.588130: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50795              ps-13726 (13726) [005] dn.3 29484.588133: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50796          <idle>-0     (-----) [000] dnh4 29484.588133: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50797              ps-13726 (13726) [005] d..2 29484.588136: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50798          <idle>-0     (-----) [000] .n.1 29484.588139: cpu_idle: state=4294967295 cpu_id=0
50799          <idle>-0     (-----) [000] d..2 29484.588145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50800 shell svc 13722-13723 ( 1007) [005] d..2 29484.588146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50801   kworker/u17:2-23076 (23076) [000] d..2 29484.588152: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50802              ps-13726 (13726) [005] d..2 29484.588153: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50803              ps-13726 (13726) [005] dn.3 29484.588157: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50804   kworker/u17:2-23076 (23076) [000] d..3 29484.588158: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50805              ps-13726 (13726) [005] d..2 29484.588159: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50806 shell svc 13722-13723 ( 1007) [005] d..2 29484.588169: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50807   kworker/u17:2-23076 (23076) [000] d..2 29484.588175: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50808     kworker/0:0-13450 (13450) [000] d..2 29484.588180: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50809     kworker/0:0-13450 (13450) [000] d..3 29484.588189: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50810     kworker/0:0-13450 (13450) [000] d..2 29484.588197: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50811            adbd-23485 ( 1007) [000] d..2 29484.588210: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50812          <idle>-0     (-----) [000] d..1 29484.588218: cpu_idle: state=0 cpu_id=0
50813          <idle>-0     (-----) [000] d.h3 29484.588329: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50814          <idle>-0     (-----) [000] dnh4 29484.588335: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50815          <idle>-0     (-----) [000] .n.1 29484.588341: cpu_idle: state=4294967295 cpu_id=0
50816          <idle>-0     (-----) [000] d..2 29484.588347: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50817   kworker/u17:2-23076 (23076) [000] d..2 29484.588354: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50818   kworker/u17:2-23076 (23076) [000] d..3 29484.588360: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50819   kworker/u17:2-23076 (23076) [000] d..2 29484.588376: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50820     kworker/0:0-13450 (13450) [000] d..2 29484.588383: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50821     kworker/0:0-13450 (13450) [000] d..3 29484.588392: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50822              ps-13726 (13726) [005] d..2 29484.588393: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50823          <idle>-0     (-----) [001] .n.1 29484.588397: cpu_idle: state=4294967295 cpu_id=1
50824              ps-13726 (13726) [005] dn.3 29484.588397: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50825              ps-13726 (13726) [005] d..2 29484.588401: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50826          <idle>-0     (-----) [001] d..2 29484.588405: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50827     kworker/0:0-13450 (13450) [000] d..2 29484.588406: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50828          <idle>-0     (-----) [000] d..1 29484.588413: cpu_idle: state=0 cpu_id=0
50829 shell svc 13722-13723 ( 1007) [005] d..2 29484.588414: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50830            adbd-23484 ( 1007) [001] d..2 29484.588417: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50831              ps-13726 (13726) [005] d..2 29484.588421: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50832            adbd-23484 ( 1007) [001] d..3 29484.588424: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50833              ps-13726 (13726) [005] dn.3 29484.588425: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50834              ps-13726 (13726) [005] d..2 29484.588427: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50835 shell svc 13722-13723 ( 1007) [005] d..2 29484.588438: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50836              ps-13726 (13726) [005] d..2 29484.588444: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50837              ps-13726 (13726) [005] dn.3 29484.588447: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50838              ps-13726 (13726) [005] d..2 29484.588450: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50839 shell svc 13722-13723 ( 1007) [005] d..2 29484.588460: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50840              ps-13726 (13726) [005] d..2 29484.588466: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50841              ps-13726 (13726) [005] dn.3 29484.588469: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50842            adbd-23484 ( 1007) [001] d..2 29484.588470: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50843              ps-13726 (13726) [005] d..2 29484.588472: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50844 shell svc 13722-13723 ( 1007) [005] d..2 29484.588482: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50845              ps-13726 (13726) [005] d..2 29484.588488: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50846              ps-13726 (13726) [005] dn.3 29484.588491: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50847              ps-13726 (13726) [005] d..2 29484.588493: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50848 shell svc 13722-13723 ( 1007) [005] d..2 29484.588503: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50849            adbd-1007  ( 1007) [001] d..1 29484.588540: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50850            adbd-1007  ( 1007) [001] d..2 29484.588552: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50851          <idle>-0     (-----) [000] .n.1 29484.588557: cpu_idle: state=4294967295 cpu_id=0
50852          <idle>-0     (-----) [000] d..2 29484.588564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50853            adbd-1007  ( 1007) [001] d..2 29484.588587: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50854          <idle>-0     (-----) [001] d..1 29484.588596: cpu_idle: state=0 cpu_id=1
50855            adbd-23485 ( 1007) [000] d..2 29484.588612: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50856          <idle>-0     (-----) [000] d.h4 29484.588629: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50857          <idle>-0     (-----) [000] dnh5 29484.588635: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50858          <idle>-0     (-----) [000] d..2 29484.588644: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50859   kworker/u17:2-23076 (23076) [000] d..2 29484.588650: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50860   kworker/u17:2-23076 (23076) [000] d..3 29484.588655: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50861   kworker/u17:2-23076 (23076) [000] d..2 29484.588672: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50862     kworker/0:0-13450 (13450) [000] d..2 29484.588676: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50863     kworker/0:0-13450 (13450) [000] d..3 29484.588685: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50864     kworker/0:0-13450 (13450) [000] d..2 29484.588693: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50865            adbd-23485 ( 1007) [000] d..2 29484.588740: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50866          <idle>-0     (-----) [000] d..1 29484.588749: cpu_idle: state=0 cpu_id=0
50867          <idle>-0     (-----) [000] d.h3 29484.588775: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50868          <idle>-0     (-----) [000] dnh4 29484.588781: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50869          <idle>-0     (-----) [000] .n.1 29484.588786: cpu_idle: state=4294967295 cpu_id=0
50870          <idle>-0     (-----) [000] d..2 29484.588793: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50871   kworker/u17:2-23076 (23076) [000] d..2 29484.588799: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50872   kworker/u17:2-23076 (23076) [000] d..3 29484.588804: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50873   kworker/u17:2-23076 (23076) [000] d..2 29484.588822: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50874     kworker/0:0-13450 (13450) [000] d..2 29484.588826: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50875     kworker/0:0-13450 (13450) [000] d..3 29484.588835: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
50876     kworker/0:0-13450 (13450) [000] d..2 29484.588844: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
50877            adbd-23485 ( 1007) [000] d..2 29484.588857: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50878          <idle>-0     (-----) [000] d..1 29484.588864: cpu_idle: state=0 cpu_id=0
50879          <idle>-0     (-----) [000] d.h3 29484.588937: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50880          <idle>-0     (-----) [000] dnh4 29484.588943: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50881          <idle>-0     (-----) [000] .n.1 29484.588948: cpu_idle: state=4294967295 cpu_id=0
50882          <idle>-0     (-----) [000] d..2 29484.588954: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50883   kworker/u17:2-23076 (23076) [000] d..2 29484.588961: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50884   kworker/u17:2-23076 (23076) [000] d..3 29484.588966: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50885   kworker/u17:2-23076 (23076) [000] d..2 29484.588983: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50886     kworker/0:0-13450 (13450) [000] d..2 29484.588989: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
50887     kworker/0:0-13450 (13450) [000] d..3 29484.589001: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
50888          <idle>-0     (-----) [001] .n.1 29484.589007: cpu_idle: state=4294967295 cpu_id=1
50889     kworker/0:0-13450 (13450) [000] d..2 29484.589011: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50890          <idle>-0     (-----) [001] d..2 29484.589015: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
50891          <idle>-0     (-----) [000] d..1 29484.589019: cpu_idle: state=0 cpu_id=0
50892            adbd-23484 ( 1007) [001] d..2 29484.589026: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50893            adbd-23484 ( 1007) [001] d..3 29484.589033: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50894            adbd-23484 ( 1007) [001] d..2 29484.589080: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50895            adbd-1007  ( 1007) [001] d..2 29484.589144: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50896          <idle>-0     (-----) [001] d..1 29484.589153: cpu_idle: state=0 cpu_id=1
50897          <idle>-0     (-----) [000] ...1 29484.590131: cpu_idle: state=4294967295 cpu_id=0
50898          <idle>-0     (-----) [000] d..1 29484.590134: cpu_idle: state=2 cpu_id=0
50899              ps-13726 (13726) [005] d.s2 29484.590400: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
50900          <idle>-0     (-----) [001] dnh2 29484.590427: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
50901          <idle>-0     (-----) [001] .n.1 29484.590432: cpu_idle: state=4294967295 cpu_id=1
50902          <idle>-0     (-----) [001] d..2 29484.590439: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
50903              ps-13726 (13726) [005] d..2 29484.590485: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50904              ps-13726 (13726) [005] dn.3 29484.590490: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50905              ps-13726 (13726) [005] d..2 29484.590493: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50906  kworker/u16:10-23868 (23868) [001] .... 29484.590495: clk_set_rate: l3_cluster0_vote_clk 652800000
50907 shell svc 13722-13723 ( 1007) [005] d..2 29484.590503: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
50908  kworker/u16:10-23868 (23868) [001] d.h3 29484.590518: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
50909 shell svc 13722-13723 ( 1007) [005] d..2 29484.590520: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50910              ps-13726 (13726) [005] d..2 29484.590532: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50911              ps-13726 (13726) [005] dn.3 29484.590535: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50912              ps-13726 (13726) [005] d..2 29484.590541: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50913  kworker/u16:10-23868 (23868) [001] d..2 29484.590549: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
50914 shell svc 13722-13723 ( 1007) [005] d..2 29484.590552: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50915              ps-13726 (13726) [005] d..2 29484.590559: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50916              ps-13726 (13726) [005] dn.3 29484.590563: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50917              ps-13726 (13726) [005] d..2 29484.590566: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50918 shell svc 13722-13723 ( 1007) [005] d..2 29484.590576: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50919              ps-13726 (13726) [005] d..2 29484.590583: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50920              ps-13726 (13726) [005] dn.3 29484.590586: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50921              ps-13726 (13726) [005] d..2 29484.590589: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50922            adbd-1007  ( 1007) [001] d..1 29484.590590: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
50923 shell svc 13722-13723 ( 1007) [005] d..2 29484.590599: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50924              ps-13726 (13726) [005] d..2 29484.590605: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50925              ps-13726 (13726) [005] dn.3 29484.590608: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50926              ps-13726 (13726) [005] d..2 29484.590611: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50927            adbd-1007  ( 1007) [001] d..2 29484.590616: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
50928          <idle>-0     (-----) [003] .n.1 29484.590620: cpu_idle: state=4294967295 cpu_id=3
50929 shell svc 13722-13723 ( 1007) [005] d..2 29484.590621: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50930              ps-13726 (13726) [005] d..2 29484.590627: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50931          <idle>-0     (-----) [003] d..2 29484.590628: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50932              ps-13726 (13726) [005] dn.3 29484.590630: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50933              ps-13726 (13726) [005] d..2 29484.590632: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50934 shell svc 13722-13723 ( 1007) [005] d..2 29484.590642: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50935              ps-13726 (13726) [005] d..2 29484.590648: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50936              ps-13726 (13726) [005] dn.3 29484.590651: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50937              ps-13726 (13726) [005] d..2 29484.590654: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50938            adbd-1007  ( 1007) [001] d..2 29484.590657: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50939 shell svc 13722-13723 ( 1007) [005] d..2 29484.590663: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50940          <idle>-0     (-----) [001] d..1 29484.590667: cpu_idle: state=0 cpu_id=1
50941              ps-13726 (13726) [005] d..2 29484.590669: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50942              ps-13726 (13726) [005] dn.3 29484.590672: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50943              ps-13726 (13726) [005] d..2 29484.590675: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50944            adbd-23485 ( 1007) [003] d..2 29484.590681: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50945 shell svc 13722-13723 ( 1007) [005] d..2 29484.590684: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50946          <idle>-0     (-----) [003] d..1 29484.590687: cpu_idle: state=0 cpu_id=3
50947              ps-13726 (13726) [005] d..2 29484.590690: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50948              ps-13726 (13726) [005] dn.3 29484.590693: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50949              ps-13726 (13726) [005] d..2 29484.590696: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50950 shell svc 13722-13723 ( 1007) [005] d..2 29484.590705: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50951              ps-13726 (13726) [005] d..2 29484.590712: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50952              ps-13726 (13726) [005] dn.3 29484.590715: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50953              ps-13726 (13726) [005] d..2 29484.590718: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50954 shell svc 13722-13723 ( 1007) [005] d..2 29484.590727: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50955              ps-13726 (13726) [005] d..2 29484.590734: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50956              ps-13726 (13726) [005] dn.3 29484.590736: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50957              ps-13726 (13726) [005] d..2 29484.590739: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50958 shell svc 13722-13723 ( 1007) [005] d..2 29484.590748: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50959              ps-13726 (13726) [005] d..2 29484.590754: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50960              ps-13726 (13726) [005] dn.3 29484.590757: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50961              ps-13726 (13726) [005] d..2 29484.590760: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50962 shell svc 13722-13723 ( 1007) [005] d..2 29484.590769: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50963              ps-13726 (13726) [005] d..2 29484.590775: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50964              ps-13726 (13726) [005] dn.3 29484.590778: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50965              ps-13726 (13726) [005] d..2 29484.590780: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50966 shell svc 13722-13723 ( 1007) [005] d..2 29484.590790: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50967              ps-13726 (13726) [005] d..2 29484.590797: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50968              ps-13726 (13726) [005] dn.3 29484.590799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50969              ps-13726 (13726) [005] d..2 29484.590802: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50970          <idle>-0     (-----) [000] d.h3 29484.590807: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50971 shell svc 13722-13723 ( 1007) [005] d..2 29484.590811: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50972              ps-13726 (13726) [005] d..2 29484.590818: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50973          <idle>-0     (-----) [000] dnh4 29484.590820: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
50974              ps-13726 (13726) [005] dn.3 29484.590821: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50975              ps-13726 (13726) [005] d..2 29484.590824: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50976          <idle>-0     (-----) [000] .n.1 29484.590826: cpu_idle: state=4294967295 cpu_id=0
50977 shell svc 13722-13723 ( 1007) [005] d..2 29484.590833: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50978          <idle>-0     (-----) [000] d..2 29484.590836: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
50979              ps-13726 (13726) [005] d..2 29484.590839: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50980              ps-13726 (13726) [005] dn.3 29484.590842: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50981              ps-13726 (13726) [005] d..2 29484.590844: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50982   kworker/u17:2-23076 (23076) [000] d..2 29484.590848: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50983 shell svc 13722-13723 ( 1007) [005] d..2 29484.590853: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50984   kworker/u17:2-23076 (23076) [000] d..3 29484.590854: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
50985              ps-13726 (13726) [005] d..2 29484.590860: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50986              ps-13726 (13726) [005] dn.3 29484.590863: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50987              ps-13726 (13726) [005] d..2 29484.590865: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50988   kworker/u17:2-23076 (23076) [000] d..2 29484.590872: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
50989 shell svc 13722-13723 ( 1007) [005] d..2 29484.590875: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50990     kworker/0:0-13450 (13450) [000] d..2 29484.590879: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
50991              ps-13726 (13726) [005] d..2 29484.590881: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50992              ps-13726 (13726) [005] dn.3 29484.590884: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50993              ps-13726 (13726) [005] d..2 29484.590886: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
50994     kworker/0:0-13450 (13450) [000] d..3 29484.590889: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
50995          <idle>-0     (-----) [003] .n.1 29484.590894: cpu_idle: state=4294967295 cpu_id=3
50996 shell svc 13722-13723 ( 1007) [005] d..2 29484.590896: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
50997          <idle>-0     (-----) [003] d..2 29484.590899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
50998              ps-13726 (13726) [005] d..2 29484.590902: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
50999              ps-13726 (13726) [005] dn.3 29484.590905: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51000     kworker/0:0-13450 (13450) [000] d..2 29484.590906: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51001              ps-13726 (13726) [005] d..2 29484.590908: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51002          <idle>-0     (-----) [000] d..1 29484.590915: cpu_idle: state=0 cpu_id=0
51003 shell svc 13722-13723 ( 1007) [005] d..2 29484.590917: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51004              ps-13726 (13726) [005] d..2 29484.590923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51005              ps-13726 (13726) [005] dn.3 29484.590926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51006              ps-13726 (13726) [005] d..2 29484.590928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51007 shell svc 13722-13723 ( 1007) [005] d..2 29484.590938: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51008              ps-13726 (13726) [005] d..2 29484.590944: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51009            adbd-23485 ( 1007) [003] d..2 29484.590946: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51010              ps-13726 (13726) [005] dn.3 29484.590947: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51011              ps-13726 (13726) [005] d..2 29484.590950: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51012          <idle>-0     (-----) [003] d..1 29484.590951: cpu_idle: state=0 cpu_id=3
51013          <idle>-0     (-----) [000] d.h3 29484.590958: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51014 shell svc 13722-13723 ( 1007) [005] d..2 29484.590959: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51015          <idle>-0     (-----) [000] dnh4 29484.590964: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51016              ps-13726 (13726) [005] d..2 29484.590966: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51017          <idle>-0     (-----) [000] .n.1 29484.590970: cpu_idle: state=4294967295 cpu_id=0
51018              ps-13726 (13726) [005] dn.3 29484.590971: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51019              ps-13726 (13726) [005] d..2 29484.590973: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51020          <idle>-0     (-----) [000] d..2 29484.590976: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51021 shell svc 13722-13723 ( 1007) [005] d..2 29484.590983: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51022   kworker/u17:2-23076 (23076) [000] d..2 29484.590984: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51023              ps-13726 (13726) [005] d..2 29484.590990: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51024   kworker/u17:2-23076 (23076) [000] d..3 29484.590990: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51025              ps-13726 (13726) [005] dn.3 29484.590992: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51026              ps-13726 (13726) [005] d..2 29484.590995: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51027 shell svc 13722-13723 ( 1007) [005] d..2 29484.591005: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51028   kworker/u17:2-23076 (23076) [000] d..2 29484.591006: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51029              ps-13726 (13726) [005] d..2 29484.591011: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51030     kworker/0:0-13450 (13450) [000] d..2 29484.591012: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51031              ps-13726 (13726) [005] dn.3 29484.591014: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51032              ps-13726 (13726) [005] d..2 29484.591017: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51033     kworker/0:0-13450 (13450) [000] d..3 29484.591021: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
51034          <idle>-0     (-----) [003] .n.1 29484.591025: cpu_idle: state=4294967295 cpu_id=3
51035 shell svc 13722-13723 ( 1007) [005] d..2 29484.591027: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51036          <idle>-0     (-----) [003] d..2 29484.591031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51037              ps-13726 (13726) [005] d..2 29484.591033: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51038     kworker/0:0-13450 (13450) [000] d..2 29484.591035: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51039              ps-13726 (13726) [005] dn.3 29484.591036: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51040              ps-13726 (13726) [005] d..2 29484.591039: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51041          <idle>-0     (-----) [000] d..1 29484.591043: cpu_idle: state=0 cpu_id=0
51042 shell svc 13722-13723 ( 1007) [005] d..2 29484.591048: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51043            adbd-23485 ( 1007) [003] d..2 29484.591051: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51044          <idle>-0     (-----) [003] d..1 29484.591055: cpu_idle: state=0 cpu_id=3
51045              ps-13726 (13726) [005] d..2 29484.591055: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51046              ps-13726 (13726) [005] dn.3 29484.591059: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51047              ps-13726 (13726) [005] d..2 29484.591061: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51048 shell svc 13722-13723 ( 1007) [005] d..2 29484.591071: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51049              ps-13726 (13726) [005] d..2 29484.591078: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51050              ps-13726 (13726) [005] dn.3 29484.591080: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51051              ps-13726 (13726) [005] d..2 29484.591084: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51052 shell svc 13722-13723 ( 1007) [005] d..2 29484.591093: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51053              ps-13726 (13726) [005] d..2 29484.591100: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51054              ps-13726 (13726) [005] dn.3 29484.591103: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51055              ps-13726 (13726) [005] d..2 29484.591106: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51056 shell svc 13722-13723 ( 1007) [005] d..2 29484.591115: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51057              ps-13726 (13726) [005] d..2 29484.591121: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51058              ps-13726 (13726) [005] dn.3 29484.591124: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51059          <idle>-0     (-----) [000] d.h3 29484.591125: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51060              ps-13726 (13726) [005] d..2 29484.591127: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51061          <idle>-0     (-----) [000] dnh4 29484.591132: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51062 shell svc 13722-13723 ( 1007) [005] d..2 29484.591136: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51063          <idle>-0     (-----) [000] .n.1 29484.591138: cpu_idle: state=4294967295 cpu_id=0
51064              ps-13726 (13726) [005] d..2 29484.591143: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51065          <idle>-0     (-----) [000] d..2 29484.591144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51066              ps-13726 (13726) [005] dn.3 29484.591147: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51067              ps-13726 (13726) [005] d..2 29484.591149: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51068   kworker/u17:2-23076 (23076) [000] d..2 29484.591151: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51069   kworker/u17:2-23076 (23076) [000] d..3 29484.591157: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51070 shell svc 13722-13723 ( 1007) [005] d..2 29484.591159: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51071              ps-13726 (13726) [005] d..2 29484.591167: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51072              ps-13726 (13726) [005] dn.3 29484.591169: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51073              ps-13726 (13726) [005] d..2 29484.591172: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51074   kworker/u17:2-23076 (23076) [000] d..2 29484.591173: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51075     kworker/0:0-13450 (13450) [000] d..2 29484.591181: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
51076 shell svc 13722-13723 ( 1007) [005] d..2 29484.591182: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51077              ps-13726 (13726) [005] d..2 29484.591188: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51078              ps-13726 (13726) [005] dn.3 29484.591191: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51079              ps-13726 (13726) [005] d..2 29484.591194: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51080     kworker/0:0-13450 (13450) [000] d..3 29484.591201: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
51081 shell svc 13722-13723 ( 1007) [005] d..2 29484.591203: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51082          <idle>-0     (-----) [001] .n.1 29484.591207: cpu_idle: state=4294967295 cpu_id=1
51083              ps-13726 (13726) [005] d..2 29484.591210: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51084              ps-13726 (13726) [005] dn.3 29484.591213: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51085          <idle>-0     (-----) [001] d..2 29484.591214: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
51086              ps-13726 (13726) [005] d..2 29484.591216: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51087     kworker/0:0-13450 (13450) [000] d..2 29484.591216: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51088          <idle>-0     (-----) [000] d..1 29484.591224: cpu_idle: state=0 cpu_id=0
51089 shell svc 13722-13723 ( 1007) [005] d..2 29484.591225: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51090            adbd-23484 ( 1007) [001] d..2 29484.591227: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
51091              ps-13726 (13726) [005] d..2 29484.591232: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51092            adbd-23484 ( 1007) [001] d..3 29484.591234: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
51093              ps-13726 (13726) [005] dn.3 29484.591235: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51094              ps-13726 (13726) [005] d..2 29484.591237: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51095 shell svc 13722-13723 ( 1007) [005] d..2 29484.591246: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51096              ps-13726 (13726) [005] d..2 29484.591253: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51097              ps-13726 (13726) [005] dn.3 29484.591256: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51098              ps-13726 (13726) [005] d..2 29484.591258: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51099 shell svc 13722-13723 ( 1007) [005] d..2 29484.591267: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51100              ps-13726 (13726) [005] d..2 29484.591274: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51101              ps-13726 (13726) [005] dn.3 29484.591276: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51102              ps-13726 (13726) [005] d..2 29484.591279: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51103            adbd-23484 ( 1007) [001] d..2 29484.591283: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
51104 shell svc 13722-13723 ( 1007) [005] d..2 29484.591288: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51105              ps-13726 (13726) [005] d..2 29484.591295: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51106              ps-13726 (13726) [005] dn.3 29484.591298: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51107              ps-13726 (13726) [005] d..2 29484.591301: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51108 shell svc 13722-13723 ( 1007) [005] d..2 29484.591310: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51109              ps-13726 (13726) [005] d..2 29484.591317: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51110              ps-13726 (13726) [005] dn.3 29484.591320: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51111              ps-13726 (13726) [005] d..2 29484.591323: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51112 shell svc 13722-13723 ( 1007) [005] d..2 29484.591332: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51113              ps-13726 (13726) [005] d..2 29484.591340: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51114              ps-13726 (13726) [005] dn.3 29484.591343: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51115              ps-13726 (13726) [005] d..2 29484.591345: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51116 shell svc 13722-13723 ( 1007) [005] d..2 29484.591355: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51117              ps-13726 (13726) [005] d..2 29484.591362: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51118              ps-13726 (13726) [005] dn.3 29484.591364: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51119              ps-13726 (13726) [005] d..2 29484.591368: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51120 shell svc 13722-13723 ( 1007) [005] d..2 29484.591378: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51121              ps-13726 (13726) [005] d..2 29484.591384: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51122            adbd-1007  ( 1007) [001] d..1 29484.591385: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51123              ps-13726 (13726) [005] dn.3 29484.591387: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51124              ps-13726 (13726) [005] d..2 29484.591390: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51125            adbd-1007  ( 1007) [001] d..2 29484.591397: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
51126 shell svc 13722-13723 ( 1007) [005] d..2 29484.591399: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51127          <idle>-0     (-----) [003] .n.1 29484.591401: cpu_idle: state=4294967295 cpu_id=3
51128              ps-13726 (13726) [005] d..2 29484.591406: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51129          <idle>-0     (-----) [003] d..2 29484.591406: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51130              ps-13726 (13726) [005] dn.3 29484.591409: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51131              ps-13726 (13726) [005] d..2 29484.591411: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51132 shell svc 13722-13723 ( 1007) [005] d..2 29484.591421: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51133              ps-13726 (13726) [005] d..2 29484.591427: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51134              ps-13726 (13726) [005] dn.3 29484.591430: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51135              ps-13726 (13726) [005] d..2 29484.591433: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51136            adbd-1007  ( 1007) [001] d..2 29484.591435: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51137 shell svc 13722-13723 ( 1007) [005] d..2 29484.591442: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51138          <idle>-0     (-----) [001] d..1 29484.591444: cpu_idle: state=0 cpu_id=1
51139              ps-13726 (13726) [005] d..2 29484.591448: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51140              ps-13726 (13726) [005] dn.3 29484.591451: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51141            adbd-23485 ( 1007) [003] d..2 29484.591452: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51142              ps-13726 (13726) [005] d..2 29484.591454: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51143          <idle>-0     (-----) [003] d..1 29484.591457: cpu_idle: state=0 cpu_id=3
51144 shell svc 13722-13723 ( 1007) [005] d..2 29484.591463: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51145              ps-13726 (13726) [005] d..2 29484.591469: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51146              ps-13726 (13726) [005] dn.3 29484.591472: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51147              ps-13726 (13726) [005] d..2 29484.591474: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51148          <idle>-0     (-----) [000] d.h3 29484.591479: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51149 shell svc 13722-13723 ( 1007) [005] d..2 29484.591484: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51150          <idle>-0     (-----) [000] dnh4 29484.591485: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51151              ps-13726 (13726) [005] d..2 29484.591491: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51152          <idle>-0     (-----) [000] .n.1 29484.591491: cpu_idle: state=4294967295 cpu_id=0
51153              ps-13726 (13726) [005] dn.3 29484.591494: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51154              ps-13726 (13726) [005] d..2 29484.591496: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51155          <idle>-0     (-----) [000] d..2 29484.591497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51156   kworker/u17:2-23076 (23076) [000] d..2 29484.591505: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51157 shell svc 13722-13723 ( 1007) [005] d..2 29484.591506: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51158   kworker/u17:2-23076 (23076) [000] d..3 29484.591511: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51159              ps-13726 (13726) [005] d..2 29484.591512: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51160              ps-13726 (13726) [005] dn.3 29484.591515: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51161              ps-13726 (13726) [005] d..2 29484.591518: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51162 shell svc 13722-13723 ( 1007) [005] d..2 29484.591527: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51163   kworker/u17:2-23076 (23076) [000] d..2 29484.591529: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51164              ps-13726 (13726) [005] d..2 29484.591534: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51165     kworker/0:0-13450 (13450) [000] d..2 29484.591535: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51166              ps-13726 (13726) [005] dn.3 29484.591537: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51167              ps-13726 (13726) [005] d..2 29484.591540: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51168     kworker/0:0-13450 (13450) [000] d..3 29484.591544: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
51169          <idle>-0     (-----) [003] .n.1 29484.591548: cpu_idle: state=4294967295 cpu_id=3
51170 shell svc 13722-13723 ( 1007) [005] d..2 29484.591550: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51171          <idle>-0     (-----) [003] d..2 29484.591554: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51172              ps-13726 (13726) [005] d..2 29484.591556: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51173     kworker/0:0-13450 (13450) [000] d..2 29484.591559: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51174              ps-13726 (13726) [005] dn.3 29484.591559: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51175              ps-13726 (13726) [005] d..2 29484.591562: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51176          <idle>-0     (-----) [000] d..1 29484.591566: cpu_idle: state=0 cpu_id=0
51177 shell svc 13722-13723 ( 1007) [005] d..2 29484.591572: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51178              ps-13726 (13726) [005] d..2 29484.591578: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51179              ps-13726 (13726) [005] dn.3 29484.591581: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51180              ps-13726 (13726) [005] d..2 29484.591584: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51181 shell svc 13722-13723 ( 1007) [005] d..2 29484.591594: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51182              ps-13726 (13726) [005] d..2 29484.591600: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51183            adbd-23485 ( 1007) [003] d..2 29484.591601: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51184              ps-13726 (13726) [005] dn.3 29484.591604: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51185          <idle>-0     (-----) [003] d..1 29484.591606: cpu_idle: state=0 cpu_id=3
51186              ps-13726 (13726) [005] d..2 29484.591606: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51187 shell svc 13722-13723 ( 1007) [005] d..2 29484.591615: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51188              ps-13726 (13726) [005] d..2 29484.591622: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51189              ps-13726 (13726) [005] dn.3 29484.591625: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51190              ps-13726 (13726) [005] d..2 29484.591628: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51191 shell svc 13722-13723 ( 1007) [005] d..2 29484.591637: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51192              ps-13726 (13726) [005] d..2 29484.591646: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51193              ps-13726 (13726) [005] dn.3 29484.591649: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51194              ps-13726 (13726) [005] d..2 29484.591651: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51195          <idle>-0     (-----) [000] d.h3 29484.591653: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51196          <idle>-0     (-----) [000] dnh4 29484.591660: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51197 shell svc 13722-13723 ( 1007) [005] d..2 29484.591660: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51198          <idle>-0     (-----) [000] .n.1 29484.591665: cpu_idle: state=4294967295 cpu_id=0
51199          <idle>-0     (-----) [000] d..2 29484.591671: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51200   kworker/u17:2-23076 (23076) [000] d..2 29484.591678: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51201   kworker/u17:2-23076 (23076) [000] d..3 29484.591683: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51202   kworker/u17:2-23076 (23076) [000] d..2 29484.591699: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51203     kworker/0:0-13450 (13450) [000] d..2 29484.591704: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51204     kworker/0:0-13450 (13450) [000] d..3 29484.591713: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
51205          <idle>-0     (-----) [003] .n.1 29484.591718: cpu_idle: state=4294967295 cpu_id=3
51206          <idle>-0     (-----) [003] d..2 29484.591724: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51207     kworker/0:0-13450 (13450) [000] d..2 29484.591729: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51208          <idle>-0     (-----) [000] d..1 29484.591736: cpu_idle: state=0 cpu_id=0
51209            adbd-23485 ( 1007) [003] d..2 29484.591740: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51210          <idle>-0     (-----) [003] d..1 29484.591744: cpu_idle: state=0 cpu_id=3
51211              ps-13726 (13726) [005] d..2 29484.591835: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51212              ps-13726 (13726) [005] dn.3 29484.591839: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51213              ps-13726 (13726) [005] d..2 29484.591843: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51214          <idle>-0     (-----) [000] d.h3 29484.591843: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51215          <idle>-0     (-----) [000] dnh4 29484.591849: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51216          <idle>-0     (-----) [000] .n.1 29484.591854: cpu_idle: state=4294967295 cpu_id=0
51217 shell svc 13722-13723 ( 1007) [005] d..2 29484.591856: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51218          <idle>-0     (-----) [000] d..2 29484.591861: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51219              ps-13726 (13726) [005] d..2 29484.591864: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51220              ps-13726 (13726) [005] dn.3 29484.591867: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51221   kworker/u17:2-23076 (23076) [000] d..2 29484.591869: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51222              ps-13726 (13726) [005] d..2 29484.591870: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51223   kworker/u17:2-23076 (23076) [000] d..3 29484.591874: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51224 shell svc 13722-13723 ( 1007) [005] d..2 29484.591880: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51225              ps-13726 (13726) [005] d..2 29484.591887: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51226   kworker/u17:2-23076 (23076) [000] d..2 29484.591890: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51227              ps-13726 (13726) [005] dn.3 29484.591891: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51228              ps-13726 (13726) [005] d..2 29484.591894: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51229     kworker/0:0-13450 (13450) [000] d..2 29484.591896: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
51230 shell svc 13722-13723 ( 1007) [005] d..2 29484.591904: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51231     kworker/0:0-13450 (13450) [000] d..3 29484.591905: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
51232          <idle>-0     (-----) [001] .n.1 29484.591911: cpu_idle: state=4294967295 cpu_id=1
51233          <idle>-0     (-----) [001] d..2 29484.591918: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
51234     kworker/0:0-13450 (13450) [000] d..2 29484.591919: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51235          <idle>-0     (-----) [000] d..1 29484.591927: cpu_idle: state=0 cpu_id=0
51236            adbd-23484 ( 1007) [001] d..2 29484.591930: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
51237            adbd-23484 ( 1007) [001] d..3 29484.591937: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
51238            adbd-23484 ( 1007) [001] d..2 29484.591983: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
51239              ps-13726 (13726) [005] d..2 29484.592056: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51240            adbd-1007  ( 1007) [001] d..1 29484.592058: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51241              ps-13726 (13726) [005] dn.3 29484.592061: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51242              ps-13726 (13726) [005] d..2 29484.592064: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51243            adbd-1007  ( 1007) [001] d..2 29484.592071: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
51244          <idle>-0     (-----) [003] .n.1 29484.592075: cpu_idle: state=4294967295 cpu_id=3
51245 shell svc 13722-13723 ( 1007) [005] d..2 29484.592078: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51246          <idle>-0     (-----) [003] d..2 29484.592080: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51247              ps-13726 (13726) [005] d..2 29484.592085: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51248              ps-13726 (13726) [005] dn.3 29484.592089: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51249              ps-13726 (13726) [005] d..2 29484.592093: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51250 shell svc 13722-13723 ( 1007) [005] d..2 29484.592104: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51251            adbd-1007  ( 1007) [001] d..2 29484.592106: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51252              ps-13726 (13726) [005] d..2 29484.592111: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51253              ps-13726 (13726) [005] dn.3 29484.592114: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51254              ps-13726 (13726) [005] d..2 29484.592116: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51255          <idle>-0     (-----) [001] d..1 29484.592116: cpu_idle: state=0 cpu_id=1
51256            adbd-23485 ( 1007) [003] d..2 29484.592126: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51257 shell svc 13722-13723 ( 1007) [005] d..2 29484.592126: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51258          <idle>-0     (-----) [003] d..1 29484.592130: cpu_idle: state=0 cpu_id=3
51259          <idle>-0     (-----) [000] d.h3 29484.592145: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51260          <idle>-0     (-----) [000] dnh4 29484.592151: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51261          <idle>-0     (-----) [000] .n.1 29484.592156: cpu_idle: state=4294967295 cpu_id=0
51262          <idle>-0     (-----) [000] d..2 29484.592162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51263   kworker/u17:2-23076 (23076) [000] d..2 29484.592169: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51264   kworker/u17:2-23076 (23076) [000] d..3 29484.592175: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51265   kworker/u17:2-23076 (23076) [000] d..2 29484.592191: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51266              ps-13726 (13726) [005] d..2 29484.592197: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51267     kworker/0:0-13450 (13450) [000] d..2 29484.592197: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51268              ps-13726 (13726) [005] dn.3 29484.592201: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51269              ps-13726 (13726) [005] d..2 29484.592205: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51270     kworker/0:0-13450 (13450) [000] d..3 29484.592206: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
51271          <idle>-0     (-----) [003] .n.1 29484.592211: cpu_idle: state=4294967295 cpu_id=3
51272          <idle>-0     (-----) [003] d..2 29484.592217: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51273 shell svc 13722-13723 ( 1007) [005] d..2 29484.592217: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51274     kworker/0:0-13450 (13450) [000] d..2 29484.592221: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51275          <idle>-0     (-----) [000] d..1 29484.592228: cpu_idle: state=0 cpu_id=0
51276            adbd-23485 ( 1007) [003] d..2 29484.592263: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51277          <idle>-0     (-----) [003] d..1 29484.592268: cpu_idle: state=0 cpu_id=3
51278          <idle>-0     (-----) [000] d.h3 29484.592302: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51279          <idle>-0     (-----) [000] dnh4 29484.592309: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51280          <idle>-0     (-----) [000] .n.1 29484.592314: cpu_idle: state=4294967295 cpu_id=0
51281          <idle>-0     (-----) [000] d..2 29484.592320: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51282              ps-13726 (13726) [005] d..2 29484.592324: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51283   kworker/u17:2-23076 (23076) [000] d..2 29484.592327: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51284              ps-13726 (13726) [005] dn.3 29484.592328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51285              ps-13726 (13726) [005] d..2 29484.592332: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51286   kworker/u17:2-23076 (23076) [000] d..3 29484.592332: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51287 shell svc 13722-13723 ( 1007) [005] d..2 29484.592344: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51288   kworker/u17:2-23076 (23076) [000] d..2 29484.592349: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51289              ps-13726 (13726) [005] d..2 29484.592353: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51290     kworker/0:0-13450 (13450) [000] d..2 29484.592355: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51291              ps-13726 (13726) [005] dn.3 29484.592356: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51292              ps-13726 (13726) [005] d..2 29484.592359: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51293     kworker/0:0-13450 (13450) [000] d..3 29484.592364: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
51294 shell svc 13722-13723 ( 1007) [005] d..2 29484.592369: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51295          <idle>-0     (-----) [003] .n.1 29484.592369: cpu_idle: state=4294967295 cpu_id=3
51296          <idle>-0     (-----) [003] d..2 29484.592375: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51297     kworker/0:0-13450 (13450) [000] d..2 29484.592379: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51298          <idle>-0     (-----) [000] d..1 29484.592386: cpu_idle: state=0 cpu_id=0
51299            adbd-23485 ( 1007) [003] d..2 29484.592391: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51300          <idle>-0     (-----) [003] d..1 29484.592395: cpu_idle: state=0 cpu_id=3
51301              ps-13726 (13726) [005] d..2 29484.592432: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51302              ps-13726 (13726) [005] dn.3 29484.592436: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51303              ps-13726 (13726) [005] d..2 29484.592439: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51304 shell svc 13722-13723 ( 1007) [005] d..2 29484.592451: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51305          <idle>-0     (-----) [000] d.h3 29484.592464: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51306          <idle>-0     (-----) [000] dnh4 29484.592470: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51307          <idle>-0     (-----) [000] .n.1 29484.592475: cpu_idle: state=4294967295 cpu_id=0
51308          <idle>-0     (-----) [000] d..2 29484.592481: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51309   kworker/u17:2-23076 (23076) [000] d..2 29484.592487: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51310   kworker/u17:2-23076 (23076) [000] d..3 29484.592493: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51311   kworker/u17:2-23076 (23076) [000] d..2 29484.592510: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51312     kworker/0:0-13450 (13450) [000] d..2 29484.592516: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
51313     kworker/0:0-13450 (13450) [000] d..3 29484.592525: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
51314          <idle>-0     (-----) [001] .n.1 29484.592530: cpu_idle: state=4294967295 cpu_id=1
51315          <idle>-0     (-----) [001] d..2 29484.592538: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
51316     kworker/0:0-13450 (13450) [000] d..2 29484.592539: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51317          <idle>-0     (-----) [000] d..1 29484.592547: cpu_idle: state=0 cpu_id=0
51318            adbd-23484 ( 1007) [001] d..2 29484.592550: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
51319            adbd-23484 ( 1007) [001] d..3 29484.592557: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
51320            adbd-23484 ( 1007) [001] d..2 29484.592604: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
51321            adbd-1007  ( 1007) [001] d..1 29484.592670: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
51322            adbd-1007  ( 1007) [001] d..2 29484.592698: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51323          <idle>-0     (-----) [000] .n.1 29484.592703: cpu_idle: state=4294967295 cpu_id=0
51324          <idle>-0     (-----) [000] d..2 29484.592709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51325            adbd-1007  ( 1007) [001] d..2 29484.592734: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51326          <idle>-0     (-----) [001] d..1 29484.592744: cpu_idle: state=0 cpu_id=1
51327            adbd-23485 ( 1007) [000] d..2 29484.592764: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51328          <idle>-0     (-----) [000] d.h4 29484.592782: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51329          <idle>-0     (-----) [000] dnh5 29484.592788: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51330          <idle>-0     (-----) [000] d..2 29484.592796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51331   kworker/u17:2-23076 (23076) [000] d..2 29484.592802: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51332   kworker/u17:2-23076 (23076) [000] d..3 29484.592807: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51333   kworker/u17:2-23076 (23076) [000] d..2 29484.592824: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51334     kworker/0:0-13450 (13450) [000] d..2 29484.592829: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51335     kworker/0:0-13450 (13450) [000] d..3 29484.592838: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51336     kworker/0:0-13450 (13450) [000] d..2 29484.592848: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51337            adbd-23485 ( 1007) [000] d..2 29484.592895: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51338          <idle>-0     (-----) [000] d..1 29484.592904: cpu_idle: state=0 cpu_id=0
51339          <idle>-0     (-----) [000] d.h3 29484.592922: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51340              ps-13726 (13726) [005] d..2 29484.592923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51341              ps-13726 (13726) [005] dn.3 29484.592928: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51342              ps-13726 (13726) [005] d..2 29484.592931: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51343          <idle>-0     (-----) [000] dnh4 29484.592932: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51344          <idle>-0     (-----) [000] .n.1 29484.592937: cpu_idle: state=4294967295 cpu_id=0
51345          <idle>-0     (-----) [000] d..2 29484.592944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51346 shell svc 13722-13723 ( 1007) [005] d..2 29484.592945: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51347   kworker/u17:2-23076 (23076) [000] d..2 29484.592951: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51348              ps-13726 (13726) [005] d..2 29484.592953: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51349   kworker/u17:2-23076 (23076) [000] d..3 29484.592956: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51350              ps-13726 (13726) [005] dn.3 29484.592957: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51351              ps-13726 (13726) [005] d..2 29484.592959: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51352 shell svc 13722-13723 ( 1007) [005] d..2 29484.592970: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51353   kworker/u17:2-23076 (23076) [000] d..2 29484.592972: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51354     kworker/0:0-13450 (13450) [000] d..2 29484.592977: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51355              ps-13726 (13726) [005] d..2 29484.592977: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51356              ps-13726 (13726) [005] dn.3 29484.592981: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51357              ps-13726 (13726) [005] d..2 29484.592984: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51358     kworker/0:0-13450 (13450) [000] d..3 29484.592985: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51359 shell svc 13722-13723 ( 1007) [005] d..2 29484.592994: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51360     kworker/0:0-13450 (13450) [000] d..2 29484.592995: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51361              ps-13726 (13726) [005] d..2 29484.593000: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51362              ps-13726 (13726) [005] dn.3 29484.593004: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51363              ps-13726 (13726) [005] d..2 29484.593006: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51364 shell svc 13722-13723 ( 1007) [005] d..2 29484.593016: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51365            adbd-23485 ( 1007) [000] d..2 29484.593016: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51366              ps-13726 (13726) [005] d..2 29484.593023: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51367          <idle>-0     (-----) [000] d..1 29484.593024: cpu_idle: state=0 cpu_id=0
51368              ps-13726 (13726) [005] dn.3 29484.593026: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51369              ps-13726 (13726) [005] d..2 29484.593028: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51370 shell svc 13722-13723 ( 1007) [005] d..2 29484.593038: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51371              ps-13726 (13726) [005] d..2 29484.593045: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51372              ps-13726 (13726) [005] dn.3 29484.593048: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51373              ps-13726 (13726) [005] d..2 29484.593050: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51374 shell svc 13722-13723 ( 1007) [005] d..2 29484.593060: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51375              ps-13726 (13726) [005] d..2 29484.593067: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51376              ps-13726 (13726) [005] dn.3 29484.593070: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51377              ps-13726 (13726) [005] d..2 29484.593072: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51378 shell svc 13722-13723 ( 1007) [005] d..2 29484.593082: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51379              ps-13726 (13726) [005] d..2 29484.593088: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51380              ps-13726 (13726) [005] dn.3 29484.593091: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51381              ps-13726 (13726) [005] d..2 29484.593094: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51382 shell svc 13722-13723 ( 1007) [005] d..2 29484.593103: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51383              ps-13726 (13726) [005] d..2 29484.593110: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51384              ps-13726 (13726) [005] dn.3 29484.593113: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51385          <idle>-0     (-----) [000] d.h3 29484.593115: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51386              ps-13726 (13726) [005] d..2 29484.593116: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51387          <idle>-0     (-----) [000] dnh4 29484.593122: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51388 shell svc 13722-13723 ( 1007) [005] d..2 29484.593125: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51389          <idle>-0     (-----) [000] .n.1 29484.593128: cpu_idle: state=4294967295 cpu_id=0
51390              ps-13726 (13726) [005] d..2 29484.593133: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51391          <idle>-0     (-----) [000] d..2 29484.593134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51392              ps-13726 (13726) [005] dn.3 29484.593135: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51393              ps-13726 (13726) [005] d..2 29484.593138: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51394   kworker/u17:2-23076 (23076) [000] d..2 29484.593141: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51395   kworker/u17:2-23076 (23076) [000] d..3 29484.593146: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51396 shell svc 13722-13723 ( 1007) [005] d..2 29484.593147: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51397              ps-13726 (13726) [005] d..2 29484.593155: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51398              ps-13726 (13726) [005] dn.3 29484.593158: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51399              ps-13726 (13726) [005] d..2 29484.593160: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51400   kworker/u17:2-23076 (23076) [000] d..2 29484.593163: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51401     kworker/0:0-13450 (13450) [000] d..2 29484.593169: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
51402 shell svc 13722-13723 ( 1007) [005] d..2 29484.593171: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51403              ps-13726 (13726) [005] d..2 29484.593177: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51404     kworker/0:0-13450 (13450) [000] d..3 29484.593178: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
51405              ps-13726 (13726) [005] dn.3 29484.593181: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51406              ps-13726 (13726) [005] d..2 29484.593183: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51407          <idle>-0     (-----) [001] .n.1 29484.593184: cpu_idle: state=4294967295 cpu_id=1
51408          <idle>-0     (-----) [001] d..2 29484.593191: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
51409     kworker/0:0-13450 (13450) [000] d..2 29484.593192: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51410 shell svc 13722-13723 ( 1007) [005] d..2 29484.593192: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51411          <idle>-0     (-----) [000] d..1 29484.593200: cpu_idle: state=0 cpu_id=0
51412            adbd-23484 ( 1007) [001] d..2 29484.593204: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
51413            adbd-23484 ( 1007) [001] d..3 29484.593211: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
51414            adbd-23484 ( 1007) [001] d..2 29484.593256: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
51415            adbd-1007  ( 1007) [001] d..1 29484.593329: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51416            adbd-1007  ( 1007) [001] d..2 29484.593341: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51417          <idle>-0     (-----) [000] .n.1 29484.593346: cpu_idle: state=4294967295 cpu_id=0
51418          <idle>-0     (-----) [000] d..2 29484.593353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51419            adbd-1007  ( 1007) [001] d..2 29484.593376: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51420          <idle>-0     (-----) [001] d..1 29484.593386: cpu_idle: state=0 cpu_id=1
51421            adbd-23485 ( 1007) [000] d..2 29484.593400: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51422          <idle>-0     (-----) [000] d.h4 29484.593418: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51423          <idle>-0     (-----) [000] dnh5 29484.593424: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51424          <idle>-0     (-----) [000] d..2 29484.593433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51425   kworker/u17:2-23076 (23076) [000] d..2 29484.593440: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51426   kworker/u17:2-23076 (23076) [000] d..3 29484.593445: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51427   kworker/u17:2-23076 (23076) [000] d..2 29484.593461: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51428     kworker/0:0-13450 (13450) [000] d..2 29484.593466: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51429     kworker/0:0-13450 (13450) [000] d..3 29484.593475: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51430     kworker/0:0-13450 (13450) [000] d..2 29484.593483: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51431            adbd-23485 ( 1007) [000] d..2 29484.593530: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51432          <idle>-0     (-----) [000] d.h4 29484.593547: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51433          <idle>-0     (-----) [000] dnh5 29484.593554: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51434          <idle>-0     (-----) [000] d..2 29484.593562: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51435   kworker/u17:2-23076 (23076) [000] d..2 29484.593568: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51436   kworker/u17:2-23076 (23076) [000] d..3 29484.593573: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51437   kworker/u17:2-23076 (23076) [000] d..2 29484.593590: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51438     kworker/0:0-13450 (13450) [000] d..2 29484.593595: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51439     kworker/0:0-13450 (13450) [000] d..3 29484.593603: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51440     kworker/0:0-13450 (13450) [000] d..2 29484.593612: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51441            adbd-23485 ( 1007) [000] d..2 29484.593630: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51442          <idle>-0     (-----) [000] d..1 29484.593639: cpu_idle: state=0 cpu_id=0
51443          <idle>-0     (-----) [003] d.s2 29484.593741: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
51444          <idle>-0     (-----) [000] d.h3 29484.593743: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51445          <idle>-0     (-----) [000] dnh4 29484.593750: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51446          <idle>-0     (-----) [003] dns3 29484.593751: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
51447          <idle>-0     (-----) [000] .n.1 29484.593755: cpu_idle: state=4294967295 cpu_id=0
51448          <idle>-0     (-----) [003] .n.1 29484.593757: cpu_idle: state=4294967295 cpu_id=3
51449          <idle>-0     (-----) [003] d..2 29484.593762: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51450          <idle>-0     (-----) [000] d..2 29484.593763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51451     rcu_preempt-7     (    7) [003] d..2 29484.593768: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
51452   kworker/u17:2-23076 (23076) [000] d..2 29484.593770: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51453   kworker/u17:2-23076 (23076) [000] d..3 29484.593775: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51454     rcu_preempt-7     (    7) [003] d..3 29484.593787: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
51455          <idle>-0     (-----) [001] .n.1 29484.593793: cpu_idle: state=4294967295 cpu_id=1
51456   kworker/u17:2-23076 (23076) [000] d..2 29484.593793: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51457     kworker/0:0-13450 (13450) [000] d..2 29484.593799: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
51458          <idle>-0     (-----) [001] d..2 29484.593801: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
51459     rcu_preempt-7     (    7) [003] d..2 29484.593803: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51460         rcuop/4-45    (   45) [001] d..2 29484.593806: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
51461          <idle>-0     (-----) [003] d..1 29484.593810: cpu_idle: state=0 cpu_id=3
51462         rcuop/4-45    (   45) [001] d..3 29484.593819: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
51463     kworker/0:0-13450 (13450) [000] d..3 29484.593821: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
51464         rcuop/4-45    (   45) [001] d..2 29484.593821: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
51465          <idle>-0     (-----) [003] .n.1 29484.593826: cpu_idle: state=4294967295 cpu_id=3
51466          <idle>-0     (-----) [003] d..2 29484.593833: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
51467     kworker/0:0-13450 (13450) [000] d..2 29484.593835: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51468          <idle>-0     (-----) [000] d..1 29484.593843: cpu_idle: state=0 cpu_id=0
51469         rcuop/4-45    (   45) [001] d..3 29484.593843: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
51470            adbd-23484 ( 1007) [003] d..2 29484.593847: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
51471         rcuop/4-45    (   45) [001] d..2 29484.593850: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
51472            adbd-23484 ( 1007) [003] d..3 29484.593864: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
51473            adbd-23484 ( 1007) [003] d..2 29484.593909: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
51474            adbd-1007  ( 1007) [003] d..2 29484.593985: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51475          <idle>-0     (-----) [003] d..1 29484.593994: cpu_idle: state=0 cpu_id=3
51476         rcuop/5-53    (   53) [001] d..2 29484.594045: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
51477     rcu_preempt-7     (    7) [001] d..2 29484.594060: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51478          <idle>-0     (-----) [001] d..1 29484.594069: cpu_idle: state=0 cpu_id=1
51479          <idle>-0     (-----) [000] ...1 29484.594954: cpu_idle: state=4294967295 cpu_id=0
51480          <idle>-0     (-----) [000] d..1 29484.594957: cpu_idle: state=2 cpu_id=0
51481          <idle>-0     (-----) [003] ...1 29484.595372: cpu_idle: state=4294967295 cpu_id=3
51482          <idle>-0     (-----) [003] d..1 29484.595375: cpu_idle: state=2 cpu_id=3
51483              ps-13726 (13726) [005] d..2 29484.596645: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51484              ps-13726 (13726) [005] dn.3 29484.596650: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51485              ps-13726 (13726) [005] d..2 29484.596655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51486 shell svc 13722-13723 ( 1007) [005] d..2 29484.596665: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
51487 shell svc 13722-13723 ( 1007) [005] d..2 29484.596687: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51488          <idle>-0     (-----) [001] dnh2 29484.596691: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
51489          <idle>-0     (-----) [001] .n.1 29484.596695: cpu_idle: state=4294967295 cpu_id=1
51490              ps-13726 (13726) [005] d..2 29484.596697: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51491              ps-13726 (13726) [005] dn.3 29484.596701: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51492          <idle>-0     (-----) [001] d..2 29484.596702: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
51493              ps-13726 (13726) [005] d..2 29484.596704: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51494 shell svc 13722-13723 ( 1007) [005] d..2 29484.596715: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51495              ps-13726 (13726) [005] d..2 29484.596722: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51496              ps-13726 (13726) [005] dn.3 29484.596725: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51497              ps-13726 (13726) [005] d..2 29484.596728: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51498 shell svc 13722-13723 ( 1007) [005] d..2 29484.596739: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51499            adbd-1007  ( 1007) [001] d..1 29484.596744: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51500              ps-13726 (13726) [005] d..2 29484.596745: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51501              ps-13726 (13726) [005] dn.3 29484.596748: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51502              ps-13726 (13726) [005] d..2 29484.596751: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51503 shell svc 13722-13723 ( 1007) [005] d..2 29484.596761: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51504            adbd-1007  ( 1007) [001] d..2 29484.596767: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51505              ps-13726 (13726) [005] d..2 29484.596767: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51506              ps-13726 (13726) [005] dn.3 29484.596770: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51507              ps-13726 (13726) [005] d..2 29484.596773: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51508 shell svc 13722-13723 ( 1007) [005] d..2 29484.596783: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51509              ps-13726 (13726) [005] d..2 29484.596789: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51510              ps-13726 (13726) [005] dn.3 29484.596792: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51511              ps-13726 (13726) [005] d..2 29484.596795: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51512 shell svc 13722-13723 ( 1007) [005] d..2 29484.596805: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51513            adbd-1007  ( 1007) [001] d..2 29484.596805: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51514              ps-13726 (13726) [005] d..2 29484.596811: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51515          <idle>-0     (-----) [001] d..1 29484.596813: cpu_idle: state=0 cpu_id=1
51516              ps-13726 (13726) [005] dn.3 29484.596814: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51517              ps-13726 (13726) [005] d..2 29484.596817: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51518 shell svc 13722-13723 ( 1007) [005] d..2 29484.596827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51519              ps-13726 (13726) [005] d..2 29484.596834: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51520              ps-13726 (13726) [005] dn.3 29484.596837: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51521              ps-13726 (13726) [005] d..2 29484.596840: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51522 shell svc 13722-13723 ( 1007) [005] d..2 29484.596849: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51523              ps-13726 (13726) [005] d..2 29484.596856: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51524              ps-13726 (13726) [005] dn.3 29484.596859: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51525              ps-13726 (13726) [005] d..2 29484.596862: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51526 shell svc 13722-13723 ( 1007) [005] d..2 29484.596872: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51527              ps-13726 (13726) [005] d..2 29484.596878: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51528          <idle>-0     (-----) [000] .n.1 29484.596880: cpu_idle: state=4294967295 cpu_id=0
51529              ps-13726 (13726) [005] dn.3 29484.596881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51530              ps-13726 (13726) [005] d..2 29484.596884: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51531          <idle>-0     (-----) [000] d..2 29484.596893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51532 shell svc 13722-13723 ( 1007) [005] d..2 29484.596893: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51533              ps-13726 (13726) [005] d..2 29484.596901: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51534              ps-13726 (13726) [005] dn.3 29484.596904: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51535              ps-13726 (13726) [005] d..2 29484.596907: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51536 shell svc 13722-13723 ( 1007) [005] d..2 29484.596917: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51537              ps-13726 (13726) [005] d..2 29484.596924: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51538              ps-13726 (13726) [005] dn.3 29484.596926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51539              ps-13726 (13726) [005] d..2 29484.596929: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51540 shell svc 13722-13723 ( 1007) [005] d..2 29484.596938: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51541              ps-13726 (13726) [005] d..2 29484.596946: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51542              ps-13726 (13726) [005] dn.3 29484.596949: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51543              ps-13726 (13726) [005] d..2 29484.596952: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51544            adbd-23485 ( 1007) [000] d..2 29484.596954: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51545 shell svc 13722-13723 ( 1007) [005] d..2 29484.596961: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51546              ps-13726 (13726) [005] d..2 29484.596968: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51547              ps-13726 (13726) [005] dn.3 29484.596971: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51548          <idle>-0     (-----) [000] d.h4 29484.596973: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51549              ps-13726 (13726) [005] d..2 29484.596974: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51550          <idle>-0     (-----) [000] dnh5 29484.596983: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51551 shell svc 13722-13723 ( 1007) [005] d..2 29484.596984: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51552              ps-13726 (13726) [005] d..2 29484.596990: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51553          <idle>-0     (-----) [000] d..2 29484.596991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51554              ps-13726 (13726) [005] dn.3 29484.596993: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51555              ps-13726 (13726) [005] d..2 29484.596996: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51556   kworker/u17:2-23076 (23076) [000] d..2 29484.596999: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51557   kworker/u17:2-23076 (23076) [000] d..3 29484.597005: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51558 shell svc 13722-13723 ( 1007) [005] d..2 29484.597005: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51559              ps-13726 (13726) [005] d..2 29484.597013: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51560              ps-13726 (13726) [005] dn.3 29484.597015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51561              ps-13726 (13726) [005] d..2 29484.597018: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51562   kworker/u17:2-23076 (23076) [000] d..2 29484.597022: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51563 shell svc 13722-13723 ( 1007) [005] d..2 29484.597027: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51564     kworker/0:0-13450 (13450) [000] d..2 29484.597028: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51565              ps-13726 (13726) [005] d..2 29484.597034: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51566     kworker/0:0-13450 (13450) [000] d..3 29484.597036: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51567              ps-13726 (13726) [005] dn.3 29484.597038: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51568              ps-13726 (13726) [005] d..2 29484.597040: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51569     kworker/0:0-13450 (13450) [000] d..2 29484.597045: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51570 shell svc 13722-13723 ( 1007) [005] d..2 29484.597050: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51571              ps-13726 (13726) [005] d.H2 29484.597104: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
51572              ps-13726 (13726) [005] d.H3 29484.597114: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
51573              ps-13726 (13726) [005] d..2 29484.597123: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51574              ps-13726 (13726) [005] dn.3 29484.597127: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51575              ps-13726 (13726) [005] d..2 29484.597130: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51576 shell svc 13722-13723 ( 1007) [005] d..2 29484.597142: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51577            adbd-23485 ( 1007) [000] d..2 29484.597144: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51578              ps-13726 (13726) [005] d..2 29484.597150: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51579              ps-13726 (13726) [005] dn.3 29484.597153: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51580              ps-13726 (13726) [005] d..2 29484.597156: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51581          <idle>-0     (-----) [000] d.h3 29484.597166: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51582 shell svc 13722-13723 ( 1007) [005] d..2 29484.597166: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51583              ps-13726 (13726) [005] d..2 29484.597173: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51584          <idle>-0     (-----) [000] dnh4 29484.597173: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51585              ps-13726 (13726) [005] dn.3 29484.597176: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51586              ps-13726 (13726) [005] d..2 29484.597178: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51587          <idle>-0     (-----) [000] d..2 29484.597183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51588 shell svc 13722-13723 ( 1007) [005] d..2 29484.597188: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51589   kworker/u17:2-23076 (23076) [000] d..2 29484.597190: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51590              ps-13726 (13726) [005] d..2 29484.597195: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51591   kworker/u17:2-23076 (23076) [000] d..3 29484.597196: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51592              ps-13726 (13726) [005] dn.3 29484.597198: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51593              ps-13726 (13726) [005] d..2 29484.597201: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51594 shell svc 13722-13723 ( 1007) [005] d..2 29484.597211: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51595   kworker/u17:2-23076 (23076) [000] d..2 29484.597213: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51596     kworker/0:0-13450 (13450) [000] d..2 29484.597218: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51597              ps-13726 (13726) [005] d..2 29484.597218: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51598              ps-13726 (13726) [005] dn.3 29484.597221: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51599              ps-13726 (13726) [005] d..2 29484.597224: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51600     kworker/0:0-13450 (13450) [000] d..3 29484.597226: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51601 shell svc 13722-13723 ( 1007) [005] d..2 29484.597234: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51602     kworker/0:0-13450 (13450) [000] d..2 29484.597235: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51603              ps-13726 (13726) [005] d..2 29484.597240: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51604              ps-13726 (13726) [005] dn.3 29484.597243: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51605              ps-13726 (13726) [005] d..2 29484.597245: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51606 shell svc 13722-13723 ( 1007) [005] d..2 29484.597255: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51607            adbd-23485 ( 1007) [000] d..2 29484.597257: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51608              ps-13726 (13726) [005] d..2 29484.597261: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51609              ps-13726 (13726) [005] dn.3 29484.597264: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51610              ps-13726 (13726) [005] d..2 29484.597267: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51611          <idle>-0     (-----) [000] d..1 29484.597268: cpu_idle: state=0 cpu_id=0
51612          <idle>-0     (-----) [007] .n.1 29484.597274: cpu_idle: state=4294967295 cpu_id=7
51613 shell svc 13722-13723 ( 1007) [005] d..2 29484.597276: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51614          <idle>-0     (-----) [007] d..2 29484.597283: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
51615              ps-13726 (13726) [005] d..2 29484.597284: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51616              ps-13726 (13726) [005] dn.3 29484.597287: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51617              ps-13726 (13726) [005] d..2 29484.597289: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51618 shell svc 13722-13723 ( 1007) [005] d..2 29484.597299: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51619         sugov:4-560   (  560) [007] .... 29484.597300: clk_set_rate: perfcl_clk 1766400000
51620         sugov:4-560   (  560) [007] .... 29484.597302: clk_set_rate: cpu7_perfcl_clk 1459200000
51621              ps-13726 (13726) [005] d..2 29484.597305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51622         sugov:4-560   (  560) [007] .... 29484.597307: clk_set_rate: cpu6_perfcl_clk 1459200000
51623              ps-13726 (13726) [005] dn.3 29484.597308: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51624              ps-13726 (13726) [005] d..2 29484.597311: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51625         sugov:4-560   (  560) [007] .... 29484.597311: clk_set_rate: cpu5_perfcl_clk 1459200000
51626         sugov:4-560   (  560) [007] .... 29484.597316: clk_set_rate: cpu4_perfcl_clk 1766400000
51627 shell svc 13722-13723 ( 1007) [005] d..2 29484.597320: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51628         sugov:4-560   (  560) [007] .... 29484.597321: cpu_frequency: state=1766400 cpu_id=4
51629              ps-13726 (13726) [005] d..2 29484.597327: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51630              ps-13726 (13726) [005] dn.3 29484.597329: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51631         sugov:4-560   (  560) [007] .... 29484.597330: cpu_frequency: state=1766400 cpu_id=5
51632         sugov:4-560   (  560) [007] .... 29484.597332: cpu_frequency: state=1766400 cpu_id=6
51633              ps-13726 (13726) [005] d..2 29484.597332: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51634         sugov:4-560   (  560) [007] .... 29484.597333: cpu_frequency: state=1766400 cpu_id=7
51635 shell svc 13722-13723 ( 1007) [005] d..2 29484.597341: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51636         sugov:4-560   (  560) [007] d..2 29484.597347: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
51637              ps-13726 (13726) [005] d..2 29484.597347: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51638              ps-13726 (13726) [005] dn.3 29484.597350: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51639              ps-13726 (13726) [005] d..2 29484.597353: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51640          <idle>-0     (-----) [007] d..1 29484.597353: cpu_idle: state=2 cpu_id=7
51641 shell svc 13722-13723 ( 1007) [005] d..2 29484.597362: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51642              ps-13726 (13726) [005] d..2 29484.597369: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51643              ps-13726 (13726) [005] dn.3 29484.597372: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51644              ps-13726 (13726) [005] d..2 29484.597374: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51645 shell svc 13722-13723 ( 1007) [005] d..2 29484.597387: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51646          <idle>-0     (-----) [000] d.h3 29484.597389: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51647              ps-13726 (13726) [005] d..2 29484.597394: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51648          <idle>-0     (-----) [000] dnh4 29484.597396: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51649              ps-13726 (13726) [005] dn.3 29484.597397: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51650              ps-13726 (13726) [005] d..2 29484.597400: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51651          <idle>-0     (-----) [000] .n.1 29484.597401: cpu_idle: state=4294967295 cpu_id=0
51652 shell svc 13722-13723 ( 1007) [005] d..2 29484.597408: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51653          <idle>-0     (-----) [000] d..2 29484.597409: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51654              ps-13726 (13726) [005] d..2 29484.597413: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51655              ps-13726 (13726) [005] dn.3 29484.597416: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51656   kworker/u17:2-23076 (23076) [000] d..2 29484.597416: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51657              ps-13726 (13726) [005] d..2 29484.597418: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51658   kworker/u17:2-23076 (23076) [000] d..3 29484.597422: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51659 shell svc 13722-13723 ( 1007) [005] d..2 29484.597426: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51660              ps-13726 (13726) [005] d..2 29484.597432: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51661              ps-13726 (13726) [005] dn.3 29484.597434: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51662              ps-13726 (13726) [005] d..2 29484.597436: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51663   kworker/u17:2-23076 (23076) [000] d..2 29484.597438: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51664 shell svc 13722-13723 ( 1007) [005] d..2 29484.597444: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51665     kworker/0:0-13450 (13450) [000] d..2 29484.597445: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
51666              ps-13726 (13726) [005] d..2 29484.597450: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51667              ps-13726 (13726) [005] dn.3 29484.597452: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51668              ps-13726 (13726) [005] d..2 29484.597455: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51669 shell svc 13722-13723 ( 1007) [005] d..2 29484.597463: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51670              ps-13726 (13726) [005] d..2 29484.597468: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51671     kworker/0:0-13450 (13450) [000] d..3 29484.597470: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
51672              ps-13726 (13726) [005] dn.3 29484.597470: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51673              ps-13726 (13726) [005] d..2 29484.597473: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51674          <idle>-0     (-----) [001] .n.1 29484.597475: cpu_idle: state=4294967295 cpu_id=1
51675 shell svc 13722-13723 ( 1007) [005] d..2 29484.597481: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51676          <idle>-0     (-----) [001] d..2 29484.597484: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
51677     kworker/0:0-13450 (13450) [000] d..2 29484.597485: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51678              ps-13726 (13726) [005] d..2 29484.597486: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51679              ps-13726 (13726) [005] dn.3 29484.597489: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51680              ps-13726 (13726) [005] d..2 29484.597491: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51681          <idle>-0     (-----) [000] d..1 29484.597493: cpu_idle: state=0 cpu_id=0
51682            adbd-23484 ( 1007) [001] d..2 29484.597497: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
51683 shell svc 13722-13723 ( 1007) [005] d..2 29484.597499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51684              ps-13726 (13726) [005] d..2 29484.597505: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51685            adbd-23484 ( 1007) [001] d..3 29484.597505: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
51686              ps-13726 (13726) [005] dn.3 29484.597507: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51687              ps-13726 (13726) [005] d..2 29484.597510: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51688 shell svc 13722-13723 ( 1007) [005] d..2 29484.597518: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51689              ps-13726 (13726) [005] d..2 29484.597524: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51690              ps-13726 (13726) [005] dn.3 29484.597527: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51691              ps-13726 (13726) [005] d..2 29484.597530: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51692 shell svc 13722-13723 ( 1007) [005] d..2 29484.597538: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51693              ps-13726 (13726) [005] d..2 29484.597544: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51694              ps-13726 (13726) [005] dn.3 29484.597546: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51695              ps-13726 (13726) [005] d..2 29484.597549: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51696            adbd-23484 ( 1007) [001] d..2 29484.597553: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
51697 shell svc 13722-13723 ( 1007) [005] d..2 29484.597557: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51698              ps-13726 (13726) [005] d..2 29484.597562: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51699              ps-13726 (13726) [005] dn.3 29484.597565: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51700              ps-13726 (13726) [005] d..2 29484.597567: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51701 shell svc 13722-13723 ( 1007) [005] d..2 29484.597575: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51702              ps-13726 (13726) [005] d..2 29484.597581: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51703              ps-13726 (13726) [005] dn.3 29484.597583: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51704              ps-13726 (13726) [005] d..2 29484.597586: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51705 shell svc 13722-13723 ( 1007) [005] d..2 29484.597594: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51706              ps-13726 (13726) [005] d..2 29484.597600: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51707              ps-13726 (13726) [005] dn.3 29484.597603: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51708              ps-13726 (13726) [005] d..2 29484.597605: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51709 shell svc 13722-13723 ( 1007) [005] d..2 29484.597613: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51710              ps-13726 (13726) [005] d..2 29484.597619: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51711              ps-13726 (13726) [005] dn.3 29484.597621: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51712              ps-13726 (13726) [005] d..2 29484.597624: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51713 shell svc 13722-13723 ( 1007) [005] d..2 29484.597632: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51714              ps-13726 (13726) [005] d..2 29484.597638: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51715              ps-13726 (13726) [005] dn.3 29484.597640: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51716              ps-13726 (13726) [005] d..2 29484.597642: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51717 shell svc 13722-13723 ( 1007) [005] d..2 29484.597651: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51718              ps-13726 (13726) [005] d..2 29484.597656: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51719              ps-13726 (13726) [005] dn.3 29484.597658: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51720            adbd-1007  ( 1007) [001] d..1 29484.597660: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51721              ps-13726 (13726) [005] d..2 29484.597661: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51722 shell svc 13722-13723 ( 1007) [005] d..2 29484.597669: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51723            adbd-1007  ( 1007) [001] d..2 29484.597672: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51724              ps-13726 (13726) [005] d..2 29484.597675: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51725          <idle>-0     (-----) [000] .n.1 29484.597677: cpu_idle: state=4294967295 cpu_id=0
51726              ps-13726 (13726) [005] dn.3 29484.597677: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51727              ps-13726 (13726) [005] d..2 29484.597680: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51728          <idle>-0     (-----) [000] d..2 29484.597684: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51729 shell svc 13722-13723 ( 1007) [005] d..2 29484.597688: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51730              ps-13726 (13726) [005] d..2 29484.597693: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51731              ps-13726 (13726) [005] dn.3 29484.597695: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51732              ps-13726 (13726) [005] d..2 29484.597697: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51733 shell svc 13722-13723 ( 1007) [005] d..2 29484.597706: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51734            adbd-1007  ( 1007) [001] d..2 29484.597709: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51735              ps-13726 (13726) [005] d..2 29484.597711: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51736              ps-13726 (13726) [005] dn.3 29484.597714: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51737          <idle>-0     (-----) [001] d..1 29484.597715: cpu_idle: state=0 cpu_id=1
51738              ps-13726 (13726) [005] d..2 29484.597716: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51739 shell svc 13722-13723 ( 1007) [005] d..2 29484.597724: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51740              ps-13726 (13726) [005] d..2 29484.597730: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51741              ps-13726 (13726) [005] dn.3 29484.597732: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51742            adbd-23485 ( 1007) [000] d..2 29484.597734: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51743              ps-13726 (13726) [005] d..2 29484.597735: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51744 shell svc 13722-13723 ( 1007) [005] d..2 29484.597743: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51745              ps-13726 (13726) [005] d..2 29484.597749: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51746              ps-13726 (13726) [005] dn.3 29484.597751: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51747          <idle>-0     (-----) [000] d.h4 29484.597751: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51748              ps-13726 (13726) [005] d..2 29484.597753: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51749          <idle>-0     (-----) [000] dnh5 29484.597758: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51750 shell svc 13722-13723 ( 1007) [005] d..2 29484.597762: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51751          <idle>-0     (-----) [000] d..2 29484.597767: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51752              ps-13726 (13726) [005] d..2 29484.597767: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51753              ps-13726 (13726) [005] dn.3 29484.597770: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51754              ps-13726 (13726) [005] d..2 29484.597772: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51755   kworker/u17:2-23076 (23076) [000] d..2 29484.597774: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51756   kworker/u17:2-23076 (23076) [000] d..3 29484.597779: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51757 shell svc 13722-13723 ( 1007) [005] d..2 29484.597780: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51758              ps-13726 (13726) [005] d..2 29484.597786: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51759              ps-13726 (13726) [005] dn.3 29484.597788: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51760              ps-13726 (13726) [005] d..2 29484.597790: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51761   kworker/u17:2-23076 (23076) [000] d..2 29484.597797: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51762 shell svc 13722-13723 ( 1007) [005] d..2 29484.597798: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51763     kworker/0:0-13450 (13450) [000] d..2 29484.597802: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51764              ps-13726 (13726) [005] d..2 29484.597805: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51765              ps-13726 (13726) [005] dn.3 29484.597807: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51766              ps-13726 (13726) [005] d..2 29484.597810: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51767     kworker/0:0-13450 (13450) [000] d..3 29484.597811: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51768 shell svc 13722-13723 ( 1007) [005] d..2 29484.597818: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51769     kworker/0:0-13450 (13450) [000] d..2 29484.597819: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51770              ps-13726 (13726) [005] d..2 29484.597824: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51771              ps-13726 (13726) [005] dn.3 29484.597827: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51772              ps-13726 (13726) [005] d..2 29484.597829: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51773 shell svc 13722-13723 ( 1007) [005] d..2 29484.597837: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51774              ps-13726 (13726) [005] d..2 29484.597842: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51775              ps-13726 (13726) [005] dn.3 29484.597844: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51776              ps-13726 (13726) [005] d..2 29484.597847: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51777 shell svc 13722-13723 ( 1007) [005] d..2 29484.597855: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51778              ps-13726 (13726) [005] d..2 29484.597860: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51779              ps-13726 (13726) [005] dn.3 29484.597863: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51780              ps-13726 (13726) [005] d..2 29484.597866: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51781            adbd-23485 ( 1007) [000] d..2 29484.597868: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51782 shell svc 13722-13723 ( 1007) [005] d..2 29484.597874: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51783          <idle>-0     (-----) [000] d..1 29484.597878: cpu_idle: state=0 cpu_id=0
51784              ps-13726 (13726) [005] d..2 29484.597879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51785              ps-13726 (13726) [005] dn.3 29484.597881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51786              ps-13726 (13726) [005] d..2 29484.597884: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51787 shell svc 13722-13723 ( 1007) [005] d..2 29484.597892: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51788              ps-13726 (13726) [005] d..2 29484.597898: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51789              ps-13726 (13726) [005] dn.3 29484.597901: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51790              ps-13726 (13726) [005] d..2 29484.597903: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51791 shell svc 13722-13723 ( 1007) [005] d..2 29484.597912: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51792              ps-13726 (13726) [005] d..2 29484.597917: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51793              ps-13726 (13726) [005] dn.3 29484.597920: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51794              ps-13726 (13726) [005] d..2 29484.597922: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51795          <idle>-0     (-----) [000] d.h3 29484.597922: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51796          <idle>-0     (-----) [000] dnh4 29484.597928: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51797 shell svc 13722-13723 ( 1007) [005] d..2 29484.597930: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51798          <idle>-0     (-----) [000] .n.1 29484.597934: cpu_idle: state=4294967295 cpu_id=0
51799              ps-13726 (13726) [005] d..2 29484.597935: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51800              ps-13726 (13726) [005] dn.3 29484.597938: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51801          <idle>-0     (-----) [000] d..2 29484.597940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51802              ps-13726 (13726) [005] d..2 29484.597940: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51803   kworker/u17:2-23076 (23076) [000] d..2 29484.597948: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51804 shell svc 13722-13723 ( 1007) [005] d..2 29484.597948: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51805              ps-13726 (13726) [005] d..2 29484.597954: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51806   kworker/u17:2-23076 (23076) [000] d..3 29484.597954: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51807              ps-13726 (13726) [005] dn.3 29484.597957: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51808              ps-13726 (13726) [005] d..2 29484.597959: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51809 shell svc 13722-13723 ( 1007) [005] d..2 29484.597967: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51810   kworker/u17:2-23076 (23076) [000] d..2 29484.597971: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51811              ps-13726 (13726) [005] d..2 29484.597973: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51812              ps-13726 (13726) [005] dn.3 29484.597975: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51813     kworker/0:0-13450 (13450) [000] d..2 29484.597976: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51814              ps-13726 (13726) [005] d..2 29484.597978: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51815     kworker/0:0-13450 (13450) [000] d..3 29484.597985: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51816 shell svc 13722-13723 ( 1007) [005] d..2 29484.597985: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51817              ps-13726 (13726) [005] d..2 29484.597991: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51818     kworker/0:0-13450 (13450) [000] d..2 29484.597993: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51819              ps-13726 (13726) [005] dn.3 29484.597994: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51820              ps-13726 (13726) [005] d..2 29484.597996: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51821 shell svc 13722-13723 ( 1007) [005] d..2 29484.598004: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51822              ps-13726 (13726) [005] d..2 29484.598010: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51823            adbd-23485 ( 1007) [000] d..2 29484.598011: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51824              ps-13726 (13726) [005] dn.3 29484.598013: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51825              ps-13726 (13726) [005] d..2 29484.598016: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51826          <idle>-0     (-----) [000] d..1 29484.598019: cpu_idle: state=0 cpu_id=0
51827 shell svc 13722-13723 ( 1007) [005] d..2 29484.598024: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51828              ps-13726 (13726) [005] d..2 29484.598030: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51829              ps-13726 (13726) [005] dn.3 29484.598033: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51830              ps-13726 (13726) [005] d..2 29484.598035: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51831 shell svc 13722-13723 ( 1007) [005] d..2 29484.598043: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51832              ps-13726 (13726) [005] d..2 29484.598049: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51833              ps-13726 (13726) [005] dn.3 29484.598052: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51834              ps-13726 (13726) [005] d..2 29484.598054: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51835 shell svc 13722-13723 ( 1007) [005] d..2 29484.598062: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51836              ps-13726 (13726) [005] d..2 29484.598068: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51837              ps-13726 (13726) [005] dn.3 29484.598070: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51838              ps-13726 (13726) [005] d..2 29484.598072: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51839 shell svc 13722-13723 ( 1007) [005] d..2 29484.598080: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51840              ps-13726 (13726) [005] d..2 29484.598087: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51841              ps-13726 (13726) [005] dn.3 29484.598089: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51842              ps-13726 (13726) [005] d..2 29484.598092: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51843 shell svc 13722-13723 ( 1007) [005] d..2 29484.598100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51844              ps-13726 (13726) [005] d..2 29484.598105: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51845              ps-13726 (13726) [005] dn.3 29484.598108: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51846              ps-13726 (13726) [005] d..2 29484.598110: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51847 shell svc 13722-13723 ( 1007) [005] d..2 29484.598118: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51848              ps-13726 (13726) [005] d..2 29484.598124: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51849              ps-13726 (13726) [005] dn.3 29484.598127: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51850              ps-13726 (13726) [005] d..2 29484.598129: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51851 shell svc 13722-13723 ( 1007) [005] d..2 29484.598137: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51852          <idle>-0     (-----) [000] d.h3 29484.598142: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51853              ps-13726 (13726) [005] d..2 29484.598143: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51854              ps-13726 (13726) [005] dn.3 29484.598146: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51855          <idle>-0     (-----) [000] dnh4 29484.598148: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51856              ps-13726 (13726) [005] d..2 29484.598148: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51857          <idle>-0     (-----) [000] .n.1 29484.598153: cpu_idle: state=4294967295 cpu_id=0
51858 shell svc 13722-13723 ( 1007) [005] d..2 29484.598156: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51859          <idle>-0     (-----) [000] d..2 29484.598160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51860              ps-13726 (13726) [005] d..2 29484.598162: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51861              ps-13726 (13726) [005] dn.3 29484.598165: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51862              ps-13726 (13726) [005] d..2 29484.598167: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51863   kworker/u17:2-23076 (23076) [000] d..2 29484.598168: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51864   kworker/u17:2-23076 (23076) [000] d..3 29484.598174: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51865 shell svc 13722-13723 ( 1007) [005] d..2 29484.598175: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51866              ps-13726 (13726) [005] d..2 29484.598181: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51867              ps-13726 (13726) [005] dn.3 29484.598183: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51868              ps-13726 (13726) [005] d..2 29484.598186: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51869   kworker/u17:2-23076 (23076) [000] d..2 29484.598191: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51870 shell svc 13722-13723 ( 1007) [005] d..2 29484.598193: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51871     kworker/0:0-13450 (13450) [000] d..2 29484.598198: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
51872              ps-13726 (13726) [005] d..2 29484.598200: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51873              ps-13726 (13726) [005] dn.3 29484.598203: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51874              ps-13726 (13726) [005] d..2 29484.598207: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51875     kworker/0:0-13450 (13450) [000] d..3 29484.598207: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
51876          <idle>-0     (-----) [001] .n.1 29484.598212: cpu_idle: state=4294967295 cpu_id=1
51877 shell svc 13722-13723 ( 1007) [005] d..2 29484.598215: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51878          <idle>-0     (-----) [001] d..2 29484.598219: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
51879              ps-13726 (13726) [005] d..2 29484.598220: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51880     kworker/0:0-13450 (13450) [000] d..2 29484.598222: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51881              ps-13726 (13726) [005] dn.3 29484.598223: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51882              ps-13726 (13726) [005] d..2 29484.598225: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51883          <idle>-0     (-----) [000] d..1 29484.598229: cpu_idle: state=0 cpu_id=0
51884            adbd-23484 ( 1007) [001] d..2 29484.598230: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
51885 shell svc 13722-13723 ( 1007) [005] d..2 29484.598233: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51886            adbd-23484 ( 1007) [001] d..3 29484.598237: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
51887              ps-13726 (13726) [005] d..2 29484.598239: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51888              ps-13726 (13726) [005] dn.3 29484.598242: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51889              ps-13726 (13726) [005] d..2 29484.598244: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51890 shell svc 13722-13723 ( 1007) [005] d..2 29484.598252: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51891              ps-13726 (13726) [005] d..2 29484.598258: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51892              ps-13726 (13726) [005] dn.3 29484.598260: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51893              ps-13726 (13726) [005] d..2 29484.598262: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51894 shell svc 13722-13723 ( 1007) [005] d..2 29484.598270: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51895              ps-13726 (13726) [005] d..2 29484.598276: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51896              ps-13726 (13726) [005] dn.3 29484.598279: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51897              ps-13726 (13726) [005] d..2 29484.598281: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51898            adbd-23484 ( 1007) [001] d..2 29484.598283: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
51899 shell svc 13722-13723 ( 1007) [005] d..2 29484.598289: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51900              ps-13726 (13726) [005] d..2 29484.598295: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51901              ps-13726 (13726) [005] dn.3 29484.598297: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51902              ps-13726 (13726) [005] d..2 29484.598300: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51903 shell svc 13722-13723 ( 1007) [005] d..2 29484.598308: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51904              ps-13726 (13726) [005] d..2 29484.598313: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51905              ps-13726 (13726) [005] dn.3 29484.598316: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51906              ps-13726 (13726) [005] d..2 29484.598318: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51907 shell svc 13722-13723 ( 1007) [005] d..2 29484.598327: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51908              ps-13726 (13726) [005] d..2 29484.598332: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51909              ps-13726 (13726) [005] dn.3 29484.598335: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51910              ps-13726 (13726) [005] d..2 29484.598337: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51911 shell svc 13722-13723 ( 1007) [005] d..2 29484.598345: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51912              ps-13726 (13726) [005] d..2 29484.598351: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51913              ps-13726 (13726) [005] dn.3 29484.598354: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51914              ps-13726 (13726) [005] d..2 29484.598356: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51915 shell svc 13722-13723 ( 1007) [005] d..2 29484.598365: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51916              ps-13726 (13726) [005] d..2 29484.598370: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51917              ps-13726 (13726) [005] dn.3 29484.598373: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51918              ps-13726 (13726) [005] d..2 29484.598375: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51919 shell svc 13722-13723 ( 1007) [005] d..2 29484.598384: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51920            adbd-1007  ( 1007) [001] d..1 29484.598387: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51921              ps-13726 (13726) [005] d..2 29484.598389: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51922              ps-13726 (13726) [005] dn.3 29484.598392: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51923              ps-13726 (13726) [005] d..2 29484.598394: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51924            adbd-1007  ( 1007) [001] d..2 29484.598399: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51925 shell svc 13722-13723 ( 1007) [005] d..2 29484.598402: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51926          <idle>-0     (-----) [000] .n.1 29484.598404: cpu_idle: state=4294967295 cpu_id=0
51927              ps-13726 (13726) [005] d..2 29484.598409: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51928          <idle>-0     (-----) [000] d..2 29484.598410: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
51929              ps-13726 (13726) [005] dn.3 29484.598412: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51930              ps-13726 (13726) [005] d..2 29484.598414: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51931 shell svc 13722-13723 ( 1007) [005] d..2 29484.598422: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51932              ps-13726 (13726) [005] d..2 29484.598428: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51933              ps-13726 (13726) [005] dn.3 29484.598430: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51934              ps-13726 (13726) [005] d..2 29484.598433: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51935            adbd-1007  ( 1007) [001] d..2 29484.598435: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51936 shell svc 13722-13723 ( 1007) [005] d..2 29484.598441: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51937          <idle>-0     (-----) [001] d..1 29484.598442: cpu_idle: state=0 cpu_id=1
51938              ps-13726 (13726) [005] d..2 29484.598446: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51939              ps-13726 (13726) [005] dn.3 29484.598449: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51940              ps-13726 (13726) [005] d..2 29484.598451: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51941 shell svc 13722-13723 ( 1007) [005] d..2 29484.598459: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51942            adbd-23485 ( 1007) [000] d..2 29484.598460: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51943              ps-13726 (13726) [005] d..2 29484.598465: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51944              ps-13726 (13726) [005] dn.3 29484.598468: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51945              ps-13726 (13726) [005] d..2 29484.598470: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51946 shell svc 13722-13723 ( 1007) [005] d..2 29484.598478: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51947          <idle>-0     (-----) [000] d.h3 29484.598480: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51948              ps-13726 (13726) [005] d..2 29484.598483: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51949              ps-13726 (13726) [005] dn.3 29484.598485: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51950          <idle>-0     (-----) [000] dnh4 29484.598486: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51951              ps-13726 (13726) [005] d..2 29484.598488: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51952          <idle>-0     (-----) [000] d..2 29484.598496: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51953 shell svc 13722-13723 ( 1007) [005] d..2 29484.598496: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51954              ps-13726 (13726) [005] d..2 29484.598502: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51955   kworker/u17:2-23076 (23076) [000] d..2 29484.598504: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51956              ps-13726 (13726) [005] dn.3 29484.598505: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51957              ps-13726 (13726) [005] d..2 29484.598507: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51958   kworker/u17:2-23076 (23076) [000] d..3 29484.598510: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51959 shell svc 13722-13723 ( 1007) [005] d..2 29484.598515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51960              ps-13726 (13726) [005] d..2 29484.598520: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51961              ps-13726 (13726) [005] dn.3 29484.598523: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51962              ps-13726 (13726) [005] d..2 29484.598525: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51963   kworker/u17:2-23076 (23076) [000] d..2 29484.598528: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51964     kworker/0:0-13450 (13450) [000] d..2 29484.598532: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51965 shell svc 13722-13723 ( 1007) [005] d..2 29484.598533: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51966              ps-13726 (13726) [005] d..2 29484.598539: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51967     kworker/0:0-13450 (13450) [000] d..3 29484.598541: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51968              ps-13726 (13726) [005] dn.3 29484.598542: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51969              ps-13726 (13726) [005] d..2 29484.598546: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51970     kworker/0:0-13450 (13450) [000] d..2 29484.598550: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51971 shell svc 13722-13723 ( 1007) [005] d..2 29484.598554: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51972              ps-13726 (13726) [005] d..2 29484.598559: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51973              ps-13726 (13726) [005] dn.3 29484.598562: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51974              ps-13726 (13726) [005] d..2 29484.598564: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51975 shell svc 13722-13723 ( 1007) [005] d..2 29484.598572: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51976            adbd-23485 ( 1007) [000] d..2 29484.598597: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51977          <idle>-0     (-----) [000] d..1 29484.598607: cpu_idle: state=0 cpu_id=0
51978          <idle>-0     (-----) [000] d.h3 29484.598649: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51979          <idle>-0     (-----) [000] dnh4 29484.598655: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
51980          <idle>-0     (-----) [000] .n.1 29484.598661: cpu_idle: state=4294967295 cpu_id=0
51981          <idle>-0     (-----) [000] d..2 29484.598668: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
51982   kworker/u17:2-23076 (23076) [000] d..2 29484.598675: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51983   kworker/u17:2-23076 (23076) [000] d..3 29484.598681: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
51984   kworker/u17:2-23076 (23076) [000] d..2 29484.598697: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
51985     kworker/0:0-13450 (13450) [000] d..2 29484.598703: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
51986              ps-13726 (13726) [005] d..2 29484.598707: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51987              ps-13726 (13726) [005] dn.3 29484.598711: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51988     kworker/0:0-13450 (13450) [000] d..3 29484.598712: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
51989              ps-13726 (13726) [005] d..2 29484.598714: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51990     kworker/0:0-13450 (13450) [000] d..2 29484.598720: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
51991 shell svc 13722-13723 ( 1007) [005] d..2 29484.598726: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51992              ps-13726 (13726) [005] d..2 29484.598732: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51993              ps-13726 (13726) [005] dn.3 29484.598735: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51994            adbd-23485 ( 1007) [000] d..2 29484.598738: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51995              ps-13726 (13726) [005] d..2 29484.598738: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
51996          <idle>-0     (-----) [000] d..1 29484.598746: cpu_idle: state=0 cpu_id=0
51997 shell svc 13722-13723 ( 1007) [005] d..2 29484.598747: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
51998              ps-13726 (13726) [005] d..2 29484.598753: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
51999              ps-13726 (13726) [005] dn.3 29484.598756: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52000              ps-13726 (13726) [005] d..2 29484.598758: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52001 shell svc 13722-13723 ( 1007) [005] d..2 29484.598767: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52002          <idle>-0     (-----) [000] d.h3 29484.598824: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52003          <idle>-0     (-----) [000] dnh4 29484.598830: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52004          <idle>-0     (-----) [000] .n.1 29484.598835: cpu_idle: state=4294967295 cpu_id=0
52005          <idle>-0     (-----) [000] d..2 29484.598841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52006   kworker/u17:2-23076 (23076) [000] d..2 29484.598848: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52007   kworker/u17:2-23076 (23076) [000] d..3 29484.598854: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52008   kworker/u17:2-23076 (23076) [000] d..2 29484.598871: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52009     kworker/0:0-13450 (13450) [000] d..2 29484.598877: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
52010     kworker/0:0-13450 (13450) [000] d..3 29484.598886: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
52011          <idle>-0     (-----) [001] .n.1 29484.598891: cpu_idle: state=4294967295 cpu_id=1
52012          <idle>-0     (-----) [001] d..2 29484.598898: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
52013     kworker/0:0-13450 (13450) [000] d..2 29484.598900: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52014          <idle>-0     (-----) [000] d..1 29484.598908: cpu_idle: state=0 cpu_id=0
52015            adbd-23484 ( 1007) [001] d..2 29484.598910: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
52016            adbd-23484 ( 1007) [001] d..3 29484.598917: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
52017              ps-13726 (13726) [005] d..2 29484.598958: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52018              ps-13726 (13726) [005] dn.3 29484.598962: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52019              ps-13726 (13726) [005] d..2 29484.598965: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52020            adbd-23484 ( 1007) [001] d..2 29484.598967: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52021 shell svc 13722-13723 ( 1007) [005] d..2 29484.598976: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52022              ps-13726 (13726) [005] d..2 29484.598983: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52023              ps-13726 (13726) [005] dn.3 29484.598985: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52024              ps-13726 (13726) [005] d..2 29484.598988: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52025 shell svc 13722-13723 ( 1007) [005] d..2 29484.598997: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52026              ps-13726 (13726) [005] d..2 29484.599002: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52027              ps-13726 (13726) [005] dn.3 29484.599005: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52028              ps-13726 (13726) [005] d..2 29484.599008: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52029 shell svc 13722-13723 ( 1007) [005] d..2 29484.599016: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52030              ps-13726 (13726) [005] d..2 29484.599021: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52031              ps-13726 (13726) [005] dn.3 29484.599024: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52032              ps-13726 (13726) [005] d..2 29484.599026: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52033 shell svc 13722-13723 ( 1007) [005] d..2 29484.599035: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52034              ps-13726 (13726) [005] d..2 29484.599041: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52035              ps-13726 (13726) [005] dn.3 29484.599044: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52036            adbd-1007  ( 1007) [001] d..1 29484.599044: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
52037              ps-13726 (13726) [005] d..2 29484.599046: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52038 shell svc 13722-13723 ( 1007) [005] d..2 29484.599055: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52039            adbd-1007  ( 1007) [001] d..2 29484.599067: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
52040          <idle>-0     (-----) [000] .n.1 29484.599073: cpu_idle: state=4294967295 cpu_id=0
52041          <idle>-0     (-----) [000] d..2 29484.599079: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52042            adbd-1007  ( 1007) [001] d..2 29484.599103: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52043          <idle>-0     (-----) [001] d..1 29484.599110: cpu_idle: state=0 cpu_id=1
52044            adbd-23485 ( 1007) [000] d..2 29484.599128: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52045          <idle>-0     (-----) [000] d.h4 29484.599146: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52046          <idle>-0     (-----) [000] dnh5 29484.599155: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52047          <idle>-0     (-----) [000] d..2 29484.599163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52048   kworker/u17:2-23076 (23076) [000] d..2 29484.599170: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52049   kworker/u17:2-23076 (23076) [000] d..3 29484.599175: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52050   kworker/u17:2-23076 (23076) [000] d..2 29484.599192: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52051     kworker/0:0-13450 (13450) [000] d..2 29484.599197: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
52052     kworker/0:0-13450 (13450) [000] d..3 29484.599205: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
52053     kworker/0:0-13450 (13450) [000] d..2 29484.599213: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
52054              ps-13726 (13726) [005] d..2 29484.599246: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52055              ps-13726 (13726) [005] dn.3 29484.599250: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52056              ps-13726 (13726) [005] d..2 29484.599253: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52057            adbd-23485 ( 1007) [000] d..2 29484.599259: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52058 shell svc 13722-13723 ( 1007) [005] d..2 29484.599265: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52059              ps-13726 (13726) [005] d..2 29484.599271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52060              ps-13726 (13726) [005] dn.3 29484.599274: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52061              ps-13726 (13726) [005] d..2 29484.599276: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52062          <idle>-0     (-----) [000] d.h3 29484.599280: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52063 shell svc 13722-13723 ( 1007) [005] d..2 29484.599286: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52064          <idle>-0     (-----) [000] dnh4 29484.599287: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52065              ps-13726 (13726) [005] d..2 29484.599291: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52066              ps-13726 (13726) [005] dn.3 29484.599294: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52067          <idle>-0     (-----) [000] d..2 29484.599297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52068              ps-13726 (13726) [005] d..2 29484.599297: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52069   kworker/u17:2-23076 (23076) [000] d..2 29484.599305: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52070 shell svc 13722-13723 ( 1007) [005] d..2 29484.599306: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52071   kworker/u17:2-23076 (23076) [000] d..3 29484.599310: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52072              ps-13726 (13726) [005] d..2 29484.599312: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52073              ps-13726 (13726) [005] dn.3 29484.599314: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52074              ps-13726 (13726) [005] d..2 29484.599317: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52075 shell svc 13722-13723 ( 1007) [005] d..2 29484.599325: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52076   kworker/u17:2-23076 (23076) [000] d..2 29484.599327: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52077              ps-13726 (13726) [005] d..2 29484.599330: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52078     kworker/0:0-13450 (13450) [000] d..2 29484.599332: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
52079              ps-13726 (13726) [005] dn.3 29484.599333: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52080              ps-13726 (13726) [005] d..2 29484.599336: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52081     kworker/0:0-13450 (13450) [000] d..3 29484.599341: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
52082 shell svc 13722-13723 ( 1007) [005] d..2 29484.599344: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52083     kworker/0:0-13450 (13450) [000] d..2 29484.599351: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
52084            adbd-23485 ( 1007) [000] d..2 29484.599369: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52085          <idle>-0     (-----) [000] d..1 29484.599378: cpu_idle: state=0 cpu_id=0
52086          <idle>-0     (-----) [000] d.h3 29484.599485: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52087          <idle>-0     (-----) [000] dnh4 29484.599491: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52088          <idle>-0     (-----) [000] .n.1 29484.599497: cpu_idle: state=4294967295 cpu_id=0
52089          <idle>-0     (-----) [000] d..2 29484.599503: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52090   kworker/u17:2-23076 (23076) [000] d..2 29484.599510: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52091   kworker/u17:2-23076 (23076) [000] d..3 29484.599515: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52092   kworker/u17:2-23076 (23076) [000] d..2 29484.599533: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52093     kworker/0:0-13450 (13450) [000] d..2 29484.599539: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
52094     kworker/0:0-13450 (13450) [000] d..3 29484.599561: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52095     kworker/0:0-13450 (13450) [000] d..2 29484.599570: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52096            adbd-23484 ( 1007) [000] d..2 29484.599584: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
52097            adbd-23484 ( 1007) [000] d..3 29484.599594: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52098            adbd-23484 ( 1007) [000] d..2 29484.599638: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52099              ps-13726 (13726) [005] d..2 29484.599647: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52100              ps-13726 (13726) [005] dn.3 29484.599651: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52101              ps-13726 (13726) [005] d..2 29484.599654: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52102 shell svc 13722-13723 ( 1007) [005] d..2 29484.599665: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52103              ps-13726 (13726) [005] d..2 29484.599671: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52104              ps-13726 (13726) [005] dn.3 29484.599674: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52105              ps-13726 (13726) [005] d..2 29484.599677: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52106 shell svc 13722-13723 ( 1007) [005] d..2 29484.599686: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52107              ps-13726 (13726) [005] d..2 29484.599691: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52108              ps-13726 (13726) [005] dn.3 29484.599694: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52109              ps-13726 (13726) [005] d..2 29484.599696: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52110 shell svc 13722-13723 ( 1007) [005] d..2 29484.599705: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52111              ps-13726 (13726) [005] d..2 29484.599710: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52112              ps-13726 (13726) [005] dn.3 29484.599713: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52113              ps-13726 (13726) [005] d..2 29484.599716: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52114 shell svc 13722-13723 ( 1007) [005] d..2 29484.599725: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52115              ps-13726 (13726) [005] d..2 29484.599730: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52116            adbd-1007  ( 1007) [000] d..1 29484.599730: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
52117              ps-13726 (13726) [005] dn.3 29484.599733: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52118              ps-13726 (13726) [005] d..2 29484.599735: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52119 shell svc 13722-13723 ( 1007) [005] d..2 29484.599743: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52120              ps-13726 (13726) [005] d..2 29484.599749: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52121            adbd-1007  ( 1007) [000] d..2 29484.599750: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52122              ps-13726 (13726) [005] dn.3 29484.599752: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52123              ps-13726 (13726) [005] d..2 29484.599754: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52124          <idle>-0     (-----) [001] .n.1 29484.599755: cpu_idle: state=4294967295 cpu_id=1
52125          <idle>-0     (-----) [001] d..2 29484.599761: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52126 shell svc 13722-13723 ( 1007) [005] d..2 29484.599762: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52127              ps-13726 (13726) [005] d..2 29484.599767: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52128              ps-13726 (13726) [005] dn.3 29484.599769: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52129              ps-13726 (13726) [005] d..2 29484.599772: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52130 shell svc 13722-13723 ( 1007) [005] d..2 29484.599780: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52131              ps-13726 (13726) [005] d..2 29484.599785: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52132            adbd-1007  ( 1007) [000] d..2 29484.599786: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52133              ps-13726 (13726) [005] dn.3 29484.599788: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52134              ps-13726 (13726) [005] d..2 29484.599790: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52135          <idle>-0     (-----) [000] d..1 29484.599796: cpu_idle: state=0 cpu_id=0
52136 shell svc 13722-13723 ( 1007) [005] d..2 29484.599798: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52137              ps-13726 (13726) [005] d..2 29484.599803: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52138              ps-13726 (13726) [005] dn.3 29484.599806: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52139              ps-13726 (13726) [005] d..2 29484.599808: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52140            adbd-23485 ( 1007) [001] d..2 29484.599812: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52141 shell svc 13722-13723 ( 1007) [005] d..2 29484.599816: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52142          <idle>-0     (-----) [001] d..1 29484.599818: cpu_idle: state=0 cpu_id=1
52143          <idle>-0     (-----) [000] d.h3 29484.599835: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52144          <idle>-0     (-----) [000] dnh4 29484.599841: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52145          <idle>-0     (-----) [000] .n.1 29484.599847: cpu_idle: state=4294967295 cpu_id=0
52146          <idle>-0     (-----) [000] d..2 29484.599855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52147   kworker/u17:2-23076 (23076) [000] d..2 29484.599864: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52148   kworker/u17:2-23076 (23076) [000] d..3 29484.599869: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52149   kworker/u17:2-23076 (23076) [000] d..2 29484.599886: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52150     kworker/0:0-13450 (13450) [000] d..2 29484.599892: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52151     kworker/0:0-13450 (13450) [000] d..3 29484.599901: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52152          <idle>-0     (-----) [001] .n.1 29484.599907: cpu_idle: state=4294967295 cpu_id=1
52153          <idle>-0     (-----) [001] d..2 29484.599913: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52154     kworker/0:0-13450 (13450) [000] d..2 29484.599916: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52155          <idle>-0     (-----) [000] d..1 29484.599924: cpu_idle: state=0 cpu_id=0
52156              ps-13726 (13726) [005] d..2 29484.599941: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52157              ps-13726 (13726) [005] dn.3 29484.599945: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52158              ps-13726 (13726) [005] d..2 29484.599948: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52159 shell svc 13722-13723 ( 1007) [005] d..2 29484.599959: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52160            adbd-23485 ( 1007) [001] d..2 29484.599961: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52161              ps-13726 (13726) [005] d..2 29484.599965: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52162          <idle>-0     (-----) [001] d..1 29484.599966: cpu_idle: state=0 cpu_id=1
52163              ps-13726 (13726) [005] dn.3 29484.599968: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52164              ps-13726 (13726) [005] d..2 29484.599971: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52165 shell svc 13722-13723 ( 1007) [005] d..2 29484.599980: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52166          <idle>-0     (-----) [000] d.h3 29484.599981: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52167              ps-13726 (13726) [005] d..2 29484.599985: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52168          <idle>-0     (-----) [000] dnh4 29484.599987: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52169              ps-13726 (13726) [005] dn.3 29484.599988: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52170              ps-13726 (13726) [005] d..2 29484.599991: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52171          <idle>-0     (-----) [000] .n.1 29484.599993: cpu_idle: state=4294967295 cpu_id=0
52172          <idle>-0     (-----) [000] d..2 29484.599999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52173 shell svc 13722-13723 ( 1007) [005] d..2 29484.599999: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52174   kworker/u17:2-23076 (23076) [000] d..2 29484.600007: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52175   kworker/u17:2-23076 (23076) [000] d..3 29484.600012: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52176   kworker/u17:2-23076 (23076) [000] d..2 29484.600028: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52177     kworker/0:0-13450 (13450) [000] d..2 29484.600035: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52178     kworker/0:0-13450 (13450) [000] d..3 29484.600044: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52179          <idle>-0     (-----) [001] .n.1 29484.600049: cpu_idle: state=4294967295 cpu_id=1
52180          <idle>-0     (-----) [001] d..2 29484.600054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52181     kworker/0:0-13450 (13450) [000] d..2 29484.600058: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52182          <idle>-0     (-----) [000] d..1 29484.600065: cpu_idle: state=0 cpu_id=0
52183            adbd-23485 ( 1007) [001] d..2 29484.600071: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52184          <idle>-0     (-----) [001] d..1 29484.600076: cpu_idle: state=0 cpu_id=1
52185              ps-13726 (13726) [005] d..2 29484.600127: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52186              ps-13726 (13726) [005] dn.3 29484.600132: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52187              ps-13726 (13726) [005] d..2 29484.600135: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52188 shell svc 13722-13723 ( 1007) [005] d..2 29484.600146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52189              ps-13726 (13726) [005] d..2 29484.600153: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52190              ps-13726 (13726) [005] dn.3 29484.600156: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52191              ps-13726 (13726) [005] d..2 29484.600158: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52192 shell svc 13722-13723 ( 1007) [005] d..2 29484.600167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52193              ps-13726 (13726) [005] d..2 29484.600172: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52194          <idle>-0     (-----) [000] d.h3 29484.600175: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52195              ps-13726 (13726) [005] dn.3 29484.600175: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52196              ps-13726 (13726) [005] d..2 29484.600177: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52197          <idle>-0     (-----) [000] dnh4 29484.600181: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52198 shell svc 13722-13723 ( 1007) [005] d..2 29484.600186: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52199          <idle>-0     (-----) [000] .n.1 29484.600187: cpu_idle: state=4294967295 cpu_id=0
52200          <idle>-0     (-----) [000] d..2 29484.600193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52201   kworker/u17:2-23076 (23076) [000] d..2 29484.600200: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52202   kworker/u17:2-23076 (23076) [000] d..3 29484.600205: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52203   kworker/u17:2-23076 (23076) [000] d..2 29484.600221: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52204     kworker/0:0-13450 (13450) [000] d..2 29484.600227: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52205     kworker/0:0-13450 (13450) [000] d..3 29484.600237: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52206     kworker/0:0-13450 (13450) [000] d..2 29484.600245: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52207            adbd-23484 ( 1007) [000] d..2 29484.600257: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52208            adbd-23484 ( 1007) [000] d..3 29484.600263: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52209            adbd-23484 ( 1007) [000] d..2 29484.600310: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52210            adbd-1007  ( 1007) [000] d..1 29484.600383: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52211            adbd-1007  ( 1007) [000] d..2 29484.600395: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52212              ps-13726 (13726) [005] d.s2 29484.600399: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
52213          <idle>-0     (-----) [001] dns2 29484.600421: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52214            adbd-1007  ( 1007) [000] dnH2 29484.600422: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
52215            adbd-1007  ( 1007) [000] d..2 29484.600429: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
52216          <idle>-0     (-----) [001] dns3 29484.600432: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52217          <idle>-0     (-----) [001] .n.1 29484.600440: cpu_idle: state=4294967295 cpu_id=1
52218          <idle>-0     (-----) [001] d..2 29484.600446: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
52219     rcu_preempt-7     (    7) [001] d..2 29484.600451: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
52220     rcu_preempt-7     (    7) [001] d..3 29484.600461: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
52221     rcu_preempt-7     (    7) [001] d..2 29484.600467: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
52222         rcuop/4-45    (   45) [001] d..2 29484.600470: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
52223         rcuop/4-45    (   45) [001] d..3 29484.600479: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
52224         rcuop/4-45    (   45) [001] d..2 29484.600485: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52225         rcuop/4-45    (   45) [001] d..3 29484.600506: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
52226         rcuop/4-45    (   45) [001] d..2 29484.600516: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
52227  kworker/u16:10-23868 (23868) [000] .... 29484.600529: clk_set_rate: l3_cluster0_vote_clk 576000000
52228  kworker/u16:10-23868 (23868) [000] d..2 29484.600592: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
52229     rcu_preempt-7     (    7) [000] d..2 29484.600600: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52230              ps-13726 (13726) [005] d..2 29484.600616: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52231              ps-13726 (13726) [005] dn.3 29484.600620: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52232              ps-13726 (13726) [005] d..2 29484.600624: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52233 shell svc 13722-13723 ( 1007) [005] d..2 29484.600637: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52234            adbd-1007  ( 1007) [000] d..2 29484.600643: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52235              ps-13726 (13726) [005] d..2 29484.600644: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52236              ps-13726 (13726) [005] dn.3 29484.600647: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52237              ps-13726 (13726) [005] d..2 29484.600649: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52238          <idle>-0     (-----) [000] d..1 29484.600653: cpu_idle: state=0 cpu_id=0
52239         rcuop/5-53    (   53) [001] d..2 29484.600653: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
52240 shell svc 13722-13723 ( 1007) [005] d..2 29484.600658: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52241              ps-13726 (13726) [005] d..2 29484.600664: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52242              ps-13726 (13726) [005] dn.3 29484.600667: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52243              ps-13726 (13726) [005] d..2 29484.600669: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52244 shell svc 13722-13723 ( 1007) [005] d..2 29484.600678: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52245              ps-13726 (13726) [005] d..2 29484.600683: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52246              ps-13726 (13726) [005] dn.3 29484.600686: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52247              ps-13726 (13726) [005] d..2 29484.600688: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52248 shell svc 13722-13723 ( 1007) [005] d..2 29484.600696: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52249              ps-13726 (13726) [005] d..2 29484.600702: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52250              ps-13726 (13726) [005] dn.3 29484.600704: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52251            adbd-23485 ( 1007) [001] d..2 29484.600706: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52252              ps-13726 (13726) [005] d..2 29484.600707: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52253 shell svc 13722-13723 ( 1007) [005] d..2 29484.600715: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52254          <idle>-0     (-----) [001] d..1 29484.600717: cpu_idle: state=0 cpu_id=1
52255              ps-13726 (13726) [005] d..2 29484.600721: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52256              ps-13726 (13726) [005] dn.3 29484.600723: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52257              ps-13726 (13726) [005] d..2 29484.600726: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52258          <idle>-0     (-----) [000] d.h3 29484.600726: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52259          <idle>-0     (-----) [000] dnh4 29484.600733: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52260 shell svc 13722-13723 ( 1007) [005] d..2 29484.600734: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52261          <idle>-0     (-----) [000] .n.1 29484.600738: cpu_idle: state=4294967295 cpu_id=0
52262              ps-13726 (13726) [005] d..2 29484.600739: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52263              ps-13726 (13726) [005] dn.3 29484.600742: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52264              ps-13726 (13726) [005] d..2 29484.600745: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52265          <idle>-0     (-----) [000] d..2 29484.600746: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52266 shell svc 13722-13723 ( 1007) [005] d..2 29484.600753: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52267   kworker/u17:2-23076 (23076) [000] d..2 29484.600755: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52268              ps-13726 (13726) [005] d..2 29484.600759: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52269   kworker/u17:2-23076 (23076) [000] d..3 29484.600761: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52270              ps-13726 (13726) [005] dn.3 29484.600762: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52271              ps-13726 (13726) [005] d..2 29484.600765: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52272 shell svc 13722-13723 ( 1007) [005] d..2 29484.600773: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52273   kworker/u17:2-23076 (23076) [000] d..2 29484.600778: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52274              ps-13726 (13726) [005] d..2 29484.600779: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52275              ps-13726 (13726) [005] dn.3 29484.600781: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52276              ps-13726 (13726) [005] d..2 29484.600784: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52277     kworker/0:0-13450 (13450) [000] d..2 29484.600784: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52278 shell svc 13722-13723 ( 1007) [005] d..2 29484.600792: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52279     kworker/0:0-13450 (13450) [000] d..3 29484.600794: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52280              ps-13726 (13726) [005] d..2 29484.600798: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52281          <idle>-0     (-----) [001] .n.1 29484.600799: cpu_idle: state=4294967295 cpu_id=1
52282              ps-13726 (13726) [005] dn.3 29484.600800: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52283              ps-13726 (13726) [005] d..2 29484.600803: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52284          <idle>-0     (-----) [001] d..2 29484.600807: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52285     kworker/0:0-13450 (13450) [000] d..2 29484.600809: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52286 shell svc 13722-13723 ( 1007) [005] d..2 29484.600811: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52287          <idle>-0     (-----) [000] d..1 29484.600816: cpu_idle: state=0 cpu_id=0
52288              ps-13726 (13726) [005] d..2 29484.600816: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52289              ps-13726 (13726) [005] dn.3 29484.600819: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52290              ps-13726 (13726) [005] d..2 29484.600822: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52291 shell svc 13722-13723 ( 1007) [005] d..2 29484.600830: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52292            adbd-23485 ( 1007) [001] d..2 29484.600855: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52293          <idle>-0     (-----) [001] d..1 29484.600863: cpu_idle: state=0 cpu_id=1
52294          <idle>-0     (-----) [000] d.h3 29484.600879: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52295          <idle>-0     (-----) [000] dnh4 29484.600884: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52296          <idle>-0     (-----) [000] .n.1 29484.600889: cpu_idle: state=4294967295 cpu_id=0
52297          <idle>-0     (-----) [000] d..2 29484.600896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52298   kworker/u17:2-23076 (23076) [000] d..2 29484.600903: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52299   kworker/u17:2-23076 (23076) [000] d..3 29484.600908: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52300   kworker/u17:2-23076 (23076) [000] d..2 29484.600924: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52301     kworker/0:0-13450 (13450) [000] d..2 29484.600929: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52302     kworker/0:0-13450 (13450) [000] d..3 29484.600939: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52303          <idle>-0     (-----) [001] .n.1 29484.600944: cpu_idle: state=4294967295 cpu_id=1
52304              ps-13726 (13726) [005] d..2 29484.600949: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52305          <idle>-0     (-----) [001] d..2 29484.600951: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52306              ps-13726 (13726) [005] dn.3 29484.600953: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52307     kworker/0:0-13450 (13450) [000] d..2 29484.600954: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52308              ps-13726 (13726) [005] d..2 29484.600956: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52309          <idle>-0     (-----) [000] d..1 29484.600961: cpu_idle: state=0 cpu_id=0
52310 shell svc 13722-13723 ( 1007) [005] d..2 29484.600967: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52311            adbd-23485 ( 1007) [001] d..2 29484.600969: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52312              ps-13726 (13726) [005] d..2 29484.600974: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52313          <idle>-0     (-----) [001] d..1 29484.600976: cpu_idle: state=0 cpu_id=1
52314              ps-13726 (13726) [005] dn.3 29484.600977: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52315              ps-13726 (13726) [005] d..2 29484.600979: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52316 shell svc 13722-13723 ( 1007) [005] d..2 29484.600988: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52317          <idle>-0     (-----) [000] d.h3 29484.601089: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52318              ps-13726 (13726) [005] d..2 29484.601091: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52319          <idle>-0     (-----) [000] dnh4 29484.601095: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52320              ps-13726 (13726) [005] dn.3 29484.601096: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52321              ps-13726 (13726) [005] d..2 29484.601099: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52322          <idle>-0     (-----) [000] .n.1 29484.601099: cpu_idle: state=4294967295 cpu_id=0
52323          <idle>-0     (-----) [000] d..2 29484.601106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52324 shell svc 13722-13723 ( 1007) [005] d..2 29484.601110: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52325   kworker/u17:2-23076 (23076) [000] d..2 29484.601113: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52326              ps-13726 (13726) [005] d..2 29484.601117: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52327   kworker/u17:2-23076 (23076) [000] d..3 29484.601118: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52328              ps-13726 (13726) [005] dn.3 29484.601120: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52329              ps-13726 (13726) [005] d..2 29484.601122: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52330 shell svc 13722-13723 ( 1007) [005] d..2 29484.601131: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52331   kworker/u17:2-23076 (23076) [000] d..2 29484.601135: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52332     kworker/0:0-13450 (13450) [000] d..2 29484.601141: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52333     kworker/0:0-13450 (13450) [000] d..3 29484.601150: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52334     kworker/0:0-13450 (13450) [000] d..2 29484.601159: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52335            adbd-23484 ( 1007) [000] d..2 29484.601172: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52336            adbd-23484 ( 1007) [000] d..3 29484.601178: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52337            adbd-23484 ( 1007) [000] d..2 29484.601224: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52338            adbd-1007  ( 1007) [000] d..1 29484.601303: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52339              ps-13726 (13726) [005] d..2 29484.601319: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52340            adbd-1007  ( 1007) [000] d..2 29484.601319: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52341              ps-13726 (13726) [005] dn.3 29484.601323: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52342          <idle>-0     (-----) [001] .n.1 29484.601324: cpu_idle: state=4294967295 cpu_id=1
52343              ps-13726 (13726) [005] d..2 29484.601326: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52344          <idle>-0     (-----) [001] d..2 29484.601331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52345 shell svc 13722-13723 ( 1007) [005] d..2 29484.601337: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52346              ps-13726 (13726) [005] d..2 29484.601343: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52347              ps-13726 (13726) [005] dn.3 29484.601346: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52348              ps-13726 (13726) [005] d..2 29484.601349: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52349            adbd-1007  ( 1007) [000] d..2 29484.601355: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52350 shell svc 13722-13723 ( 1007) [005] d..2 29484.601357: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52351              ps-13726 (13726) [005] d..2 29484.601363: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52352          <idle>-0     (-----) [000] d..1 29484.601364: cpu_idle: state=0 cpu_id=0
52353              ps-13726 (13726) [005] dn.3 29484.601366: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52354              ps-13726 (13726) [005] d..2 29484.601368: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52355 shell svc 13722-13723 ( 1007) [005] d..2 29484.601377: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52356            adbd-23485 ( 1007) [001] d..2 29484.601377: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52357              ps-13726 (13726) [005] d..2 29484.601382: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52358              ps-13726 (13726) [005] dn.3 29484.601384: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52359          <idle>-0     (-----) [001] d..1 29484.601385: cpu_idle: state=0 cpu_id=1
52360              ps-13726 (13726) [005] d..2 29484.601386: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52361          <idle>-0     (-----) [000] d.h3 29484.601394: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52362 shell svc 13722-13723 ( 1007) [005] d..2 29484.601395: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52363              ps-13726 (13726) [005] d..2 29484.601400: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52364              ps-13726 (13726) [005] dn.3 29484.601402: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52365          <idle>-0     (-----) [000] dnh4 29484.601404: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52366              ps-13726 (13726) [005] d..2 29484.601405: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52367          <idle>-0     (-----) [000] .n.1 29484.601409: cpu_idle: state=4294967295 cpu_id=0
52368 shell svc 13722-13723 ( 1007) [005] d..2 29484.601413: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52369          <idle>-0     (-----) [000] d..2 29484.601416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52370   kworker/u17:2-23076 (23076) [000] d..2 29484.601425: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52371   kworker/u17:2-23076 (23076) [000] d..3 29484.601430: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52372   kworker/u17:2-23076 (23076) [000] d..2 29484.601447: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52373     kworker/0:0-13450 (13450) [000] d..2 29484.601453: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52374     kworker/0:0-13450 (13450) [000] d..3 29484.601463: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52375          <idle>-0     (-----) [001] .n.1 29484.601468: cpu_idle: state=4294967295 cpu_id=1
52376          <idle>-0     (-----) [001] d..2 29484.601474: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52377     kworker/0:0-13450 (13450) [000] d..2 29484.601476: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52378          <idle>-0     (-----) [000] d..1 29484.601483: cpu_idle: state=0 cpu_id=0
52379            adbd-23485 ( 1007) [001] d..2 29484.601522: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52380          <idle>-0     (-----) [001] d..1 29484.601530: cpu_idle: state=0 cpu_id=1
52381          <idle>-0     (-----) [000] d.h3 29484.601552: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52382          <idle>-0     (-----) [000] dnh4 29484.601558: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52383          <idle>-0     (-----) [000] .n.1 29484.601563: cpu_idle: state=4294967295 cpu_id=0
52384              ps-13726 (13726) [005] d..2 29484.601569: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52385          <idle>-0     (-----) [000] d..2 29484.601570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52386              ps-13726 (13726) [005] dn.3 29484.601573: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52387              ps-13726 (13726) [005] d..2 29484.601576: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52388   kworker/u17:2-23076 (23076) [000] d..2 29484.601577: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52389   kworker/u17:2-23076 (23076) [000] d..3 29484.601582: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52390 shell svc 13722-13723 ( 1007) [005] d..2 29484.601588: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52391              ps-13726 (13726) [005] d..2 29484.601595: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52392              ps-13726 (13726) [005] dn.3 29484.601598: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52393   kworker/u17:2-23076 (23076) [000] d..2 29484.601599: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52394              ps-13726 (13726) [005] d..2 29484.601601: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52395     kworker/0:0-13450 (13450) [000] d..2 29484.601605: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52396 shell svc 13722-13723 ( 1007) [005] d..2 29484.601609: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52397     kworker/0:0-13450 (13450) [000] d..3 29484.601614: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52398              ps-13726 (13726) [005] d..2 29484.601615: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52399              ps-13726 (13726) [005] dn.3 29484.601618: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52400          <idle>-0     (-----) [001] .n.1 29484.601619: cpu_idle: state=4294967295 cpu_id=1
52401              ps-13726 (13726) [005] d..2 29484.601621: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52402          <idle>-0     (-----) [001] d..2 29484.601626: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52403     kworker/0:0-13450 (13450) [000] d..2 29484.601627: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52404 shell svc 13722-13723 ( 1007) [005] d..2 29484.601629: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52405          <idle>-0     (-----) [000] d..1 29484.601634: cpu_idle: state=0 cpu_id=0
52406              ps-13726 (13726) [005] d..2 29484.601635: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52407              ps-13726 (13726) [005] dn.3 29484.601637: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52408              ps-13726 (13726) [005] d..2 29484.601640: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52409            adbd-23485 ( 1007) [001] d..2 29484.601643: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52410 shell svc 13722-13723 ( 1007) [005] d..2 29484.601648: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52411          <idle>-0     (-----) [001] d..1 29484.601650: cpu_idle: state=0 cpu_id=1
52412          <idle>-0     (-----) [000] d.h3 29484.601751: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52413          <idle>-0     (-----) [000] dnh4 29484.601756: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52414          <idle>-0     (-----) [000] .n.1 29484.601761: cpu_idle: state=4294967295 cpu_id=0
52415          <idle>-0     (-----) [000] d..2 29484.601768: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52416   kworker/u17:2-23076 (23076) [000] d..2 29484.601776: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52417   kworker/u17:2-23076 (23076) [000] d..3 29484.601781: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52418   kworker/u17:2-23076 (23076) [000] d..2 29484.601797: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52419     kworker/0:0-13450 (13450) [000] d..2 29484.601804: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52420     kworker/0:0-13450 (13450) [000] d..3 29484.601813: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52421     kworker/0:0-13450 (13450) [000] d..2 29484.601822: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52422            adbd-23484 ( 1007) [000] d..2 29484.601834: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52423            adbd-23484 ( 1007) [000] d..3 29484.601840: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52424            adbd-23484 ( 1007) [000] d..2 29484.601886: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52425              ps-13726 (13726) [005] d..2 29484.601889: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52426              ps-13726 (13726) [005] dn.3 29484.601894: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52427              ps-13726 (13726) [005] d..2 29484.601897: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52428 shell svc 13722-13723 ( 1007) [005] d..2 29484.601909: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52429              ps-13726 (13726) [005] d..2 29484.601915: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52430              ps-13726 (13726) [005] dn.3 29484.601918: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52431              ps-13726 (13726) [005] d..2 29484.601921: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52432 shell svc 13722-13723 ( 1007) [005] d..2 29484.601930: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52433              ps-13726 (13726) [005] d..2 29484.601936: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52434              ps-13726 (13726) [005] dn.3 29484.601939: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52435              ps-13726 (13726) [005] d..2 29484.601941: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52436 shell svc 13722-13723 ( 1007) [005] d..2 29484.601950: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52437              ps-13726 (13726) [005] d..2 29484.601956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52438              ps-13726 (13726) [005] dn.3 29484.601959: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52439            adbd-1007  ( 1007) [000] d..1 29484.601960: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52440              ps-13726 (13726) [005] d..2 29484.601961: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52441 shell svc 13722-13723 ( 1007) [005] d..2 29484.601970: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52442            adbd-1007  ( 1007) [000] d..2 29484.601972: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52443              ps-13726 (13726) [005] d..2 29484.601975: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52444          <idle>-0     (-----) [001] .n.1 29484.601977: cpu_idle: state=4294967295 cpu_id=1
52445              ps-13726 (13726) [005] dn.3 29484.601978: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52446              ps-13726 (13726) [005] d..2 29484.601980: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52447          <idle>-0     (-----) [001] d..2 29484.601983: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52448 shell svc 13722-13723 ( 1007) [005] d..2 29484.601989: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52449              ps-13726 (13726) [005] d..2 29484.601994: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52450              ps-13726 (13726) [005] dn.3 29484.601997: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52451              ps-13726 (13726) [005] d..2 29484.601999: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52452 shell svc 13722-13723 ( 1007) [005] d..2 29484.602007: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52453            adbd-1007  ( 1007) [000] d..2 29484.602008: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52454              ps-13726 (13726) [005] d..2 29484.602013: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52455              ps-13726 (13726) [005] dn.3 29484.602015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52456          <idle>-0     (-----) [000] d..1 29484.602017: cpu_idle: state=0 cpu_id=0
52457              ps-13726 (13726) [005] d..2 29484.602018: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52458 shell svc 13722-13723 ( 1007) [005] d..2 29484.602026: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52459            adbd-23485 ( 1007) [001] d..2 29484.602030: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52460          <idle>-0     (-----) [001] d..1 29484.602037: cpu_idle: state=0 cpu_id=1
52461          <idle>-0     (-----) [000] d.h3 29484.602042: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52462          <idle>-0     (-----) [000] dnh4 29484.602048: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52463          <idle>-0     (-----) [000] .n.1 29484.602053: cpu_idle: state=4294967295 cpu_id=0
52464          <idle>-0     (-----) [000] d..2 29484.602060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52465   kworker/u17:2-23076 (23076) [000] d..2 29484.602069: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52466   kworker/u17:2-23076 (23076) [000] d..3 29484.602075: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52467   kworker/u17:2-23076 (23076) [000] d..2 29484.602092: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52468     kworker/0:0-13450 (13450) [000] d..2 29484.602098: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52469     kworker/0:0-13450 (13450) [000] d..3 29484.602107: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52470          <idle>-0     (-----) [001] .n.1 29484.602112: cpu_idle: state=4294967295 cpu_id=1
52471          <idle>-0     (-----) [001] d..2 29484.602119: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52472     kworker/0:0-13450 (13450) [000] d..2 29484.602122: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52473          <idle>-0     (-----) [000] d..1 29484.602128: cpu_idle: state=0 cpu_id=0
52474            adbd-23485 ( 1007) [001] d..2 29484.602168: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52475          <idle>-0     (-----) [001] d..1 29484.602176: cpu_idle: state=0 cpu_id=1
52476              ps-13726 (13726) [005] d..2 29484.602178: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52477              ps-13726 (13726) [005] dn.3 29484.602182: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52478              ps-13726 (13726) [005] d..2 29484.602185: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52479          <idle>-0     (-----) [000] d.h3 29484.602195: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52480 shell svc 13722-13723 ( 1007) [005] d..2 29484.602196: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52481          <idle>-0     (-----) [000] dnh4 29484.602201: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52482              ps-13726 (13726) [005] d..2 29484.602203: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52483          <idle>-0     (-----) [000] .n.1 29484.602205: cpu_idle: state=4294967295 cpu_id=0
52484              ps-13726 (13726) [005] dn.3 29484.602206: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52485              ps-13726 (13726) [005] d..2 29484.602208: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52486          <idle>-0     (-----) [000] d..2 29484.602212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52487 shell svc 13722-13723 ( 1007) [005] d..2 29484.602217: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52488   kworker/u17:2-23076 (23076) [000] d..2 29484.602219: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52489              ps-13726 (13726) [005] d..2 29484.602223: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52490   kworker/u17:2-23076 (23076) [000] d..3 29484.602224: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52491              ps-13726 (13726) [005] dn.3 29484.602226: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52492              ps-13726 (13726) [005] d..2 29484.602228: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52493 shell svc 13722-13723 ( 1007) [005] d..2 29484.602237: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52494   kworker/u17:2-23076 (23076) [000] d..2 29484.602241: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52495              ps-13726 (13726) [005] d..2 29484.602242: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52496              ps-13726 (13726) [005] dn.3 29484.602245: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52497     kworker/0:0-13450 (13450) [000] d..2 29484.602247: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52498              ps-13726 (13726) [005] d..2 29484.602248: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52499     kworker/0:0-13450 (13450) [000] d..3 29484.602256: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52500 shell svc 13722-13723 ( 1007) [005] d..2 29484.602256: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52501          <idle>-0     (-----) [001] .n.1 29484.602260: cpu_idle: state=4294967295 cpu_id=1
52502          <idle>-0     (-----) [001] d..2 29484.602267: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52503     kworker/0:0-13450 (13450) [000] d..2 29484.602270: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52504          <idle>-0     (-----) [000] d..1 29484.602276: cpu_idle: state=0 cpu_id=0
52505            adbd-23485 ( 1007) [001] d..2 29484.602285: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52506          <idle>-0     (-----) [001] d..1 29484.602293: cpu_idle: state=0 cpu_id=1
52507          <idle>-0     (-----) [000] d.h3 29484.602389: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52508          <idle>-0     (-----) [000] dnh4 29484.602395: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52509          <idle>-0     (-----) [000] .n.1 29484.602400: cpu_idle: state=4294967295 cpu_id=0
52510          <idle>-0     (-----) [000] d..2 29484.602406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52511   kworker/u17:2-23076 (23076) [000] d..2 29484.602412: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52512   kworker/u17:2-23076 (23076) [000] d..3 29484.602417: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52513   kworker/u17:2-23076 (23076) [000] d..2 29484.602435: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52514     kworker/0:0-13450 (13450) [000] d..2 29484.602441: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52515     kworker/0:0-13450 (13450) [000] d..3 29484.602451: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52516     kworker/0:0-13450 (13450) [000] d..2 29484.602461: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52517            adbd-23484 ( 1007) [000] d..2 29484.602473: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52518            adbd-23484 ( 1007) [000] d..3 29484.602478: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52519            adbd-23484 ( 1007) [000] d..2 29484.602524: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52520            adbd-1007  ( 1007) [000] d..1 29484.602591: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52521            adbd-1007  ( 1007) [000] d..2 29484.602603: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52522          <idle>-0     (-----) [001] .n.1 29484.602608: cpu_idle: state=4294967295 cpu_id=1
52523          <idle>-0     (-----) [001] d..2 29484.602615: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52524            adbd-1007  ( 1007) [000] d..2 29484.602639: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52525          <idle>-0     (-----) [000] d..1 29484.602648: cpu_idle: state=0 cpu_id=0
52526            adbd-23485 ( 1007) [001] d..2 29484.602661: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52527          <idle>-0     (-----) [001] d..1 29484.602670: cpu_idle: state=0 cpu_id=1
52528          <idle>-0     (-----) [000] d.h3 29484.602687: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52529          <idle>-0     (-----) [000] dnh4 29484.602694: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52530          <idle>-0     (-----) [000] .n.1 29484.602699: cpu_idle: state=4294967295 cpu_id=0
52531          <idle>-0     (-----) [000] d..2 29484.602707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52532   kworker/u17:2-23076 (23076) [000] d..2 29484.602715: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52533   kworker/u17:2-23076 (23076) [000] d..3 29484.602721: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52534   kworker/u17:2-23076 (23076) [000] d..2 29484.602738: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52535     kworker/0:0-13450 (13450) [000] d..2 29484.602745: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52536     kworker/0:0-13450 (13450) [000] d..3 29484.602754: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52537          <idle>-0     (-----) [001] .n.1 29484.602759: cpu_idle: state=4294967295 cpu_id=1
52538          <idle>-0     (-----) [001] d..2 29484.602766: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52539     kworker/0:0-13450 (13450) [000] d..2 29484.602768: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52540          <idle>-0     (-----) [000] d..1 29484.602775: cpu_idle: state=0 cpu_id=0
52541              ps-13726 (13726) [005] d..2 29484.602813: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52542            adbd-23485 ( 1007) [001] d..2 29484.602813: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52543              ps-13726 (13726) [005] dn.3 29484.602817: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52544          <idle>-0     (-----) [001] d..1 29484.602820: cpu_idle: state=0 cpu_id=1
52545              ps-13726 (13726) [005] d..2 29484.602821: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52546          <idle>-0     (-----) [000] d.h3 29484.602828: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52547 shell svc 13722-13723 ( 1007) [005] d..2 29484.602832: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52548          <idle>-0     (-----) [000] dnh4 29484.602834: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52549              ps-13726 (13726) [005] d..2 29484.602839: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52550              ps-13726 (13726) [005] dn.3 29484.602841: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52551          <idle>-0     (-----) [000] .n.1 29484.602842: cpu_idle: state=4294967295 cpu_id=0
52552              ps-13726 (13726) [005] d..2 29484.602844: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52553          <idle>-0     (-----) [000] d..2 29484.602849: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52554 shell svc 13722-13723 ( 1007) [005] d..2 29484.602853: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52555   kworker/u17:2-23076 (23076) [000] d..2 29484.602856: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52556              ps-13726 (13726) [005] d..2 29484.602859: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52557   kworker/u17:2-23076 (23076) [000] d..3 29484.602862: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52558              ps-13726 (13726) [005] dn.3 29484.602862: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52559              ps-13726 (13726) [005] d..2 29484.602864: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52560 shell svc 13722-13723 ( 1007) [005] d..2 29484.602873: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52561   kworker/u17:2-23076 (23076) [000] d..2 29484.602878: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52562              ps-13726 (13726) [005] d..2 29484.602878: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52563              ps-13726 (13726) [005] dn.3 29484.602881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52564              ps-13726 (13726) [005] d..2 29484.602883: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52565     kworker/0:0-13450 (13450) [000] d..2 29484.602884: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52566 shell svc 13722-13723 ( 1007) [005] d..2 29484.602892: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52567     kworker/0:0-13450 (13450) [000] d..3 29484.602893: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52568              ps-13726 (13726) [005] d..2 29484.602897: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52569          <idle>-0     (-----) [001] .n.1 29484.602899: cpu_idle: state=4294967295 cpu_id=1
52570              ps-13726 (13726) [005] dn.3 29484.602900: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52571              ps-13726 (13726) [005] d..2 29484.602902: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52572          <idle>-0     (-----) [001] d..2 29484.602905: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52573     kworker/0:0-13450 (13450) [000] d..2 29484.602907: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52574 shell svc 13722-13723 ( 1007) [005] d..2 29484.602910: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52575          <idle>-0     (-----) [000] d..1 29484.602913: cpu_idle: state=0 cpu_id=0
52576              ps-13726 (13726) [005] d..2 29484.602917: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52577              ps-13726 (13726) [005] dn.3 29484.602919: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52578            adbd-23485 ( 1007) [001] d..2 29484.602922: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52579              ps-13726 (13726) [005] d..2 29484.602922: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52580          <idle>-0     (-----) [001] d..1 29484.602929: cpu_idle: state=0 cpu_id=1
52581 shell svc 13722-13723 ( 1007) [005] d..2 29484.602930: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52582              ps-13726 (13726) [005] d..2 29484.602935: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52583              ps-13726 (13726) [005] dn.3 29484.602938: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52584              ps-13726 (13726) [005] d..2 29484.602940: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52585 shell svc 13722-13723 ( 1007) [005] d..2 29484.602949: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52586              ps-13726 (13726) [005] d..2 29484.602955: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52587              ps-13726 (13726) [005] dn.3 29484.602958: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52588              ps-13726 (13726) [005] d..2 29484.602962: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52589 shell svc 13722-13723 ( 1007) [005] d..2 29484.602970: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52590              ps-13726 (13726) [005] d..2 29484.602975: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52591              ps-13726 (13726) [005] dn.3 29484.602978: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52592              ps-13726 (13726) [005] d..2 29484.602980: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52593 shell svc 13722-13723 ( 1007) [005] d..2 29484.602989: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52594              ps-13726 (13726) [005] d..2 29484.602995: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52595              ps-13726 (13726) [005] dn.3 29484.602997: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52596              ps-13726 (13726) [005] d..2 29484.603000: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52597          <idle>-0     (-----) [000] d.h3 29484.603005: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52598 shell svc 13722-13723 ( 1007) [005] d..2 29484.603008: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52599          <idle>-0     (-----) [000] dnh4 29484.603010: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52600              ps-13726 (13726) [005] d..2 29484.603014: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52601          <idle>-0     (-----) [000] .n.1 29484.603015: cpu_idle: state=4294967295 cpu_id=0
52602              ps-13726 (13726) [005] dn.3 29484.603016: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52603              ps-13726 (13726) [005] d..2 29484.603019: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52604          <idle>-0     (-----) [000] d..2 29484.603021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52605 shell svc 13722-13723 ( 1007) [005] d..2 29484.603027: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52606   kworker/u17:2-23076 (23076) [000] d..2 29484.603029: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52607              ps-13726 (13726) [005] d..2 29484.603032: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52608   kworker/u17:2-23076 (23076) [000] d..3 29484.603034: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52609              ps-13726 (13726) [005] dn.3 29484.603035: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52610              ps-13726 (13726) [005] d..2 29484.603037: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52611 shell svc 13722-13723 ( 1007) [005] d..2 29484.603045: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52612              ps-13726 (13726) [005] d..2 29484.603051: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52613   kworker/u17:2-23076 (23076) [000] d..2 29484.603051: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52614              ps-13726 (13726) [005] dn.3 29484.603053: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52615              ps-13726 (13726) [005] d..2 29484.603056: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52616     kworker/0:0-13450 (13450) [000] d..2 29484.603058: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52617 shell svc 13722-13723 ( 1007) [005] d..2 29484.603064: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52618     kworker/0:0-13450 (13450) [000] d..3 29484.603068: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52619              ps-13726 (13726) [005] d..2 29484.603070: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52620              ps-13726 (13726) [005] dn.3 29484.603073: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52621              ps-13726 (13726) [005] d..2 29484.603075: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52622     kworker/0:0-13450 (13450) [000] d..2 29484.603077: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52623 shell svc 13722-13723 ( 1007) [005] d..2 29484.603083: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52624              ps-13726 (13726) [005] d..2 29484.603088: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52625            adbd-23484 ( 1007) [000] d..2 29484.603089: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52626              ps-13726 (13726) [005] dn.3 29484.603090: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52627              ps-13726 (13726) [005] d..2 29484.603093: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52628            adbd-23484 ( 1007) [000] d..3 29484.603095: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52629 shell svc 13722-13723 ( 1007) [005] d..2 29484.603101: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52630              ps-13726 (13726) [005] d..2 29484.603106: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52631              ps-13726 (13726) [005] dn.3 29484.603108: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52632              ps-13726 (13726) [005] d..2 29484.603111: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52633 shell svc 13722-13723 ( 1007) [005] d..2 29484.603119: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52634              ps-13726 (13726) [005] d..2 29484.603124: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52635              ps-13726 (13726) [005] dn.3 29484.603127: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52636              ps-13726 (13726) [005] d..2 29484.603129: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52637 shell svc 13722-13723 ( 1007) [005] d..2 29484.603137: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52638            adbd-23484 ( 1007) [000] d..2 29484.603140: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52639            adbd-1007  ( 1007) [000] d..1 29484.603220: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52640            adbd-1007  ( 1007) [000] d..2 29484.603232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52641          <idle>-0     (-----) [001] .n.1 29484.603236: cpu_idle: state=4294967295 cpu_id=1
52642          <idle>-0     (-----) [001] d..2 29484.603243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52643            adbd-1007  ( 1007) [000] d..2 29484.603267: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52644          <idle>-0     (-----) [000] d..1 29484.603276: cpu_idle: state=0 cpu_id=0
52645            adbd-23485 ( 1007) [001] d..2 29484.603290: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52646          <idle>-0     (-----) [001] d..1 29484.603298: cpu_idle: state=0 cpu_id=1
52647          <idle>-0     (-----) [000] d.h3 29484.603312: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52648          <idle>-0     (-----) [000] dnh4 29484.603319: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52649          <idle>-0     (-----) [000] .n.1 29484.603324: cpu_idle: state=4294967295 cpu_id=0
52650          <idle>-0     (-----) [000] d..2 29484.603332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52651              ps-13726 (13726) [005] d..2 29484.603339: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52652   kworker/u17:2-23076 (23076) [000] d..2 29484.603341: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52653              ps-13726 (13726) [005] dn.3 29484.603343: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52654              ps-13726 (13726) [005] d..2 29484.603346: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52655   kworker/u17:2-23076 (23076) [000] d..3 29484.603347: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52656 shell svc 13722-13723 ( 1007) [005] d..2 29484.603358: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52657   kworker/u17:2-23076 (23076) [000] d..2 29484.603364: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52658              ps-13726 (13726) [005] d..2 29484.603364: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52659              ps-13726 (13726) [005] dn.3 29484.603367: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52660     kworker/0:0-13450 (13450) [000] d..2 29484.603369: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52661              ps-13726 (13726) [005] d..2 29484.603370: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52662 shell svc 13722-13723 ( 1007) [005] d..2 29484.603378: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52663     kworker/0:0-13450 (13450) [000] d..3 29484.603382: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52664              ps-13726 (13726) [005] d..2 29484.603384: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52665              ps-13726 (13726) [005] dn.3 29484.603387: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52666          <idle>-0     (-----) [001] .n.1 29484.603388: cpu_idle: state=4294967295 cpu_id=1
52667              ps-13726 (13726) [005] d..2 29484.603389: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52668          <idle>-0     (-----) [001] d..2 29484.603395: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52669     kworker/0:0-13450 (13450) [000] d..2 29484.603397: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52670 shell svc 13722-13723 ( 1007) [005] d..2 29484.603398: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52671              ps-13726 (13726) [005] d..2 29484.603403: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52672          <idle>-0     (-----) [000] d..1 29484.603403: cpu_idle: state=0 cpu_id=0
52673              ps-13726 (13726) [005] dn.3 29484.603406: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52674              ps-13726 (13726) [005] d..2 29484.603408: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52675 shell svc 13722-13723 ( 1007) [005] d..2 29484.603416: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52676              ps-13726 (13726) [005] d..2 29484.603421: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52677              ps-13726 (13726) [005] dn.3 29484.603424: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52678              ps-13726 (13726) [005] d..2 29484.603426: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52679 shell svc 13722-13723 ( 1007) [005] d..2 29484.603434: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52680            adbd-23485 ( 1007) [001] d..2 29484.603442: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52681          <idle>-0     (-----) [001] d..1 29484.603449: cpu_idle: state=0 cpu_id=1
52682          <idle>-0     (-----) [000] d.h3 29484.603490: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52683          <idle>-0     (-----) [000] dnh4 29484.603499: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52684          <idle>-0     (-----) [000] .n.1 29484.603504: cpu_idle: state=4294967295 cpu_id=0
52685          <idle>-0     (-----) [000] d..2 29484.603510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52686              ps-13726 (13726) [005] d..2 29484.603513: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52687              ps-13726 (13726) [005] dn.3 29484.603517: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52688   kworker/u17:2-23076 (23076) [000] d..2 29484.603517: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52689              ps-13726 (13726) [005] d..2 29484.603520: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52690   kworker/u17:2-23076 (23076) [000] d..3 29484.603523: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52691 shell svc 13722-13723 ( 1007) [005] d..2 29484.603531: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52692   kworker/u17:2-23076 (23076) [000] d..2 29484.603539: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52693     kworker/0:0-13450 (13450) [000] d..2 29484.603544: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52694     kworker/0:0-13450 (13450) [000] d..3 29484.603553: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52695          <idle>-0     (-----) [001] .n.1 29484.603558: cpu_idle: state=4294967295 cpu_id=1
52696          <idle>-0     (-----) [001] d..2 29484.603565: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52697     kworker/0:0-13450 (13450) [000] d..2 29484.603567: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52698          <idle>-0     (-----) [000] d..1 29484.603573: cpu_idle: state=0 cpu_id=0
52699            adbd-23485 ( 1007) [001] d..2 29484.603582: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52700          <idle>-0     (-----) [001] d..1 29484.603589: cpu_idle: state=0 cpu_id=1
52701          <idle>-0     (-----) [000] d.h3 29484.603667: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52702          <idle>-0     (-----) [000] dnh4 29484.603673: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52703          <idle>-0     (-----) [000] .n.1 29484.603677: cpu_idle: state=4294967295 cpu_id=0
52704          <idle>-0     (-----) [000] d..2 29484.603684: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52705   kworker/u17:2-23076 (23076) [000] d..2 29484.603691: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52706   kworker/u17:2-23076 (23076) [000] d..3 29484.603696: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52707   kworker/u17:2-23076 (23076) [000] d..2 29484.603713: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52708     kworker/0:0-13450 (13450) [000] d..2 29484.603720: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52709     kworker/0:0-13450 (13450) [000] d..3 29484.603729: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52710              ps-13726 (13726) [005] d.s2 29484.603732: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
52711     kworker/0:0-13450 (13450) [000] d.H2 29484.603751: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
52712     kworker/0:0-13450 (13450) [000] d..2 29484.603764: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52713            adbd-23484 ( 1007) [000] d..2 29484.603776: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52714            adbd-23484 ( 1007) [000] d..3 29484.603786: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52715            adbd-23484 ( 1007) [000] d..2 29484.603834: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
52716  kworker/u16:10-23868 (23868) [000] d..2 29484.603880: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52717            adbd-1007  ( 1007) [000] d..1 29484.603945: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52718            adbd-1007  ( 1007) [000] d..2 29484.603957: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52719          <idle>-0     (-----) [001] .n.1 29484.603961: cpu_idle: state=4294967295 cpu_id=1
52720          <idle>-0     (-----) [001] d..2 29484.603969: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52721              ps-13726 (13726) [005] d..2 29484.603985: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52722              ps-13726 (13726) [005] dn.3 29484.603990: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52723              ps-13726 (13726) [005] d..2 29484.603993: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52724            adbd-1007  ( 1007) [000] d..2 29484.603996: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52725          <idle>-0     (-----) [000] d..1 29484.604003: cpu_idle: state=0 cpu_id=0
52726 shell svc 13722-13723 ( 1007) [005] d..2 29484.604006: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52727              ps-13726 (13726) [005] d..2 29484.604014: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52728              ps-13726 (13726) [005] dn.3 29484.604017: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52729            adbd-23485 ( 1007) [001] d..2 29484.604019: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52730              ps-13726 (13726) [005] d..2 29484.604019: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52731          <idle>-0     (-----) [001] d..1 29484.604027: cpu_idle: state=0 cpu_id=1
52732 shell svc 13722-13723 ( 1007) [005] d..2 29484.604028: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52733              ps-13726 (13726) [005] d..2 29484.604035: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52734              ps-13726 (13726) [005] dn.3 29484.604037: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52735              ps-13726 (13726) [005] d..2 29484.604042: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52736          <idle>-0     (-----) [000] d.h3 29484.604042: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52737          <idle>-0     (-----) [000] dnh4 29484.604048: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52738 shell svc 13722-13723 ( 1007) [005] d..2 29484.604050: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52739          <idle>-0     (-----) [000] .n.1 29484.604054: cpu_idle: state=4294967295 cpu_id=0
52740              ps-13726 (13726) [005] d..2 29484.604056: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52741              ps-13726 (13726) [005] dn.3 29484.604059: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52742          <idle>-0     (-----) [000] d..2 29484.604059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52743              ps-13726 (13726) [005] d..2 29484.604061: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52744   kworker/u17:2-23076 (23076) [000] d..2 29484.604068: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52745 shell svc 13722-13723 ( 1007) [005] d..2 29484.604069: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52746   kworker/u17:2-23076 (23076) [000] d..3 29484.604074: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52747              ps-13726 (13726) [005] d..2 29484.604075: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52748              ps-13726 (13726) [005] dn.3 29484.604078: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52749              ps-13726 (13726) [005] d..2 29484.604081: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52750 shell svc 13722-13723 ( 1007) [005] d..2 29484.604089: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52751   kworker/u17:2-23076 (23076) [000] d..2 29484.604091: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52752              ps-13726 (13726) [005] d..2 29484.604094: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52753              ps-13726 (13726) [005] dn.3 29484.604097: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52754     kworker/0:0-13450 (13450) [000] d..2 29484.604098: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52755              ps-13726 (13726) [005] d..2 29484.604099: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52756     kworker/0:0-13450 (13450) [000] d..3 29484.604107: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52757 shell svc 13722-13723 ( 1007) [005] d..2 29484.604107: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52758          <idle>-0     (-----) [001] .n.1 29484.604112: cpu_idle: state=4294967295 cpu_id=1
52759              ps-13726 (13726) [005] d..2 29484.604113: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52760              ps-13726 (13726) [005] dn.3 29484.604116: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52761          <idle>-0     (-----) [001] d..2 29484.604119: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52762              ps-13726 (13726) [005] d..2 29484.604119: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52763     kworker/0:0-13450 (13450) [000] d..2 29484.604122: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52764          <idle>-0     (-----) [000] d..1 29484.604127: cpu_idle: state=0 cpu_id=0
52765 shell svc 13722-13723 ( 1007) [005] d..2 29484.604127: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52766              ps-13726 (13726) [005] d..2 29484.604132: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52767              ps-13726 (13726) [005] dn.3 29484.604135: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52768              ps-13726 (13726) [005] d..2 29484.604137: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52769 shell svc 13722-13723 ( 1007) [005] d..2 29484.604146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52770              ps-13726 (13726) [005] d..2 29484.604151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52771              ps-13726 (13726) [005] dn.3 29484.604154: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52772              ps-13726 (13726) [005] d..2 29484.604156: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52773 shell svc 13722-13723 ( 1007) [005] d..2 29484.604165: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52774            adbd-23485 ( 1007) [001] d..2 29484.604165: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52775              ps-13726 (13726) [005] d..2 29484.604171: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52776              ps-13726 (13726) [005] dn.3 29484.604173: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52777          <idle>-0     (-----) [001] d..1 29484.604173: cpu_idle: state=0 cpu_id=1
52778              ps-13726 (13726) [005] d..2 29484.604176: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52779 shell svc 13722-13723 ( 1007) [005] d..2 29484.604184: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52780          <idle>-0     (-----) [000] d.h3 29484.604188: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52781              ps-13726 (13726) [005] d..2 29484.604190: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52782              ps-13726 (13726) [005] dn.3 29484.604192: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52783          <idle>-0     (-----) [000] dnh4 29484.604193: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52784              ps-13726 (13726) [005] d..2 29484.604195: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52785          <idle>-0     (-----) [000] .n.1 29484.604198: cpu_idle: state=4294967295 cpu_id=0
52786          <idle>-0     (-----) [000] d..2 29484.604203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52787 shell svc 13722-13723 ( 1007) [005] d..2 29484.604203: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52788              ps-13726 (13726) [005] d..2 29484.604210: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52789   kworker/u17:2-23076 (23076) [000] d..2 29484.604211: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52790              ps-13726 (13726) [005] dn.3 29484.604213: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52791              ps-13726 (13726) [005] d..2 29484.604215: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52792   kworker/u17:2-23076 (23076) [000] d..3 29484.604216: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52793 shell svc 13722-13723 ( 1007) [005] d..2 29484.604224: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52794              ps-13726 (13726) [005] d..2 29484.604229: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52795              ps-13726 (13726) [005] dn.3 29484.604232: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52796   kworker/u17:2-23076 (23076) [000] d..2 29484.604233: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52797              ps-13726 (13726) [005] d..2 29484.604234: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52798     kworker/0:0-13450 (13450) [000] d..2 29484.604238: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52799 shell svc 13722-13723 ( 1007) [005] d..2 29484.604243: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52800     kworker/0:0-13450 (13450) [000] d..3 29484.604247: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52801          <idle>-0     (-----) [001] .n.1 29484.604252: cpu_idle: state=4294967295 cpu_id=1
52802          <idle>-0     (-----) [001] d..2 29484.604259: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52803     kworker/0:0-13450 (13450) [000] d..2 29484.604261: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52804          <idle>-0     (-----) [000] d..1 29484.604266: cpu_idle: state=0 cpu_id=0
52805            adbd-23485 ( 1007) [001] d..2 29484.604275: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52806          <idle>-0     (-----) [001] d..1 29484.604282: cpu_idle: state=0 cpu_id=1
52807              ps-13726 (13726) [005] d..2 29484.604300: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52808              ps-13726 (13726) [005] dn.3 29484.604305: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52809              ps-13726 (13726) [005] d..2 29484.604307: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52810 shell svc 13722-13723 ( 1007) [005] d..2 29484.604318: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52811          <idle>-0     (-----) [000] d.h3 29484.604362: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52812          <idle>-0     (-----) [000] dnh4 29484.604368: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52813          <idle>-0     (-----) [000] .n.1 29484.604373: cpu_idle: state=4294967295 cpu_id=0
52814          <idle>-0     (-----) [000] d..2 29484.604378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52815   kworker/u17:2-23076 (23076) [000] d..2 29484.604384: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52816   kworker/u17:2-23076 (23076) [000] d..3 29484.604390: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52817   kworker/u17:2-23076 (23076) [000] d..2 29484.604406: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52818     kworker/0:0-13450 (13450) [000] d..2 29484.604413: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52819     kworker/0:0-13450 (13450) [000] d..3 29484.604422: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52820     kworker/0:0-13450 (13450) [000] d..2 29484.604431: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52821            adbd-23484 ( 1007) [000] d..2 29484.604443: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52822            adbd-23484 ( 1007) [000] d..3 29484.604449: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52823              ps-13726 (13726) [005] d..2 29484.604457: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52824              ps-13726 (13726) [005] dn.3 29484.604461: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52825              ps-13726 (13726) [005] d..2 29484.604464: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52826 shell svc 13722-13723 ( 1007) [005] d..2 29484.604475: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52827              ps-13726 (13726) [005] d..2 29484.604481: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52828              ps-13726 (13726) [005] dn.3 29484.604484: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52829              ps-13726 (13726) [005] d..2 29484.604487: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52830            adbd-23484 ( 1007) [000] d..2 29484.604495: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52831 shell svc 13722-13723 ( 1007) [005] d..2 29484.604495: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52832              ps-13726 (13726) [005] d..2 29484.604501: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52833              ps-13726 (13726) [005] dn.3 29484.604504: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52834              ps-13726 (13726) [005] d..2 29484.604506: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52835 shell svc 13722-13723 ( 1007) [005] d..2 29484.604515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52836              ps-13726 (13726) [005] d..2 29484.604570: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52837              ps-13726 (13726) [005] dn.3 29484.604574: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52838            adbd-1007  ( 1007) [000] d..1 29484.604576: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52839              ps-13726 (13726) [005] d..2 29484.604577: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52840 shell svc 13722-13723 ( 1007) [005] d..2 29484.604587: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52841            adbd-1007  ( 1007) [000] d..2 29484.604588: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52842          <idle>-0     (-----) [001] .n.1 29484.604593: cpu_idle: state=4294967295 cpu_id=1
52843          <idle>-0     (-----) [001] d..2 29484.604599: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52844            adbd-1007  ( 1007) [000] d..2 29484.604624: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52845          <idle>-0     (-----) [000] d..1 29484.604631: cpu_idle: state=0 cpu_id=0
52846              ps-13726 (13726) [005] d..2 29484.604639: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52847              ps-13726 (13726) [005] dn.3 29484.604643: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52848              ps-13726 (13726) [005] d..2 29484.604646: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52849            adbd-23485 ( 1007) [001] d..2 29484.604646: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52850          <idle>-0     (-----) [001] d..1 29484.604655: cpu_idle: state=0 cpu_id=1
52851 shell svc 13722-13723 ( 1007) [005] d..2 29484.604656: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52852          <idle>-0     (-----) [000] d.h3 29484.604669: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52853          <idle>-0     (-----) [000] dnh4 29484.604675: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52854          <idle>-0     (-----) [000] .n.1 29484.604681: cpu_idle: state=4294967295 cpu_id=0
52855          <idle>-0     (-----) [000] d..2 29484.604686: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52856   kworker/u17:2-23076 (23076) [000] d..2 29484.604694: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52857   kworker/u17:2-23076 (23076) [000] d..3 29484.604700: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52858   kworker/u17:2-23076 (23076) [000] d..2 29484.604716: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52859     kworker/0:0-13450 (13450) [000] d..2 29484.604722: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52860     kworker/0:0-13450 (13450) [000] d..3 29484.604731: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52861          <idle>-0     (-----) [001] .n.1 29484.604737: cpu_idle: state=4294967295 cpu_id=1
52862          <idle>-0     (-----) [001] d..2 29484.604743: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52863     kworker/0:0-13450 (13450) [000] d..2 29484.604746: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52864          <idle>-0     (-----) [000] d..1 29484.604752: cpu_idle: state=0 cpu_id=0
52865            adbd-23485 ( 1007) [001] d..2 29484.604790: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52866          <idle>-0     (-----) [001] d..1 29484.604797: cpu_idle: state=0 cpu_id=1
52867          <idle>-0     (-----) [000] d.h3 29484.604824: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52868          <idle>-0     (-----) [000] dnh4 29484.604829: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52869          <idle>-0     (-----) [000] .n.1 29484.604834: cpu_idle: state=4294967295 cpu_id=0
52870          <idle>-0     (-----) [000] d..2 29484.604839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52871   kworker/u17:2-23076 (23076) [000] d..2 29484.604846: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52872   kworker/u17:2-23076 (23076) [000] d..3 29484.604851: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52873   kworker/u17:2-23076 (23076) [000] d..2 29484.604867: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52874     kworker/0:0-13450 (13450) [000] d..2 29484.604873: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52875     kworker/0:0-13450 (13450) [000] d..3 29484.604882: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52876          <idle>-0     (-----) [001] .n.1 29484.604887: cpu_idle: state=4294967295 cpu_id=1
52877          <idle>-0     (-----) [001] d..2 29484.604894: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52878     kworker/0:0-13450 (13450) [000] d..2 29484.604897: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52879          <idle>-0     (-----) [000] d..1 29484.604901: cpu_idle: state=0 cpu_id=0
52880            adbd-23485 ( 1007) [001] d..2 29484.604912: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52881          <idle>-0     (-----) [001] d..1 29484.604919: cpu_idle: state=0 cpu_id=1
52882          <idle>-0     (-----) [000] d.h3 29484.604999: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52883          <idle>-0     (-----) [000] dnh4 29484.605006: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52884          <idle>-0     (-----) [000] .n.1 29484.605011: cpu_idle: state=4294967295 cpu_id=0
52885          <idle>-0     (-----) [000] d..2 29484.605016: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52886   kworker/u17:2-23076 (23076) [000] d..2 29484.605022: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52887   kworker/u17:2-23076 (23076) [000] d..3 29484.605027: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52888   kworker/u17:2-23076 (23076) [000] d..2 29484.605044: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52889     kworker/0:0-13450 (13450) [000] d..2 29484.605050: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52890     kworker/0:0-13450 (13450) [000] d..3 29484.605060: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52891     kworker/0:0-13450 (13450) [000] d..2 29484.605068: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52892            adbd-23484 ( 1007) [000] d..2 29484.605080: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52893            adbd-23484 ( 1007) [000] d..3 29484.605086: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52894            adbd-23484 ( 1007) [000] d..2 29484.605131: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52895            adbd-1007  ( 1007) [000] d..1 29484.605192: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52896            adbd-1007  ( 1007) [000] d..2 29484.605204: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52897          <idle>-0     (-----) [001] .n.1 29484.605209: cpu_idle: state=4294967295 cpu_id=1
52898          <idle>-0     (-----) [001] d..2 29484.605215: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52899            adbd-1007  ( 1007) [000] d..2 29484.605239: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52900          <idle>-0     (-----) [000] d..1 29484.605246: cpu_idle: state=0 cpu_id=0
52901            adbd-23485 ( 1007) [001] d..2 29484.605261: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52902          <idle>-0     (-----) [000] d.h3 29484.605269: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52903          <idle>-0     (-----) [001] d..1 29484.605269: cpu_idle: state=0 cpu_id=1
52904          <idle>-0     (-----) [000] dnh4 29484.605276: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52905          <idle>-0     (-----) [000] .n.1 29484.605282: cpu_idle: state=4294967295 cpu_id=0
52906          <idle>-0     (-----) [000] d..2 29484.605288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52907   kworker/u17:2-23076 (23076) [000] d..2 29484.605296: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52908   kworker/u17:2-23076 (23076) [000] d..3 29484.605302: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52909   kworker/u17:2-23076 (23076) [000] d..2 29484.605319: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52910     kworker/0:0-13450 (13450) [000] d..2 29484.605325: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52911     kworker/0:0-13450 (13450) [000] d..3 29484.605335: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52912          <idle>-0     (-----) [001] .n.1 29484.605340: cpu_idle: state=4294967295 cpu_id=1
52913     kworker/0:0-13450 (13450) [000] d..2 29484.605345: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52914          <idle>-0     (-----) [001] d..2 29484.605347: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52915          <idle>-0     (-----) [000] d..1 29484.605349: cpu_idle: state=0 cpu_id=0
52916            adbd-23485 ( 1007) [001] d..2 29484.605393: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52917          <idle>-0     (-----) [001] d..1 29484.605400: cpu_idle: state=0 cpu_id=1
52918          <idle>-0     (-----) [000] d.h3 29484.605414: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52919          <idle>-0     (-----) [000] dnh4 29484.605420: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52920          <idle>-0     (-----) [000] .n.1 29484.605425: cpu_idle: state=4294967295 cpu_id=0
52921          <idle>-0     (-----) [000] d..2 29484.605429: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52922   kworker/u17:2-23076 (23076) [000] d..2 29484.605436: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52923   kworker/u17:2-23076 (23076) [000] d..3 29484.605442: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52924   kworker/u17:2-23076 (23076) [000] d..2 29484.605458: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52925     kworker/0:0-13450 (13450) [000] d..2 29484.605464: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52926     kworker/0:0-13450 (13450) [000] d..3 29484.605476: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52927          <idle>-0     (-----) [001] .n.1 29484.605482: cpu_idle: state=4294967295 cpu_id=1
52928     kworker/0:0-13450 (13450) [000] d..2 29484.605486: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52929          <idle>-0     (-----) [001] d..2 29484.605488: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52930          <idle>-0     (-----) [000] d..1 29484.605490: cpu_idle: state=0 cpu_id=0
52931            adbd-23485 ( 1007) [001] d..2 29484.605505: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52932          <idle>-0     (-----) [001] d..1 29484.605511: cpu_idle: state=0 cpu_id=1
52933          <idle>-0     (-----) [000] d.h3 29484.605612: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52934          <idle>-0     (-----) [000] dnh4 29484.605620: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52935          <idle>-0     (-----) [000] .n.1 29484.605626: cpu_idle: state=4294967295 cpu_id=0
52936          <idle>-0     (-----) [000] d..2 29484.605631: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52937   kworker/u17:2-23076 (23076) [000] d..2 29484.605637: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52938   kworker/u17:2-23076 (23076) [000] d..3 29484.605642: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
52939   kworker/u17:2-23076 (23076) [000] d..2 29484.605658: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
52940     kworker/0:0-13450 (13450) [000] d..2 29484.605664: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
52941     kworker/0:0-13450 (13450) [000] d..3 29484.605673: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
52942     kworker/0:0-13450 (13450) [000] d..2 29484.605682: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
52943            adbd-23484 ( 1007) [000] d..2 29484.605693: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52944            adbd-23484 ( 1007) [000] d..3 29484.605699: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52945            adbd-23484 ( 1007) [000] d..2 29484.605743: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
52946            adbd-1007  ( 1007) [000] d..2 29484.605807: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52947          <idle>-0     (-----) [000] d..1 29484.605814: cpu_idle: state=0 cpu_id=0
52948              ps-13726 (13726) [005] d..2 29484.606383: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52949              ps-13726 (13726) [005] dn.3 29484.606388: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52950              ps-13726 (13726) [005] d..2 29484.606391: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52951 shell svc 13722-13723 ( 1007) [005] d..2 29484.606400: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
52952 shell svc 13722-13723 ( 1007) [005] d..2 29484.606413: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52953          <idle>-0     (-----) [000] dnh2 29484.606418: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
52954              ps-13726 (13726) [005] d..2 29484.606420: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52955          <idle>-0     (-----) [000] .n.1 29484.606422: cpu_idle: state=4294967295 cpu_id=0
52956              ps-13726 (13726) [005] dn.3 29484.606423: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52957              ps-13726 (13726) [005] d..2 29484.606426: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52958          <idle>-0     (-----) [000] d..2 29484.606427: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
52959 shell svc 13722-13723 ( 1007) [005] d..2 29484.606436: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52960              ps-13726 (13726) [005] d..2 29484.606441: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52961              ps-13726 (13726) [005] dn.3 29484.606444: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52962              ps-13726 (13726) [005] d..2 29484.606447: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52963 shell svc 13722-13723 ( 1007) [005] d..2 29484.606456: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52964              ps-13726 (13726) [005] d..2 29484.606461: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52965              ps-13726 (13726) [005] dn.3 29484.606464: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52966            adbd-1007  ( 1007) [000] d..1 29484.606464: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
52967              ps-13726 (13726) [005] d..2 29484.606466: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52968 shell svc 13722-13723 ( 1007) [005] d..2 29484.606475: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52969            adbd-1007  ( 1007) [000] d..2 29484.606476: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
52970              ps-13726 (13726) [005] d..2 29484.606480: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52971          <idle>-0     (-----) [001] .n.1 29484.606481: cpu_idle: state=4294967295 cpu_id=1
52972              ps-13726 (13726) [005] dn.3 29484.606483: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52973              ps-13726 (13726) [005] d..2 29484.606485: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52974          <idle>-0     (-----) [001] d..2 29484.606487: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
52975 shell svc 13722-13723 ( 1007) [005] d..2 29484.606494: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52976              ps-13726 (13726) [005] d..2 29484.606498: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52977              ps-13726 (13726) [005] dn.3 29484.606501: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52978              ps-13726 (13726) [005] d..2 29484.606504: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52979 shell svc 13722-13723 ( 1007) [005] d..2 29484.606512: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52980            adbd-1007  ( 1007) [000] d..2 29484.606512: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52981              ps-13726 (13726) [005] d..2 29484.606517: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52982          <idle>-0     (-----) [000] d..1 29484.606518: cpu_idle: state=0 cpu_id=0
52983              ps-13726 (13726) [005] dn.3 29484.606519: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52984              ps-13726 (13726) [005] d..2 29484.606521: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52985 shell svc 13722-13723 ( 1007) [005] d..2 29484.606530: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52986            adbd-23485 ( 1007) [001] d..2 29484.606532: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52987              ps-13726 (13726) [005] d..2 29484.606535: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52988              ps-13726 (13726) [005] dn.3 29484.606537: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52989              ps-13726 (13726) [005] d..2 29484.606540: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52990          <idle>-0     (-----) [000] d.h3 29484.606540: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52991          <idle>-0     (-----) [001] d..1 29484.606540: cpu_idle: state=0 cpu_id=1
52992          <idle>-0     (-----) [000] dnh4 29484.606547: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
52993 shell svc 13722-13723 ( 1007) [005] d..2 29484.606548: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
52994          <idle>-0     (-----) [000] .n.1 29484.606553: cpu_idle: state=4294967295 cpu_id=0
52995              ps-13726 (13726) [005] d..2 29484.606553: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52996              ps-13726 (13726) [005] dn.3 29484.606556: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
52997          <idle>-0     (-----) [000] d..2 29484.606558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
52998              ps-13726 (13726) [005] d..2 29484.606558: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
52999 shell svc 13722-13723 ( 1007) [005] d..2 29484.606566: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53000   kworker/u17:2-23076 (23076) [000] d..2 29484.606567: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53001              ps-13726 (13726) [005] d..2 29484.606572: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53002   kworker/u17:2-23076 (23076) [000] d..3 29484.606573: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53003              ps-13726 (13726) [005] dn.3 29484.606575: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53004              ps-13726 (13726) [005] d..2 29484.606577: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53005 shell svc 13722-13723 ( 1007) [005] d..2 29484.606585: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53006              ps-13726 (13726) [005] d..2 29484.606590: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53007   kworker/u17:2-23076 (23076) [000] d..2 29484.606590: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53008              ps-13726 (13726) [005] dn.3 29484.606593: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53009              ps-13726 (13726) [005] d..2 29484.606595: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53010     kworker/0:0-13450 (13450) [000] d..2 29484.606596: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53011 shell svc 13722-13723 ( 1007) [005] d..2 29484.606603: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53012     kworker/0:0-13450 (13450) [000] d..3 29484.606605: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53013              ps-13726 (13726) [005] d..2 29484.606608: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53014          <idle>-0     (-----) [001] .n.1 29484.606611: cpu_idle: state=4294967295 cpu_id=1
53015              ps-13726 (13726) [005] dn.3 29484.606611: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53016              ps-13726 (13726) [005] d..2 29484.606613: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53017          <idle>-0     (-----) [001] d..2 29484.606617: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53018     kworker/0:0-13450 (13450) [000] d..2 29484.606619: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53019 shell svc 13722-13723 ( 1007) [005] d..2 29484.606621: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53020          <idle>-0     (-----) [000] d..1 29484.606624: cpu_idle: state=0 cpu_id=0
53021              ps-13726 (13726) [005] d..2 29484.606627: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53022              ps-13726 (13726) [005] dn.3 29484.606629: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53023              ps-13726 (13726) [005] d..2 29484.606632: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53024 shell svc 13722-13723 ( 1007) [005] d..2 29484.606640: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53025              ps-13726 (13726) [005] d..2 29484.606645: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53026              ps-13726 (13726) [005] dn.3 29484.606648: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53027              ps-13726 (13726) [005] d..2 29484.606650: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53028 shell svc 13722-13723 ( 1007) [005] d..2 29484.606658: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53029            adbd-23485 ( 1007) [001] d..2 29484.606663: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53030              ps-13726 (13726) [005] d..2 29484.606664: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53031              ps-13726 (13726) [005] dn.3 29484.606666: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53032              ps-13726 (13726) [005] d..2 29484.606669: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53033          <idle>-0     (-----) [001] d..1 29484.606670: cpu_idle: state=0 cpu_id=1
53034 shell svc 13722-13723 ( 1007) [005] d..2 29484.606676: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53035              ps-13726 (13726) [005] d..2 29484.606681: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53036              ps-13726 (13726) [005] dn.3 29484.606684: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53037          <idle>-0     (-----) [000] d.h3 29484.606686: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53038              ps-13726 (13726) [005] d..2 29484.606686: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53039          <idle>-0     (-----) [000] dnh4 29484.606691: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53040 shell svc 13722-13723 ( 1007) [005] d..2 29484.606694: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53041          <idle>-0     (-----) [000] .n.1 29484.606697: cpu_idle: state=4294967295 cpu_id=0
53042              ps-13726 (13726) [005] d..2 29484.606699: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53043          <idle>-0     (-----) [000] d..2 29484.606701: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53044              ps-13726 (13726) [005] dn.3 29484.606702: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53045              ps-13726 (13726) [005] d..2 29484.606705: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53046   kworker/u17:2-23076 (23076) [000] d..2 29484.606708: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53047 shell svc 13722-13723 ( 1007) [005] d..2 29484.606713: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53048   kworker/u17:2-23076 (23076) [000] d..3 29484.606714: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53049              ps-13726 (13726) [005] d..2 29484.606718: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53050              ps-13726 (13726) [005] dn.3 29484.606720: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53051              ps-13726 (13726) [005] d..2 29484.606723: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53052   kworker/u17:2-23076 (23076) [000] d..2 29484.606730: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53053 shell svc 13722-13723 ( 1007) [005] d..2 29484.606731: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53054     kworker/0:0-13450 (13450) [000] d..2 29484.606735: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53055              ps-13726 (13726) [005] d..2 29484.606736: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53056              ps-13726 (13726) [005] dn.3 29484.606738: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53057              ps-13726 (13726) [005] d..2 29484.606740: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53058     kworker/0:0-13450 (13450) [000] d..3 29484.606745: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53059 shell svc 13722-13723 ( 1007) [005] d..2 29484.606748: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53060          <idle>-0     (-----) [001] .n.1 29484.606750: cpu_idle: state=4294967295 cpu_id=1
53061              ps-13726 (13726) [005] d..2 29484.606753: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53062              ps-13726 (13726) [005] dn.3 29484.606756: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53063          <idle>-0     (-----) [001] d..2 29484.606757: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53064     kworker/0:0-13450 (13450) [000] d..2 29484.606758: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53065              ps-13726 (13726) [005] d..2 29484.606759: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53066          <idle>-0     (-----) [000] d..1 29484.606763: cpu_idle: state=0 cpu_id=0
53067 shell svc 13722-13723 ( 1007) [005] d..2 29484.606767: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53068              ps-13726 (13726) [005] d..2 29484.606773: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53069            adbd-23485 ( 1007) [001] d..2 29484.606773: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53070              ps-13726 (13726) [005] dn.3 29484.606775: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53071              ps-13726 (13726) [005] d..2 29484.606778: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53072          <idle>-0     (-----) [001] d..1 29484.606780: cpu_idle: state=0 cpu_id=1
53073 shell svc 13722-13723 ( 1007) [005] d..2 29484.606786: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53074              ps-13726 (13726) [005] d..2 29484.606791: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53075              ps-13726 (13726) [005] dn.3 29484.606794: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53076              ps-13726 (13726) [005] d..2 29484.606796: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53077 shell svc 13722-13723 ( 1007) [005] d..2 29484.606804: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53078              ps-13726 (13726) [005] d..2 29484.606810: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53079              ps-13726 (13726) [005] dn.3 29484.606813: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53080              ps-13726 (13726) [005] d..2 29484.606815: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53081 shell svc 13722-13723 ( 1007) [005] d..2 29484.606823: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53082              ps-13726 (13726) [005] d..2 29484.606830: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53083              ps-13726 (13726) [005] dn.3 29484.606832: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53084              ps-13726 (13726) [005] d..2 29484.606835: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53085 shell svc 13722-13723 ( 1007) [005] d..2 29484.606843: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53086              ps-13726 (13726) [005] d..2 29484.606850: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53087              ps-13726 (13726) [005] dn.3 29484.606853: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53088              ps-13726 (13726) [005] d..2 29484.606855: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53089 shell svc 13722-13723 ( 1007) [005] d..2 29484.606864: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53090              ps-13726 (13726) [005] d..2 29484.606870: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53091              ps-13726 (13726) [005] dn.3 29484.606873: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53092              ps-13726 (13726) [005] d..2 29484.606875: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53093 shell svc 13722-13723 ( 1007) [005] d..2 29484.606883: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53094              ps-13726 (13726) [005] d..2 29484.606889: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53095              ps-13726 (13726) [005] dn.3 29484.606892: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53096              ps-13726 (13726) [005] d..2 29484.606894: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53097          <idle>-0     (-----) [000] d.h3 29484.606894: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53098          <idle>-0     (-----) [000] dnh4 29484.606900: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53099 shell svc 13722-13723 ( 1007) [005] d..2 29484.606902: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53100          <idle>-0     (-----) [000] .n.1 29484.606905: cpu_idle: state=4294967295 cpu_id=0
53101              ps-13726 (13726) [005] d..2 29484.606907: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53102          <idle>-0     (-----) [000] d..2 29484.606910: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53103              ps-13726 (13726) [005] dn.3 29484.606910: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53104              ps-13726 (13726) [005] d..2 29484.606913: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53105   kworker/u17:2-23076 (23076) [000] d..2 29484.606916: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53106 shell svc 13722-13723 ( 1007) [005] d..2 29484.606921: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53107   kworker/u17:2-23076 (23076) [000] d..3 29484.606921: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53108              ps-13726 (13726) [005] d..2 29484.606927: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53109              ps-13726 (13726) [005] dn.3 29484.606930: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53110              ps-13726 (13726) [005] d..2 29484.606932: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53111   kworker/u17:2-23076 (23076) [000] d..2 29484.606938: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53112 shell svc 13722-13723 ( 1007) [005] d..2 29484.606940: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53113     kworker/0:0-13450 (13450) [000] d..2 29484.606945: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53114              ps-13726 (13726) [005] d..2 29484.606946: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53115              ps-13726 (13726) [005] dn.3 29484.606948: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53116              ps-13726 (13726) [005] d..2 29484.606951: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53117     kworker/0:0-13450 (13450) [000] d..3 29484.606954: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53118 shell svc 13722-13723 ( 1007) [005] d..2 29484.606959: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53119     kworker/0:0-13450 (13450) [000] d..2 29484.606963: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53120              ps-13726 (13726) [005] d..2 29484.606965: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53121              ps-13726 (13726) [005] dn.3 29484.606967: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53122              ps-13726 (13726) [005] d..2 29484.606970: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53123            adbd-23484 ( 1007) [000] d..2 29484.606976: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53124 shell svc 13722-13723 ( 1007) [005] d..2 29484.606978: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53125            adbd-23484 ( 1007) [000] d..3 29484.606982: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53126              ps-13726 (13726) [005] d..2 29484.606983: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53127              ps-13726 (13726) [005] dn.3 29484.606986: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53128              ps-13726 (13726) [005] d..2 29484.606988: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53129 shell svc 13722-13723 ( 1007) [005] d..2 29484.606996: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53130              ps-13726 (13726) [005] d..2 29484.607003: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53131              ps-13726 (13726) [005] dn.3 29484.607006: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53132              ps-13726 (13726) [005] d..2 29484.607008: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53133 shell svc 13722-13723 ( 1007) [005] d..2 29484.607017: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53134              ps-13726 (13726) [005] d..2 29484.607022: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53135              ps-13726 (13726) [005] dn.3 29484.607025: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53136            adbd-23484 ( 1007) [000] d..2 29484.607026: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53137              ps-13726 (13726) [005] d..2 29484.607028: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53138 shell svc 13722-13723 ( 1007) [005] d..2 29484.607036: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53139              ps-13726 (13726) [005] d..2 29484.607041: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53140              ps-13726 (13726) [005] dn.3 29484.607043: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53141              ps-13726 (13726) [005] d..2 29484.607046: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53142 shell svc 13722-13723 ( 1007) [005] d..2 29484.607054: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53143              ps-13726 (13726) [005] d..2 29484.607073: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53144              ps-13726 (13726) [005] dn.3 29484.607076: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53145              ps-13726 (13726) [005] d..2 29484.607078: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53146 shell svc 13722-13723 ( 1007) [005] d..2 29484.607088: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53147              ps-13726 (13726) [005] d..2 29484.607094: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53148              ps-13726 (13726) [005] dn.3 29484.607096: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53149              ps-13726 (13726) [005] d..2 29484.607099: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53150 shell svc 13722-13723 ( 1007) [005] d..2 29484.607107: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53151              ps-13726 (13726) [005] d..2 29484.607112: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53152              ps-13726 (13726) [005] dn.3 29484.607115: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53153              ps-13726 (13726) [005] d..2 29484.607118: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53154 shell svc 13722-13723 ( 1007) [005] d..2 29484.607127: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53155              ps-13726 (13726) [005] d..2 29484.607132: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53156              ps-13726 (13726) [005] dn.3 29484.607134: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53157              ps-13726 (13726) [005] d..2 29484.607137: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53158 shell svc 13722-13723 ( 1007) [005] d..2 29484.607145: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53159            adbd-1007  ( 1007) [000] d..1 29484.607150: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53160              ps-13726 (13726) [005] d..2 29484.607150: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53161              ps-13726 (13726) [005] dn.3 29484.607153: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53162              ps-13726 (13726) [005] d..2 29484.607155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53163            adbd-1007  ( 1007) [000] d..2 29484.607162: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53164 shell svc 13722-13723 ( 1007) [005] d..2 29484.607163: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53165          <idle>-0     (-----) [001] .n.1 29484.607166: cpu_idle: state=4294967295 cpu_id=1
53166              ps-13726 (13726) [005] d..2 29484.607169: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53167              ps-13726 (13726) [005] dn.3 29484.607172: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53168              ps-13726 (13726) [005] d..2 29484.607174: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53169          <idle>-0     (-----) [001] d..2 29484.607174: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53170 shell svc 13722-13723 ( 1007) [005] d..2 29484.607182: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53171              ps-13726 (13726) [005] d..2 29484.607188: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53172              ps-13726 (13726) [005] dn.3 29484.607191: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53173              ps-13726 (13726) [005] d..2 29484.607193: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53174            adbd-1007  ( 1007) [000] d..2 29484.607201: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53175 shell svc 13722-13723 ( 1007) [005] d..2 29484.607201: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53176              ps-13726 (13726) [005] d..2 29484.607206: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53177          <idle>-0     (-----) [000] d..1 29484.607208: cpu_idle: state=0 cpu_id=0
53178              ps-13726 (13726) [005] dn.3 29484.607209: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53179              ps-13726 (13726) [005] d..2 29484.607212: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53180 shell svc 13722-13723 ( 1007) [005] d..2 29484.607220: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53181            adbd-23485 ( 1007) [001] d..2 29484.607222: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53182              ps-13726 (13726) [005] d..2 29484.607225: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53183          <idle>-0     (-----) [000] d.h3 29484.607226: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53184              ps-13726 (13726) [005] dn.3 29484.607227: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53185          <idle>-0     (-----) [001] d..1 29484.607229: cpu_idle: state=0 cpu_id=1
53186              ps-13726 (13726) [005] d..2 29484.607230: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53187          <idle>-0     (-----) [000] dnh4 29484.607232: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53188 shell svc 13722-13723 ( 1007) [005] d..2 29484.607238: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53189          <idle>-0     (-----) [000] .n.1 29484.607238: cpu_idle: state=4294967295 cpu_id=0
53190              ps-13726 (13726) [005] d..2 29484.607243: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53191          <idle>-0     (-----) [000] d..2 29484.607243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53192              ps-13726 (13726) [005] dn.3 29484.607246: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53193              ps-13726 (13726) [005] d..2 29484.607248: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53194   kworker/u17:2-23076 (23076) [000] d..2 29484.607251: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53195 shell svc 13722-13723 ( 1007) [005] d..2 29484.607256: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53196   kworker/u17:2-23076 (23076) [000] d..3 29484.607257: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53197              ps-13726 (13726) [005] d..2 29484.607261: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53198              ps-13726 (13726) [005] dn.3 29484.607264: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53199              ps-13726 (13726) [005] d..2 29484.607266: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53200 shell svc 13722-13723 ( 1007) [005] d..2 29484.607274: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53201   kworker/u17:2-23076 (23076) [000] d..2 29484.607276: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53202              ps-13726 (13726) [005] d..2 29484.607280: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53203     kworker/0:0-13450 (13450) [000] d..2 29484.607281: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53204              ps-13726 (13726) [005] dn.3 29484.607282: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53205              ps-13726 (13726) [005] d..2 29484.607284: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53206     kworker/0:0-13450 (13450) [000] d..3 29484.607291: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53207 shell svc 13722-13723 ( 1007) [005] d..2 29484.607292: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53208          <idle>-0     (-----) [001] .n.1 29484.607296: cpu_idle: state=4294967295 cpu_id=1
53209              ps-13726 (13726) [005] d..2 29484.607297: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53210              ps-13726 (13726) [005] dn.3 29484.607300: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53211              ps-13726 (13726) [005] d..2 29484.607302: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53212          <idle>-0     (-----) [001] d..2 29484.607303: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53213     kworker/0:0-13450 (13450) [000] d..2 29484.607305: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53214          <idle>-0     (-----) [000] d..1 29484.607310: cpu_idle: state=0 cpu_id=0
53215 shell svc 13722-13723 ( 1007) [005] d..2 29484.607310: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53216              ps-13726 (13726) [005] d..2 29484.607316: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53217              ps-13726 (13726) [005] dn.3 29484.607318: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53218              ps-13726 (13726) [005] d..2 29484.607321: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53219 shell svc 13722-13723 ( 1007) [005] d..2 29484.607329: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53220              ps-13726 (13726) [005] d..2 29484.607334: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53221              ps-13726 (13726) [005] dn.3 29484.607336: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53222              ps-13726 (13726) [005] d..2 29484.607338: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53223 shell svc 13722-13723 ( 1007) [005] d..2 29484.607346: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53224            adbd-23485 ( 1007) [001] d..2 29484.607350: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53225              ps-13726 (13726) [005] d..2 29484.607351: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53226              ps-13726 (13726) [005] dn.3 29484.607354: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53227              ps-13726 (13726) [005] d..2 29484.607356: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53228          <idle>-0     (-----) [001] d..1 29484.607357: cpu_idle: state=0 cpu_id=1
53229 shell svc 13722-13723 ( 1007) [005] d..2 29484.607365: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53230              ps-13726 (13726) [005] d..2 29484.607370: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53231              ps-13726 (13726) [005] dn.3 29484.607372: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53232              ps-13726 (13726) [005] d..2 29484.607375: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53233 shell svc 13722-13723 ( 1007) [005] d..2 29484.607383: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53234              ps-13726 (13726) [005] d..2 29484.607388: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53235              ps-13726 (13726) [005] dn.3 29484.607391: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53236              ps-13726 (13726) [005] d..2 29484.607393: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53237 shell svc 13722-13723 ( 1007) [005] d..2 29484.607401: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53238          <idle>-0     (-----) [000] d.h3 29484.607403: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53239              ps-13726 (13726) [005] d..2 29484.607407: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53240          <idle>-0     (-----) [000] dnh4 29484.607408: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53241              ps-13726 (13726) [005] dn.3 29484.607409: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53242              ps-13726 (13726) [005] d..2 29484.607412: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53243          <idle>-0     (-----) [000] .n.1 29484.607413: cpu_idle: state=4294967295 cpu_id=0
53244          <idle>-0     (-----) [000] d..2 29484.607418: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53245 shell svc 13722-13723 ( 1007) [005] d..2 29484.607420: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53246   kworker/u17:2-23076 (23076) [000] d..2 29484.607425: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53247              ps-13726 (13726) [005] d..2 29484.607426: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53248              ps-13726 (13726) [005] dn.3 29484.607429: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53249   kworker/u17:2-23076 (23076) [000] d..3 29484.607430: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53250              ps-13726 (13726) [005] d..2 29484.607431: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53251 shell svc 13722-13723 ( 1007) [005] d..2 29484.607439: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53252              ps-13726 (13726) [005] d..2 29484.607444: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53253              ps-13726 (13726) [005] dn.3 29484.607446: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53254   kworker/u17:2-23076 (23076) [000] d..2 29484.607447: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53255              ps-13726 (13726) [005] d..2 29484.607449: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53256     kworker/0:0-13450 (13450) [000] d..2 29484.607452: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53257 shell svc 13722-13723 ( 1007) [005] d..2 29484.607457: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53258     kworker/0:0-13450 (13450) [000] d..3 29484.607461: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53259          <idle>-0     (-----) [001] .n.1 29484.607466: cpu_idle: state=4294967295 cpu_id=1
53260          <idle>-0     (-----) [001] d..2 29484.607473: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53261     kworker/0:0-13450 (13450) [000] d..2 29484.607475: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53262          <idle>-0     (-----) [000] d..1 29484.607480: cpu_idle: state=0 cpu_id=0
53263            adbd-23485 ( 1007) [001] d..2 29484.607492: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53264          <idle>-0     (-----) [001] d..1 29484.607500: cpu_idle: state=0 cpu_id=1
53265              ps-13726 (13726) [005] d..2 29484.607517: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53266              ps-13726 (13726) [005] dn.3 29484.607521: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53267              ps-13726 (13726) [005] d..2 29484.607524: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53268 shell svc 13722-13723 ( 1007) [005] d..2 29484.607535: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53269              ps-13726 (13726) [005] d..2 29484.607590: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53270              ps-13726 (13726) [005] dn.3 29484.607593: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53271              ps-13726 (13726) [005] d..2 29484.607596: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53272          <idle>-0     (-----) [000] d.h3 29484.607602: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53273 shell svc 13722-13723 ( 1007) [005] d..2 29484.607606: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53274          <idle>-0     (-----) [000] dnh4 29484.607608: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53275          <idle>-0     (-----) [000] .n.1 29484.607613: cpu_idle: state=4294967295 cpu_id=0
53276          <idle>-0     (-----) [000] d..2 29484.607617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53277   kworker/u17:2-23076 (23076) [000] d..2 29484.607623: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53278   kworker/u17:2-23076 (23076) [000] d..3 29484.607628: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53279   kworker/u17:2-23076 (23076) [000] d..2 29484.607644: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53280     kworker/0:0-13450 (13450) [000] d..2 29484.607650: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53281     kworker/0:0-13450 (13450) [000] d..3 29484.607659: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53282     kworker/0:0-13450 (13450) [000] d..2 29484.607668: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53283            adbd-23484 ( 1007) [000] d..2 29484.607680: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53284            adbd-23484 ( 1007) [000] d..3 29484.607686: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53285            adbd-23484 ( 1007) [000] d..2 29484.607731: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53286            adbd-1007  ( 1007) [000] d..1 29484.607810: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53287            adbd-1007  ( 1007) [000] d..2 29484.607824: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53288          <idle>-0     (-----) [001] .n.1 29484.607829: cpu_idle: state=4294967295 cpu_id=1
53289          <idle>-0     (-----) [001] d..2 29484.607836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53290            adbd-1007  ( 1007) [000] d..2 29484.607860: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53291          <idle>-0     (-----) [000] d..1 29484.607867: cpu_idle: state=0 cpu_id=0
53292            adbd-23485 ( 1007) [001] d..2 29484.607882: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53293          <idle>-0     (-----) [001] d..1 29484.607890: cpu_idle: state=0 cpu_id=1
53294              ps-13726 (13726) [005] d..2 29484.607892: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53295          <idle>-0     (-----) [000] d.h3 29484.607895: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53296              ps-13726 (13726) [005] dn.3 29484.607897: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53297              ps-13726 (13726) [005] d..2 29484.607900: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53298          <idle>-0     (-----) [000] dnh4 29484.607905: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53299          <idle>-0     (-----) [000] .n.1 29484.607910: cpu_idle: state=4294967295 cpu_id=0
53300 shell svc 13722-13723 ( 1007) [005] d..2 29484.607912: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53301          <idle>-0     (-----) [000] d..2 29484.607916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53302              ps-13726 (13726) [005] d..2 29484.607918: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53303              ps-13726 (13726) [005] dn.3 29484.607921: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53304              ps-13726 (13726) [005] d..2 29484.607923: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53305   kworker/u17:2-23076 (23076) [000] d..2 29484.607924: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53306   kworker/u17:2-23076 (23076) [000] d..3 29484.607929: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53307 shell svc 13722-13723 ( 1007) [005] d..2 29484.607932: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53308              ps-13726 (13726) [005] d..2 29484.607937: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53309              ps-13726 (13726) [005] dn.3 29484.607940: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53310              ps-13726 (13726) [005] d..2 29484.607942: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53311   kworker/u17:2-23076 (23076) [000] d..2 29484.607946: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53312 shell svc 13722-13723 ( 1007) [005] d..2 29484.607951: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53313     kworker/0:0-13450 (13450) [000] d..2 29484.607952: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53314              ps-13726 (13726) [005] d..2 29484.607956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53315              ps-13726 (13726) [005] dn.3 29484.607959: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53316              ps-13726 (13726) [005] d..2 29484.607961: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53317     kworker/0:0-13450 (13450) [000] d..3 29484.607962: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53318          <idle>-0     (-----) [001] .n.1 29484.607967: cpu_idle: state=4294967295 cpu_id=1
53319 shell svc 13722-13723 ( 1007) [005] d..2 29484.607970: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53320          <idle>-0     (-----) [001] d..2 29484.607974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53321              ps-13726 (13726) [005] d..2 29484.607975: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53322     kworker/0:0-13450 (13450) [000] d..2 29484.607976: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53323              ps-13726 (13726) [005] dn.3 29484.607978: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53324              ps-13726 (13726) [005] d..2 29484.607980: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53325          <idle>-0     (-----) [000] d..1 29484.607982: cpu_idle: state=0 cpu_id=0
53326 shell svc 13722-13723 ( 1007) [005] d..2 29484.607988: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53327              ps-13726 (13726) [005] d..2 29484.607994: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53328              ps-13726 (13726) [005] dn.3 29484.607997: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53329              ps-13726 (13726) [005] d..2 29484.607999: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53330 shell svc 13722-13723 ( 1007) [005] d..2 29484.608007: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53331              ps-13726 (13726) [005] d..2 29484.608012: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53332              ps-13726 (13726) [005] dn.3 29484.608015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53333              ps-13726 (13726) [005] d..2 29484.608017: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53334            adbd-23485 ( 1007) [001] d..2 29484.608021: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53335 shell svc 13722-13723 ( 1007) [005] d..2 29484.608025: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53336          <idle>-0     (-----) [001] d..1 29484.608029: cpu_idle: state=0 cpu_id=1
53337              ps-13726 (13726) [005] d..2 29484.608030: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53338              ps-13726 (13726) [005] dn.3 29484.608033: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53339              ps-13726 (13726) [005] d..2 29484.608036: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53340 shell svc 13722-13723 ( 1007) [005] d..2 29484.608044: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53341          <idle>-0     (-----) [000] d.h3 29484.608056: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53342          <idle>-0     (-----) [000] dnh4 29484.608062: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53343          <idle>-0     (-----) [000] .n.1 29484.608067: cpu_idle: state=4294967295 cpu_id=0
53344          <idle>-0     (-----) [000] d..2 29484.608072: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53345   kworker/u17:2-23076 (23076) [000] d..2 29484.608079: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53346   kworker/u17:2-23076 (23076) [000] d..3 29484.608085: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53347              ps-13726 (13726) [005] d..2 29484.608098: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53348   kworker/u17:2-23076 (23076) [000] d..2 29484.608101: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53349              ps-13726 (13726) [005] dn.3 29484.608101: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53350              ps-13726 (13726) [005] d..2 29484.608104: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53351     kworker/0:0-13450 (13450) [000] d..2 29484.608106: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53352 shell svc 13722-13723 ( 1007) [005] d..2 29484.608115: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53353     kworker/0:0-13450 (13450) [000] d..3 29484.608115: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53354          <idle>-0     (-----) [001] .n.1 29484.608120: cpu_idle: state=4294967295 cpu_id=1
53355          <idle>-0     (-----) [001] d..2 29484.608127: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53356     kworker/0:0-13450 (13450) [000] d..2 29484.608129: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53357          <idle>-0     (-----) [000] d..1 29484.608134: cpu_idle: state=0 cpu_id=0
53358            adbd-23485 ( 1007) [001] d..2 29484.608145: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53359          <idle>-0     (-----) [001] d..1 29484.608153: cpu_idle: state=0 cpu_id=1
53360              ps-13726 (13726) [005] d..2 29484.608239: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53361              ps-13726 (13726) [005] dn.3 29484.608243: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53362              ps-13726 (13726) [005] d..2 29484.608246: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53363          <idle>-0     (-----) [000] d.h3 29484.608249: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53364          <idle>-0     (-----) [000] dnh4 29484.608254: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53365 shell svc 13722-13723 ( 1007) [005] d..2 29484.608257: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53366          <idle>-0     (-----) [000] .n.1 29484.608259: cpu_idle: state=4294967295 cpu_id=0
53367              ps-13726 (13726) [005] d..2 29484.608263: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53368          <idle>-0     (-----) [000] d..2 29484.608264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53369              ps-13726 (13726) [005] dn.3 29484.608266: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53370              ps-13726 (13726) [005] d..2 29484.608268: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53371   kworker/u17:2-23076 (23076) [000] d..2 29484.608270: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53372   kworker/u17:2-23076 (23076) [000] d..3 29484.608276: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53373 shell svc 13722-13723 ( 1007) [005] d..2 29484.608277: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53374              ps-13726 (13726) [005] d..2 29484.608283: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53375              ps-13726 (13726) [005] dn.3 29484.608286: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53376              ps-13726 (13726) [005] d..2 29484.608288: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53377   kworker/u17:2-23076 (23076) [000] d..2 29484.608292: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53378 shell svc 13722-13723 ( 1007) [005] d..2 29484.608296: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53379     kworker/0:0-13450 (13450) [000] d..2 29484.608298: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53380     kworker/0:0-13450 (13450) [000] d..3 29484.608307: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53381     kworker/0:0-13450 (13450) [000] d..2 29484.608316: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53382            adbd-23484 ( 1007) [000] d..2 29484.608328: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53383            adbd-23484 ( 1007) [000] d..3 29484.608334: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53384              ps-13726 (13726) [005] d..2 29484.608352: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53385              ps-13726 (13726) [005] dn.3 29484.608355: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53386              ps-13726 (13726) [005] d..2 29484.608358: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53387 shell svc 13722-13723 ( 1007) [005] d..2 29484.608369: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53388            adbd-23484 ( 1007) [000] d..2 29484.608378: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53389            adbd-1007  ( 1007) [000] d..1 29484.608454: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53390            adbd-1007  ( 1007) [000] d..2 29484.608466: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53391          <idle>-0     (-----) [001] .n.1 29484.608471: cpu_idle: state=4294967295 cpu_id=1
53392          <idle>-0     (-----) [001] d..2 29484.608477: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53393            adbd-1007  ( 1007) [000] d..2 29484.608502: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53394          <idle>-0     (-----) [000] d..1 29484.608509: cpu_idle: state=0 cpu_id=0
53395            adbd-23485 ( 1007) [001] d..2 29484.608524: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53396          <idle>-0     (-----) [001] d..1 29484.608531: cpu_idle: state=0 cpu_id=1
53397          <idle>-0     (-----) [000] d.h3 29484.608540: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53398          <idle>-0     (-----) [000] dnh4 29484.608546: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53399          <idle>-0     (-----) [000] .n.1 29484.608552: cpu_idle: state=4294967295 cpu_id=0
53400          <idle>-0     (-----) [000] d..2 29484.608557: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53401   kworker/u17:2-23076 (23076) [000] d..2 29484.608566: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53402   kworker/u17:2-23076 (23076) [000] d..3 29484.608572: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53403   kworker/u17:2-23076 (23076) [000] d..2 29484.608589: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53404     kworker/0:0-13450 (13450) [000] d..2 29484.608594: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53405     kworker/0:0-13450 (13450) [000] d..3 29484.608604: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53406              ps-13726 (13726) [005] d..2 29484.608609: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53407          <idle>-0     (-----) [001] .n.1 29484.608609: cpu_idle: state=4294967295 cpu_id=1
53408              ps-13726 (13726) [005] dn.3 29484.608613: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53409          <idle>-0     (-----) [001] d..2 29484.608616: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53410              ps-13726 (13726) [005] d..2 29484.608616: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53411     kworker/0:0-13450 (13450) [000] d..2 29484.608618: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53412          <idle>-0     (-----) [000] d..1 29484.608623: cpu_idle: state=0 cpu_id=0
53413 shell svc 13722-13723 ( 1007) [005] d..2 29484.608627: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53414              ps-13726 (13726) [005] d..2 29484.608633: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53415              ps-13726 (13726) [005] dn.3 29484.608636: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53416              ps-13726 (13726) [005] d..2 29484.608639: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53417 shell svc 13722-13723 ( 1007) [005] d..2 29484.608647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53418              ps-13726 (13726) [005] d..2 29484.608653: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53419              ps-13726 (13726) [005] dn.3 29484.608655: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53420              ps-13726 (13726) [005] d..2 29484.608659: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53421            adbd-23485 ( 1007) [001] d..2 29484.608661: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53422 shell svc 13722-13723 ( 1007) [005] d..2 29484.608667: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53423          <idle>-0     (-----) [001] d..1 29484.608669: cpu_idle: state=0 cpu_id=1
53424              ps-13726 (13726) [005] d..2 29484.608673: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53425              ps-13726 (13726) [005] dn.3 29484.608676: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53426              ps-13726 (13726) [005] d..2 29484.608678: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53427 shell svc 13722-13723 ( 1007) [005] d..2 29484.608686: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53428              ps-13726 (13726) [005] d..2 29484.608691: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53429          <idle>-0     (-----) [000] d.h3 29484.608693: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53430              ps-13726 (13726) [005] dn.3 29484.608694: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53431              ps-13726 (13726) [005] d..2 29484.608696: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53432          <idle>-0     (-----) [000] dnh4 29484.608699: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53433          <idle>-0     (-----) [000] .n.1 29484.608703: cpu_idle: state=4294967295 cpu_id=0
53434 shell svc 13722-13723 ( 1007) [005] d..2 29484.608705: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53435          <idle>-0     (-----) [000] d..2 29484.608710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53436              ps-13726 (13726) [005] d..2 29484.608710: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53437              ps-13726 (13726) [005] dn.3 29484.608713: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53438              ps-13726 (13726) [005] d..2 29484.608715: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53439   kworker/u17:2-23076 (23076) [000] d..2 29484.608717: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53440   kworker/u17:2-23076 (23076) [000] d..3 29484.608722: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53441 shell svc 13722-13723 ( 1007) [005] d..2 29484.608723: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53442              ps-13726 (13726) [005] d..2 29484.608729: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53443              ps-13726 (13726) [005] dn.3 29484.608732: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53444              ps-13726 (13726) [005] d..2 29484.608734: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53445   kworker/u17:2-23076 (23076) [000] d..2 29484.608739: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53446 shell svc 13722-13723 ( 1007) [005] d..2 29484.608742: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53447     kworker/0:0-13450 (13450) [000] d..2 29484.608744: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53448     kworker/0:0-13450 (13450) [000] d..3 29484.608753: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53449          <idle>-0     (-----) [001] .n.1 29484.608759: cpu_idle: state=4294967295 cpu_id=1
53450          <idle>-0     (-----) [001] d..2 29484.608765: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53451     kworker/0:0-13450 (13450) [000] d..2 29484.608767: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53452          <idle>-0     (-----) [000] d..1 29484.608772: cpu_idle: state=0 cpu_id=0
53453            adbd-23485 ( 1007) [001] d..2 29484.608781: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53454          <idle>-0     (-----) [001] d..1 29484.608788: cpu_idle: state=0 cpu_id=1
53455              ps-13726 (13726) [005] d..2 29484.608803: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53456              ps-13726 (13726) [005] dn.3 29484.608807: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53457              ps-13726 (13726) [005] d..2 29484.608810: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53458 shell svc 13722-13723 ( 1007) [005] d..2 29484.608820: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53459              ps-13726 (13726) [005] d..2 29484.608872: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53460              ps-13726 (13726) [005] dn.3 29484.608876: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53461              ps-13726 (13726) [005] d..2 29484.608879: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53462 shell svc 13722-13723 ( 1007) [005] d..2 29484.608889: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53463          <idle>-0     (-----) [000] d.h3 29484.608893: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53464          <idle>-0     (-----) [000] dnh4 29484.608899: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53465          <idle>-0     (-----) [000] .n.1 29484.608904: cpu_idle: state=4294967295 cpu_id=0
53466          <idle>-0     (-----) [000] d..2 29484.608909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53467   kworker/u17:2-23076 (23076) [000] d..2 29484.608915: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53468   kworker/u17:2-23076 (23076) [000] d..3 29484.608920: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53469   kworker/u17:2-23076 (23076) [000] d..2 29484.608936: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53470              ps-13726 (13726) [005] d..2 29484.608940: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53471     kworker/0:0-13450 (13450) [000] d..2 29484.608942: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53472              ps-13726 (13726) [005] dn.3 29484.608943: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53473              ps-13726 (13726) [005] d..2 29484.608946: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53474     kworker/0:0-13450 (13450) [000] d..3 29484.608952: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53475 shell svc 13722-13723 ( 1007) [005] d..2 29484.608956: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53476     kworker/0:0-13450 (13450) [000] d..2 29484.608960: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53477            adbd-23484 ( 1007) [000] d..2 29484.608972: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53478            adbd-23484 ( 1007) [000] d..3 29484.608978: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53479              ps-13726 (13726) [005] d..2 29484.609007: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53480              ps-13726 (13726) [005] dn.3 29484.609011: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53481              ps-13726 (13726) [005] d..2 29484.609014: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53482            adbd-23484 ( 1007) [000] d..2 29484.609022: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53483 shell svc 13722-13723 ( 1007) [005] d..2 29484.609024: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53484              ps-13726 (13726) [005] d..2 29484.609075: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53485              ps-13726 (13726) [005] dn.3 29484.609078: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53486              ps-13726 (13726) [005] d..2 29484.609081: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53487 shell svc 13722-13723 ( 1007) [005] d..2 29484.609092: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53488            adbd-1007  ( 1007) [000] d..1 29484.609095: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53489            adbd-1007  ( 1007) [000] d..2 29484.609107: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53490          <idle>-0     (-----) [001] .n.1 29484.609112: cpu_idle: state=4294967295 cpu_id=1
53491          <idle>-0     (-----) [001] d..2 29484.609118: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53492            adbd-1007  ( 1007) [000] d..2 29484.609143: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53493          <idle>-0     (-----) [000] d..1 29484.609149: cpu_idle: state=0 cpu_id=0
53494            adbd-23485 ( 1007) [001] d..2 29484.609165: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53495          <idle>-0     (-----) [001] d..1 29484.609173: cpu_idle: state=0 cpu_id=1
53496              ps-13726 (13726) [005] d..2 29484.609183: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53497          <idle>-0     (-----) [000] d.h3 29484.609185: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53498              ps-13726 (13726) [005] dn.3 29484.609187: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53499              ps-13726 (13726) [005] d..2 29484.609189: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53500          <idle>-0     (-----) [000] dnh4 29484.609191: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53501          <idle>-0     (-----) [000] .n.1 29484.609197: cpu_idle: state=4294967295 cpu_id=0
53502 shell svc 13722-13723 ( 1007) [005] d..2 29484.609200: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53503          <idle>-0     (-----) [000] d..2 29484.609202: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53504              ps-13726 (13726) [005] d..2 29484.609206: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53505              ps-13726 (13726) [005] dn.3 29484.609209: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53506   kworker/u17:2-23076 (23076) [000] d..2 29484.609211: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53507              ps-13726 (13726) [005] d..2 29484.609211: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53508   kworker/u17:2-23076 (23076) [000] d..3 29484.609216: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53509 shell svc 13722-13723 ( 1007) [005] d..2 29484.609220: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53510   kworker/u17:2-23076 (23076) [000] d..2 29484.609233: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53511     kworker/0:0-13450 (13450) [000] d..2 29484.609239: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53512     kworker/0:0-13450 (13450) [000] d..3 29484.609248: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53513          <idle>-0     (-----) [001] .n.1 29484.609253: cpu_idle: state=4294967295 cpu_id=1
53514          <idle>-0     (-----) [001] d..2 29484.609260: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53515     kworker/0:0-13450 (13450) [000] d..2 29484.609262: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53516          <idle>-0     (-----) [000] d..1 29484.609267: cpu_idle: state=0 cpu_id=0
53517              ps-13726 (13726) [005] d..2 29484.609285: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53518              ps-13726 (13726) [005] dn.3 29484.609289: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53519              ps-13726 (13726) [005] d..2 29484.609292: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53520 shell svc 13722-13723 ( 1007) [005] d..2 29484.609303: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53521            adbd-23485 ( 1007) [001] d..2 29484.609307: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53522          <idle>-0     (-----) [001] d..1 29484.609315: cpu_idle: state=0 cpu_id=1
53523          <idle>-0     (-----) [000] d.h3 29484.609329: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53524          <idle>-0     (-----) [000] dnh4 29484.609335: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53525          <idle>-0     (-----) [000] .n.1 29484.609340: cpu_idle: state=4294967295 cpu_id=0
53526          <idle>-0     (-----) [000] d..2 29484.609345: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53527   kworker/u17:2-23076 (23076) [000] d..2 29484.609352: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53528   kworker/u17:2-23076 (23076) [000] d..3 29484.609357: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53529              ps-13726 (13726) [005] d..2 29484.609362: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53530              ps-13726 (13726) [005] dn.3 29484.609366: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53531              ps-13726 (13726) [005] d..2 29484.609369: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53532   kworker/u17:2-23076 (23076) [000] d..2 29484.609373: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53533     kworker/0:0-13450 (13450) [000] d..2 29484.609378: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53534 shell svc 13722-13723 ( 1007) [005] d..2 29484.609379: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53535     kworker/0:0-13450 (13450) [000] d..3 29484.609388: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53536          <idle>-0     (-----) [001] .n.1 29484.609393: cpu_idle: state=4294967295 cpu_id=1
53537          <idle>-0     (-----) [001] d..2 29484.609400: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53538     kworker/0:0-13450 (13450) [000] d..2 29484.609401: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53539          <idle>-0     (-----) [000] d..1 29484.609406: cpu_idle: state=0 cpu_id=0
53540            adbd-23485 ( 1007) [001] d..2 29484.609417: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53541          <idle>-0     (-----) [001] d..1 29484.609424: cpu_idle: state=0 cpu_id=1
53542              ps-13726 (13726) [005] d..2 29484.609497: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53543              ps-13726 (13726) [005] dn.3 29484.609501: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53544              ps-13726 (13726) [005] d..2 29484.609504: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53545          <idle>-0     (-----) [000] d.h3 29484.609511: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53546 shell svc 13722-13723 ( 1007) [005] d..2 29484.609514: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53547          <idle>-0     (-----) [000] dnh4 29484.609517: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53548              ps-13726 (13726) [005] d..2 29484.609521: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53549          <idle>-0     (-----) [000] .n.1 29484.609522: cpu_idle: state=4294967295 cpu_id=0
53550              ps-13726 (13726) [005] dn.3 29484.609524: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53551          <idle>-0     (-----) [000] d..2 29484.609526: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53552              ps-13726 (13726) [005] d..2 29484.609526: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53553   kworker/u17:2-23076 (23076) [000] d..2 29484.609532: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53554 shell svc 13722-13723 ( 1007) [005] d..2 29484.609536: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53555   kworker/u17:2-23076 (23076) [000] d..3 29484.609538: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53556              ps-13726 (13726) [005] d..2 29484.609541: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53557              ps-13726 (13726) [005] dn.3 29484.609544: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53558              ps-13726 (13726) [005] d..2 29484.609546: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53559   kworker/u17:2-23076 (23076) [000] d..2 29484.609555: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53560 shell svc 13722-13723 ( 1007) [005] d..2 29484.609555: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53561     kworker/0:0-13450 (13450) [000] d..2 29484.609560: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53562     kworker/0:0-13450 (13450) [000] d..3 29484.609570: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53563     kworker/0:0-13450 (13450) [000] d..2 29484.609578: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53564            adbd-23484 ( 1007) [000] d..2 29484.609590: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53565            adbd-23484 ( 1007) [000] d..3 29484.609596: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53566              ps-13726 (13726) [005] d..2 29484.609609: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53567              ps-13726 (13726) [005] dn.3 29484.609612: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53568              ps-13726 (13726) [005] d..2 29484.609615: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53569 shell svc 13722-13723 ( 1007) [005] d..2 29484.609625: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53570            adbd-23484 ( 1007) [000] d..2 29484.609641: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53571            adbd-1007  ( 1007) [000] d..1 29484.609710: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53572            adbd-1007  ( 1007) [000] d..2 29484.609721: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53573          <idle>-0     (-----) [001] .n.1 29484.609726: cpu_idle: state=4294967295 cpu_id=1
53574          <idle>-0     (-----) [001] d..2 29484.609732: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53575            adbd-1007  ( 1007) [000] d..2 29484.609756: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53576          <idle>-0     (-----) [000] d..1 29484.609763: cpu_idle: state=0 cpu_id=0
53577            adbd-23485 ( 1007) [001] d..2 29484.609779: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53578          <idle>-0     (-----) [001] d..1 29484.609786: cpu_idle: state=0 cpu_id=1
53579          <idle>-0     (-----) [000] d.h3 29484.609790: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53580          <idle>-0     (-----) [000] dnh4 29484.609797: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53581          <idle>-0     (-----) [000] .n.1 29484.609802: cpu_idle: state=4294967295 cpu_id=0
53582          <idle>-0     (-----) [000] d..2 29484.609808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53583   kworker/u17:2-23076 (23076) [000] d..2 29484.609816: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53584   kworker/u17:2-23076 (23076) [000] d..3 29484.609821: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53585   kworker/u17:2-23076 (23076) [000] d..2 29484.609838: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53586     kworker/0:0-13450 (13450) [000] d..2 29484.609844: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53587     kworker/0:0-13450 (13450) [000] d..3 29484.609856: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53588          <idle>-0     (-----) [001] .n.1 29484.609861: cpu_idle: state=4294967295 cpu_id=1
53589          <idle>-0     (-----) [001] d..2 29484.609868: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53590     kworker/0:0-13450 (13450) [000] d..2 29484.609871: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53591          <idle>-0     (-----) [000] d..1 29484.609876: cpu_idle: state=0 cpu_id=0
53592            adbd-23485 ( 1007) [001] d..2 29484.609914: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53593              ps-13726 (13726) [005] d..2 29484.609922: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53594          <idle>-0     (-----) [001] d..1 29484.609922: cpu_idle: state=0 cpu_id=1
53595              ps-13726 (13726) [005] dn.3 29484.609926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53596              ps-13726 (13726) [005] d..2 29484.609930: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53597          <idle>-0     (-----) [000] d.h3 29484.609940: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53598 shell svc 13722-13723 ( 1007) [005] d..2 29484.609942: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53599              ps-13726 (13726) [005] d..2 29484.609948: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53600          <idle>-0     (-----) [000] dnh4 29484.609949: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53601              ps-13726 (13726) [005] dn.3 29484.609951: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53602          <idle>-0     (-----) [000] .n.1 29484.609953: cpu_idle: state=4294967295 cpu_id=0
53603              ps-13726 (13726) [005] d..2 29484.609954: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53604          <idle>-0     (-----) [000] d..2 29484.609959: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53605 shell svc 13722-13723 ( 1007) [005] d..2 29484.609962: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53606   kworker/u17:2-23076 (23076) [000] d..2 29484.609966: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53607              ps-13726 (13726) [005] d..2 29484.609969: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53608   kworker/u17:2-23076 (23076) [000] d..3 29484.609971: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53609              ps-13726 (13726) [005] dn.3 29484.609971: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53610              ps-13726 (13726) [005] d..2 29484.609974: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53611 shell svc 13722-13723 ( 1007) [005] d..2 29484.609982: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53612              ps-13726 (13726) [005] d..2 29484.609987: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53613   kworker/u17:2-23076 (23076) [000] d..2 29484.609988: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53614              ps-13726 (13726) [005] dn.3 29484.609990: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53615              ps-13726 (13726) [005] d..2 29484.609992: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53616     kworker/0:0-13450 (13450) [000] d..2 29484.609993: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53617 shell svc 13722-13723 ( 1007) [005] d..2 29484.610001: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53618     kworker/0:0-13450 (13450) [000] d..3 29484.610002: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53619              ps-13726 (13726) [005] d..2 29484.610006: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53620          <idle>-0     (-----) [001] .n.1 29484.610007: cpu_idle: state=4294967295 cpu_id=1
53621              ps-13726 (13726) [005] dn.3 29484.610009: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53622              ps-13726 (13726) [005] d..2 29484.610011: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53623          <idle>-0     (-----) [001] d..2 29484.610013: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53624     kworker/0:0-13450 (13450) [000] d..2 29484.610015: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53625 shell svc 13722-13723 ( 1007) [005] d..2 29484.610020: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53626          <idle>-0     (-----) [000] d..1 29484.610021: cpu_idle: state=0 cpu_id=0
53627              ps-13726 (13726) [005] d..2 29484.610025: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53628              ps-13726 (13726) [005] dn.3 29484.610027: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53629              ps-13726 (13726) [005] d..2 29484.610030: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53630            adbd-23485 ( 1007) [001] d..2 29484.610030: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53631          <idle>-0     (-----) [001] d..1 29484.610037: cpu_idle: state=0 cpu_id=1
53632 shell svc 13722-13723 ( 1007) [005] d..2 29484.610038: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53633              ps-13726 (13726) [005] d..2 29484.610043: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53634              ps-13726 (13726) [005] dn.3 29484.610046: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53635              ps-13726 (13726) [005] d..2 29484.610049: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53636 shell svc 13722-13723 ( 1007) [005] d..2 29484.610057: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53637              ps-13726 (13726) [005] d..2 29484.610063: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53638              ps-13726 (13726) [005] dn.3 29484.610065: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53639              ps-13726 (13726) [005] d..2 29484.610068: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53640 shell svc 13722-13723 ( 1007) [005] d..2 29484.610076: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53641              ps-13726 (13726) [005] d..2 29484.610082: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53642              ps-13726 (13726) [005] dn.3 29484.610085: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53643              ps-13726 (13726) [005] d..2 29484.610087: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53644 shell svc 13722-13723 ( 1007) [005] d..2 29484.610096: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53645          <idle>-0     (-----) [000] d.h3 29484.610119: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53646          <idle>-0     (-----) [000] dnh4 29484.610125: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53647          <idle>-0     (-----) [000] .n.1 29484.610130: cpu_idle: state=4294967295 cpu_id=0
53648          <idle>-0     (-----) [000] d..2 29484.610135: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53649   kworker/u17:2-23076 (23076) [000] d..2 29484.610141: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53650   kworker/u17:2-23076 (23076) [000] d..3 29484.610146: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53651   kworker/u17:2-23076 (23076) [000] d..2 29484.610162: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53652     kworker/0:0-13450 (13450) [000] d..2 29484.610169: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53653     kworker/0:0-13450 (13450) [000] d..3 29484.610178: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53654     kworker/0:0-13450 (13450) [000] d..2 29484.610186: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53655            adbd-23484 ( 1007) [000] d..2 29484.610199: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53656            adbd-23484 ( 1007) [000] d..3 29484.610205: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53657            adbd-23484 ( 1007) [000] d..2 29484.610251: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53658              ps-13726 (13726) [005] d..2 29484.610305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53659              ps-13726 (13726) [005] dn.3 29484.610308: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53660              ps-13726 (13726) [005] d..2 29484.610311: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53661            adbd-1007  ( 1007) [000] d..1 29484.610320: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53662 shell svc 13722-13723 ( 1007) [005] d..2 29484.610324: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53663              ps-13726 (13726) [005] d..2 29484.610330: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53664            adbd-1007  ( 1007) [000] d..2 29484.610332: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53665              ps-13726 (13726) [005] dn.3 29484.610333: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53666              ps-13726 (13726) [005] d..2 29484.610335: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53667          <idle>-0     (-----) [001] .n.1 29484.610337: cpu_idle: state=4294967295 cpu_id=1
53668          <idle>-0     (-----) [001] d..2 29484.610343: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53669 shell svc 13722-13723 ( 1007) [005] d..2 29484.610344: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53670              ps-13726 (13726) [005] d..2 29484.610349: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53671              ps-13726 (13726) [005] dn.3 29484.610352: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53672              ps-13726 (13726) [005] d..2 29484.610354: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53673 shell svc 13722-13723 ( 1007) [005] d..2 29484.610363: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53674            adbd-1007  ( 1007) [000] d..2 29484.610368: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53675              ps-13726 (13726) [005] d..2 29484.610368: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53676              ps-13726 (13726) [005] dn.3 29484.610371: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53677              ps-13726 (13726) [005] d..2 29484.610373: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53678          <idle>-0     (-----) [000] d..1 29484.610375: cpu_idle: state=0 cpu_id=0
53679 shell svc 13722-13723 ( 1007) [005] d..2 29484.610382: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53680            adbd-23485 ( 1007) [001] d..2 29484.610390: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53681          <idle>-0     (-----) [000] d.h3 29484.610397: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53682              ps-13726 (13726) [005] d.s3 29484.610398: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
53683          <idle>-0     (-----) [000] dnh4 29484.610404: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53684              ps-13726 (13726) [005] d..2 29484.610419: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53685              ps-13726 (13726) [005] dn.3 29484.610422: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53686              ps-13726 (13726) [005] d..2 29484.610425: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53687          <idle>-0     (-----) [001] dnH3 29484.610425: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
53688          <idle>-0     (-----) [000] dns2 29484.610428: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53689 shell svc 13722-13723 ( 1007) [005] d..2 29484.610435: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53690          <idle>-0     (-----) [001] d..2 29484.610436: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
53691              ps-13726 (13726) [005] d..2 29484.610441: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53692              ps-13726 (13726) [005] dn.3 29484.610444: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53693              ps-13726 (13726) [005] d..2 29484.610447: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53694          <idle>-0     (-----) [000] dns3 29484.610453: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
53695          <idle>-0     (-----) [000] .n.1 29484.610460: cpu_idle: state=4294967295 cpu_id=0
53696 shell svc 13722-13723 ( 1007) [005] d..2 29484.610463: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53697          <idle>-0     (-----) [000] d..2 29484.610466: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53698   kworker/u17:2-23076 (23076) [000] d..2 29484.610475: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53699  kworker/u16:10-23868 (23868) [001] .... 29484.610475: clk_set_rate: l3_cluster1_vote_clk 1305600000
53700  kworker/u16:10-23868 (23868) [001] .... 29484.610479: clk_set_rate: l3_clk 1305600000
53701   kworker/u17:2-23076 (23076) [000] d..3 29484.610480: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53702   kworker/u17:2-23076 (23076) [000] d..2 29484.610497: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53703     kworker/0:0-13450 (13450) [000] d..2 29484.610508: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53704     kworker/0:0-13450 (13450) [000] d..3 29484.610518: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53705     kworker/0:0-13450 (13450) [000] d..2 29484.610539: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53706          <idle>-0     (-----) [000] d..1 29484.610555: cpu_idle: state=0 cpu_id=0
53707  kworker/u16:10-23868 (23868) [001] .... 29484.610561: clk_set_rate: l3_cluster0_vote_clk 844800000
53708  kworker/u16:10-23868 (23868) [001] d..2 29484.610598: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
53709     rcu_preempt-7     (    7) [001] d..2 29484.610610: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
53710            adbd-23485 ( 1007) [001] d..2 29484.610662: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53711          <idle>-0     (-----) [001] d..1 29484.610673: cpu_idle: state=0 cpu_id=1
53712              ps-13726 (13726) [005] d..2 29484.610679: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53713              ps-13726 (13726) [005] dn.3 29484.610683: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53714              ps-13726 (13726) [005] d..2 29484.610686: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53715          <idle>-0     (-----) [000] d.h3 29484.610691: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53716          <idle>-0     (-----) [000] dnh4 29484.610697: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53717 shell svc 13722-13723 ( 1007) [005] d..2 29484.610698: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53718          <idle>-0     (-----) [000] .n.1 29484.610702: cpu_idle: state=4294967295 cpu_id=0
53719              ps-13726 (13726) [005] d..2 29484.610706: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53720              ps-13726 (13726) [005] dn.3 29484.610709: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53721          <idle>-0     (-----) [000] d..2 29484.610709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53722              ps-13726 (13726) [005] d..2 29484.610711: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53723   kworker/u17:2-23076 (23076) [000] d..2 29484.610717: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53724 shell svc 13722-13723 ( 1007) [005] d..2 29484.610721: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53725   kworker/u17:2-23076 (23076) [000] d..3 29484.610722: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53726              ps-13726 (13726) [005] d..2 29484.610726: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53727              ps-13726 (13726) [005] dn.3 29484.610729: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53728              ps-13726 (13726) [005] d..2 29484.610732: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53729   kworker/u17:2-23076 (23076) [000] d..2 29484.610739: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53730 shell svc 13722-13723 ( 1007) [005] d..2 29484.610740: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53731     kworker/0:0-13450 (13450) [000] d..2 29484.610744: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53732              ps-13726 (13726) [005] d..2 29484.610746: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53733              ps-13726 (13726) [005] dn.3 29484.610749: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53734              ps-13726 (13726) [005] d..2 29484.610752: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53735     kworker/0:0-13450 (13450) [000] d..3 29484.610753: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53736          <idle>-0     (-----) [001] .n.1 29484.610759: cpu_idle: state=4294967295 cpu_id=1
53737 shell svc 13722-13723 ( 1007) [005] d..2 29484.610760: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53738              ps-13726 (13726) [005] d..2 29484.610766: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53739          <idle>-0     (-----) [001] d..2 29484.610766: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53740     kworker/0:0-13450 (13450) [000] d..2 29484.610767: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53741              ps-13726 (13726) [005] dn.3 29484.610768: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53742              ps-13726 (13726) [005] d..2 29484.610771: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53743          <idle>-0     (-----) [000] d..1 29484.610775: cpu_idle: state=0 cpu_id=0
53744 shell svc 13722-13723 ( 1007) [005] d..2 29484.610779: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53745            adbd-23485 ( 1007) [001] d..2 29484.610785: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53746          <idle>-0     (-----) [001] d..1 29484.610792: cpu_idle: state=0 cpu_id=1
53747          <idle>-0     (-----) [000] d.h3 29484.610860: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53748          <idle>-0     (-----) [000] dnh4 29484.610866: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53749          <idle>-0     (-----) [000] .n.1 29484.610871: cpu_idle: state=4294967295 cpu_id=0
53750          <idle>-0     (-----) [000] d..2 29484.610877: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53751   kworker/u17:2-23076 (23076) [000] d..2 29484.610885: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53752   kworker/u17:2-23076 (23076) [000] d..3 29484.610890: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53753   kworker/u17:2-23076 (23076) [000] d..2 29484.610907: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53754     kworker/0:0-13450 (13450) [000] d..2 29484.610913: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53755     kworker/0:0-13450 (13450) [000] d..3 29484.610922: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53756     kworker/0:0-13450 (13450) [000] d..2 29484.610930: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53757            adbd-23484 ( 1007) [000] d..2 29484.610943: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53758            adbd-23484 ( 1007) [000] d..3 29484.610949: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53759            adbd-23484 ( 1007) [000] d..2 29484.610995: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53760            adbd-1007  ( 1007) [000] d..1 29484.611067: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53761            adbd-1007  ( 1007) [000] d..2 29484.611078: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53762          <idle>-0     (-----) [001] .n.1 29484.611083: cpu_idle: state=4294967295 cpu_id=1
53763          <idle>-0     (-----) [001] d..2 29484.611089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53764            adbd-1007  ( 1007) [000] d..2 29484.611113: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53765          <idle>-0     (-----) [000] d..1 29484.611123: cpu_idle: state=0 cpu_id=0
53766            adbd-23485 ( 1007) [001] d..2 29484.611136: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53767          <idle>-0     (-----) [001] d..1 29484.611142: cpu_idle: state=0 cpu_id=1
53768          <idle>-0     (-----) [000] d.h3 29484.611144: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53769              ps-13726 (13726) [005] d..2 29484.611147: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53770          <idle>-0     (-----) [000] dnh4 29484.611150: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53771              ps-13726 (13726) [005] dn.3 29484.611152: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53772              ps-13726 (13726) [005] d..2 29484.611155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53773          <idle>-0     (-----) [000] .n.1 29484.611156: cpu_idle: state=4294967295 cpu_id=0
53774          <idle>-0     (-----) [000] d..2 29484.611163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53775 shell svc 13722-13723 ( 1007) [005] d..2 29484.611167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53776   kworker/u17:2-23076 (23076) [000] d..2 29484.611171: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53777              ps-13726 (13726) [005] d..2 29484.611173: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53778              ps-13726 (13726) [005] dn.3 29484.611176: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53779   kworker/u17:2-23076 (23076) [000] d..3 29484.611177: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53780              ps-13726 (13726) [005] d..2 29484.611178: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53781 shell svc 13722-13723 ( 1007) [005] d..2 29484.611187: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53782              ps-13726 (13726) [005] d..2 29484.611193: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53783   kworker/u17:2-23076 (23076) [000] d..2 29484.611194: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53784              ps-13726 (13726) [005] dn.3 29484.611195: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53785              ps-13726 (13726) [005] d..2 29484.611198: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53786     kworker/0:0-13450 (13450) [000] d..2 29484.611200: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53787 shell svc 13722-13723 ( 1007) [005] d..2 29484.611206: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53788     kworker/0:0-13450 (13450) [000] d..3 29484.611210: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53789              ps-13726 (13726) [005] d..2 29484.611212: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53790          <idle>-0     (-----) [001] .n.1 29484.611214: cpu_idle: state=4294967295 cpu_id=1
53791              ps-13726 (13726) [005] dn.3 29484.611215: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53792              ps-13726 (13726) [005] d..2 29484.611217: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53793          <idle>-0     (-----) [001] d..2 29484.611221: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53794     kworker/0:0-13450 (13450) [000] d..2 29484.611224: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53795 shell svc 13722-13723 ( 1007) [005] d..2 29484.611225: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53796              ps-13726 (13726) [005] d..2 29484.611230: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53797          <idle>-0     (-----) [000] d..1 29484.611232: cpu_idle: state=0 cpu_id=0
53798              ps-13726 (13726) [005] dn.3 29484.611233: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53799              ps-13726 (13726) [005] d..2 29484.611235: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53800 shell svc 13722-13723 ( 1007) [005] d..2 29484.611244: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53801              ps-13726 (13726) [005] d..2 29484.611249: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53802              ps-13726 (13726) [005] dn.3 29484.611251: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53803              ps-13726 (13726) [005] d..2 29484.611254: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53804 shell svc 13722-13723 ( 1007) [005] d..2 29484.611262: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53805              ps-13726 (13726) [005] d..2 29484.611267: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53806            adbd-23485 ( 1007) [001] d..2 29484.611268: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53807              ps-13726 (13726) [005] dn.3 29484.611270: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53808              ps-13726 (13726) [005] d..2 29484.611272: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53809          <idle>-0     (-----) [001] d..1 29484.611274: cpu_idle: state=0 cpu_id=1
53810 shell svc 13722-13723 ( 1007) [005] d..2 29484.611280: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53811              ps-13726 (13726) [005] d..2 29484.611286: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53812              ps-13726 (13726) [005] dn.3 29484.611289: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53813              ps-13726 (13726) [005] d..2 29484.611291: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53814 shell svc 13722-13723 ( 1007) [005] d..2 29484.611300: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53815          <idle>-0     (-----) [000] d.h3 29484.611300: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53816              ps-13726 (13726) [005] d..2 29484.611305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53817          <idle>-0     (-----) [000] dnh4 29484.611306: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53818              ps-13726 (13726) [005] dn.3 29484.611308: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53819              ps-13726 (13726) [005] d..2 29484.611311: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53820          <idle>-0     (-----) [000] .n.1 29484.611311: cpu_idle: state=4294967295 cpu_id=0
53821          <idle>-0     (-----) [000] d..2 29484.611317: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53822 shell svc 13722-13723 ( 1007) [005] d..2 29484.611319: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53823              ps-13726 (13726) [005] d..2 29484.611324: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53824   kworker/u17:2-23076 (23076) [000] d..2 29484.611325: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53825              ps-13726 (13726) [005] dn.3 29484.611327: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53826              ps-13726 (13726) [005] d..2 29484.611329: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53827   kworker/u17:2-23076 (23076) [000] d..3 29484.611330: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53828 shell svc 13722-13723 ( 1007) [005] d..2 29484.611338: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53829              ps-13726 (13726) [005] d..2 29484.611343: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53830              ps-13726 (13726) [005] dn.3 29484.611345: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53831   kworker/u17:2-23076 (23076) [000] d..2 29484.611347: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53832              ps-13726 (13726) [005] d..2 29484.611348: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53833     kworker/0:0-13450 (13450) [000] d..2 29484.611352: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53834 shell svc 13722-13723 ( 1007) [005] d..2 29484.611356: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53835     kworker/0:0-13450 (13450) [000] d..3 29484.611361: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53836          <idle>-0     (-----) [001] .n.1 29484.611366: cpu_idle: state=4294967295 cpu_id=1
53837          <idle>-0     (-----) [001] d..2 29484.611373: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53838     kworker/0:0-13450 (13450) [000] d..2 29484.611374: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53839          <idle>-0     (-----) [000] d..1 29484.611382: cpu_idle: state=0 cpu_id=0
53840            adbd-23485 ( 1007) [001] d..2 29484.611389: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53841          <idle>-0     (-----) [001] d..1 29484.611395: cpu_idle: state=0 cpu_id=1
53842              ps-13726 (13726) [005] d..2 29484.611412: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53843              ps-13726 (13726) [005] dn.3 29484.611416: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53844              ps-13726 (13726) [005] d..2 29484.611419: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53845 shell svc 13722-13723 ( 1007) [005] d..2 29484.611429: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53846          <idle>-0     (-----) [000] d.h3 29484.611446: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53847          <idle>-0     (-----) [000] dnh4 29484.611452: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53848          <idle>-0     (-----) [000] .n.1 29484.611457: cpu_idle: state=4294967295 cpu_id=0
53849          <idle>-0     (-----) [000] d..2 29484.611464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53850   kworker/u17:2-23076 (23076) [000] d..2 29484.611470: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53851   kworker/u17:2-23076 (23076) [000] d..3 29484.611475: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53852              ps-13726 (13726) [005] d..2 29484.611480: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53853              ps-13726 (13726) [005] dn.3 29484.611483: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53854              ps-13726 (13726) [005] d..2 29484.611486: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53855   kworker/u17:2-23076 (23076) [000] d..2 29484.611493: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53856 shell svc 13722-13723 ( 1007) [005] d..2 29484.611496: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53857     kworker/0:0-13450 (13450) [000] d..2 29484.611499: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53858     kworker/0:0-13450 (13450) [000] d..3 29484.611508: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53859     kworker/0:0-13450 (13450) [000] d..2 29484.611517: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53860            adbd-23484 ( 1007) [000] d..2 29484.611529: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53861            adbd-23484 ( 1007) [000] d..3 29484.611535: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53862              ps-13726 (13726) [005] d..2 29484.611551: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53863              ps-13726 (13726) [005] dn.3 29484.611555: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53864              ps-13726 (13726) [005] d..2 29484.611558: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53865 shell svc 13722-13723 ( 1007) [005] d..2 29484.611568: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53866            adbd-23484 ( 1007) [000] d..2 29484.611579: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53867              ps-13726 (13726) [005] d..2 29484.611622: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53868              ps-13726 (13726) [005] dn.3 29484.611626: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53869              ps-13726 (13726) [005] d..2 29484.611629: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53870 shell svc 13722-13723 ( 1007) [005] d..2 29484.611640: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53871            adbd-1007  ( 1007) [000] d..1 29484.611654: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53872            adbd-1007  ( 1007) [000] d..2 29484.611666: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53873          <idle>-0     (-----) [001] .n.1 29484.611670: cpu_idle: state=4294967295 cpu_id=1
53874          <idle>-0     (-----) [001] d..2 29484.611677: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53875              ps-13726 (13726) [005] d..2 29484.611692: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53876              ps-13726 (13726) [005] dn.3 29484.611696: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53877              ps-13726 (13726) [005] d..2 29484.611699: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53878            adbd-1007  ( 1007) [000] d..2 29484.611701: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53879 shell svc 13722-13723 ( 1007) [005] d..2 29484.611710: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53880          <idle>-0     (-----) [000] d..1 29484.611711: cpu_idle: state=0 cpu_id=0
53881            adbd-23485 ( 1007) [001] d..2 29484.611724: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53882          <idle>-0     (-----) [001] d..1 29484.611731: cpu_idle: state=0 cpu_id=1
53883          <idle>-0     (-----) [000] d.h3 29484.611750: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53884          <idle>-0     (-----) [000] dnh4 29484.611756: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53885              ps-13726 (13726) [005] d..2 29484.611761: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53886          <idle>-0     (-----) [000] .n.1 29484.611762: cpu_idle: state=4294967295 cpu_id=0
53887              ps-13726 (13726) [005] dn.3 29484.611765: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53888              ps-13726 (13726) [005] d..2 29484.611769: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53889          <idle>-0     (-----) [000] d..2 29484.611769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53890   kworker/u17:2-23076 (23076) [000] d..2 29484.611778: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53891 shell svc 13722-13723 ( 1007) [005] d..2 29484.611779: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53892   kworker/u17:2-23076 (23076) [000] d..3 29484.611783: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53893   kworker/u17:2-23076 (23076) [000] d..2 29484.611800: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53894     kworker/0:0-13450 (13450) [000] d..2 29484.611806: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53895     kworker/0:0-13450 (13450) [000] d..3 29484.611816: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53896          <idle>-0     (-----) [001] .n.1 29484.611821: cpu_idle: state=4294967295 cpu_id=1
53897          <idle>-0     (-----) [001] d..2 29484.611827: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53898     kworker/0:0-13450 (13450) [000] d..2 29484.611830: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53899              ps-13726 (13726) [005] d..2 29484.611831: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53900              ps-13726 (13726) [005] dn.3 29484.611834: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53901              ps-13726 (13726) [005] d..2 29484.611837: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53902          <idle>-0     (-----) [000] d..1 29484.611838: cpu_idle: state=0 cpu_id=0
53903 shell svc 13722-13723 ( 1007) [005] d..2 29484.611847: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53904            adbd-23485 ( 1007) [001] d..2 29484.611874: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53905          <idle>-0     (-----) [001] d..1 29484.611881: cpu_idle: state=0 cpu_id=1
53906              ps-13726 (13726) [005] d..2 29484.611898: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53907              ps-13726 (13726) [005] dn.3 29484.611902: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53908              ps-13726 (13726) [005] d..2 29484.611905: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53909          <idle>-0     (-----) [000] d.h3 29484.611905: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53910          <idle>-0     (-----) [000] dnh4 29484.611911: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53911 shell svc 13722-13723 ( 1007) [005] d..2 29484.611915: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53912          <idle>-0     (-----) [000] .n.1 29484.611916: cpu_idle: state=4294967295 cpu_id=0
53913          <idle>-0     (-----) [000] d..2 29484.611922: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53914   kworker/u17:2-23076 (23076) [000] d..2 29484.611929: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53915   kworker/u17:2-23076 (23076) [000] d..3 29484.611934: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53916   kworker/u17:2-23076 (23076) [000] d..2 29484.611951: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53917     kworker/0:0-13450 (13450) [000] d..2 29484.611957: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53918     kworker/0:0-13450 (13450) [000] d..3 29484.611969: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53919              ps-13726 (13726) [005] d..2 29484.611970: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53920              ps-13726 (13726) [005] dn.3 29484.611973: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53921          <idle>-0     (-----) [001] .n.1 29484.611973: cpu_idle: state=4294967295 cpu_id=1
53922              ps-13726 (13726) [005] d..2 29484.611976: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53923          <idle>-0     (-----) [001] d..2 29484.611980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53924     kworker/0:0-13450 (13450) [000] d..2 29484.611982: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53925 shell svc 13722-13723 ( 1007) [005] d..2 29484.611986: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53926          <idle>-0     (-----) [000] d..1 29484.611990: cpu_idle: state=0 cpu_id=0
53927            adbd-23485 ( 1007) [001] d..2 29484.611996: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53928          <idle>-0     (-----) [001] d..1 29484.612002: cpu_idle: state=0 cpu_id=1
53929              ps-13726 (13726) [005] d..2 29484.612039: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53930              ps-13726 (13726) [005] dn.3 29484.612043: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53931              ps-13726 (13726) [005] d..2 29484.612046: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53932 shell svc 13722-13723 ( 1007) [005] d..2 29484.612056: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53933          <idle>-0     (-----) [000] d.h3 29484.612105: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53934              ps-13726 (13726) [005] d..2 29484.612112: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53935          <idle>-0     (-----) [000] dnh4 29484.612114: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53936              ps-13726 (13726) [005] dn.3 29484.612116: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53937          <idle>-0     (-----) [000] .n.1 29484.612119: cpu_idle: state=4294967295 cpu_id=0
53938              ps-13726 (13726) [005] d..2 29484.612120: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53939          <idle>-0     (-----) [000] d..2 29484.612125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53940 shell svc 13722-13723 ( 1007) [005] d..2 29484.612130: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53941   kworker/u17:2-23076 (23076) [000] d..2 29484.612132: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53942   kworker/u17:2-23076 (23076) [000] d..3 29484.612138: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53943   kworker/u17:2-23076 (23076) [000] d..2 29484.612153: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53944     kworker/0:0-13450 (13450) [000] d..2 29484.612160: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
53945     kworker/0:0-13450 (13450) [000] d..3 29484.612169: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
53946     kworker/0:0-13450 (13450) [000] d..2 29484.612177: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
53947              ps-13726 (13726) [005] d..2 29484.612185: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53948              ps-13726 (13726) [005] dn.3 29484.612189: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53949            adbd-23484 ( 1007) [000] d..2 29484.612189: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
53950              ps-13726 (13726) [005] d..2 29484.612192: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53951            adbd-23484 ( 1007) [000] d..3 29484.612196: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
53952 shell svc 13722-13723 ( 1007) [005] d..2 29484.612202: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53953            adbd-23484 ( 1007) [000] d..2 29484.612240: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
53954              ps-13726 (13726) [005] d..2 29484.612255: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53955              ps-13726 (13726) [005] dn.3 29484.612258: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53956              ps-13726 (13726) [005] d..2 29484.612261: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53957 shell svc 13722-13723 ( 1007) [005] d..2 29484.612272: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53958            adbd-1007  ( 1007) [000] d..1 29484.612310: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53959            adbd-1007  ( 1007) [000] d..2 29484.612321: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53960          <idle>-0     (-----) [001] .n.1 29484.612325: cpu_idle: state=4294967295 cpu_id=1
53961              ps-13726 (13726) [005] d..2 29484.612325: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53962              ps-13726 (13726) [005] dn.3 29484.612329: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53963          <idle>-0     (-----) [001] d..2 29484.612332: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53964              ps-13726 (13726) [005] d..2 29484.612332: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53965 shell svc 13722-13723 ( 1007) [005] d..2 29484.612343: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53966            adbd-1007  ( 1007) [000] d..2 29484.612356: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53967          <idle>-0     (-----) [000] d..1 29484.612366: cpu_idle: state=0 cpu_id=0
53968            adbd-23485 ( 1007) [001] d..2 29484.612378: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53969          <idle>-0     (-----) [001] d..1 29484.612384: cpu_idle: state=0 cpu_id=1
53970              ps-13726 (13726) [005] d..2 29484.612393: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53971          <idle>-0     (-----) [000] d.h3 29484.612397: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53972              ps-13726 (13726) [005] dn.3 29484.612397: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53973              ps-13726 (13726) [005] d..2 29484.612400: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53974          <idle>-0     (-----) [000] dnh4 29484.612404: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53975 shell svc 13722-13723 ( 1007) [005] d..2 29484.612410: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53976          <idle>-0     (-----) [000] .n.1 29484.612410: cpu_idle: state=4294967295 cpu_id=0
53977          <idle>-0     (-----) [000] d..2 29484.612417: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
53978   kworker/u17:2-23076 (23076) [000] d..2 29484.612425: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53979   kworker/u17:2-23076 (23076) [000] d..3 29484.612431: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
53980   kworker/u17:2-23076 (23076) [000] d..2 29484.612447: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
53981     kworker/0:0-13450 (13450) [000] d..2 29484.612453: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
53982              ps-13726 (13726) [005] d..2 29484.612462: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53983     kworker/0:0-13450 (13450) [000] d..3 29484.612462: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
53984              ps-13726 (13726) [005] dn.3 29484.612465: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53985          <idle>-0     (-----) [001] .n.1 29484.612466: cpu_idle: state=4294967295 cpu_id=1
53986              ps-13726 (13726) [005] d..2 29484.612468: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53987          <idle>-0     (-----) [001] d..2 29484.612473: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
53988     kworker/0:0-13450 (13450) [000] d..2 29484.612476: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53989 shell svc 13722-13723 ( 1007) [005] d..2 29484.612478: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53990          <idle>-0     (-----) [000] d..1 29484.612484: cpu_idle: state=0 cpu_id=0
53991            adbd-23485 ( 1007) [001] d..2 29484.612519: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53992          <idle>-0     (-----) [001] d..1 29484.612526: cpu_idle: state=0 cpu_id=1
53993              ps-13726 (13726) [005] d..2 29484.612529: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53994              ps-13726 (13726) [005] dn.3 29484.612533: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
53995              ps-13726 (13726) [005] d..2 29484.612536: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
53996          <idle>-0     (-----) [000] d.h3 29484.612544: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53997 shell svc 13722-13723 ( 1007) [005] d..2 29484.612546: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
53998          <idle>-0     (-----) [000] dnh4 29484.612550: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
53999          <idle>-0     (-----) [000] .n.1 29484.612555: cpu_idle: state=4294967295 cpu_id=0
54000          <idle>-0     (-----) [000] d..2 29484.612561: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54001   kworker/u17:2-23076 (23076) [000] d..2 29484.612568: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54002   kworker/u17:2-23076 (23076) [000] d..3 29484.612574: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54003   kworker/u17:2-23076 (23076) [000] d..2 29484.612591: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54004     kworker/0:0-13450 (13450) [000] d..2 29484.612596: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54005              ps-13726 (13726) [005] d..2 29484.612598: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54006              ps-13726 (13726) [005] dn.3 29484.612602: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54007              ps-13726 (13726) [005] d..2 29484.612605: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54008     kworker/0:0-13450 (13450) [000] d..3 29484.612605: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54009          <idle>-0     (-----) [001] .n.1 29484.612610: cpu_idle: state=4294967295 cpu_id=1
54010 shell svc 13722-13723 ( 1007) [005] d..2 29484.612615: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54011          <idle>-0     (-----) [001] d..2 29484.612616: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54012     kworker/0:0-13450 (13450) [000] d..2 29484.612619: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54013          <idle>-0     (-----) [000] d..1 29484.612626: cpu_idle: state=0 cpu_id=0
54014            adbd-23485 ( 1007) [001] d..2 29484.612632: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54015          <idle>-0     (-----) [001] d..1 29484.612638: cpu_idle: state=0 cpu_id=1
54016          <idle>-0     (-----) [000] d.h3 29484.612740: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54017          <idle>-0     (-----) [000] dnh4 29484.612746: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54018          <idle>-0     (-----) [000] .n.1 29484.612751: cpu_idle: state=4294967295 cpu_id=0
54019          <idle>-0     (-----) [000] d..2 29484.612757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54020   kworker/u17:2-23076 (23076) [000] d..2 29484.612764: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54021   kworker/u17:2-23076 (23076) [000] d..3 29484.612769: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54022   kworker/u17:2-23076 (23076) [000] d..2 29484.612786: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54023     kworker/0:0-13450 (13450) [000] d..2 29484.612793: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54024     kworker/0:0-13450 (13450) [000] d..3 29484.612802: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54025     kworker/0:0-13450 (13450) [000] d..2 29484.612811: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54026            adbd-23484 ( 1007) [000] d..2 29484.612822: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54027            adbd-23484 ( 1007) [000] d..3 29484.612828: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54028              ps-13726 (13726) [005] d..2 29484.612859: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54029              ps-13726 (13726) [005] dn.3 29484.612864: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54030              ps-13726 (13726) [005] d..2 29484.612867: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54031            adbd-23484 ( 1007) [000] d..2 29484.612873: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54032 shell svc 13722-13723 ( 1007) [005] d..2 29484.612878: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54033              ps-13726 (13726) [005] d..2 29484.612884: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54034              ps-13726 (13726) [005] dn.3 29484.612887: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54035              ps-13726 (13726) [005] d..2 29484.612890: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54036 shell svc 13722-13723 ( 1007) [005] d..2 29484.612898: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54037              ps-13726 (13726) [005] d..2 29484.612904: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54038              ps-13726 (13726) [005] dn.3 29484.612906: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54039              ps-13726 (13726) [005] d..2 29484.612909: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54040 shell svc 13722-13723 ( 1007) [005] d..2 29484.612918: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54041              ps-13726 (13726) [005] d..2 29484.612923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54042              ps-13726 (13726) [005] dn.3 29484.612925: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54043              ps-13726 (13726) [005] d..2 29484.612928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54044 shell svc 13722-13723 ( 1007) [005] d..2 29484.612937: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54045              ps-13726 (13726) [005] d..2 29484.612942: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54046            adbd-1007  ( 1007) [000] d..1 29484.612944: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54047              ps-13726 (13726) [005] dn.3 29484.612945: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54048              ps-13726 (13726) [005] d..2 29484.612947: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54049            adbd-1007  ( 1007) [000] d..2 29484.612955: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54050 shell svc 13722-13723 ( 1007) [005] d..2 29484.612956: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54051          <idle>-0     (-----) [001] .n.1 29484.612959: cpu_idle: state=4294967295 cpu_id=1
54052              ps-13726 (13726) [005] d..2 29484.612961: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54053              ps-13726 (13726) [005] dn.3 29484.612963: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54054          <idle>-0     (-----) [001] d..2 29484.612965: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54055              ps-13726 (13726) [005] d..2 29484.612966: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54056 shell svc 13722-13723 ( 1007) [005] d..2 29484.612975: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54057            adbd-1007  ( 1007) [000] d..2 29484.612991: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54058          <idle>-0     (-----) [000] d..1 29484.613000: cpu_idle: state=0 cpu_id=0
54059            adbd-23485 ( 1007) [001] d..2 29484.613011: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54060          <idle>-0     (-----) [001] d..1 29484.613018: cpu_idle: state=0 cpu_id=1
54061          <idle>-0     (-----) [000] d.h3 29484.613022: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54062          <idle>-0     (-----) [000] dnh4 29484.613029: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54063          <idle>-0     (-----) [000] .n.1 29484.613035: cpu_idle: state=4294967295 cpu_id=0
54064          <idle>-0     (-----) [000] d..2 29484.613041: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54065   kworker/u17:2-23076 (23076) [000] d..2 29484.613049: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54066   kworker/u17:2-23076 (23076) [000] d..3 29484.613055: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54067   kworker/u17:2-23076 (23076) [000] d..2 29484.613072: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54068     kworker/0:0-13450 (13450) [000] d..2 29484.613078: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54069     kworker/0:0-13450 (13450) [000] d..3 29484.613087: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54070          <idle>-0     (-----) [001] .n.1 29484.613092: cpu_idle: state=4294967295 cpu_id=1
54071          <idle>-0     (-----) [001] d..2 29484.613099: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54072     kworker/0:0-13450 (13450) [000] d..2 29484.613101: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54073          <idle>-0     (-----) [000] d..1 29484.613109: cpu_idle: state=0 cpu_id=0
54074            adbd-23485 ( 1007) [001] d..2 29484.613145: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54075          <idle>-0     (-----) [001] d..1 29484.613151: cpu_idle: state=0 cpu_id=1
54076          <idle>-0     (-----) [000] d.h3 29484.613169: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54077          <idle>-0     (-----) [000] dnh4 29484.613175: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54078          <idle>-0     (-----) [000] .n.1 29484.613181: cpu_idle: state=4294967295 cpu_id=0
54079          <idle>-0     (-----) [000] d..2 29484.613187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54080   kworker/u17:2-23076 (23076) [000] d..2 29484.613195: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54081   kworker/u17:2-23076 (23076) [000] d..3 29484.613200: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54082              ps-13726 (13726) [005] d..2 29484.613207: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54083              ps-13726 (13726) [005] dn.3 29484.613212: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54084              ps-13726 (13726) [005] d..2 29484.613215: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54085   kworker/u17:2-23076 (23076) [000] d..2 29484.613217: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54086     kworker/0:0-13450 (13450) [000] d..2 29484.613223: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54087 shell svc 13722-13723 ( 1007) [005] d..2 29484.613226: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54088     kworker/0:0-13450 (13450) [000] d..3 29484.613231: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54089              ps-13726 (13726) [005] d..2 29484.613232: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54090              ps-13726 (13726) [005] dn.3 29484.613235: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54091          <idle>-0     (-----) [001] .n.1 29484.613237: cpu_idle: state=4294967295 cpu_id=1
54092              ps-13726 (13726) [005] d..2 29484.613237: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54093     kworker/0:0-13450 (13450) [000] d..2 29484.613240: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54094          <idle>-0     (-----) [001] d..2 29484.613243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54095 shell svc 13722-13723 ( 1007) [005] d..2 29484.613246: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54096          <idle>-0     (-----) [000] d..1 29484.613247: cpu_idle: state=0 cpu_id=0
54097              ps-13726 (13726) [005] d..2 29484.613252: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54098              ps-13726 (13726) [005] dn.3 29484.613255: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54099              ps-13726 (13726) [005] d..2 29484.613257: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54100            adbd-23485 ( 1007) [001] d..2 29484.613260: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54101 shell svc 13722-13723 ( 1007) [005] d..2 29484.613266: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54102          <idle>-0     (-----) [001] d..1 29484.613267: cpu_idle: state=0 cpu_id=1
54103              ps-13726 (13726) [005] d..2 29484.613271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54104              ps-13726 (13726) [005] dn.3 29484.613275: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54105              ps-13726 (13726) [005] d..2 29484.613277: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54106 shell svc 13722-13723 ( 1007) [005] d..2 29484.613285: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54107              ps-13726 (13726) [005] d..2 29484.613292: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54108              ps-13726 (13726) [005] dn.3 29484.613295: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54109              ps-13726 (13726) [005] d..2 29484.613297: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54110 shell svc 13722-13723 ( 1007) [005] d..2 29484.613305: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54111              ps-13726 (13726) [005] d..2 29484.613311: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54112              ps-13726 (13726) [005] dn.3 29484.613313: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54113              ps-13726 (13726) [005] d..2 29484.613316: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54114 shell svc 13722-13723 ( 1007) [005] d..2 29484.613324: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54115          <idle>-0     (-----) [000] d.h3 29484.613363: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54116          <idle>-0     (-----) [000] dnh4 29484.613369: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54117          <idle>-0     (-----) [000] .n.1 29484.613374: cpu_idle: state=4294967295 cpu_id=0
54118          <idle>-0     (-----) [000] d..2 29484.613380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54119   kworker/u17:2-23076 (23076) [000] d..2 29484.613386: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54120   kworker/u17:2-23076 (23076) [000] d..3 29484.613391: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54121   kworker/u17:2-23076 (23076) [000] d..2 29484.613407: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54122     kworker/0:0-13450 (13450) [000] d..2 29484.613414: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54123     kworker/0:0-13450 (13450) [000] d..3 29484.613424: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54124     kworker/0:0-13450 (13450) [000] d..2 29484.613432: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54125            adbd-23484 ( 1007) [000] d..2 29484.613444: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54126              ps-13726 (13726) [005] d..2 29484.613449: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54127            adbd-23484 ( 1007) [000] d..3 29484.613450: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54128              ps-13726 (13726) [005] dn.3 29484.613453: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54129              ps-13726 (13726) [005] d..2 29484.613456: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54130 shell svc 13722-13723 ( 1007) [005] d..2 29484.613466: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54131              ps-13726 (13726) [005] d..2 29484.613473: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54132              ps-13726 (13726) [005] dn.3 29484.613476: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54133              ps-13726 (13726) [005] d..2 29484.613478: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54134 shell svc 13722-13723 ( 1007) [005] d..2 29484.613487: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54135              ps-13726 (13726) [005] d..2 29484.613492: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54136            adbd-23484 ( 1007) [000] d..2 29484.613494: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54137              ps-13726 (13726) [005] dn.3 29484.613495: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54138              ps-13726 (13726) [005] d..2 29484.613497: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54139 shell svc 13722-13723 ( 1007) [005] d..2 29484.613506: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54140              ps-13726 (13726) [005] d..2 29484.613561: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54141              ps-13726 (13726) [005] dn.3 29484.613565: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54142            adbd-1007  ( 1007) [000] d..1 29484.613565: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54143              ps-13726 (13726) [005] d..2 29484.613568: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54144            adbd-1007  ( 1007) [000] d..2 29484.613577: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54145 shell svc 13722-13723 ( 1007) [005] d..2 29484.613578: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54146          <idle>-0     (-----) [001] .n.1 29484.613581: cpu_idle: state=4294967295 cpu_id=1
54147          <idle>-0     (-----) [001] d..2 29484.613588: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54148            adbd-1007  ( 1007) [000] d..2 29484.613613: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54149          <idle>-0     (-----) [000] d..1 29484.613622: cpu_idle: state=0 cpu_id=0
54150              ps-13726 (13726) [005] d..2 29484.613633: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54151            adbd-23485 ( 1007) [001] d..2 29484.613634: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54152              ps-13726 (13726) [005] dn.3 29484.613637: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54153              ps-13726 (13726) [005] d..2 29484.613640: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54154          <idle>-0     (-----) [001] d..1 29484.613640: cpu_idle: state=0 cpu_id=1
54155          <idle>-0     (-----) [000] d.h3 29484.613646: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54156 shell svc 13722-13723 ( 1007) [005] d..2 29484.613650: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54157          <idle>-0     (-----) [000] dnh4 29484.613652: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54158          <idle>-0     (-----) [000] .n.1 29484.613658: cpu_idle: state=4294967295 cpu_id=0
54159          <idle>-0     (-----) [000] d..2 29484.613665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54160   kworker/u17:2-23076 (23076) [000] d..2 29484.613673: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54161   kworker/u17:2-23076 (23076) [000] d..3 29484.613679: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54162   kworker/u17:2-23076 (23076) [000] d..2 29484.613695: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54163     kworker/0:0-13450 (13450) [000] d..2 29484.613701: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54164              ps-13726 (13726) [005] d..2 29484.613702: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54165              ps-13726 (13726) [005] dn.3 29484.613706: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54166              ps-13726 (13726) [005] d..2 29484.613709: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54167     kworker/0:0-13450 (13450) [000] d..3 29484.613710: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54168          <idle>-0     (-----) [001] .n.1 29484.613715: cpu_idle: state=4294967295 cpu_id=1
54169     kworker/0:0-13450 (13450) [000] d..2 29484.613719: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54170 shell svc 13722-13723 ( 1007) [005] d..2 29484.613719: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54171          <idle>-0     (-----) [001] d..2 29484.613722: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54172              ps-13726 (13726) [005] d.s4 29484.613732: sched_waking: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
54173              ps-13726 (13726) [005] dns5 29484.613737: sched_wakeup: comm=kworker/5:0 pid=24254 prio=120 target_cpu=005
54174            adbd-23485 ( 1007) [001] d.s4 29484.613739: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
54175              ps-13726 (13726) [005] d..2 29484.613740: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=kworker/5:0 next_pid=24254 next_prio=120
54176          <idle>-0     (-----) [000] dn.1 29484.613755: cpu_idle: state=0 cpu_id=0
54177          <idle>-0     (-----) [000] .n.1 29484.613757: cpu_idle: state=4294967295 cpu_id=0
54178            adbd-23485 ( 1007) [001] d.s5 29484.613758: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54179          <idle>-0     (-----) [000] d..2 29484.613767: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54180     kworker/5:0-24254 (24254) [005] d..2 29484.613769: sched_switch: prev_comm=kworker/5:0 prev_pid=24254 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54181     rcu_preempt-7     (    7) [000] d..2 29484.613771: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
54182     rcu_preempt-7     (    7) [000] d..3 29484.613794: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
54183     rcu_preempt-7     (    7) [000] d..2 29484.613801: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
54184         rcuop/4-45    (   45) [000] d..2 29484.613804: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
54185            adbd-23485 ( 1007) [001] d..2 29484.613811: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54186         rcuop/4-45    (   45) [000] d..3 29484.613818: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
54187          <idle>-0     (-----) [001] d..2 29484.613823: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
54188              ps-13726 (13726) [005] d..2 29484.613835: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54189              ps-13726 (13726) [005] dn.3 29484.613839: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54190         rcuop/4-45    (   45) [000] d.h3 29484.613839: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54191              ps-13726 (13726) [005] d..2 29484.613842: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54192         rcuop/4-45    (   45) [000] dnh4 29484.613847: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54193         rcuop/4-45    (   45) [000] d..2 29484.613854: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54194 shell svc 13722-13723 ( 1007) [005] d..2 29484.613854: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54195   kworker/u17:2-23076 (23076) [000] d..2 29484.613862: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54196   kworker/u17:2-23076 (23076) [000] d..3 29484.613866: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54197   kworker/u17:2-23076 (23076) [000] d..2 29484.613883: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54198     kworker/0:0-13450 (13450) [000] d..2 29484.613888: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54199     kworker/0:0-13450 (13450) [000] d..3 29484.613900: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54200         rcuop/5-53    (   53) [001] d..2 29484.613909: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
54201         rcuop/4-45    (   45) [001] d..2 29484.613912: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54202     kworker/0:0-13450 (13450) [000] d..2 29484.613913: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54203              ps-13726 (13726) [005] d..2 29484.613921: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54204          <idle>-0     (-----) [000] d..1 29484.613921: cpu_idle: state=0 cpu_id=0
54205              ps-13726 (13726) [005] dn.3 29484.613925: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54206         rcuop/4-45    (   45) [001] d..3 29484.613926: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54207              ps-13726 (13726) [005] d..2 29484.613928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54208          <idle>-0     (-----) [000] .n.1 29484.613931: cpu_idle: state=4294967295 cpu_id=0
54209         rcuop/4-45    (   45) [001] d..2 29484.613933: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
54210          <idle>-0     (-----) [000] d..2 29484.613937: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54211 shell svc 13722-13723 ( 1007) [005] d..2 29484.613939: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54212     rcu_preempt-7     (    7) [000] d..2 29484.613947: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54213          <idle>-0     (-----) [000] d..1 29484.613952: cpu_idle: state=0 cpu_id=0
54214            adbd-23485 ( 1007) [001] d..2 29484.613952: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54215          <idle>-0     (-----) [001] d..1 29484.613962: cpu_idle: state=0 cpu_id=1
54216          <idle>-0     (-----) [000] d.h3 29484.613970: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54217          <idle>-0     (-----) [000] dnh4 29484.613975: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54218          <idle>-0     (-----) [000] .n.1 29484.613981: cpu_idle: state=4294967295 cpu_id=0
54219          <idle>-0     (-----) [000] d..2 29484.613987: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54220   kworker/u17:2-23076 (23076) [000] d..2 29484.613993: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54221   kworker/u17:2-23076 (23076) [000] d..3 29484.613999: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54222   kworker/u17:2-23076 (23076) [000] d..2 29484.614014: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54223     kworker/0:0-13450 (13450) [000] d..2 29484.614021: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54224     kworker/0:0-13450 (13450) [000] d..3 29484.614030: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54225     kworker/0:0-13450 (13450) [000] d..2 29484.614038: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54226            adbd-23484 ( 1007) [000] d..2 29484.614051: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54227            adbd-23484 ( 1007) [000] d..3 29484.614058: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54228            adbd-23484 ( 1007) [000] d..2 29484.614102: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54229            adbd-1007  ( 1007) [000] d..1 29484.614169: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54230            adbd-1007  ( 1007) [000] d..2 29484.614183: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54231          <idle>-0     (-----) [001] .n.1 29484.614189: cpu_idle: state=4294967295 cpu_id=1
54232          <idle>-0     (-----) [001] d..2 29484.614196: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54233            adbd-1007  ( 1007) [000] d..2 29484.614213: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54234          <idle>-0     (-----) [000] d..1 29484.614222: cpu_idle: state=0 cpu_id=0
54235            adbd-23485 ( 1007) [001] d..2 29484.614244: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54236          <idle>-0     (-----) [001] d..1 29484.614253: cpu_idle: state=0 cpu_id=1
54237          <idle>-0     (-----) [000] d.h3 29484.614271: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54238          <idle>-0     (-----) [000] dnh4 29484.614281: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54239          <idle>-0     (-----) [000] .n.1 29484.614286: cpu_idle: state=4294967295 cpu_id=0
54240          <idle>-0     (-----) [000] d..2 29484.614293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54241   kworker/u17:2-23076 (23076) [000] d..2 29484.614303: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54242   kworker/u17:2-23076 (23076) [000] d..3 29484.614309: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54243   kworker/u17:2-23076 (23076) [000] d..2 29484.614326: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54244     kworker/0:0-13450 (13450) [000] d..2 29484.614332: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54245     kworker/0:0-13450 (13450) [000] d..3 29484.614340: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54246          <idle>-0     (-----) [001] .n.1 29484.614346: cpu_idle: state=4294967295 cpu_id=1
54247     kworker/0:0-13450 (13450) [000] d..2 29484.614349: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54248          <idle>-0     (-----) [001] d..2 29484.614353: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54249          <idle>-0     (-----) [000] d..1 29484.614356: cpu_idle: state=0 cpu_id=0
54250            adbd-23485 ( 1007) [001] d..2 29484.614398: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54251          <idle>-0     (-----) [001] d..1 29484.614405: cpu_idle: state=0 cpu_id=1
54252          <idle>-0     (-----) [000] d.h3 29484.614421: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54253          <idle>-0     (-----) [000] dnh4 29484.614428: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54254              ps-13726 (13726) [005] d..2 29484.614431: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54255          <idle>-0     (-----) [000] .n.1 29484.614433: cpu_idle: state=4294967295 cpu_id=0
54256              ps-13726 (13726) [005] dn.3 29484.614436: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54257          <idle>-0     (-----) [000] d..2 29484.614439: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54258              ps-13726 (13726) [005] d..2 29484.614439: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54259   kworker/u17:2-23076 (23076) [000] d..2 29484.614446: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54260 shell svc 13722-13723 ( 1007) [005] d..2 29484.614451: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54261   kworker/u17:2-23076 (23076) [000] d..3 29484.614451: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54262              ps-13726 (13726) [005] d..2 29484.614457: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54263              ps-13726 (13726) [005] dn.3 29484.614460: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54264              ps-13726 (13726) [005] d..2 29484.614463: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54265   kworker/u17:2-23076 (23076) [000] d..2 29484.614467: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54266 shell svc 13722-13723 ( 1007) [005] d..2 29484.614472: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54267     kworker/0:0-13450 (13450) [000] d..2 29484.614472: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54268              ps-13726 (13726) [005] d..2 29484.614477: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54269              ps-13726 (13726) [005] dn.3 29484.614480: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54270     kworker/0:0-13450 (13450) [000] d..3 29484.614481: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54271              ps-13726 (13726) [005] d..2 29484.614485: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54272          <idle>-0     (-----) [001] .n.1 29484.614487: cpu_idle: state=4294967295 cpu_id=1
54273     kworker/0:0-13450 (13450) [000] d..2 29484.614490: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54274          <idle>-0     (-----) [001] d..2 29484.614493: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54275 shell svc 13722-13723 ( 1007) [005] d..2 29484.614493: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54276          <idle>-0     (-----) [000] d..1 29484.614496: cpu_idle: state=0 cpu_id=0
54277              ps-13726 (13726) [005] d..2 29484.614498: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54278              ps-13726 (13726) [005] dn.3 29484.614501: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54279              ps-13726 (13726) [005] d..2 29484.614503: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54280            adbd-23485 ( 1007) [001] d..2 29484.614510: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54281 shell svc 13722-13723 ( 1007) [005] d..2 29484.614512: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54282          <idle>-0     (-----) [001] d..1 29484.614517: cpu_idle: state=0 cpu_id=1
54283              ps-13726 (13726) [005] d..2 29484.614517: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54284              ps-13726 (13726) [005] dn.3 29484.614520: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54285              ps-13726 (13726) [005] d..2 29484.614522: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54286 shell svc 13722-13723 ( 1007) [005] d..2 29484.614531: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54287              ps-13726 (13726) [005] d..2 29484.614536: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54288              ps-13726 (13726) [005] dn.3 29484.614539: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54289              ps-13726 (13726) [005] d..2 29484.614542: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54290 shell svc 13722-13723 ( 1007) [005] d..2 29484.614550: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54291              ps-13726 (13726) [005] d..2 29484.614556: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54292              ps-13726 (13726) [005] dn.3 29484.614559: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54293              ps-13726 (13726) [005] d..2 29484.614561: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54294 shell svc 13722-13723 ( 1007) [005] d..2 29484.614569: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54295              ps-13726 (13726) [005] d..2 29484.614575: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54296              ps-13726 (13726) [005] dn.3 29484.614578: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54297              ps-13726 (13726) [005] d..2 29484.614580: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54298 shell svc 13722-13723 ( 1007) [005] d..2 29484.614588: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54299              ps-13726 (13726) [005] d..2 29484.614593: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54300              ps-13726 (13726) [005] dn.3 29484.614596: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54301              ps-13726 (13726) [005] d..2 29484.614598: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54302          <idle>-0     (-----) [000] d.h3 29484.614606: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54303 shell svc 13722-13723 ( 1007) [005] d..2 29484.614606: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54304          <idle>-0     (-----) [000] dnh4 29484.614612: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54305              ps-13726 (13726) [005] d..2 29484.614612: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54306              ps-13726 (13726) [005] dn.3 29484.614615: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54307          <idle>-0     (-----) [000] .n.1 29484.614616: cpu_idle: state=4294967295 cpu_id=0
54308              ps-13726 (13726) [005] d..2 29484.614617: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54309          <idle>-0     (-----) [000] d..2 29484.614623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54310 shell svc 13722-13723 ( 1007) [005] d..2 29484.614625: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54311   kworker/u17:2-23076 (23076) [000] d..2 29484.614630: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54312              ps-13726 (13726) [005] d..2 29484.614631: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54313              ps-13726 (13726) [005] dn.3 29484.614634: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54314   kworker/u17:2-23076 (23076) [000] d..3 29484.614635: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54315              ps-13726 (13726) [005] d..2 29484.614636: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54316 shell svc 13722-13723 ( 1007) [005] d..2 29484.614645: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54317              ps-13726 (13726) [005] d..2 29484.614650: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54318   kworker/u17:2-23076 (23076) [000] d..2 29484.614652: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54319              ps-13726 (13726) [005] dn.3 29484.614653: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54320              ps-13726 (13726) [005] d..2 29484.614655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54321     kworker/0:0-13450 (13450) [000] d..2 29484.614658: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54322 shell svc 13722-13723 ( 1007) [005] d..2 29484.614663: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54323     kworker/0:0-13450 (13450) [000] d..3 29484.614668: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54324              ps-13726 (13726) [005] d..2 29484.614669: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54325              ps-13726 (13726) [005] dn.3 29484.614672: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54326              ps-13726 (13726) [005] d..2 29484.614674: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54327     kworker/0:0-13450 (13450) [000] d..2 29484.614677: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54328 shell svc 13722-13723 ( 1007) [005] d..2 29484.614682: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54329              ps-13726 (13726) [005] d..2 29484.614687: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54330            adbd-23484 ( 1007) [000] d..2 29484.614689: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54331              ps-13726 (13726) [005] dn.3 29484.614690: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54332              ps-13726 (13726) [005] d..2 29484.614692: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54333            adbd-23484 ( 1007) [000] d..3 29484.614695: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54334 shell svc 13722-13723 ( 1007) [005] d..2 29484.614701: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54335              ps-13726 (13726) [005] d..2 29484.614706: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54336              ps-13726 (13726) [005] dn.3 29484.614709: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54337              ps-13726 (13726) [005] d..2 29484.614711: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54338 shell svc 13722-13723 ( 1007) [005] d..2 29484.614719: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54339            adbd-23484 ( 1007) [000] d..2 29484.614741: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54340            adbd-1007  ( 1007) [000] d..1 29484.614816: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54341            adbd-1007  ( 1007) [000] d..2 29484.614828: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54342          <idle>-0     (-----) [001] .n.1 29484.614833: cpu_idle: state=4294967295 cpu_id=1
54343          <idle>-0     (-----) [001] d..2 29484.614839: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54344            adbd-1007  ( 1007) [000] d..2 29484.614857: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54345          <idle>-0     (-----) [000] d..1 29484.614865: cpu_idle: state=0 cpu_id=0
54346            adbd-23485 ( 1007) [001] d..2 29484.614885: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54347          <idle>-0     (-----) [001] d..1 29484.614894: cpu_idle: state=0 cpu_id=1
54348          <idle>-0     (-----) [000] d.h3 29484.614897: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54349          <idle>-0     (-----) [000] dnh4 29484.614903: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54350          <idle>-0     (-----) [000] .n.1 29484.614908: cpu_idle: state=4294967295 cpu_id=0
54351          <idle>-0     (-----) [000] d..2 29484.614915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54352   kworker/u17:2-23076 (23076) [000] d..2 29484.614924: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54353   kworker/u17:2-23076 (23076) [000] d..3 29484.614929: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54354   kworker/u17:2-23076 (23076) [000] d..2 29484.614947: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54355     kworker/0:0-13450 (13450) [000] d..2 29484.614953: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54356     kworker/0:0-13450 (13450) [000] d..3 29484.614962: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54357          <idle>-0     (-----) [001] .n.1 29484.614967: cpu_idle: state=4294967295 cpu_id=1
54358     kworker/0:0-13450 (13450) [000] d..2 29484.614971: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54359          <idle>-0     (-----) [001] d..2 29484.614974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54360          <idle>-0     (-----) [000] d..1 29484.614978: cpu_idle: state=0 cpu_id=0
54361            adbd-23485 ( 1007) [001] d..2 29484.615021: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54362          <idle>-0     (-----) [001] d..1 29484.615029: cpu_idle: state=0 cpu_id=1
54363          <idle>-0     (-----) [000] d.h3 29484.615056: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54364          <idle>-0     (-----) [000] dnh4 29484.615062: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54365          <idle>-0     (-----) [000] .n.1 29484.615067: cpu_idle: state=4294967295 cpu_id=0
54366          <idle>-0     (-----) [000] d..2 29484.615073: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54367   kworker/u17:2-23076 (23076) [000] d..2 29484.615081: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54368   kworker/u17:2-23076 (23076) [000] d..3 29484.615087: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54369   kworker/u17:2-23076 (23076) [000] d..2 29484.615103: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54370     kworker/0:0-13450 (13450) [000] d..2 29484.615109: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54371     kworker/0:0-13450 (13450) [000] d..3 29484.615118: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54372          <idle>-0     (-----) [001] .n.1 29484.615123: cpu_idle: state=4294967295 cpu_id=1
54373     kworker/0:0-13450 (13450) [000] d..2 29484.615126: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54374          <idle>-0     (-----) [001] d..2 29484.615129: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54375          <idle>-0     (-----) [000] d..1 29484.615131: cpu_idle: state=0 cpu_id=0
54376            adbd-23485 ( 1007) [001] d..2 29484.615145: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54377          <idle>-0     (-----) [001] d..1 29484.615152: cpu_idle: state=0 cpu_id=1
54378              ps-13726 (13726) [005] d..2 29484.615175: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54379              ps-13726 (13726) [005] dn.3 29484.615180: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54380              ps-13726 (13726) [005] d..2 29484.615183: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54381 shell svc 13722-13723 ( 1007) [005] d..2 29484.615196: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54382              ps-13726 (13726) [005] d..2 29484.615202: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54383              ps-13726 (13726) [005] dn.3 29484.615205: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54384              ps-13726 (13726) [005] d..2 29484.615207: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54385 shell svc 13722-13723 ( 1007) [005] d..2 29484.615216: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54386              ps-13726 (13726) [005] d..2 29484.615222: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54387              ps-13726 (13726) [005] dn.3 29484.615224: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54388              ps-13726 (13726) [005] d..2 29484.615227: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54389          <idle>-0     (-----) [000] d.h3 29484.615234: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54390 shell svc 13722-13723 ( 1007) [005] d..2 29484.615235: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54391          <idle>-0     (-----) [000] dnh4 29484.615240: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54392              ps-13726 (13726) [005] d..2 29484.615241: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54393              ps-13726 (13726) [005] dn.3 29484.615243: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54394          <idle>-0     (-----) [000] .n.1 29484.615245: cpu_idle: state=4294967295 cpu_id=0
54395              ps-13726 (13726) [005] d..2 29484.615246: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54396          <idle>-0     (-----) [000] d..2 29484.615251: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54397 shell svc 13722-13723 ( 1007) [005] d..2 29484.615254: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54398   kworker/u17:2-23076 (23076) [000] d..2 29484.615258: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54399              ps-13726 (13726) [005] d..2 29484.615259: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54400              ps-13726 (13726) [005] dn.3 29484.615262: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54401   kworker/u17:2-23076 (23076) [000] d..3 29484.615263: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54402              ps-13726 (13726) [005] d..2 29484.615264: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54403 shell svc 13722-13723 ( 1007) [005] d..2 29484.615272: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54404              ps-13726 (13726) [005] d..2 29484.615279: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54405   kworker/u17:2-23076 (23076) [000] d..2 29484.615280: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54406              ps-13726 (13726) [005] dn.3 29484.615281: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54407              ps-13726 (13726) [005] d..2 29484.615285: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54408     kworker/0:0-13450 (13450) [000] d..2 29484.615286: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54409 shell svc 13722-13723 ( 1007) [005] d..2 29484.615293: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54410     kworker/0:0-13450 (13450) [000] d..3 29484.615296: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54411              ps-13726 (13726) [005] d..2 29484.615299: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54412              ps-13726 (13726) [005] dn.3 29484.615301: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54413              ps-13726 (13726) [005] d..2 29484.615304: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54414     kworker/0:0-13450 (13450) [000] d..2 29484.615304: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54415 shell svc 13722-13723 ( 1007) [005] d..2 29484.615313: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54416            adbd-23484 ( 1007) [000] d..2 29484.615316: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54417              ps-13726 (13726) [005] d..2 29484.615318: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54418              ps-13726 (13726) [005] dn.3 29484.615321: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54419            adbd-23484 ( 1007) [000] d..3 29484.615323: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54420              ps-13726 (13726) [005] d..2 29484.615323: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54421 shell svc 13722-13723 ( 1007) [005] d..2 29484.615332: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54422              ps-13726 (13726) [005] d..2 29484.615337: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54423              ps-13726 (13726) [005] dn.3 29484.615339: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54424              ps-13726 (13726) [005] d..2 29484.615341: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54425 shell svc 13722-13723 ( 1007) [005] d..2 29484.615350: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54426              ps-13726 (13726) [005] d..2 29484.615356: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54427              ps-13726 (13726) [005] dn.3 29484.615359: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54428              ps-13726 (13726) [005] d..2 29484.615361: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54429            adbd-23484 ( 1007) [000] d..2 29484.615368: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54430 shell svc 13722-13723 ( 1007) [005] d..2 29484.615369: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54431              ps-13726 (13726) [005] d..2 29484.615374: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54432              ps-13726 (13726) [005] dn.3 29484.615377: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54433              ps-13726 (13726) [005] d..2 29484.615379: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54434 shell svc 13722-13723 ( 1007) [005] d..2 29484.615387: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54435              ps-13726 (13726) [005] d..2 29484.615392: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54436              ps-13726 (13726) [005] dn.3 29484.615395: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54437              ps-13726 (13726) [005] d..2 29484.615397: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54438 shell svc 13722-13723 ( 1007) [005] d..2 29484.615405: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54439              ps-13726 (13726) [005] d..2 29484.615410: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54440              ps-13726 (13726) [005] dn.3 29484.615413: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54441              ps-13726 (13726) [005] d..2 29484.615415: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54442 shell svc 13722-13723 ( 1007) [005] d..2 29484.615423: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54443              ps-13726 (13726) [005] d..2 29484.615429: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54444              ps-13726 (13726) [005] dn.3 29484.615432: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54445              ps-13726 (13726) [005] d..2 29484.615434: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54446            adbd-1007  ( 1007) [000] d..1 29484.615442: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54447 shell svc 13722-13723 ( 1007) [005] d..2 29484.615443: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54448            adbd-1007  ( 1007) [000] d..2 29484.615454: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54449          <idle>-0     (-----) [001] .n.1 29484.615459: cpu_idle: state=4294967295 cpu_id=1
54450          <idle>-0     (-----) [001] d..2 29484.615465: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54451            adbd-1007  ( 1007) [000] d..2 29484.615483: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54452          <idle>-0     (-----) [000] d..1 29484.615491: cpu_idle: state=0 cpu_id=0
54453              ps-13726 (13726) [005] d..2 29484.615498: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54454              ps-13726 (13726) [005] dn.3 29484.615502: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54455              ps-13726 (13726) [005] d..2 29484.615505: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54456            adbd-23485 ( 1007) [001] d..2 29484.615511: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54457 shell svc 13722-13723 ( 1007) [005] d..2 29484.615515: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54458          <idle>-0     (-----) [001] d..1 29484.615519: cpu_idle: state=0 cpu_id=1
54459          <idle>-0     (-----) [000] d.h3 29484.615521: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54460          <idle>-0     (-----) [000] dnh4 29484.615527: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54461          <idle>-0     (-----) [000] .n.1 29484.615532: cpu_idle: state=4294967295 cpu_id=0
54462          <idle>-0     (-----) [000] d..2 29484.615540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54463   kworker/u17:2-23076 (23076) [000] d..2 29484.615549: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54464   kworker/u17:2-23076 (23076) [000] d..3 29484.615555: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54465              ps-13726 (13726) [005] d..2 29484.615570: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54466   kworker/u17:2-23076 (23076) [000] d..2 29484.615572: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54467              ps-13726 (13726) [005] dn.3 29484.615574: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54468              ps-13726 (13726) [005] d..2 29484.615577: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54469     kworker/0:0-13450 (13450) [000] d..2 29484.615578: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54470     kworker/0:0-13450 (13450) [000] d..3 29484.615587: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54471 shell svc 13722-13723 ( 1007) [005] d..2 29484.615587: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54472          <idle>-0     (-----) [001] .n.1 29484.615592: cpu_idle: state=4294967295 cpu_id=1
54473     kworker/0:0-13450 (13450) [000] d..2 29484.615596: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54474          <idle>-0     (-----) [001] d..2 29484.615599: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54475          <idle>-0     (-----) [000] d..1 29484.615602: cpu_idle: state=0 cpu_id=0
54476              ps-13726 (13726) [005] d..2 29484.615640: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54477              ps-13726 (13726) [005] dn.3 29484.615644: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54478            adbd-23485 ( 1007) [001] d..2 29484.615645: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54479              ps-13726 (13726) [005] d..2 29484.615647: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54480          <idle>-0     (-----) [001] d..1 29484.615653: cpu_idle: state=0 cpu_id=1
54481 shell svc 13722-13723 ( 1007) [005] d..2 29484.615657: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54482          <idle>-0     (-----) [000] d.h3 29484.615679: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54483          <idle>-0     (-----) [000] dnh4 29484.615685: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54484          <idle>-0     (-----) [000] .n.1 29484.615689: cpu_idle: state=4294967295 cpu_id=0
54485          <idle>-0     (-----) [000] d..2 29484.615696: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54486   kworker/u17:2-23076 (23076) [000] d..2 29484.615703: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54487   kworker/u17:2-23076 (23076) [000] d..3 29484.615709: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54488   kworker/u17:2-23076 (23076) [000] d..2 29484.615725: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54489     kworker/0:0-13450 (13450) [000] d..2 29484.615730: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54490     kworker/0:0-13450 (13450) [000] d..3 29484.615739: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54491          <idle>-0     (-----) [001] .n.1 29484.615744: cpu_idle: state=4294967295 cpu_id=1
54492     kworker/0:0-13450 (13450) [000] d..2 29484.615747: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54493          <idle>-0     (-----) [001] d..2 29484.615751: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54494          <idle>-0     (-----) [000] d..1 29484.615754: cpu_idle: state=0 cpu_id=0
54495            adbd-23485 ( 1007) [001] d..2 29484.615768: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54496          <idle>-0     (-----) [001] d..1 29484.615775: cpu_idle: state=0 cpu_id=1
54497          <idle>-0     (-----) [000] d.h3 29484.615859: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54498          <idle>-0     (-----) [000] dnh4 29484.615864: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54499          <idle>-0     (-----) [000] .n.1 29484.615869: cpu_idle: state=4294967295 cpu_id=0
54500          <idle>-0     (-----) [000] d..2 29484.615875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54501   kworker/u17:2-23076 (23076) [000] d..2 29484.615883: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54502   kworker/u17:2-23076 (23076) [000] d..3 29484.615888: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54503   kworker/u17:2-23076 (23076) [000] d..2 29484.615905: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54504     kworker/0:0-13450 (13450) [000] d..2 29484.615911: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54505     kworker/0:0-13450 (13450) [000] d..3 29484.615921: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54506     kworker/0:0-13450 (13450) [000] d..2 29484.615929: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54507            adbd-23484 ( 1007) [000] d..2 29484.615941: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54508            adbd-23484 ( 1007) [000] d..3 29484.615947: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54509            adbd-23484 ( 1007) [000] d..2 29484.615991: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54510            adbd-1007  ( 1007) [000] d..1 29484.616054: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54511            adbd-1007  ( 1007) [000] d..2 29484.616065: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54512          <idle>-0     (-----) [001] .n.1 29484.616071: cpu_idle: state=4294967295 cpu_id=1
54513          <idle>-0     (-----) [001] d..2 29484.616077: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54514              ps-13726 (13726) [005] d..2 29484.616089: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54515              ps-13726 (13726) [005] dn.3 29484.616094: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54516            adbd-1007  ( 1007) [000] d..2 29484.616095: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54517              ps-13726 (13726) [005] d..2 29484.616097: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54518          <idle>-0     (-----) [000] d..1 29484.616103: cpu_idle: state=0 cpu_id=0
54519 shell svc 13722-13723 ( 1007) [005] d..2 29484.616109: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54520              ps-13726 (13726) [005] d..2 29484.616115: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54521              ps-13726 (13726) [005] dn.3 29484.616118: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54522              ps-13726 (13726) [005] d..2 29484.616121: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54523            adbd-23485 ( 1007) [001] d..2 29484.616123: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54524 shell svc 13722-13723 ( 1007) [005] d..2 29484.616130: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54525          <idle>-0     (-----) [001] d..1 29484.616131: cpu_idle: state=0 cpu_id=1
54526              ps-13726 (13726) [005] d..2 29484.616135: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54527              ps-13726 (13726) [005] dn.3 29484.616138: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54528              ps-13726 (13726) [005] d..2 29484.616140: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54529          <idle>-0     (-----) [000] d.h3 29484.616148: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54530 shell svc 13722-13723 ( 1007) [005] d..2 29484.616149: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54531              ps-13726 (13726) [005] d..2 29484.616154: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54532          <idle>-0     (-----) [000] dnh4 29484.616154: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54533              ps-13726 (13726) [005] dn.3 29484.616157: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54534              ps-13726 (13726) [005] d..2 29484.616159: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54535          <idle>-0     (-----) [000] .n.1 29484.616159: cpu_idle: state=4294967295 cpu_id=0
54536          <idle>-0     (-----) [000] d..2 29484.616166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54537 shell svc 13722-13723 ( 1007) [005] d..2 29484.616167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54538              ps-13726 (13726) [005] d..2 29484.616172: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54539   kworker/u17:2-23076 (23076) [000] d..2 29484.616174: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54540              ps-13726 (13726) [005] dn.3 29484.616175: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54541              ps-13726 (13726) [005] d..2 29484.616177: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54542   kworker/u17:2-23076 (23076) [000] d..3 29484.616180: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54543 shell svc 13722-13723 ( 1007) [005] d..2 29484.616186: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54544              ps-13726 (13726) [005] d..2 29484.616191: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54545              ps-13726 (13726) [005] dn.3 29484.616193: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54546              ps-13726 (13726) [005] d..2 29484.616195: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54547   kworker/u17:2-23076 (23076) [000] d..2 29484.616197: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54548     kworker/0:0-13450 (13450) [000] d..2 29484.616203: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54549 shell svc 13722-13723 ( 1007) [005] d..2 29484.616204: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54550              ps-13726 (13726) [005] d..2 29484.616209: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54551              ps-13726 (13726) [005] dn.3 29484.616212: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54552              ps-13726 (13726) [005] d..2 29484.616215: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54553     kworker/0:0-13450 (13450) [000] d..3 29484.616216: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54554          <idle>-0     (-----) [001] .n.1 29484.616221: cpu_idle: state=4294967295 cpu_id=1
54555 shell svc 13722-13723 ( 1007) [005] d..2 29484.616224: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54556     kworker/0:0-13450 (13450) [000] d..2 29484.616225: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54557          <idle>-0     (-----) [001] d..2 29484.616228: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54558              ps-13726 (13726) [005] d..2 29484.616229: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54559              ps-13726 (13726) [005] dn.3 29484.616231: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54560          <idle>-0     (-----) [000] d..1 29484.616232: cpu_idle: state=0 cpu_id=0
54561              ps-13726 (13726) [005] d..2 29484.616234: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54562 shell svc 13722-13723 ( 1007) [005] d..2 29484.616242: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54563              ps-13726 (13726) [005] d..2 29484.616248: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54564              ps-13726 (13726) [005] dn.3 29484.616251: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54565              ps-13726 (13726) [005] d..2 29484.616254: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54566 shell svc 13722-13723 ( 1007) [005] d..2 29484.616262: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54567              ps-13726 (13726) [005] d..2 29484.616267: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54568              ps-13726 (13726) [005] dn.3 29484.616270: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54569              ps-13726 (13726) [005] d..2 29484.616273: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54570            adbd-23485 ( 1007) [001] d..2 29484.616273: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54571 shell svc 13722-13723 ( 1007) [005] d..2 29484.616281: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54572          <idle>-0     (-----) [001] d..1 29484.616281: cpu_idle: state=0 cpu_id=1
54573              ps-13726 (13726) [005] d..2 29484.616286: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54574              ps-13726 (13726) [005] dn.3 29484.616289: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54575          <idle>-0     (-----) [000] d.h3 29484.616290: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54576              ps-13726 (13726) [005] d..2 29484.616292: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54577          <idle>-0     (-----) [000] dnh4 29484.616299: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54578 shell svc 13722-13723 ( 1007) [005] d..2 29484.616300: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54579          <idle>-0     (-----) [000] .n.1 29484.616304: cpu_idle: state=4294967295 cpu_id=0
54580              ps-13726 (13726) [005] d..2 29484.616305: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54581              ps-13726 (13726) [005] dn.3 29484.616308: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54582          <idle>-0     (-----) [000] d..2 29484.616310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54583              ps-13726 (13726) [005] d..2 29484.616310: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54584   kworker/u17:2-23076 (23076) [000] d..2 29484.616318: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54585 shell svc 13722-13723 ( 1007) [005] d..2 29484.616319: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54586   kworker/u17:2-23076 (23076) [000] d..3 29484.616324: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54587              ps-13726 (13726) [005] d..2 29484.616325: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54588              ps-13726 (13726) [005] dn.3 29484.616328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54589              ps-13726 (13726) [005] d..2 29484.616331: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54590 shell svc 13722-13723 ( 1007) [005] d..2 29484.616339: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54591   kworker/u17:2-23076 (23076) [000] d..2 29484.616340: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54592     kworker/0:0-13450 (13450) [000] d..2 29484.616346: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54593     kworker/0:0-13450 (13450) [000] d..3 29484.616355: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54594          <idle>-0     (-----) [001] .n.1 29484.616361: cpu_idle: state=4294967295 cpu_id=1
54595     kworker/0:0-13450 (13450) [000] d..2 29484.616364: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54596          <idle>-0     (-----) [001] d..2 29484.616367: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54597          <idle>-0     (-----) [000] d..1 29484.616370: cpu_idle: state=0 cpu_id=0
54598            adbd-23485 ( 1007) [001] d..2 29484.616383: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54599          <idle>-0     (-----) [001] d..1 29484.616390: cpu_idle: state=0 cpu_id=1
54600              ps-13726 (13726) [005] d..2 29484.616394: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54601              ps-13726 (13726) [005] dn.3 29484.616398: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54602              ps-13726 (13726) [005] d..2 29484.616400: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54603 shell svc 13722-13723 ( 1007) [005] d..2 29484.616411: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54604              ps-13726 (13726) [005] d..2 29484.616464: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54605              ps-13726 (13726) [005] dn.3 29484.616467: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54606              ps-13726 (13726) [005] d..2 29484.616470: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54607          <idle>-0     (-----) [000] d.h3 29484.616478: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54608 shell svc 13722-13723 ( 1007) [005] d..2 29484.616481: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54609          <idle>-0     (-----) [000] dnh4 29484.616483: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54610          <idle>-0     (-----) [000] .n.1 29484.616488: cpu_idle: state=4294967295 cpu_id=0
54611          <idle>-0     (-----) [000] d..2 29484.616494: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54612   kworker/u17:2-23076 (23076) [000] d..2 29484.616500: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54613   kworker/u17:2-23076 (23076) [000] d..3 29484.616506: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54614   kworker/u17:2-23076 (23076) [000] d..2 29484.616522: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54615     kworker/0:0-13450 (13450) [000] d..2 29484.616527: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54616     kworker/0:0-13450 (13450) [000] d..3 29484.616536: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54617     kworker/0:0-13450 (13450) [000] d..2 29484.616545: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54618            adbd-23484 ( 1007) [000] d..2 29484.616557: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54619            adbd-23484 ( 1007) [000] d..3 29484.616563: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54620            adbd-23484 ( 1007) [000] d..2 29484.616606: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54621            adbd-1007  ( 1007) [000] d..1 29484.616679: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54622            adbd-1007  ( 1007) [000] d..2 29484.616691: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54623          <idle>-0     (-----) [001] .n.1 29484.616695: cpu_idle: state=4294967295 cpu_id=1
54624          <idle>-0     (-----) [001] d..2 29484.616702: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54625            adbd-1007  ( 1007) [000] d..2 29484.616720: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54626          <idle>-0     (-----) [000] d..1 29484.616728: cpu_idle: state=0 cpu_id=0
54627            adbd-23485 ( 1007) [001] d..2 29484.616747: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54628          <idle>-0     (-----) [001] d..1 29484.616755: cpu_idle: state=0 cpu_id=1
54629          <idle>-0     (-----) [000] d.h3 29484.616770: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54630          <idle>-0     (-----) [000] dnh4 29484.616777: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54631          <idle>-0     (-----) [000] .n.1 29484.616782: cpu_idle: state=4294967295 cpu_id=0
54632          <idle>-0     (-----) [000] d..2 29484.616789: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54633   kworker/u17:2-23076 (23076) [000] d..2 29484.616797: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54634   kworker/u17:2-23076 (23076) [000] d..3 29484.616803: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54635   kworker/u17:2-23076 (23076) [000] d..2 29484.616820: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54636     kworker/0:0-13450 (13450) [000] d..2 29484.616825: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54637     kworker/0:0-13450 (13450) [000] d..3 29484.616834: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54638          <idle>-0     (-----) [001] .n.1 29484.616840: cpu_idle: state=4294967295 cpu_id=1
54639     kworker/0:0-13450 (13450) [000] d..2 29484.616843: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54640          <idle>-0     (-----) [001] d..2 29484.616847: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54641          <idle>-0     (-----) [000] d..1 29484.616849: cpu_idle: state=0 cpu_id=0
54642            adbd-23485 ( 1007) [001] d..2 29484.616892: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54643          <idle>-0     (-----) [001] d..1 29484.616900: cpu_idle: state=0 cpu_id=1
54644              ps-13726 (13726) [005] d..2 29484.616919: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54645              ps-13726 (13726) [005] dn.3 29484.616923: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54646              ps-13726 (13726) [005] d..2 29484.616926: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54647          <idle>-0     (-----) [000] d.h3 29484.616927: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54648          <idle>-0     (-----) [000] dnh4 29484.616933: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54649          <idle>-0     (-----) [000] .n.1 29484.616938: cpu_idle: state=4294967295 cpu_id=0
54650 shell svc 13722-13723 ( 1007) [005] d..2 29484.616939: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54651          <idle>-0     (-----) [000] d..2 29484.616944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54652   kworker/u17:2-23076 (23076) [000] d..2 29484.616950: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54653   kworker/u17:2-23076 (23076) [000] d..3 29484.616956: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54654   kworker/u17:2-23076 (23076) [000] d..2 29484.616972: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54655     kworker/0:0-13450 (13450) [000] d..2 29484.616978: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54656     kworker/0:0-13450 (13450) [000] d..3 29484.616987: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54657          <idle>-0     (-----) [001] .n.1 29484.616992: cpu_idle: state=4294967295 cpu_id=1
54658              ps-13726 (13726) [005] d..2 29484.616993: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54659     kworker/0:0-13450 (13450) [000] d..2 29484.616995: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54660              ps-13726 (13726) [005] dn.3 29484.616997: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54661          <idle>-0     (-----) [001] d..2 29484.616999: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54662              ps-13726 (13726) [005] d..2 29484.617000: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54663          <idle>-0     (-----) [000] d..1 29484.617001: cpu_idle: state=0 cpu_id=0
54664 shell svc 13722-13723 ( 1007) [005] d..2 29484.617010: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54665            adbd-23485 ( 1007) [001] d..2 29484.617015: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54666          <idle>-0     (-----) [001] d..1 29484.617022: cpu_idle: state=0 cpu_id=1
54667          <idle>-0     (-----) [000] d.h3 29484.617076: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54668          <idle>-0     (-----) [000] dnh4 29484.617100: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54669              ps-13726 (13726) [005] d.H2 29484.617105: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
54670          <idle>-0     (-----) [000] .n.1 29484.617108: cpu_idle: state=4294967295 cpu_id=0
54671          <idle>-0     (-----) [000] d..2 29484.617116: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54672              ps-13726 (13726) [005] d.H3 29484.617116: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
54673              ps-13726 (13726) [005] d.H2 29484.617117: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=000
54674   kworker/u17:2-23076 (23076) [000] d..2 29484.617122: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54675   kworker/u17:2-23076 (23076) [000] d..3 29484.617129: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54676          <idle>-0     (-----) [001] dnh2 29484.617136: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
54677          <idle>-0     (-----) [001] .n.1 29484.617140: cpu_idle: state=4294967295 cpu_id=1
54678   kworker/u17:2-23076 (23076) [000] d..2 29484.617145: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54679          <idle>-0     (-----) [001] d..2 29484.617147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
54680              ps-13726 (13726) [005] d..2 29484.617148: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54681     kworker/0:0-13450 (13450) [000] d..2 29484.617151: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54682              ps-13726 (13726) [005] dn.3 29484.617152: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54683              ps-13726 (13726) [005] d..2 29484.617155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54684 shell svc 13722-13723 ( 1007) [005] d..2 29484.617168: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54685         sugov:0-559   (  559) [001] .... 29484.617170: clk_set_rate: pwrcl_clk 1612800000
54686     kworker/0:0-13450 (13450) [000] d..3 29484.617175: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
54687         sugov:0-559   (  559) [001] .... 29484.617179: clk_set_rate: cpu3_pwrcl_clk 1516800000
54688     kworker/0:0-13450 (13450) [000] d..2 29484.617184: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54689         sugov:0-559   (  559) [001] .... 29484.617187: clk_set_rate: cpu2_pwrcl_clk 1516800000
54690          <idle>-0     (-----) [000] d..1 29484.617189: cpu_idle: state=0 cpu_id=0
54691         sugov:0-559   (  559) [001] .... 29484.617193: clk_set_rate: cpu1_pwrcl_clk 1516800000
54692         sugov:0-559   (  559) [001] .... 29484.617199: clk_set_rate: cpu0_pwrcl_clk 1612800000
54693         sugov:0-559   (  559) [001] .... 29484.617206: cpu_frequency: state=1612800 cpu_id=0
54694         sugov:0-559   (  559) [001] .... 29484.617220: cpu_frequency: state=1612800 cpu_id=1
54695         sugov:0-559   (  559) [001] .... 29484.617223: cpu_frequency: state=1612800 cpu_id=2
54696              ps-13726 (13726) [005] d..2 29484.617224: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54697         sugov:0-559   (  559) [001] .... 29484.617225: cpu_frequency: state=1612800 cpu_id=3
54698              ps-13726 (13726) [005] dn.3 29484.617228: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54699              ps-13726 (13726) [005] d..2 29484.617231: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54700         sugov:0-559   (  559) [001] d..2 29484.617239: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54701 shell svc 13722-13723 ( 1007) [005] d..2 29484.617242: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54702            adbd-23484 ( 1007) [001] d..2 29484.617253: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54703            adbd-23484 ( 1007) [001] d..3 29484.617265: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
54704              ps-13726 (13726) [005] d..2 29484.617293: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54705              ps-13726 (13726) [005] dn.3 29484.617297: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54706              ps-13726 (13726) [005] d..2 29484.617300: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54707            adbd-23484 ( 1007) [001] d..2 29484.617309: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54708 shell svc 13722-13723 ( 1007) [005] d..2 29484.617310: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54709          <idle>-0     (-----) [007] .n.1 29484.617315: cpu_idle: state=4294967295 cpu_id=7
54710          <idle>-0     (-----) [007] d..2 29484.617324: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
54711         sugov:4-560   (  560) [007] .... 29484.617338: clk_set_rate: perfcl_clk 1843200000
54712         sugov:4-560   (  560) [007] .... 29484.617339: clk_set_rate: cpu7_perfcl_clk 1766400000
54713         sugov:4-560   (  560) [007] .... 29484.617344: clk_set_rate: cpu6_perfcl_clk 1766400000
54714         sugov:4-560   (  560) [007] .... 29484.617348: clk_set_rate: cpu5_perfcl_clk 1766400000
54715         sugov:4-560   (  560) [007] .... 29484.617353: clk_set_rate: cpu4_perfcl_clk 1843200000
54716         sugov:4-560   (  560) [007] .... 29484.617357: cpu_frequency: state=1843200 cpu_id=4
54717              ps-13726 (13726) [005] d..2 29484.617360: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54718         sugov:4-560   (  560) [007] .... 29484.617362: cpu_frequency: state=1843200 cpu_id=5
54719         sugov:4-560   (  560) [007] .... 29484.617364: cpu_frequency: state=1843200 cpu_id=6
54720              ps-13726 (13726) [005] dn.3 29484.617364: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54721         sugov:4-560   (  560) [007] .... 29484.617365: cpu_frequency: state=1843200 cpu_id=7
54722              ps-13726 (13726) [005] d..2 29484.617367: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54723            adbd-1007  ( 1007) [001] d..1 29484.617376: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54724 shell svc 13722-13723 ( 1007) [005] d..2 29484.617378: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54725         sugov:4-560   (  560) [007] d..2 29484.617380: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
54726          <idle>-0     (-----) [007] d..1 29484.617386: cpu_idle: state=2 cpu_id=7
54727            adbd-1007  ( 1007) [001] d..2 29484.617390: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54728            adbd-1007  ( 1007) [001] d..2 29484.617418: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
54729              ps-13726 (13726) [005] d..2 29484.617428: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54730              ps-13726 (13726) [005] dn.3 29484.617431: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54731              ps-13726 (13726) [005] d..2 29484.617435: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54732 shell svc 13722-13723 ( 1007) [005] d..2 29484.617445: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54733            adbd-23485 ( 1007) [001] d..2 29484.617466: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54734          <idle>-0     (-----) [001] d..1 29484.617477: cpu_idle: state=0 cpu_id=1
54735          <idle>-0     (-----) [000] d.h3 29484.617479: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54736          <idle>-0     (-----) [000] dnh4 29484.617484: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54737          <idle>-0     (-----) [000] .n.1 29484.617489: cpu_idle: state=4294967295 cpu_id=0
54738          <idle>-0     (-----) [000] d..2 29484.617493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54739              ps-13726 (13726) [005] d..2 29484.617494: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54740              ps-13726 (13726) [005] dn.3 29484.617498: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54741   kworker/u17:2-23076 (23076) [000] d..2 29484.617500: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54742              ps-13726 (13726) [005] d..2 29484.617501: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54743   kworker/u17:2-23076 (23076) [000] d..3 29484.617505: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54744 shell svc 13722-13723 ( 1007) [005] d..2 29484.617511: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54745   kworker/u17:2-23076 (23076) [000] d..2 29484.617521: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54746     kworker/0:0-13450 (13450) [000] d..2 29484.617526: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54747     kworker/0:0-13450 (13450) [000] d..3 29484.617535: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54748          <idle>-0     (-----) [001] .n.1 29484.617540: cpu_idle: state=4294967295 cpu_id=1
54749          <idle>-0     (-----) [001] d..2 29484.617547: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54750     kworker/0:0-13450 (13450) [000] d..2 29484.617549: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54751          <idle>-0     (-----) [000] d..1 29484.617554: cpu_idle: state=0 cpu_id=0
54752              ps-13726 (13726) [005] d..2 29484.617559: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54753              ps-13726 (13726) [005] dn.3 29484.617562: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54754              ps-13726 (13726) [005] d..2 29484.617565: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54755 shell svc 13722-13723 ( 1007) [005] d..2 29484.617575: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54756            adbd-23485 ( 1007) [001] d..2 29484.617593: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54757          <idle>-0     (-----) [001] d..1 29484.617600: cpu_idle: state=0 cpu_id=1
54758          <idle>-0     (-----) [000] d.h3 29484.617604: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54759          <idle>-0     (-----) [000] dnh4 29484.617609: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54760          <idle>-0     (-----) [000] .n.1 29484.617613: cpu_idle: state=4294967295 cpu_id=0
54761          <idle>-0     (-----) [000] d..2 29484.617618: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54762   kworker/u17:2-23076 (23076) [000] d..2 29484.617625: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54763              ps-13726 (13726) [005] d..2 29484.617625: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54764              ps-13726 (13726) [005] dn.3 29484.617629: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54765   kworker/u17:2-23076 (23076) [000] d..3 29484.617629: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54766              ps-13726 (13726) [005] d..2 29484.617632: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54767 shell svc 13722-13723 ( 1007) [005] d..2 29484.617642: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54768   kworker/u17:2-23076 (23076) [000] d..2 29484.617645: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54769     kworker/0:0-13450 (13450) [000] d..2 29484.617650: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54770     kworker/0:0-13450 (13450) [000] d..3 29484.617659: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54771          <idle>-0     (-----) [001] .n.1 29484.617663: cpu_idle: state=4294967295 cpu_id=1
54772          <idle>-0     (-----) [001] d..2 29484.617671: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54773     kworker/0:0-13450 (13450) [000] d..2 29484.617671: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54774          <idle>-0     (-----) [000] d..1 29484.617676: cpu_idle: state=0 cpu_id=0
54775            adbd-23485 ( 1007) [001] d..2 29484.617687: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54776          <idle>-0     (-----) [001] d..1 29484.617694: cpu_idle: state=0 cpu_id=1
54777              ps-13726 (13726) [005] d..2 29484.617707: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54778              ps-13726 (13726) [005] dn.3 29484.617711: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54779              ps-13726 (13726) [005] d..2 29484.617714: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54780 shell svc 13722-13723 ( 1007) [005] d..2 29484.617725: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54781              ps-13726 (13726) [005] d..2 29484.617785: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54782              ps-13726 (13726) [005] dn.3 29484.617788: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54783              ps-13726 (13726) [005] d..2 29484.617791: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54784 shell svc 13722-13723 ( 1007) [005] d..2 29484.617801: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54785          <idle>-0     (-----) [000] d.h3 29484.617802: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54786          <idle>-0     (-----) [000] dnh4 29484.617807: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54787          <idle>-0     (-----) [000] .n.1 29484.617812: cpu_idle: state=4294967295 cpu_id=0
54788          <idle>-0     (-----) [000] d..2 29484.617816: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54789   kworker/u17:2-23076 (23076) [000] d..2 29484.617822: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54790   kworker/u17:2-23076 (23076) [000] d..3 29484.617827: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54791   kworker/u17:2-23076 (23076) [000] d..2 29484.617844: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54792     kworker/0:0-13450 (13450) [000] d..2 29484.617849: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
54793              ps-13726 (13726) [005] d..2 29484.617861: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54794              ps-13726 (13726) [005] dn.3 29484.617865: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54795              ps-13726 (13726) [005] d..2 29484.617868: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54796     kworker/0:0-13450 (13450) [000] d..3 29484.617869: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54797     kworker/0:0-13450 (13450) [000] d..2 29484.617878: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54798 shell svc 13722-13723 ( 1007) [005] d..2 29484.617879: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54799            adbd-23484 ( 1007) [000] d..2 29484.617890: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
54800            adbd-23484 ( 1007) [000] d..3 29484.617900: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54801              ps-13726 (13726) [005] d..2 29484.617930: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54802              ps-13726 (13726) [005] dn.3 29484.617933: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54803              ps-13726 (13726) [005] d..2 29484.617936: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54804            adbd-23484 ( 1007) [000] d..2 29484.617945: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54805 shell svc 13722-13723 ( 1007) [005] d..2 29484.617947: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54806              ps-13726 (13726) [005] d..2 29484.617996: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54807              ps-13726 (13726) [005] dn.3 29484.618000: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54808              ps-13726 (13726) [005] d..2 29484.618003: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54809 shell svc 13722-13723 ( 1007) [005] d..2 29484.618013: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54810            adbd-1007  ( 1007) [000] d..1 29484.618016: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54811            adbd-1007  ( 1007) [000] d..2 29484.618027: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54812          <idle>-0     (-----) [001] .n.1 29484.618032: cpu_idle: state=4294967295 cpu_id=1
54813          <idle>-0     (-----) [001] d..2 29484.618038: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54814            adbd-1007  ( 1007) [000] d..2 29484.618061: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54815              ps-13726 (13726) [005] d..2 29484.618062: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54816              ps-13726 (13726) [005] dn.3 29484.618066: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54817          <idle>-0     (-----) [000] d..1 29484.618067: cpu_idle: state=0 cpu_id=0
54818              ps-13726 (13726) [005] d..2 29484.618069: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54819 shell svc 13722-13723 ( 1007) [005] d..2 29484.618079: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54820            adbd-23485 ( 1007) [001] d..2 29484.618084: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54821          <idle>-0     (-----) [001] d..1 29484.618091: cpu_idle: state=0 cpu_id=1
54822          <idle>-0     (-----) [000] d.h3 29484.618104: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54823          <idle>-0     (-----) [000] dnh4 29484.618110: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54824          <idle>-0     (-----) [000] .n.1 29484.618115: cpu_idle: state=4294967295 cpu_id=0
54825          <idle>-0     (-----) [000] d..2 29484.618120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54826   kworker/u17:2-23076 (23076) [000] d..2 29484.618128: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54827              ps-13726 (13726) [005] d..2 29484.618128: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54828              ps-13726 (13726) [005] dn.3 29484.618132: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54829   kworker/u17:2-23076 (23076) [000] d..3 29484.618133: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54830              ps-13726 (13726) [005] d..2 29484.618135: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54831 shell svc 13722-13723 ( 1007) [005] d..2 29484.618145: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54832   kworker/u17:2-23076 (23076) [000] d..2 29484.618149: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54833     kworker/0:0-13450 (13450) [000] d..2 29484.618155: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54834     kworker/0:0-13450 (13450) [000] d..3 29484.618164: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54835          <idle>-0     (-----) [001] .n.1 29484.618169: cpu_idle: state=4294967295 cpu_id=1
54836          <idle>-0     (-----) [001] d..2 29484.618176: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54837     kworker/0:0-13450 (13450) [000] d..2 29484.618177: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54838          <idle>-0     (-----) [000] d..1 29484.618182: cpu_idle: state=0 cpu_id=0
54839              ps-13726 (13726) [005] d..2 29484.618195: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54840              ps-13726 (13726) [005] dn.3 29484.618198: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54841              ps-13726 (13726) [005] d..2 29484.618201: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54842 shell svc 13722-13723 ( 1007) [005] d..2 29484.618211: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54843            adbd-23485 ( 1007) [001] d..2 29484.618220: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54844          <idle>-0     (-----) [001] d..1 29484.618227: cpu_idle: state=0 cpu_id=1
54845          <idle>-0     (-----) [000] d.h3 29484.618252: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54846          <idle>-0     (-----) [000] dnh4 29484.618258: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54847          <idle>-0     (-----) [000] .n.1 29484.618262: cpu_idle: state=4294967295 cpu_id=0
54848              ps-13726 (13726) [005] d..2 29484.618263: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54849              ps-13726 (13726) [005] dn.3 29484.618267: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54850          <idle>-0     (-----) [000] d..2 29484.618267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54851              ps-13726 (13726) [005] d..2 29484.618270: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54852   kworker/u17:2-23076 (23076) [000] d..2 29484.618273: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54853   kworker/u17:2-23076 (23076) [000] d..3 29484.618278: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54854 shell svc 13722-13723 ( 1007) [005] d..2 29484.618280: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54855   kworker/u17:2-23076 (23076) [000] d..2 29484.618294: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54856     kworker/0:0-13450 (13450) [000] d..2 29484.618299: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54857     kworker/0:0-13450 (13450) [000] d..3 29484.618311: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54858          <idle>-0     (-----) [001] .n.1 29484.618316: cpu_idle: state=4294967295 cpu_id=1
54859          <idle>-0     (-----) [001] d..2 29484.618322: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54860     kworker/0:0-13450 (13450) [000] d..2 29484.618324: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54861              ps-13726 (13726) [005] d..2 29484.618329: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54862          <idle>-0     (-----) [000] d..1 29484.618329: cpu_idle: state=0 cpu_id=0
54863              ps-13726 (13726) [005] dn.3 29484.618332: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54864              ps-13726 (13726) [005] d..2 29484.618335: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54865            adbd-23485 ( 1007) [001] d..2 29484.618339: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54866 shell svc 13722-13723 ( 1007) [005] d..2 29484.618345: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54867          <idle>-0     (-----) [001] d..1 29484.618346: cpu_idle: state=0 cpu_id=1
54868          <idle>-0     (-----) [000] d.h3 29484.618458: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54869          <idle>-0     (-----) [000] dnh4 29484.618466: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54870          <idle>-0     (-----) [000] .n.1 29484.618472: cpu_idle: state=4294967295 cpu_id=0
54871          <idle>-0     (-----) [000] d..2 29484.618476: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54872   kworker/u17:2-23076 (23076) [000] d..2 29484.618483: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54873   kworker/u17:2-23076 (23076) [000] d..3 29484.618488: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54874   kworker/u17:2-23076 (23076) [000] d..2 29484.618504: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54875     kworker/0:0-13450 (13450) [000] d..2 29484.618510: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54876     kworker/0:0-13450 (13450) [000] d..3 29484.618518: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54877     kworker/0:0-13450 (13450) [000] d..2 29484.618527: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54878            adbd-23484 ( 1007) [000] d..2 29484.618539: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54879            adbd-23484 ( 1007) [000] d..3 29484.618544: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54880            adbd-23484 ( 1007) [000] d..2 29484.618588: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54881            adbd-1007  ( 1007) [000] d..1 29484.618649: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54882            adbd-1007  ( 1007) [000] d..2 29484.618661: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54883          <idle>-0     (-----) [001] .n.1 29484.618666: cpu_idle: state=4294967295 cpu_id=1
54884          <idle>-0     (-----) [001] d..2 29484.618672: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54885            adbd-1007  ( 1007) [000] d..2 29484.618694: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54886          <idle>-0     (-----) [000] d..1 29484.618700: cpu_idle: state=0 cpu_id=0
54887            adbd-23485 ( 1007) [001] d..2 29484.618716: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54888          <idle>-0     (-----) [001] d..1 29484.618724: cpu_idle: state=0 cpu_id=1
54889          <idle>-0     (-----) [000] d.h3 29484.618728: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54890          <idle>-0     (-----) [000] dnh4 29484.618734: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54891          <idle>-0     (-----) [000] .n.1 29484.618740: cpu_idle: state=4294967295 cpu_id=0
54892          <idle>-0     (-----) [000] d..2 29484.618745: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54893   kworker/u17:2-23076 (23076) [000] d..2 29484.618754: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54894   kworker/u17:2-23076 (23076) [000] d..3 29484.618759: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54895   kworker/u17:2-23076 (23076) [000] d..2 29484.618777: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54896     kworker/0:0-13450 (13450) [000] d..2 29484.618782: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54897     kworker/0:0-13450 (13450) [000] d..3 29484.618791: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54898          <idle>-0     (-----) [001] .n.1 29484.618796: cpu_idle: state=4294967295 cpu_id=1
54899          <idle>-0     (-----) [001] d..2 29484.618803: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54900     kworker/0:0-13450 (13450) [000] d..2 29484.618804: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54901          <idle>-0     (-----) [000] d..1 29484.618809: cpu_idle: state=0 cpu_id=0
54902              ps-13726 (13726) [005] d..2 29484.618836: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54903              ps-13726 (13726) [005] dn.3 29484.618840: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54904              ps-13726 (13726) [005] d..2 29484.618844: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54905            adbd-23485 ( 1007) [001] d..2 29484.618848: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54906 shell svc 13722-13723 ( 1007) [005] d..2 29484.618855: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54907          <idle>-0     (-----) [001] d..1 29484.618856: cpu_idle: state=0 cpu_id=1
54908              ps-13726 (13726) [005] d..2 29484.618862: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54909              ps-13726 (13726) [005] dn.3 29484.618865: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54910              ps-13726 (13726) [005] d..2 29484.618867: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54911          <idle>-0     (-----) [000] d.h3 29484.618875: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54912 shell svc 13722-13723 ( 1007) [005] d..2 29484.618876: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54913          <idle>-0     (-----) [000] dnh4 29484.618881: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54914              ps-13726 (13726) [005] d..2 29484.618882: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54915              ps-13726 (13726) [005] dn.3 29484.618885: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54916          <idle>-0     (-----) [000] .n.1 29484.618885: cpu_idle: state=4294967295 cpu_id=0
54917              ps-13726 (13726) [005] d..2 29484.618887: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54918          <idle>-0     (-----) [000] d..2 29484.618890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54919 shell svc 13722-13723 ( 1007) [005] d..2 29484.618895: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54920   kworker/u17:2-23076 (23076) [000] d..2 29484.618897: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54921              ps-13726 (13726) [005] d..2 29484.618900: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54922   kworker/u17:2-23076 (23076) [000] d..3 29484.618902: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54923              ps-13726 (13726) [005] dn.3 29484.618903: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54924              ps-13726 (13726) [005] d..2 29484.618905: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54925 shell svc 13722-13723 ( 1007) [005] d..2 29484.618913: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54926   kworker/u17:2-23076 (23076) [000] d..2 29484.618918: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54927              ps-13726 (13726) [005] d..2 29484.618918: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54928              ps-13726 (13726) [005] dn.3 29484.618921: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54929     kworker/0:0-13450 (13450) [000] d..2 29484.618923: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54930              ps-13726 (13726) [005] d..2 29484.618923: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54931 shell svc 13722-13723 ( 1007) [005] d..2 29484.618931: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54932     kworker/0:0-13450 (13450) [000] d..3 29484.618932: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54933              ps-13726 (13726) [005] d..2 29484.618937: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54934          <idle>-0     (-----) [001] .n.1 29484.618937: cpu_idle: state=4294967295 cpu_id=1
54935              ps-13726 (13726) [005] dn.3 29484.618939: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54936              ps-13726 (13726) [005] d..2 29484.618942: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54937          <idle>-0     (-----) [001] d..2 29484.618943: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54938     kworker/0:0-13450 (13450) [000] d..2 29484.618945: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54939          <idle>-0     (-----) [000] d..1 29484.618949: cpu_idle: state=0 cpu_id=0
54940 shell svc 13722-13723 ( 1007) [005] d..2 29484.618949: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54941              ps-13726 (13726) [005] d..2 29484.618954: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54942              ps-13726 (13726) [005] dn.3 29484.618957: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54943            adbd-23485 ( 1007) [001] d..2 29484.618959: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54944              ps-13726 (13726) [005] d..2 29484.618959: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54945          <idle>-0     (-----) [001] d..1 29484.618966: cpu_idle: state=0 cpu_id=1
54946 shell svc 13722-13723 ( 1007) [005] d..2 29484.618967: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54947              ps-13726 (13726) [005] d..2 29484.618973: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54948              ps-13726 (13726) [005] dn.3 29484.618977: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54949              ps-13726 (13726) [005] d..2 29484.618979: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54950 shell svc 13722-13723 ( 1007) [005] d..2 29484.618987: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54951              ps-13726 (13726) [005] d..2 29484.618992: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54952              ps-13726 (13726) [005] dn.3 29484.618995: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54953              ps-13726 (13726) [005] d..2 29484.618998: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54954 shell svc 13722-13723 ( 1007) [005] d..2 29484.619006: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54955              ps-13726 (13726) [005] d..2 29484.619012: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54956              ps-13726 (13726) [005] dn.3 29484.619015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54957              ps-13726 (13726) [005] d..2 29484.619017: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54958 shell svc 13722-13723 ( 1007) [005] d..2 29484.619025: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54959              ps-13726 (13726) [005] d..2 29484.619032: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54960              ps-13726 (13726) [005] dn.3 29484.619034: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54961              ps-13726 (13726) [005] d..2 29484.619037: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54962 shell svc 13722-13723 ( 1007) [005] d..2 29484.619045: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54963              ps-13726 (13726) [005] d..2 29484.619051: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54964              ps-13726 (13726) [005] dn.3 29484.619053: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54965              ps-13726 (13726) [005] d..2 29484.619056: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54966 shell svc 13722-13723 ( 1007) [005] d..2 29484.619063: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54967          <idle>-0     (-----) [000] d.h3 29484.619065: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54968              ps-13726 (13726) [005] d..2 29484.619069: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54969          <idle>-0     (-----) [000] dnh4 29484.619070: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
54970              ps-13726 (13726) [005] dn.3 29484.619071: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54971              ps-13726 (13726) [005] d..2 29484.619074: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54972          <idle>-0     (-----) [000] .n.1 29484.619075: cpu_idle: state=4294967295 cpu_id=0
54973          <idle>-0     (-----) [000] d..2 29484.619079: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
54974 shell svc 13722-13723 ( 1007) [005] d..2 29484.619082: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54975   kworker/u17:2-23076 (23076) [000] d..2 29484.619086: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54976              ps-13726 (13726) [005] d..2 29484.619088: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54977              ps-13726 (13726) [005] dn.3 29484.619091: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54978   kworker/u17:2-23076 (23076) [000] d..3 29484.619091: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
54979              ps-13726 (13726) [005] d..2 29484.619093: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54980 shell svc 13722-13723 ( 1007) [005] d..2 29484.619100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54981              ps-13726 (13726) [005] d..2 29484.619106: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54982   kworker/u17:2-23076 (23076) [000] d..2 29484.619107: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
54983              ps-13726 (13726) [005] dn.3 29484.619109: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
54984              ps-13726 (13726) [005] d..2 29484.619111: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
54985     kworker/0:0-13450 (13450) [000] d..2 29484.619112: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
54986 shell svc 13722-13723 ( 1007) [005] d..2 29484.619119: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
54987     kworker/0:0-13450 (13450) [000] d..3 29484.619121: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
54988     kworker/0:0-13450 (13450) [000] d..2 29484.619129: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
54989            adbd-23484 ( 1007) [000] d..2 29484.619140: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
54990            adbd-23484 ( 1007) [000] d..3 29484.619146: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
54991            adbd-23484 ( 1007) [000] d..2 29484.619188: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
54992            adbd-1007  ( 1007) [000] d..1 29484.619259: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
54993            adbd-1007  ( 1007) [000] d..2 29484.619270: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
54994          <idle>-0     (-----) [001] .n.1 29484.619275: cpu_idle: state=4294967295 cpu_id=1
54995          <idle>-0     (-----) [001] d..2 29484.619281: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
54996            adbd-1007  ( 1007) [000] d..2 29484.619304: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54997          <idle>-0     (-----) [000] d..1 29484.619310: cpu_idle: state=0 cpu_id=0
54998            adbd-23485 ( 1007) [001] d..2 29484.619326: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54999          <idle>-0     (-----) [000] d.h3 29484.619334: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55000          <idle>-0     (-----) [001] d..1 29484.619334: cpu_idle: state=0 cpu_id=1
55001          <idle>-0     (-----) [000] dnh4 29484.619340: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55002          <idle>-0     (-----) [000] .n.1 29484.619345: cpu_idle: state=4294967295 cpu_id=0
55003          <idle>-0     (-----) [000] d..2 29484.619350: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55004   kworker/u17:2-23076 (23076) [000] d..2 29484.619359: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55005   kworker/u17:2-23076 (23076) [000] d..3 29484.619364: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55006   kworker/u17:2-23076 (23076) [000] d..2 29484.619381: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55007     kworker/0:0-13450 (13450) [000] d..2 29484.619388: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55008     kworker/0:0-13450 (13450) [000] d..3 29484.619396: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55009          <idle>-0     (-----) [001] .n.1 29484.619402: cpu_idle: state=4294967295 cpu_id=1
55010          <idle>-0     (-----) [001] d..2 29484.619408: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55011     kworker/0:0-13450 (13450) [000] d..2 29484.619410: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55012          <idle>-0     (-----) [000] d..1 29484.619415: cpu_idle: state=0 cpu_id=0
55013            adbd-23485 ( 1007) [001] d..2 29484.619452: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55014          <idle>-0     (-----) [001] d..1 29484.619459: cpu_idle: state=0 cpu_id=1
55015          <idle>-0     (-----) [000] d.h3 29484.619486: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55016          <idle>-0     (-----) [000] dnh4 29484.619492: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55017          <idle>-0     (-----) [000] .n.1 29484.619497: cpu_idle: state=4294967295 cpu_id=0
55018          <idle>-0     (-----) [000] d..2 29484.619502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55019   kworker/u17:2-23076 (23076) [000] d..2 29484.619508: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55020   kworker/u17:2-23076 (23076) [000] d..3 29484.619513: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55021   kworker/u17:2-23076 (23076) [000] d..2 29484.619530: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55022     kworker/0:0-13450 (13450) [000] d..2 29484.619535: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55023     kworker/0:0-13450 (13450) [000] d..3 29484.619543: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55024          <idle>-0     (-----) [001] .n.1 29484.619548: cpu_idle: state=4294967295 cpu_id=1
55025          <idle>-0     (-----) [001] d..2 29484.619554: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55026     kworker/0:0-13450 (13450) [000] d..2 29484.619556: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55027              ps-13726 (13726) [005] d..2 29484.619561: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55028          <idle>-0     (-----) [000] d..1 29484.619561: cpu_idle: state=0 cpu_id=0
55029              ps-13726 (13726) [005] dn.3 29484.619565: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55030              ps-13726 (13726) [005] d..2 29484.619568: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55031            adbd-23485 ( 1007) [001] d..2 29484.619570: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55032          <idle>-0     (-----) [001] d..1 29484.619576: cpu_idle: state=0 cpu_id=1
55033 shell svc 13722-13723 ( 1007) [005] d..2 29484.619580: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55034              ps-13726 (13726) [005] d..2 29484.619586: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55035              ps-13726 (13726) [005] dn.3 29484.619589: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55036              ps-13726 (13726) [005] d..2 29484.619592: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55037 shell svc 13722-13723 ( 1007) [005] d..2 29484.619600: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55038              ps-13726 (13726) [005] d..2 29484.619606: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55039              ps-13726 (13726) [005] dn.3 29484.619609: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55040              ps-13726 (13726) [005] d..2 29484.619611: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55041 shell svc 13722-13723 ( 1007) [005] d..2 29484.619619: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55042              ps-13726 (13726) [005] d..2 29484.619626: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55043              ps-13726 (13726) [005] dn.3 29484.619628: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55044              ps-13726 (13726) [005] d..2 29484.619631: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55045 shell svc 13722-13723 ( 1007) [005] d..2 29484.619639: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55046              ps-13726 (13726) [005] d..2 29484.619645: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55047              ps-13726 (13726) [005] dn.3 29484.619647: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55048              ps-13726 (13726) [005] d..2 29484.619650: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55049 shell svc 13722-13723 ( 1007) [005] d..2 29484.619657: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55050              ps-13726 (13726) [005] d..2 29484.619664: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55051              ps-13726 (13726) [005] dn.3 29484.619667: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55052              ps-13726 (13726) [005] d..2 29484.619670: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55053          <idle>-0     (-----) [000] d.h3 29484.619674: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55054 shell svc 13722-13723 ( 1007) [005] d..2 29484.619678: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55055          <idle>-0     (-----) [000] dnh4 29484.619679: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55056              ps-13726 (13726) [005] d..2 29484.619683: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55057          <idle>-0     (-----) [000] .n.1 29484.619684: cpu_idle: state=4294967295 cpu_id=0
55058              ps-13726 (13726) [005] dn.3 29484.619686: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55059          <idle>-0     (-----) [000] d..2 29484.619689: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55060              ps-13726 (13726) [005] d..2 29484.619689: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55061   kworker/u17:2-23076 (23076) [000] d..2 29484.619695: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55062 shell svc 13722-13723 ( 1007) [005] d..2 29484.619697: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55063   kworker/u17:2-23076 (23076) [000] d..3 29484.619700: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55064              ps-13726 (13726) [005] d..2 29484.619703: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55065              ps-13726 (13726) [005] dn.3 29484.619705: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55066              ps-13726 (13726) [005] d..2 29484.619708: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55067   kworker/u17:2-23076 (23076) [000] d..2 29484.619716: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55068 shell svc 13722-13723 ( 1007) [005] d..2 29484.619716: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55069              ps-13726 (13726) [005] d..2 29484.619721: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55070     kworker/0:0-13450 (13450) [000] d..2 29484.619723: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
55071              ps-13726 (13726) [005] dn.3 29484.619724: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55072              ps-13726 (13726) [005] d..2 29484.619726: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55073     kworker/0:0-13450 (13450) [000] d..3 29484.619732: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
55074 shell svc 13722-13723 ( 1007) [005] d..2 29484.619734: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55075     kworker/0:0-13450 (13450) [000] d..2 29484.619739: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
55076              ps-13726 (13726) [005] d..2 29484.619741: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55077              ps-13726 (13726) [005] dn.3 29484.619743: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55078              ps-13726 (13726) [005] d..2 29484.619745: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55079            adbd-23484 ( 1007) [000] d..2 29484.619751: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
55080 shell svc 13722-13723 ( 1007) [005] d..2 29484.619754: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55081            adbd-23484 ( 1007) [000] d..3 29484.619757: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
55082              ps-13726 (13726) [005] d..2 29484.619760: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55083              ps-13726 (13726) [005] dn.3 29484.619762: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55084              ps-13726 (13726) [005] d..2 29484.619765: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55085 shell svc 13722-13723 ( 1007) [005] d..2 29484.619773: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55086              ps-13726 (13726) [005] d..2 29484.619778: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55087              ps-13726 (13726) [005] dn.3 29484.619781: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55088              ps-13726 (13726) [005] d..2 29484.619783: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55089 shell svc 13722-13723 ( 1007) [005] d..2 29484.619791: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55090              ps-13726 (13726) [005] d..2 29484.619796: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55091              ps-13726 (13726) [005] dn.3 29484.619799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55092            adbd-23484 ( 1007) [000] d..2 29484.619801: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
55093              ps-13726 (13726) [005] d..2 29484.619801: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55094 shell svc 13722-13723 ( 1007) [005] d..2 29484.619810: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55095              ps-13726 (13726) [005] d..2 29484.619816: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55096              ps-13726 (13726) [005] dn.3 29484.619819: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55097              ps-13726 (13726) [005] d..2 29484.619821: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55098 shell svc 13722-13723 ( 1007) [005] d..2 29484.619829: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55099            adbd-1007  ( 1007) [000] d..1 29484.619872: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55100            adbd-1007  ( 1007) [000] d..2 29484.619883: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55101          <idle>-0     (-----) [001] .n.1 29484.619889: cpu_idle: state=4294967295 cpu_id=1
55102          <idle>-0     (-----) [001] d..2 29484.619895: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55103            adbd-1007  ( 1007) [000] d..2 29484.619917: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55104          <idle>-0     (-----) [000] d..1 29484.619923: cpu_idle: state=0 cpu_id=0
55105            adbd-23485 ( 1007) [001] d..2 29484.619939: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55106          <idle>-0     (-----) [001] d..1 29484.619946: cpu_idle: state=0 cpu_id=1
55107          <idle>-0     (-----) [000] d.h3 29484.619958: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55108          <idle>-0     (-----) [000] dnh4 29484.619964: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55109          <idle>-0     (-----) [000] .n.1 29484.619969: cpu_idle: state=4294967295 cpu_id=0
55110          <idle>-0     (-----) [000] d..2 29484.619974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55111   kworker/u17:2-23076 (23076) [000] d..2 29484.619983: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55112   kworker/u17:2-23076 (23076) [000] d..3 29484.619988: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55113   kworker/u17:2-23076 (23076) [000] d..2 29484.620004: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55114     kworker/0:0-13450 (13450) [000] d..2 29484.620010: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55115              ps-13726 (13726) [005] d..2 29484.620013: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55116              ps-13726 (13726) [005] dn.3 29484.620017: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55117     kworker/0:0-13450 (13450) [000] d..3 29484.620019: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55118              ps-13726 (13726) [005] d..2 29484.620020: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55119          <idle>-0     (-----) [001] .n.1 29484.620024: cpu_idle: state=4294967295 cpu_id=1
55120          <idle>-0     (-----) [001] d..2 29484.620030: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55121 shell svc 13722-13723 ( 1007) [005] d..2 29484.620031: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55122     kworker/0:0-13450 (13450) [000] d..2 29484.620032: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55123              ps-13726 (13726) [005] d..2 29484.620037: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55124          <idle>-0     (-----) [000] d..1 29484.620037: cpu_idle: state=0 cpu_id=0
55125              ps-13726 (13726) [005] dn.3 29484.620040: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55126              ps-13726 (13726) [005] d..2 29484.620042: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55127 shell svc 13722-13723 ( 1007) [005] d..2 29484.620051: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55128              ps-13726 (13726) [005] d..2 29484.620056: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55129              ps-13726 (13726) [005] dn.3 29484.620059: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55130              ps-13726 (13726) [005] d..2 29484.620061: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55131 shell svc 13722-13723 ( 1007) [005] d..2 29484.620069: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55132              ps-13726 (13726) [005] d..2 29484.620075: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55133            adbd-23485 ( 1007) [001] d..2 29484.620075: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55134              ps-13726 (13726) [005] dn.3 29484.620078: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55135              ps-13726 (13726) [005] d..2 29484.620080: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55136          <idle>-0     (-----) [001] d..1 29484.620083: cpu_idle: state=0 cpu_id=1
55137 shell svc 13722-13723 ( 1007) [005] d..2 29484.620088: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55138              ps-13726 (13726) [005] d..2 29484.620094: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55139              ps-13726 (13726) [005] dn.3 29484.620097: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55140              ps-13726 (13726) [005] d..2 29484.620099: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55141 shell svc 13722-13723 ( 1007) [005] d..2 29484.620107: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55142          <idle>-0     (-----) [000] d.h3 29484.620112: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55143          <idle>-0     (-----) [000] dnh4 29484.620118: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55144          <idle>-0     (-----) [000] .n.1 29484.620122: cpu_idle: state=4294967295 cpu_id=0
55145          <idle>-0     (-----) [000] d..2 29484.620127: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55146   kworker/u17:2-23076 (23076) [000] d..2 29484.620134: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55147   kworker/u17:2-23076 (23076) [000] d..3 29484.620139: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55148   kworker/u17:2-23076 (23076) [000] d..2 29484.620155: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55149     kworker/0:0-13450 (13450) [000] d..2 29484.620160: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55150     kworker/0:0-13450 (13450) [000] d..3 29484.620168: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55151          <idle>-0     (-----) [001] .n.1 29484.620174: cpu_idle: state=4294967295 cpu_id=1
55152          <idle>-0     (-----) [001] d..2 29484.620180: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55153     kworker/0:0-13450 (13450) [000] d..2 29484.620181: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55154          <idle>-0     (-----) [000] d..1 29484.620186: cpu_idle: state=0 cpu_id=0
55155            adbd-23485 ( 1007) [001] d..2 29484.620196: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55156          <idle>-0     (-----) [001] d..1 29484.620202: cpu_idle: state=0 cpu_id=1
55157          <idle>-0     (-----) [000] d.h3 29484.620270: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55158          <idle>-0     (-----) [000] dnh4 29484.620276: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55159              ps-13726 (13726) [005] d..2 29484.620277: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55160          <idle>-0     (-----) [000] .n.1 29484.620280: cpu_idle: state=4294967295 cpu_id=0
55161              ps-13726 (13726) [005] dn.3 29484.620280: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55162              ps-13726 (13726) [005] d..2 29484.620283: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55163          <idle>-0     (-----) [000] d..2 29484.620285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55164   kworker/u17:2-23076 (23076) [000] d..2 29484.620291: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55165 shell svc 13722-13723 ( 1007) [005] d..2 29484.620294: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55166   kworker/u17:2-23076 (23076) [000] d..3 29484.620296: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55167              ps-13726 (13726) [005] d..2 29484.620300: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55168              ps-13726 (13726) [005] dn.3 29484.620302: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55169              ps-13726 (13726) [005] d..2 29484.620305: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55170   kworker/u17:2-23076 (23076) [000] d..2 29484.620311: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55171 shell svc 13722-13723 ( 1007) [005] d..2 29484.620313: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55172     kworker/0:0-13450 (13450) [000] d..2 29484.620317: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
55173              ps-13726 (13726) [005] d..2 29484.620318: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55174              ps-13726 (13726) [005] dn.3 29484.620321: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55175              ps-13726 (13726) [005] d..2 29484.620323: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55176     kworker/0:0-13450 (13450) [000] d..3 29484.620326: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
55177 shell svc 13722-13723 ( 1007) [005] d..2 29484.620332: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55178     kworker/0:0-13450 (13450) [000] d..2 29484.620334: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
55179              ps-13726 (13726) [005] d..2 29484.620337: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55180              ps-13726 (13726) [005] dn.3 29484.620340: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55181              ps-13726 (13726) [005] d..2 29484.620342: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55182            adbd-23484 ( 1007) [000] d..2 29484.620346: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
55183 shell svc 13722-13723 ( 1007) [005] d..2 29484.620350: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55184            adbd-23484 ( 1007) [000] d..3 29484.620351: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
55185              ps-13726 (13726) [005] d..2 29484.620355: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55186              ps-13726 (13726) [005] dn.3 29484.620358: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55187              ps-13726 (13726) [005] d..2 29484.620360: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55188 shell svc 13722-13723 ( 1007) [005] d..2 29484.620368: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55189              ps-13726 (13726) [005] d.s2 29484.620398: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
55190            adbd-23484 ( 1007) [000] d.s2 29484.620404: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
55191            adbd-23484 ( 1007) [000] d.s3 29484.620415: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
55192            adbd-23484 ( 1007) [000] d.H3 29484.620421: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
55193            adbd-23484 ( 1007) [000] d..2 29484.620433: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55194     rcu_preempt-7     (    7) [000] d..2 29484.620441: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
55195     rcu_preempt-7     (    7) [000] d..3 29484.620453: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
55196          <idle>-0     (-----) [001] .n.1 29484.620458: cpu_idle: state=4294967295 cpu_id=1
55197     rcu_preempt-7     (    7) [000] d..2 29484.620459: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
55198              ps-13726 (13726) [005] d..2 29484.620461: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55199          <idle>-0     (-----) [001] d..2 29484.620465: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
55200              ps-13726 (13726) [005] dn.3 29484.620465: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55201         rcuop/4-45    (   45) [001] d..2 29484.620468: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
55202              ps-13726 (13726) [005] d..2 29484.620469: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55203         rcuop/4-45    (   45) [001] d..3 29484.620479: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
55204         rcuop/4-45    (   45) [001] d..2 29484.620482: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
55205 shell svc 13722-13723 ( 1007) [005] d..2 29484.620490: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55206         rcuop/4-45    (   45) [001] d..3 29484.620501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
55207         rcuop/4-45    (   45) [001] d..2 29484.620512: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
55208  kworker/u16:10-23868 (23868) [000] .... 29484.620530: clk_set_rate: l3_cluster0_vote_clk 940800000
55209              ps-13726 (13726) [005] d..2 29484.620547: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55210              ps-13726 (13726) [005] dn.3 29484.620550: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55211              ps-13726 (13726) [005] d..2 29484.620553: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55212 shell svc 13722-13723 ( 1007) [005] d..2 29484.620564: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55213  kworker/u16:10-23868 (23868) [000] d..2 29484.620592: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
55214         rcuop/5-53    (   53) [001] d..2 29484.620658: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55215            adbd-1007  ( 1007) [000] d..1 29484.620661: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55216            adbd-1007  ( 1007) [000] d..2 29484.620674: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55217     rcu_preempt-7     (    7) [001] d..2 29484.620679: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
55218            adbd-1007  ( 1007) [000] d..2 29484.620713: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55219          <idle>-0     (-----) [000] d..1 29484.620723: cpu_idle: state=0 cpu_id=0
55220            adbd-23485 ( 1007) [001] d..2 29484.620726: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55221          <idle>-0     (-----) [001] d..1 29484.620736: cpu_idle: state=0 cpu_id=1
55222          <idle>-0     (-----) [000] d.h3 29484.620750: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55223          <idle>-0     (-----) [000] dnh4 29484.620759: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55224          <idle>-0     (-----) [000] .n.1 29484.620765: cpu_idle: state=4294967295 cpu_id=0
55225          <idle>-0     (-----) [000] d..2 29484.620771: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55226   kworker/u17:2-23076 (23076) [000] d..2 29484.620780: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55227   kworker/u17:2-23076 (23076) [000] d..3 29484.620785: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55228   kworker/u17:2-23076 (23076) [000] d..2 29484.620801: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55229     kworker/0:0-13450 (13450) [000] d..2 29484.620807: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55230     kworker/0:0-13450 (13450) [000] d..3 29484.620818: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55231          <idle>-0     (-----) [001] .n.1 29484.620823: cpu_idle: state=4294967295 cpu_id=1
55232          <idle>-0     (-----) [001] d..2 29484.620830: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55233     kworker/0:0-13450 (13450) [000] d..2 29484.620832: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55234          <idle>-0     (-----) [000] d..1 29484.620839: cpu_idle: state=0 cpu_id=0
55235            adbd-23485 ( 1007) [001] d..2 29484.620876: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55236          <idle>-0     (-----) [001] d..1 29484.620883: cpu_idle: state=0 cpu_id=1
55237          <idle>-0     (-----) [000] d.h3 29484.620903: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55238          <idle>-0     (-----) [000] dnh4 29484.620908: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55239          <idle>-0     (-----) [000] .n.1 29484.620914: cpu_idle: state=4294967295 cpu_id=0
55240          <idle>-0     (-----) [000] d..2 29484.620920: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55241   kworker/u17:2-23076 (23076) [000] d..2 29484.620928: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55242   kworker/u17:2-23076 (23076) [000] d..3 29484.620933: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55243   kworker/u17:2-23076 (23076) [000] d..2 29484.620949: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55244     kworker/0:0-13450 (13450) [000] d..2 29484.620954: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55245     kworker/0:0-13450 (13450) [000] d..3 29484.620963: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55246          <idle>-0     (-----) [001] .n.1 29484.620968: cpu_idle: state=4294967295 cpu_id=1
55247          <idle>-0     (-----) [001] d..2 29484.620974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55248     kworker/0:0-13450 (13450) [000] d..2 29484.620977: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55249          <idle>-0     (-----) [000] d..1 29484.620983: cpu_idle: state=0 cpu_id=0
55250            adbd-23485 ( 1007) [001] d..2 29484.620991: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55251          <idle>-0     (-----) [001] d..1 29484.620997: cpu_idle: state=0 cpu_id=1
55252          <idle>-0     (-----) [000] d.h3 29484.621041: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55253          <idle>-0     (-----) [000] dnh4 29484.621047: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55254          <idle>-0     (-----) [000] .n.1 29484.621052: cpu_idle: state=4294967295 cpu_id=0
55255          <idle>-0     (-----) [000] d..2 29484.621058: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55256   kworker/u17:2-23076 (23076) [000] d..2 29484.621064: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55257   kworker/u17:2-23076 (23076) [000] d..3 29484.621069: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55258   kworker/u17:2-23076 (23076) [000] d..2 29484.621085: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55259     kworker/0:0-13450 (13450) [000] d..2 29484.621091: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
55260     kworker/0:0-13450 (13450) [000] d..3 29484.621100: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
55261     kworker/0:0-13450 (13450) [000] d..2 29484.621108: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
55262            adbd-23484 ( 1007) [000] d..2 29484.621119: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
55263            adbd-23484 ( 1007) [000] d..3 29484.621124: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
55264            adbd-23484 ( 1007) [000] d..2 29484.621169: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
55265            adbd-1007  ( 1007) [000] d..2 29484.621224: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55266          <idle>-0     (-----) [000] d..1 29484.621233: cpu_idle: state=0 cpu_id=0
55267          <idle>-0     (-----) [000] ...1 29484.622344: cpu_idle: state=4294967295 cpu_id=0
55268          <idle>-0     (-----) [000] d..1 29484.622348: cpu_idle: state=2 cpu_id=0
55269              ps-13726 (13726) [005] d..2 29484.623965: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55270              ps-13726 (13726) [005] dn.3 29484.623969: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55271              ps-13726 (13726) [005] d..2 29484.623973: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55272 shell svc 13722-13723 ( 1007) [005] d..2 29484.623981: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
55273 shell svc 13722-13723 ( 1007) [005] d..2 29484.624000: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55274          <idle>-0     (-----) [001] dnh2 29484.624004: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
55275              ps-13726 (13726) [005] d..2 29484.624008: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55276          <idle>-0     (-----) [001] .n.1 29484.624008: cpu_idle: state=4294967295 cpu_id=1
55277              ps-13726 (13726) [005] dn.3 29484.624011: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55278              ps-13726 (13726) [005] d..2 29484.624013: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55279          <idle>-0     (-----) [001] d..2 29484.624015: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
55280 shell svc 13722-13723 ( 1007) [005] d..2 29484.624023: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55281              ps-13726 (13726) [005] d..2 29484.624029: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55282              ps-13726 (13726) [005] dn.3 29484.624033: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55283              ps-13726 (13726) [005] d..2 29484.624035: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55284 shell svc 13722-13723 ( 1007) [005] d..2 29484.624044: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55285              ps-13726 (13726) [005] d..2 29484.624050: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55286              ps-13726 (13726) [005] dn.3 29484.624052: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55287              ps-13726 (13726) [005] d..2 29484.624055: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55288            adbd-1007  ( 1007) [001] d..1 29484.624056: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55289 shell svc 13722-13723 ( 1007) [005] d..2 29484.624063: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55290            adbd-1007  ( 1007) [001] d..2 29484.624068: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55291              ps-13726 (13726) [005] d..2 29484.624068: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55292              ps-13726 (13726) [005] dn.3 29484.624071: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55293              ps-13726 (13726) [005] d..2 29484.624073: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55294 shell svc 13722-13723 ( 1007) [005] d..2 29484.624082: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55295              ps-13726 (13726) [005] d..2 29484.624087: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55296              ps-13726 (13726) [005] dn.3 29484.624089: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55297              ps-13726 (13726) [005] d..2 29484.624092: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55298            adbd-1007  ( 1007) [001] d..2 29484.624099: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
55299 shell svc 13722-13723 ( 1007) [005] d..2 29484.624100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55300              ps-13726 (13726) [005] d..2 29484.624105: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55301              ps-13726 (13726) [005] dn.3 29484.624108: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55302              ps-13726 (13726) [005] d..2 29484.624110: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55303 shell svc 13722-13723 ( 1007) [005] d..2 29484.624118: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55304              ps-13726 (13726) [005] d..2 29484.624124: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55305              ps-13726 (13726) [005] dn.3 29484.624126: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55306              ps-13726 (13726) [005] d..2 29484.624128: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55307 shell svc 13722-13723 ( 1007) [005] d..2 29484.624136: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55308              ps-13726 (13726) [005] d..2 29484.624141: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55309              ps-13726 (13726) [005] dn.3 29484.624144: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55310              ps-13726 (13726) [005] d..2 29484.624146: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55311            adbd-23485 ( 1007) [001] d..2 29484.624150: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55312 shell svc 13722-13723 ( 1007) [005] d..2 29484.624154: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55313          <idle>-0     (-----) [001] d..1 29484.624156: cpu_idle: state=0 cpu_id=1
55314              ps-13726 (13726) [005] d..2 29484.624160: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55315              ps-13726 (13726) [005] dn.3 29484.624162: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55316              ps-13726 (13726) [005] d..2 29484.624164: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55317 shell svc 13722-13723 ( 1007) [005] d..2 29484.624172: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55318              ps-13726 (13726) [005] d..2 29484.624177: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55319              ps-13726 (13726) [005] dn.3 29484.624180: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55320              ps-13726 (13726) [005] d..2 29484.624182: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55321 shell svc 13722-13723 ( 1007) [005] d..2 29484.624190: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55322              ps-13726 (13726) [005] d..2 29484.624195: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55323              ps-13726 (13726) [005] dn.3 29484.624197: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55324              ps-13726 (13726) [005] d..2 29484.624200: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55325 shell svc 13722-13723 ( 1007) [005] d..2 29484.624207: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55326              ps-13726 (13726) [005] d..2 29484.624212: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55327              ps-13726 (13726) [005] dn.3 29484.624215: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55328              ps-13726 (13726) [005] d..2 29484.624217: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55329 shell svc 13722-13723 ( 1007) [005] d..2 29484.624225: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55330              ps-13726 (13726) [005] d..2 29484.624230: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55331              ps-13726 (13726) [005] dn.3 29484.624233: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55332              ps-13726 (13726) [005] d..2 29484.624235: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55333 shell svc 13722-13723 ( 1007) [005] d..2 29484.624242: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55334              ps-13726 (13726) [005] d..2 29484.624247: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55335              ps-13726 (13726) [005] dn.3 29484.624250: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55336              ps-13726 (13726) [005] d..2 29484.624252: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55337 shell svc 13722-13723 ( 1007) [005] d..2 29484.624260: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55338              ps-13726 (13726) [005] d..2 29484.624265: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55339              ps-13726 (13726) [005] dn.3 29484.624268: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55340              ps-13726 (13726) [005] d..2 29484.624270: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55341 shell svc 13722-13723 ( 1007) [005] d..2 29484.624278: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55342              ps-13726 (13726) [005] d..2 29484.624283: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55343              ps-13726 (13726) [005] dn.3 29484.624285: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55344              ps-13726 (13726) [005] d..2 29484.624288: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55345 shell svc 13722-13723 ( 1007) [005] d..2 29484.624295: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55346              ps-13726 (13726) [005] d..2 29484.624301: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55347          <idle>-0     (-----) [000] d.h3 29484.624302: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55348              ps-13726 (13726) [005] dn.3 29484.624303: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55349              ps-13726 (13726) [005] d..2 29484.624305: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55350 shell svc 13722-13723 ( 1007) [005] d..2 29484.624313: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55351          <idle>-0     (-----) [000] dnh4 29484.624315: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55352              ps-13726 (13726) [005] d..2 29484.624318: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55353              ps-13726 (13726) [005] dn.3 29484.624321: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55354          <idle>-0     (-----) [000] .n.1 29484.624321: cpu_idle: state=4294967295 cpu_id=0
55355              ps-13726 (13726) [005] d..2 29484.624323: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55356          <idle>-0     (-----) [000] d..2 29484.624330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55357 shell svc 13722-13723 ( 1007) [005] d..2 29484.624331: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55358              ps-13726 (13726) [005] d..2 29484.624336: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55359              ps-13726 (13726) [005] dn.3 29484.624339: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55360   kworker/u17:2-23076 (23076) [000] d..2 29484.624340: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55361              ps-13726 (13726) [005] d..2 29484.624341: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55362   kworker/u17:2-23076 (23076) [000] d..3 29484.624346: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55363 shell svc 13722-13723 ( 1007) [005] d..2 29484.624349: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55364              ps-13726 (13726) [005] d..2 29484.624354: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55365              ps-13726 (13726) [005] dn.3 29484.624356: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55366              ps-13726 (13726) [005] d..2 29484.624360: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55367   kworker/u17:2-23076 (23076) [000] d..2 29484.624363: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55368 shell svc 13722-13723 ( 1007) [005] d..2 29484.624367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55369     kworker/0:0-13450 (13450) [000] d..2 29484.624369: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55370              ps-13726 (13726) [005] d..2 29484.624372: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55371              ps-13726 (13726) [005] dn.3 29484.624375: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55372              ps-13726 (13726) [005] d..2 29484.624377: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55373 shell svc 13722-13723 ( 1007) [005] d..2 29484.624385: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55374              ps-13726 (13726) [005] d..2 29484.624390: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55375     kworker/0:0-13450 (13450) [000] d..3 29484.624391: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
55376              ps-13726 (13726) [005] dn.3 29484.624393: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55377              ps-13726 (13726) [005] d..2 29484.624395: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55378     kworker/0:0-13450 (13450) [000] d..2 29484.624400: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
55379 shell svc 13722-13723 ( 1007) [005] d..2 29484.624403: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55380              ps-13726 (13726) [005] d..2 29484.624408: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55381              ps-13726 (13726) [005] dn.3 29484.624411: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55382              ps-13726 (13726) [005] d..2 29484.624413: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55383 shell svc 13722-13723 ( 1007) [005] d..2 29484.624421: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55384              ps-13726 (13726) [005] d..2 29484.624426: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55385              ps-13726 (13726) [005] dn.3 29484.624428: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55386              ps-13726 (13726) [005] d..2 29484.624430: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55387 shell svc 13722-13723 ( 1007) [005] d..2 29484.624438: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55388              ps-13726 (13726) [005] d..2 29484.624444: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55389              ps-13726 (13726) [005] dn.3 29484.624446: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55390              ps-13726 (13726) [005] d..2 29484.624448: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55391 shell svc 13722-13723 ( 1007) [005] d..2 29484.624456: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55392            adbd-23485 ( 1007) [000] d..2 29484.624459: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55393              ps-13726 (13726) [005] d..2 29484.624461: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55394              ps-13726 (13726) [005] dn.3 29484.624464: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55395              ps-13726 (13726) [005] d..2 29484.624466: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55396 shell svc 13722-13723 ( 1007) [005] d..2 29484.624474: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55397              ps-13726 (13726) [005] d..2 29484.624479: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55398          <idle>-0     (-----) [000] d.h3 29484.624481: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55399              ps-13726 (13726) [005] dn.3 29484.624482: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55400              ps-13726 (13726) [005] d..2 29484.624484: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55401          <idle>-0     (-----) [000] dnh4 29484.624487: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55402 shell svc 13722-13723 ( 1007) [005] d..2 29484.624492: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55403          <idle>-0     (-----) [000] d..2 29484.624496: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55404              ps-13726 (13726) [005] d..2 29484.624497: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55405              ps-13726 (13726) [005] dn.3 29484.624499: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55406              ps-13726 (13726) [005] d..2 29484.624502: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55407   kworker/u17:2-23076 (23076) [000] d..2 29484.624503: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55408   kworker/u17:2-23076 (23076) [000] d..3 29484.624509: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55409 shell svc 13722-13723 ( 1007) [005] d..2 29484.624510: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55410              ps-13726 (13726) [005] d..2 29484.624515: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55411              ps-13726 (13726) [005] dn.3 29484.624517: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55412              ps-13726 (13726) [005] d..2 29484.624520: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55413   kworker/u17:2-23076 (23076) [000] d..2 29484.624525: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55414 shell svc 13722-13723 ( 1007) [005] d..2 29484.624527: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55415     kworker/0:0-13450 (13450) [000] d..2 29484.624530: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
55416              ps-13726 (13726) [005] d..2 29484.624533: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55417              ps-13726 (13726) [005] dn.3 29484.624535: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55418              ps-13726 (13726) [005] d..2 29484.624538: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55419     kworker/0:0-13450 (13450) [000] d..3 29484.624538: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
55420 shell svc 13722-13723 ( 1007) [005] d..2 29484.624546: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55421     kworker/0:0-13450 (13450) [000] d..2 29484.624547: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
55422              ps-13726 (13726) [005] d..2 29484.624551: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55423              ps-13726 (13726) [005] dn.3 29484.624554: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55424              ps-13726 (13726) [005] d..2 29484.624556: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55425 shell svc 13722-13723 ( 1007) [005] d..2 29484.624564: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55426            adbd-23485 ( 1007) [000] d..2 29484.624569: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55427              ps-13726 (13726) [005] d..2 29484.624570: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55428              ps-13726 (13726) [005] dn.3 29484.624572: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55429              ps-13726 (13726) [005] d..2 29484.624575: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55430          <idle>-0     (-----) [000] d..1 29484.624579: cpu_idle: state=0 cpu_id=0
55431 shell svc 13722-13723 ( 1007) [005] d..2 29484.624582: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55432              ps-13726 (13726) [005] d..2 29484.624588: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55433              ps-13726 (13726) [005] dn.3 29484.624590: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55434              ps-13726 (13726) [005] d..2 29484.624593: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55435 shell svc 13722-13723 ( 1007) [005] d..2 29484.624600: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55436              ps-13726 (13726) [005] d..2 29484.624605: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55437              ps-13726 (13726) [005] dn.3 29484.624608: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55438              ps-13726 (13726) [005] d..2 29484.624610: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55439 shell svc 13722-13723 ( 1007) [005] d..2 29484.624618: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55440              ps-13726 (13726) [005] d..2 29484.624624: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55441              ps-13726 (13726) [005] dn.3 29484.624627: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55442              ps-13726 (13726) [005] d..2 29484.624629: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55443 shell svc 13722-13723 ( 1007) [005] d..2 29484.624637: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55444              ps-13726 (13726) [005] d..2 29484.624643: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55445              ps-13726 (13726) [005] dn.3 29484.624645: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55446              ps-13726 (13726) [005] d..2 29484.624648: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55447 shell svc 13722-13723 ( 1007) [005] d..2 29484.624656: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55448              ps-13726 (13726) [005] d..2 29484.624661: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55449              ps-13726 (13726) [005] dn.3 29484.624664: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55450              ps-13726 (13726) [005] d..2 29484.624666: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55451 shell svc 13722-13723 ( 1007) [005] d..2 29484.624674: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55452              ps-13726 (13726) [005] d..2 29484.624679: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55453              ps-13726 (13726) [005] dn.3 29484.624681: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55454              ps-13726 (13726) [005] d..2 29484.624684: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55455          <idle>-0     (-----) [000] d.h3 29484.624688: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55456 shell svc 13722-13723 ( 1007) [005] d..2 29484.624692: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55457          <idle>-0     (-----) [000] dnh4 29484.624694: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55458              ps-13726 (13726) [005] d..2 29484.624698: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55459          <idle>-0     (-----) [000] .n.1 29484.624699: cpu_idle: state=4294967295 cpu_id=0
55460              ps-13726 (13726) [005] dn.3 29484.624701: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55461              ps-13726 (13726) [005] d..2 29484.624703: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55462          <idle>-0     (-----) [000] d..2 29484.624705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55463 shell svc 13722-13723 ( 1007) [005] d..2 29484.624711: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55464   kworker/u17:2-23076 (23076) [000] d..2 29484.624713: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55465              ps-13726 (13726) [005] d..2 29484.624716: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55466              ps-13726 (13726) [005] dn.3 29484.624718: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55467   kworker/u17:2-23076 (23076) [000] d..3 29484.624718: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55468              ps-13726 (13726) [005] d..2 29484.624721: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55469 shell svc 13722-13723 ( 1007) [005] d..2 29484.624729: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55470              ps-13726 (13726) [005] d..2 29484.624734: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55471   kworker/u17:2-23076 (23076) [000] d..2 29484.624735: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55472              ps-13726 (13726) [005] dn.3 29484.624737: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55473              ps-13726 (13726) [005] d..2 29484.624739: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55474     kworker/0:0-13450 (13450) [000] d..2 29484.624741: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
55475 shell svc 13722-13723 ( 1007) [005] d..2 29484.624747: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55476     kworker/0:0-13450 (13450) [000] d..3 29484.624750: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
55477              ps-13726 (13726) [005] d..2 29484.624752: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55478              ps-13726 (13726) [005] dn.3 29484.624755: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55479              ps-13726 (13726) [005] d..2 29484.624758: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55480     kworker/0:0-13450 (13450) [000] d..2 29484.624759: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
55481 shell svc 13722-13723 ( 1007) [005] d..2 29484.624765: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55482              ps-13726 (13726) [005] d..2 29484.624770: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55483              ps-13726 (13726) [005] dn.3 29484.624773: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55484            adbd-23484 ( 1007) [000] d..2 29484.624773: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
55485              ps-13726 (13726) [005] d..2 29484.624775: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55486 shell svc 13722-13723 ( 1007) [005] d..2 29484.624783: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55487            adbd-23484 ( 1007) [000] d..3 29484.624784: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
55488              ps-13726 (13726) [005] d..2 29484.624788: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55489              ps-13726 (13726) [005] dn.3 29484.624791: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55490              ps-13726 (13726) [005] d..2 29484.624793: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55491 shell svc 13722-13723 ( 1007) [005] d..2 29484.624801: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55492              ps-13726 (13726) [005] d..2 29484.624807: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55493              ps-13726 (13726) [005] dn.3 29484.624809: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55494              ps-13726 (13726) [005] d..2 29484.624811: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55495 shell svc 13722-13723 ( 1007) [005] d..2 29484.624819: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55496              ps-13726 (13726) [005] d..2 29484.624824: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55497            adbd-23484 ( 1007) [000] d..2 29484.624827: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
55498              ps-13726 (13726) [005] dn.3 29484.624827: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55499              ps-13726 (13726) [005] d..2 29484.624829: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55500 shell svc 13722-13723 ( 1007) [005] d..2 29484.624837: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55501              ps-13726 (13726) [005] d..2 29484.624842: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55502              ps-13726 (13726) [005] dn.3 29484.624844: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55503              ps-13726 (13726) [005] d..2 29484.624847: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55504 shell svc 13722-13723 ( 1007) [005] d..2 29484.624854: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55505              ps-13726 (13726) [005] d..2 29484.624860: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55506              ps-13726 (13726) [005] dn.3 29484.624862: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55507              ps-13726 (13726) [005] d..2 29484.624864: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55508 shell svc 13722-13723 ( 1007) [005] d..2 29484.624872: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55509              ps-13726 (13726) [005] d..2 29484.624877: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55510              ps-13726 (13726) [005] dn.3 29484.624880: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55511              ps-13726 (13726) [005] d..2 29484.624882: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55512 shell svc 13722-13723 ( 1007) [005] d..2 29484.624890: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55513              ps-13726 (13726) [005] d..2 29484.624895: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55514              ps-13726 (13726) [005] dn.3 29484.624898: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55515              ps-13726 (13726) [005] d..2 29484.624900: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55516 shell svc 13722-13723 ( 1007) [005] d..2 29484.624909: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55517              ps-13726 (13726) [005] d..2 29484.624915: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55518              ps-13726 (13726) [005] dn.3 29484.624918: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55519              ps-13726 (13726) [005] d..2 29484.624920: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55520 shell svc 13722-13723 ( 1007) [005] d..2 29484.624928: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55521              ps-13726 (13726) [005] d..2 29484.624933: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55522              ps-13726 (13726) [005] dn.3 29484.624936: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55523              ps-13726 (13726) [005] d..2 29484.624938: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55524 shell svc 13722-13723 ( 1007) [005] d..2 29484.624946: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55525              ps-13726 (13726) [005] d..2 29484.624951: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55526            adbd-1007  ( 1007) [000] d..1 29484.624952: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
55527              ps-13726 (13726) [005] dn.3 29484.624954: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55528              ps-13726 (13726) [005] d..2 29484.624956: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55529 shell svc 13722-13723 ( 1007) [005] d..2 29484.624964: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55530              ps-13726 (13726) [005] d..2 29484.624969: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55531            adbd-1007  ( 1007) [000] d..2 29484.624970: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55532              ps-13726 (13726) [005] dn.3 29484.624972: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55533              ps-13726 (13726) [005] d..2 29484.624974: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55534          <idle>-0     (-----) [001] .n.1 29484.624975: cpu_idle: state=4294967295 cpu_id=1
55535          <idle>-0     (-----) [001] d..2 29484.624980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55536 shell svc 13722-13723 ( 1007) [005] d..2 29484.624982: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55537              ps-13726 (13726) [005] d..2 29484.624987: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55538              ps-13726 (13726) [005] dn.3 29484.624989: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55539              ps-13726 (13726) [005] d..2 29484.624992: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55540 shell svc 13722-13723 ( 1007) [005] d..2 29484.625000: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55541              ps-13726 (13726) [005] d..2 29484.625005: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55542            adbd-1007  ( 1007) [000] d..2 29484.625006: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55543              ps-13726 (13726) [005] dn.3 29484.625007: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55544              ps-13726 (13726) [005] d..2 29484.625010: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55545          <idle>-0     (-----) [000] d..1 29484.625015: cpu_idle: state=0 cpu_id=0
55546 shell svc 13722-13723 ( 1007) [005] d..2 29484.625018: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55547              ps-13726 (13726) [005] d..2 29484.625024: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55548            adbd-23485 ( 1007) [001] d..2 29484.625025: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55549              ps-13726 (13726) [005] dn.3 29484.625026: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55550              ps-13726 (13726) [005] d..2 29484.625029: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55551          <idle>-0     (-----) [001] d..1 29484.625030: cpu_idle: state=0 cpu_id=1
55552 shell svc 13722-13723 ( 1007) [005] d..2 29484.625036: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55553          <idle>-0     (-----) [000] d.h3 29484.625042: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55554              ps-13726 (13726) [005] d..2 29484.625042: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55555              ps-13726 (13726) [005] dn.3 29484.625045: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55556              ps-13726 (13726) [005] d..2 29484.625047: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55557          <idle>-0     (-----) [000] dnh4 29484.625048: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55558          <idle>-0     (-----) [000] .n.1 29484.625054: cpu_idle: state=4294967295 cpu_id=0
55559 shell svc 13722-13723 ( 1007) [005] d..2 29484.625055: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55560              ps-13726 (13726) [005] d..2 29484.625060: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55561          <idle>-0     (-----) [000] d..2 29484.625061: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55562              ps-13726 (13726) [005] dn.3 29484.625063: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55563              ps-13726 (13726) [005] d..2 29484.625065: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55564   kworker/u17:2-23076 (23076) [000] d..2 29484.625070: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55565 shell svc 13722-13723 ( 1007) [005] d..2 29484.625073: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55566   kworker/u17:2-23076 (23076) [000] d..3 29484.625075: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55567              ps-13726 (13726) [005] d..2 29484.625079: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55568              ps-13726 (13726) [005] dn.3 29484.625081: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55569              ps-13726 (13726) [005] d..2 29484.625084: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55570 shell svc 13722-13723 ( 1007) [005] d..2 29484.625091: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55571   kworker/u17:2-23076 (23076) [000] d..2 29484.625093: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55572              ps-13726 (13726) [005] d..2 29484.625097: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55573     kworker/0:0-13450 (13450) [000] d..2 29484.625099: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55574              ps-13726 (13726) [005] dn.3 29484.625099: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55575              ps-13726 (13726) [005] d..2 29484.625102: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55576     kworker/0:0-13450 (13450) [000] d..3 29484.625108: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55577 shell svc 13722-13723 ( 1007) [005] d..2 29484.625110: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55578          <idle>-0     (-----) [001] .n.1 29484.625113: cpu_idle: state=4294967295 cpu_id=1
55579              ps-13726 (13726) [005] d..2 29484.625115: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55580              ps-13726 (13726) [005] dn.3 29484.625118: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55581          <idle>-0     (-----) [001] d..2 29484.625119: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55582              ps-13726 (13726) [005] d..2 29484.625120: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55583     kworker/0:0-13450 (13450) [000] d..2 29484.625122: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55584 shell svc 13722-13723 ( 1007) [005] d..2 29484.625128: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55585          <idle>-0     (-----) [000] d..1 29484.625130: cpu_idle: state=0 cpu_id=0
55586              ps-13726 (13726) [005] d..2 29484.625133: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55587              ps-13726 (13726) [005] dn.3 29484.625136: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55588              ps-13726 (13726) [005] d..2 29484.625138: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55589 shell svc 13722-13723 ( 1007) [005] d..2 29484.625146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55590              ps-13726 (13726) [005] d..2 29484.625151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55591              ps-13726 (13726) [005] dn.3 29484.625154: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55592              ps-13726 (13726) [005] d..2 29484.625156: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55593 shell svc 13722-13723 ( 1007) [005] d..2 29484.625164: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55594            adbd-23485 ( 1007) [001] d..2 29484.625166: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55595              ps-13726 (13726) [005] d..2 29484.625169: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55596          <idle>-0     (-----) [001] d..1 29484.625171: cpu_idle: state=0 cpu_id=1
55597              ps-13726 (13726) [005] dn.3 29484.625172: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55598              ps-13726 (13726) [005] d..2 29484.625174: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55599 shell svc 13722-13723 ( 1007) [005] d..2 29484.625182: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55600              ps-13726 (13726) [005] d..2 29484.625189: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55601              ps-13726 (13726) [005] dn.3 29484.625191: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55602              ps-13726 (13726) [005] d..2 29484.625194: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55603 shell svc 13722-13723 ( 1007) [005] d..2 29484.625202: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55604              ps-13726 (13726) [005] d..2 29484.625207: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55605              ps-13726 (13726) [005] dn.3 29484.625209: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55606              ps-13726 (13726) [005] d..2 29484.625212: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55607 shell svc 13722-13723 ( 1007) [005] d..2 29484.625220: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55608              ps-13726 (13726) [005] d..2 29484.625226: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55609              ps-13726 (13726) [005] dn.3 29484.625228: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55610              ps-13726 (13726) [005] d..2 29484.625230: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55611          <idle>-0     (-----) [000] d.h3 29484.625237: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55612 shell svc 13722-13723 ( 1007) [005] d..2 29484.625238: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55613          <idle>-0     (-----) [000] dnh4 29484.625243: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55614              ps-13726 (13726) [005] d..2 29484.625243: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55615              ps-13726 (13726) [005] dn.3 29484.625246: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55616          <idle>-0     (-----) [000] .n.1 29484.625248: cpu_idle: state=4294967295 cpu_id=0
55617              ps-13726 (13726) [005] d..2 29484.625248: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55618          <idle>-0     (-----) [000] d..2 29484.625254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55619 shell svc 13722-13723 ( 1007) [005] d..2 29484.625256: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55620              ps-13726 (13726) [005] d..2 29484.625261: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55621   kworker/u17:2-23076 (23076) [000] d..2 29484.625262: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55622              ps-13726 (13726) [005] dn.3 29484.625263: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55623              ps-13726 (13726) [005] d..2 29484.625266: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55624   kworker/u17:2-23076 (23076) [000] d..3 29484.625267: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55625 shell svc 13722-13723 ( 1007) [005] d..2 29484.625274: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55626              ps-13726 (13726) [005] d..2 29484.625280: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55627              ps-13726 (13726) [005] dn.3 29484.625283: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55628   kworker/u17:2-23076 (23076) [000] d..2 29484.625284: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55629              ps-13726 (13726) [005] d..2 29484.625285: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55630     kworker/0:0-13450 (13450) [000] d..2 29484.625289: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55631 shell svc 13722-13723 ( 1007) [005] d..2 29484.625293: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55632     kworker/0:0-13450 (13450) [000] d..3 29484.625298: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55633              ps-13726 (13726) [005] d..2 29484.625299: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55634              ps-13726 (13726) [005] dn.3 29484.625301: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55635          <idle>-0     (-----) [001] .n.1 29484.625303: cpu_idle: state=4294967295 cpu_id=1
55636              ps-13726 (13726) [005] d..2 29484.625304: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55637          <idle>-0     (-----) [001] d..2 29484.625308: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55638     kworker/0:0-13450 (13450) [000] d..2 29484.625311: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55639 shell svc 13722-13723 ( 1007) [005] d..2 29484.625312: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55640              ps-13726 (13726) [005] d..2 29484.625317: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55641          <idle>-0     (-----) [000] d..1 29484.625318: cpu_idle: state=0 cpu_id=0
55642              ps-13726 (13726) [005] dn.3 29484.625319: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55643              ps-13726 (13726) [005] d..2 29484.625322: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55644            adbd-23485 ( 1007) [001] d..2 29484.625324: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55645          <idle>-0     (-----) [001] d..1 29484.625329: cpu_idle: state=0 cpu_id=1
55646 shell svc 13722-13723 ( 1007) [005] d..2 29484.625329: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55647              ps-13726 (13726) [005] d..2 29484.625335: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55648              ps-13726 (13726) [005] dn.3 29484.625338: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55649              ps-13726 (13726) [005] d..2 29484.625341: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55650 shell svc 13722-13723 ( 1007) [005] d..2 29484.625349: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55651              ps-13726 (13726) [005] d..2 29484.625356: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55652              ps-13726 (13726) [005] dn.3 29484.625358: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55653              ps-13726 (13726) [005] d..2 29484.625360: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55654 shell svc 13722-13723 ( 1007) [005] d..2 29484.625368: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55655              ps-13726 (13726) [005] d..2 29484.625374: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55656              ps-13726 (13726) [005] dn.3 29484.625377: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55657              ps-13726 (13726) [005] d..2 29484.625379: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55658 shell svc 13722-13723 ( 1007) [005] d..2 29484.625387: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55659              ps-13726 (13726) [005] d..2 29484.625393: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55660              ps-13726 (13726) [005] dn.3 29484.625396: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55661              ps-13726 (13726) [005] d..2 29484.625398: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55662 shell svc 13722-13723 ( 1007) [005] d..2 29484.625406: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55663              ps-13726 (13726) [005] d..2 29484.625412: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55664              ps-13726 (13726) [005] dn.3 29484.625414: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55665              ps-13726 (13726) [005] d..2 29484.625417: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55666 shell svc 13722-13723 ( 1007) [005] d..2 29484.625424: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55667              ps-13726 (13726) [005] d..2 29484.625430: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55668              ps-13726 (13726) [005] dn.3 29484.625433: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55669              ps-13726 (13726) [005] d..2 29484.625435: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55670 shell svc 13722-13723 ( 1007) [005] d..2 29484.625443: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55671              ps-13726 (13726) [005] d..2 29484.625448: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55672              ps-13726 (13726) [005] dn.3 29484.625451: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55673              ps-13726 (13726) [005] d..2 29484.625453: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55674          <idle>-0     (-----) [000] d.h3 29484.625460: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55675 shell svc 13722-13723 ( 1007) [005] d..2 29484.625461: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55676          <idle>-0     (-----) [000] dnh4 29484.625466: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55677              ps-13726 (13726) [005] d..2 29484.625467: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55678              ps-13726 (13726) [005] dn.3 29484.625470: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55679          <idle>-0     (-----) [000] .n.1 29484.625470: cpu_idle: state=4294967295 cpu_id=0
55680              ps-13726 (13726) [005] d..2 29484.625473: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55681          <idle>-0     (-----) [000] d..2 29484.625476: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55682 shell svc 13722-13723 ( 1007) [005] d..2 29484.625481: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55683   kworker/u17:2-23076 (23076) [000] d..2 29484.625484: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55684              ps-13726 (13726) [005] d..2 29484.625486: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55685   kworker/u17:2-23076 (23076) [000] d..3 29484.625489: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55686              ps-13726 (13726) [005] dn.3 29484.625489: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55687              ps-13726 (13726) [005] d..2 29484.625491: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55688 shell svc 13722-13723 ( 1007) [005] d..2 29484.625499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55689   kworker/u17:2-23076 (23076) [000] d..2 29484.625504: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55690              ps-13726 (13726) [005] d..2 29484.625505: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55691              ps-13726 (13726) [005] dn.3 29484.625508: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55692              ps-13726 (13726) [005] d..2 29484.625510: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55693     kworker/0:0-13450 (13450) [000] d..2 29484.625510: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
55694 shell svc 13722-13723 ( 1007) [005] d..2 29484.625518: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55695     kworker/0:0-13450 (13450) [000] d..3 29484.625519: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
55696              ps-13726 (13726) [005] d..2 29484.625524: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55697              ps-13726 (13726) [005] dn.3 29484.625527: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55698     kworker/0:0-13450 (13450) [000] d..2 29484.625528: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
55699              ps-13726 (13726) [005] d..2 29484.625529: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55700 shell svc 13722-13723 ( 1007) [005] d..2 29484.625537: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55701            adbd-23484 ( 1007) [000] d..2 29484.625538: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
55702              ps-13726 (13726) [005] d..2 29484.625543: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55703            adbd-23484 ( 1007) [000] d..3 29484.625544: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
55704              ps-13726 (13726) [005] dn.3 29484.625546: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55705              ps-13726 (13726) [005] d..2 29484.625548: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55706 shell svc 13722-13723 ( 1007) [005] d..2 29484.625556: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55707              ps-13726 (13726) [005] d..2 29484.625560: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55708              ps-13726 (13726) [005] dn.3 29484.625563: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55709              ps-13726 (13726) [005] d..2 29484.625565: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55710 shell svc 13722-13723 ( 1007) [005] d..2 29484.625573: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55711              ps-13726 (13726) [005] d..2 29484.625579: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55712              ps-13726 (13726) [005] dn.3 29484.625581: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55713              ps-13726 (13726) [005] d..2 29484.625584: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55714            adbd-23484 ( 1007) [000] d..2 29484.625588: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
55715 shell svc 13722-13723 ( 1007) [005] d..2 29484.625592: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55716              ps-13726 (13726) [005] d..2 29484.625597: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55717              ps-13726 (13726) [005] dn.3 29484.625600: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55718              ps-13726 (13726) [005] d..2 29484.625602: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55719 shell svc 13722-13723 ( 1007) [005] d..2 29484.625610: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55720              ps-13726 (13726) [005] d..2 29484.625615: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55721              ps-13726 (13726) [005] dn.3 29484.625617: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55722              ps-13726 (13726) [005] d..2 29484.625620: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55723 shell svc 13722-13723 ( 1007) [005] d..2 29484.625628: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55724              ps-13726 (13726) [005] d..2 29484.625633: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55725              ps-13726 (13726) [005] dn.3 29484.625635: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55726              ps-13726 (13726) [005] d..2 29484.625637: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55727 shell svc 13722-13723 ( 1007) [005] d..2 29484.625645: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55728              ps-13726 (13726) [005] d..2 29484.625651: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55729              ps-13726 (13726) [005] dn.3 29484.625654: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55730              ps-13726 (13726) [005] d..2 29484.625656: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55731 shell svc 13722-13723 ( 1007) [005] d..2 29484.625664: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55732              ps-13726 (13726) [005] d..2 29484.625670: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55733              ps-13726 (13726) [005] dn.3 29484.625672: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55734              ps-13726 (13726) [005] d..2 29484.625676: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55735 shell svc 13722-13723 ( 1007) [005] d..2 29484.625684: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55736              ps-13726 (13726) [005] d..2 29484.625689: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55737              ps-13726 (13726) [005] dn.3 29484.625691: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55738            adbd-1007  ( 1007) [000] d..1 29484.625693: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55739              ps-13726 (13726) [005] d..2 29484.625694: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55740 shell svc 13722-13723 ( 1007) [005] d..2 29484.625702: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55741            adbd-1007  ( 1007) [000] d..2 29484.625704: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55742              ps-13726 (13726) [005] d..2 29484.625707: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55743          <idle>-0     (-----) [001] .n.1 29484.625709: cpu_idle: state=4294967295 cpu_id=1
55744              ps-13726 (13726) [005] dn.3 29484.625710: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55745              ps-13726 (13726) [005] d..2 29484.625712: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55746          <idle>-0     (-----) [001] d..2 29484.625714: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55747 shell svc 13722-13723 ( 1007) [005] d..2 29484.625720: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55748              ps-13726 (13726) [005] d..2 29484.625725: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55749              ps-13726 (13726) [005] dn.3 29484.625727: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55750              ps-13726 (13726) [005] d..2 29484.625730: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55751 shell svc 13722-13723 ( 1007) [005] d..2 29484.625738: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55752            adbd-1007  ( 1007) [000] d..2 29484.625738: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55753              ps-13726 (13726) [005] d..2 29484.625743: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55754              ps-13726 (13726) [005] dn.3 29484.625746: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55755          <idle>-0     (-----) [000] d..1 29484.625747: cpu_idle: state=0 cpu_id=0
55756              ps-13726 (13726) [005] d..2 29484.625748: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55757 shell svc 13722-13723 ( 1007) [005] d..2 29484.625756: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55758            adbd-23485 ( 1007) [001] d..2 29484.625758: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55759              ps-13726 (13726) [005] d..2 29484.625761: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55760          <idle>-0     (-----) [001] d..1 29484.625763: cpu_idle: state=0 cpu_id=1
55761              ps-13726 (13726) [005] dn.3 29484.625763: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55762              ps-13726 (13726) [005] d..2 29484.625766: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55763          <idle>-0     (-----) [000] d.h3 29484.625771: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55764 shell svc 13722-13723 ( 1007) [005] d..2 29484.625773: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55765          <idle>-0     (-----) [000] dnh4 29484.625778: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55766              ps-13726 (13726) [005] d..2 29484.625779: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55767              ps-13726 (13726) [005] dn.3 29484.625781: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55768              ps-13726 (13726) [005] d..2 29484.625784: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55769          <idle>-0     (-----) [000] .n.1 29484.625784: cpu_idle: state=4294967295 cpu_id=0
55770 shell svc 13722-13723 ( 1007) [005] d..2 29484.625791: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55771          <idle>-0     (-----) [000] d..2 29484.625791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55772              ps-13726 (13726) [005] d..2 29484.625796: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55773              ps-13726 (13726) [005] dn.3 29484.625799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55774   kworker/u17:2-23076 (23076) [000] d..2 29484.625800: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55775              ps-13726 (13726) [005] d..2 29484.625801: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55776   kworker/u17:2-23076 (23076) [000] d..3 29484.625805: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55777 shell svc 13722-13723 ( 1007) [005] d..2 29484.625809: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55778              ps-13726 (13726) [005] d..2 29484.625814: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55779              ps-13726 (13726) [005] dn.3 29484.625817: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55780              ps-13726 (13726) [005] d..2 29484.625819: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55781   kworker/u17:2-23076 (23076) [000] d..2 29484.625822: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55782 shell svc 13722-13723 ( 1007) [005] d..2 29484.625827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55783     kworker/0:0-13450 (13450) [000] d..2 29484.625828: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55784              ps-13726 (13726) [005] d..2 29484.625831: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55785              ps-13726 (13726) [005] dn.3 29484.625834: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55786              ps-13726 (13726) [005] d..2 29484.625836: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55787     kworker/0:0-13450 (13450) [000] d..3 29484.625837: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55788          <idle>-0     (-----) [001] .n.1 29484.625842: cpu_idle: state=4294967295 cpu_id=1
55789 shell svc 13722-13723 ( 1007) [005] d..2 29484.625844: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55790          <idle>-0     (-----) [001] d..2 29484.625847: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55791              ps-13726 (13726) [005] d..2 29484.625849: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55792     kworker/0:0-13450 (13450) [000] d..2 29484.625851: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55793              ps-13726 (13726) [005] dn.3 29484.625852: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55794              ps-13726 (13726) [005] d..2 29484.625855: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55795          <idle>-0     (-----) [000] d..1 29484.625859: cpu_idle: state=0 cpu_id=0
55796 shell svc 13722-13723 ( 1007) [005] d..2 29484.625862: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55797              ps-13726 (13726) [005] d..2 29484.625867: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55798              ps-13726 (13726) [005] dn.3 29484.625870: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55799              ps-13726 (13726) [005] d..2 29484.625872: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55800 shell svc 13722-13723 ( 1007) [005] d..2 29484.625880: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55801              ps-13726 (13726) [005] d..2 29484.625884: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55802              ps-13726 (13726) [005] dn.3 29484.625887: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55803              ps-13726 (13726) [005] d..2 29484.625889: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55804            adbd-23485 ( 1007) [001] d..2 29484.625893: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55805 shell svc 13722-13723 ( 1007) [005] d..2 29484.625897: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55806          <idle>-0     (-----) [001] d..1 29484.625898: cpu_idle: state=0 cpu_id=1
55807              ps-13726 (13726) [005] d..2 29484.625902: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55808              ps-13726 (13726) [005] dn.3 29484.625904: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55809              ps-13726 (13726) [005] d..2 29484.625907: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55810 shell svc 13722-13723 ( 1007) [005] d..2 29484.625915: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55811              ps-13726 (13726) [005] d..2 29484.625921: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55812              ps-13726 (13726) [005] dn.3 29484.625924: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55813              ps-13726 (13726) [005] d..2 29484.625926: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55814 shell svc 13722-13723 ( 1007) [005] d..2 29484.625934: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55815              ps-13726 (13726) [005] d..2 29484.625940: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55816              ps-13726 (13726) [005] dn.3 29484.625943: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55817              ps-13726 (13726) [005] d..2 29484.625945: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55818          <idle>-0     (-----) [000] d.h3 29484.625947: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55819 shell svc 13722-13723 ( 1007) [005] d..2 29484.625953: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55820          <idle>-0     (-----) [000] dnh4 29484.625953: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55821          <idle>-0     (-----) [000] .n.1 29484.625958: cpu_idle: state=4294967295 cpu_id=0
55822              ps-13726 (13726) [005] d..2 29484.625959: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55823              ps-13726 (13726) [005] dn.3 29484.625961: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55824          <idle>-0     (-----) [000] d..2 29484.625964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55825              ps-13726 (13726) [005] d..2 29484.625964: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55826   kworker/u17:2-23076 (23076) [000] d..2 29484.625971: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55827 shell svc 13722-13723 ( 1007) [005] d..2 29484.625972: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55828   kworker/u17:2-23076 (23076) [000] d..3 29484.625976: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55829              ps-13726 (13726) [005] d..2 29484.625978: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55830              ps-13726 (13726) [005] dn.3 29484.625980: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55831              ps-13726 (13726) [005] d..2 29484.625983: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55832 shell svc 13722-13723 ( 1007) [005] d..2 29484.625990: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55833   kworker/u17:2-23076 (23076) [000] d..2 29484.625992: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55834              ps-13726 (13726) [005] d..2 29484.625997: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55835     kworker/0:0-13450 (13450) [000] d..2 29484.625998: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55836              ps-13726 (13726) [005] dn.3 29484.626000: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55837              ps-13726 (13726) [005] d..2 29484.626003: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55838     kworker/0:0-13450 (13450) [000] d..3 29484.626007: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55839 shell svc 13722-13723 ( 1007) [005] d..2 29484.626011: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55840          <idle>-0     (-----) [001] .n.1 29484.626011: cpu_idle: state=4294967295 cpu_id=1
55841              ps-13726 (13726) [005] d..2 29484.626016: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55842          <idle>-0     (-----) [001] d..2 29484.626017: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55843              ps-13726 (13726) [005] dn.3 29484.626019: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55844     kworker/0:0-13450 (13450) [000] d..2 29484.626020: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55845              ps-13726 (13726) [005] d..2 29484.626021: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55846          <idle>-0     (-----) [000] d..1 29484.626027: cpu_idle: state=0 cpu_id=0
55847 shell svc 13722-13723 ( 1007) [005] d..2 29484.626029: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55848            adbd-23485 ( 1007) [001] d..2 29484.626032: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55849              ps-13726 (13726) [005] d..2 29484.626035: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55850          <idle>-0     (-----) [001] d..1 29484.626036: cpu_idle: state=0 cpu_id=1
55851              ps-13726 (13726) [005] dn.3 29484.626038: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55852              ps-13726 (13726) [005] d..2 29484.626041: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55853 shell svc 13722-13723 ( 1007) [005] d..2 29484.626049: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55854              ps-13726 (13726) [005] d..2 29484.626055: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55855              ps-13726 (13726) [005] dn.3 29484.626058: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55856              ps-13726 (13726) [005] d..2 29484.626061: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55857 shell svc 13722-13723 ( 1007) [005] d..2 29484.626069: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55858              ps-13726 (13726) [005] d..2 29484.626075: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55859              ps-13726 (13726) [005] dn.3 29484.626077: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55860              ps-13726 (13726) [005] d..2 29484.626080: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55861 shell svc 13722-13723 ( 1007) [005] d..2 29484.626088: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55862              ps-13726 (13726) [005] d..2 29484.626094: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55863              ps-13726 (13726) [005] dn.3 29484.626097: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55864              ps-13726 (13726) [005] d..2 29484.626099: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55865 shell svc 13722-13723 ( 1007) [005] d..2 29484.626107: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55866          <idle>-0     (-----) [000] d.h3 29484.626144: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55867          <idle>-0     (-----) [000] dnh4 29484.626150: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55868          <idle>-0     (-----) [000] .n.1 29484.626155: cpu_idle: state=4294967295 cpu_id=0
55869          <idle>-0     (-----) [000] d..2 29484.626161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55870   kworker/u17:2-23076 (23076) [000] d..2 29484.626167: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55871   kworker/u17:2-23076 (23076) [000] d..3 29484.626172: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55872   kworker/u17:2-23076 (23076) [000] d..2 29484.626188: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55873     kworker/0:0-13450 (13450) [000] d..2 29484.626194: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
55874     kworker/0:0-13450 (13450) [000] d..3 29484.626203: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
55875     kworker/0:0-13450 (13450) [000] d..2 29484.626211: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
55876            adbd-23484 ( 1007) [000] d..2 29484.626222: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
55877            adbd-23484 ( 1007) [000] d..3 29484.626227: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
55878            adbd-23484 ( 1007) [000] d..2 29484.626271: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
55879            adbd-1007  ( 1007) [000] d..1 29484.626352: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55880            adbd-1007  ( 1007) [000] d..2 29484.626364: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55881          <idle>-0     (-----) [001] .n.1 29484.626368: cpu_idle: state=4294967295 cpu_id=1
55882          <idle>-0     (-----) [001] d..2 29484.626373: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55883            adbd-1007  ( 1007) [000] d..2 29484.626397: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55884          <idle>-0     (-----) [000] d..1 29484.626406: cpu_idle: state=0 cpu_id=0
55885            adbd-23485 ( 1007) [001] d..2 29484.626417: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55886          <idle>-0     (-----) [001] d..1 29484.626422: cpu_idle: state=0 cpu_id=1
55887              ps-13726 (13726) [005] d..2 29484.626436: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55888          <idle>-0     (-----) [000] d.h3 29484.626436: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55889              ps-13726 (13726) [005] dn.3 29484.626440: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55890              ps-13726 (13726) [005] d..2 29484.626444: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55891          <idle>-0     (-----) [000] dnh4 29484.626446: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55892          <idle>-0     (-----) [000] .n.1 29484.626452: cpu_idle: state=4294967295 cpu_id=0
55893 shell svc 13722-13723 ( 1007) [005] d..2 29484.626456: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55894          <idle>-0     (-----) [000] d..2 29484.626459: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55895              ps-13726 (13726) [005] d..2 29484.626462: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55896              ps-13726 (13726) [005] dn.3 29484.626465: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55897   kworker/u17:2-23076 (23076) [000] d..2 29484.626467: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55898              ps-13726 (13726) [005] d..2 29484.626467: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55899   kworker/u17:2-23076 (23076) [000] d..3 29484.626473: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55900 shell svc 13722-13723 ( 1007) [005] d..2 29484.626476: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55901              ps-13726 (13726) [005] d..2 29484.626481: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55902              ps-13726 (13726) [005] dn.3 29484.626484: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55903              ps-13726 (13726) [005] d..2 29484.626486: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55904   kworker/u17:2-23076 (23076) [000] d..2 29484.626490: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55905 shell svc 13722-13723 ( 1007) [005] d..2 29484.626494: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55906     kworker/0:0-13450 (13450) [000] d..2 29484.626495: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55907              ps-13726 (13726) [005] d..2 29484.626501: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55908              ps-13726 (13726) [005] dn.3 29484.626503: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55909              ps-13726 (13726) [005] d..2 29484.626506: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55910     kworker/0:0-13450 (13450) [000] d..3 29484.626506: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55911          <idle>-0     (-----) [001] .n.1 29484.626511: cpu_idle: state=4294967295 cpu_id=1
55912 shell svc 13722-13723 ( 1007) [005] d..2 29484.626514: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55913          <idle>-0     (-----) [001] d..2 29484.626516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55914              ps-13726 (13726) [005] d..2 29484.626520: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55915     kworker/0:0-13450 (13450) [000] d..2 29484.626520: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55916              ps-13726 (13726) [005] dn.3 29484.626522: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55917              ps-13726 (13726) [005] d..2 29484.626525: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55918          <idle>-0     (-----) [000] d..1 29484.626527: cpu_idle: state=0 cpu_id=0
55919 shell svc 13722-13723 ( 1007) [005] d..2 29484.626532: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55920              ps-13726 (13726) [005] d..2 29484.626537: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55921              ps-13726 (13726) [005] dn.3 29484.626540: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55922              ps-13726 (13726) [005] d..2 29484.626542: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55923 shell svc 13722-13723 ( 1007) [005] d..2 29484.626550: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55924              ps-13726 (13726) [005] d..2 29484.626555: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55925              ps-13726 (13726) [005] dn.3 29484.626558: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55926              ps-13726 (13726) [005] d..2 29484.626560: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55927 shell svc 13722-13723 ( 1007) [005] d..2 29484.626568: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55928            adbd-23485 ( 1007) [001] d..2 29484.626570: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55929              ps-13726 (13726) [005] d..2 29484.626574: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55930              ps-13726 (13726) [005] dn.3 29484.626577: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55931          <idle>-0     (-----) [001] d..1 29484.626578: cpu_idle: state=0 cpu_id=1
55932              ps-13726 (13726) [005] d..2 29484.626579: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55933 shell svc 13722-13723 ( 1007) [005] d..2 29484.626587: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55934              ps-13726 (13726) [005] d..2 29484.626593: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55935              ps-13726 (13726) [005] dn.3 29484.626596: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55936              ps-13726 (13726) [005] d..2 29484.626598: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55937 shell svc 13722-13723 ( 1007) [005] d..2 29484.626606: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55938              ps-13726 (13726) [005] d..2 29484.626612: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55939              ps-13726 (13726) [005] dn.3 29484.626615: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
55940              ps-13726 (13726) [005] d..2 29484.626617: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
55941          <idle>-0     (-----) [000] d.h3 29484.626620: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55942 shell svc 13722-13723 ( 1007) [005] d..2 29484.626625: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
55943          <idle>-0     (-----) [000] dnh4 29484.626626: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55944          <idle>-0     (-----) [000] .n.1 29484.626631: cpu_idle: state=4294967295 cpu_id=0
55945          <idle>-0     (-----) [000] d..2 29484.626637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55946   kworker/u17:2-23076 (23076) [000] d..2 29484.626644: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55947   kworker/u17:2-23076 (23076) [000] d..3 29484.626649: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55948   kworker/u17:2-23076 (23076) [000] d..2 29484.626664: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55949     kworker/0:0-13450 (13450) [000] d..2 29484.626669: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55950     kworker/0:0-13450 (13450) [000] d..3 29484.626678: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55951          <idle>-0     (-----) [001] .n.1 29484.626683: cpu_idle: state=4294967295 cpu_id=1
55952          <idle>-0     (-----) [001] d..2 29484.626688: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55953     kworker/0:0-13450 (13450) [000] d..2 29484.626691: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55954          <idle>-0     (-----) [000] d..1 29484.626698: cpu_idle: state=0 cpu_id=0
55955            adbd-23485 ( 1007) [001] d..2 29484.626705: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55956          <idle>-0     (-----) [001] d..1 29484.626710: cpu_idle: state=0 cpu_id=1
55957          <idle>-0     (-----) [000] d.h3 29484.626840: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55958          <idle>-0     (-----) [000] dnh4 29484.626845: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55959          <idle>-0     (-----) [000] .n.1 29484.626850: cpu_idle: state=4294967295 cpu_id=0
55960          <idle>-0     (-----) [000] d..2 29484.626856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55961   kworker/u17:2-23076 (23076) [000] d..2 29484.626862: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55962   kworker/u17:2-23076 (23076) [000] d..3 29484.626867: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55963   kworker/u17:2-23076 (23076) [000] d..2 29484.626883: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55964     kworker/0:0-13450 (13450) [000] d..2 29484.626889: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
55965     kworker/0:0-13450 (13450) [000] d..3 29484.626898: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
55966     kworker/0:0-13450 (13450) [000] d..2 29484.626906: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
55967            adbd-23484 ( 1007) [000] d..2 29484.626917: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
55968            adbd-23484 ( 1007) [000] d..3 29484.626923: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
55969            adbd-23484 ( 1007) [000] d..2 29484.626966: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
55970            adbd-1007  ( 1007) [000] d..1 29484.627033: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55971            adbd-1007  ( 1007) [000] d..2 29484.627044: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55972          <idle>-0     (-----) [001] .n.1 29484.627049: cpu_idle: state=4294967295 cpu_id=1
55973          <idle>-0     (-----) [001] d..2 29484.627054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55974            adbd-23485 ( 1007) [001] d.s3 29484.627071: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
55975            adbd-23485 ( 1007) [001] d.s4 29484.627098: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
55976            adbd-1007  ( 1007) [000] d..2 29484.627109: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
55977     rcu_preempt-7     (    7) [000] d..2 29484.627129: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55978          <idle>-0     (-----) [000] d..1 29484.627137: cpu_idle: state=0 cpu_id=0
55979            adbd-23485 ( 1007) [001] d..2 29484.627152: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55980          <idle>-0     (-----) [001] d..1 29484.627161: cpu_idle: state=0 cpu_id=1
55981          <idle>-0     (-----) [000] d.h3 29484.627168: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55982          <idle>-0     (-----) [000] dnh4 29484.627175: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55983          <idle>-0     (-----) [000] .n.1 29484.627180: cpu_idle: state=4294967295 cpu_id=0
55984          <idle>-0     (-----) [000] d..2 29484.627187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
55985   kworker/u17:2-23076 (23076) [000] d..2 29484.627195: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55986   kworker/u17:2-23076 (23076) [000] d..3 29484.627200: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
55987   kworker/u17:2-23076 (23076) [000] d..2 29484.627217: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
55988     kworker/0:0-13450 (13450) [000] d..2 29484.627223: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
55989     kworker/0:0-13450 (13450) [000] d..3 29484.627232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
55990          <idle>-0     (-----) [001] .n.1 29484.627237: cpu_idle: state=4294967295 cpu_id=1
55991          <idle>-0     (-----) [001] d..2 29484.627244: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
55992     kworker/0:0-13450 (13450) [000] d..2 29484.627246: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55993          <idle>-0     (-----) [000] d..1 29484.627253: cpu_idle: state=0 cpu_id=0
55994            adbd-23485 ( 1007) [001] d..2 29484.627288: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55995          <idle>-0     (-----) [001] d..1 29484.627296: cpu_idle: state=0 cpu_id=1
55996          <idle>-0     (-----) [000] d.h3 29484.627317: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55997          <idle>-0     (-----) [000] dnh4 29484.627323: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
55998          <idle>-0     (-----) [000] .n.1 29484.627327: cpu_idle: state=4294967295 cpu_id=0
55999          <idle>-0     (-----) [000] d..2 29484.627334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56000   kworker/u17:2-23076 (23076) [000] d..2 29484.627341: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56001   kworker/u17:2-23076 (23076) [000] d..3 29484.627346: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56002   kworker/u17:2-23076 (23076) [000] d..2 29484.627362: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56003     kworker/0:0-13450 (13450) [000] d..2 29484.627368: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56004     kworker/0:0-13450 (13450) [000] d..3 29484.627376: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56005          <idle>-0     (-----) [001] .n.1 29484.627382: cpu_idle: state=4294967295 cpu_id=1
56006          <idle>-0     (-----) [001] d..2 29484.627388: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56007     kworker/0:0-13450 (13450) [000] d..2 29484.627390: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56008          <idle>-0     (-----) [000] d..1 29484.627396: cpu_idle: state=0 cpu_id=0
56009            adbd-23485 ( 1007) [001] d..2 29484.627404: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56010          <idle>-0     (-----) [001] d..1 29484.627411: cpu_idle: state=0 cpu_id=1
56011          <idle>-0     (-----) [000] d.h3 29484.627503: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56012          <idle>-0     (-----) [000] dnh4 29484.627508: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56013          <idle>-0     (-----) [000] .n.1 29484.627512: cpu_idle: state=4294967295 cpu_id=0
56014          <idle>-0     (-----) [000] d..2 29484.627519: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56015   kworker/u17:2-23076 (23076) [000] d..2 29484.627525: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56016   kworker/u17:2-23076 (23076) [000] d..3 29484.627530: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56017   kworker/u17:2-23076 (23076) [000] d..2 29484.627547: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56018     kworker/0:0-13450 (13450) [000] d..2 29484.627552: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56019     kworker/0:0-13450 (13450) [000] d..3 29484.627561: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56020     kworker/0:0-13450 (13450) [000] d..2 29484.627570: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56021            adbd-23484 ( 1007) [000] d..2 29484.627581: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56022            adbd-23484 ( 1007) [000] d..3 29484.627587: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56023            adbd-23484 ( 1007) [000] d..2 29484.627632: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56024            adbd-1007  ( 1007) [000] d..2 29484.627692: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56025          <idle>-0     (-----) [000] d..1 29484.627701: cpu_idle: state=0 cpu_id=0
56026              ps-13726 (13726) [005] d..2 29484.628148: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56027              ps-13726 (13726) [005] dn.3 29484.628153: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56028              ps-13726 (13726) [005] d..2 29484.628156: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56029 shell svc 13722-13723 ( 1007) [005] d..2 29484.628165: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56030 shell svc 13722-13723 ( 1007) [005] d..2 29484.628177: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56031          <idle>-0     (-----) [000] dnh2 29484.628181: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56032              ps-13726 (13726) [005] d..2 29484.628184: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56033          <idle>-0     (-----) [000] .n.1 29484.628186: cpu_idle: state=4294967295 cpu_id=0
56034              ps-13726 (13726) [005] dn.3 29484.628187: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56035              ps-13726 (13726) [005] d..2 29484.628190: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56036          <idle>-0     (-----) [000] d..2 29484.628192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
56037 shell svc 13722-13723 ( 1007) [005] d..2 29484.628199: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56038              ps-13726 (13726) [005] d..2 29484.628205: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56039              ps-13726 (13726) [005] dn.3 29484.628208: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56040              ps-13726 (13726) [005] d..2 29484.628211: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56041 shell svc 13722-13723 ( 1007) [005] d..2 29484.628219: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56042              ps-13726 (13726) [005] d..2 29484.628225: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56043            adbd-1007  ( 1007) [000] d..1 29484.628228: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56044              ps-13726 (13726) [005] dn.3 29484.628228: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56045              ps-13726 (13726) [005] d..2 29484.628230: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56046 shell svc 13722-13723 ( 1007) [005] d..2 29484.628238: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56047            adbd-1007  ( 1007) [000] d..2 29484.628239: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56048              ps-13726 (13726) [005] d..2 29484.628243: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56049          <idle>-0     (-----) [001] .n.1 29484.628244: cpu_idle: state=4294967295 cpu_id=1
56050              ps-13726 (13726) [005] dn.3 29484.628246: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56051              ps-13726 (13726) [005] d..2 29484.628248: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56052          <idle>-0     (-----) [001] d..2 29484.628250: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56053 shell svc 13722-13723 ( 1007) [005] d..2 29484.628256: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56054              ps-13726 (13726) [005] d..2 29484.628261: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56055              ps-13726 (13726) [005] dn.3 29484.628264: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56056              ps-13726 (13726) [005] d..2 29484.628266: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56057            adbd-1007  ( 1007) [000] d..2 29484.628273: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56058 shell svc 13722-13723 ( 1007) [005] d..2 29484.628274: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56059              ps-13726 (13726) [005] d..2 29484.628279: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56060          <idle>-0     (-----) [000] d..1 29484.628280: cpu_idle: state=0 cpu_id=0
56061              ps-13726 (13726) [005] dn.3 29484.628281: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56062              ps-13726 (13726) [005] d..2 29484.628284: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56063 shell svc 13722-13723 ( 1007) [005] d..2 29484.628291: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56064            adbd-23485 ( 1007) [001] d..2 29484.628295: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56065              ps-13726 (13726) [005] d..2 29484.628297: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56066              ps-13726 (13726) [005] dn.3 29484.628300: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56067              ps-13726 (13726) [005] d..2 29484.628302: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56068          <idle>-0     (-----) [001] d..1 29484.628303: cpu_idle: state=0 cpu_id=1
56069          <idle>-0     (-----) [000] d.h3 29484.628309: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56070 shell svc 13722-13723 ( 1007) [005] d..2 29484.628309: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56071              ps-13726 (13726) [005] d..2 29484.628315: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56072          <idle>-0     (-----) [000] dnh4 29484.628315: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56073              ps-13726 (13726) [005] dn.3 29484.628317: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56074              ps-13726 (13726) [005] d..2 29484.628320: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56075          <idle>-0     (-----) [000] .n.1 29484.628320: cpu_idle: state=4294967295 cpu_id=0
56076          <idle>-0     (-----) [000] d..2 29484.628327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56077 shell svc 13722-13723 ( 1007) [005] d..2 29484.628328: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56078              ps-13726 (13726) [005] d..2 29484.628333: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56079   kworker/u17:2-23076 (23076) [000] d..2 29484.628335: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56080              ps-13726 (13726) [005] dn.3 29484.628336: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56081              ps-13726 (13726) [005] d..2 29484.628338: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56082   kworker/u17:2-23076 (23076) [000] d..3 29484.628341: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56083 shell svc 13722-13723 ( 1007) [005] d..2 29484.628346: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56084              ps-13726 (13726) [005] d..2 29484.628351: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56085              ps-13726 (13726) [005] dn.3 29484.628354: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56086              ps-13726 (13726) [005] d..2 29484.628357: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56087   kworker/u17:2-23076 (23076) [000] d..2 29484.628357: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56088     kworker/0:0-13450 (13450) [000] d..2 29484.628363: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56089 shell svc 13722-13723 ( 1007) [005] d..2 29484.628365: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56090              ps-13726 (13726) [005] d..2 29484.628370: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56091     kworker/0:0-13450 (13450) [000] d..3 29484.628372: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56092              ps-13726 (13726) [005] dn.3 29484.628373: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56093              ps-13726 (13726) [005] d..2 29484.628375: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56094          <idle>-0     (-----) [001] .n.1 29484.628377: cpu_idle: state=4294967295 cpu_id=1
56095          <idle>-0     (-----) [001] d..2 29484.628383: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56096 shell svc 13722-13723 ( 1007) [005] d..2 29484.628383: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56097     kworker/0:0-13450 (13450) [000] d..2 29484.628385: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56098              ps-13726 (13726) [005] d..2 29484.628388: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56099              ps-13726 (13726) [005] dn.3 29484.628391: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56100          <idle>-0     (-----) [000] d..1 29484.628391: cpu_idle: state=0 cpu_id=0
56101              ps-13726 (13726) [005] d..2 29484.628393: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56102 shell svc 13722-13723 ( 1007) [005] d..2 29484.628401: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56103              ps-13726 (13726) [005] d..2 29484.628418: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56104              ps-13726 (13726) [005] dn.3 29484.628421: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56105              ps-13726 (13726) [005] d..2 29484.628423: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56106            adbd-23485 ( 1007) [001] d..2 29484.628428: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56107 shell svc 13722-13723 ( 1007) [005] d..2 29484.628432: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56108          <idle>-0     (-----) [001] d..1 29484.628435: cpu_idle: state=0 cpu_id=1
56109              ps-13726 (13726) [005] d..2 29484.628438: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56110              ps-13726 (13726) [005] dn.3 29484.628440: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56111              ps-13726 (13726) [005] d..2 29484.628443: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56112          <idle>-0     (-----) [000] d.h3 29484.628449: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56113 shell svc 13722-13723 ( 1007) [005] d..2 29484.628451: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56114              ps-13726 (13726) [005] d..2 29484.628456: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56115          <idle>-0     (-----) [000] dnh4 29484.628458: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56116              ps-13726 (13726) [005] dn.3 29484.628459: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56117              ps-13726 (13726) [005] d..2 29484.628461: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56118          <idle>-0     (-----) [000] .n.1 29484.628463: cpu_idle: state=4294967295 cpu_id=0
56119          <idle>-0     (-----) [000] d..2 29484.628469: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56120 shell svc 13722-13723 ( 1007) [005] d..2 29484.628469: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56121              ps-13726 (13726) [005] d..2 29484.628475: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56122   kworker/u17:2-23076 (23076) [000] d..2 29484.628477: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56123              ps-13726 (13726) [005] dn.3 29484.628477: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56124              ps-13726 (13726) [005] d..2 29484.628480: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56125   kworker/u17:2-23076 (23076) [000] d..3 29484.628482: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56126 shell svc 13722-13723 ( 1007) [005] d..2 29484.628487: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56127              ps-13726 (13726) [005] d..2 29484.628494: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56128              ps-13726 (13726) [005] dn.3 29484.628497: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56129   kworker/u17:2-23076 (23076) [000] d..2 29484.628497: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56130              ps-13726 (13726) [005] d..2 29484.628499: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56131     kworker/0:0-13450 (13450) [000] d..2 29484.628502: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56132 shell svc 13722-13723 ( 1007) [005] d..2 29484.628507: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56133              ps-13726 (13726) [005] d..2 29484.628513: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56134     kworker/0:0-13450 (13450) [000] d..3 29484.628514: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56135              ps-13726 (13726) [005] dn.3 29484.628516: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56136              ps-13726 (13726) [005] d..2 29484.628518: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56137          <idle>-0     (-----) [001] .n.1 29484.628519: cpu_idle: state=4294967295 cpu_id=1
56138          <idle>-0     (-----) [001] d..2 29484.628525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56139 shell svc 13722-13723 ( 1007) [005] d..2 29484.628526: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56140     kworker/0:0-13450 (13450) [000] d..2 29484.628527: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56141              ps-13726 (13726) [005] d..2 29484.628531: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56142              ps-13726 (13726) [005] dn.3 29484.628534: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56143          <idle>-0     (-----) [000] d..1 29484.628534: cpu_idle: state=0 cpu_id=0
56144              ps-13726 (13726) [005] d..2 29484.628536: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56145            adbd-23485 ( 1007) [001] d..2 29484.628541: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56146 shell svc 13722-13723 ( 1007) [005] d..2 29484.628544: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56147          <idle>-0     (-----) [001] d..1 29484.628548: cpu_idle: state=0 cpu_id=1
56148              ps-13726 (13726) [005] d..2 29484.628549: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56149              ps-13726 (13726) [005] dn.3 29484.628552: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56150              ps-13726 (13726) [005] d..2 29484.628556: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56151 shell svc 13722-13723 ( 1007) [005] d..2 29484.628564: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56152              ps-13726 (13726) [005] d..2 29484.628570: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56153              ps-13726 (13726) [005] dn.3 29484.628572: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56154              ps-13726 (13726) [005] d..2 29484.628575: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56155 shell svc 13722-13723 ( 1007) [005] d..2 29484.628583: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56156              ps-13726 (13726) [005] d..2 29484.628589: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56157              ps-13726 (13726) [005] dn.3 29484.628591: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56158              ps-13726 (13726) [005] d..2 29484.628594: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56159 shell svc 13722-13723 ( 1007) [005] d..2 29484.628602: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56160              ps-13726 (13726) [005] d..2 29484.628608: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56161              ps-13726 (13726) [005] dn.3 29484.628610: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56162              ps-13726 (13726) [005] d..2 29484.628613: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56163 shell svc 13722-13723 ( 1007) [005] d..2 29484.628620: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56164              ps-13726 (13726) [005] d..2 29484.628626: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56165              ps-13726 (13726) [005] dn.3 29484.628629: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56166              ps-13726 (13726) [005] d..2 29484.628631: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56167 shell svc 13722-13723 ( 1007) [005] d..2 29484.628639: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56168              ps-13726 (13726) [005] d..2 29484.628645: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56169              ps-13726 (13726) [005] dn.3 29484.628647: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56170              ps-13726 (13726) [005] d..2 29484.628650: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56171          <idle>-0     (-----) [000] d.h3 29484.628650: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56172          <idle>-0     (-----) [000] dnh4 29484.628657: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56173 shell svc 13722-13723 ( 1007) [005] d..2 29484.628658: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56174          <idle>-0     (-----) [000] .n.1 29484.628661: cpu_idle: state=4294967295 cpu_id=0
56175              ps-13726 (13726) [005] d..2 29484.628664: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56176              ps-13726 (13726) [005] dn.3 29484.628666: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56177          <idle>-0     (-----) [000] d..2 29484.628667: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56178              ps-13726 (13726) [005] d..2 29484.628669: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56179   kworker/u17:2-23076 (23076) [000] d..2 29484.628673: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56180 shell svc 13722-13723 ( 1007) [005] d..2 29484.628677: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56181   kworker/u17:2-23076 (23076) [000] d..3 29484.628679: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56182              ps-13726 (13726) [005] d..2 29484.628682: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56183              ps-13726 (13726) [005] dn.3 29484.628684: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56184              ps-13726 (13726) [005] d..2 29484.628687: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56185 shell svc 13722-13723 ( 1007) [005] d..2 29484.628695: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56186   kworker/u17:2-23076 (23076) [000] d..2 29484.628695: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56187              ps-13726 (13726) [005] d..2 29484.628700: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56188     kworker/0:0-13450 (13450) [000] d..2 29484.628701: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56189              ps-13726 (13726) [005] dn.3 29484.628703: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56190              ps-13726 (13726) [005] d..2 29484.628705: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56191     kworker/0:0-13450 (13450) [000] d..3 29484.628709: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56192 shell svc 13722-13723 ( 1007) [005] d..2 29484.628713: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56193     kworker/0:0-13450 (13450) [000] d..2 29484.628718: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56194              ps-13726 (13726) [005] d..2 29484.628719: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56195              ps-13726 (13726) [005] dn.3 29484.628721: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56196              ps-13726 (13726) [005] d..2 29484.628724: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56197            adbd-23484 ( 1007) [000] d..2 29484.628730: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56198 shell svc 13722-13723 ( 1007) [005] d..2 29484.628731: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56199            adbd-23484 ( 1007) [000] d..3 29484.628736: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56200              ps-13726 (13726) [005] d..2 29484.628737: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56201              ps-13726 (13726) [005] dn.3 29484.628739: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56202              ps-13726 (13726) [005] d..2 29484.628742: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56203 shell svc 13722-13723 ( 1007) [005] d..2 29484.628750: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56204              ps-13726 (13726) [005] d..2 29484.628755: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56205              ps-13726 (13726) [005] dn.3 29484.628757: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56206              ps-13726 (13726) [005] d..2 29484.628760: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56207 shell svc 13722-13723 ( 1007) [005] d..2 29484.628767: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56208              ps-13726 (13726) [005] d..2 29484.628773: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56209              ps-13726 (13726) [005] dn.3 29484.628776: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56210              ps-13726 (13726) [005] d..2 29484.628779: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56211            adbd-23484 ( 1007) [000] d..2 29484.628780: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56212 shell svc 13722-13723 ( 1007) [005] d..2 29484.628787: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56213              ps-13726 (13726) [005] d..2 29484.628792: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56214              ps-13726 (13726) [005] dn.3 29484.628795: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56215              ps-13726 (13726) [005] d..2 29484.628797: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56216 shell svc 13722-13723 ( 1007) [005] d..2 29484.628805: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56217              ps-13726 (13726) [005] d..2 29484.628811: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56218              ps-13726 (13726) [005] dn.3 29484.628813: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56219              ps-13726 (13726) [005] d..2 29484.628816: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56220 shell svc 13722-13723 ( 1007) [005] d..2 29484.628824: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56221              ps-13726 (13726) [005] d..2 29484.628830: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56222              ps-13726 (13726) [005] dn.3 29484.628832: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56223              ps-13726 (13726) [005] d..2 29484.628834: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56224 shell svc 13722-13723 ( 1007) [005] d..2 29484.628842: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56225              ps-13726 (13726) [005] d..2 29484.628848: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56226              ps-13726 (13726) [005] dn.3 29484.628851: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56227              ps-13726 (13726) [005] d..2 29484.628853: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56228 shell svc 13722-13723 ( 1007) [005] d..2 29484.628861: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56229              ps-13726 (13726) [005] d..2 29484.628867: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56230              ps-13726 (13726) [005] dn.3 29484.628869: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56231              ps-13726 (13726) [005] d..2 29484.628871: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56232            adbd-1007  ( 1007) [000] d..1 29484.628873: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56233 shell svc 13722-13723 ( 1007) [005] d..2 29484.628879: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56234              ps-13726 (13726) [005] d..2 29484.628884: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56235            adbd-1007  ( 1007) [000] d..2 29484.628885: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56236              ps-13726 (13726) [005] dn.3 29484.628887: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56237          <idle>-0     (-----) [001] .n.1 29484.628890: cpu_idle: state=4294967295 cpu_id=1
56238              ps-13726 (13726) [005] d..2 29484.628890: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56239          <idle>-0     (-----) [001] d..2 29484.628896: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56240 shell svc 13722-13723 ( 1007) [005] d..2 29484.628898: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56241              ps-13726 (13726) [005] d..2 29484.628903: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56242              ps-13726 (13726) [005] dn.3 29484.628905: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56243              ps-13726 (13726) [005] d..2 29484.628908: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56244 shell svc 13722-13723 ( 1007) [005] d..2 29484.628915: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56245            adbd-1007  ( 1007) [000] d..2 29484.628919: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56246              ps-13726 (13726) [005] d..2 29484.628920: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56247              ps-13726 (13726) [005] dn.3 29484.628923: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56248              ps-13726 (13726) [005] d..2 29484.628925: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56249          <idle>-0     (-----) [000] d..1 29484.628927: cpu_idle: state=0 cpu_id=0
56250 shell svc 13722-13723 ( 1007) [005] d..2 29484.628933: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56251              ps-13726 (13726) [005] d..2 29484.628938: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56252            adbd-23485 ( 1007) [001] d..2 29484.628941: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56253              ps-13726 (13726) [005] dn.3 29484.628941: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56254              ps-13726 (13726) [005] d..2 29484.628943: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56255          <idle>-0     (-----) [001] d..1 29484.628948: cpu_idle: state=0 cpu_id=1
56256 shell svc 13722-13723 ( 1007) [005] d..2 29484.628951: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56257              ps-13726 (13726) [005] d..2 29484.628956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56258          <idle>-0     (-----) [000] d.h3 29484.628958: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56259              ps-13726 (13726) [005] dn.3 29484.628959: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56260              ps-13726 (13726) [005] d..2 29484.628961: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56261          <idle>-0     (-----) [000] dnh4 29484.628964: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56262 shell svc 13722-13723 ( 1007) [005] d..2 29484.628969: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56263          <idle>-0     (-----) [000] .n.1 29484.628969: cpu_idle: state=4294967295 cpu_id=0
56264              ps-13726 (13726) [005] d..2 29484.628974: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56265          <idle>-0     (-----) [000] d..2 29484.628976: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56266              ps-13726 (13726) [005] dn.3 29484.628977: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56267              ps-13726 (13726) [005] d..2 29484.628979: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56268   kworker/u17:2-23076 (23076) [000] d..2 29484.628984: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56269 shell svc 13722-13723 ( 1007) [005] d..2 29484.628987: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56270   kworker/u17:2-23076 (23076) [000] d..3 29484.628990: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56271              ps-13726 (13726) [005] d..2 29484.628992: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56272              ps-13726 (13726) [005] dn.3 29484.628995: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56273              ps-13726 (13726) [005] d..2 29484.628997: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56274 shell svc 13722-13723 ( 1007) [005] d..2 29484.629005: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56275   kworker/u17:2-23076 (23076) [000] d..2 29484.629008: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56276              ps-13726 (13726) [005] d..2 29484.629010: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56277              ps-13726 (13726) [005] dn.3 29484.629013: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56278     kworker/0:0-13450 (13450) [000] d..2 29484.629013: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56279              ps-13726 (13726) [005] d..2 29484.629015: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56280     kworker/0:0-13450 (13450) [000] d..3 29484.629022: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56281 shell svc 13722-13723 ( 1007) [005] d..2 29484.629023: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56282          <idle>-0     (-----) [001] .n.1 29484.629028: cpu_idle: state=4294967295 cpu_id=1
56283              ps-13726 (13726) [005] d..2 29484.629028: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56284              ps-13726 (13726) [005] dn.3 29484.629030: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56285              ps-13726 (13726) [005] d..2 29484.629033: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56286          <idle>-0     (-----) [001] d..2 29484.629034: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56287     kworker/0:0-13450 (13450) [000] d..2 29484.629036: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56288 shell svc 13722-13723 ( 1007) [005] d..2 29484.629041: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56289          <idle>-0     (-----) [000] d..1 29484.629043: cpu_idle: state=0 cpu_id=0
56290              ps-13726 (13726) [005] d..2 29484.629046: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56291              ps-13726 (13726) [005] dn.3 29484.629048: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56292              ps-13726 (13726) [005] d..2 29484.629051: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56293 shell svc 13722-13723 ( 1007) [005] d..2 29484.629058: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56294              ps-13726 (13726) [005] d..2 29484.629064: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56295              ps-13726 (13726) [005] dn.3 29484.629067: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56296              ps-13726 (13726) [005] d..2 29484.629069: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56297 shell svc 13722-13723 ( 1007) [005] d..2 29484.629077: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56298            adbd-23485 ( 1007) [001] d..2 29484.629080: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56299              ps-13726 (13726) [005] d..2 29484.629083: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56300              ps-13726 (13726) [005] dn.3 29484.629086: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56301          <idle>-0     (-----) [001] d..1 29484.629087: cpu_idle: state=0 cpu_id=1
56302              ps-13726 (13726) [005] d..2 29484.629088: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56303 shell svc 13722-13723 ( 1007) [005] d..2 29484.629096: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56304          <idle>-0     (-----) [000] d.h3 29484.629129: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56305          <idle>-0     (-----) [000] dnh4 29484.629134: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56306          <idle>-0     (-----) [000] .n.1 29484.629141: cpu_idle: state=4294967295 cpu_id=0
56307          <idle>-0     (-----) [000] d..2 29484.629147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56308   kworker/u17:2-23076 (23076) [000] d..2 29484.629154: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56309   kworker/u17:2-23076 (23076) [000] d..3 29484.629159: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56310   kworker/u17:2-23076 (23076) [000] d..2 29484.629174: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56311     kworker/0:0-13450 (13450) [000] d..2 29484.629179: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56312     kworker/0:0-13450 (13450) [000] d..3 29484.629188: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56313          <idle>-0     (-----) [001] .n.1 29484.629193: cpu_idle: state=4294967295 cpu_id=1
56314          <idle>-0     (-----) [001] d..2 29484.629200: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56315     kworker/0:0-13450 (13450) [000] d..2 29484.629201: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56316          <idle>-0     (-----) [000] d..1 29484.629207: cpu_idle: state=0 cpu_id=0
56317            adbd-23485 ( 1007) [001] d..2 29484.629215: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56318          <idle>-0     (-----) [001] d..1 29484.629222: cpu_idle: state=0 cpu_id=1
56319          <idle>-0     (-----) [000] d.h3 29484.629327: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56320          <idle>-0     (-----) [000] dnh4 29484.629333: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56321          <idle>-0     (-----) [000] .n.1 29484.629337: cpu_idle: state=4294967295 cpu_id=0
56322          <idle>-0     (-----) [000] d..2 29484.629343: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56323   kworker/u17:2-23076 (23076) [000] d..2 29484.629351: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56324   kworker/u17:2-23076 (23076) [000] d..3 29484.629356: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56325   kworker/u17:2-23076 (23076) [000] d..2 29484.629371: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56326     kworker/0:0-13450 (13450) [000] d..2 29484.629378: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56327     kworker/0:0-13450 (13450) [000] d..3 29484.629387: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56328     kworker/0:0-13450 (13450) [000] d..2 29484.629395: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56329            adbd-23484 ( 1007) [000] d..2 29484.629406: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56330            adbd-23484 ( 1007) [000] d..3 29484.629412: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56331            adbd-23484 ( 1007) [000] d..2 29484.629456: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56332            adbd-1007  ( 1007) [000] d..1 29484.629525: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56333            adbd-1007  ( 1007) [000] d..2 29484.629536: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56334          <idle>-0     (-----) [001] .n.1 29484.629541: cpu_idle: state=4294967295 cpu_id=1
56335          <idle>-0     (-----) [001] d..2 29484.629547: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56336            adbd-1007  ( 1007) [000] d..2 29484.629570: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56337          <idle>-0     (-----) [000] d..1 29484.629578: cpu_idle: state=0 cpu_id=0
56338            adbd-23485 ( 1007) [001] d..2 29484.629591: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56339          <idle>-0     (-----) [001] d..1 29484.629599: cpu_idle: state=0 cpu_id=1
56340          <idle>-0     (-----) [000] d.h3 29484.629604: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56341          <idle>-0     (-----) [000] dnh4 29484.629610: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56342          <idle>-0     (-----) [000] .n.1 29484.629615: cpu_idle: state=4294967295 cpu_id=0
56343          <idle>-0     (-----) [000] d..2 29484.629623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56344   kworker/u17:2-23076 (23076) [000] d..2 29484.629630: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56345   kworker/u17:2-23076 (23076) [000] d..3 29484.629636: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56346   kworker/u17:2-23076 (23076) [000] d..2 29484.629653: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56347     kworker/0:0-13450 (13450) [000] d..2 29484.629658: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56348     kworker/0:0-13450 (13450) [000] d..3 29484.629667: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56349          <idle>-0     (-----) [001] .n.1 29484.629672: cpu_idle: state=4294967295 cpu_id=1
56350          <idle>-0     (-----) [001] d..2 29484.629679: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56351     kworker/0:0-13450 (13450) [000] d..2 29484.629681: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56352          <idle>-0     (-----) [000] d..1 29484.629687: cpu_idle: state=0 cpu_id=0
56353            adbd-23485 ( 1007) [001] d..2 29484.629725: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56354          <idle>-0     (-----) [001] d..1 29484.629733: cpu_idle: state=0 cpu_id=1
56355          <idle>-0     (-----) [000] d.h3 29484.629757: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56356          <idle>-0     (-----) [000] dnh4 29484.629763: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56357          <idle>-0     (-----) [000] .n.1 29484.629767: cpu_idle: state=4294967295 cpu_id=0
56358          <idle>-0     (-----) [000] d..2 29484.629774: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56359   kworker/u17:2-23076 (23076) [000] d..2 29484.629782: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56360   kworker/u17:2-23076 (23076) [000] d..3 29484.629787: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56361   kworker/u17:2-23076 (23076) [000] d..2 29484.629803: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56362     kworker/0:0-13450 (13450) [000] d..2 29484.629808: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56363     kworker/0:0-13450 (13450) [000] d..3 29484.629816: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56364          <idle>-0     (-----) [001] .n.1 29484.629822: cpu_idle: state=4294967295 cpu_id=1
56365          <idle>-0     (-----) [001] d..2 29484.629828: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56366     kworker/0:0-13450 (13450) [000] d..2 29484.629829: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56367          <idle>-0     (-----) [000] d..1 29484.629836: cpu_idle: state=0 cpu_id=0
56368            adbd-23485 ( 1007) [001] d..2 29484.629845: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56369          <idle>-0     (-----) [001] d..1 29484.629852: cpu_idle: state=0 cpu_id=1
56370          <idle>-0     (-----) [000] d.h3 29484.629930: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56371          <idle>-0     (-----) [000] dnh4 29484.629935: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56372          <idle>-0     (-----) [000] .n.1 29484.629940: cpu_idle: state=4294967295 cpu_id=0
56373          <idle>-0     (-----) [000] d..2 29484.629947: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56374   kworker/u17:2-23076 (23076) [000] d..2 29484.629953: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56375   kworker/u17:2-23076 (23076) [000] d..3 29484.629958: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56376   kworker/u17:2-23076 (23076) [000] d..2 29484.629975: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56377     kworker/0:0-13450 (13450) [000] d..2 29484.629980: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56378     kworker/0:0-13450 (13450) [000] d..3 29484.629989: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56379     kworker/0:0-13450 (13450) [000] d..2 29484.629998: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56380            adbd-23484 ( 1007) [000] d..2 29484.630009: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56381            adbd-23484 ( 1007) [000] d..3 29484.630014: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56382            adbd-23484 ( 1007) [000] d..2 29484.630059: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56383              ps-13726 (13726) [005] d..2 29484.630060: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56384              ps-13726 (13726) [005] dn.3 29484.630065: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56385              ps-13726 (13726) [005] d..2 29484.630068: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56386 shell svc 13722-13723 ( 1007) [005] d..2 29484.630080: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56387              ps-13726 (13726) [005] d..2 29484.630086: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56388              ps-13726 (13726) [005] dn.3 29484.630089: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56389              ps-13726 (13726) [005] d..2 29484.630091: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56390 shell svc 13722-13723 ( 1007) [005] d..2 29484.630100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56391              ps-13726 (13726) [005] d..2 29484.630106: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56392              ps-13726 (13726) [005] dn.3 29484.630109: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56393              ps-13726 (13726) [005] d..2 29484.630112: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56394            adbd-1007  ( 1007) [000] d..1 29484.630118: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56395 shell svc 13722-13723 ( 1007) [005] d..2 29484.630120: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56396              ps-13726 (13726) [005] d..2 29484.630125: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56397              ps-13726 (13726) [005] dn.3 29484.630127: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56398            adbd-1007  ( 1007) [000] d..2 29484.630130: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56399              ps-13726 (13726) [005] d..2 29484.630130: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56400          <idle>-0     (-----) [001] .n.1 29484.630135: cpu_idle: state=4294967295 cpu_id=1
56401 shell svc 13722-13723 ( 1007) [005] d..2 29484.630137: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56402          <idle>-0     (-----) [001] d..2 29484.630140: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56403              ps-13726 (13726) [005] d..2 29484.630142: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56404              ps-13726 (13726) [005] dn.3 29484.630145: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56405              ps-13726 (13726) [005] d..2 29484.630147: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56406 shell svc 13722-13723 ( 1007) [005] d..2 29484.630155: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56407              ps-13726 (13726) [005] d..2 29484.630160: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56408            adbd-1007  ( 1007) [000] d..2 29484.630162: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56409              ps-13726 (13726) [005] dn.3 29484.630163: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56410              ps-13726 (13726) [005] d..2 29484.630166: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56411          <idle>-0     (-----) [000] d..1 29484.630170: cpu_idle: state=0 cpu_id=0
56412 shell svc 13722-13723 ( 1007) [005] d..2 29484.630173: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56413              ps-13726 (13726) [005] d..2 29484.630179: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56414              ps-13726 (13726) [005] dn.3 29484.630181: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56415              ps-13726 (13726) [005] d..2 29484.630185: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56416            adbd-23485 ( 1007) [001] d..2 29484.630186: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56417          <idle>-0     (-----) [001] d..1 29484.630193: cpu_idle: state=0 cpu_id=1
56418 shell svc 13722-13723 ( 1007) [005] d..2 29484.630193: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56419              ps-13726 (13726) [005] d..2 29484.630198: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56420              ps-13726 (13726) [005] dn.3 29484.630201: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56421              ps-13726 (13726) [005] d..2 29484.630203: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56422          <idle>-0     (-----) [000] d.h3 29484.630205: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56423 shell svc 13722-13723 ( 1007) [005] d..2 29484.630211: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56424          <idle>-0     (-----) [000] dnh4 29484.630211: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56425              ps-13726 (13726) [005] d..2 29484.630216: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56426          <idle>-0     (-----) [000] .n.1 29484.630217: cpu_idle: state=4294967295 cpu_id=0
56427              ps-13726 (13726) [005] dn.3 29484.630219: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56428              ps-13726 (13726) [005] d..2 29484.630221: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56429          <idle>-0     (-----) [000] d..2 29484.630223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56430 shell svc 13722-13723 ( 1007) [005] d..2 29484.630229: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56431   kworker/u17:2-23076 (23076) [000] d..2 29484.630232: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56432              ps-13726 (13726) [005] d..2 29484.630234: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56433              ps-13726 (13726) [005] dn.3 29484.630237: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56434   kworker/u17:2-23076 (23076) [000] d..3 29484.630238: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56435              ps-13726 (13726) [005] d..2 29484.630239: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56436 shell svc 13722-13723 ( 1007) [005] d..2 29484.630247: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56437              ps-13726 (13726) [005] d..2 29484.630252: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56438   kworker/u17:2-23076 (23076) [000] d..2 29484.630254: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56439              ps-13726 (13726) [005] dn.3 29484.630255: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56440              ps-13726 (13726) [005] d..2 29484.630257: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56441     kworker/0:0-13450 (13450) [000] d..2 29484.630259: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56442 shell svc 13722-13723 ( 1007) [005] d..2 29484.630265: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56443     kworker/0:0-13450 (13450) [000] d..3 29484.630269: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56444              ps-13726 (13726) [005] d..2 29484.630271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56445              ps-13726 (13726) [005] dn.3 29484.630273: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56446          <idle>-0     (-----) [001] .n.1 29484.630274: cpu_idle: state=4294967295 cpu_id=1
56447              ps-13726 (13726) [005] d..2 29484.630276: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56448          <idle>-0     (-----) [001] d..2 29484.630280: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56449     kworker/0:0-13450 (13450) [000] d..2 29484.630282: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56450 shell svc 13722-13723 ( 1007) [005] d..2 29484.630284: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56451          <idle>-0     (-----) [000] d..1 29484.630288: cpu_idle: state=0 cpu_id=0
56452              ps-13726 (13726) [005] d..2 29484.630289: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56453              ps-13726 (13726) [005] dn.3 29484.630291: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56454              ps-13726 (13726) [005] d..2 29484.630294: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56455 shell svc 13722-13723 ( 1007) [005] d..2 29484.630302: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56456              ps-13726 (13726) [005] d..2 29484.630307: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56457              ps-13726 (13726) [005] dn.3 29484.630310: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56458              ps-13726 (13726) [005] d..2 29484.630312: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56459 shell svc 13722-13723 ( 1007) [005] d..2 29484.630320: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56460            adbd-23485 ( 1007) [001] d..2 29484.630323: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56461              ps-13726 (13726) [005] d..2 29484.630325: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56462              ps-13726 (13726) [005] dn.3 29484.630328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56463              ps-13726 (13726) [005] d..2 29484.630330: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56464          <idle>-0     (-----) [001] d..1 29484.630330: cpu_idle: state=0 cpu_id=1
56465          <idle>-0     (-----) [000] d.h3 29484.630331: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56466          <idle>-0     (-----) [000] dnh4 29484.630337: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56467 shell svc 13722-13723 ( 1007) [005] d..2 29484.630338: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56468          <idle>-0     (-----) [000] .n.1 29484.630341: cpu_idle: state=4294967295 cpu_id=0
56469              ps-13726 (13726) [005] d..2 29484.630343: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56470              ps-13726 (13726) [005] dn.3 29484.630346: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56471          <idle>-0     (-----) [000] d..2 29484.630347: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56472              ps-13726 (13726) [005] d..2 29484.630348: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56473   kworker/u17:2-23076 (23076) [000] d..2 29484.630354: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56474 shell svc 13722-13723 ( 1007) [005] d..2 29484.630356: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56475   kworker/u17:2-23076 (23076) [000] d..3 29484.630360: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56476              ps-13726 (13726) [005] d..2 29484.630361: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56477              ps-13726 (13726) [005] dn.3 29484.630364: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56478              ps-13726 (13726) [005] d..2 29484.630366: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56479 shell svc 13722-13723 ( 1007) [005] d..2 29484.630374: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56480   kworker/u17:2-23076 (23076) [000] d..2 29484.630375: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56481              ps-13726 (13726) [005] d..2 29484.630379: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56482     kworker/0:0-13450 (13450) [000] d..2 29484.630381: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56483              ps-13726 (13726) [005] dn.3 29484.630382: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56484              ps-13726 (13726) [005] d..2 29484.630384: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56485     kworker/0:0-13450 (13450) [000] d..3 29484.630390: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56486          <idle>-0     (-----) [001] .n.1 29484.630395: cpu_idle: state=4294967295 cpu_id=1
56487 shell svc 13722-13723 ( 1007) [005] d.s2 29484.630397: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
56488          <idle>-0     (-----) [001] d..2 29484.630402: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56489     kworker/0:0-13450 (13450) [000] d.s3 29484.630408: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
56490 shell svc 13722-13723 ( 1007) [005] d..2 29484.630420: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56491            adbd-23485 ( 1007) [001] d..2 29484.630423: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56492              ps-13726 (13726) [005] d..2 29484.630426: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56493              ps-13726 (13726) [005] dn.3 29484.630429: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56494          <idle>-0     (-----) [001] d..1 29484.630430: cpu_idle: state=0 cpu_id=1
56495              ps-13726 (13726) [005] d..2 29484.630431: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56496          <idle>-0     (-----) [001] .n.1 29484.630432: cpu_idle: state=4294967295 cpu_id=1
56497     kworker/0:0-13450 (13450) [000] d.s4 29484.630435: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
56498 shell svc 13722-13723 ( 1007) [005] d..2 29484.630440: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56499          <idle>-0     (-----) [001] d..2 29484.630440: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56500              ps-13726 (13726) [005] d..2 29484.630446: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56501     kworker/0:0-13450 (13450) [000] d.H3 29484.630447: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
56502     rcu_preempt-7     (    7) [001] d..2 29484.630447: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
56503              ps-13726 (13726) [005] dn.3 29484.630449: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56504              ps-13726 (13726) [005] d..2 29484.630451: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56505     rcu_preempt-7     (    7) [001] d..3 29484.630457: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
56506     kworker/0:0-13450 (13450) [000] d..2 29484.630458: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
56507 shell svc 13722-13723 ( 1007) [005] d..2 29484.630459: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56508     rcu_preempt-7     (    7) [001] d..2 29484.630464: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
56509              ps-13726 (13726) [005] d..2 29484.630464: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56510         rcuop/4-45    (   45) [001] d..2 29484.630466: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
56511              ps-13726 (13726) [005] dn.3 29484.630466: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56512              ps-13726 (13726) [005] d..2 29484.630469: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56513         rcuop/4-45    (   45) [001] d..3 29484.630475: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
56514         rcuop/4-45    (   45) [001] d..2 29484.630477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
56515 shell svc 13722-13723 ( 1007) [005] d..2 29484.630483: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56516         rcuop/4-45    (   45) [001] d..3 29484.630484: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
56517         rcuop/4-45    (   45) [001] d..2 29484.630490: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
56518              ps-13726 (13726) [005] d..2 29484.630492: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56519              ps-13726 (13726) [005] dn.3 29484.630495: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56520              ps-13726 (13726) [005] d..2 29484.630497: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56521 shell svc 13722-13723 ( 1007) [005] d..2 29484.630505: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56522              ps-13726 (13726) [005] d..2 29484.630510: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56523              ps-13726 (13726) [005] dn.3 29484.630513: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56524              ps-13726 (13726) [005] d..2 29484.630515: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56525  kworker/u16:10-23868 (23868) [000] d.h4 29484.630517: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56526 shell svc 13722-13723 ( 1007) [005] d..2 29484.630523: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56527  kworker/u16:10-23868 (23868) [000] dnh5 29484.630527: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56528              ps-13726 (13726) [005] d..2 29484.630528: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56529              ps-13726 (13726) [005] dn.3 29484.630531: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56530              ps-13726 (13726) [005] d..2 29484.630533: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56531  kworker/u16:10-23868 (23868) [000] d..2 29484.630535: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56532   kworker/u17:2-23076 (23076) [000] d..2 29484.630541: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56533 shell svc 13722-13723 ( 1007) [005] d..2 29484.630541: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56534   kworker/u17:2-23076 (23076) [000] d..3 29484.630545: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56535              ps-13726 (13726) [005] d..2 29484.630546: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56536              ps-13726 (13726) [005] dn.3 29484.630548: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56537         rcuop/5-53    (   53) [001] d..2 29484.630550: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
56538              ps-13726 (13726) [005] d..2 29484.630551: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56539 shell svc 13722-13723 ( 1007) [005] d..2 29484.630559: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56540   kworker/u17:2-23076 (23076) [000] d..2 29484.630561: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56541              ps-13726 (13726) [005] d..2 29484.630564: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56542              ps-13726 (13726) [005] dn.3 29484.630567: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56543     kworker/0:0-13450 (13450) [000] d..2 29484.630567: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56544              ps-13726 (13726) [005] d..2 29484.630569: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56545 shell svc 13722-13723 ( 1007) [005] d..2 29484.630577: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56546     rcu_preempt-7     (    7) [001] d..2 29484.630579: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
56547              ps-13726 (13726) [005] d..2 29484.630582: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56548              ps-13726 (13726) [005] dn.3 29484.630585: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56549              ps-13726 (13726) [005] d..2 29484.630587: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56550     kworker/0:0-13450 (13450) [000] d..3 29484.630593: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
56551 shell svc 13722-13723 ( 1007) [005] d..2 29484.630595: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56552              ps-13726 (13726) [005] d..2 29484.630600: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56553              ps-13726 (13726) [005] dn.3 29484.630603: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56554              ps-13726 (13726) [005] d..2 29484.630605: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56555     kworker/0:0-13450 (13450) [000] d..2 29484.630612: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56556 shell svc 13722-13723 ( 1007) [005] d..2 29484.630613: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56557              ps-13726 (13726) [005] d..2 29484.630618: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56558              ps-13726 (13726) [005] dn.3 29484.630621: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56559              ps-13726 (13726) [005] d..2 29484.630623: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56560 shell svc 13722-13723 ( 1007) [005] d..2 29484.630631: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56561          <idle>-0     (-----) [000] d..1 29484.630634: cpu_idle: state=0 cpu_id=0
56562  kworker/u16:10-23868 (23868) [001] .... 29484.630636: clk_set_rate: l3_cluster0_vote_clk 652800000
56563              ps-13726 (13726) [005] d..2 29484.630636: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56564              ps-13726 (13726) [005] dn.3 29484.630638: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56565              ps-13726 (13726) [005] d..2 29484.630641: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56566 shell svc 13722-13723 ( 1007) [005] d..2 29484.630651: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56567              ps-13726 (13726) [005] d..2 29484.630662: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56568              ps-13726 (13726) [005] dn.3 29484.630665: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56569              ps-13726 (13726) [005] d..2 29484.630668: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56570 shell svc 13722-13723 ( 1007) [005] d..2 29484.630676: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56571              ps-13726 (13726) [005] d..2 29484.630681: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56572              ps-13726 (13726) [005] dn.3 29484.630683: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56573              ps-13726 (13726) [005] d..2 29484.630686: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56574 shell svc 13722-13723 ( 1007) [005] d..2 29484.630693: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56575  kworker/u16:10-23868 (23868) [001] d..2 29484.630715: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56576            adbd-23484 ( 1007) [001] d..2 29484.630727: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56577            adbd-23484 ( 1007) [001] d..3 29484.630739: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
56578            adbd-23484 ( 1007) [001] d..2 29484.630782: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56579            adbd-1007  ( 1007) [001] d..1 29484.630870: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56580            adbd-1007  ( 1007) [001] d..2 29484.630883: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56581            adbd-1007  ( 1007) [001] d..2 29484.630912: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
56582            adbd-23485 ( 1007) [001] d..2 29484.630960: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56583          <idle>-0     (-----) [001] d..1 29484.630970: cpu_idle: state=0 cpu_id=1
56584          <idle>-0     (-----) [000] d.h3 29484.630976: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56585          <idle>-0     (-----) [000] dnh4 29484.630985: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56586          <idle>-0     (-----) [000] .n.1 29484.630990: cpu_idle: state=4294967295 cpu_id=0
56587          <idle>-0     (-----) [000] d..2 29484.630997: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56588   kworker/u17:2-23076 (23076) [000] d..2 29484.631004: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56589   kworker/u17:2-23076 (23076) [000] d..3 29484.631009: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56590   kworker/u17:2-23076 (23076) [000] d..2 29484.631025: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56591     kworker/0:0-13450 (13450) [000] d..2 29484.631031: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56592     kworker/0:0-13450 (13450) [000] d..3 29484.631051: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
56593     kworker/0:0-13450 (13450) [000] d..2 29484.631059: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
56594            adbd-23485 ( 1007) [000] d..2 29484.631112: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56595          <idle>-0     (-----) [000] d..1 29484.631120: cpu_idle: state=0 cpu_id=0
56596          <idle>-0     (-----) [000] d.h3 29484.631150: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56597          <idle>-0     (-----) [000] dnh4 29484.631156: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56598          <idle>-0     (-----) [000] .n.1 29484.631162: cpu_idle: state=4294967295 cpu_id=0
56599          <idle>-0     (-----) [000] d..2 29484.631168: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56600   kworker/u17:2-23076 (23076) [000] d..2 29484.631175: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56601   kworker/u17:2-23076 (23076) [000] d..3 29484.631180: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56602   kworker/u17:2-23076 (23076) [000] d..2 29484.631198: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56603     kworker/0:0-13450 (13450) [000] d..2 29484.631203: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
56604     kworker/0:0-13450 (13450) [000] d..3 29484.631211: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
56605     kworker/0:0-13450 (13450) [000] d..2 29484.631219: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
56606            adbd-23485 ( 1007) [000] d..2 29484.631236: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56607          <idle>-0     (-----) [000] d..1 29484.631244: cpu_idle: state=0 cpu_id=0
56608          <idle>-0     (-----) [000] d.h3 29484.631340: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56609          <idle>-0     (-----) [000] dnh4 29484.631345: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56610          <idle>-0     (-----) [000] .n.1 29484.631351: cpu_idle: state=4294967295 cpu_id=0
56611          <idle>-0     (-----) [000] d..2 29484.631357: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56612   kworker/u17:2-23076 (23076) [000] d..2 29484.631363: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56613   kworker/u17:2-23076 (23076) [000] d..3 29484.631368: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56614   kworker/u17:2-23076 (23076) [000] d..2 29484.631385: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56615     kworker/0:0-13450 (13450) [000] d..2 29484.631391: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
56616     kworker/0:0-13450 (13450) [000] d..3 29484.631411: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56617     kworker/0:0-13450 (13450) [000] d..2 29484.631420: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56618            adbd-23484 ( 1007) [000] d..2 29484.631430: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
56619            adbd-23484 ( 1007) [000] d..3 29484.631440: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56620            adbd-23484 ( 1007) [000] d..2 29484.631481: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56621            adbd-1007  ( 1007) [000] d..2 29484.631549: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56622          <idle>-0     (-----) [000] d..1 29484.631558: cpu_idle: state=0 cpu_id=0
56623              ps-13726 (13726) [005] d..2 29484.631888: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56624              ps-13726 (13726) [005] dn.3 29484.631893: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56625              ps-13726 (13726) [005] d..2 29484.631897: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56626 shell svc 13722-13723 ( 1007) [005] d..2 29484.631905: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56627 shell svc 13722-13723 ( 1007) [005] d..2 29484.631917: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56628          <idle>-0     (-----) [000] dnh2 29484.631922: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56629              ps-13726 (13726) [005] d..2 29484.631924: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56630              ps-13726 (13726) [005] dn.3 29484.631927: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56631          <idle>-0     (-----) [000] .n.1 29484.631927: cpu_idle: state=4294967295 cpu_id=0
56632              ps-13726 (13726) [005] d..2 29484.631930: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56633          <idle>-0     (-----) [000] d..2 29484.631933: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
56634 shell svc 13722-13723 ( 1007) [005] d..2 29484.631938: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56635              ps-13726 (13726) [005] d..2 29484.631944: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56636              ps-13726 (13726) [005] dn.3 29484.631947: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56637              ps-13726 (13726) [005] d..2 29484.631949: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56638 shell svc 13722-13723 ( 1007) [005] d..2 29484.631957: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56639              ps-13726 (13726) [005] d..2 29484.631963: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56640              ps-13726 (13726) [005] dn.3 29484.631966: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56641              ps-13726 (13726) [005] d..2 29484.631968: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56642            adbd-1007  ( 1007) [000] d..1 29484.631968: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
56643 shell svc 13722-13723 ( 1007) [005] d..2 29484.631976: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56644              ps-13726 (13726) [005] d..2 29484.631981: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56645              ps-13726 (13726) [005] dn.3 29484.631984: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56646              ps-13726 (13726) [005] d..2 29484.631986: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56647            adbd-1007  ( 1007) [000] d..2 29484.631987: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56648          <idle>-0     (-----) [001] .n.1 29484.631992: cpu_idle: state=4294967295 cpu_id=1
56649 shell svc 13722-13723 ( 1007) [005] d..2 29484.631994: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56650              ps-13726 (13726) [005] d..2 29484.631999: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56651          <idle>-0     (-----) [001] d..2 29484.631999: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56652              ps-13726 (13726) [005] dn.3 29484.632001: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56653              ps-13726 (13726) [005] d..2 29484.632004: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56654 shell svc 13722-13723 ( 1007) [005] d..2 29484.632012: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56655              ps-13726 (13726) [005] d..2 29484.632017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56656              ps-13726 (13726) [005] dn.3 29484.632019: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56657            adbd-1007  ( 1007) [000] d..2 29484.632021: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56658              ps-13726 (13726) [005] d..2 29484.632022: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56659          <idle>-0     (-----) [000] d..1 29484.632029: cpu_idle: state=0 cpu_id=0
56660 shell svc 13722-13723 ( 1007) [005] d..2 29484.632030: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56661              ps-13726 (13726) [005] d..2 29484.632035: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56662              ps-13726 (13726) [005] dn.3 29484.632038: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56663              ps-13726 (13726) [005] d..2 29484.632040: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56664            adbd-23485 ( 1007) [001] d..2 29484.632045: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56665 shell svc 13722-13723 ( 1007) [005] d..2 29484.632048: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56666          <idle>-0     (-----) [001] d..1 29484.632052: cpu_idle: state=0 cpu_id=1
56667              ps-13726 (13726) [005] d..2 29484.632053: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56668              ps-13726 (13726) [005] dn.3 29484.632056: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56669              ps-13726 (13726) [005] d..2 29484.632058: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56670          <idle>-0     (-----) [000] d.h3 29484.632061: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56671 shell svc 13722-13723 ( 1007) [005] d..2 29484.632066: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56672          <idle>-0     (-----) [000] dnh4 29484.632067: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56673              ps-13726 (13726) [005] d..2 29484.632071: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56674          <idle>-0     (-----) [000] .n.1 29484.632072: cpu_idle: state=4294967295 cpu_id=0
56675              ps-13726 (13726) [005] dn.3 29484.632074: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56676              ps-13726 (13726) [005] d..2 29484.632076: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56677          <idle>-0     (-----) [000] d..2 29484.632079: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56678 shell svc 13722-13723 ( 1007) [005] d..2 29484.632084: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56679   kworker/u17:2-23076 (23076) [000] d..2 29484.632087: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56680              ps-13726 (13726) [005] d..2 29484.632089: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56681              ps-13726 (13726) [005] dn.3 29484.632091: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56682   kworker/u17:2-23076 (23076) [000] d..3 29484.632092: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56683              ps-13726 (13726) [005] d..2 29484.632094: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56684 shell svc 13722-13723 ( 1007) [005] d..2 29484.632102: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56685              ps-13726 (13726) [005] d..2 29484.632107: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56686   kworker/u17:2-23076 (23076) [000] d..2 29484.632109: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56687              ps-13726 (13726) [005] dn.3 29484.632110: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56688              ps-13726 (13726) [005] d..2 29484.632112: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56689     kworker/0:0-13450 (13450) [000] d..2 29484.632114: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56690 shell svc 13722-13723 ( 1007) [005] d..2 29484.632120: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56691     kworker/0:0-13450 (13450) [000] d..3 29484.632123: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56692              ps-13726 (13726) [005] d..2 29484.632125: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56693              ps-13726 (13726) [005] dn.3 29484.632128: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56694          <idle>-0     (-----) [001] .n.1 29484.632128: cpu_idle: state=4294967295 cpu_id=1
56695              ps-13726 (13726) [005] d..2 29484.632130: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56696          <idle>-0     (-----) [001] d..2 29484.632135: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56697     kworker/0:0-13450 (13450) [000] d..2 29484.632137: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56698 shell svc 13722-13723 ( 1007) [005] d..2 29484.632138: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56699              ps-13726 (13726) [005] d..2 29484.632143: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56700          <idle>-0     (-----) [000] d..1 29484.632144: cpu_idle: state=0 cpu_id=0
56701              ps-13726 (13726) [005] dn.3 29484.632146: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56702              ps-13726 (13726) [005] d..2 29484.632148: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56703 shell svc 13722-13723 ( 1007) [005] d..2 29484.632156: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56704              ps-13726 (13726) [005] d..2 29484.632161: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56705              ps-13726 (13726) [005] dn.3 29484.632164: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56706              ps-13726 (13726) [005] d..2 29484.632166: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56707 shell svc 13722-13723 ( 1007) [005] d..2 29484.632174: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56708            adbd-23485 ( 1007) [001] d..2 29484.632178: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56709              ps-13726 (13726) [005] d..2 29484.632180: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56710              ps-13726 (13726) [005] dn.3 29484.632183: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56711          <idle>-0     (-----) [001] d..1 29484.632184: cpu_idle: state=0 cpu_id=1
56712              ps-13726 (13726) [005] d..2 29484.632185: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56713          <idle>-0     (-----) [000] d.h3 29484.632189: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56714 shell svc 13722-13723 ( 1007) [005] d..2 29484.632193: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56715          <idle>-0     (-----) [000] dnh4 29484.632195: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56716              ps-13726 (13726) [005] d..2 29484.632198: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56717          <idle>-0     (-----) [000] .n.1 29484.632200: cpu_idle: state=4294967295 cpu_id=0
56718              ps-13726 (13726) [005] dn.3 29484.632201: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56719              ps-13726 (13726) [005] d..2 29484.632203: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56720          <idle>-0     (-----) [000] d..2 29484.632206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56721 shell svc 13722-13723 ( 1007) [005] d..2 29484.632211: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56722   kworker/u17:2-23076 (23076) [000] d..2 29484.632213: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56723              ps-13726 (13726) [005] d..2 29484.632215: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56724   kworker/u17:2-23076 (23076) [000] d..3 29484.632218: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56725              ps-13726 (13726) [005] dn.3 29484.632218: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56726              ps-13726 (13726) [005] d..2 29484.632220: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56727 shell svc 13722-13723 ( 1007) [005] d..2 29484.632228: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56728              ps-13726 (13726) [005] d..2 29484.632233: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56729   kworker/u17:2-23076 (23076) [000] d..2 29484.632234: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56730              ps-13726 (13726) [005] dn.3 29484.632236: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56731              ps-13726 (13726) [005] d..2 29484.632238: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56732     kworker/0:0-13450 (13450) [000] d..2 29484.632239: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56733 shell svc 13722-13723 ( 1007) [005] d..2 29484.632246: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56734     kworker/0:0-13450 (13450) [000] d..3 29484.632248: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56735              ps-13726 (13726) [005] d..2 29484.632252: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56736          <idle>-0     (-----) [001] .n.1 29484.632253: cpu_idle: state=4294967295 cpu_id=1
56737              ps-13726 (13726) [005] dn.3 29484.632255: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56738              ps-13726 (13726) [005] d..2 29484.632257: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56739          <idle>-0     (-----) [001] d..2 29484.632259: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56740     kworker/0:0-13450 (13450) [000] d..2 29484.632261: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56741 shell svc 13722-13723 ( 1007) [005] d..2 29484.632265: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56742          <idle>-0     (-----) [000] d..1 29484.632268: cpu_idle: state=0 cpu_id=0
56743              ps-13726 (13726) [005] d..2 29484.632270: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56744              ps-13726 (13726) [005] dn.3 29484.632272: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56745              ps-13726 (13726) [005] d..2 29484.632275: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56746            adbd-23485 ( 1007) [001] d..2 29484.632276: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56747          <idle>-0     (-----) [001] d..1 29484.632282: cpu_idle: state=0 cpu_id=1
56748 shell svc 13722-13723 ( 1007) [005] d..2 29484.632282: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56749              ps-13726 (13726) [005] d..2 29484.632288: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56750              ps-13726 (13726) [005] dn.3 29484.632291: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56751              ps-13726 (13726) [005] d..2 29484.632293: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56752 shell svc 13722-13723 ( 1007) [005] d..2 29484.632301: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56753              ps-13726 (13726) [005] d..2 29484.632306: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56754              ps-13726 (13726) [005] dn.3 29484.632309: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56755              ps-13726 (13726) [005] d..2 29484.632311: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56756 shell svc 13722-13723 ( 1007) [005] d..2 29484.632319: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56757              ps-13726 (13726) [005] d..2 29484.632325: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56758              ps-13726 (13726) [005] dn.3 29484.632328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56759              ps-13726 (13726) [005] d..2 29484.632330: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56760 shell svc 13722-13723 ( 1007) [005] d..2 29484.632338: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56761              ps-13726 (13726) [005] d..2 29484.632344: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56762              ps-13726 (13726) [005] dn.3 29484.632347: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56763              ps-13726 (13726) [005] d..2 29484.632349: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56764 shell svc 13722-13723 ( 1007) [005] d..2 29484.632357: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56765              ps-13726 (13726) [005] d..2 29484.632363: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56766              ps-13726 (13726) [005] dn.3 29484.632365: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56767              ps-13726 (13726) [005] d..2 29484.632368: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56768          <idle>-0     (-----) [000] d.h3 29484.632375: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56769 shell svc 13722-13723 ( 1007) [005] d..2 29484.632376: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56770          <idle>-0     (-----) [000] dnh4 29484.632380: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56771              ps-13726 (13726) [005] d..2 29484.632380: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56772              ps-13726 (13726) [005] dn.3 29484.632383: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56773          <idle>-0     (-----) [000] .n.1 29484.632385: cpu_idle: state=4294967295 cpu_id=0
56774              ps-13726 (13726) [005] d..2 29484.632385: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56775          <idle>-0     (-----) [000] d..2 29484.632391: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56776 shell svc 13722-13723 ( 1007) [005] d..2 29484.632393: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56777   kworker/u17:2-23076 (23076) [000] d..2 29484.632397: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56778              ps-13726 (13726) [005] d..2 29484.632398: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56779              ps-13726 (13726) [005] dn.3 29484.632401: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56780   kworker/u17:2-23076 (23076) [000] d..3 29484.632403: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56781              ps-13726 (13726) [005] d..2 29484.632403: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56782 shell svc 13722-13723 ( 1007) [005] d..2 29484.632411: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56783              ps-13726 (13726) [005] d..2 29484.632416: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56784              ps-13726 (13726) [005] dn.3 29484.632419: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56785   kworker/u17:2-23076 (23076) [000] d..2 29484.632419: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56786              ps-13726 (13726) [005] d..2 29484.632422: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56787     kworker/0:0-13450 (13450) [000] d..2 29484.632425: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56788 shell svc 13722-13723 ( 1007) [005] d..2 29484.632430: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56789     kworker/0:0-13450 (13450) [000] d..3 29484.632434: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56790              ps-13726 (13726) [005] d..2 29484.632435: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56791              ps-13726 (13726) [005] dn.3 29484.632437: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56792              ps-13726 (13726) [005] d..2 29484.632440: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56793     kworker/0:0-13450 (13450) [000] d..2 29484.632442: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56794 shell svc 13722-13723 ( 1007) [005] d..2 29484.632447: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56795              ps-13726 (13726) [005] d..2 29484.632452: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56796            adbd-23484 ( 1007) [000] d..2 29484.632453: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56797              ps-13726 (13726) [005] dn.3 29484.632455: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56798              ps-13726 (13726) [005] d..2 29484.632457: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56799            adbd-23484 ( 1007) [000] d..3 29484.632459: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56800 shell svc 13722-13723 ( 1007) [005] d..2 29484.632465: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56801              ps-13726 (13726) [005] d..2 29484.632470: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56802              ps-13726 (13726) [005] dn.3 29484.632472: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56803              ps-13726 (13726) [005] d..2 29484.632474: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56804 shell svc 13722-13723 ( 1007) [005] d..2 29484.632482: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56805              ps-13726 (13726) [005] d..2 29484.632487: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56806              ps-13726 (13726) [005] dn.3 29484.632489: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56807              ps-13726 (13726) [005] d..2 29484.632492: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56808 shell svc 13722-13723 ( 1007) [005] d..2 29484.632499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56809            adbd-23484 ( 1007) [000] d..2 29484.632503: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56810              ps-13726 (13726) [005] d..2 29484.632506: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56811              ps-13726 (13726) [005] dn.3 29484.632509: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56812              ps-13726 (13726) [005] d..2 29484.632511: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56813 shell svc 13722-13723 ( 1007) [005] d..2 29484.632519: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56814              ps-13726 (13726) [005] d..2 29484.632524: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56815              ps-13726 (13726) [005] dn.3 29484.632527: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56816              ps-13726 (13726) [005] d..2 29484.632529: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56817 shell svc 13722-13723 ( 1007) [005] d..2 29484.632537: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56818              ps-13726 (13726) [005] d..2 29484.632542: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56819              ps-13726 (13726) [005] dn.3 29484.632545: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56820              ps-13726 (13726) [005] d..2 29484.632547: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56821 shell svc 13722-13723 ( 1007) [005] d..2 29484.632555: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56822              ps-13726 (13726) [005] d..2 29484.632561: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56823              ps-13726 (13726) [005] dn.3 29484.632564: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56824              ps-13726 (13726) [005] d..2 29484.632566: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56825 shell svc 13722-13723 ( 1007) [005] d..2 29484.632574: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56826              ps-13726 (13726) [005] d..2 29484.632579: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56827              ps-13726 (13726) [005] dn.3 29484.632582: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56828              ps-13726 (13726) [005] d..2 29484.632584: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56829 shell svc 13722-13723 ( 1007) [005] d..2 29484.632592: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56830            adbd-1007  ( 1007) [000] d..1 29484.632597: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56831              ps-13726 (13726) [005] d..2 29484.632597: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56832              ps-13726 (13726) [005] dn.3 29484.632600: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56833              ps-13726 (13726) [005] d..2 29484.632602: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56834            adbd-1007  ( 1007) [000] d..2 29484.632608: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56835 shell svc 13722-13723 ( 1007) [005] d..2 29484.632610: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56836          <idle>-0     (-----) [001] .n.1 29484.632612: cpu_idle: state=4294967295 cpu_id=1
56837              ps-13726 (13726) [005] d..2 29484.632615: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56838              ps-13726 (13726) [005] dn.3 29484.632617: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56839          <idle>-0     (-----) [001] d..2 29484.632619: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56840              ps-13726 (13726) [005] d..2 29484.632620: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56841 shell svc 13722-13723 ( 1007) [005] d..2 29484.632627: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56842            adbd-1007  ( 1007) [000] d..2 29484.632642: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56843          <idle>-0     (-----) [000] d..1 29484.632651: cpu_idle: state=0 cpu_id=0
56844            adbd-23485 ( 1007) [001] d..2 29484.632663: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56845          <idle>-0     (-----) [001] d..1 29484.632669: cpu_idle: state=0 cpu_id=1
56846          <idle>-0     (-----) [000] d.h3 29484.632686: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56847          <idle>-0     (-----) [000] dnh4 29484.632692: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56848          <idle>-0     (-----) [000] .n.1 29484.632698: cpu_idle: state=4294967295 cpu_id=0
56849          <idle>-0     (-----) [000] d..2 29484.632704: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56850   kworker/u17:2-23076 (23076) [000] d..2 29484.632713: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56851   kworker/u17:2-23076 (23076) [000] d..3 29484.632718: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56852   kworker/u17:2-23076 (23076) [000] d..2 29484.632735: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56853     kworker/0:0-13450 (13450) [000] d..2 29484.632740: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56854     kworker/0:0-13450 (13450) [000] d..3 29484.632749: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56855          <idle>-0     (-----) [001] .n.1 29484.632754: cpu_idle: state=4294967295 cpu_id=1
56856          <idle>-0     (-----) [001] d..2 29484.632760: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56857     kworker/0:0-13450 (13450) [000] d..2 29484.632763: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56858          <idle>-0     (-----) [000] d..1 29484.632770: cpu_idle: state=0 cpu_id=0
56859            adbd-23485 ( 1007) [001] d..2 29484.632805: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56860          <idle>-0     (-----) [001] d..1 29484.632811: cpu_idle: state=0 cpu_id=1
56861              ps-13726 (13726) [005] d..2 29484.632826: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56862              ps-13726 (13726) [005] dn.3 29484.632831: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56863              ps-13726 (13726) [005] d..2 29484.632834: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56864 shell svc 13722-13723 ( 1007) [005] d..2 29484.632845: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56865              ps-13726 (13726) [005] d..2 29484.632851: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56866              ps-13726 (13726) [005] dn.3 29484.632854: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56867              ps-13726 (13726) [005] d..2 29484.632856: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56868          <idle>-0     (-----) [000] d.h3 29484.632860: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56869 shell svc 13722-13723 ( 1007) [005] d..2 29484.632865: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56870          <idle>-0     (-----) [000] dnh4 29484.632865: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56871          <idle>-0     (-----) [000] .n.1 29484.632870: cpu_idle: state=4294967295 cpu_id=0
56872              ps-13726 (13726) [005] d..2 29484.632871: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56873              ps-13726 (13726) [005] dn.3 29484.632874: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56874          <idle>-0     (-----) [000] d..2 29484.632876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56875              ps-13726 (13726) [005] d..2 29484.632876: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56876   kworker/u17:2-23076 (23076) [000] d..2 29484.632883: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56877 shell svc 13722-13723 ( 1007) [005] d..2 29484.632884: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56878   kworker/u17:2-23076 (23076) [000] d..3 29484.632888: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56879              ps-13726 (13726) [005] d..2 29484.632890: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56880              ps-13726 (13726) [005] dn.3 29484.632892: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56881              ps-13726 (13726) [005] d..2 29484.632894: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56882 shell svc 13722-13723 ( 1007) [005] d..2 29484.632902: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56883   kworker/u17:2-23076 (23076) [000] d..2 29484.632905: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56884              ps-13726 (13726) [005] d..2 29484.632907: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56885     kworker/0:0-13450 (13450) [000] d..2 29484.632910: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56886              ps-13726 (13726) [005] dn.3 29484.632910: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56887              ps-13726 (13726) [005] d..2 29484.632912: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56888     kworker/0:0-13450 (13450) [000] d..3 29484.632919: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56889 shell svc 13722-13723 ( 1007) [005] d..2 29484.632920: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56890          <idle>-0     (-----) [001] .n.1 29484.632924: cpu_idle: state=4294967295 cpu_id=1
56891          <idle>-0     (-----) [001] d..2 29484.632930: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56892     kworker/0:0-13450 (13450) [000] d..2 29484.632932: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56893          <idle>-0     (-----) [000] d..1 29484.632939: cpu_idle: state=0 cpu_id=0
56894            adbd-23485 ( 1007) [001] d..2 29484.632946: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56895          <idle>-0     (-----) [001] d..1 29484.632952: cpu_idle: state=0 cpu_id=1
56896          <idle>-0     (-----) [000] d.h3 29484.633047: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56897          <idle>-0     (-----) [000] dnh4 29484.633056: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56898          <idle>-0     (-----) [000] .n.1 29484.633061: cpu_idle: state=4294967295 cpu_id=0
56899          <idle>-0     (-----) [000] d..2 29484.633067: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56900   kworker/u17:2-23076 (23076) [000] d..2 29484.633073: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56901   kworker/u17:2-23076 (23076) [000] d..3 29484.633078: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56902   kworker/u17:2-23076 (23076) [000] d..2 29484.633095: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56903     kworker/0:0-13450 (13450) [000] d..2 29484.633101: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56904     kworker/0:0-13450 (13450) [000] d..3 29484.633110: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56905     kworker/0:0-13450 (13450) [000] d..2 29484.633118: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
56906            adbd-23484 ( 1007) [000] d..2 29484.633129: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
56907            adbd-23484 ( 1007) [000] d..3 29484.633134: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
56908            adbd-23484 ( 1007) [000] d..2 29484.633178: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
56909            adbd-1007  ( 1007) [000] d..1 29484.633241: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56910            adbd-1007  ( 1007) [000] d..2 29484.633256: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56911          <idle>-0     (-----) [001] .n.1 29484.633260: cpu_idle: state=4294967295 cpu_id=1
56912          <idle>-0     (-----) [001] d..2 29484.633266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56913            adbd-1007  ( 1007) [000] d..2 29484.633289: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56914          <idle>-0     (-----) [000] d..1 29484.633298: cpu_idle: state=0 cpu_id=0
56915            adbd-23485 ( 1007) [001] d..2 29484.633311: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56916          <idle>-0     (-----) [001] d..1 29484.633318: cpu_idle: state=0 cpu_id=1
56917          <idle>-0     (-----) [000] d.h3 29484.633333: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56918          <idle>-0     (-----) [000] dnh4 29484.633339: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56919          <idle>-0     (-----) [000] .n.1 29484.633344: cpu_idle: state=4294967295 cpu_id=0
56920          <idle>-0     (-----) [000] d..2 29484.633351: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56921   kworker/u17:2-23076 (23076) [000] d..2 29484.633359: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56922   kworker/u17:2-23076 (23076) [000] d..3 29484.633365: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56923   kworker/u17:2-23076 (23076) [000] d..2 29484.633381: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56924     kworker/0:0-13450 (13450) [000] d..2 29484.633387: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56925     kworker/0:0-13450 (13450) [000] d..3 29484.633396: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56926          <idle>-0     (-----) [001] .n.1 29484.633401: cpu_idle: state=4294967295 cpu_id=1
56927          <idle>-0     (-----) [001] d..2 29484.633407: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56928     kworker/0:0-13450 (13450) [000] d..2 29484.633410: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56929          <idle>-0     (-----) [000] d..1 29484.633417: cpu_idle: state=0 cpu_id=0
56930            adbd-23485 ( 1007) [001] d..2 29484.633451: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56931          <idle>-0     (-----) [001] d..1 29484.633458: cpu_idle: state=0 cpu_id=1
56932          <idle>-0     (-----) [000] d.h3 29484.633480: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56933          <idle>-0     (-----) [000] dnh4 29484.633485: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56934          <idle>-0     (-----) [000] .n.1 29484.633491: cpu_idle: state=4294967295 cpu_id=0
56935          <idle>-0     (-----) [000] d..2 29484.633497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56936   kworker/u17:2-23076 (23076) [000] d..2 29484.633503: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56937   kworker/u17:2-23076 (23076) [000] d..3 29484.633509: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56938              ps-13726 (13726) [005] d..2 29484.633521: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56939   kworker/u17:2-23076 (23076) [000] d..2 29484.633525: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56940              ps-13726 (13726) [005] dn.3 29484.633525: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56941              ps-13726 (13726) [005] d..2 29484.633529: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56942     kworker/0:0-13450 (13450) [000] d..2 29484.633530: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
56943     kworker/0:0-13450 (13450) [000] d..3 29484.633539: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
56944 shell svc 13722-13723 ( 1007) [005] d..2 29484.633540: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56945          <idle>-0     (-----) [001] .n.1 29484.633544: cpu_idle: state=4294967295 cpu_id=1
56946              ps-13726 (13726) [005] d..2 29484.633547: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56947              ps-13726 (13726) [005] dn.3 29484.633550: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56948          <idle>-0     (-----) [001] d..2 29484.633550: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
56949     kworker/0:0-13450 (13450) [000] d..2 29484.633552: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56950              ps-13726 (13726) [005] d..2 29484.633553: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56951          <idle>-0     (-----) [000] d..1 29484.633559: cpu_idle: state=0 cpu_id=0
56952 shell svc 13722-13723 ( 1007) [005] d..2 29484.633561: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56953            adbd-23485 ( 1007) [001] d..2 29484.633565: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56954              ps-13726 (13726) [005] d..2 29484.633567: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56955              ps-13726 (13726) [005] dn.3 29484.633570: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56956          <idle>-0     (-----) [001] d..1 29484.633571: cpu_idle: state=0 cpu_id=1
56957              ps-13726 (13726) [005] d..2 29484.633572: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56958 shell svc 13722-13723 ( 1007) [005] d..2 29484.633580: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56959              ps-13726 (13726) [005] d..2 29484.633586: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56960              ps-13726 (13726) [005] dn.3 29484.633589: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56961              ps-13726 (13726) [005] d..2 29484.633591: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56962 shell svc 13722-13723 ( 1007) [005] d..2 29484.633599: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56963              ps-13726 (13726) [005] d..2 29484.633604: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56964              ps-13726 (13726) [005] dn.3 29484.633607: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56965              ps-13726 (13726) [005] d..2 29484.633609: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56966 shell svc 13722-13723 ( 1007) [005] d..2 29484.633617: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56967              ps-13726 (13726) [005] d..2 29484.633623: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56968              ps-13726 (13726) [005] dn.3 29484.633626: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56969              ps-13726 (13726) [005] d..2 29484.633628: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56970 shell svc 13722-13723 ( 1007) [005] d..2 29484.633636: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56971              ps-13726 (13726) [005] d..2 29484.633642: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56972              ps-13726 (13726) [005] dn.3 29484.633644: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56973              ps-13726 (13726) [005] d..2 29484.633647: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56974 shell svc 13722-13723 ( 1007) [005] d..2 29484.633655: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56975          <idle>-0     (-----) [000] d.h3 29484.633657: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56976              ps-13726 (13726) [005] d..2 29484.633660: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56977              ps-13726 (13726) [005] dn.3 29484.633662: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56978          <idle>-0     (-----) [000] dnh4 29484.633663: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
56979              ps-13726 (13726) [005] d..2 29484.633665: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56980          <idle>-0     (-----) [000] .n.1 29484.633668: cpu_idle: state=4294967295 cpu_id=0
56981 shell svc 13722-13723 ( 1007) [005] d..2 29484.633672: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56982          <idle>-0     (-----) [000] d..2 29484.633674: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
56983              ps-13726 (13726) [005] d..2 29484.633678: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56984   kworker/u17:2-23076 (23076) [000] d..2 29484.633680: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56985              ps-13726 (13726) [005] dn.3 29484.633681: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56986              ps-13726 (13726) [005] d..2 29484.633683: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56987   kworker/u17:2-23076 (23076) [000] d..3 29484.633685: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
56988 shell svc 13722-13723 ( 1007) [005] d..2 29484.633691: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56989              ps-13726 (13726) [005] d..2 29484.633696: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56990              ps-13726 (13726) [005] dn.3 29484.633699: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56991   kworker/u17:2-23076 (23076) [000] d..2 29484.633701: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
56992              ps-13726 (13726) [005] d..2 29484.633701: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56993     kworker/0:0-13450 (13450) [000] d..2 29484.633707: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
56994 shell svc 13722-13723 ( 1007) [005] d..2 29484.633709: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
56995              ps-13726 (13726) [005] d..2 29484.633714: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56996     kworker/0:0-13450 (13450) [000] d..3 29484.633716: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
56997              ps-13726 (13726) [005] dn.3 29484.633717: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
56998              ps-13726 (13726) [005] d..2 29484.633719: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
56999 shell svc 13722-13723 ( 1007) [005] d..2 29484.633741: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57000     kworker/0:0-13450 (13450) [000] d..2 29484.633742: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57001              ps-13726 (13726) [005] d..2 29484.633746: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57002              ps-13726 (13726) [005] dn.3 29484.633749: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57003              ps-13726 (13726) [005] d..2 29484.633752: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57004            adbd-23484 ( 1007) [000] d..2 29484.633754: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57005            adbd-23484 ( 1007) [000] d..3 29484.633760: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57006 shell svc 13722-13723 ( 1007) [005] d..2 29484.633760: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57007              ps-13726 (13726) [005] d..2 29484.633766: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57008              ps-13726 (13726) [005] dn.3 29484.633769: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57009              ps-13726 (13726) [005] d..2 29484.633771: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57010 shell svc 13722-13723 ( 1007) [005] d..2 29484.633779: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57011              ps-13726 (13726) [005] d..2 29484.633785: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57012              ps-13726 (13726) [005] dn.3 29484.633788: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57013              ps-13726 (13726) [005] d..2 29484.633790: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57014 shell svc 13722-13723 ( 1007) [005] d..2 29484.633798: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57015              ps-13726 (13726) [005] d..2 29484.633803: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57016            adbd-23484 ( 1007) [000] d..2 29484.633806: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57017              ps-13726 (13726) [005] dn.3 29484.633806: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57018              ps-13726 (13726) [005] d..2 29484.633808: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57019 shell svc 13722-13723 ( 1007) [005] d..2 29484.633816: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57020              ps-13726 (13726) [005] d..2 29484.633822: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57021              ps-13726 (13726) [005] dn.3 29484.633824: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57022              ps-13726 (13726) [005] d..2 29484.633827: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57023 shell svc 13722-13723 ( 1007) [005] d..2 29484.633835: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57024              ps-13726 (13726) [005] d..2 29484.633840: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57025              ps-13726 (13726) [005] dn.3 29484.633843: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57026              ps-13726 (13726) [005] d..2 29484.633845: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57027 shell svc 13722-13723 ( 1007) [005] d..2 29484.633853: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57028              ps-13726 (13726) [005] d..2 29484.633859: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57029              ps-13726 (13726) [005] dn.3 29484.633861: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57030              ps-13726 (13726) [005] d..2 29484.633864: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57031 shell svc 13722-13723 ( 1007) [005] d..2 29484.633872: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57032              ps-13726 (13726) [005] d..2 29484.633877: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57033              ps-13726 (13726) [005] dn.3 29484.633880: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57034              ps-13726 (13726) [005] d..2 29484.633882: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57035            adbd-1007  ( 1007) [000] d..1 29484.633884: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57036 shell svc 13722-13723 ( 1007) [005] d..2 29484.633890: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57037            adbd-1007  ( 1007) [000] d..2 29484.633895: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57038          <idle>-0     (-----) [001] .n.1 29484.633900: cpu_idle: state=4294967295 cpu_id=1
57039          <idle>-0     (-----) [001] d..2 29484.633907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57040            adbd-1007  ( 1007) [000] d..2 29484.633933: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57041          <idle>-0     (-----) [000] d..1 29484.633942: cpu_idle: state=0 cpu_id=0
57042              ps-13726 (13726) [005] d..2 29484.633947: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57043            adbd-23485 ( 1007) [001] d..2 29484.633951: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57044              ps-13726 (13726) [005] dn.3 29484.633951: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57045              ps-13726 (13726) [005] d..2 29484.633955: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57046          <idle>-0     (-----) [001] d..1 29484.633956: cpu_idle: state=0 cpu_id=1
57047          <idle>-0     (-----) [000] d.h3 29484.633960: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57048 shell svc 13722-13723 ( 1007) [005] d..2 29484.633965: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57049          <idle>-0     (-----) [000] dnh4 29484.633966: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57050          <idle>-0     (-----) [000] .n.1 29484.633972: cpu_idle: state=4294967295 cpu_id=0
57051          <idle>-0     (-----) [000] d..2 29484.633978: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57052   kworker/u17:2-23076 (23076) [000] d..2 29484.633986: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57053   kworker/u17:2-23076 (23076) [000] d..3 29484.633991: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57054   kworker/u17:2-23076 (23076) [000] d..2 29484.634007: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57055     kworker/0:0-13450 (13450) [000] d..2 29484.634013: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57056     kworker/0:0-13450 (13450) [000] d..3 29484.634021: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57057          <idle>-0     (-----) [001] .n.1 29484.634026: cpu_idle: state=4294967295 cpu_id=1
57058          <idle>-0     (-----) [001] d..2 29484.634031: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57059     kworker/0:0-13450 (13450) [000] d..2 29484.634035: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57060          <idle>-0     (-----) [000] d..1 29484.634042: cpu_idle: state=0 cpu_id=0
57061            adbd-23485 ( 1007) [001] d..2 29484.634075: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57062          <idle>-0     (-----) [001] d..1 29484.634080: cpu_idle: state=0 cpu_id=1
57063          <idle>-0     (-----) [000] d.h3 29484.634105: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57064          <idle>-0     (-----) [000] dnh4 29484.634111: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57065          <idle>-0     (-----) [000] .n.1 29484.634116: cpu_idle: state=4294967295 cpu_id=0
57066          <idle>-0     (-----) [000] d..2 29484.634122: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57067   kworker/u17:2-23076 (23076) [000] d..2 29484.634128: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57068   kworker/u17:2-23076 (23076) [000] d..3 29484.634133: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57069   kworker/u17:2-23076 (23076) [000] d..2 29484.634150: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57070     kworker/0:0-13450 (13450) [000] d..2 29484.634155: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57071     kworker/0:0-13450 (13450) [000] d..3 29484.634164: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57072          <idle>-0     (-----) [001] .n.1 29484.634169: cpu_idle: state=4294967295 cpu_id=1
57073          <idle>-0     (-----) [001] d..2 29484.634175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57074     kworker/0:0-13450 (13450) [000] d..2 29484.634178: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57075          <idle>-0     (-----) [000] d..1 29484.634185: cpu_idle: state=0 cpu_id=0
57076            adbd-23485 ( 1007) [001] d..2 29484.634192: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57077          <idle>-0     (-----) [001] d..1 29484.634197: cpu_idle: state=0 cpu_id=1
57078          <idle>-0     (-----) [000] d.h3 29484.634301: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57079          <idle>-0     (-----) [000] dnh4 29484.634307: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57080          <idle>-0     (-----) [000] .n.1 29484.634312: cpu_idle: state=4294967295 cpu_id=0
57081          <idle>-0     (-----) [000] d..2 29484.634318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57082   kworker/u17:2-23076 (23076) [000] d..2 29484.634324: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57083   kworker/u17:2-23076 (23076) [000] d..3 29484.634329: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57084   kworker/u17:2-23076 (23076) [000] d..2 29484.634346: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57085     kworker/0:0-13450 (13450) [000] d..2 29484.634351: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
57086     kworker/0:0-13450 (13450) [000] d..3 29484.634360: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
57087     kworker/0:0-13450 (13450) [000] d..2 29484.634368: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57088            adbd-23484 ( 1007) [000] d..2 29484.634379: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57089            adbd-23484 ( 1007) [000] d..3 29484.634385: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57090            adbd-23484 ( 1007) [000] d..2 29484.634428: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57091              ps-13726 (13726) [005] d..2 29484.634478: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57092              ps-13726 (13726) [005] dn.3 29484.634483: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57093            adbd-1007  ( 1007) [000] d..1 29484.634485: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57094              ps-13726 (13726) [005] d..2 29484.634486: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57095            adbd-1007  ( 1007) [000] d..2 29484.634497: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57096 shell svc 13722-13723 ( 1007) [005] d..2 29484.634498: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57097          <idle>-0     (-----) [001] .n.1 29484.634502: cpu_idle: state=4294967295 cpu_id=1
57098              ps-13726 (13726) [005] d..2 29484.634505: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57099          <idle>-0     (-----) [001] d..2 29484.634507: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57100              ps-13726 (13726) [005] dn.3 29484.634508: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57101              ps-13726 (13726) [005] d..2 29484.634510: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57102 shell svc 13722-13723 ( 1007) [005] d..2 29484.634519: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57103              ps-13726 (13726) [005] d..2 29484.634524: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57104              ps-13726 (13726) [005] dn.3 29484.634527: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57105              ps-13726 (13726) [005] d..2 29484.634530: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57106            adbd-1007  ( 1007) [000] d..2 29484.634531: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57107 shell svc 13722-13723 ( 1007) [005] d..2 29484.634538: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57108          <idle>-0     (-----) [000] d..1 29484.634540: cpu_idle: state=0 cpu_id=0
57109              ps-13726 (13726) [005] d..2 29484.634543: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57110              ps-13726 (13726) [005] dn.3 29484.634546: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57111              ps-13726 (13726) [005] d..2 29484.634548: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57112            adbd-23485 ( 1007) [001] d..2 29484.634551: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57113          <idle>-0     (-----) [001] d..1 29484.634556: cpu_idle: state=0 cpu_id=1
57114 shell svc 13722-13723 ( 1007) [005] d..2 29484.634556: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57115              ps-13726 (13726) [005] d..2 29484.634562: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57116          <idle>-0     (-----) [000] d.h3 29484.634563: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57117              ps-13726 (13726) [005] dn.3 29484.634564: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57118              ps-13726 (13726) [005] d..2 29484.634567: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57119          <idle>-0     (-----) [000] dnh4 29484.634569: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57120 shell svc 13722-13723 ( 1007) [005] d..2 29484.634574: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57121          <idle>-0     (-----) [000] .n.1 29484.634575: cpu_idle: state=4294967295 cpu_id=0
57122              ps-13726 (13726) [005] d..2 29484.634580: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57123          <idle>-0     (-----) [000] d..2 29484.634581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57124              ps-13726 (13726) [005] dn.3 29484.634583: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57125              ps-13726 (13726) [005] d..2 29484.634585: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57126   kworker/u17:2-23076 (23076) [000] d..2 29484.634589: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57127 shell svc 13722-13723 ( 1007) [005] d..2 29484.634593: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57128   kworker/u17:2-23076 (23076) [000] d..3 29484.634595: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57129              ps-13726 (13726) [005] d..2 29484.634598: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57130              ps-13726 (13726) [005] dn.3 29484.634600: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57131              ps-13726 (13726) [005] d..2 29484.634602: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57132 shell svc 13722-13723 ( 1007) [005] d..2 29484.634610: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57133   kworker/u17:2-23076 (23076) [000] d..2 29484.634612: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57134              ps-13726 (13726) [005] d..2 29484.634615: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57135     kworker/0:0-13450 (13450) [000] d..2 29484.634618: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57136              ps-13726 (13726) [005] dn.3 29484.634618: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57137              ps-13726 (13726) [005] d..2 29484.634621: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57138     kworker/0:0-13450 (13450) [000] d..3 29484.634627: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57139 shell svc 13722-13723 ( 1007) [005] d..2 29484.634629: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57140          <idle>-0     (-----) [001] .n.1 29484.634631: cpu_idle: state=4294967295 cpu_id=1
57141              ps-13726 (13726) [005] d..2 29484.634634: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57142          <idle>-0     (-----) [001] d..2 29484.634636: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57143              ps-13726 (13726) [005] dn.3 29484.634637: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57144              ps-13726 (13726) [005] d..2 29484.634639: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57145     kworker/0:0-13450 (13450) [000] d..2 29484.634641: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57146 shell svc 13722-13723 ( 1007) [005] d..2 29484.634647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57147          <idle>-0     (-----) [000] d..1 29484.634648: cpu_idle: state=0 cpu_id=0
57148              ps-13726 (13726) [005] d..2 29484.634652: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57149              ps-13726 (13726) [005] dn.3 29484.634655: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57150              ps-13726 (13726) [005] d..2 29484.634657: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57151 shell svc 13722-13723 ( 1007) [005] d..2 29484.634665: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57152              ps-13726 (13726) [005] d..2 29484.634670: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57153              ps-13726 (13726) [005] dn.3 29484.634673: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57154              ps-13726 (13726) [005] d..2 29484.634675: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57155            adbd-23485 ( 1007) [001] d..2 29484.634680: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57156 shell svc 13722-13723 ( 1007) [005] d..2 29484.634683: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57157          <idle>-0     (-----) [001] d..1 29484.634684: cpu_idle: state=0 cpu_id=1
57158              ps-13726 (13726) [005] d..2 29484.634689: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57159          <idle>-0     (-----) [000] d.h3 29484.634690: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57160              ps-13726 (13726) [005] dn.3 29484.634691: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57161              ps-13726 (13726) [005] d..2 29484.634694: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57162          <idle>-0     (-----) [000] dnh4 29484.634696: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57163          <idle>-0     (-----) [000] .n.1 29484.634701: cpu_idle: state=4294967295 cpu_id=0
57164 shell svc 13722-13723 ( 1007) [005] d..2 29484.634701: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57165              ps-13726 (13726) [005] d..2 29484.634707: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57166          <idle>-0     (-----) [000] d..2 29484.634707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57167              ps-13726 (13726) [005] dn.3 29484.634710: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57168              ps-13726 (13726) [005] d..2 29484.634712: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57169   kworker/u17:2-23076 (23076) [000] d..2 29484.634714: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57170   kworker/u17:2-23076 (23076) [000] d..3 29484.634719: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57171 shell svc 13722-13723 ( 1007) [005] d..2 29484.634720: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57172              ps-13726 (13726) [005] d..2 29484.634725: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57173              ps-13726 (13726) [005] dn.3 29484.634728: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57174              ps-13726 (13726) [005] d..2 29484.634730: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57175   kworker/u17:2-23076 (23076) [000] d..2 29484.634736: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57176 shell svc 13722-13723 ( 1007) [005] d..2 29484.634738: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57177     kworker/0:0-13450 (13450) [000] d..2 29484.634741: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57178              ps-13726 (13726) [005] d..2 29484.634744: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57179              ps-13726 (13726) [005] dn.3 29484.634746: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57180              ps-13726 (13726) [005] d..2 29484.634749: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57181     kworker/0:0-13450 (13450) [000] d..3 29484.634750: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57182          <idle>-0     (-----) [001] .n.1 29484.634755: cpu_idle: state=4294967295 cpu_id=1
57183 shell svc 13722-13723 ( 1007) [005] d..2 29484.634757: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57184          <idle>-0     (-----) [001] d..2 29484.634760: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57185     kworker/0:0-13450 (13450) [000] d..2 29484.634763: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57186          <idle>-0     (-----) [000] d..1 29484.634770: cpu_idle: state=0 cpu_id=0
57187            adbd-23485 ( 1007) [001] d..2 29484.634775: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57188          <idle>-0     (-----) [001] d..1 29484.634779: cpu_idle: state=0 cpu_id=1
57189              ps-13726 (13726) [005] d..2 29484.634813: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57190              ps-13726 (13726) [005] dn.3 29484.634817: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57191              ps-13726 (13726) [005] d..2 29484.634819: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57192          <idle>-0     (-----) [000] d.h3 29484.634825: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57193 shell svc 13722-13723 ( 1007) [005] d..2 29484.634830: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57194          <idle>-0     (-----) [000] dnh4 29484.634830: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57195          <idle>-0     (-----) [000] .n.1 29484.634835: cpu_idle: state=4294967295 cpu_id=0
57196          <idle>-0     (-----) [000] d..2 29484.634841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57197   kworker/u17:2-23076 (23076) [000] d..2 29484.634847: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57198   kworker/u17:2-23076 (23076) [000] d..3 29484.634852: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57199   kworker/u17:2-23076 (23076) [000] d..2 29484.634868: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57200     kworker/0:0-13450 (13450) [000] d..2 29484.634874: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
57201     kworker/0:0-13450 (13450) [000] d..3 29484.634883: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
57202     kworker/0:0-13450 (13450) [000] d..2 29484.634891: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57203            adbd-23484 ( 1007) [000] d..2 29484.634902: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57204            adbd-23484 ( 1007) [000] d..3 29484.634908: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57205            adbd-23484 ( 1007) [000] d..2 29484.634952: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57206            adbd-1007  ( 1007) [000] d..1 29484.635024: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57207            adbd-1007  ( 1007) [000] d..2 29484.635036: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57208          <idle>-0     (-----) [001] .n.1 29484.635040: cpu_idle: state=4294967295 cpu_id=1
57209          <idle>-0     (-----) [001] d..2 29484.635045: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57210            adbd-1007  ( 1007) [000] d..2 29484.635070: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57211          <idle>-0     (-----) [000] d..1 29484.635079: cpu_idle: state=0 cpu_id=0
57212            adbd-23485 ( 1007) [001] d..2 29484.635089: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57213          <idle>-0     (-----) [001] d..1 29484.635093: cpu_idle: state=0 cpu_id=1
57214          <idle>-0     (-----) [000] d.h3 29484.635103: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57215          <idle>-0     (-----) [000] dnh4 29484.635113: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57216          <idle>-0     (-----) [000] .n.1 29484.635123: cpu_idle: state=4294967295 cpu_id=0
57217          <idle>-0     (-----) [000] d..2 29484.635131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57218   kworker/u17:2-23076 (23076) [000] d..2 29484.635139: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57219   kworker/u17:2-23076 (23076) [000] d..3 29484.635144: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57220   kworker/u17:2-23076 (23076) [000] d..2 29484.635162: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57221     kworker/0:0-13450 (13450) [000] d..2 29484.635167: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57222     kworker/0:0-13450 (13450) [000] d..3 29484.635176: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57223          <idle>-0     (-----) [001] .n.1 29484.635180: cpu_idle: state=4294967295 cpu_id=1
57224     kworker/0:0-13450 (13450) [000] d..2 29484.635185: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57225          <idle>-0     (-----) [001] d..2 29484.635186: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57226          <idle>-0     (-----) [000] d..1 29484.635192: cpu_idle: state=0 cpu_id=0
57227            adbd-23485 ( 1007) [001] d..2 29484.635230: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57228          <idle>-0     (-----) [001] d..1 29484.635235: cpu_idle: state=0 cpu_id=1
57229              ps-13726 (13726) [005] d..2 29484.635243: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57230              ps-13726 (13726) [005] dn.3 29484.635248: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57231              ps-13726 (13726) [005] d..2 29484.635251: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57232          <idle>-0     (-----) [000] d.h3 29484.635260: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57233 shell svc 13722-13723 ( 1007) [005] d..2 29484.635262: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57234          <idle>-0     (-----) [000] dnh4 29484.635266: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57235              ps-13726 (13726) [005] d..2 29484.635269: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57236          <idle>-0     (-----) [000] .n.1 29484.635271: cpu_idle: state=4294967295 cpu_id=0
57237              ps-13726 (13726) [005] dn.3 29484.635271: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57238              ps-13726 (13726) [005] d..2 29484.635275: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57239          <idle>-0     (-----) [000] d..2 29484.635277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57240 shell svc 13722-13723 ( 1007) [005] d..2 29484.635283: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57241   kworker/u17:2-23076 (23076) [000] d..2 29484.635283: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57242   kworker/u17:2-23076 (23076) [000] d..3 29484.635288: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57243              ps-13726 (13726) [005] d..2 29484.635289: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57244              ps-13726 (13726) [005] dn.3 29484.635292: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57245              ps-13726 (13726) [005] d..2 29484.635295: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57246 shell svc 13722-13723 ( 1007) [005] d..2 29484.635303: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57247   kworker/u17:2-23076 (23076) [000] d..2 29484.635304: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57248     kworker/0:0-13450 (13450) [000] d..2 29484.635309: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57249              ps-13726 (13726) [005] d..2 29484.635309: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57250              ps-13726 (13726) [005] dn.3 29484.635312: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57251              ps-13726 (13726) [005] d..2 29484.635314: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57252     kworker/0:0-13450 (13450) [000] d..3 29484.635321: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57253 shell svc 13722-13723 ( 1007) [005] d..2 29484.635322: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57254          <idle>-0     (-----) [001] .n.1 29484.635325: cpu_idle: state=4294967295 cpu_id=1
57255              ps-13726 (13726) [005] d..2 29484.635327: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57256     kworker/0:0-13450 (13450) [000] d..2 29484.635330: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57257              ps-13726 (13726) [005] dn.3 29484.635331: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57258          <idle>-0     (-----) [001] d..2 29484.635331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57259              ps-13726 (13726) [005] d..2 29484.635333: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57260          <idle>-0     (-----) [000] d..1 29484.635337: cpu_idle: state=0 cpu_id=0
57261 shell svc 13722-13723 ( 1007) [005] d..2 29484.635341: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57262              ps-13726 (13726) [005] d..2 29484.635346: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57263            adbd-23485 ( 1007) [001] d..2 29484.635347: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57264              ps-13726 (13726) [005] dn.3 29484.635349: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57265              ps-13726 (13726) [005] d..2 29484.635351: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57266          <idle>-0     (-----) [001] d..1 29484.635352: cpu_idle: state=0 cpu_id=1
57267 shell svc 13722-13723 ( 1007) [005] d..2 29484.635359: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57268              ps-13726 (13726) [005] d..2 29484.635364: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57269              ps-13726 (13726) [005] dn.3 29484.635367: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57270              ps-13726 (13726) [005] d..2 29484.635370: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57271 shell svc 13722-13723 ( 1007) [005] d..2 29484.635377: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57272              ps-13726 (13726) [005] d..2 29484.635383: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57273              ps-13726 (13726) [005] dn.3 29484.635385: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57274              ps-13726 (13726) [005] d..2 29484.635388: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57275 shell svc 13722-13723 ( 1007) [005] d..2 29484.635396: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57276              ps-13726 (13726) [005] d..2 29484.635401: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57277              ps-13726 (13726) [005] dn.3 29484.635405: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57278              ps-13726 (13726) [005] d..2 29484.635407: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57279          <idle>-0     (-----) [000] d.h3 29484.635408: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57280          <idle>-0     (-----) [000] dnh4 29484.635414: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57281 shell svc 13722-13723 ( 1007) [005] d..2 29484.635415: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57282          <idle>-0     (-----) [000] .n.1 29484.635419: cpu_idle: state=4294967295 cpu_id=0
57283              ps-13726 (13726) [005] d..2 29484.635419: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57284              ps-13726 (13726) [005] dn.3 29484.635422: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57285              ps-13726 (13726) [005] d..2 29484.635424: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57286          <idle>-0     (-----) [000] d..2 29484.635426: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57287 shell svc 13722-13723 ( 1007) [005] d..2 29484.635432: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57288   kworker/u17:2-23076 (23076) [000] d..2 29484.635432: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57289              ps-13726 (13726) [005] d..2 29484.635437: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57290   kworker/u17:2-23076 (23076) [000] d..3 29484.635437: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57291              ps-13726 (13726) [005] dn.3 29484.635439: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57292              ps-13726 (13726) [005] d..2 29484.635442: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57293 shell svc 13722-13723 ( 1007) [005] d..2 29484.635449: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57294   kworker/u17:2-23076 (23076) [000] d..2 29484.635454: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57295              ps-13726 (13726) [005] d..2 29484.635454: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57296              ps-13726 (13726) [005] dn.3 29484.635457: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57297              ps-13726 (13726) [005] d..2 29484.635459: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57298     kworker/0:0-13450 (13450) [000] d..2 29484.635460: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
57299 shell svc 13722-13723 ( 1007) [005] d..2 29484.635467: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57300     kworker/0:0-13450 (13450) [000] d..3 29484.635469: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
57301              ps-13726 (13726) [005] d..2 29484.635472: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57302              ps-13726 (13726) [005] dn.3 29484.635475: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57303     kworker/0:0-13450 (13450) [000] d..2 29484.635477: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57304              ps-13726 (13726) [005] d..2 29484.635477: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57305 shell svc 13722-13723 ( 1007) [005] d..2 29484.635485: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57306            adbd-23484 ( 1007) [000] d..2 29484.635489: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57307            adbd-23484 ( 1007) [000] d..3 29484.635494: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57308            adbd-23484 ( 1007) [000] d..2 29484.635536: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57309            adbd-1007  ( 1007) [000] d..1 29484.635606: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57310            adbd-1007  ( 1007) [000] d..2 29484.635618: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57311          <idle>-0     (-----) [001] .n.1 29484.635622: cpu_idle: state=4294967295 cpu_id=1
57312          <idle>-0     (-----) [001] d..2 29484.635628: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57313            adbd-1007  ( 1007) [000] d..2 29484.635645: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57314          <idle>-0     (-----) [000] d..1 29484.635654: cpu_idle: state=0 cpu_id=0
57315            adbd-23485 ( 1007) [001] d..2 29484.635671: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57316          <idle>-0     (-----) [001] d..1 29484.635677: cpu_idle: state=0 cpu_id=1
57317          <idle>-0     (-----) [000] d.h3 29484.635687: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57318          <idle>-0     (-----) [000] dnh4 29484.635694: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57319          <idle>-0     (-----) [000] .n.1 29484.635699: cpu_idle: state=4294967295 cpu_id=0
57320          <idle>-0     (-----) [000] d..2 29484.635706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57321   kworker/u17:2-23076 (23076) [000] d..2 29484.635713: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57322   kworker/u17:2-23076 (23076) [000] d..3 29484.635719: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57323   kworker/u17:2-23076 (23076) [000] d..2 29484.635735: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57324     kworker/0:0-13450 (13450) [000] d..2 29484.635741: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57325     kworker/0:0-13450 (13450) [000] d..3 29484.635750: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57326          <idle>-0     (-----) [001] .n.1 29484.635755: cpu_idle: state=4294967295 cpu_id=1
57327     kworker/0:0-13450 (13450) [000] d..2 29484.635759: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57328          <idle>-0     (-----) [001] d..2 29484.635760: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57329          <idle>-0     (-----) [000] d..1 29484.635766: cpu_idle: state=0 cpu_id=0
57330            adbd-23485 ( 1007) [001] d..2 29484.635804: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57331          <idle>-0     (-----) [001] d..1 29484.635809: cpu_idle: state=0 cpu_id=1
57332          <idle>-0     (-----) [000] d.h3 29484.635851: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57333          <idle>-0     (-----) [000] dnh4 29484.635856: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57334          <idle>-0     (-----) [000] .n.1 29484.635861: cpu_idle: state=4294967295 cpu_id=0
57335          <idle>-0     (-----) [000] d..2 29484.635867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57336   kworker/u17:2-23076 (23076) [000] d..2 29484.635875: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57337   kworker/u17:2-23076 (23076) [000] d..3 29484.635880: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57338   kworker/u17:2-23076 (23076) [000] d..2 29484.635896: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57339     kworker/0:0-13450 (13450) [000] d..2 29484.635901: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57340     kworker/0:0-13450 (13450) [000] d..3 29484.635910: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57341          <idle>-0     (-----) [001] .n.1 29484.635915: cpu_idle: state=4294967295 cpu_id=1
57342     kworker/0:0-13450 (13450) [000] d..2 29484.635918: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57343          <idle>-0     (-----) [001] d..2 29484.635920: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57344          <idle>-0     (-----) [000] d..1 29484.635925: cpu_idle: state=0 cpu_id=0
57345            adbd-23485 ( 1007) [001] d..2 29484.635935: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57346          <idle>-0     (-----) [001] d..1 29484.635939: cpu_idle: state=0 cpu_id=1
57347          <idle>-0     (-----) [000] d.h3 29484.636034: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57348          <idle>-0     (-----) [000] dnh4 29484.636040: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57349          <idle>-0     (-----) [000] .n.1 29484.636044: cpu_idle: state=4294967295 cpu_id=0
57350          <idle>-0     (-----) [000] d..2 29484.636050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57351   kworker/u17:2-23076 (23076) [000] d..2 29484.636057: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57352   kworker/u17:2-23076 (23076) [000] d..3 29484.636062: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57353   kworker/u17:2-23076 (23076) [000] d..2 29484.636077: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57354     kworker/0:0-13450 (13450) [000] d..2 29484.636083: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
57355     kworker/0:0-13450 (13450) [000] d..3 29484.636093: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
57356     kworker/0:0-13450 (13450) [000] d..2 29484.636101: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57357            adbd-23484 ( 1007) [000] d..2 29484.636111: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57358            adbd-23484 ( 1007) [000] d..3 29484.636117: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57359            adbd-23484 ( 1007) [000] d..2 29484.636159: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57360            adbd-1007  ( 1007) [000] d..2 29484.636215: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57361          <idle>-0     (-----) [000] d..1 29484.636223: cpu_idle: state=0 cpu_id=0
57362              ps-13726 (13726) [005] d..2 29484.636596: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57363              ps-13726 (13726) [005] dn.3 29484.636601: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57364              ps-13726 (13726) [005] d..2 29484.636604: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57365 shell svc 13722-13723 ( 1007) [005] d..2 29484.636612: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57366 shell svc 13722-13723 ( 1007) [005] d..2 29484.636624: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57367          <idle>-0     (-----) [000] dnh2 29484.636629: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57368              ps-13726 (13726) [005] d..2 29484.636631: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57369          <idle>-0     (-----) [000] .n.1 29484.636633: cpu_idle: state=4294967295 cpu_id=0
57370              ps-13726 (13726) [005] dn.3 29484.636634: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57371              ps-13726 (13726) [005] d..2 29484.636636: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57372          <idle>-0     (-----) [000] d..2 29484.636639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
57373 shell svc 13722-13723 ( 1007) [005] d..2 29484.636645: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57374              ps-13726 (13726) [005] d..2 29484.636651: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57375              ps-13726 (13726) [005] dn.3 29484.636653: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57376              ps-13726 (13726) [005] d..2 29484.636655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57377 shell svc 13722-13723 ( 1007) [005] d..2 29484.636664: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57378              ps-13726 (13726) [005] d..2 29484.636669: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57379              ps-13726 (13726) [005] dn.3 29484.636671: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57380              ps-13726 (13726) [005] d..2 29484.636674: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57381            adbd-1007  ( 1007) [000] d..1 29484.636674: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57382 shell svc 13722-13723 ( 1007) [005] d..2 29484.636682: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57383            adbd-1007  ( 1007) [000] d..2 29484.636685: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57384              ps-13726 (13726) [005] d..2 29484.636687: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57385          <idle>-0     (-----) [001] .n.1 29484.636689: cpu_idle: state=4294967295 cpu_id=1
57386              ps-13726 (13726) [005] dn.3 29484.636690: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57387              ps-13726 (13726) [005] d..2 29484.636692: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57388          <idle>-0     (-----) [001] d..2 29484.636694: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57389 shell svc 13722-13723 ( 1007) [005] d..2 29484.636700: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57390              ps-13726 (13726) [005] d..2 29484.636705: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57391              ps-13726 (13726) [005] dn.3 29484.636708: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57392              ps-13726 (13726) [005] d..2 29484.636710: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57393 shell svc 13722-13723 ( 1007) [005] d..2 29484.636718: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57394            adbd-1007  ( 1007) [000] d..2 29484.636720: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57395              ps-13726 (13726) [005] d..2 29484.636722: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57396              ps-13726 (13726) [005] dn.3 29484.636725: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57397              ps-13726 (13726) [005] d..2 29484.636728: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57398          <idle>-0     (-----) [000] d..1 29484.636728: cpu_idle: state=0 cpu_id=0
57399 shell svc 13722-13723 ( 1007) [005] d..2 29484.636736: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57400            adbd-23485 ( 1007) [001] d..2 29484.636738: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57401              ps-13726 (13726) [005] d..2 29484.636741: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57402          <idle>-0     (-----) [001] d..1 29484.636742: cpu_idle: state=0 cpu_id=1
57403              ps-13726 (13726) [005] dn.3 29484.636744: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57404              ps-13726 (13726) [005] d..2 29484.636746: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57405          <idle>-0     (-----) [000] d.h3 29484.636746: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57406          <idle>-0     (-----) [000] dnh4 29484.636752: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57407 shell svc 13722-13723 ( 1007) [005] d..2 29484.636754: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57408          <idle>-0     (-----) [000] .n.1 29484.636757: cpu_idle: state=4294967295 cpu_id=0
57409              ps-13726 (13726) [005] d..2 29484.636759: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57410              ps-13726 (13726) [005] dn.3 29484.636762: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57411          <idle>-0     (-----) [000] d..2 29484.636764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57412              ps-13726 (13726) [005] d..2 29484.636765: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57413   kworker/u17:2-23076 (23076) [000] d..2 29484.636772: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57414 shell svc 13722-13723 ( 1007) [005] d..2 29484.636772: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57415   kworker/u17:2-23076 (23076) [000] d..3 29484.636777: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57416              ps-13726 (13726) [005] d..2 29484.636778: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57417              ps-13726 (13726) [005] dn.3 29484.636781: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57418              ps-13726 (13726) [005] d..2 29484.636783: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57419 shell svc 13722-13723 ( 1007) [005] d..2 29484.636791: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57420   kworker/u17:2-23076 (23076) [000] d..2 29484.636795: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57421              ps-13726 (13726) [005] d..2 29484.636796: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57422              ps-13726 (13726) [005] dn.3 29484.636799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57423     kworker/0:0-13450 (13450) [000] d..2 29484.636800: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57424              ps-13726 (13726) [005] d..2 29484.636801: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57425 shell svc 13722-13723 ( 1007) [005] d..2 29484.636809: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57426     kworker/0:0-13450 (13450) [000] d..3 29484.636810: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57427              ps-13726 (13726) [005] d..2 29484.636814: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57428          <idle>-0     (-----) [001] .n.1 29484.636815: cpu_idle: state=4294967295 cpu_id=1
57429              ps-13726 (13726) [005] dn.3 29484.636817: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57430              ps-13726 (13726) [005] d..2 29484.636819: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57431          <idle>-0     (-----) [001] d..2 29484.636820: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57432     kworker/0:0-13450 (13450) [000] d..2 29484.636823: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57433 shell svc 13722-13723 ( 1007) [005] d..2 29484.636827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57434          <idle>-0     (-----) [000] d..1 29484.636831: cpu_idle: state=0 cpu_id=0
57435              ps-13726 (13726) [005] d..2 29484.636832: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57436              ps-13726 (13726) [005] dn.3 29484.636834: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57437              ps-13726 (13726) [005] d..2 29484.636837: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57438 shell svc 13722-13723 ( 1007) [005] d..2 29484.636844: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57439              ps-13726 (13726) [005] d..2 29484.636849: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57440              ps-13726 (13726) [005] dn.3 29484.636852: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57441              ps-13726 (13726) [005] d..2 29484.636854: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57442 shell svc 13722-13723 ( 1007) [005] d..2 29484.636862: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57443            adbd-23485 ( 1007) [001] d..2 29484.636864: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57444              ps-13726 (13726) [005] d..2 29484.636867: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57445          <idle>-0     (-----) [001] d..1 29484.636868: cpu_idle: state=0 cpu_id=1
57446              ps-13726 (13726) [005] dn.3 29484.636870: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57447              ps-13726 (13726) [005] d..2 29484.636872: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57448          <idle>-0     (-----) [000] d.h3 29484.636875: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57449 shell svc 13722-13723 ( 1007) [005] d..2 29484.636880: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57450          <idle>-0     (-----) [000] dnh4 29484.636880: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57451              ps-13726 (13726) [005] d..2 29484.636885: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57452          <idle>-0     (-----) [000] .n.1 29484.636886: cpu_idle: state=4294967295 cpu_id=0
57453              ps-13726 (13726) [005] dn.3 29484.636888: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57454              ps-13726 (13726) [005] d..2 29484.636890: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57455          <idle>-0     (-----) [000] d..2 29484.636892: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57456 shell svc 13722-13723 ( 1007) [005] d..2 29484.636898: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57457   kworker/u17:2-23076 (23076) [000] d..2 29484.636899: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57458   kworker/u17:2-23076 (23076) [000] d..3 29484.636904: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57459              ps-13726 (13726) [005] d..2 29484.636904: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57460              ps-13726 (13726) [005] dn.3 29484.636907: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57461              ps-13726 (13726) [005] d..2 29484.636909: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57462 shell svc 13722-13723 ( 1007) [005] d..2 29484.636917: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57463   kworker/u17:2-23076 (23076) [000] d..2 29484.636920: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57464              ps-13726 (13726) [005] d..2 29484.636922: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57465     kworker/0:0-13450 (13450) [000] d..2 29484.636925: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57466              ps-13726 (13726) [005] dn.3 29484.636925: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57467              ps-13726 (13726) [005] d..2 29484.636928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57468     kworker/0:0-13450 (13450) [000] d..3 29484.636934: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57469 shell svc 13722-13723 ( 1007) [005] d..2 29484.636936: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57470          <idle>-0     (-----) [001] .n.1 29484.636938: cpu_idle: state=4294967295 cpu_id=1
57471              ps-13726 (13726) [005] d..2 29484.636941: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57472              ps-13726 (13726) [005] dn.3 29484.636943: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57473          <idle>-0     (-----) [001] d..2 29484.636944: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57474              ps-13726 (13726) [005] d..2 29484.636946: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57475     kworker/0:0-13450 (13450) [000] d..2 29484.636947: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57476 shell svc 13722-13723 ( 1007) [005] d..2 29484.636953: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57477          <idle>-0     (-----) [000] d..1 29484.636954: cpu_idle: state=0 cpu_id=0
57478              ps-13726 (13726) [005] d..2 29484.636958: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57479            adbd-23485 ( 1007) [001] d..2 29484.636959: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57480              ps-13726 (13726) [005] dn.3 29484.636961: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57481              ps-13726 (13726) [005] d..2 29484.636963: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57482          <idle>-0     (-----) [001] d..1 29484.636964: cpu_idle: state=0 cpu_id=1
57483 shell svc 13722-13723 ( 1007) [005] d..2 29484.636971: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57484              ps-13726 (13726) [005] d..2 29484.636977: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57485              ps-13726 (13726) [005] dn.3 29484.636980: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57486              ps-13726 (13726) [005] d..2 29484.636983: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57487 shell svc 13722-13723 ( 1007) [005] d..2 29484.636990: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57488              ps-13726 (13726) [005] d..2 29484.636996: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57489              ps-13726 (13726) [005] dn.3 29484.636999: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57490              ps-13726 (13726) [005] d..2 29484.637001: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57491 shell svc 13722-13723 ( 1007) [005] d..2 29484.637009: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57492              ps-13726 (13726) [005] d..2 29484.637015: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57493              ps-13726 (13726) [005] dn.3 29484.637017: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57494              ps-13726 (13726) [005] d..2 29484.637020: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57495 shell svc 13722-13723 ( 1007) [005] d..2 29484.637028: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57496              ps-13726 (13726) [005] d..2 29484.637033: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57497              ps-13726 (13726) [005] dn.3 29484.637035: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57498              ps-13726 (13726) [005] d..2 29484.637038: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57499 shell svc 13722-13723 ( 1007) [005] d..2 29484.637046: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57500              ps-13726 (13726) [005] d..2 29484.637052: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57501          <idle>-0     (-----) [000] d.h3 29484.637054: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57502              ps-13726 (13726) [005] dn.3 29484.637059: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57503          <idle>-0     (-----) [000] dnh4 29484.637061: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57504          <idle>-0     (-----) [000] .n.1 29484.637067: cpu_idle: state=4294967295 cpu_id=0
57505          <idle>-0     (-----) [001] d.s2 29484.637071: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
57506          <idle>-0     (-----) [000] d..2 29484.637074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57507   kworker/u17:2-23076 (23076) [000] d..2 29484.637080: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57508          <idle>-0     (-----) [001] dns3 29484.637100: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
57509   kworker/u17:2-23076 (23076) [000] d..3 29484.637102: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57510              ps-13726 (13726) [005] dnH3 29484.637109: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57511          <idle>-0     (-----) [001] .n.1 29484.637110: cpu_idle: state=4294967295 cpu_id=1
57512          <idle>-0     (-----) [001] d..2 29484.637115: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
57513   kworker/u17:2-23076 (23076) [000] d..2 29484.637118: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57514              ps-13726 (13726) [005] dnH4 29484.637119: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57515              ps-13726 (13726) [005] dnH3 29484.637120: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
57516     kworker/0:0-13450 (13450) [000] d..2 29484.637124: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
57517              ps-13726 (13726) [005] d..2 29484.637136: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57518     rcu_preempt-7     (    7) [001] d..2 29484.637138: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57519     kworker/0:0-13450 (13450) [000] d..3 29484.637142: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
57520          <idle>-0     (-----) [001] d..1 29484.637144: cpu_idle: state=0 cpu_id=1
57521 shell svc 13722-13723 ( 1007) [005] d..2 29484.637147: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57522     kworker/0:0-13450 (13450) [000] d..2 29484.637150: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57523              ps-13726 (13726) [005] d..2 29484.637153: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57524              ps-13726 (13726) [005] dn.3 29484.637156: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57525              ps-13726 (13726) [005] d..2 29484.637159: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57526            adbd-23484 ( 1007) [000] d..2 29484.637162: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57527 shell svc 13722-13723 ( 1007) [005] d..2 29484.637167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57528            adbd-23484 ( 1007) [000] d..3 29484.637169: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57529              ps-13726 (13726) [005] d..2 29484.637173: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57530              ps-13726 (13726) [005] dn.3 29484.637175: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57531              ps-13726 (13726) [005] d..2 29484.637178: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57532 shell svc 13722-13723 ( 1007) [005] d..2 29484.637186: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57533              ps-13726 (13726) [005] d..2 29484.637191: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57534              ps-13726 (13726) [005] dn.3 29484.637193: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57535              ps-13726 (13726) [005] d..2 29484.637196: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57536 shell svc 13722-13723 ( 1007) [005] d..2 29484.637204: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57537              ps-13726 (13726) [005] d..2 29484.637209: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57538            adbd-23484 ( 1007) [000] d..2 29484.637210: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57539              ps-13726 (13726) [005] dn.3 29484.637211: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57540              ps-13726 (13726) [005] d..2 29484.637214: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57541 shell svc 13722-13723 ( 1007) [005] d..2 29484.637221: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57542              ps-13726 (13726) [005] d..2 29484.637226: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57543              ps-13726 (13726) [005] dn.3 29484.637229: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57544              ps-13726 (13726) [005] d..2 29484.637231: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57545 shell svc 13722-13723 ( 1007) [005] d..2 29484.637239: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57546              ps-13726 (13726) [005] d..2 29484.637244: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57547              ps-13726 (13726) [005] dn.3 29484.637247: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57548              ps-13726 (13726) [005] d..2 29484.637249: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57549 shell svc 13722-13723 ( 1007) [005] d..2 29484.637257: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57550              ps-13726 (13726) [005] d..2 29484.637262: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57551              ps-13726 (13726) [005] dn.3 29484.637264: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57552              ps-13726 (13726) [005] d..2 29484.637267: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57553 shell svc 13722-13723 ( 1007) [005] d..2 29484.637275: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57554              ps-13726 (13726) [005] d..2 29484.637280: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57555              ps-13726 (13726) [005] dn.3 29484.637282: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57556              ps-13726 (13726) [005] d..2 29484.637284: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57557 shell svc 13722-13723 ( 1007) [005] d..2 29484.637292: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57558          <idle>-0     (-----) [003] dnh2 29484.637295: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
57559              ps-13726 (13726) [005] d..2 29484.637297: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57560            adbd-1007  ( 1007) [000] d..1 29484.637299: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57561              ps-13726 (13726) [005] dn.3 29484.637300: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57562          <idle>-0     (-----) [003] .n.1 29484.637302: cpu_idle: state=4294967295 cpu_id=3
57563              ps-13726 (13726) [005] d..2 29484.637302: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57564 shell svc 13722-13723 ( 1007) [005] d..2 29484.637310: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57565          <idle>-0     (-----) [003] d..2 29484.637311: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
57566            adbd-1007  ( 1007) [000] d..2 29484.637312: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57567              ps-13726 (13726) [005] d..2 29484.637315: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57568          <idle>-0     (-----) [001] .n.1 29484.637316: cpu_idle: state=4294967295 cpu_id=1
57569              ps-13726 (13726) [005] dn.3 29484.637318: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57570              ps-13726 (13726) [005] d..2 29484.637320: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57571          <idle>-0     (-----) [007] .n.1 29484.637321: cpu_idle: state=4294967295 cpu_id=7
57572          <idle>-0     (-----) [001] d..2 29484.637322: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57573 shell svc 13722-13723 ( 1007) [005] d..2 29484.637328: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57574          <idle>-0     (-----) [007] d..2 29484.637330: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57575         sugov:0-559   (  559) [003] .... 29484.637332: clk_set_rate: pwrcl_clk 1420800000
57576              ps-13726 (13726) [005] d..2 29484.637333: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57577              ps-13726 (13726) [005] dn.3 29484.637335: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57578              ps-13726 (13726) [005] d..2 29484.637338: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57579         sugov:0-559   (  559) [003] .... 29484.637342: clk_set_rate: cpu3_pwrcl_clk 1612800000
57580 shell svc 13722-13723 ( 1007) [005] d..2 29484.637345: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57581            adbd-1007  ( 1007) [000] d..2 29484.637346: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57582         sugov:0-559   (  559) [003] .... 29484.637350: clk_set_rate: cpu2_pwrcl_clk 1612800000
57583              ps-13726 (13726) [005] d..2 29484.637350: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57584              ps-13726 (13726) [005] dn.3 29484.637353: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57585              ps-13726 (13726) [005] d..2 29484.637355: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57586          <idle>-0     (-----) [000] d..1 29484.637355: cpu_idle: state=0 cpu_id=0
57587         sugov:0-559   (  559) [003] .... 29484.637357: clk_set_rate: cpu1_pwrcl_clk 1612800000
57588 shell svc 13722-13723 ( 1007) [005] d..2 29484.637363: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57589         sugov:0-559   (  559) [003] .... 29484.637363: clk_set_rate: cpu0_pwrcl_clk 1420800000
57590            adbd-23485 ( 1007) [001] d..2 29484.637369: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57591          <idle>-0     (-----) [001] d..1 29484.637379: cpu_idle: state=0 cpu_id=1
57592          <idle>-0     (-----) [000] d.h3 29484.637396: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57593          <idle>-0     (-----) [000] dnh4 29484.637409: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57594          <idle>-0     (-----) [000] .n.1 29484.637420: cpu_idle: state=4294967295 cpu_id=0
57595          <idle>-0     (-----) [000] d..2 29484.637431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57596   kworker/u17:2-23076 (23076) [000] d..2 29484.637440: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57597   kworker/u17:2-23076 (23076) [000] d..3 29484.637445: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57598   kworker/u17:2-23076 (23076) [000] d..2 29484.637462: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57599     kworker/0:0-13450 (13450) [000] d..2 29484.637469: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
57600         sugov:0-559   (  559) [003] .... 29484.637474: cpu_frequency: state=1420800 cpu_id=0
57601         sugov:4-560   (  560) [007] .... 29484.637484: clk_set_rate: perfcl_clk 2246400000
57602         sugov:4-560   (  560) [007] .... 29484.637485: clk_set_rate: cpu7_perfcl_clk 1843200000
57603         sugov:0-559   (  559) [003] .... 29484.637486: cpu_frequency: state=1420800 cpu_id=1
57604         sugov:0-559   (  559) [003] .... 29484.637489: cpu_frequency: state=1420800 cpu_id=2
57605         sugov:4-560   (  560) [007] .... 29484.637489: clk_set_rate: cpu6_perfcl_clk 1843200000
57606         sugov:0-559   (  559) [003] .... 29484.637491: cpu_frequency: state=1420800 cpu_id=3
57607     kworker/0:0-13450 (13450) [000] d..3 29484.637493: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57608         sugov:4-560   (  560) [007] .... 29484.637494: clk_set_rate: cpu5_perfcl_clk 1843200000
57609         sugov:4-560   (  560) [007] .... 29484.637498: clk_set_rate: cpu4_perfcl_clk 2246400000
57610         sugov:4-560   (  560) [007] .... 29484.637503: cpu_frequency: state=2246400 cpu_id=4
57611         sugov:0-559   (  559) [003] d..2 29484.637505: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
57612     kworker/0:0-13450 (13450) [000] d..2 29484.637508: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57613          <idle>-0     (-----) [000] d..1 29484.637517: cpu_idle: state=0 cpu_id=0
57614            adbd-23485 ( 1007) [003] d..2 29484.637576: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57615          <idle>-0     (-----) [003] d..1 29484.637586: cpu_idle: state=2 cpu_id=3
57616          <idle>-0     (-----) [000] d.h3 29484.637615: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57617          <idle>-0     (-----) [000] dnh4 29484.637621: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57618          <idle>-0     (-----) [000] .n.1 29484.637627: cpu_idle: state=4294967295 cpu_id=0
57619         sugov:4-560   (  560) [007] d..2 29484.637630: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
57620          <idle>-0     (-----) [000] d..2 29484.637633: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57621          <idle>-0     (-----) [007] d..1 29484.637635: cpu_idle: state=2 cpu_id=7
57622   kworker/u17:2-23076 (23076) [000] d..2 29484.637640: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57623   kworker/u17:2-23076 (23076) [000] d..3 29484.637646: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57624   kworker/u17:2-23076 (23076) [000] d..2 29484.637662: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57625     kworker/0:0-13450 (13450) [000] d..2 29484.637667: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57626     kworker/0:0-13450 (13450) [000] d..3 29484.637676: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57627     kworker/0:0-13450 (13450) [000] d..2 29484.637690: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57628          <idle>-0     (-----) [000] d..1 29484.637698: cpu_idle: state=0 cpu_id=0
57629              ps-13726 (13726) [005] d..2 29484.637777: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57630              ps-13726 (13726) [005] dn.3 29484.637781: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57631              ps-13726 (13726) [005] d..2 29484.637785: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57632 shell svc 13722-13723 ( 1007) [005] d..2 29484.637794: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57633              ps-13726 (13726) [005] d..2 29484.637799: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57634              ps-13726 (13726) [005] dn.3 29484.637802: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57635              ps-13726 (13726) [005] d..2 29484.637804: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57636 shell svc 13722-13723 ( 1007) [005] d..2 29484.637811: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57637              ps-13726 (13726) [005] d..2 29484.637815: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57638          <idle>-0     (-----) [000] d.h3 29484.637817: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57639              ps-13726 (13726) [005] dn.3 29484.637818: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57640              ps-13726 (13726) [005] d..2 29484.637820: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57641          <idle>-0     (-----) [000] dnh4 29484.637823: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57642 shell svc 13722-13723 ( 1007) [005] d..2 29484.637827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57643          <idle>-0     (-----) [000] .n.1 29484.637829: cpu_idle: state=4294967295 cpu_id=0
57644              ps-13726 (13726) [005] d..2 29484.637831: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57645              ps-13726 (13726) [005] dn.3 29484.637834: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57646              ps-13726 (13726) [005] d..2 29484.637836: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57647          <idle>-0     (-----) [000] d..2 29484.637836: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57648   kworker/u17:2-23076 (23076) [000] d..2 29484.637842: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57649 shell svc 13722-13723 ( 1007) [005] d..2 29484.637842: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57650              ps-13726 (13726) [005] d..2 29484.637846: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57651   kworker/u17:2-23076 (23076) [000] d..3 29484.637849: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57652              ps-13726 (13726) [005] dn.3 29484.637849: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57653              ps-13726 (13726) [005] d..2 29484.637851: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57654          <idle>-0     (-----) [003] dns3 29484.637852: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
57655 shell svc 13722-13723 ( 1007) [005] d..2 29484.637858: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57656              ps-13726 (13726) [005] d..2 29484.637861: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57657              ps-13726 (13726) [005] dn.3 29484.637865: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57658   kworker/u17:2-23076 (23076) [000] d..2 29484.637865: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57659              ps-13726 (13726) [005] d..2 29484.637867: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57660          <idle>-0     (-----) [003] .n.1 29484.637867: cpu_idle: state=4294967295 cpu_id=3
57661     kworker/0:0-13450 (13450) [000] d..2 29484.637872: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
57662 shell svc 13722-13723 ( 1007) [005] d..2 29484.637873: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57663          <idle>-0     (-----) [003] d..2 29484.637877: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57664              ps-13726 (13726) [005] d..2 29484.637878: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57665              ps-13726 (13726) [005] dn.3 29484.637881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57666     kworker/0:0-13450 (13450) [000] d..3 29484.637881: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
57667              ps-13726 (13726) [005] d..2 29484.637883: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57668 shell svc 13722-13723 ( 1007) [005] d..2 29484.637890: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57669     kworker/0:0-13450 (13450) [000] d..2 29484.637890: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57670              ps-13726 (13726) [005] d..2 29484.637894: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57671              ps-13726 (13726) [005] dn.3 29484.637896: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57672              ps-13726 (13726) [005] d..2 29484.637898: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57673            adbd-23484 ( 1007) [000] d..2 29484.637903: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57674            adbd-23485 ( 1007) [003] d..2 29484.637903: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57675 shell svc 13722-13723 ( 1007) [005] d..2 29484.637905: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57676              ps-13726 (13726) [005] d..2 29484.637909: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57677            adbd-23484 ( 1007) [000] d..3 29484.637909: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57678              ps-13726 (13726) [005] dn.3 29484.637911: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57679          <idle>-0     (-----) [003] d..1 29484.637912: cpu_idle: state=0 cpu_id=3
57680              ps-13726 (13726) [005] d..2 29484.637913: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57681 shell svc 13722-13723 ( 1007) [005] d..2 29484.637920: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57682              ps-13726 (13726) [005] d..2 29484.637925: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57683              ps-13726 (13726) [005] dn.3 29484.637927: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57684              ps-13726 (13726) [005] d..2 29484.637929: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57685 shell svc 13722-13723 ( 1007) [005] d..2 29484.637936: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57686              ps-13726 (13726) [005] d..2 29484.637940: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57687              ps-13726 (13726) [005] dn.3 29484.637942: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57688              ps-13726 (13726) [005] d..2 29484.637944: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57689 shell svc 13722-13723 ( 1007) [005] d..2 29484.637951: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57690            adbd-23484 ( 1007) [000] d..2 29484.637954: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57691              ps-13726 (13726) [005] d..2 29484.637956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57692              ps-13726 (13726) [005] dn.3 29484.637959: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57693              ps-13726 (13726) [005] d..2 29484.637961: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57694 shell svc 13722-13723 ( 1007) [005] d..2 29484.637967: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57695              ps-13726 (13726) [005] d..2 29484.637972: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57696              ps-13726 (13726) [005] dn.3 29484.637974: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57697              ps-13726 (13726) [005] d..2 29484.637976: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57698 shell svc 13722-13723 ( 1007) [005] d..2 29484.637983: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57699              ps-13726 (13726) [005] d..2 29484.637987: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57700              ps-13726 (13726) [005] dn.3 29484.637989: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57701              ps-13726 (13726) [005] d..2 29484.637991: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57702 shell svc 13722-13723 ( 1007) [005] d..2 29484.637998: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57703          <idle>-0     (-----) [007] dnh2 29484.638010: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
57704          <idle>-0     (-----) [007] .n.1 29484.638014: cpu_idle: state=4294967295 cpu_id=7
57705          <idle>-0     (-----) [007] d..2 29484.638018: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
57706         sugov:4-560   (  560) [007] .... 29484.638024: cpu_frequency: state=2246400 cpu_id=5
57707         sugov:4-560   (  560) [007] .... 29484.638027: cpu_frequency: state=2246400 cpu_id=6
57708         sugov:4-560   (  560) [007] .... 29484.638028: cpu_frequency: state=2246400 cpu_id=7
57709         sugov:4-560   (  560) [007] d..2 29484.638036: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
57710            adbd-1007  ( 1007) [000] d..1 29484.638038: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57711          <idle>-0     (-----) [007] d..1 29484.638040: cpu_idle: state=2 cpu_id=7
57712              ps-13726 (13726) [005] d..2 29484.638047: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57713            adbd-1007  ( 1007) [000] d..2 29484.638049: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57714              ps-13726 (13726) [005] dn.3 29484.638051: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57715              ps-13726 (13726) [005] d..2 29484.638053: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57716          <idle>-0     (-----) [003] .n.1 29484.638055: cpu_idle: state=4294967295 cpu_id=3
57717          <idle>-0     (-----) [003] d..2 29484.638062: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57718 shell svc 13722-13723 ( 1007) [005] d..2 29484.638063: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57719            adbd-1007  ( 1007) [000] d..2 29484.638087: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57720          <idle>-0     (-----) [000] d..1 29484.638097: cpu_idle: state=0 cpu_id=0
57721              ps-13726 (13726) [005] d..2 29484.638106: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57722              ps-13726 (13726) [005] dn.3 29484.638110: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57723              ps-13726 (13726) [005] d..2 29484.638112: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57724            adbd-23485 ( 1007) [003] d..2 29484.638114: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57725 shell svc 13722-13723 ( 1007) [005] d..2 29484.638120: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57726          <idle>-0     (-----) [003] d..1 29484.638122: cpu_idle: state=0 cpu_id=3
57727          <idle>-0     (-----) [000] d.h3 29484.638126: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57728          <idle>-0     (-----) [000] dnh4 29484.638132: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57729          <idle>-0     (-----) [000] .n.1 29484.638138: cpu_idle: state=4294967295 cpu_id=0
57730          <idle>-0     (-----) [000] d..2 29484.638145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57731   kworker/u17:2-23076 (23076) [000] d..2 29484.638153: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57732   kworker/u17:2-23076 (23076) [000] d..3 29484.638159: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57733   kworker/u17:2-23076 (23076) [000] d..2 29484.638176: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57734     kworker/0:0-13450 (13450) [000] d..2 29484.638182: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57735     kworker/0:0-13450 (13450) [000] d..3 29484.638192: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57736          <idle>-0     (-----) [003] .n.1 29484.638197: cpu_idle: state=4294967295 cpu_id=3
57737          <idle>-0     (-----) [003] d..2 29484.638204: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57738     kworker/0:0-13450 (13450) [000] d..2 29484.638207: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57739          <idle>-0     (-----) [000] d..1 29484.638215: cpu_idle: state=0 cpu_id=0
57740            adbd-23485 ( 1007) [003] d..2 29484.638254: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57741          <idle>-0     (-----) [003] d..1 29484.638261: cpu_idle: state=0 cpu_id=3
57742          <idle>-0     (-----) [000] d.h3 29484.638283: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57743          <idle>-0     (-----) [000] dnh4 29484.638289: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57744          <idle>-0     (-----) [000] .n.1 29484.638294: cpu_idle: state=4294967295 cpu_id=0
57745          <idle>-0     (-----) [000] d..2 29484.638302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57746   kworker/u17:2-23076 (23076) [000] d..2 29484.638309: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57747   kworker/u17:2-23076 (23076) [000] d..3 29484.638315: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57748   kworker/u17:2-23076 (23076) [000] d..2 29484.638332: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57749     kworker/0:0-13450 (13450) [000] d..2 29484.638338: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57750     kworker/0:0-13450 (13450) [000] d..3 29484.638347: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57751          <idle>-0     (-----) [003] .n.1 29484.638353: cpu_idle: state=4294967295 cpu_id=3
57752          <idle>-0     (-----) [003] d..2 29484.638360: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57753     kworker/0:0-13450 (13450) [000] d..2 29484.638362: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57754          <idle>-0     (-----) [000] d..1 29484.638369: cpu_idle: state=0 cpu_id=0
57755            adbd-23485 ( 1007) [003] d..2 29484.638379: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57756          <idle>-0     (-----) [003] d..1 29484.638386: cpu_idle: state=0 cpu_id=3
57757          <idle>-0     (-----) [000] d.h3 29484.638467: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57758          <idle>-0     (-----) [000] dnh4 29484.638473: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57759          <idle>-0     (-----) [000] .n.1 29484.638478: cpu_idle: state=4294967295 cpu_id=0
57760          <idle>-0     (-----) [000] d..2 29484.638485: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57761   kworker/u17:2-23076 (23076) [000] d..2 29484.638492: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57762   kworker/u17:2-23076 (23076) [000] d..3 29484.638498: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57763   kworker/u17:2-23076 (23076) [000] d..2 29484.638515: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57764     kworker/0:0-13450 (13450) [000] d..2 29484.638521: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
57765     kworker/0:0-13450 (13450) [000] d..3 29484.638538: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
57766          <idle>-0     (-----) [001] .n.1 29484.638543: cpu_idle: state=4294967295 cpu_id=1
57767          <idle>-0     (-----) [001] d..2 29484.638550: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
57768     kworker/0:0-13450 (13450) [000] d..2 29484.638553: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57769          <idle>-0     (-----) [000] d..1 29484.638561: cpu_idle: state=0 cpu_id=0
57770            adbd-23484 ( 1007) [001] d..2 29484.638562: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
57771            adbd-23484 ( 1007) [001] d..3 29484.638576: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
57772            adbd-23484 ( 1007) [001] d..2 29484.638623: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57773            adbd-1007  ( 1007) [001] d..1 29484.638690: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57774            adbd-1007  ( 1007) [001] d..2 29484.638703: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57775          <idle>-0     (-----) [003] .n.1 29484.638707: cpu_idle: state=4294967295 cpu_id=3
57776          <idle>-0     (-----) [003] d..2 29484.638714: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57777              ps-13726 (13726) [005] d..2 29484.638724: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57778              ps-13726 (13726) [005] dn.3 29484.638728: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57779              ps-13726 (13726) [005] d..2 29484.638731: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57780            adbd-1007  ( 1007) [001] d..2 29484.638740: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57781 shell svc 13722-13723 ( 1007) [005] d..2 29484.638741: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57782              ps-13726 (13726) [005] d..2 29484.638747: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57783          <idle>-0     (-----) [001] d..1 29484.638748: cpu_idle: state=0 cpu_id=1
57784              ps-13726 (13726) [005] dn.3 29484.638749: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57785              ps-13726 (13726) [005] d..2 29484.638752: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57786 shell svc 13722-13723 ( 1007) [005] d..2 29484.638760: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57787            adbd-23485 ( 1007) [003] d..2 29484.638762: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57788              ps-13726 (13726) [005] d..2 29484.638764: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57789              ps-13726 (13726) [005] dn.3 29484.638767: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57790              ps-13726 (13726) [005] d..2 29484.638769: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57791          <idle>-0     (-----) [003] d..1 29484.638770: cpu_idle: state=0 cpu_id=3
57792          <idle>-0     (-----) [000] d.h3 29484.638770: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57793 shell svc 13722-13723 ( 1007) [005] d..2 29484.638776: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57794          <idle>-0     (-----) [000] dnh4 29484.638776: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57795              ps-13726 (13726) [005] d..2 29484.638780: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57796          <idle>-0     (-----) [000] .n.1 29484.638782: cpu_idle: state=4294967295 cpu_id=0
57797              ps-13726 (13726) [005] dn.3 29484.638783: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57798              ps-13726 (13726) [005] d..2 29484.638785: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57799          <idle>-0     (-----) [000] d..2 29484.638788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57800 shell svc 13722-13723 ( 1007) [005] d..2 29484.638792: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57801              ps-13726 (13726) [005] d..2 29484.638796: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57802   kworker/u17:2-23076 (23076) [000] d..2 29484.638796: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57803              ps-13726 (13726) [005] dn.3 29484.638798: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57804              ps-13726 (13726) [005] d..2 29484.638801: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57805   kworker/u17:2-23076 (23076) [000] d..3 29484.638802: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57806 shell svc 13722-13723 ( 1007) [005] d..2 29484.638807: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57807              ps-13726 (13726) [005] d..2 29484.638812: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57808              ps-13726 (13726) [005] dn.3 29484.638815: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57809              ps-13726 (13726) [005] d..2 29484.638817: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57810   kworker/u17:2-23076 (23076) [000] d..2 29484.638819: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57811 shell svc 13722-13723 ( 1007) [005] d..2 29484.638823: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57812     kworker/0:0-13450 (13450) [000] d..2 29484.638825: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57813              ps-13726 (13726) [005] d..2 29484.638828: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57814              ps-13726 (13726) [005] dn.3 29484.638830: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57815              ps-13726 (13726) [005] d..2 29484.638833: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57816     kworker/0:0-13450 (13450) [000] d..3 29484.638835: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57817 shell svc 13722-13723 ( 1007) [005] d..2 29484.638839: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57818          <idle>-0     (-----) [003] .n.1 29484.638840: cpu_idle: state=4294967295 cpu_id=3
57819              ps-13726 (13726) [005] d..2 29484.638844: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57820          <idle>-0     (-----) [003] d..2 29484.638847: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57821              ps-13726 (13726) [005] dn.3 29484.638847: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57822     kworker/0:0-13450 (13450) [000] d..2 29484.638849: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57823              ps-13726 (13726) [005] d..2 29484.638850: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57824 shell svc 13722-13723 ( 1007) [005] d..2 29484.638857: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57825          <idle>-0     (-----) [000] d..1 29484.638857: cpu_idle: state=0 cpu_id=0
57826              ps-13726 (13726) [005] d..2 29484.638861: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57827              ps-13726 (13726) [005] dn.3 29484.638863: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57828              ps-13726 (13726) [005] d..2 29484.638865: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57829 shell svc 13722-13723 ( 1007) [005] d..2 29484.638872: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57830              ps-13726 (13726) [005] d..2 29484.638876: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57831              ps-13726 (13726) [005] dn.3 29484.638879: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57832              ps-13726 (13726) [005] d..2 29484.638881: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57833 shell svc 13722-13723 ( 1007) [005] d..2 29484.638887: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57834              ps-13726 (13726) [005] d..2 29484.638892: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57835            adbd-23485 ( 1007) [003] d..2 29484.638894: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57836              ps-13726 (13726) [005] dn.3 29484.638895: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57837              ps-13726 (13726) [005] d..2 29484.638897: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57838          <idle>-0     (-----) [003] d..1 29484.638901: cpu_idle: state=0 cpu_id=3
57839 shell svc 13722-13723 ( 1007) [005] d..2 29484.638904: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57840              ps-13726 (13726) [005] d..2 29484.638908: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57841              ps-13726 (13726) [005] dn.3 29484.638910: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57842              ps-13726 (13726) [005] d..2 29484.638912: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57843          <idle>-0     (-----) [000] d.h3 29484.638914: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57844 shell svc 13722-13723 ( 1007) [005] d..2 29484.638919: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57845          <idle>-0     (-----) [000] dnh4 29484.638921: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57846              ps-13726 (13726) [005] d..2 29484.638923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57847              ps-13726 (13726) [005] dn.3 29484.638926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57848          <idle>-0     (-----) [000] .n.1 29484.638926: cpu_idle: state=4294967295 cpu_id=0
57849              ps-13726 (13726) [005] d..2 29484.638928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57850          <idle>-0     (-----) [000] d..2 29484.638933: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57851 shell svc 13722-13723 ( 1007) [005] d..2 29484.638934: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57852              ps-13726 (13726) [005] d..2 29484.638938: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57853   kworker/u17:2-23076 (23076) [000] d..2 29484.638940: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57854              ps-13726 (13726) [005] dn.3 29484.638941: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57855              ps-13726 (13726) [005] d..2 29484.638943: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57856   kworker/u17:2-23076 (23076) [000] d..3 29484.638946: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57857 shell svc 13722-13723 ( 1007) [005] d..2 29484.638950: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57858              ps-13726 (13726) [005] d..2 29484.638954: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57859              ps-13726 (13726) [005] dn.3 29484.638956: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57860              ps-13726 (13726) [005] d..2 29484.638958: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57861   kworker/u17:2-23076 (23076) [000] d..2 29484.638963: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57862 shell svc 13722-13723 ( 1007) [005] d..2 29484.638965: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57863     kworker/0:0-13450 (13450) [000] d..2 29484.638969: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57864              ps-13726 (13726) [005] d..2 29484.638969: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57865              ps-13726 (13726) [005] dn.3 29484.638972: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57866              ps-13726 (13726) [005] d..2 29484.638975: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57867     kworker/0:0-13450 (13450) [000] d..3 29484.638978: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57868 shell svc 13722-13723 ( 1007) [005] d..2 29484.638981: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57869          <idle>-0     (-----) [003] .n.1 29484.638983: cpu_idle: state=4294967295 cpu_id=3
57870              ps-13726 (13726) [005] d..2 29484.638985: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57871              ps-13726 (13726) [005] dn.3 29484.638988: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57872              ps-13726 (13726) [005] d..2 29484.638990: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57873          <idle>-0     (-----) [003] d..2 29484.638991: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57874     kworker/0:0-13450 (13450) [000] d..2 29484.638992: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57875 shell svc 13722-13723 ( 1007) [005] d..2 29484.638996: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57876          <idle>-0     (-----) [000] d..1 29484.639000: cpu_idle: state=0 cpu_id=0
57877              ps-13726 (13726) [005] d..2 29484.639001: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57878              ps-13726 (13726) [005] dn.3 29484.639003: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57879              ps-13726 (13726) [005] d..2 29484.639005: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57880            adbd-23485 ( 1007) [003] d..2 29484.639008: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57881 shell svc 13722-13723 ( 1007) [005] d..2 29484.639012: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57882          <idle>-0     (-----) [003] d..1 29484.639015: cpu_idle: state=0 cpu_id=3
57883              ps-13726 (13726) [005] d..2 29484.639016: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57884              ps-13726 (13726) [005] dn.3 29484.639019: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57885              ps-13726 (13726) [005] d..2 29484.639021: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57886 shell svc 13722-13723 ( 1007) [005] d..2 29484.639027: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57887              ps-13726 (13726) [005] d..2 29484.639033: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57888              ps-13726 (13726) [005] dn.3 29484.639035: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57889              ps-13726 (13726) [005] d..2 29484.639037: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57890 shell svc 13722-13723 ( 1007) [005] d..2 29484.639044: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57891              ps-13726 (13726) [005] d..2 29484.639049: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57892              ps-13726 (13726) [005] dn.3 29484.639052: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57893              ps-13726 (13726) [005] d..2 29484.639054: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57894 shell svc 13722-13723 ( 1007) [005] d..2 29484.639060: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57895              ps-13726 (13726) [005] d..2 29484.639065: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57896              ps-13726 (13726) [005] dn.3 29484.639067: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57897              ps-13726 (13726) [005] d..2 29484.639070: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57898 shell svc 13722-13723 ( 1007) [005] d..2 29484.639076: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57899              ps-13726 (13726) [005] d..2 29484.639081: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57900              ps-13726 (13726) [005] dn.3 29484.639083: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57901              ps-13726 (13726) [005] d..2 29484.639086: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57902          <idle>-0     (-----) [000] d.h3 29484.639089: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57903 shell svc 13722-13723 ( 1007) [005] d..2 29484.639092: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57904          <idle>-0     (-----) [000] dnh4 29484.639095: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57905          <idle>-0     (-----) [000] .n.1 29484.639100: cpu_idle: state=4294967295 cpu_id=0
57906          <idle>-0     (-----) [000] d..2 29484.639107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57907   kworker/u17:2-23076 (23076) [000] d..2 29484.639113: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57908   kworker/u17:2-23076 (23076) [000] d..3 29484.639119: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57909   kworker/u17:2-23076 (23076) [000] d..2 29484.639136: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57910     kworker/0:0-13450 (13450) [000] d..2 29484.639142: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
57911     kworker/0:0-13450 (13450) [000] d..3 29484.639164: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
57912     kworker/0:0-13450 (13450) [000] d..2 29484.639174: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
57913            adbd-23484 ( 1007) [000] d..2 29484.639187: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
57914            adbd-23484 ( 1007) [000] d..3 29484.639198: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
57915            adbd-23484 ( 1007) [000] d..2 29484.639244: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
57916            adbd-1007  ( 1007) [000] d..1 29484.639350: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57917            adbd-1007  ( 1007) [000] d..2 29484.639363: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
57918          <idle>-0     (-----) [003] .n.1 29484.639367: cpu_idle: state=4294967295 cpu_id=3
57919          <idle>-0     (-----) [003] d..2 29484.639374: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57920            adbd-1007  ( 1007) [000] d..2 29484.639400: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57921          <idle>-0     (-----) [000] d..1 29484.639410: cpu_idle: state=0 cpu_id=0
57922            adbd-23485 ( 1007) [003] d..2 29484.639421: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57923          <idle>-0     (-----) [003] d..1 29484.639428: cpu_idle: state=0 cpu_id=3
57924          <idle>-0     (-----) [000] d.h3 29484.639438: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57925          <idle>-0     (-----) [000] dnh4 29484.639448: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57926          <idle>-0     (-----) [000] .n.1 29484.639454: cpu_idle: state=4294967295 cpu_id=0
57927          <idle>-0     (-----) [000] d..2 29484.639461: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57928              ps-13726 (13726) [005] d..2 29484.639464: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57929              ps-13726 (13726) [005] dn.3 29484.639468: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57930   kworker/u17:2-23076 (23076) [000] d..2 29484.639470: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57931              ps-13726 (13726) [005] d..2 29484.639471: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57932   kworker/u17:2-23076 (23076) [000] d..3 29484.639476: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57933 shell svc 13722-13723 ( 1007) [005] d..2 29484.639481: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57934              ps-13726 (13726) [005] d..2 29484.639486: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57935              ps-13726 (13726) [005] dn.3 29484.639488: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57936              ps-13726 (13726) [005] d..2 29484.639491: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57937   kworker/u17:2-23076 (23076) [000] d..2 29484.639493: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57938 shell svc 13722-13723 ( 1007) [005] d..2 29484.639498: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57939     kworker/0:0-13450 (13450) [000] d..2 29484.639499: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
57940              ps-13726 (13726) [005] d..2 29484.639502: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57941              ps-13726 (13726) [005] dn.3 29484.639505: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57942              ps-13726 (13726) [005] d..2 29484.639507: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57943 shell svc 13722-13723 ( 1007) [005] d..2 29484.639514: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57944              ps-13726 (13726) [005] d..2 29484.639519: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57945              ps-13726 (13726) [005] dn.3 29484.639522: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57946     kworker/0:0-13450 (13450) [000] d..3 29484.639522: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
57947              ps-13726 (13726) [005] d..2 29484.639524: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57948          <idle>-0     (-----) [001] .n.1 29484.639527: cpu_idle: state=4294967295 cpu_id=1
57949 shell svc 13722-13723 ( 1007) [005] d..2 29484.639531: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57950          <idle>-0     (-----) [001] d..2 29484.639535: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
57951              ps-13726 (13726) [005] d..2 29484.639535: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57952              ps-13726 (13726) [005] dn.3 29484.639537: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57953     kworker/0:0-13450 (13450) [000] d..2 29484.639538: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57954              ps-13726 (13726) [005] d..2 29484.639539: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57955 shell svc 13722-13723 ( 1007) [005] d..2 29484.639546: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57956          <idle>-0     (-----) [000] d..1 29484.639546: cpu_idle: state=0 cpu_id=0
57957              ps-13726 (13726) [005] d..2 29484.639550: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57958              ps-13726 (13726) [005] dn.3 29484.639552: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57959              ps-13726 (13726) [005] d..2 29484.639554: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57960 shell svc 13722-13723 ( 1007) [005] d..2 29484.639561: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57961              ps-13726 (13726) [005] d..2 29484.639565: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57962              ps-13726 (13726) [005] dn.3 29484.639567: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57963              ps-13726 (13726) [005] d..2 29484.639569: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57964 shell svc 13722-13723 ( 1007) [005] d..2 29484.639576: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57965              ps-13726 (13726) [005] d..2 29484.639580: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57966              ps-13726 (13726) [005] dn.3 29484.639583: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57967              ps-13726 (13726) [005] d..2 29484.639585: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57968 shell svc 13722-13723 ( 1007) [005] d..2 29484.639591: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57969            adbd-23485 ( 1007) [001] d..2 29484.639591: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57970              ps-13726 (13726) [005] d..2 29484.639596: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57971              ps-13726 (13726) [005] dn.3 29484.639598: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57972          <idle>-0     (-----) [001] d..1 29484.639599: cpu_idle: state=0 cpu_id=1
57973              ps-13726 (13726) [005] d..2 29484.639600: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57974 shell svc 13722-13723 ( 1007) [005] d..2 29484.639607: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57975              ps-13726 (13726) [005] d..2 29484.639611: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57976              ps-13726 (13726) [005] dn.3 29484.639614: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57977              ps-13726 (13726) [005] d..2 29484.639616: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57978          <idle>-0     (-----) [000] d.h3 29484.639620: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57979 shell svc 13722-13723 ( 1007) [005] d..2 29484.639622: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57980          <idle>-0     (-----) [000] dnh4 29484.639627: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
57981              ps-13726 (13726) [005] d..2 29484.639627: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57982              ps-13726 (13726) [005] dn.3 29484.639629: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57983              ps-13726 (13726) [005] d..2 29484.639632: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57984          <idle>-0     (-----) [000] .n.1 29484.639633: cpu_idle: state=4294967295 cpu_id=0
57985 shell svc 13722-13723 ( 1007) [005] d..2 29484.639639: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57986          <idle>-0     (-----) [000] d..2 29484.639640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
57987              ps-13726 (13726) [005] d..2 29484.639643: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57988              ps-13726 (13726) [005] dn.3 29484.639645: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57989              ps-13726 (13726) [005] d..2 29484.639648: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57990   kworker/u17:2-23076 (23076) [000] d..2 29484.639648: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57991   kworker/u17:2-23076 (23076) [000] d..3 29484.639653: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
57992 shell svc 13722-13723 ( 1007) [005] d..2 29484.639655: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57993              ps-13726 (13726) [005] d..2 29484.639659: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57994              ps-13726 (13726) [005] dn.3 29484.639661: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57995              ps-13726 (13726) [005] d..2 29484.639663: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
57996 shell svc 13722-13723 ( 1007) [005] d..2 29484.639670: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
57997   kworker/u17:2-23076 (23076) [000] d..2 29484.639671: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
57998              ps-13726 (13726) [005] d..2 29484.639675: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
57999     kworker/0:0-13450 (13450) [000] d..2 29484.639677: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58000              ps-13726 (13726) [005] dn.3 29484.639678: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58001              ps-13726 (13726) [005] d..2 29484.639680: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58002     kworker/0:0-13450 (13450) [000] d..3 29484.639686: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58003 shell svc 13722-13723 ( 1007) [005] d..2 29484.639687: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58004          <idle>-0     (-----) [001] .n.1 29484.639691: cpu_idle: state=4294967295 cpu_id=1
58005          <idle>-0     (-----) [001] d..2 29484.639698: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58006     kworker/0:0-13450 (13450) [000] d..2 29484.639701: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58007          <idle>-0     (-----) [000] d..1 29484.639708: cpu_idle: state=0 cpu_id=0
58008            adbd-23485 ( 1007) [001] d..2 29484.639716: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58009          <idle>-0     (-----) [001] d..1 29484.639722: cpu_idle: state=0 cpu_id=1
58010          <idle>-0     (-----) [000] d.h3 29484.639815: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58011          <idle>-0     (-----) [000] dnh4 29484.639821: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58012          <idle>-0     (-----) [000] .n.1 29484.639827: cpu_idle: state=4294967295 cpu_id=0
58013          <idle>-0     (-----) [000] d..2 29484.639834: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58014   kworker/u17:2-23076 (23076) [000] d..2 29484.639840: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58015   kworker/u17:2-23076 (23076) [000] d..3 29484.639845: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58016   kworker/u17:2-23076 (23076) [000] d..2 29484.639863: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58017     kworker/0:0-13450 (13450) [000] d..2 29484.639869: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
58018     kworker/0:0-13450 (13450) [000] d..3 29484.639886: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
58019          <idle>-0     (-----) [001] .n.1 29484.639891: cpu_idle: state=4294967295 cpu_id=1
58020          <idle>-0     (-----) [001] d..2 29484.639898: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
58021     kworker/0:0-13450 (13450) [000] d..2 29484.639901: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58022          <idle>-0     (-----) [000] d..1 29484.639908: cpu_idle: state=0 cpu_id=0
58023            adbd-23484 ( 1007) [001] d..2 29484.639909: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
58024            adbd-23484 ( 1007) [001] d..3 29484.639923: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
58025            adbd-23484 ( 1007) [001] d..2 29484.639970: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58026            adbd-1007  ( 1007) [001] d..1 29484.640046: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58027            adbd-1007  ( 1007) [001] d..2 29484.640060: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58028            adbd-1007  ( 1007) [001] d..2 29484.640092: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
58029              ps-13726 (13726) [005] d..2 29484.640112: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58030              ps-13726 (13726) [005] dn.3 29484.640116: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58031              ps-13726 (13726) [005] d..2 29484.640119: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58032 shell svc 13722-13723 ( 1007) [005] d..2 29484.640129: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58033              ps-13726 (13726) [005] d..2 29484.640134: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58034              ps-13726 (13726) [005] dn.3 29484.640136: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58035              ps-13726 (13726) [005] d..2 29484.640138: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58036            adbd-23485 ( 1007) [001] d..2 29484.640142: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58037 shell svc 13722-13723 ( 1007) [005] d..2 29484.640146: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58038              ps-13726 (13726) [005] d..2 29484.640150: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58039          <idle>-0     (-----) [001] d..1 29484.640151: cpu_idle: state=0 cpu_id=1
58040              ps-13726 (13726) [005] dn.3 29484.640153: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58041              ps-13726 (13726) [005] d..2 29484.640155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58042 shell svc 13722-13723 ( 1007) [005] d..2 29484.640162: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58043              ps-13726 (13726) [005] d..2 29484.640167: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58044          <idle>-0     (-----) [000] d.h3 29484.640167: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58045              ps-13726 (13726) [005] dn.3 29484.640169: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58046              ps-13726 (13726) [005] d..2 29484.640171: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58047          <idle>-0     (-----) [000] dnh4 29484.640173: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58048 shell svc 13722-13723 ( 1007) [005] d..2 29484.640178: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58049          <idle>-0     (-----) [000] .n.1 29484.640180: cpu_idle: state=4294967295 cpu_id=0
58050              ps-13726 (13726) [005] d..2 29484.640182: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58051              ps-13726 (13726) [005] dn.3 29484.640184: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58052              ps-13726 (13726) [005] d..2 29484.640186: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58053          <idle>-0     (-----) [000] d..2 29484.640186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58054 shell svc 13722-13723 ( 1007) [005] d..2 29484.640193: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58055   kworker/u17:2-23076 (23076) [000] d..2 29484.640195: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58056              ps-13726 (13726) [005] d..2 29484.640197: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58057              ps-13726 (13726) [005] dn.3 29484.640199: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58058   kworker/u17:2-23076 (23076) [000] d..3 29484.640200: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58059              ps-13726 (13726) [005] d..2 29484.640201: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58060 shell svc 13722-13723 ( 1007) [005] d..2 29484.640208: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58061              ps-13726 (13726) [005] d..2 29484.640213: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58062              ps-13726 (13726) [005] dn.3 29484.640215: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58063   kworker/u17:2-23076 (23076) [000] d..2 29484.640217: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58064              ps-13726 (13726) [005] d..2 29484.640218: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58065     kworker/0:0-13450 (13450) [000] d..2 29484.640223: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58066 shell svc 13722-13723 ( 1007) [005] d..2 29484.640225: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58067              ps-13726 (13726) [005] d..2 29484.640230: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58068     kworker/0:0-13450 (13450) [000] d..3 29484.640232: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58069              ps-13726 (13726) [005] dn.3 29484.640232: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58070              ps-13726 (13726) [005] d..2 29484.640234: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58071          <idle>-0     (-----) [001] .n.1 29484.640238: cpu_idle: state=4294967295 cpu_id=1
58072 shell svc 13722-13723 ( 1007) [005] d..2 29484.640241: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58073              ps-13726 (13726) [005] d..2 29484.640246: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58074          <idle>-0     (-----) [001] d..2 29484.640246: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58075     kworker/0:0-13450 (13450) [000] d..2 29484.640247: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58076              ps-13726 (13726) [005] dn.3 29484.640248: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58077              ps-13726 (13726) [005] d..2 29484.640250: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58078          <idle>-0     (-----) [000] d..1 29484.640255: cpu_idle: state=0 cpu_id=0
58079 shell svc 13722-13723 ( 1007) [005] d..2 29484.640257: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58080              ps-13726 (13726) [005] d..2 29484.640260: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58081              ps-13726 (13726) [005] dn.3 29484.640263: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58082              ps-13726 (13726) [005] d..2 29484.640265: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58083 shell svc 13722-13723 ( 1007) [005] d..2 29484.640271: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58084              ps-13726 (13726) [005] d..2 29484.640276: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58085              ps-13726 (13726) [005] dn.3 29484.640278: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58086              ps-13726 (13726) [005] d..2 29484.640280: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58087 shell svc 13722-13723 ( 1007) [005] d..2 29484.640287: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58088              ps-13726 (13726) [005] d..2 29484.640292: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58089              ps-13726 (13726) [005] dn.3 29484.640294: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58090            adbd-23485 ( 1007) [001] d..2 29484.640295: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58091              ps-13726 (13726) [005] d..2 29484.640296: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58092          <idle>-0     (-----) [001] d..1 29484.640302: cpu_idle: state=0 cpu_id=1
58093 shell svc 13722-13723 ( 1007) [005] d..2 29484.640303: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58094              ps-13726 (13726) [005] d..2 29484.640307: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58095              ps-13726 (13726) [005] dn.3 29484.640309: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58096              ps-13726 (13726) [005] d..2 29484.640312: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58097 shell svc 13722-13723 ( 1007) [005] d..2 29484.640318: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58098          <idle>-0     (-----) [000] d.h3 29484.640322: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58099              ps-13726 (13726) [005] d..2 29484.640323: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58100              ps-13726 (13726) [005] dn.3 29484.640326: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58101              ps-13726 (13726) [005] d..2 29484.640328: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58102          <idle>-0     (-----) [000] dnh4 29484.640329: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58103          <idle>-0     (-----) [000] .n.1 29484.640334: cpu_idle: state=4294967295 cpu_id=0
58104 shell svc 13722-13723 ( 1007) [005] d..2 29484.640335: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58105              ps-13726 (13726) [005] d..2 29484.640339: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58106          <idle>-0     (-----) [000] d..2 29484.640341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58107              ps-13726 (13726) [005] dn.3 29484.640342: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58108              ps-13726 (13726) [005] d..2 29484.640344: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58109   kworker/u17:2-23076 (23076) [000] d..2 29484.640348: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58110 shell svc 13722-13723 ( 1007) [005] d..2 29484.640351: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58111   kworker/u17:2-23076 (23076) [000] d..3 29484.640353: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58112              ps-13726 (13726) [005] d..2 29484.640355: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58113              ps-13726 (13726) [005] dn.3 29484.640358: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58114              ps-13726 (13726) [005] d..2 29484.640360: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58115 shell svc 13722-13723 ( 1007) [005] d..2 29484.640367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58116   kworker/u17:2-23076 (23076) [000] d..2 29484.640370: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58117     kworker/0:0-13450 (13450) [000] d..2 29484.640376: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58118     kworker/0:0-13450 (13450) [000] d..3 29484.640385: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58119          <idle>-0     (-----) [001] .n.1 29484.640390: cpu_idle: state=4294967295 cpu_id=1
58120              ps-13726 (13726) [005] d.s2 29484.640397: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
58121          <idle>-0     (-----) [001] d..2 29484.640398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58122     kworker/0:0-13450 (13450) [000] d.s2 29484.640405: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
58123          <idle>-0     (-----) [003] dnh2 29484.640423: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
58124            adbd-23485 ( 1007) [001] d..2 29484.640424: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58125          <idle>-0     (-----) [003] .n.1 29484.640428: cpu_idle: state=4294967295 cpu_id=3
58126          <idle>-0     (-----) [001] d..1 29484.640429: cpu_idle: state=0 cpu_id=1
58127     kworker/0:0-13450 (13450) [000] d.s3 29484.640435: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
58128          <idle>-0     (-----) [003] d..2 29484.640440: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
58129     kworker/0:0-13450 (13450) [000] d..2 29484.640458: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58130          <idle>-0     (-----) [000] d..1 29484.640466: cpu_idle: state=0 cpu_id=0
58131  kworker/u16:10-23868 (23868) [003] .... 29484.640487: clk_set_rate: l3_cluster0_vote_clk 844800000
58132          <idle>-0     (-----) [000] d.h3 29484.640510: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58133          <idle>-0     (-----) [000] dnh4 29484.640516: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58134          <idle>-0     (-----) [000] .n.1 29484.640522: cpu_idle: state=4294967295 cpu_id=0
58135          <idle>-0     (-----) [000] d..2 29484.640528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58136  kworker/u16:10-23868 (23868) [003] d..2 29484.640534: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58137   kworker/u17:2-23076 (23076) [000] d..2 29484.640535: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58138     rcu_preempt-7     (    7) [003] d..2 29484.640538: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
58139   kworker/u17:2-23076 (23076) [000] d..3 29484.640541: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58140   kworker/u17:2-23076 (23076) [000] d..2 29484.640558: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58141     rcu_preempt-7     (    7) [003] d..3 29484.640564: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
58142     kworker/0:0-13450 (13450) [000] d..2 29484.640565: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
58143     rcu_preempt-7     (    7) [003] d..2 29484.640572: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
58144     kworker/0:0-13450 (13450) [000] d..3 29484.640574: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
58145         rcuop/4-45    (   45) [003] d..2 29484.640575: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
58146          <idle>-0     (-----) [001] .n.1 29484.640579: cpu_idle: state=4294967295 cpu_id=1
58147          <idle>-0     (-----) [001] d..2 29484.640584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
58148     kworker/0:0-13450 (13450) [000] d..2 29484.640588: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58149            adbd-23484 ( 1007) [001] d..2 29484.640596: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
58150          <idle>-0     (-----) [000] dn.1 29484.640596: cpu_idle: state=0 cpu_id=0
58151          <idle>-0     (-----) [000] .n.1 29484.640599: cpu_idle: state=4294967295 cpu_id=0
58152         rcuop/4-45    (   45) [003] d..3 29484.640599: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
58153         rcuop/4-45    (   45) [003] d..2 29484.640602: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
58154            adbd-23484 ( 1007) [001] d..3 29484.640604: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
58155          <idle>-0     (-----) [000] d..2 29484.640609: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
58156         rcuop/4-45    (   45) [003] d..3 29484.640610: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
58157         rcuop/4-45    (   45) [003] d..2 29484.640616: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58158     rcu_preempt-7     (    7) [003] d..2 29484.640640: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58159            adbd-23484 ( 1007) [001] d..2 29484.640655: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58160          <idle>-0     (-----) [001] d..1 29484.640665: cpu_idle: state=0 cpu_id=1
58161         rcuop/5-53    (   53) [000] d..2 29484.640700: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58162          <idle>-0     (-----) [000] d..1 29484.640708: cpu_idle: state=0 cpu_id=0
58163            adbd-1007  ( 1007) [003] d..1 29484.640729: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58164            adbd-1007  ( 1007) [003] d..2 29484.640741: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58165          <idle>-0     (-----) [001] .n.1 29484.640747: cpu_idle: state=4294967295 cpu_id=1
58166          <idle>-0     (-----) [001] d..2 29484.640754: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58167            adbd-1007  ( 1007) [003] d..2 29484.640779: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58168              ps-13726 (13726) [005] d..2 29484.640782: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58169              ps-13726 (13726) [005] dn.3 29484.640786: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58170          <idle>-0     (-----) [003] d..1 29484.640788: cpu_idle: state=0 cpu_id=3
58171              ps-13726 (13726) [005] d..2 29484.640789: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58172 shell svc 13722-13723 ( 1007) [005] d..2 29484.640800: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58173            adbd-23485 ( 1007) [001] d..2 29484.640803: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58174              ps-13726 (13726) [005] d..2 29484.640806: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58175              ps-13726 (13726) [005] dn.3 29484.640808: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58176              ps-13726 (13726) [005] d..2 29484.640811: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58177          <idle>-0     (-----) [001] d..1 29484.640811: cpu_idle: state=0 cpu_id=1
58178          <idle>-0     (-----) [000] d.h3 29484.640812: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58179 shell svc 13722-13723 ( 1007) [005] d..2 29484.640818: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58180          <idle>-0     (-----) [000] dnh4 29484.640819: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58181              ps-13726 (13726) [005] d..2 29484.640822: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58182              ps-13726 (13726) [005] dn.3 29484.640825: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58183          <idle>-0     (-----) [000] .n.1 29484.640825: cpu_idle: state=4294967295 cpu_id=0
58184              ps-13726 (13726) [005] d..2 29484.640827: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58185          <idle>-0     (-----) [000] d..2 29484.640832: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58186 shell svc 13722-13723 ( 1007) [005] d..2 29484.640834: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58187              ps-13726 (13726) [005] d..2 29484.640839: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58188   kworker/u17:2-23076 (23076) [000] d..2 29484.640840: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58189              ps-13726 (13726) [005] dn.3 29484.640841: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58190              ps-13726 (13726) [005] d..2 29484.640843: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58191   kworker/u17:2-23076 (23076) [000] d..3 29484.640846: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58192 shell svc 13722-13723 ( 1007) [005] d..2 29484.640850: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58193              ps-13726 (13726) [005] d..2 29484.640855: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58194              ps-13726 (13726) [005] dn.3 29484.640857: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58195              ps-13726 (13726) [005] d..2 29484.640859: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58196   kworker/u17:2-23076 (23076) [000] d..2 29484.640863: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58197 shell svc 13722-13723 ( 1007) [005] d..2 29484.640866: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58198     kworker/0:0-13450 (13450) [000] d..2 29484.640869: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58199              ps-13726 (13726) [005] d..2 29484.640870: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58200              ps-13726 (13726) [005] dn.3 29484.640873: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58201              ps-13726 (13726) [005] d..2 29484.640875: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58202     kworker/0:0-13450 (13450) [000] d..3 29484.640878: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58203 shell svc 13722-13723 ( 1007) [005] d..2 29484.640881: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58204          <idle>-0     (-----) [001] .n.1 29484.640884: cpu_idle: state=4294967295 cpu_id=1
58205              ps-13726 (13726) [005] d..2 29484.640886: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58206              ps-13726 (13726) [005] dn.3 29484.640888: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58207              ps-13726 (13726) [005] d..2 29484.640891: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58208          <idle>-0     (-----) [001] d..2 29484.640891: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58209     kworker/0:0-13450 (13450) [000] d..2 29484.640893: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58210 shell svc 13722-13723 ( 1007) [005] d..2 29484.640897: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58211          <idle>-0     (-----) [000] d..1 29484.640901: cpu_idle: state=0 cpu_id=0
58212              ps-13726 (13726) [005] d..2 29484.640903: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58213              ps-13726 (13726) [005] dn.3 29484.640905: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58214              ps-13726 (13726) [005] d..2 29484.640907: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58215 shell svc 13722-13723 ( 1007) [005] d..2 29484.640914: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58216              ps-13726 (13726) [005] d..2 29484.640918: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58217              ps-13726 (13726) [005] dn.3 29484.640921: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58218              ps-13726 (13726) [005] d..2 29484.640923: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58219 shell svc 13722-13723 ( 1007) [005] d..2 29484.640930: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58220              ps-13726 (13726) [005] d..2 29484.640936: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58221              ps-13726 (13726) [005] dn.3 29484.640938: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58222            adbd-23485 ( 1007) [001] d..2 29484.640939: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58223              ps-13726 (13726) [005] d..2 29484.640940: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58224 shell svc 13722-13723 ( 1007) [005] d..2 29484.640947: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58225          <idle>-0     (-----) [001] d..1 29484.640947: cpu_idle: state=0 cpu_id=1
58226              ps-13726 (13726) [005] d..2 29484.640952: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58227              ps-13726 (13726) [005] dn.3 29484.640954: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58228              ps-13726 (13726) [005] d..2 29484.640956: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58229          <idle>-0     (-----) [000] d.h3 29484.640962: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58230 shell svc 13722-13723 ( 1007) [005] d..2 29484.640963: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58231              ps-13726 (13726) [005] d..2 29484.640967: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58232          <idle>-0     (-----) [000] dnh4 29484.640969: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58233              ps-13726 (13726) [005] dn.3 29484.640969: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58234              ps-13726 (13726) [005] d..2 29484.640971: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58235          <idle>-0     (-----) [000] .n.1 29484.640974: cpu_idle: state=4294967295 cpu_id=0
58236 shell svc 13722-13723 ( 1007) [005] d..2 29484.640978: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58237          <idle>-0     (-----) [000] d..2 29484.640980: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58238              ps-13726 (13726) [005] d..2 29484.640983: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58239              ps-13726 (13726) [005] dn.3 29484.640985: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58240              ps-13726 (13726) [005] d..2 29484.640988: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58241   kworker/u17:2-23076 (23076) [000] d..2 29484.640988: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58242   kworker/u17:2-23076 (23076) [000] d..3 29484.640993: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58243 shell svc 13722-13723 ( 1007) [005] d..2 29484.640994: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58244              ps-13726 (13726) [005] d..2 29484.640999: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58245              ps-13726 (13726) [005] dn.3 29484.641002: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58246              ps-13726 (13726) [005] d..2 29484.641004: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58247 shell svc 13722-13723 ( 1007) [005] d..2 29484.641010: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58248   kworker/u17:2-23076 (23076) [000] d..2 29484.641010: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58249     kworker/0:0-13450 (13450) [000] d..2 29484.641016: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58250     kworker/0:0-13450 (13450) [000] d..3 29484.641025: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58251          <idle>-0     (-----) [001] .n.1 29484.641031: cpu_idle: state=4294967295 cpu_id=1
58252          <idle>-0     (-----) [001] d..2 29484.641038: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58253     kworker/0:0-13450 (13450) [000] d..2 29484.641040: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58254          <idle>-0     (-----) [000] d..1 29484.641047: cpu_idle: state=0 cpu_id=0
58255            adbd-23485 ( 1007) [001] d..2 29484.641057: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58256          <idle>-0     (-----) [001] d..1 29484.641064: cpu_idle: state=0 cpu_id=1
58257          <idle>-0     (-----) [000] d.h3 29484.641172: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58258          <idle>-0     (-----) [000] dnh4 29484.641178: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58259          <idle>-0     (-----) [000] .n.1 29484.641183: cpu_idle: state=4294967295 cpu_id=0
58260          <idle>-0     (-----) [000] d..2 29484.641190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58261   kworker/u17:2-23076 (23076) [000] d..2 29484.641197: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58262   kworker/u17:2-23076 (23076) [000] d..3 29484.641203: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58263   kworker/u17:2-23076 (23076) [000] d..2 29484.641220: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58264     kworker/0:0-13450 (13450) [000] d..2 29484.641229: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
58265     kworker/0:0-13450 (13450) [000] d..3 29484.641251: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
58266     kworker/0:0-13450 (13450) [000] d..2 29484.641260: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
58267            adbd-23484 ( 1007) [000] d..2 29484.641273: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
58268            adbd-23484 ( 1007) [000] d..3 29484.641284: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
58269            adbd-23484 ( 1007) [000] d..2 29484.641332: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58270            adbd-1007  ( 1007) [000] d..1 29484.641427: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58271            adbd-1007  ( 1007) [000] d..2 29484.641439: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58272              ps-13726 (13726) [005] d..2 29484.641441: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58273          <idle>-0     (-----) [001] .n.1 29484.641444: cpu_idle: state=4294967295 cpu_id=1
58274              ps-13726 (13726) [005] dn.3 29484.641445: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58275              ps-13726 (13726) [005] d..2 29484.641448: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58276          <idle>-0     (-----) [001] d..2 29484.641451: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58277 shell svc 13722-13723 ( 1007) [005] d..2 29484.641458: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58278              ps-13726 (13726) [005] d..2 29484.641463: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58279              ps-13726 (13726) [005] dn.3 29484.641466: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58280              ps-13726 (13726) [005] d..2 29484.641468: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58281 shell svc 13722-13723 ( 1007) [005] d..2 29484.641475: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58282            adbd-1007  ( 1007) [000] d..2 29484.641476: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58283              ps-13726 (13726) [005] d..2 29484.641480: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58284              ps-13726 (13726) [005] dn.3 29484.641482: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58285              ps-13726 (13726) [005] d..2 29484.641485: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58286          <idle>-0     (-----) [000] d..1 29484.641486: cpu_idle: state=0 cpu_id=0
58287 shell svc 13722-13723 ( 1007) [005] d..2 29484.641491: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58288              ps-13726 (13726) [005] d..2 29484.641495: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58289            adbd-23485 ( 1007) [001] d..2 29484.641497: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58290              ps-13726 (13726) [005] dn.3 29484.641498: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58291              ps-13726 (13726) [005] d..2 29484.641500: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58292          <idle>-0     (-----) [001] d..1 29484.641505: cpu_idle: state=0 cpu_id=1
58293 shell svc 13722-13723 ( 1007) [005] d..2 29484.641507: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58294              ps-13726 (13726) [005] d..2 29484.641511: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58295              ps-13726 (13726) [005] dn.3 29484.641513: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58296              ps-13726 (13726) [005] d..2 29484.641515: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58297          <idle>-0     (-----) [000] d.h3 29484.641518: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58298 shell svc 13722-13723 ( 1007) [005] d..2 29484.641522: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58299              ps-13726 (13726) [005] d..2 29484.641526: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58300          <idle>-0     (-----) [000] dnh4 29484.641529: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58301              ps-13726 (13726) [005] dn.3 29484.641529: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58302              ps-13726 (13726) [005] d..2 29484.641531: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58303          <idle>-0     (-----) [000] .n.1 29484.641535: cpu_idle: state=4294967295 cpu_id=0
58304 shell svc 13722-13723 ( 1007) [005] d..2 29484.641537: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58305          <idle>-0     (-----) [000] d..2 29484.641542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58306              ps-13726 (13726) [005] d..2 29484.641542: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58307              ps-13726 (13726) [005] dn.3 29484.641545: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58308              ps-13726 (13726) [005] d..2 29484.641547: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58309   kworker/u17:2-23076 (23076) [000] d..2 29484.641552: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58310 shell svc 13722-13723 ( 1007) [005] d..2 29484.641553: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58311              ps-13726 (13726) [005] d..2 29484.641558: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58312   kworker/u17:2-23076 (23076) [000] d..3 29484.641558: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58313              ps-13726 (13726) [005] dn.3 29484.641560: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58314              ps-13726 (13726) [005] d..2 29484.641562: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58315 shell svc 13722-13723 ( 1007) [005] d..2 29484.641569: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58316              ps-13726 (13726) [005] d..2 29484.641573: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58317   kworker/u17:2-23076 (23076) [000] d..2 29484.641575: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58318              ps-13726 (13726) [005] dn.3 29484.641576: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58319              ps-13726 (13726) [005] d..2 29484.641578: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58320     kworker/0:0-13450 (13450) [000] d..2 29484.641582: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58321 shell svc 13722-13723 ( 1007) [005] d..2 29484.641584: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58322              ps-13726 (13726) [005] d..2 29484.641589: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58323              ps-13726 (13726) [005] dn.3 29484.641591: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58324              ps-13726 (13726) [005] d..2 29484.641593: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58325     kworker/0:0-13450 (13450) [000] d..3 29484.641595: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58326 shell svc 13722-13723 ( 1007) [005] d..2 29484.641599: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58327          <idle>-0     (-----) [001] .n.1 29484.641600: cpu_idle: state=4294967295 cpu_id=1
58328              ps-13726 (13726) [005] d..2 29484.641604: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58329              ps-13726 (13726) [005] dn.3 29484.641606: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58330              ps-13726 (13726) [005] d..2 29484.641608: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58331          <idle>-0     (-----) [001] d..2 29484.641608: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58332     kworker/0:0-13450 (13450) [000] d..2 29484.641610: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58333 shell svc 13722-13723 ( 1007) [005] d..2 29484.641615: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58334          <idle>-0     (-----) [000] d..1 29484.641618: cpu_idle: state=0 cpu_id=0
58335              ps-13726 (13726) [005] d..2 29484.641619: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58336              ps-13726 (13726) [005] dn.3 29484.641622: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58337              ps-13726 (13726) [005] d..2 29484.641624: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58338 shell svc 13722-13723 ( 1007) [005] d..2 29484.641631: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58339              ps-13726 (13726) [005] d..2 29484.641634: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58340              ps-13726 (13726) [005] dn.3 29484.641637: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58341              ps-13726 (13726) [005] d..2 29484.641639: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58342 shell svc 13722-13723 ( 1007) [005] d..2 29484.641646: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58343              ps-13726 (13726) [005] d..2 29484.641650: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58344              ps-13726 (13726) [005] dn.3 29484.641653: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58345              ps-13726 (13726) [005] d..2 29484.641655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58346            adbd-23485 ( 1007) [001] d..2 29484.641657: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58347 shell svc 13722-13723 ( 1007) [005] d..2 29484.641661: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58348          <idle>-0     (-----) [001] d..1 29484.641664: cpu_idle: state=0 cpu_id=1
58349              ps-13726 (13726) [005] d..2 29484.641666: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58350              ps-13726 (13726) [005] dn.3 29484.641668: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58351              ps-13726 (13726) [005] d..2 29484.641670: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58352          <idle>-0     (-----) [000] d.h3 29484.641676: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58353 shell svc 13722-13723 ( 1007) [005] d..2 29484.641677: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58354              ps-13726 (13726) [005] d..2 29484.641681: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58355          <idle>-0     (-----) [000] dnh4 29484.641682: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58356              ps-13726 (13726) [005] dn.3 29484.641683: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58357              ps-13726 (13726) [005] d..2 29484.641685: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58358          <idle>-0     (-----) [000] .n.1 29484.641687: cpu_idle: state=4294967295 cpu_id=0
58359 shell svc 13722-13723 ( 1007) [005] d..2 29484.641691: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58360          <idle>-0     (-----) [000] d..2 29484.641694: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58361   kworker/u17:2-23076 (23076) [000] d..2 29484.641701: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58362   kworker/u17:2-23076 (23076) [000] d..3 29484.641707: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58363   kworker/u17:2-23076 (23076) [000] d..2 29484.641724: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58364     kworker/0:0-13450 (13450) [000] d..2 29484.641729: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58365     kworker/0:0-13450 (13450) [000] d..3 29484.641739: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58366          <idle>-0     (-----) [001] .n.1 29484.641744: cpu_idle: state=4294967295 cpu_id=1
58367          <idle>-0     (-----) [001] d..2 29484.641751: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58368     kworker/0:0-13450 (13450) [000] d..2 29484.641753: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58369          <idle>-0     (-----) [000] d..1 29484.641761: cpu_idle: state=0 cpu_id=0
58370            adbd-23485 ( 1007) [001] d..2 29484.641768: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58371          <idle>-0     (-----) [001] d..1 29484.641775: cpu_idle: state=0 cpu_id=1
58372          <idle>-0     (-----) [000] d.h3 29484.641854: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58373          <idle>-0     (-----) [000] dnh4 29484.641860: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58374          <idle>-0     (-----) [000] .n.1 29484.641866: cpu_idle: state=4294967295 cpu_id=0
58375          <idle>-0     (-----) [000] d..2 29484.641872: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58376   kworker/u17:2-23076 (23076) [000] d..2 29484.641879: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58377   kworker/u17:2-23076 (23076) [000] d..3 29484.641885: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58378   kworker/u17:2-23076 (23076) [000] d..2 29484.641903: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58379     kworker/0:0-13450 (13450) [000] d..2 29484.641909: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
58380     kworker/0:0-13450 (13450) [000] d..3 29484.641926: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
58381          <idle>-0     (-----) [001] .n.1 29484.641931: cpu_idle: state=4294967295 cpu_id=1
58382          <idle>-0     (-----) [001] d..2 29484.641938: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
58383     kworker/0:0-13450 (13450) [000] d..2 29484.641940: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58384          <idle>-0     (-----) [000] d..1 29484.641948: cpu_idle: state=0 cpu_id=0
58385            adbd-23484 ( 1007) [001] d..2 29484.641949: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
58386            adbd-23484 ( 1007) [001] d..3 29484.641962: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
58387            adbd-23484 ( 1007) [001] d..2 29484.642009: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58388            adbd-1007  ( 1007) [001] d..1 29484.642088: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58389            adbd-1007  ( 1007) [001] d..2 29484.642102: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58390            adbd-1007  ( 1007) [001] d..2 29484.642133: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
58391            adbd-23485 ( 1007) [001] d..2 29484.642184: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58392          <idle>-0     (-----) [001] d..1 29484.642194: cpu_idle: state=0 cpu_id=1
58393          <idle>-0     (-----) [000] d.h3 29484.642208: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58394          <idle>-0     (-----) [000] dnh4 29484.642214: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58395          <idle>-0     (-----) [000] .n.1 29484.642220: cpu_idle: state=4294967295 cpu_id=0
58396          <idle>-0     (-----) [000] d..2 29484.642226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58397   kworker/u17:2-23076 (23076) [000] d..2 29484.642235: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58398   kworker/u17:2-23076 (23076) [000] d..3 29484.642241: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58399   kworker/u17:2-23076 (23076) [000] d..2 29484.642257: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58400     kworker/0:0-13450 (13450) [000] d..2 29484.642263: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58401     kworker/0:0-13450 (13450) [000] d..3 29484.642273: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58402          <idle>-0     (-----) [001] .n.1 29484.642278: cpu_idle: state=4294967295 cpu_id=1
58403          <idle>-0     (-----) [001] d..2 29484.642285: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58404     kworker/0:0-13450 (13450) [000] d..2 29484.642287: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58405          <idle>-0     (-----) [000] d..1 29484.642294: cpu_idle: state=0 cpu_id=0
58406            adbd-23485 ( 1007) [001] d..2 29484.642334: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58407          <idle>-0     (-----) [001] d..1 29484.642343: cpu_idle: state=0 cpu_id=1
58408          <idle>-0     (-----) [000] d.h3 29484.642365: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58409          <idle>-0     (-----) [000] dnh4 29484.642371: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58410          <idle>-0     (-----) [000] .n.1 29484.642377: cpu_idle: state=4294967295 cpu_id=0
58411          <idle>-0     (-----) [000] d..2 29484.642383: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58412   kworker/u17:2-23076 (23076) [000] d..2 29484.642391: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58413   kworker/u17:2-23076 (23076) [000] d..3 29484.642397: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58414   kworker/u17:2-23076 (23076) [000] d..2 29484.642414: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58415     kworker/0:0-13450 (13450) [000] d..2 29484.642419: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58416     kworker/0:0-13450 (13450) [000] d..3 29484.642428: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58417          <idle>-0     (-----) [001] .n.1 29484.642434: cpu_idle: state=4294967295 cpu_id=1
58418          <idle>-0     (-----) [001] d..2 29484.642442: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58419     kworker/0:0-13450 (13450) [000] d..2 29484.642443: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58420          <idle>-0     (-----) [000] d..1 29484.642450: cpu_idle: state=0 cpu_id=0
58421            adbd-23485 ( 1007) [001] d..2 29484.642459: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58422          <idle>-0     (-----) [001] d..1 29484.642466: cpu_idle: state=0 cpu_id=1
58423          <idle>-0     (-----) [000] d.h3 29484.642554: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58424          <idle>-0     (-----) [000] dnh4 29484.642560: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58425          <idle>-0     (-----) [000] .n.1 29484.642565: cpu_idle: state=4294967295 cpu_id=0
58426          <idle>-0     (-----) [000] d..2 29484.642572: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58427   kworker/u17:2-23076 (23076) [000] d..2 29484.642579: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58428   kworker/u17:2-23076 (23076) [000] d..3 29484.642585: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58429   kworker/u17:2-23076 (23076) [000] d..2 29484.642602: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58430     kworker/0:0-13450 (13450) [000] d..2 29484.642608: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
58431     kworker/0:0-13450 (13450) [000] d..3 29484.642617: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
58432          <idle>-0     (-----) [001] .n.1 29484.642622: cpu_idle: state=4294967295 cpu_id=1
58433          <idle>-0     (-----) [001] d..2 29484.642629: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
58434     kworker/0:0-13450 (13450) [000] d..2 29484.642631: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58435          <idle>-0     (-----) [000] d..1 29484.642639: cpu_idle: state=0 cpu_id=0
58436            adbd-23484 ( 1007) [001] d..2 29484.642640: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
58437            adbd-23484 ( 1007) [001] d..3 29484.642648: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
58438            adbd-23484 ( 1007) [001] d..2 29484.642693: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58439            adbd-1007  ( 1007) [001] d..2 29484.642759: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58440          <idle>-0     (-----) [001] d..1 29484.642769: cpu_idle: state=0 cpu_id=1
58441              ps-13726 (13726) [005] d..2 29484.642983: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58442              ps-13726 (13726) [005] dn.3 29484.642987: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58443              ps-13726 (13726) [005] d..2 29484.642990: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58444 shell svc 13722-13723 ( 1007) [005] d..2 29484.642997: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
58445 shell svc 13722-13723 ( 1007) [005] d..2 29484.643014: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58446          <idle>-0     (-----) [000] dnh2 29484.643018: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
58447              ps-13726 (13726) [005] d..2 29484.643020: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58448              ps-13726 (13726) [005] dn.3 29484.643022: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58449          <idle>-0     (-----) [000] .n.1 29484.643023: cpu_idle: state=4294967295 cpu_id=0
58450              ps-13726 (13726) [005] d..2 29484.643025: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58451          <idle>-0     (-----) [000] d..2 29484.643029: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
58452 shell svc 13722-13723 ( 1007) [005] d..2 29484.643032: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58453              ps-13726 (13726) [005] d..2 29484.643037: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58454              ps-13726 (13726) [005] dn.3 29484.643039: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58455              ps-13726 (13726) [005] d..2 29484.643041: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58456 shell svc 13722-13723 ( 1007) [005] d..2 29484.643048: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58457              ps-13726 (13726) [005] d..2 29484.643053: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58458              ps-13726 (13726) [005] dn.3 29484.643055: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58459              ps-13726 (13726) [005] d..2 29484.643057: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58460 shell svc 13722-13723 ( 1007) [005] d..2 29484.643064: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58461              ps-13726 (13726) [005] d..2 29484.643068: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58462              ps-13726 (13726) [005] dn.3 29484.643071: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58463              ps-13726 (13726) [005] d..2 29484.643073: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58464 shell svc 13722-13723 ( 1007) [005] d..2 29484.643080: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58465            adbd-1007  ( 1007) [000] d..1 29484.643083: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58466              ps-13726 (13726) [005] d..2 29484.643084: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58467              ps-13726 (13726) [005] dn.3 29484.643087: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58468              ps-13726 (13726) [005] d..2 29484.643089: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58469            adbd-1007  ( 1007) [000] d..2 29484.643095: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58470 shell svc 13722-13723 ( 1007) [005] d..2 29484.643096: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58471              ps-13726 (13726) [005] d..2 29484.643100: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58472          <idle>-0     (-----) [001] .n.1 29484.643100: cpu_idle: state=4294967295 cpu_id=1
58473              ps-13726 (13726) [005] dn.3 29484.643102: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58474              ps-13726 (13726) [005] d..2 29484.643104: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58475          <idle>-0     (-----) [001] d..2 29484.643108: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58476 shell svc 13722-13723 ( 1007) [005] d..2 29484.643111: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58477              ps-13726 (13726) [005] d..2 29484.643115: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58478              ps-13726 (13726) [005] dn.3 29484.643117: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58479              ps-13726 (13726) [005] d..2 29484.643120: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58480 shell svc 13722-13723 ( 1007) [005] d..2 29484.643126: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58481              ps-13726 (13726) [005] d..2 29484.643130: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58482              ps-13726 (13726) [005] dn.3 29484.643133: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58483            adbd-1007  ( 1007) [000] d..2 29484.643133: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58484              ps-13726 (13726) [005] d..2 29484.643135: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58485 shell svc 13722-13723 ( 1007) [005] d..2 29484.643141: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58486          <idle>-0     (-----) [000] d..1 29484.643143: cpu_idle: state=0 cpu_id=0
58487              ps-13726 (13726) [005] d..2 29484.643146: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58488              ps-13726 (13726) [005] dn.3 29484.643148: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58489              ps-13726 (13726) [005] d..2 29484.643150: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58490 shell svc 13722-13723 ( 1007) [005] d..2 29484.643156: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58491            adbd-23485 ( 1007) [001] d..2 29484.643158: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58492              ps-13726 (13726) [005] d..2 29484.643160: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58493              ps-13726 (13726) [005] dn.3 29484.643163: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58494              ps-13726 (13726) [005] d..2 29484.643165: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58495          <idle>-0     (-----) [001] d..1 29484.643167: cpu_idle: state=0 cpu_id=1
58496          <idle>-0     (-----) [000] d.h3 29484.643170: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58497 shell svc 13722-13723 ( 1007) [005] d..2 29484.643171: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58498              ps-13726 (13726) [005] d..2 29484.643176: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58499          <idle>-0     (-----) [000] dnh4 29484.643177: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58500              ps-13726 (13726) [005] dn.3 29484.643178: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58501              ps-13726 (13726) [005] d..2 29484.643180: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58502          <idle>-0     (-----) [000] .n.1 29484.643183: cpu_idle: state=4294967295 cpu_id=0
58503 shell svc 13722-13723 ( 1007) [005] d..2 29484.643187: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58504          <idle>-0     (-----) [000] d..2 29484.643190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58505              ps-13726 (13726) [005] d..2 29484.643192: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58506              ps-13726 (13726) [005] dn.3 29484.643194: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58507              ps-13726 (13726) [005] d..2 29484.643196: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58508   kworker/u17:2-23076 (23076) [000] d..2 29484.643199: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58509 shell svc 13722-13723 ( 1007) [005] d..2 29484.643203: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58510   kworker/u17:2-23076 (23076) [000] d..3 29484.643205: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58511              ps-13726 (13726) [005] d..2 29484.643207: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58512              ps-13726 (13726) [005] dn.3 29484.643210: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58513              ps-13726 (13726) [005] d..2 29484.643212: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58514 shell svc 13722-13723 ( 1007) [005] d..2 29484.643218: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58515   kworker/u17:2-23076 (23076) [000] d..2 29484.643222: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58516              ps-13726 (13726) [005] d..2 29484.643223: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58517              ps-13726 (13726) [005] dn.3 29484.643225: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58518              ps-13726 (13726) [005] d..2 29484.643228: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58519     kworker/0:0-13450 (13450) [000] d..2 29484.643229: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58520 shell svc 13722-13723 ( 1007) [005] d..2 29484.643235: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58521     kworker/0:0-13450 (13450) [000] d..3 29484.643238: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58522              ps-13726 (13726) [005] d..2 29484.643240: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58523              ps-13726 (13726) [005] dn.3 29484.643242: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58524          <idle>-0     (-----) [001] .n.1 29484.643243: cpu_idle: state=4294967295 cpu_id=1
58525              ps-13726 (13726) [005] d..2 29484.643244: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58526          <idle>-0     (-----) [001] d..2 29484.643250: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58527 shell svc 13722-13723 ( 1007) [005] d..2 29484.643251: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58528     kworker/0:0-13450 (13450) [000] d..2 29484.643253: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58529              ps-13726 (13726) [005] d..2 29484.643256: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58530              ps-13726 (13726) [005] dn.3 29484.643259: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58531              ps-13726 (13726) [005] d..2 29484.643261: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58532          <idle>-0     (-----) [000] d..1 29484.643261: cpu_idle: state=0 cpu_id=0
58533 shell svc 13722-13723 ( 1007) [005] d..2 29484.643267: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58534              ps-13726 (13726) [005] d..2 29484.643271: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58535              ps-13726 (13726) [005] dn.3 29484.643274: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58536              ps-13726 (13726) [005] d..2 29484.643276: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58537 shell svc 13722-13723 ( 1007) [005] d..2 29484.643282: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58538              ps-13726 (13726) [005] d..2 29484.643286: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58539              ps-13726 (13726) [005] dn.3 29484.643289: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58540              ps-13726 (13726) [005] d..2 29484.643291: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58541 shell svc 13722-13723 ( 1007) [005] d..2 29484.643298: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58542            adbd-23485 ( 1007) [001] d..2 29484.643298: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58543              ps-13726 (13726) [005] d..2 29484.643302: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58544              ps-13726 (13726) [005] dn.3 29484.643304: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58545          <idle>-0     (-----) [001] d..1 29484.643306: cpu_idle: state=0 cpu_id=1
58546              ps-13726 (13726) [005] d..2 29484.643306: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58547          <idle>-0     (-----) [000] d.h3 29484.643312: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58548 shell svc 13722-13723 ( 1007) [005] d..2 29484.643313: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58549              ps-13726 (13726) [005] d..2 29484.643317: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58550          <idle>-0     (-----) [000] dnh4 29484.643318: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58551              ps-13726 (13726) [005] dn.3 29484.643320: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58552              ps-13726 (13726) [005] d..2 29484.643322: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58553          <idle>-0     (-----) [000] .n.1 29484.643324: cpu_idle: state=4294967295 cpu_id=0
58554 shell svc 13722-13723 ( 1007) [005] d..2 29484.643328: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58555          <idle>-0     (-----) [000] d..2 29484.643331: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58556              ps-13726 (13726) [005] d..2 29484.643333: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58557              ps-13726 (13726) [005] dn.3 29484.643336: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58558              ps-13726 (13726) [005] d..2 29484.643338: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58559   kworker/u17:2-23076 (23076) [000] d..2 29484.643338: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58560   kworker/u17:2-23076 (23076) [000] d..3 29484.643344: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58561 shell svc 13722-13723 ( 1007) [005] d..2 29484.643345: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58562              ps-13726 (13726) [005] d..2 29484.643349: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58563              ps-13726 (13726) [005] dn.3 29484.643351: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58564              ps-13726 (13726) [005] d..2 29484.643353: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58565 shell svc 13722-13723 ( 1007) [005] d..2 29484.643360: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58566   kworker/u17:2-23076 (23076) [000] d..2 29484.643361: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58567              ps-13726 (13726) [005] d..2 29484.643365: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58568     kworker/0:0-13450 (13450) [000] d..2 29484.643367: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58569              ps-13726 (13726) [005] dn.3 29484.643368: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58570              ps-13726 (13726) [005] d..2 29484.643370: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58571 shell svc 13722-13723 ( 1007) [005] d..2 29484.643377: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58572     kworker/0:0-13450 (13450) [000] d..3 29484.643378: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58573              ps-13726 (13726) [005] d..2 29484.643381: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58574          <idle>-0     (-----) [001] .n.1 29484.643381: cpu_idle: state=4294967295 cpu_id=1
58575              ps-13726 (13726) [005] dn.3 29484.643383: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58576              ps-13726 (13726) [005] d..2 29484.643385: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58577          <idle>-0     (-----) [001] d..2 29484.643388: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58578 shell svc 13722-13723 ( 1007) [005] d..2 29484.643392: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58579     kworker/0:0-13450 (13450) [000] d..2 29484.643392: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58580              ps-13726 (13726) [005] d..2 29484.643397: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58581              ps-13726 (13726) [005] dn.3 29484.643399: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58582          <idle>-0     (-----) [000] d..1 29484.643400: cpu_idle: state=0 cpu_id=0
58583              ps-13726 (13726) [005] d..2 29484.643401: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58584            adbd-23485 ( 1007) [001] d..2 29484.643407: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58585 shell svc 13722-13723 ( 1007) [005] d..2 29484.643408: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58586              ps-13726 (13726) [005] d..2 29484.643413: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58587          <idle>-0     (-----) [001] d..1 29484.643414: cpu_idle: state=0 cpu_id=1
58588              ps-13726 (13726) [005] dn.3 29484.643415: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58589              ps-13726 (13726) [005] d..2 29484.643417: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58590 shell svc 13722-13723 ( 1007) [005] d..2 29484.643424: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58591              ps-13726 (13726) [005] d..2 29484.643429: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58592              ps-13726 (13726) [005] dn.3 29484.643431: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58593              ps-13726 (13726) [005] d..2 29484.643433: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58594 shell svc 13722-13723 ( 1007) [005] d..2 29484.643440: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58595              ps-13726 (13726) [005] d..2 29484.643445: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58596              ps-13726 (13726) [005] dn.3 29484.643448: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58597              ps-13726 (13726) [005] d..2 29484.643450: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58598 shell svc 13722-13723 ( 1007) [005] d..2 29484.643457: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58599              ps-13726 (13726) [005] d..2 29484.643463: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58600              ps-13726 (13726) [005] dn.3 29484.643465: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58601              ps-13726 (13726) [005] d..2 29484.643467: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58602 shell svc 13722-13723 ( 1007) [005] d..2 29484.643474: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58603              ps-13726 (13726) [005] d..2 29484.643478: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58604              ps-13726 (13726) [005] dn.3 29484.643481: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58605              ps-13726 (13726) [005] d..2 29484.643483: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58606 shell svc 13722-13723 ( 1007) [005] d..2 29484.643490: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58607              ps-13726 (13726) [005] d..2 29484.643494: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58608              ps-13726 (13726) [005] dn.3 29484.643496: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58609              ps-13726 (13726) [005] d..2 29484.643498: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58610 shell svc 13722-13723 ( 1007) [005] d..2 29484.643504: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58611          <idle>-0     (-----) [000] d.h3 29484.643506: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58612              ps-13726 (13726) [005] d..2 29484.643509: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58613          <idle>-0     (-----) [000] dnh4 29484.643511: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58614              ps-13726 (13726) [005] dn.3 29484.643512: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58615              ps-13726 (13726) [005] d..2 29484.643515: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58616          <idle>-0     (-----) [000] .n.1 29484.643517: cpu_idle: state=4294967295 cpu_id=0
58617 shell svc 13722-13723 ( 1007) [005] d..2 29484.643521: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58618          <idle>-0     (-----) [000] d..2 29484.643524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58619              ps-13726 (13726) [005] d..2 29484.643526: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58620              ps-13726 (13726) [005] dn.3 29484.643529: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58621   kworker/u17:2-23076 (23076) [000] d..2 29484.643530: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58622              ps-13726 (13726) [005] d..2 29484.643531: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58623   kworker/u17:2-23076 (23076) [000] d..3 29484.643536: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58624 shell svc 13722-13723 ( 1007) [005] d..2 29484.643537: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58625              ps-13726 (13726) [005] d..2 29484.643543: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58626              ps-13726 (13726) [005] dn.3 29484.643545: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58627              ps-13726 (13726) [005] d..2 29484.643547: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58628   kworker/u17:2-23076 (23076) [000] d..2 29484.643553: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58629 shell svc 13722-13723 ( 1007) [005] d..2 29484.643554: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58630              ps-13726 (13726) [005] d..2 29484.643558: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58631     kworker/0:0-13450 (13450) [000] d..2 29484.643560: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
58632              ps-13726 (13726) [005] dn.3 29484.643561: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58633              ps-13726 (13726) [005] d..2 29484.643563: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58634 shell svc 13722-13723 ( 1007) [005] d..2 29484.643570: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58635     kworker/0:0-13450 (13450) [000] d..3 29484.643573: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
58636              ps-13726 (13726) [005] d..2 29484.643574: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58637              ps-13726 (13726) [005] dn.3 29484.643577: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58638          <idle>-0     (-----) [001] .n.1 29484.643578: cpu_idle: state=4294967295 cpu_id=1
58639              ps-13726 (13726) [005] d..2 29484.643579: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58640          <idle>-0     (-----) [001] d..2 29484.643585: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
58641 shell svc 13722-13723 ( 1007) [005] d..2 29484.643586: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58642     kworker/0:0-13450 (13450) [000] d..2 29484.643587: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58643              ps-13726 (13726) [005] d..2 29484.643590: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58644              ps-13726 (13726) [005] dn.3 29484.643592: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58645              ps-13726 (13726) [005] d..2 29484.643594: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58646          <idle>-0     (-----) [000] d..1 29484.643595: cpu_idle: state=0 cpu_id=0
58647            adbd-23484 ( 1007) [001] d..2 29484.643597: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
58648 shell svc 13722-13723 ( 1007) [005] d..2 29484.643601: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58649              ps-13726 (13726) [005] d..2 29484.643606: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58650              ps-13726 (13726) [005] dn.3 29484.643608: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58651            adbd-23484 ( 1007) [001] d..3 29484.643609: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
58652              ps-13726 (13726) [005] d..2 29484.643610: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58653 shell svc 13722-13723 ( 1007) [005] d..2 29484.643617: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58654              ps-13726 (13726) [005] d..2 29484.643621: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58655              ps-13726 (13726) [005] dn.3 29484.643624: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58656              ps-13726 (13726) [005] d..2 29484.643626: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58657 shell svc 13722-13723 ( 1007) [005] d..2 29484.643632: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58658              ps-13726 (13726) [005] d..2 29484.643637: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58659              ps-13726 (13726) [005] dn.3 29484.643639: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58660              ps-13726 (13726) [005] d..2 29484.643641: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58661 shell svc 13722-13723 ( 1007) [005] d..2 29484.643648: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58662              ps-13726 (13726) [005] d..2 29484.643652: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58663              ps-13726 (13726) [005] dn.3 29484.643655: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58664            adbd-23484 ( 1007) [001] d..2 29484.643655: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58665              ps-13726 (13726) [005] d..2 29484.643658: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58666 shell svc 13722-13723 ( 1007) [005] d..2 29484.643664: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58667              ps-13726 (13726) [005] d..2 29484.643669: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58668              ps-13726 (13726) [005] dn.3 29484.643671: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58669              ps-13726 (13726) [005] d..2 29484.643673: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58670 shell svc 13722-13723 ( 1007) [005] d..2 29484.643680: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58671              ps-13726 (13726) [005] d..2 29484.643683: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58672              ps-13726 (13726) [005] dn.3 29484.643686: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58673              ps-13726 (13726) [005] d..2 29484.643688: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58674 shell svc 13722-13723 ( 1007) [005] d..2 29484.643694: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58675              ps-13726 (13726) [005] d..2 29484.643699: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58676              ps-13726 (13726) [005] dn.3 29484.643701: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58677              ps-13726 (13726) [005] d..2 29484.643703: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58678 shell svc 13722-13723 ( 1007) [005] d..2 29484.643710: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58679              ps-13726 (13726) [005] d..2 29484.643713: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58680              ps-13726 (13726) [005] dn.3 29484.643716: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58681              ps-13726 (13726) [005] d..2 29484.643718: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58682 shell svc 13722-13723 ( 1007) [005] d..2 29484.643737: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58683              ps-13726 (13726) [005] d..2 29484.643742: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58684              ps-13726 (13726) [005] dn.3 29484.643744: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58685              ps-13726 (13726) [005] d..2 29484.643746: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58686 shell svc 13722-13723 ( 1007) [005] d..2 29484.643754: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58687              ps-13726 (13726) [005] d..2 29484.643758: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58688              ps-13726 (13726) [005] dn.3 29484.643760: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58689              ps-13726 (13726) [005] d..2 29484.643762: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58690 shell svc 13722-13723 ( 1007) [005] d..2 29484.643769: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58691              ps-13726 (13726) [005] d..2 29484.643773: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58692              ps-13726 (13726) [005] dn.3 29484.643776: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58693              ps-13726 (13726) [005] d..2 29484.643778: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58694 shell svc 13722-13723 ( 1007) [005] d..2 29484.643785: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58695              ps-13726 (13726) [005] d..2 29484.643790: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58696              ps-13726 (13726) [005] dn.3 29484.643792: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58697            adbd-1007  ( 1007) [001] d..1 29484.643793: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58698              ps-13726 (13726) [005] d..2 29484.643794: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58699 shell svc 13722-13723 ( 1007) [005] d..2 29484.643801: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58700              ps-13726 (13726) [005] d..2 29484.643805: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58701            adbd-1007  ( 1007) [001] d..2 29484.643806: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58702              ps-13726 (13726) [005] dn.3 29484.643807: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58703              ps-13726 (13726) [005] d..2 29484.643810: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58704 shell svc 13722-13723 ( 1007) [005] d..2 29484.643817: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58705            adbd-1007  ( 1007) [001] d..2 29484.643838: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
58706            adbd-23485 ( 1007) [001] d..2 29484.643893: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58707          <idle>-0     (-----) [001] d..1 29484.643903: cpu_idle: state=0 cpu_id=1
58708          <idle>-0     (-----) [000] d.h3 29484.643913: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58709          <idle>-0     (-----) [000] dnh4 29484.643923: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58710          <idle>-0     (-----) [000] .n.1 29484.643928: cpu_idle: state=4294967295 cpu_id=0
58711          <idle>-0     (-----) [000] d..2 29484.643936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58712   kworker/u17:2-23076 (23076) [000] d..2 29484.643944: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58713   kworker/u17:2-23076 (23076) [000] d..3 29484.643950: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58714   kworker/u17:2-23076 (23076) [000] d..2 29484.643967: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58715     kworker/0:0-13450 (13450) [000] d..2 29484.643973: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58716     kworker/0:0-13450 (13450) [000] d..3 29484.643993: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58717          <idle>-0     (-----) [001] .n.1 29484.643999: cpu_idle: state=4294967295 cpu_id=1
58718          <idle>-0     (-----) [001] d..2 29484.644007: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58719     kworker/0:0-13450 (13450) [000] d..2 29484.644008: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58720          <idle>-0     (-----) [000] d..1 29484.644016: cpu_idle: state=0 cpu_id=0
58721            adbd-23485 ( 1007) [001] d..2 29484.644058: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58722          <idle>-0     (-----) [001] d..1 29484.644067: cpu_idle: state=0 cpu_id=1
58723          <idle>-0     (-----) [000] d.h3 29484.644126: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58724          <idle>-0     (-----) [000] dnh4 29484.644132: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58725          <idle>-0     (-----) [000] .n.1 29484.644138: cpu_idle: state=4294967295 cpu_id=0
58726          <idle>-0     (-----) [000] d..2 29484.644144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58727   kworker/u17:2-23076 (23076) [000] d..2 29484.644152: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58728   kworker/u17:2-23076 (23076) [000] d..3 29484.644158: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58729   kworker/u17:2-23076 (23076) [000] d..2 29484.644174: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58730     kworker/0:0-13450 (13450) [000] d..2 29484.644181: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58731     kworker/0:0-13450 (13450) [000] d..3 29484.644191: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58732          <idle>-0     (-----) [001] .n.1 29484.644196: cpu_idle: state=4294967295 cpu_id=1
58733          <idle>-0     (-----) [001] d..2 29484.644203: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58734     kworker/0:0-13450 (13450) [000] d..2 29484.644205: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58735          <idle>-0     (-----) [000] d..1 29484.644212: cpu_idle: state=0 cpu_id=0
58736            adbd-23485 ( 1007) [001] d..2 29484.644222: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58737          <idle>-0     (-----) [001] d..1 29484.644230: cpu_idle: state=0 cpu_id=1
58738          <idle>-0     (-----) [000] d.h3 29484.644317: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58739          <idle>-0     (-----) [000] dnh4 29484.644323: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58740          <idle>-0     (-----) [000] .n.1 29484.644328: cpu_idle: state=4294967295 cpu_id=0
58741          <idle>-0     (-----) [000] d..2 29484.644335: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58742   kworker/u17:2-23076 (23076) [000] d..2 29484.644342: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58743              ps-13726 (13726) [005] d..2 29484.644347: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58744   kworker/u17:2-23076 (23076) [000] d..3 29484.644348: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58745              ps-13726 (13726) [005] dn.3 29484.644351: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58746              ps-13726 (13726) [005] d..2 29484.644354: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58747   kworker/u17:2-23076 (23076) [000] d..2 29484.644364: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58748 shell svc 13722-13723 ( 1007) [005] d..2 29484.644364: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58749              ps-13726 (13726) [005] d..2 29484.644369: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58750     kworker/0:0-13450 (13450) [000] d..2 29484.644370: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
58751              ps-13726 (13726) [005] dn.3 29484.644372: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58752              ps-13726 (13726) [005] d..2 29484.644374: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58753     kworker/0:0-13450 (13450) [000] d..3 29484.644379: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
58754 shell svc 13722-13723 ( 1007) [005] d..2 29484.644381: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58755          <idle>-0     (-----) [001] .n.1 29484.644385: cpu_idle: state=4294967295 cpu_id=1
58756              ps-13726 (13726) [005] d..2 29484.644385: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58757              ps-13726 (13726) [005] dn.3 29484.644388: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58758              ps-13726 (13726) [005] d..2 29484.644390: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58759          <idle>-0     (-----) [001] d..2 29484.644392: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
58760     kworker/0:0-13450 (13450) [000] d..2 29484.644394: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58761 shell svc 13722-13723 ( 1007) [005] d..2 29484.644397: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58762              ps-13726 (13726) [005] d..2 29484.644401: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58763          <idle>-0     (-----) [000] d..1 29484.644401: cpu_idle: state=0 cpu_id=0
58764              ps-13726 (13726) [005] dn.3 29484.644403: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58765            adbd-23484 ( 1007) [001] d..2 29484.644403: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
58766              ps-13726 (13726) [005] d..2 29484.644405: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58767            adbd-23484 ( 1007) [001] d..3 29484.644411: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
58768 shell svc 13722-13723 ( 1007) [005] d..2 29484.644412: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58769              ps-13726 (13726) [005] d..2 29484.644416: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58770              ps-13726 (13726) [005] dn.3 29484.644418: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58771              ps-13726 (13726) [005] d..2 29484.644420: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58772 shell svc 13722-13723 ( 1007) [005] d..2 29484.644427: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58773              ps-13726 (13726) [005] d..2 29484.644431: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58774              ps-13726 (13726) [005] dn.3 29484.644433: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58775              ps-13726 (13726) [005] d..2 29484.644435: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58776 shell svc 13722-13723 ( 1007) [005] d..2 29484.644442: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58777              ps-13726 (13726) [005] d..2 29484.644446: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58778              ps-13726 (13726) [005] dn.3 29484.644449: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58779              ps-13726 (13726) [005] d..2 29484.644451: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58780            adbd-23484 ( 1007) [001] d..2 29484.644457: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58781 shell svc 13722-13723 ( 1007) [005] d..2 29484.644458: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58782              ps-13726 (13726) [005] d..2 29484.644463: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58783              ps-13726 (13726) [005] dn.3 29484.644465: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58784              ps-13726 (13726) [005] d..2 29484.644468: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58785 shell svc 13722-13723 ( 1007) [005] d..2 29484.644474: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58786              ps-13726 (13726) [005] d..2 29484.644478: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58787              ps-13726 (13726) [005] dn.3 29484.644480: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58788              ps-13726 (13726) [005] d..2 29484.644482: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58789 shell svc 13722-13723 ( 1007) [005] d..2 29484.644489: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58790              ps-13726 (13726) [005] d..2 29484.644493: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58791              ps-13726 (13726) [005] dn.3 29484.644495: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58792              ps-13726 (13726) [005] d..2 29484.644497: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58793 shell svc 13722-13723 ( 1007) [005] d..2 29484.644505: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58794              ps-13726 (13726) [005] d..2 29484.644509: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58795              ps-13726 (13726) [005] dn.3 29484.644511: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58796              ps-13726 (13726) [005] d..2 29484.644513: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58797 shell svc 13722-13723 ( 1007) [005] d..2 29484.644520: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58798              ps-13726 (13726) [005] d..2 29484.644525: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58799              ps-13726 (13726) [005] dn.3 29484.644528: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58800              ps-13726 (13726) [005] d..2 29484.644530: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58801            adbd-1007  ( 1007) [001] d..1 29484.644533: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58802 shell svc 13722-13723 ( 1007) [005] d..2 29484.644537: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58803              ps-13726 (13726) [005] d..2 29484.644541: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58804              ps-13726 (13726) [005] dn.3 29484.644544: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58805              ps-13726 (13726) [005] d..2 29484.644546: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58806            adbd-1007  ( 1007) [001] d..2 29484.644546: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58807 shell svc 13722-13723 ( 1007) [005] d..2 29484.644552: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58808              ps-13726 (13726) [005] d..2 29484.644557: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58809              ps-13726 (13726) [005] dn.3 29484.644559: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58810              ps-13726 (13726) [005] d..2 29484.644562: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58811 shell svc 13722-13723 ( 1007) [005] d..2 29484.644568: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58812              ps-13726 (13726) [005] d..2 29484.644572: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58813              ps-13726 (13726) [005] dn.3 29484.644574: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58814              ps-13726 (13726) [005] d..2 29484.644577: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58815            adbd-1007  ( 1007) [001] d..2 29484.644578: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
58816 shell svc 13722-13723 ( 1007) [005] d..2 29484.644583: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58817              ps-13726 (13726) [005] d..2 29484.644588: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58818              ps-13726 (13726) [005] dn.3 29484.644590: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58819              ps-13726 (13726) [005] d..2 29484.644593: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58820 shell svc 13722-13723 ( 1007) [005] d..2 29484.644600: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58821              ps-13726 (13726) [005] d..2 29484.644604: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58822              ps-13726 (13726) [005] dn.3 29484.644607: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58823              ps-13726 (13726) [005] d..2 29484.644609: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58824 shell svc 13722-13723 ( 1007) [005] d..2 29484.644615: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58825              ps-13726 (13726) [005] d..2 29484.644620: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58826              ps-13726 (13726) [005] dn.3 29484.644622: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58827              ps-13726 (13726) [005] d..2 29484.644625: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58828            adbd-23485 ( 1007) [001] d..2 29484.644629: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58829 shell svc 13722-13723 ( 1007) [005] d..2 29484.644632: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58830              ps-13726 (13726) [005] d..2 29484.644636: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58831              ps-13726 (13726) [005] dn.3 29484.644638: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58832          <idle>-0     (-----) [001] d..1 29484.644639: cpu_idle: state=0 cpu_id=1
58833              ps-13726 (13726) [005] d..2 29484.644640: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58834 shell svc 13722-13723 ( 1007) [005] d..2 29484.644647: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58835          <idle>-0     (-----) [000] d.h3 29484.644647: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58836              ps-13726 (13726) [005] d..2 29484.644651: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58837          <idle>-0     (-----) [000] dnh4 29484.644653: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58838              ps-13726 (13726) [005] dn.3 29484.644653: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58839              ps-13726 (13726) [005] d..2 29484.644655: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58840          <idle>-0     (-----) [000] .n.1 29484.644658: cpu_idle: state=4294967295 cpu_id=0
58841 shell svc 13722-13723 ( 1007) [005] d..2 29484.644662: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58842          <idle>-0     (-----) [000] d..2 29484.644665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58843   kworker/u17:2-23076 (23076) [000] d..2 29484.644672: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58844   kworker/u17:2-23076 (23076) [000] d..3 29484.644677: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58845   kworker/u17:2-23076 (23076) [000] d..2 29484.644694: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58846     kworker/0:0-13450 (13450) [000] d..2 29484.644700: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58847     kworker/0:0-13450 (13450) [000] d..3 29484.644709: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58848          <idle>-0     (-----) [001] .n.1 29484.644715: cpu_idle: state=4294967295 cpu_id=1
58849          <idle>-0     (-----) [001] d..2 29484.644723: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58850     kworker/0:0-13450 (13450) [000] d..2 29484.644724: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58851          <idle>-0     (-----) [000] d..1 29484.644732: cpu_idle: state=0 cpu_id=0
58852            adbd-23485 ( 1007) [001] d..2 29484.644773: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58853          <idle>-0     (-----) [001] d..1 29484.644782: cpu_idle: state=0 cpu_id=1
58854          <idle>-0     (-----) [000] d.h3 29484.644800: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58855          <idle>-0     (-----) [000] dnh4 29484.644806: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58856          <idle>-0     (-----) [000] .n.1 29484.644812: cpu_idle: state=4294967295 cpu_id=0
58857          <idle>-0     (-----) [000] d..2 29484.644818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58858   kworker/u17:2-23076 (23076) [000] d..2 29484.644826: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58859   kworker/u17:2-23076 (23076) [000] d..3 29484.644832: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58860   kworker/u17:2-23076 (23076) [000] d..2 29484.644848: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58861     kworker/0:0-13450 (13450) [000] d..2 29484.644853: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58862     kworker/0:0-13450 (13450) [000] d..3 29484.644863: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58863          <idle>-0     (-----) [001] .n.1 29484.644868: cpu_idle: state=4294967295 cpu_id=1
58864          <idle>-0     (-----) [001] d..2 29484.644875: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58865     kworker/0:0-13450 (13450) [000] d..2 29484.644877: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58866          <idle>-0     (-----) [000] d..1 29484.644885: cpu_idle: state=0 cpu_id=0
58867            adbd-23485 ( 1007) [001] d..2 29484.644893: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58868          <idle>-0     (-----) [001] d..1 29484.644900: cpu_idle: state=0 cpu_id=1
58869          <idle>-0     (-----) [000] d.h3 29484.644981: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58870          <idle>-0     (-----) [000] dnh4 29484.644986: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58871          <idle>-0     (-----) [000] .n.1 29484.644992: cpu_idle: state=4294967295 cpu_id=0
58872              ps-13726 (13726) [005] d..2 29484.644994: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58873              ps-13726 (13726) [005] dn.3 29484.644998: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58874          <idle>-0     (-----) [000] d..2 29484.644998: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58875              ps-13726 (13726) [005] d..2 29484.645000: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58876   kworker/u17:2-23076 (23076) [000] d..2 29484.645005: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58877 shell svc 13722-13723 ( 1007) [005] d..2 29484.645010: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58878   kworker/u17:2-23076 (23076) [000] d..3 29484.645010: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58879              ps-13726 (13726) [005] d..2 29484.645015: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58880              ps-13726 (13726) [005] dn.3 29484.645018: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58881              ps-13726 (13726) [005] d..2 29484.645020: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58882   kworker/u17:2-23076 (23076) [000] d..2 29484.645027: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58883 shell svc 13722-13723 ( 1007) [005] d..2 29484.645028: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58884              ps-13726 (13726) [005] d..2 29484.645032: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58885     kworker/0:0-13450 (13450) [000] d..2 29484.645033: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
58886              ps-13726 (13726) [005] dn.3 29484.645035: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58887              ps-13726 (13726) [005] d..2 29484.645037: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58888     kworker/0:0-13450 (13450) [000] d..3 29484.645042: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
58889 shell svc 13722-13723 ( 1007) [005] d..2 29484.645044: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58890          <idle>-0     (-----) [001] .n.1 29484.645047: cpu_idle: state=4294967295 cpu_id=1
58891              ps-13726 (13726) [005] d..2 29484.645048: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58892              ps-13726 (13726) [005] dn.3 29484.645050: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58893              ps-13726 (13726) [005] d..2 29484.645053: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58894          <idle>-0     (-----) [001] d..2 29484.645054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
58895     kworker/0:0-13450 (13450) [000] d..2 29484.645057: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58896 shell svc 13722-13723 ( 1007) [005] d..2 29484.645059: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58897              ps-13726 (13726) [005] d..2 29484.645063: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58898          <idle>-0     (-----) [000] d..1 29484.645064: cpu_idle: state=0 cpu_id=0
58899            adbd-23484 ( 1007) [001] d..2 29484.645066: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
58900              ps-13726 (13726) [005] dn.3 29484.645066: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58901              ps-13726 (13726) [005] d..2 29484.645068: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58902            adbd-23484 ( 1007) [001] d..3 29484.645073: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
58903 shell svc 13722-13723 ( 1007) [005] d..2 29484.645075: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58904              ps-13726 (13726) [005] d..2 29484.645079: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58905              ps-13726 (13726) [005] dn.3 29484.645081: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58906              ps-13726 (13726) [005] d..2 29484.645083: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58907 shell svc 13722-13723 ( 1007) [005] d..2 29484.645090: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58908              ps-13726 (13726) [005] d..2 29484.645094: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58909              ps-13726 (13726) [005] dn.3 29484.645097: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58910              ps-13726 (13726) [005] d..2 29484.645099: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58911 shell svc 13722-13723 ( 1007) [005] d..2 29484.645105: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58912              ps-13726 (13726) [005] d..2 29484.645110: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58913              ps-13726 (13726) [005] dn.3 29484.645112: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58914              ps-13726 (13726) [005] d..2 29484.645114: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58915            adbd-23484 ( 1007) [001] d..2 29484.645119: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
58916 shell svc 13722-13723 ( 1007) [005] d..2 29484.645121: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58917              ps-13726 (13726) [005] d..2 29484.645125: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58918              ps-13726 (13726) [005] dn.3 29484.645127: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58919              ps-13726 (13726) [005] d..2 29484.645129: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58920 shell svc 13722-13723 ( 1007) [005] d..2 29484.645136: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58921              ps-13726 (13726) [005] d..2 29484.645141: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58922              ps-13726 (13726) [005] dn.3 29484.645143: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58923              ps-13726 (13726) [005] d..2 29484.645145: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58924 shell svc 13722-13723 ( 1007) [005] d..2 29484.645152: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58925              ps-13726 (13726) [005] d..2 29484.645156: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58926              ps-13726 (13726) [005] dn.3 29484.645159: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58927              ps-13726 (13726) [005] d..2 29484.645161: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58928 shell svc 13722-13723 ( 1007) [005] d..2 29484.645167: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58929              ps-13726 (13726) [005] d..2 29484.645172: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58930              ps-13726 (13726) [005] dn.3 29484.645174: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58931              ps-13726 (13726) [005] d..2 29484.645176: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58932 shell svc 13722-13723 ( 1007) [005] d..2 29484.645183: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58933            adbd-1007  ( 1007) [001] d..1 29484.645208: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58934            adbd-1007  ( 1007) [001] d..2 29484.645221: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58935            adbd-1007  ( 1007) [001] d..2 29484.645253: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
58936            adbd-23485 ( 1007) [001] d..2 29484.645304: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58937          <idle>-0     (-----) [000] d.h3 29484.645312: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58938          <idle>-0     (-----) [001] d..1 29484.645314: cpu_idle: state=0 cpu_id=1
58939          <idle>-0     (-----) [000] dnh4 29484.645318: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58940          <idle>-0     (-----) [000] .n.1 29484.645323: cpu_idle: state=4294967295 cpu_id=0
58941          <idle>-0     (-----) [000] d..2 29484.645330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58942   kworker/u17:2-23076 (23076) [000] d..2 29484.645337: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58943   kworker/u17:2-23076 (23076) [000] d..3 29484.645342: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58944   kworker/u17:2-23076 (23076) [000] d..2 29484.645360: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58945     kworker/0:0-13450 (13450) [000] d..2 29484.645365: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58946     kworker/0:0-13450 (13450) [000] d..3 29484.645376: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58947          <idle>-0     (-----) [001] .n.1 29484.645380: cpu_idle: state=4294967295 cpu_id=1
58948          <idle>-0     (-----) [001] d..2 29484.645388: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58949     kworker/0:0-13450 (13450) [000] d..2 29484.645391: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58950          <idle>-0     (-----) [000] d..1 29484.645398: cpu_idle: state=0 cpu_id=0
58951            adbd-23485 ( 1007) [001] d..2 29484.645438: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58952          <idle>-0     (-----) [001] d..1 29484.645447: cpu_idle: state=0 cpu_id=1
58953          <idle>-0     (-----) [000] d.h3 29484.645483: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58954          <idle>-0     (-----) [000] dnh4 29484.645488: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58955          <idle>-0     (-----) [000] .n.1 29484.645494: cpu_idle: state=4294967295 cpu_id=0
58956          <idle>-0     (-----) [000] d..2 29484.645500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58957   kworker/u17:2-23076 (23076) [000] d..2 29484.645508: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58958   kworker/u17:2-23076 (23076) [000] d..3 29484.645514: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58959   kworker/u17:2-23076 (23076) [000] d..2 29484.645530: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58960     kworker/0:0-13450 (13450) [000] d..2 29484.645536: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
58961     kworker/0:0-13450 (13450) [000] d..3 29484.645545: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
58962          <idle>-0     (-----) [001] .n.1 29484.645551: cpu_idle: state=4294967295 cpu_id=1
58963          <idle>-0     (-----) [001] d..2 29484.645558: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
58964     kworker/0:0-13450 (13450) [000] d..2 29484.645560: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58965          <idle>-0     (-----) [000] d..1 29484.645568: cpu_idle: state=0 cpu_id=0
58966            adbd-23485 ( 1007) [001] d..2 29484.645576: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58967          <idle>-0     (-----) [001] d..1 29484.645584: cpu_idle: state=0 cpu_id=1
58968          <idle>-0     (-----) [000] d.h3 29484.645660: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58969          <idle>-0     (-----) [000] dnh4 29484.645666: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
58970          <idle>-0     (-----) [000] .n.1 29484.645671: cpu_idle: state=4294967295 cpu_id=0
58971          <idle>-0     (-----) [000] d..2 29484.645678: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
58972   kworker/u17:2-23076 (23076) [000] d..2 29484.645684: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58973              ps-13726 (13726) [005] d..2 29484.645685: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58974              ps-13726 (13726) [005] dn.3 29484.645689: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58975   kworker/u17:2-23076 (23076) [000] d..3 29484.645690: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
58976              ps-13726 (13726) [005] d..2 29484.645692: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58977 shell svc 13722-13723 ( 1007) [005] d..2 29484.645702: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58978   kworker/u17:2-23076 (23076) [000] d..2 29484.645706: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
58979              ps-13726 (13726) [005] d..2 29484.645707: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58980              ps-13726 (13726) [005] dn.3 29484.645710: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58981              ps-13726 (13726) [005] d..2 29484.645712: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58982     kworker/0:0-13450 (13450) [000] d..2 29484.645713: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
58983 shell svc 13722-13723 ( 1007) [005] d..2 29484.645720: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58984              ps-13726 (13726) [005] d..2 29484.645724: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58985              ps-13726 (13726) [005] dn.3 29484.645727: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58986              ps-13726 (13726) [005] d..2 29484.645729: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58987     kworker/0:0-13450 (13450) [000] d..3 29484.645736: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
58988 shell svc 13722-13723 ( 1007) [005] d..2 29484.645736: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58989              ps-13726 (13726) [005] d..2 29484.645740: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58990              ps-13726 (13726) [005] dn.3 29484.645743: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58991     kworker/0:0-13450 (13450) [000] d..2 29484.645746: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
58992              ps-13726 (13726) [005] d..2 29484.645746: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58993 shell svc 13722-13723 ( 1007) [005] d..2 29484.645753: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58994              ps-13726 (13726) [005] d..2 29484.645757: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58995            adbd-23484 ( 1007) [000] d..2 29484.645759: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
58996              ps-13726 (13726) [005] dn.3 29484.645760: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
58997              ps-13726 (13726) [005] d..2 29484.645762: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
58998 shell svc 13722-13723 ( 1007) [005] d..2 29484.645768: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
58999            adbd-23484 ( 1007) [000] d..3 29484.645769: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
59000              ps-13726 (13726) [005] d..2 29484.645773: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59001              ps-13726 (13726) [005] dn.3 29484.645775: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59002              ps-13726 (13726) [005] d..2 29484.645777: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59003 shell svc 13722-13723 ( 1007) [005] d..2 29484.645784: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59004              ps-13726 (13726) [005] d..2 29484.645788: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59005              ps-13726 (13726) [005] dn.3 29484.645790: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59006              ps-13726 (13726) [005] d..2 29484.645792: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59007 shell svc 13722-13723 ( 1007) [005] d..2 29484.645799: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59008              ps-13726 (13726) [005] d..2 29484.645803: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59009              ps-13726 (13726) [005] dn.3 29484.645806: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59010              ps-13726 (13726) [005] d..2 29484.645808: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59011 shell svc 13722-13723 ( 1007) [005] d..2 29484.645814: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59012            adbd-23484 ( 1007) [000] d..2 29484.645816: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59013              ps-13726 (13726) [005] d..2 29484.645818: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59014              ps-13726 (13726) [005] dn.3 29484.645821: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59015              ps-13726 (13726) [005] d..2 29484.645823: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59016 shell svc 13722-13723 ( 1007) [005] d..2 29484.645829: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59017              ps-13726 (13726) [005] d..2 29484.645833: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59018              ps-13726 (13726) [005] dn.3 29484.645835: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59019              ps-13726 (13726) [005] d..2 29484.645838: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59020 shell svc 13722-13723 ( 1007) [005] d..2 29484.645844: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59021              ps-13726 (13726) [005] d..2 29484.645848: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59022              ps-13726 (13726) [005] dn.3 29484.645851: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59023              ps-13726 (13726) [005] d..2 29484.645853: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59024 shell svc 13722-13723 ( 1007) [005] d..2 29484.645859: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59025              ps-13726 (13726) [005] d..2 29484.645863: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59026              ps-13726 (13726) [005] dn.3 29484.645866: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59027              ps-13726 (13726) [005] d..2 29484.645868: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59028 shell svc 13722-13723 ( 1007) [005] d..2 29484.645874: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59029              ps-13726 (13726) [005] d..2 29484.645879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59030              ps-13726 (13726) [005] dn.3 29484.645881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59031              ps-13726 (13726) [005] d..2 29484.645883: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59032 shell svc 13722-13723 ( 1007) [005] d..2 29484.645890: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59033              ps-13726 (13726) [005] d..2 29484.645895: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59034              ps-13726 (13726) [005] dn.3 29484.645897: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59035            adbd-1007  ( 1007) [000] d..1 29484.645897: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59036              ps-13726 (13726) [005] d..2 29484.645899: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59037 shell svc 13722-13723 ( 1007) [005] d..2 29484.645906: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59038            adbd-1007  ( 1007) [000] d..2 29484.645909: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59039              ps-13726 (13726) [005] d..2 29484.645910: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59040              ps-13726 (13726) [005] dn.3 29484.645912: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59041          <idle>-0     (-----) [001] .n.1 29484.645913: cpu_idle: state=4294967295 cpu_id=1
59042              ps-13726 (13726) [005] d..2 29484.645914: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59043          <idle>-0     (-----) [001] d..2 29484.645920: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59044 shell svc 13722-13723 ( 1007) [005] d..2 29484.645921: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59045              ps-13726 (13726) [005] d..2 29484.645925: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59046              ps-13726 (13726) [005] dn.3 29484.645927: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59047              ps-13726 (13726) [005] d..2 29484.645929: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59048 shell svc 13722-13723 ( 1007) [005] d..2 29484.645936: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59049              ps-13726 (13726) [005] d..2 29484.645940: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59050              ps-13726 (13726) [005] dn.3 29484.645942: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59051              ps-13726 (13726) [005] d..2 29484.645944: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59052            adbd-1007  ( 1007) [000] d..2 29484.645947: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59053 shell svc 13722-13723 ( 1007) [005] d..2 29484.645951: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59054              ps-13726 (13726) [005] d..2 29484.645955: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59055          <idle>-0     (-----) [000] d..1 29484.645957: cpu_idle: state=0 cpu_id=0
59056              ps-13726 (13726) [005] dn.3 29484.645957: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59057              ps-13726 (13726) [005] d..2 29484.645959: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59058 shell svc 13722-13723 ( 1007) [005] d..2 29484.645965: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59059            adbd-23485 ( 1007) [001] d..2 29484.645968: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59060              ps-13726 (13726) [005] d..2 29484.645970: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59061              ps-13726 (13726) [005] dn.3 29484.645972: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59062              ps-13726 (13726) [005] d..2 29484.645974: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59063          <idle>-0     (-----) [001] d..1 29484.645976: cpu_idle: state=0 cpu_id=1
59064 shell svc 13722-13723 ( 1007) [005] d..2 29484.645980: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59065          <idle>-0     (-----) [000] d.h3 29484.645981: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59066          <idle>-0     (-----) [000] dnh4 29484.645991: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59067          <idle>-0     (-----) [000] .n.1 29484.645997: cpu_idle: state=4294967295 cpu_id=0
59068          <idle>-0     (-----) [000] d..2 29484.646004: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59069   kworker/u17:2-23076 (23076) [000] d..2 29484.646012: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59070   kworker/u17:2-23076 (23076) [000] d..3 29484.646018: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59071   kworker/u17:2-23076 (23076) [000] d..2 29484.646035: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59072     kworker/0:0-13450 (13450) [000] d..2 29484.646041: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59073     kworker/0:0-13450 (13450) [000] d..3 29484.646053: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59074          <idle>-0     (-----) [001] .n.1 29484.646059: cpu_idle: state=4294967295 cpu_id=1
59075          <idle>-0     (-----) [001] d..2 29484.646066: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59076     kworker/0:0-13450 (13450) [000] d..2 29484.646068: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59077          <idle>-0     (-----) [000] d..1 29484.646076: cpu_idle: state=0 cpu_id=0
59078            adbd-23485 ( 1007) [001] d..2 29484.646114: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59079          <idle>-0     (-----) [001] d..1 29484.646122: cpu_idle: state=0 cpu_id=1
59080          <idle>-0     (-----) [000] d.h3 29484.646133: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59081          <idle>-0     (-----) [000] dnh4 29484.646139: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59082          <idle>-0     (-----) [000] .n.1 29484.646146: cpu_idle: state=4294967295 cpu_id=0
59083          <idle>-0     (-----) [000] d..2 29484.646152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59084   kworker/u17:2-23076 (23076) [000] d..2 29484.646160: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59085   kworker/u17:2-23076 (23076) [000] d..3 29484.646166: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59086   kworker/u17:2-23076 (23076) [000] d..2 29484.646182: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59087     kworker/0:0-13450 (13450) [000] d..2 29484.646188: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59088     kworker/0:0-13450 (13450) [000] d..3 29484.646198: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59089          <idle>-0     (-----) [001] .n.1 29484.646203: cpu_idle: state=4294967295 cpu_id=1
59090          <idle>-0     (-----) [001] d..2 29484.646210: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59091     kworker/0:0-13450 (13450) [000] d..2 29484.646212: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59092          <idle>-0     (-----) [000] d..1 29484.646220: cpu_idle: state=0 cpu_id=0
59093            adbd-23485 ( 1007) [001] d..2 29484.646228: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59094          <idle>-0     (-----) [001] d..1 29484.646236: cpu_idle: state=0 cpu_id=1
59095          <idle>-0     (-----) [000] d.h3 29484.646308: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59096          <idle>-0     (-----) [000] dnh4 29484.646314: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59097          <idle>-0     (-----) [000] .n.1 29484.646320: cpu_idle: state=4294967295 cpu_id=0
59098          <idle>-0     (-----) [000] d..2 29484.646327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59099   kworker/u17:2-23076 (23076) [000] d..2 29484.646334: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59100   kworker/u17:2-23076 (23076) [000] d..3 29484.646339: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59101   kworker/u17:2-23076 (23076) [000] d..2 29484.646356: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59102     kworker/0:0-13450 (13450) [000] d..2 29484.646363: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
59103     kworker/0:0-13450 (13450) [000] d..3 29484.646379: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
59104          <idle>-0     (-----) [001] .n.1 29484.646385: cpu_idle: state=4294967295 cpu_id=1
59105          <idle>-0     (-----) [001] d..2 29484.646391: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
59106     kworker/0:0-13450 (13450) [000] d..2 29484.646394: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59107              ps-13726 (13726) [005] d..2 29484.646395: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59108              ps-13726 (13726) [005] dn.3 29484.646399: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59109          <idle>-0     (-----) [000] d..1 29484.646402: cpu_idle: state=0 cpu_id=0
59110              ps-13726 (13726) [005] d..2 29484.646402: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59111            adbd-23484 ( 1007) [001] d..2 29484.646403: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
59112 shell svc 13722-13723 ( 1007) [005] d..2 29484.646412: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59113            adbd-23484 ( 1007) [001] d..3 29484.646416: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
59114              ps-13726 (13726) [005] d..2 29484.646416: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59115              ps-13726 (13726) [005] dn.3 29484.646419: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59116              ps-13726 (13726) [005] d..2 29484.646421: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59117 shell svc 13722-13723 ( 1007) [005] d..2 29484.646428: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59118              ps-13726 (13726) [005] d..2 29484.646433: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59119              ps-13726 (13726) [005] dn.3 29484.646435: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59120              ps-13726 (13726) [005] d..2 29484.646439: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59121 shell svc 13722-13723 ( 1007) [005] d..2 29484.646445: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59122              ps-13726 (13726) [005] d..2 29484.646450: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59123              ps-13726 (13726) [005] dn.3 29484.646452: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59124              ps-13726 (13726) [005] d..2 29484.646454: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59125 shell svc 13722-13723 ( 1007) [005] d..2 29484.646461: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59126            adbd-23484 ( 1007) [001] d..2 29484.646462: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59127              ps-13726 (13726) [005] d..2 29484.646466: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59128              ps-13726 (13726) [005] dn.3 29484.646468: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59129              ps-13726 (13726) [005] d..2 29484.646470: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59130 shell svc 13722-13723 ( 1007) [005] d..2 29484.646477: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59131              ps-13726 (13726) [005] d..2 29484.646481: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59132              ps-13726 (13726) [005] dn.3 29484.646483: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59133              ps-13726 (13726) [005] d..2 29484.646485: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59134 shell svc 13722-13723 ( 1007) [005] d..2 29484.646492: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59135              ps-13726 (13726) [005] d..2 29484.646496: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59136              ps-13726 (13726) [005] dn.3 29484.646499: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59137              ps-13726 (13726) [005] d..2 29484.646501: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59138 shell svc 13722-13723 ( 1007) [005] d..2 29484.646508: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59139              ps-13726 (13726) [005] d..2 29484.646512: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59140              ps-13726 (13726) [005] dn.3 29484.646515: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59141              ps-13726 (13726) [005] d..2 29484.646517: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59142 shell svc 13722-13723 ( 1007) [005] d..2 29484.646524: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59143              ps-13726 (13726) [005] d..2 29484.646529: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59144              ps-13726 (13726) [005] dn.3 29484.646531: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59145              ps-13726 (13726) [005] d..2 29484.646533: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59146 shell svc 13722-13723 ( 1007) [005] d..2 29484.646540: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59147              ps-13726 (13726) [005] d..2 29484.646544: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59148            adbd-1007  ( 1007) [001] d..1 29484.646545: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59149              ps-13726 (13726) [005] dn.3 29484.646546: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59150              ps-13726 (13726) [005] d..2 29484.646548: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59151 shell svc 13722-13723 ( 1007) [005] d..2 29484.646555: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59152            adbd-1007  ( 1007) [001] d..2 29484.646559: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59153              ps-13726 (13726) [005] d..2 29484.646559: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59154              ps-13726 (13726) [005] dn.3 29484.646561: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59155              ps-13726 (13726) [005] d..2 29484.646563: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59156 shell svc 13722-13723 ( 1007) [005] d..2 29484.646570: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59157              ps-13726 (13726) [005] d..2 29484.646574: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59158              ps-13726 (13726) [005] dn.3 29484.646576: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59159              ps-13726 (13726) [005] d..2 29484.646578: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59160 shell svc 13722-13723 ( 1007) [005] d..2 29484.646585: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59161            adbd-1007  ( 1007) [001] d..2 29484.646589: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
59162              ps-13726 (13726) [005] d..2 29484.646589: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59163              ps-13726 (13726) [005] dn.3 29484.646591: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59164              ps-13726 (13726) [005] d..2 29484.646594: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59165 shell svc 13722-13723 ( 1007) [005] d..2 29484.646600: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59166              ps-13726 (13726) [005] d..2 29484.646605: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59167              ps-13726 (13726) [005] dn.3 29484.646607: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59168              ps-13726 (13726) [005] d..2 29484.646609: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59169 shell svc 13722-13723 ( 1007) [005] d..2 29484.646616: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59170              ps-13726 (13726) [005] d..2 29484.646620: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59171              ps-13726 (13726) [005] dn.3 29484.646622: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59172              ps-13726 (13726) [005] d..2 29484.646624: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59173 shell svc 13722-13723 ( 1007) [005] d..2 29484.646630: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59174              ps-13726 (13726) [005] d..2 29484.646635: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59175              ps-13726 (13726) [005] dn.3 29484.646637: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59176              ps-13726 (13726) [005] d..2 29484.646639: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59177            adbd-23485 ( 1007) [001] d..2 29484.646640: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59178          <idle>-0     (-----) [000] d.h3 29484.646645: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59179 shell svc 13722-13723 ( 1007) [005] d..2 29484.646646: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59180          <idle>-0     (-----) [001] d..1 29484.646650: cpu_idle: state=0 cpu_id=1
59181          <idle>-0     (-----) [000] dnh4 29484.646652: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59182          <idle>-0     (-----) [000] .n.1 29484.646657: cpu_idle: state=4294967295 cpu_id=0
59183          <idle>-0     (-----) [000] d..2 29484.646663: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59184   kworker/u17:2-23076 (23076) [000] d..2 29484.646670: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59185   kworker/u17:2-23076 (23076) [000] d..3 29484.646676: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59186   kworker/u17:2-23076 (23076) [000] d..2 29484.646693: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59187     kworker/0:0-13450 (13450) [000] d..2 29484.646698: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59188     kworker/0:0-13450 (13450) [000] d..3 29484.646708: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59189          <idle>-0     (-----) [001] .n.1 29484.646713: cpu_idle: state=4294967295 cpu_id=1
59190          <idle>-0     (-----) [001] d..2 29484.646721: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59191     kworker/0:0-13450 (13450) [000] d..2 29484.646722: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59192          <idle>-0     (-----) [000] d..1 29484.646730: cpu_idle: state=0 cpu_id=0
59193            adbd-23485 ( 1007) [001] d..2 29484.646770: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59194          <idle>-0     (-----) [001] d..1 29484.646778: cpu_idle: state=0 cpu_id=1
59195          <idle>-0     (-----) [000] d.h3 29484.646802: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59196          <idle>-0     (-----) [000] dnh4 29484.646808: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59197          <idle>-0     (-----) [000] .n.1 29484.646814: cpu_idle: state=4294967295 cpu_id=0
59198          <idle>-0     (-----) [000] d..2 29484.646821: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59199   kworker/u17:2-23076 (23076) [000] d..2 29484.646828: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59200   kworker/u17:2-23076 (23076) [000] d..3 29484.646834: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59201   kworker/u17:2-23076 (23076) [000] d..2 29484.646851: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59202     kworker/0:0-13450 (13450) [000] d..2 29484.646858: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59203     kworker/0:0-13450 (13450) [000] d..3 29484.646867: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59204          <idle>-0     (-----) [001] .n.1 29484.646873: cpu_idle: state=4294967295 cpu_id=1
59205          <idle>-0     (-----) [001] d..2 29484.646880: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59206     kworker/0:0-13450 (13450) [000] d..2 29484.646881: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59207          <idle>-0     (-----) [000] d..1 29484.646889: cpu_idle: state=0 cpu_id=0
59208            adbd-23485 ( 1007) [001] d..2 29484.646900: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59209          <idle>-0     (-----) [001] d..1 29484.646907: cpu_idle: state=0 cpu_id=1
59210          <idle>-0     (-----) [000] d.h3 29484.646986: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59211          <idle>-0     (-----) [000] dnh4 29484.646992: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59212          <idle>-0     (-----) [000] .n.1 29484.646998: cpu_idle: state=4294967295 cpu_id=0
59213          <idle>-0     (-----) [000] d..2 29484.647004: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59214   kworker/u17:2-23076 (23076) [000] d..2 29484.647010: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59215   kworker/u17:2-23076 (23076) [000] d..3 29484.647016: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59216   kworker/u17:2-23076 (23076) [000] d..2 29484.647033: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59217     kworker/0:0-13450 (13450) [000] d..2 29484.647040: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
59218     kworker/0:0-13450 (13450) [000] d..3 29484.647049: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
59219          <idle>-0     (-----) [001] .n.1 29484.647055: cpu_idle: state=4294967295 cpu_id=1
59220          <idle>-0     (-----) [001] d..2 29484.647064: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
59221          <idle>-0     (-----) [003] d.s2 29484.647074: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
59222            adbd-23484 ( 1007) [001] d..2 29484.647075: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
59223            adbd-23484 ( 1007) [001] d..3 29484.647083: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
59224          <idle>-0     (-----) [003] dns3 29484.647085: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
59225     kworker/0:0-13450 (13450) [000] d..2 29484.647089: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59226          <idle>-0     (-----) [003] .n.1 29484.647097: cpu_idle: state=4294967295 cpu_id=3
59227          <idle>-0     (-----) [000] d..1 29484.647097: cpu_idle: state=0 cpu_id=0
59228          <idle>-0     (-----) [003] d..2 29484.647104: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
59229     rcu_preempt-7     (    7) [003] d..2 29484.647131: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59230            adbd-23484 ( 1007) [001] d..2 29484.647138: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59231          <idle>-0     (-----) [001] d..1 29484.647147: cpu_idle: state=0 cpu_id=1
59232            adbd-1007  ( 1007) [003] d..1 29484.647201: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59233            adbd-1007  ( 1007) [003] d..2 29484.647213: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59234          <idle>-0     (-----) [001] .n.1 29484.647218: cpu_idle: state=4294967295 cpu_id=1
59235          <idle>-0     (-----) [001] d..2 29484.647225: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59236            adbd-1007  ( 1007) [003] d..2 29484.647249: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59237          <idle>-0     (-----) [003] d..1 29484.647258: cpu_idle: state=0 cpu_id=3
59238            adbd-23485 ( 1007) [001] d..2 29484.647274: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59239          <idle>-0     (-----) [001] d..1 29484.647282: cpu_idle: state=0 cpu_id=1
59240          <idle>-0     (-----) [000] d.h3 29484.647290: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59241          <idle>-0     (-----) [000] dnh4 29484.647297: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59242          <idle>-0     (-----) [000] .n.1 29484.647302: cpu_idle: state=4294967295 cpu_id=0
59243          <idle>-0     (-----) [000] d..2 29484.647309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59244   kworker/u17:2-23076 (23076) [000] d..2 29484.647318: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59245   kworker/u17:2-23076 (23076) [000] d..3 29484.647323: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59246   kworker/u17:2-23076 (23076) [000] d..2 29484.647340: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59247     kworker/0:0-13450 (13450) [000] d..2 29484.647346: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59248     kworker/0:0-13450 (13450) [000] d..3 29484.647355: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59249          <idle>-0     (-----) [001] .n.1 29484.647360: cpu_idle: state=4294967295 cpu_id=1
59250          <idle>-0     (-----) [001] d..2 29484.647367: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59251     kworker/0:0-13450 (13450) [000] d..2 29484.647370: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59252          <idle>-0     (-----) [000] d..1 29484.647377: cpu_idle: state=0 cpu_id=0
59253            adbd-23485 ( 1007) [001] d..2 29484.647415: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59254          <idle>-0     (-----) [001] d..1 29484.647423: cpu_idle: state=0 cpu_id=1
59255          <idle>-0     (-----) [000] d.h3 29484.647443: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59256          <idle>-0     (-----) [000] dnh4 29484.647449: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59257          <idle>-0     (-----) [000] .n.1 29484.647455: cpu_idle: state=4294967295 cpu_id=0
59258          <idle>-0     (-----) [000] d..2 29484.647461: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59259   kworker/u17:2-23076 (23076) [000] d..2 29484.647468: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59260   kworker/u17:2-23076 (23076) [000] d..3 29484.647474: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59261   kworker/u17:2-23076 (23076) [000] d..2 29484.647491: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59262     kworker/0:0-13450 (13450) [000] d..2 29484.647497: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59263     kworker/0:0-13450 (13450) [000] d..3 29484.647507: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59264          <idle>-0     (-----) [001] .n.1 29484.647512: cpu_idle: state=4294967295 cpu_id=1
59265          <idle>-0     (-----) [001] d..2 29484.647519: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59266     kworker/0:0-13450 (13450) [000] d..2 29484.647521: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59267          <idle>-0     (-----) [000] d..1 29484.647528: cpu_idle: state=0 cpu_id=0
59268            adbd-23485 ( 1007) [001] d..2 29484.647539: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59269          <idle>-0     (-----) [001] d..1 29484.647547: cpu_idle: state=0 cpu_id=1
59270              ps-13726 (13726) [005] d..2 29484.647575: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59271              ps-13726 (13726) [005] dn.3 29484.647580: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59272              ps-13726 (13726) [005] d..2 29484.647583: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59273 shell svc 13722-13723 ( 1007) [005] d..2 29484.647594: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59274              ps-13726 (13726) [005] d..2 29484.647600: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59275              ps-13726 (13726) [005] dn.3 29484.647602: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59276              ps-13726 (13726) [005] d..2 29484.647605: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59277 shell svc 13722-13723 ( 1007) [005] d..2 29484.647612: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59278          <idle>-0     (-----) [000] d.h3 29484.647615: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59279              ps-13726 (13726) [005] d..2 29484.647616: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59280              ps-13726 (13726) [005] dn.3 29484.647619: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59281              ps-13726 (13726) [005] d..2 29484.647621: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59282          <idle>-0     (-----) [000] dnh4 29484.647621: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59283          <idle>-0     (-----) [000] .n.1 29484.647626: cpu_idle: state=4294967295 cpu_id=0
59284 shell svc 13722-13723 ( 1007) [005] d..2 29484.647628: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59285              ps-13726 (13726) [005] d..2 29484.647632: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59286          <idle>-0     (-----) [000] d..2 29484.647633: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59287              ps-13726 (13726) [005] dn.3 29484.647634: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59288              ps-13726 (13726) [005] d..2 29484.647636: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59289   kworker/u17:2-23076 (23076) [000] d..2 29484.647640: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59290 shell svc 13722-13723 ( 1007) [005] d..2 29484.647643: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59291   kworker/u17:2-23076 (23076) [000] d..3 29484.647645: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59292              ps-13726 (13726) [005] d..2 29484.647648: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59293              ps-13726 (13726) [005] dn.3 29484.647650: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59294              ps-13726 (13726) [005] d..2 29484.647653: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59295 shell svc 13722-13723 ( 1007) [005] d..2 29484.647660: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59296   kworker/u17:2-23076 (23076) [000] d..2 29484.647662: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59297              ps-13726 (13726) [005] d..2 29484.647664: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59298              ps-13726 (13726) [005] dn.3 29484.647667: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59299              ps-13726 (13726) [005] d..2 29484.647669: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59300     kworker/0:0-13450 (13450) [000] d..2 29484.647669: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
59301 shell svc 13722-13723 ( 1007) [005] d..2 29484.647675: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59302     kworker/0:0-13450 (13450) [000] d..3 29484.647678: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
59303              ps-13726 (13726) [005] d..2 29484.647680: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59304              ps-13726 (13726) [005] dn.3 29484.647682: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59305          <idle>-0     (-----) [001] .n.1 29484.647683: cpu_idle: state=4294967295 cpu_id=1
59306              ps-13726 (13726) [005] d..2 29484.647684: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59307          <idle>-0     (-----) [001] d..2 29484.647690: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
59308 shell svc 13722-13723 ( 1007) [005] d..2 29484.647691: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59309     kworker/0:0-13450 (13450) [000] d..2 29484.647693: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59310              ps-13726 (13726) [005] d..2 29484.647695: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59311              ps-13726 (13726) [005] dn.3 29484.647698: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59312              ps-13726 (13726) [005] d..2 29484.647700: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59313          <idle>-0     (-----) [000] d..1 29484.647700: cpu_idle: state=0 cpu_id=0
59314            adbd-23484 ( 1007) [001] d..2 29484.647702: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
59315 shell svc 13722-13723 ( 1007) [005] d..2 29484.647706: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59316              ps-13726 (13726) [005] d..2 29484.647711: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59317              ps-13726 (13726) [005] dn.3 29484.647713: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59318            adbd-23484 ( 1007) [001] d..3 29484.647714: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
59319              ps-13726 (13726) [005] d..2 29484.647715: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59320 shell svc 13722-13723 ( 1007) [005] d..2 29484.647722: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59321              ps-13726 (13726) [005] d..2 29484.647726: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59322              ps-13726 (13726) [005] dn.3 29484.647729: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59323              ps-13726 (13726) [005] d..2 29484.647731: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59324 shell svc 13722-13723 ( 1007) [005] d..2 29484.647737: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59325              ps-13726 (13726) [005] d..2 29484.647741: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59326              ps-13726 (13726) [005] dn.3 29484.647744: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59327              ps-13726 (13726) [005] d..2 29484.647746: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59328 shell svc 13722-13723 ( 1007) [005] d..2 29484.647752: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59329              ps-13726 (13726) [005] d..2 29484.647757: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59330              ps-13726 (13726) [005] dn.3 29484.647760: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59331            adbd-23484 ( 1007) [001] d..2 29484.647760: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59332              ps-13726 (13726) [005] d..2 29484.647762: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59333 shell svc 13722-13723 ( 1007) [005] d..2 29484.647768: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59334              ps-13726 (13726) [005] d..2 29484.647772: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59335              ps-13726 (13726) [005] dn.3 29484.647775: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59336              ps-13726 (13726) [005] d..2 29484.647777: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59337 shell svc 13722-13723 ( 1007) [005] d..2 29484.647783: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59338              ps-13726 (13726) [005] d..2 29484.647787: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59339              ps-13726 (13726) [005] dn.3 29484.647789: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59340              ps-13726 (13726) [005] d..2 29484.647791: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59341 shell svc 13722-13723 ( 1007) [005] d..2 29484.647798: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59342              ps-13726 (13726) [005] d..2 29484.647802: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59343              ps-13726 (13726) [005] dn.3 29484.647804: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59344              ps-13726 (13726) [005] d..2 29484.647807: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59345 shell svc 13722-13723 ( 1007) [005] d..2 29484.647813: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59346              ps-13726 (13726) [005] d..2 29484.647818: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59347              ps-13726 (13726) [005] dn.3 29484.647820: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59348              ps-13726 (13726) [005] d..2 29484.647822: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59349 shell svc 13722-13723 ( 1007) [005] d..2 29484.647829: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59350              ps-13726 (13726) [005] d..2 29484.647833: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59351              ps-13726 (13726) [005] dn.3 29484.647835: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59352              ps-13726 (13726) [005] d..2 29484.647837: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59353 shell svc 13722-13723 ( 1007) [005] d..2 29484.647844: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59354              ps-13726 (13726) [005] d..2 29484.647848: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59355              ps-13726 (13726) [005] dn.3 29484.647850: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59356              ps-13726 (13726) [005] d..2 29484.647852: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59357            adbd-1007  ( 1007) [001] d..1 29484.647856: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59358 shell svc 13722-13723 ( 1007) [005] d..2 29484.647859: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59359              ps-13726 (13726) [005] d..2 29484.647863: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59360              ps-13726 (13726) [005] dn.3 29484.647866: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59361              ps-13726 (13726) [005] d..2 29484.647868: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59362            adbd-1007  ( 1007) [001] d..2 29484.647869: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59363 shell svc 13722-13723 ( 1007) [005] d..2 29484.647874: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59364              ps-13726 (13726) [005] d..2 29484.647879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59365              ps-13726 (13726) [005] dn.3 29484.647881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59366              ps-13726 (13726) [005] d..2 29484.647883: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59367 shell svc 13722-13723 ( 1007) [005] d..2 29484.647889: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59368              ps-13726 (13726) [005] d..2 29484.647893: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59369              ps-13726 (13726) [005] dn.3 29484.647895: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59370              ps-13726 (13726) [005] d..2 29484.647898: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59371            adbd-1007  ( 1007) [001] d..2 29484.647901: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
59372 shell svc 13722-13723 ( 1007) [005] d..2 29484.647904: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59373              ps-13726 (13726) [005] d..2 29484.647908: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59374              ps-13726 (13726) [005] dn.3 29484.647910: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59375              ps-13726 (13726) [005] d..2 29484.647912: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59376 shell svc 13722-13723 ( 1007) [005] d..2 29484.647919: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59377              ps-13726 (13726) [005] d..2 29484.647923: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59378              ps-13726 (13726) [005] dn.3 29484.647925: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59379              ps-13726 (13726) [005] d..2 29484.647928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59380 shell svc 13722-13723 ( 1007) [005] d..2 29484.647934: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59381              ps-13726 (13726) [005] d..2 29484.647939: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59382              ps-13726 (13726) [005] dn.3 29484.647941: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59383              ps-13726 (13726) [005] d..2 29484.647943: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59384 shell svc 13722-13723 ( 1007) [005] d..2 29484.647949: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59385            adbd-23485 ( 1007) [001] d..2 29484.647952: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59386              ps-13726 (13726) [005] d..2 29484.647954: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59387              ps-13726 (13726) [005] dn.3 29484.647956: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59388              ps-13726 (13726) [005] d..2 29484.647958: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59389          <idle>-0     (-----) [001] d..1 29484.647961: cpu_idle: state=0 cpu_id=1
59390 shell svc 13722-13723 ( 1007) [005] d..2 29484.647964: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59391              ps-13726 (13726) [005] d..2 29484.647968: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59392              ps-13726 (13726) [005] dn.3 29484.647970: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59393              ps-13726 (13726) [005] d..2 29484.647972: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59394          <idle>-0     (-----) [000] d.h3 29484.647975: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59395 shell svc 13722-13723 ( 1007) [005] d..2 29484.647979: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59396          <idle>-0     (-----) [000] dnh4 29484.647981: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59397              ps-13726 (13726) [005] d..2 29484.647983: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59398              ps-13726 (13726) [005] dn.3 29484.647985: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59399          <idle>-0     (-----) [000] .n.1 29484.647987: cpu_idle: state=4294967295 cpu_id=0
59400              ps-13726 (13726) [005] d..2 29484.647988: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59401          <idle>-0     (-----) [000] d..2 29484.647994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59402 shell svc 13722-13723 ( 1007) [005] d..2 29484.647994: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59403              ps-13726 (13726) [005] d..2 29484.648000: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59404   kworker/u17:2-23076 (23076) [000] d..2 29484.648001: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59405              ps-13726 (13726) [005] dn.3 29484.648002: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59406              ps-13726 (13726) [005] d..2 29484.648004: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59407   kworker/u17:2-23076 (23076) [000] d..3 29484.648007: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59408 shell svc 13722-13723 ( 1007) [005] d..2 29484.648011: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59409              ps-13726 (13726) [005] d..2 29484.648015: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59410              ps-13726 (13726) [005] dn.3 29484.648018: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59411              ps-13726 (13726) [005] d..2 29484.648020: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59412   kworker/u17:2-23076 (23076) [000] d..2 29484.648024: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59413 shell svc 13722-13723 ( 1007) [005] d..2 29484.648026: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59414     kworker/0:0-13450 (13450) [000] d..2 29484.648029: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59415              ps-13726 (13726) [005] d..2 29484.648031: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59416              ps-13726 (13726) [005] dn.3 29484.648033: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59417              ps-13726 (13726) [005] d..2 29484.648036: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59418     kworker/0:0-13450 (13450) [000] d..3 29484.648039: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59419 shell svc 13722-13723 ( 1007) [005] d..2 29484.648042: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59420          <idle>-0     (-----) [001] .n.1 29484.648045: cpu_idle: state=4294967295 cpu_id=1
59421              ps-13726 (13726) [005] d..2 29484.648047: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59422              ps-13726 (13726) [005] dn.3 29484.648050: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59423              ps-13726 (13726) [005] d..2 29484.648052: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59424          <idle>-0     (-----) [001] d..2 29484.648053: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59425     kworker/0:0-13450 (13450) [000] d..2 29484.648054: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59426 shell svc 13722-13723 ( 1007) [005] d..2 29484.648059: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59427          <idle>-0     (-----) [000] d..1 29484.648062: cpu_idle: state=0 cpu_id=0
59428              ps-13726 (13726) [005] d..2 29484.648063: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59429              ps-13726 (13726) [005] dn.3 29484.648065: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59430              ps-13726 (13726) [005] d..2 29484.648067: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59431 shell svc 13722-13723 ( 1007) [005] d..2 29484.648074: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59432              ps-13726 (13726) [005] d..2 29484.648078: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59433              ps-13726 (13726) [005] dn.3 29484.648080: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59434              ps-13726 (13726) [005] d..2 29484.648082: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59435 shell svc 13722-13723 ( 1007) [005] d..2 29484.648089: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59436              ps-13726 (13726) [005] d..2 29484.648094: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59437              ps-13726 (13726) [005] dn.3 29484.648096: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59438              ps-13726 (13726) [005] d..2 29484.648098: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59439            adbd-23485 ( 1007) [001] d..2 29484.648103: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59440 shell svc 13722-13723 ( 1007) [005] d..2 29484.648105: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59441              ps-13726 (13726) [005] d..2 29484.648109: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59442          <idle>-0     (-----) [001] d..1 29484.648111: cpu_idle: state=0 cpu_id=1
59443              ps-13726 (13726) [005] dn.3 29484.648111: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59444              ps-13726 (13726) [005] d..2 29484.648113: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59445 shell svc 13722-13723 ( 1007) [005] d..2 29484.648120: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59446              ps-13726 (13726) [005] d..2 29484.648124: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59447              ps-13726 (13726) [005] dn.3 29484.648127: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59448              ps-13726 (13726) [005] d..2 29484.648129: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59449 shell svc 13722-13723 ( 1007) [005] d..2 29484.648135: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59450          <idle>-0     (-----) [000] d.h3 29484.648139: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59451          <idle>-0     (-----) [000] dnh4 29484.648148: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59452          <idle>-0     (-----) [000] .n.1 29484.648154: cpu_idle: state=4294967295 cpu_id=0
59453          <idle>-0     (-----) [000] d..2 29484.648161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59454   kworker/u17:2-23076 (23076) [000] d..2 29484.648168: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59455   kworker/u17:2-23076 (23076) [000] d..3 29484.648174: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59456   kworker/u17:2-23076 (23076) [000] d..2 29484.648190: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59457     kworker/0:0-13450 (13450) [000] d..2 29484.648196: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59458     kworker/0:0-13450 (13450) [000] d..3 29484.648216: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59459          <idle>-0     (-----) [001] .n.1 29484.648221: cpu_idle: state=4294967295 cpu_id=1
59460          <idle>-0     (-----) [001] d..2 29484.648229: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59461     kworker/0:0-13450 (13450) [000] d..2 29484.648231: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59462          <idle>-0     (-----) [000] d..1 29484.648239: cpu_idle: state=0 cpu_id=0
59463            adbd-23485 ( 1007) [001] d..2 29484.648246: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59464          <idle>-0     (-----) [001] d..1 29484.648253: cpu_idle: state=0 cpu_id=1
59465          <idle>-0     (-----) [000] d.h3 29484.648312: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59466          <idle>-0     (-----) [000] dnh4 29484.648318: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59467          <idle>-0     (-----) [000] .n.1 29484.648324: cpu_idle: state=4294967295 cpu_id=0
59468          <idle>-0     (-----) [000] d..2 29484.648331: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59469   kworker/u17:2-23076 (23076) [000] d..2 29484.648337: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59470   kworker/u17:2-23076 (23076) [000] d..3 29484.648344: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59471   kworker/u17:2-23076 (23076) [000] d..2 29484.648361: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59472     kworker/0:0-13450 (13450) [000] d..2 29484.648369: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
59473     kworker/0:0-13450 (13450) [000] d..3 29484.648391: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
59474     kworker/0:0-13450 (13450) [000] d..2 29484.648401: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
59475            adbd-23484 ( 1007) [000] d..2 29484.648413: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
59476            adbd-23484 ( 1007) [000] d..3 29484.648423: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
59477            adbd-23484 ( 1007) [000] d..2 29484.648471: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59478            adbd-1007  ( 1007) [000] d..1 29484.648556: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59479            adbd-1007  ( 1007) [000] d..2 29484.648568: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59480          <idle>-0     (-----) [001] .n.1 29484.648573: cpu_idle: state=4294967295 cpu_id=1
59481          <idle>-0     (-----) [001] d..2 29484.648580: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59482            adbd-1007  ( 1007) [000] d..2 29484.648605: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59483          <idle>-0     (-----) [000] d..1 29484.648615: cpu_idle: state=0 cpu_id=0
59484            adbd-23485 ( 1007) [001] d..2 29484.648627: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59485          <idle>-0     (-----) [001] d..1 29484.648635: cpu_idle: state=0 cpu_id=1
59486          <idle>-0     (-----) [000] d.h3 29484.648646: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59487          <idle>-0     (-----) [000] dnh4 29484.648654: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59488          <idle>-0     (-----) [000] .n.1 29484.648660: cpu_idle: state=4294967295 cpu_id=0
59489          <idle>-0     (-----) [000] d..2 29484.648667: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59490   kworker/u17:2-23076 (23076) [000] d..2 29484.648675: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59491   kworker/u17:2-23076 (23076) [000] d..3 29484.648683: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59492   kworker/u17:2-23076 (23076) [000] d..2 29484.648700: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59493     kworker/0:0-13450 (13450) [000] d..2 29484.648706: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59494     kworker/0:0-13450 (13450) [000] d..3 29484.648716: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59495          <idle>-0     (-----) [001] .n.1 29484.648721: cpu_idle: state=4294967295 cpu_id=1
59496          <idle>-0     (-----) [001] d..2 29484.648728: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59497     kworker/0:0-13450 (13450) [000] d..2 29484.648731: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59498          <idle>-0     (-----) [000] d..1 29484.648739: cpu_idle: state=0 cpu_id=0
59499            adbd-23485 ( 1007) [001] d..2 29484.648776: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59500              ps-13726 (13726) [005] d..2 29484.648783: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59501          <idle>-0     (-----) [001] d..1 29484.648784: cpu_idle: state=0 cpu_id=1
59502              ps-13726 (13726) [005] dn.3 29484.648788: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59503              ps-13726 (13726) [005] d..2 29484.648790: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59504 shell svc 13722-13723 ( 1007) [005] d..2 29484.648801: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59505          <idle>-0     (-----) [000] d.h3 29484.648805: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59506              ps-13726 (13726) [005] d..2 29484.648805: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59507              ps-13726 (13726) [005] dn.3 29484.648808: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59508              ps-13726 (13726) [005] d..2 29484.648810: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59509          <idle>-0     (-----) [000] dnh4 29484.648811: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59510          <idle>-0     (-----) [000] .n.1 29484.648816: cpu_idle: state=4294967295 cpu_id=0
59511 shell svc 13722-13723 ( 1007) [005] d..2 29484.648817: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59512              ps-13726 (13726) [005] d..2 29484.648822: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59513          <idle>-0     (-----) [000] d..2 29484.648823: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59514              ps-13726 (13726) [005] dn.3 29484.648824: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59515              ps-13726 (13726) [005] d..2 29484.648826: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59516   kworker/u17:2-23076 (23076) [000] d..2 29484.648830: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59517 shell svc 13722-13723 ( 1007) [005] d..2 29484.648833: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59518   kworker/u17:2-23076 (23076) [000] d..3 29484.648835: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59519              ps-13726 (13726) [005] d..2 29484.648838: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59520              ps-13726 (13726) [005] dn.3 29484.648840: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59521              ps-13726 (13726) [005] d..2 29484.648842: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59522 shell svc 13722-13723 ( 1007) [005] d..2 29484.648849: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59523   kworker/u17:2-23076 (23076) [000] d..2 29484.648853: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59524              ps-13726 (13726) [005] d..2 29484.648853: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59525              ps-13726 (13726) [005] dn.3 29484.648856: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59526     kworker/0:0-13450 (13450) [000] d..2 29484.648858: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59527              ps-13726 (13726) [005] d..2 29484.648860: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59528 shell svc 13722-13723 ( 1007) [005] d..2 29484.648866: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59529     kworker/0:0-13450 (13450) [000] d..3 29484.648868: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59530              ps-13726 (13726) [005] d..2 29484.648871: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59531          <idle>-0     (-----) [001] .n.1 29484.648873: cpu_idle: state=4294967295 cpu_id=1
59532              ps-13726 (13726) [005] dn.3 29484.648873: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59533              ps-13726 (13726) [005] d..2 29484.648875: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59534          <idle>-0     (-----) [001] d..2 29484.648880: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59535     kworker/0:0-13450 (13450) [000] d..2 29484.648882: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59536 shell svc 13722-13723 ( 1007) [005] d..2 29484.648883: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59537              ps-13726 (13726) [005] d..2 29484.648887: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59538              ps-13726 (13726) [005] dn.3 29484.648889: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59539          <idle>-0     (-----) [000] d..1 29484.648890: cpu_idle: state=0 cpu_id=0
59540              ps-13726 (13726) [005] d..2 29484.648891: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59541            adbd-23485 ( 1007) [001] d..2 29484.648897: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59542 shell svc 13722-13723 ( 1007) [005] d..2 29484.648898: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59543              ps-13726 (13726) [005] d..2 29484.648903: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59544          <idle>-0     (-----) [001] d..1 29484.648904: cpu_idle: state=0 cpu_id=1
59545              ps-13726 (13726) [005] dn.3 29484.648905: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59546              ps-13726 (13726) [005] d..2 29484.648907: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59547 shell svc 13722-13723 ( 1007) [005] d..2 29484.648914: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59548              ps-13726 (13726) [005] d..2 29484.648919: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59549              ps-13726 (13726) [005] dn.3 29484.648921: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59550              ps-13726 (13726) [005] d..2 29484.648924: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59551 shell svc 13722-13723 ( 1007) [005] d..2 29484.648930: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59552              ps-13726 (13726) [005] d..2 29484.648935: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59553              ps-13726 (13726) [005] dn.3 29484.648938: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59554              ps-13726 (13726) [005] d..2 29484.648940: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59555 shell svc 13722-13723 ( 1007) [005] d..2 29484.648946: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59556              ps-13726 (13726) [005] d..2 29484.648951: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59557              ps-13726 (13726) [005] dn.3 29484.648954: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59558              ps-13726 (13726) [005] d..2 29484.648956: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59559 shell svc 13722-13723 ( 1007) [005] d..2 29484.648962: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59560              ps-13726 (13726) [005] d..2 29484.648967: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59561              ps-13726 (13726) [005] dn.3 29484.648970: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59562              ps-13726 (13726) [005] d..2 29484.648972: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59563 shell svc 13722-13723 ( 1007) [005] d..2 29484.648978: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59564          <idle>-0     (-----) [000] d.h3 29484.648980: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59565              ps-13726 (13726) [005] d..2 29484.648982: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59566              ps-13726 (13726) [005] dn.3 29484.648984: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59567          <idle>-0     (-----) [000] dnh4 29484.648986: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59568              ps-13726 (13726) [005] d..2 29484.648986: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59569          <idle>-0     (-----) [000] .n.1 29484.648992: cpu_idle: state=4294967295 cpu_id=0
59570 shell svc 13722-13723 ( 1007) [005] d..2 29484.648993: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59571              ps-13726 (13726) [005] d..2 29484.648998: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59572          <idle>-0     (-----) [000] d..2 29484.648999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59573              ps-13726 (13726) [005] dn.3 29484.649000: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59574              ps-13726 (13726) [005] d..2 29484.649002: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59575   kworker/u17:2-23076 (23076) [000] d..2 29484.649005: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59576 shell svc 13722-13723 ( 1007) [005] d..2 29484.649009: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59577   kworker/u17:2-23076 (23076) [000] d..3 29484.649010: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59578              ps-13726 (13726) [005] d..2 29484.649013: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59579              ps-13726 (13726) [005] dn.3 29484.649015: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59580              ps-13726 (13726) [005] d..2 29484.649017: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59581 shell svc 13722-13723 ( 1007) [005] d..2 29484.649024: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59582   kworker/u17:2-23076 (23076) [000] d..2 29484.649027: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59583              ps-13726 (13726) [005] d..2 29484.649028: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59584              ps-13726 (13726) [005] dn.3 29484.649030: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59585              ps-13726 (13726) [005] d..2 29484.649032: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59586     kworker/0:0-13450 (13450) [000] d..2 29484.649034: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
59587 shell svc 13722-13723 ( 1007) [005] d..2 29484.649038: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59588              ps-13726 (13726) [005] d..2 29484.649043: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59589              ps-13726 (13726) [005] dn.3 29484.649046: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59590              ps-13726 (13726) [005] d..2 29484.649048: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59591     kworker/0:0-13450 (13450) [000] d..3 29484.649051: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
59592 shell svc 13722-13723 ( 1007) [005] d..2 29484.649055: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59593          <idle>-0     (-----) [001] .n.1 29484.649056: cpu_idle: state=4294967295 cpu_id=1
59594              ps-13726 (13726) [005] d..2 29484.649059: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59595              ps-13726 (13726) [005] dn.3 29484.649061: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59596              ps-13726 (13726) [005] d..2 29484.649063: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59597          <idle>-0     (-----) [001] d..2 29484.649064: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
59598     kworker/0:0-13450 (13450) [000] d..2 29484.649066: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59599 shell svc 13722-13723 ( 1007) [005] d..2 29484.649070: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59600          <idle>-0     (-----) [000] d..1 29484.649074: cpu_idle: state=0 cpu_id=0
59601              ps-13726 (13726) [005] d..2 29484.649074: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59602            adbd-23484 ( 1007) [001] d..2 29484.649076: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
59603              ps-13726 (13726) [005] dn.3 29484.649077: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59604              ps-13726 (13726) [005] d..2 29484.649079: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59605 shell svc 13722-13723 ( 1007) [005] d..2 29484.649085: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59606              ps-13726 (13726) [005] d..2 29484.649089: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59607            adbd-23484 ( 1007) [001] d..3 29484.649090: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
59608              ps-13726 (13726) [005] dn.3 29484.649092: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59609              ps-13726 (13726) [005] d..2 29484.649094: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59610 shell svc 13722-13723 ( 1007) [005] d..2 29484.649100: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59611              ps-13726 (13726) [005] d..2 29484.649105: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59612              ps-13726 (13726) [005] dn.3 29484.649107: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59613              ps-13726 (13726) [005] d..2 29484.649109: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59614 shell svc 13722-13723 ( 1007) [005] d..2 29484.649116: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59615              ps-13726 (13726) [005] d..2 29484.649120: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59616              ps-13726 (13726) [005] dn.3 29484.649122: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59617              ps-13726 (13726) [005] d..2 29484.649124: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59618 shell svc 13722-13723 ( 1007) [005] d..2 29484.649131: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59619              ps-13726 (13726) [005] d..2 29484.649135: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59620            adbd-23484 ( 1007) [001] d..2 29484.649137: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59621              ps-13726 (13726) [005] dn.3 29484.649137: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59622              ps-13726 (13726) [005] d..2 29484.649140: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59623 shell svc 13722-13723 ( 1007) [005] d..2 29484.649147: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59624              ps-13726 (13726) [005] d..2 29484.649151: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59625              ps-13726 (13726) [005] dn.3 29484.649153: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59626              ps-13726 (13726) [005] d..2 29484.649155: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59627 shell svc 13722-13723 ( 1007) [005] d..2 29484.649162: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59628              ps-13726 (13726) [005] d..2 29484.649166: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59629              ps-13726 (13726) [005] dn.3 29484.649168: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59630              ps-13726 (13726) [005] d..2 29484.649170: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59631 shell svc 13722-13723 ( 1007) [005] d..2 29484.649176: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59632            adbd-1007  ( 1007) [001] d..1 29484.649229: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59633            adbd-1007  ( 1007) [001] d..2 29484.649243: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59634            adbd-1007  ( 1007) [001] d..2 29484.649274: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
59635            adbd-23485 ( 1007) [001] d..2 29484.649325: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59636          <idle>-0     (-----) [000] d.h3 29484.649330: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59637          <idle>-0     (-----) [001] d..1 29484.649335: cpu_idle: state=0 cpu_id=1
59638          <idle>-0     (-----) [000] dnh4 29484.649337: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59639          <idle>-0     (-----) [000] .n.1 29484.649342: cpu_idle: state=4294967295 cpu_id=0
59640          <idle>-0     (-----) [000] d..2 29484.649349: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59641   kworker/u17:2-23076 (23076) [000] d..2 29484.649356: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59642   kworker/u17:2-23076 (23076) [000] d..3 29484.649362: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59643   kworker/u17:2-23076 (23076) [000] d..2 29484.649379: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59644     kworker/0:0-13450 (13450) [000] d..2 29484.649385: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59645     kworker/0:0-13450 (13450) [000] d..3 29484.649394: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59646          <idle>-0     (-----) [001] .n.1 29484.649400: cpu_idle: state=4294967295 cpu_id=1
59647          <idle>-0     (-----) [001] d..2 29484.649408: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59648     kworker/0:0-13450 (13450) [000] d..2 29484.649409: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59649          <idle>-0     (-----) [000] d..1 29484.649417: cpu_idle: state=0 cpu_id=0
59650            adbd-23485 ( 1007) [001] d..2 29484.649457: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59651          <idle>-0     (-----) [001] d..1 29484.649465: cpu_idle: state=0 cpu_id=1
59652          <idle>-0     (-----) [000] d.h3 29484.649498: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59653          <idle>-0     (-----) [000] dnh4 29484.649504: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59654          <idle>-0     (-----) [000] .n.1 29484.649509: cpu_idle: state=4294967295 cpu_id=0
59655          <idle>-0     (-----) [000] d..2 29484.649516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59656   kworker/u17:2-23076 (23076) [000] d..2 29484.649523: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59657   kworker/u17:2-23076 (23076) [000] d..3 29484.649529: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59658   kworker/u17:2-23076 (23076) [000] d..2 29484.649546: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59659     kworker/0:0-13450 (13450) [000] d..2 29484.649552: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59660     kworker/0:0-13450 (13450) [000] d..3 29484.649561: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59661          <idle>-0     (-----) [001] .n.1 29484.649566: cpu_idle: state=4294967295 cpu_id=1
59662          <idle>-0     (-----) [001] d..2 29484.649573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59663     kworker/0:0-13450 (13450) [000] d..2 29484.649575: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59664          <idle>-0     (-----) [000] d..1 29484.649583: cpu_idle: state=0 cpu_id=0
59665            adbd-23485 ( 1007) [001] d..2 29484.649593: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59666          <idle>-0     (-----) [001] d..1 29484.649600: cpu_idle: state=0 cpu_id=1
59667          <idle>-0     (-----) [000] d.h3 29484.649678: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59668          <idle>-0     (-----) [000] dnh4 29484.649684: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59669          <idle>-0     (-----) [000] .n.1 29484.649690: cpu_idle: state=4294967295 cpu_id=0
59670          <idle>-0     (-----) [000] d..2 29484.649697: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59671   kworker/u17:2-23076 (23076) [000] d..2 29484.649703: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59672   kworker/u17:2-23076 (23076) [000] d..3 29484.649709: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59673   kworker/u17:2-23076 (23076) [000] d..2 29484.649726: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59674     kworker/0:0-13450 (13450) [000] d..2 29484.649733: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
59675     kworker/0:0-13450 (13450) [000] d..3 29484.649742: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
59676          <idle>-0     (-----) [001] .n.1 29484.649748: cpu_idle: state=4294967295 cpu_id=1
59677          <idle>-0     (-----) [001] d..2 29484.649754: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
59678     kworker/0:0-13450 (13450) [000] d..2 29484.649756: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59679          <idle>-0     (-----) [000] d..1 29484.649764: cpu_idle: state=0 cpu_id=0
59680            adbd-23484 ( 1007) [001] d..2 29484.649766: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
59681            adbd-23484 ( 1007) [001] d..3 29484.649774: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
59682            adbd-23484 ( 1007) [001] d..2 29484.649820: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59683            adbd-1007  ( 1007) [001] d..2 29484.649885: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59684          <idle>-0     (-----) [001] d..1 29484.649895: cpu_idle: state=0 cpu_id=1
59685              ps-13726 (13726) [005] d.s2 29484.650397: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
59686          <idle>-0     (-----) [000] dnh2 29484.650419: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
59687          <idle>-0     (-----) [000] .n.1 29484.650423: cpu_idle: state=4294967295 cpu_id=0
59688          <idle>-0     (-----) [000] d..2 29484.650431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
59689              ps-13726 (13726) [005] d..2 29484.650432: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59690              ps-13726 (13726) [005] dn.3 29484.650436: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59691              ps-13726 (13726) [005] d..2 29484.650439: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59692 shell svc 13722-13723 ( 1007) [005] d..2 29484.650453: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
59693  kworker/u16:10-23868 (23868) [000] d.h3 29484.650471: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
59694 shell svc 13722-13723 ( 1007) [005] d..2 29484.650472: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59695              ps-13726 (13726) [005] d..2 29484.650478: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59696              ps-13726 (13726) [005] dn.3 29484.650480: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59697              ps-13726 (13726) [005] d..2 29484.650483: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59698  kworker/u16:10-23868 (23868) [000] .... 29484.650483: clk_set_rate: l3_cluster1_vote_clk 1401600000
59699  kworker/u16:10-23868 (23868) [000] .... 29484.650487: clk_set_rate: l3_clk 1401600000
59700 shell svc 13722-13723 ( 1007) [005] d..2 29484.650490: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59701              ps-13726 (13726) [005] d..2 29484.650495: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59702              ps-13726 (13726) [005] dn.3 29484.650497: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59703              ps-13726 (13726) [005] d..2 29484.650500: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59704 shell svc 13722-13723 ( 1007) [005] d..2 29484.650507: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59705              ps-13726 (13726) [005] d..2 29484.650511: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59706              ps-13726 (13726) [005] dn.3 29484.650513: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59707              ps-13726 (13726) [005] d..2 29484.650515: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59708 shell svc 13722-13723 ( 1007) [005] d..2 29484.650522: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59709  kworker/u16:10-23868 (23868) [000] .... 29484.650526: clk_set_rate: l3_cluster0_vote_clk 652800000
59710              ps-13726 (13726) [005] d..2 29484.650527: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59711              ps-13726 (13726) [005] dn.3 29484.650529: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59712              ps-13726 (13726) [005] d..2 29484.650532: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59713 shell svc 13722-13723 ( 1007) [005] d..2 29484.650541: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59714              ps-13726 (13726) [005] d..2 29484.650551: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59715              ps-13726 (13726) [005] dn.3 29484.650553: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59716              ps-13726 (13726) [005] d..2 29484.650556: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59717  kworker/u16:10-23868 (23868) [000] d..2 29484.650562: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59718 shell svc 13722-13723 ( 1007) [005] d..2 29484.650562: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59719              ps-13726 (13726) [005] d..2 29484.650566: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59720              ps-13726 (13726) [005] dn.3 29484.650569: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59721              ps-13726 (13726) [005] d..2 29484.650571: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59722 shell svc 13722-13723 ( 1007) [005] d..2 29484.650578: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59723              ps-13726 (13726) [005] d..2 29484.650582: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59724              ps-13726 (13726) [005] dn.3 29484.650584: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59725              ps-13726 (13726) [005] d..2 29484.650586: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59726 shell svc 13722-13723 ( 1007) [005] d..2 29484.650593: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59727              ps-13726 (13726) [005] d..2 29484.650597: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59728              ps-13726 (13726) [005] dn.3 29484.650599: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59729              ps-13726 (13726) [005] d..2 29484.650602: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59730 shell svc 13722-13723 ( 1007) [005] d..2 29484.650609: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59731              ps-13726 (13726) [005] d..2 29484.650613: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59732              ps-13726 (13726) [005] dn.3 29484.650615: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59733              ps-13726 (13726) [005] d..2 29484.650617: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59734            adbd-1007  ( 1007) [000] d..1 29484.650620: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59735 shell svc 13722-13723 ( 1007) [005] d..2 29484.650624: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59736              ps-13726 (13726) [005] d..2 29484.650628: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59737              ps-13726 (13726) [005] dn.3 29484.650630: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59738              ps-13726 (13726) [005] d..2 29484.650632: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59739            adbd-1007  ( 1007) [000] d..2 29484.650636: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59740 shell svc 13722-13723 ( 1007) [005] d..2 29484.650639: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59741          <idle>-0     (-----) [001] .n.1 29484.650640: cpu_idle: state=4294967295 cpu_id=1
59742              ps-13726 (13726) [005] d..2 29484.650643: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59743              ps-13726 (13726) [005] dn.3 29484.650645: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59744              ps-13726 (13726) [005] d..2 29484.650647: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59745          <idle>-0     (-----) [001] d..2 29484.650649: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59746 shell svc 13722-13723 ( 1007) [005] d..2 29484.650654: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59747              ps-13726 (13726) [005] d..2 29484.650658: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59748              ps-13726 (13726) [005] dn.3 29484.650660: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59749              ps-13726 (13726) [005] d..2 29484.650662: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59750 shell svc 13722-13723 ( 1007) [005] d..2 29484.650669: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59751              ps-13726 (13726) [005] d..2 29484.650673: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59752              ps-13726 (13726) [005] dn.3 29484.650675: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59753            adbd-1007  ( 1007) [000] d..2 29484.650678: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59754              ps-13726 (13726) [005] d..2 29484.650678: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59755 shell svc 13722-13723 ( 1007) [005] d..2 29484.650684: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59756          <idle>-0     (-----) [000] d..1 29484.650688: cpu_idle: state=0 cpu_id=0
59757              ps-13726 (13726) [005] d..2 29484.650688: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59758              ps-13726 (13726) [005] dn.3 29484.650690: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59759              ps-13726 (13726) [005] d..2 29484.650692: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59760 shell svc 13722-13723 ( 1007) [005] d..2 29484.650699: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59761            adbd-23485 ( 1007) [001] d..2 29484.650700: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59762              ps-13726 (13726) [005] d..2 29484.650703: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59763              ps-13726 (13726) [005] dn.3 29484.650706: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59764          <idle>-0     (-----) [001] d..1 29484.650708: cpu_idle: state=0 cpu_id=1
59765              ps-13726 (13726) [005] d..2 29484.650708: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59766          <idle>-0     (-----) [000] d.h3 29484.650709: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59767 shell svc 13722-13723 ( 1007) [005] d..2 29484.650715: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59768          <idle>-0     (-----) [000] dnh4 29484.650719: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59769              ps-13726 (13726) [005] d..2 29484.650719: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59770              ps-13726 (13726) [005] dn.3 29484.650721: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59771              ps-13726 (13726) [005] d..2 29484.650723: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59772          <idle>-0     (-----) [000] .n.1 29484.650725: cpu_idle: state=4294967295 cpu_id=0
59773 shell svc 13722-13723 ( 1007) [005] d..2 29484.650730: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59774          <idle>-0     (-----) [000] d..2 29484.650732: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59775              ps-13726 (13726) [005] d..2 29484.650735: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59776              ps-13726 (13726) [005] dn.3 29484.650737: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59777              ps-13726 (13726) [005] d..2 29484.650739: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59778   kworker/u17:2-23076 (23076) [000] d..2 29484.650741: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59779 shell svc 13722-13723 ( 1007) [005] d..2 29484.650746: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59780   kworker/u17:2-23076 (23076) [000] d..3 29484.650747: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59781              ps-13726 (13726) [005] d..2 29484.650750: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59782              ps-13726 (13726) [005] dn.3 29484.650753: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59783              ps-13726 (13726) [005] d..2 29484.650755: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59784 shell svc 13722-13723 ( 1007) [005] d..2 29484.650761: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59785   kworker/u17:2-23076 (23076) [000] d..2 29484.650765: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59786              ps-13726 (13726) [005] d..2 29484.650765: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59787              ps-13726 (13726) [005] dn.3 29484.650768: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59788              ps-13726 (13726) [005] d..2 29484.650770: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59789     kworker/0:0-13450 (13450) [000] d..2 29484.650772: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59790 shell svc 13722-13723 ( 1007) [005] d..2 29484.650776: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59791              ps-13726 (13726) [005] d..2 29484.650781: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59792     kworker/0:0-13450 (13450) [000] d..3 29484.650781: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59793              ps-13726 (13726) [005] dn.3 29484.650783: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59794              ps-13726 (13726) [005] d..2 29484.650786: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59795          <idle>-0     (-----) [001] .n.1 29484.650787: cpu_idle: state=4294967295 cpu_id=1
59796 shell svc 13722-13723 ( 1007) [005] d..2 29484.650792: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59797          <idle>-0     (-----) [001] d..2 29484.650794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59798     kworker/0:0-13450 (13450) [000] d..2 29484.650796: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59799              ps-13726 (13726) [005] d..2 29484.650797: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59800              ps-13726 (13726) [005] dn.3 29484.650799: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59801              ps-13726 (13726) [005] d..2 29484.650801: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59802          <idle>-0     (-----) [000] d..1 29484.650804: cpu_idle: state=0 cpu_id=0
59803 shell svc 13722-13723 ( 1007) [005] d..2 29484.650808: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59804              ps-13726 (13726) [005] d..2 29484.650812: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59805              ps-13726 (13726) [005] dn.3 29484.650814: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59806              ps-13726 (13726) [005] d..2 29484.650816: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59807 shell svc 13722-13723 ( 1007) [005] d..2 29484.650823: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59808              ps-13726 (13726) [005] d..2 29484.650828: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59809              ps-13726 (13726) [005] dn.3 29484.650830: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59810              ps-13726 (13726) [005] d..2 29484.650832: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59811 shell svc 13722-13723 ( 1007) [005] d..2 29484.650839: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59812              ps-13726 (13726) [005] d..2 29484.650844: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59813            adbd-23485 ( 1007) [001] d..2 29484.650844: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59814              ps-13726 (13726) [005] dn.3 29484.650847: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59815              ps-13726 (13726) [005] d..2 29484.650849: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59816          <idle>-0     (-----) [001] d..1 29484.650852: cpu_idle: state=0 cpu_id=1
59817 shell svc 13722-13723 ( 1007) [005] d..2 29484.650855: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59818          <idle>-0     (-----) [000] d.h3 29484.650857: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59819              ps-13726 (13726) [005] d..2 29484.650860: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59820              ps-13726 (13726) [005] dn.3 29484.650862: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59821          <idle>-0     (-----) [000] dnh4 29484.650862: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59822              ps-13726 (13726) [005] d..2 29484.650864: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59823 shell svc 13722-13723 ( 1007) [005] d..2 29484.650871: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59824          <idle>-0     (-----) [000] .n.1 29484.650872: cpu_idle: state=4294967295 cpu_id=0
59825              ps-13726 (13726) [005] d..2 29484.650875: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59826              ps-13726 (13726) [005] dn.3 29484.650877: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59827          <idle>-0     (-----) [000] d..2 29484.650878: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59828              ps-13726 (13726) [005] d..2 29484.650879: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59829 shell svc 13722-13723 ( 1007) [005] d..2 29484.650886: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59830   kworker/u17:2-23076 (23076) [000] d..2 29484.650887: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59831              ps-13726 (13726) [005] d..2 29484.650891: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59832   kworker/u17:2-23076 (23076) [000] d..3 29484.650893: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59833              ps-13726 (13726) [005] dn.3 29484.650893: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59834              ps-13726 (13726) [005] d..2 29484.650895: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59835 shell svc 13722-13723 ( 1007) [005] d..2 29484.650902: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59836              ps-13726 (13726) [005] d..2 29484.650906: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59837              ps-13726 (13726) [005] dn.3 29484.650908: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59838   kworker/u17:2-23076 (23076) [000] d..2 29484.650909: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59839              ps-13726 (13726) [005] d..2 29484.650911: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59840     kworker/0:0-13450 (13450) [000] d..2 29484.650915: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59841 shell svc 13722-13723 ( 1007) [005] d..2 29484.650917: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59842              ps-13726 (13726) [005] d..2 29484.650922: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59843              ps-13726 (13726) [005] dn.3 29484.650924: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59844     kworker/0:0-13450 (13450) [000] d..3 29484.650925: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59845              ps-13726 (13726) [005] d..2 29484.650926: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59846          <idle>-0     (-----) [001] .n.1 29484.650930: cpu_idle: state=4294967295 cpu_id=1
59847 shell svc 13722-13723 ( 1007) [005] d..2 29484.650933: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59848              ps-13726 (13726) [005] d..2 29484.650937: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59849          <idle>-0     (-----) [001] d..2 29484.650938: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59850     kworker/0:0-13450 (13450) [000] d..2 29484.650939: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59851              ps-13726 (13726) [005] dn.3 29484.650939: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59852              ps-13726 (13726) [005] d..2 29484.650941: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59853          <idle>-0     (-----) [000] d..1 29484.650947: cpu_idle: state=0 cpu_id=0
59854 shell svc 13722-13723 ( 1007) [005] d..2 29484.650948: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59855              ps-13726 (13726) [005] d..2 29484.650953: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59856            adbd-23485 ( 1007) [001] d..2 29484.650955: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59857              ps-13726 (13726) [005] dn.3 29484.650955: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59858              ps-13726 (13726) [005] d..2 29484.650957: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59859          <idle>-0     (-----) [001] d..1 29484.650962: cpu_idle: state=0 cpu_id=1
59860 shell svc 13722-13723 ( 1007) [005] d..2 29484.650964: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59861              ps-13726 (13726) [005] d..2 29484.650969: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59862              ps-13726 (13726) [005] dn.3 29484.650971: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59863              ps-13726 (13726) [005] d..2 29484.650973: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59864 shell svc 13722-13723 ( 1007) [005] d..2 29484.650980: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59865              ps-13726 (13726) [005] d..2 29484.650984: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59866              ps-13726 (13726) [005] dn.3 29484.650986: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59867              ps-13726 (13726) [005] d..2 29484.650989: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59868 shell svc 13722-13723 ( 1007) [005] d..2 29484.650996: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59869              ps-13726 (13726) [005] d..2 29484.651001: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59870              ps-13726 (13726) [005] dn.3 29484.651003: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59871              ps-13726 (13726) [005] d..2 29484.651006: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59872 shell svc 13722-13723 ( 1007) [005] d..2 29484.651012: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59873              ps-13726 (13726) [005] d..2 29484.651017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59874              ps-13726 (13726) [005] dn.3 29484.651020: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59875              ps-13726 (13726) [005] d..2 29484.651022: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59876 shell svc 13722-13723 ( 1007) [005] d..2 29484.651029: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59877              ps-13726 (13726) [005] d..2 29484.651034: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59878              ps-13726 (13726) [005] dn.3 29484.651037: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59879              ps-13726 (13726) [005] d..2 29484.651039: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59880 shell svc 13722-13723 ( 1007) [005] d..2 29484.651045: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59881          <idle>-0     (-----) [000] d.h3 29484.651051: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59882              ps-13726 (13726) [005] d..2 29484.651051: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59883              ps-13726 (13726) [005] dn.3 29484.651053: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59884              ps-13726 (13726) [005] d..2 29484.651055: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59885          <idle>-0     (-----) [000] dnh4 29484.651057: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59886 shell svc 13722-13723 ( 1007) [005] d..2 29484.651062: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59887          <idle>-0     (-----) [000] .n.1 29484.651062: cpu_idle: state=4294967295 cpu_id=0
59888              ps-13726 (13726) [005] d..2 29484.651066: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59889              ps-13726 (13726) [005] dn.3 29484.651068: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59890          <idle>-0     (-----) [000] d..2 29484.651069: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59891              ps-13726 (13726) [005] d..2 29484.651070: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59892   kworker/u17:2-23076 (23076) [000] d..2 29484.651077: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59893 shell svc 13722-13723 ( 1007) [005] d..2 29484.651077: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59894   kworker/u17:2-23076 (23076) [000] d..3 29484.651082: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59895              ps-13726 (13726) [005] d..2 29484.651083: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59896              ps-13726 (13726) [005] dn.3 29484.651085: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59897              ps-13726 (13726) [005] d..2 29484.651087: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59898 shell svc 13722-13723 ( 1007) [005] d..2 29484.651094: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59899              ps-13726 (13726) [005] d..2 29484.651098: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59900   kworker/u17:2-23076 (23076) [000] d..2 29484.651099: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59901              ps-13726 (13726) [005] dn.3 29484.651101: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59902              ps-13726 (13726) [005] d..2 29484.651103: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59903     kworker/0:0-13450 (13450) [000] d..2 29484.651106: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
59904 shell svc 13722-13723 ( 1007) [005] d..2 29484.651110: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59905              ps-13726 (13726) [005] d..2 29484.651114: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59906              ps-13726 (13726) [005] dn.3 29484.651117: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59907     kworker/0:0-13450 (13450) [000] d..3 29484.651118: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
59908              ps-13726 (13726) [005] d..2 29484.651119: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59909          <idle>-0     (-----) [001] .n.1 29484.651123: cpu_idle: state=4294967295 cpu_id=1
59910 shell svc 13722-13723 ( 1007) [005] d..2 29484.651126: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59911          <idle>-0     (-----) [001] d..2 29484.651130: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
59912              ps-13726 (13726) [005] d..2 29484.651130: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59913     kworker/0:0-13450 (13450) [000] d..2 29484.651132: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59914              ps-13726 (13726) [005] dn.3 29484.651132: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59915              ps-13726 (13726) [005] d..2 29484.651134: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59916          <idle>-0     (-----) [000] d..1 29484.651140: cpu_idle: state=0 cpu_id=0
59917 shell svc 13722-13723 ( 1007) [005] d..2 29484.651141: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59918            adbd-23484 ( 1007) [001] d..2 29484.651141: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
59919              ps-13726 (13726) [005] d..2 29484.651145: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59920              ps-13726 (13726) [005] dn.3 29484.651148: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59921              ps-13726 (13726) [005] d..2 29484.651150: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59922            adbd-23484 ( 1007) [001] d..3 29484.651153: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
59923 shell svc 13722-13723 ( 1007) [005] d..2 29484.651157: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59924              ps-13726 (13726) [005] d..2 29484.651161: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59925              ps-13726 (13726) [005] dn.3 29484.651163: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59926              ps-13726 (13726) [005] d..2 29484.651165: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59927 shell svc 13722-13723 ( 1007) [005] d..2 29484.651172: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59928              ps-13726 (13726) [005] d..2 29484.651176: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59929              ps-13726 (13726) [005] dn.3 29484.651178: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59930              ps-13726 (13726) [005] d..2 29484.651180: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59931 shell svc 13722-13723 ( 1007) [005] d..2 29484.651187: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59932              ps-13726 (13726) [005] d..2 29484.651191: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59933              ps-13726 (13726) [005] dn.3 29484.651194: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59934              ps-13726 (13726) [005] d..2 29484.651195: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59935            adbd-23484 ( 1007) [001] d..2 29484.651200: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
59936 shell svc 13722-13723 ( 1007) [005] d..2 29484.651202: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59937              ps-13726 (13726) [005] d..2 29484.651206: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59938              ps-13726 (13726) [005] dn.3 29484.651209: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59939              ps-13726 (13726) [005] d..2 29484.651211: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59940 shell svc 13722-13723 ( 1007) [005] d..2 29484.651218: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59941            adbd-1007  ( 1007) [001] d..1 29484.651310: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59942            adbd-1007  ( 1007) [001] d..2 29484.651324: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59943            adbd-1007  ( 1007) [001] d..2 29484.651355: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
59944            adbd-23485 ( 1007) [001] d..2 29484.651406: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59945          <idle>-0     (-----) [001] d..1 29484.651416: cpu_idle: state=0 cpu_id=1
59946          <idle>-0     (-----) [000] d.h3 29484.651417: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59947          <idle>-0     (-----) [000] dnh4 29484.651423: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59948          <idle>-0     (-----) [000] .n.1 29484.651428: cpu_idle: state=4294967295 cpu_id=0
59949          <idle>-0     (-----) [000] d..2 29484.651435: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59950   kworker/u17:2-23076 (23076) [000] d..2 29484.651442: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59951   kworker/u17:2-23076 (23076) [000] d..3 29484.651448: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59952   kworker/u17:2-23076 (23076) [000] d..2 29484.651465: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59953     kworker/0:0-13450 (13450) [000] d..2 29484.651470: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59954     kworker/0:0-13450 (13450) [000] d..3 29484.651480: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59955          <idle>-0     (-----) [001] .n.1 29484.651485: cpu_idle: state=4294967295 cpu_id=1
59956          <idle>-0     (-----) [001] d..2 29484.651493: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59957     kworker/0:0-13450 (13450) [000] d..2 29484.651494: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59958          <idle>-0     (-----) [000] d..1 29484.651501: cpu_idle: state=0 cpu_id=0
59959            adbd-23485 ( 1007) [001] d..2 29484.651541: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59960          <idle>-0     (-----) [001] d..1 29484.651550: cpu_idle: state=0 cpu_id=1
59961          <idle>-0     (-----) [000] d.h3 29484.651603: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59962          <idle>-0     (-----) [000] dnh4 29484.651609: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
59963          <idle>-0     (-----) [000] .n.1 29484.651615: cpu_idle: state=4294967295 cpu_id=0
59964          <idle>-0     (-----) [000] d..2 29484.651621: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
59965   kworker/u17:2-23076 (23076) [000] d..2 29484.651629: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59966   kworker/u17:2-23076 (23076) [000] d..3 29484.651634: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
59967              ps-13726 (13726) [005] d..2 29484.651650: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59968   kworker/u17:2-23076 (23076) [000] d..2 29484.651653: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
59969              ps-13726 (13726) [005] dn.3 29484.651654: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59970              ps-13726 (13726) [005] d..2 29484.651657: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59971     kworker/0:0-13450 (13450) [000] d..2 29484.651658: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
59972 shell svc 13722-13723 ( 1007) [005] d..2 29484.651667: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59973     kworker/0:0-13450 (13450) [000] d..3 29484.651668: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
59974              ps-13726 (13726) [005] d..2 29484.651672: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59975          <idle>-0     (-----) [001] .n.1 29484.651672: cpu_idle: state=4294967295 cpu_id=1
59976              ps-13726 (13726) [005] dn.3 29484.651675: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59977              ps-13726 (13726) [005] d..2 29484.651677: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59978          <idle>-0     (-----) [001] d..2 29484.651680: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
59979     kworker/0:0-13450 (13450) [000] d..2 29484.651682: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59980 shell svc 13722-13723 ( 1007) [005] d..2 29484.651684: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59981              ps-13726 (13726) [005] d..2 29484.651688: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59982          <idle>-0     (-----) [000] d..1 29484.651689: cpu_idle: state=0 cpu_id=0
59983              ps-13726 (13726) [005] dn.3 29484.651691: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59984              ps-13726 (13726) [005] d..2 29484.651693: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59985            adbd-23485 ( 1007) [001] d..2 29484.651697: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59986 shell svc 13722-13723 ( 1007) [005] d..2 29484.651700: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59987          <idle>-0     (-----) [001] d..1 29484.651704: cpu_idle: state=0 cpu_id=1
59988              ps-13726 (13726) [005] d..2 29484.651705: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59989              ps-13726 (13726) [005] dn.3 29484.651707: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59990              ps-13726 (13726) [005] d..2 29484.651710: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59991 shell svc 13722-13723 ( 1007) [005] d..2 29484.651717: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59992              ps-13726 (13726) [005] d..2 29484.651722: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59993              ps-13726 (13726) [005] dn.3 29484.651725: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59994              ps-13726 (13726) [005] d..2 29484.651727: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59995 shell svc 13722-13723 ( 1007) [005] d..2 29484.651734: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
59996              ps-13726 (13726) [005] d..2 29484.651739: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59997              ps-13726 (13726) [005] dn.3 29484.651741: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
59998              ps-13726 (13726) [005] d..2 29484.651743: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
59999 shell svc 13722-13723 ( 1007) [005] d..2 29484.651750: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60000              ps-13726 (13726) [005] d..2 29484.651754: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60001              ps-13726 (13726) [005] dn.3 29484.651757: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60002              ps-13726 (13726) [005] d..2 29484.651759: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60003 shell svc 13722-13723 ( 1007) [005] d..2 29484.651765: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60004              ps-13726 (13726) [005] d..2 29484.651770: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60005              ps-13726 (13726) [005] dn.3 29484.651773: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60006              ps-13726 (13726) [005] d..2 29484.651775: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60007 shell svc 13722-13723 ( 1007) [005] d..2 29484.651782: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60008              ps-13726 (13726) [005] d..2 29484.651786: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60009              ps-13726 (13726) [005] dn.3 29484.651789: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60010          <idle>-0     (-----) [000] d.h3 29484.651790: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60011              ps-13726 (13726) [005] d..2 29484.651790: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60012          <idle>-0     (-----) [000] dnh4 29484.651796: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60013 shell svc 13722-13723 ( 1007) [005] d..2 29484.651797: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60014          <idle>-0     (-----) [000] .n.1 29484.651801: cpu_idle: state=4294967295 cpu_id=0
60015              ps-13726 (13726) [005] d..2 29484.651801: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60016              ps-13726 (13726) [005] dn.3 29484.651804: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60017              ps-13726 (13726) [005] d..2 29484.651806: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60018          <idle>-0     (-----) [000] d..2 29484.651808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60019 shell svc 13722-13723 ( 1007) [005] d..2 29484.651812: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60020   kworker/u17:2-23076 (23076) [000] d..2 29484.651814: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60021              ps-13726 (13726) [005] d..2 29484.651816: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60022              ps-13726 (13726) [005] dn.3 29484.651819: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60023   kworker/u17:2-23076 (23076) [000] d..3 29484.651820: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60024              ps-13726 (13726) [005] d..2 29484.651821: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60025 shell svc 13722-13723 ( 1007) [005] d..2 29484.651827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60026              ps-13726 (13726) [005] d..2 29484.651831: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60027              ps-13726 (13726) [005] dn.3 29484.651834: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60028              ps-13726 (13726) [005] d..2 29484.651836: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60029   kworker/u17:2-23076 (23076) [000] d..2 29484.651836: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60030 shell svc 13722-13723 ( 1007) [005] d..2 29484.651843: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60031     kworker/0:0-13450 (13450) [000] d..2 29484.651843: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
60032              ps-13726 (13726) [005] d..2 29484.651847: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60033              ps-13726 (13726) [005] dn.3 29484.651849: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60034              ps-13726 (13726) [005] d..2 29484.651851: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60035     kworker/0:0-13450 (13450) [000] d..3 29484.651852: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
60036          <idle>-0     (-----) [001] .n.1 29484.651857: cpu_idle: state=4294967295 cpu_id=1
60037 shell svc 13722-13723 ( 1007) [005] d..2 29484.651859: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60038              ps-13726 (13726) [005] d..2 29484.651863: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60039          <idle>-0     (-----) [001] d..2 29484.651864: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
60040              ps-13726 (13726) [005] dn.3 29484.651865: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60041     kworker/0:0-13450 (13450) [000] d..2 29484.651867: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60042              ps-13726 (13726) [005] d..2 29484.651868: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60043          <idle>-0     (-----) [000] d..1 29484.651874: cpu_idle: state=0 cpu_id=0
60044 shell svc 13722-13723 ( 1007) [005] d..2 29484.651874: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60045            adbd-23484 ( 1007) [001] d..2 29484.651875: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
60046              ps-13726 (13726) [005] d..2 29484.651879: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60047              ps-13726 (13726) [005] dn.3 29484.651881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60048            adbd-23484 ( 1007) [001] d..3 29484.651883: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
60049              ps-13726 (13726) [005] d..2 29484.651883: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60050 shell svc 13722-13723 ( 1007) [005] d..2 29484.651890: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60051              ps-13726 (13726) [005] d..2 29484.651894: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60052              ps-13726 (13726) [005] dn.3 29484.651897: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60053              ps-13726 (13726) [005] d..2 29484.651899: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60054 shell svc 13722-13723 ( 1007) [005] d..2 29484.651905: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60055            adbd-23484 ( 1007) [001] d..2 29484.651928: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
60056            adbd-1007  ( 1007) [001] d..1 29484.652006: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60057            adbd-1007  ( 1007) [001] d..2 29484.652018: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60058            adbd-1007  ( 1007) [001] d..2 29484.652049: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
60059            adbd-23485 ( 1007) [001] d..2 29484.652101: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60060          <idle>-0     (-----) [001] d..1 29484.652111: cpu_idle: state=0 cpu_id=1
60061          <idle>-0     (-----) [000] d.h3 29484.652122: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60062          <idle>-0     (-----) [000] dnh4 29484.652128: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60063          <idle>-0     (-----) [000] .n.1 29484.652133: cpu_idle: state=4294967295 cpu_id=0
60064          <idle>-0     (-----) [000] d..2 29484.652140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60065   kworker/u17:2-23076 (23076) [000] d..2 29484.652148: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60066   kworker/u17:2-23076 (23076) [000] d..3 29484.652154: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60067   kworker/u17:2-23076 (23076) [000] d..2 29484.652170: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60068     kworker/0:0-13450 (13450) [000] d..2 29484.652176: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60069     kworker/0:0-13450 (13450) [000] d..3 29484.652185: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60070          <idle>-0     (-----) [001] .n.1 29484.652191: cpu_idle: state=4294967295 cpu_id=1
60071          <idle>-0     (-----) [001] d..2 29484.652198: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60072     kworker/0:0-13450 (13450) [000] d..2 29484.652200: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60073          <idle>-0     (-----) [000] d..1 29484.652207: cpu_idle: state=0 cpu_id=0
60074            adbd-23485 ( 1007) [001] d..2 29484.652248: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60075          <idle>-0     (-----) [001] d..1 29484.652256: cpu_idle: state=0 cpu_id=1
60076          <idle>-0     (-----) [000] d.h3 29484.652282: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60077          <idle>-0     (-----) [000] dnh4 29484.652287: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60078          <idle>-0     (-----) [000] .n.1 29484.652293: cpu_idle: state=4294967295 cpu_id=0
60079          <idle>-0     (-----) [000] d..2 29484.652299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60080   kworker/u17:2-23076 (23076) [000] d..2 29484.652307: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60081   kworker/u17:2-23076 (23076) [000] d..3 29484.652313: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60082   kworker/u17:2-23076 (23076) [000] d..2 29484.652330: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60083     kworker/0:0-13450 (13450) [000] d..2 29484.652335: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60084     kworker/0:0-13450 (13450) [000] d..3 29484.652344: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60085          <idle>-0     (-----) [001] .n.1 29484.652350: cpu_idle: state=4294967295 cpu_id=1
60086          <idle>-0     (-----) [001] d..2 29484.652357: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60087     kworker/0:0-13450 (13450) [000] d..2 29484.652359: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60088          <idle>-0     (-----) [000] d..1 29484.652366: cpu_idle: state=0 cpu_id=0
60089            adbd-23485 ( 1007) [001] d..2 29484.652375: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60090          <idle>-0     (-----) [001] d..1 29484.652382: cpu_idle: state=0 cpu_id=1
60091          <idle>-0     (-----) [000] d.h3 29484.652459: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60092          <idle>-0     (-----) [000] dnh4 29484.652465: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60093          <idle>-0     (-----) [000] .n.1 29484.652471: cpu_idle: state=4294967295 cpu_id=0
60094          <idle>-0     (-----) [000] d..2 29484.652477: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60095   kworker/u17:2-23076 (23076) [000] d..2 29484.652485: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60096   kworker/u17:2-23076 (23076) [000] d..3 29484.652490: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60097   kworker/u17:2-23076 (23076) [000] d..2 29484.652507: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60098     kworker/0:0-13450 (13450) [000] d..2 29484.652513: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
60099     kworker/0:0-13450 (13450) [000] d..3 29484.652521: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
60100          <idle>-0     (-----) [001] .n.1 29484.652527: cpu_idle: state=4294967295 cpu_id=1
60101          <idle>-0     (-----) [001] d..2 29484.652534: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
60102     kworker/0:0-13450 (13450) [000] d..2 29484.652536: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60103          <idle>-0     (-----) [000] d..1 29484.652544: cpu_idle: state=0 cpu_id=0
60104            adbd-23484 ( 1007) [001] d..2 29484.652545: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
60105            adbd-23484 ( 1007) [001] d..3 29484.652552: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
60106            adbd-23484 ( 1007) [001] d..2 29484.652600: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
60107            adbd-1007  ( 1007) [001] d..2 29484.652665: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60108          <idle>-0     (-----) [001] d..1 29484.652675: cpu_idle: state=0 cpu_id=1
60109              ps-13726 (13726) [005] d..2 29484.653194: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60110              ps-13726 (13726) [005] dn.3 29484.653198: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60111              ps-13726 (13726) [005] d..2 29484.653201: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60112 shell svc 13722-13723 ( 1007) [005] d..2 29484.653208: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
60113 shell svc 13722-13723 ( 1007) [005] d..2 29484.653225: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60114          <idle>-0     (-----) [000] dnh2 29484.653229: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
60115              ps-13726 (13726) [005] d..2 29484.653230: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60116              ps-13726 (13726) [005] dn.3 29484.653233: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60117          <idle>-0     (-----) [000] .n.1 29484.653234: cpu_idle: state=4294967295 cpu_id=0
60118              ps-13726 (13726) [005] d..2 29484.653236: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60119          <idle>-0     (-----) [000] d..2 29484.653240: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
60120 shell svc 13722-13723 ( 1007) [005] d..2 29484.653244: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60121              ps-13726 (13726) [005] d..2 29484.653248: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60122              ps-13726 (13726) [005] dn.3 29484.653251: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60123              ps-13726 (13726) [005] d..2 29484.653253: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60124 shell svc 13722-13723 ( 1007) [005] d..2 29484.653260: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60125              ps-13726 (13726) [005] d..2 29484.653264: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60126              ps-13726 (13726) [005] dn.3 29484.653267: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60127              ps-13726 (13726) [005] d..2 29484.653269: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60128 shell svc 13722-13723 ( 1007) [005] d..2 29484.653276: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60129              ps-13726 (13726) [005] d..2 29484.653280: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60130              ps-13726 (13726) [005] dn.3 29484.653282: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60131              ps-13726 (13726) [005] d..2 29484.653284: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60132            adbd-1007  ( 1007) [000] d..1 29484.653291: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60133 shell svc 13722-13723 ( 1007) [005] d..2 29484.653291: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60134              ps-13726 (13726) [005] d..2 29484.653295: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60135              ps-13726 (13726) [005] dn.3 29484.653297: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60136              ps-13726 (13726) [005] d..2 29484.653300: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60137 shell svc 13722-13723 ( 1007) [005] d..2 29484.653306: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60138            adbd-1007  ( 1007) [000] d..2 29484.653307: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60139              ps-13726 (13726) [005] d..2 29484.653310: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60140          <idle>-0     (-----) [001] .n.1 29484.653311: cpu_idle: state=4294967295 cpu_id=1
60141              ps-13726 (13726) [005] dn.3 29484.653313: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60142              ps-13726 (13726) [005] d..2 29484.653315: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60143          <idle>-0     (-----) [001] d..2 29484.653318: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60144 shell svc 13722-13723 ( 1007) [005] d..2 29484.653321: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60145              ps-13726 (13726) [005] d..2 29484.653326: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60146              ps-13726 (13726) [005] dn.3 29484.653328: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60147              ps-13726 (13726) [005] d..2 29484.653330: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60148 shell svc 13722-13723 ( 1007) [005] d..2 29484.653337: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60149              ps-13726 (13726) [005] d..2 29484.653341: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60150              ps-13726 (13726) [005] dn.3 29484.653344: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60151            adbd-1007  ( 1007) [000] d..2 29484.653345: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60152              ps-13726 (13726) [005] d..2 29484.653346: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60153 shell svc 13722-13723 ( 1007) [005] d..2 29484.653352: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60154          <idle>-0     (-----) [000] d..1 29484.653355: cpu_idle: state=0 cpu_id=0
60155              ps-13726 (13726) [005] d..2 29484.653356: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60156              ps-13726 (13726) [005] dn.3 29484.653359: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60157              ps-13726 (13726) [005] d..2 29484.653361: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60158 shell svc 13722-13723 ( 1007) [005] d..2 29484.653367: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60159            adbd-23485 ( 1007) [001] d..2 29484.653368: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60160              ps-13726 (13726) [005] d..2 29484.653371: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60161          <idle>-0     (-----) [000] d.h3 29484.653374: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60162              ps-13726 (13726) [005] dn.3 29484.653374: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60163              ps-13726 (13726) [005] d..2 29484.653376: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60164          <idle>-0     (-----) [001] d..1 29484.653376: cpu_idle: state=0 cpu_id=1
60165 shell svc 13722-13723 ( 1007) [005] d..2 29484.653382: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60166          <idle>-0     (-----) [000] dnh4 29484.653384: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60167              ps-13726 (13726) [005] d..2 29484.653386: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60168              ps-13726 (13726) [005] dn.3 29484.653389: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60169          <idle>-0     (-----) [000] .n.1 29484.653390: cpu_idle: state=4294967295 cpu_id=0
60170              ps-13726 (13726) [005] d..2 29484.653391: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60171          <idle>-0     (-----) [000] d..2 29484.653398: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60172 shell svc 13722-13723 ( 1007) [005] d..2 29484.653398: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60173              ps-13726 (13726) [005] d..2 29484.653403: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60174              ps-13726 (13726) [005] dn.3 29484.653405: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60175   kworker/u17:2-23076 (23076) [000] d..2 29484.653407: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60176              ps-13726 (13726) [005] d..2 29484.653407: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60177   kworker/u17:2-23076 (23076) [000] d..3 29484.653413: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60178 shell svc 13722-13723 ( 1007) [005] d..2 29484.653414: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60179              ps-13726 (13726) [005] d..2 29484.653418: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60180              ps-13726 (13726) [005] dn.3 29484.653420: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60181              ps-13726 (13726) [005] d..2 29484.653422: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60182 shell svc 13722-13723 ( 1007) [005] d..2 29484.653430: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60183   kworker/u17:2-23076 (23076) [000] d..2 29484.653430: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60184              ps-13726 (13726) [005] d..2 29484.653434: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60185     kworker/0:0-13450 (13450) [000] d..2 29484.653436: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60186              ps-13726 (13726) [005] dn.3 29484.653437: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60187              ps-13726 (13726) [005] d..2 29484.653439: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60188 shell svc 13722-13723 ( 1007) [005] d..2 29484.653445: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60189     kworker/0:0-13450 (13450) [000] d..3 29484.653446: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60190              ps-13726 (13726) [005] d..2 29484.653450: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60191          <idle>-0     (-----) [001] .n.1 29484.653451: cpu_idle: state=4294967295 cpu_id=1
60192              ps-13726 (13726) [005] dn.3 29484.653452: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60193              ps-13726 (13726) [005] d..2 29484.653455: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60194          <idle>-0     (-----) [001] d..2 29484.653458: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60195     kworker/0:0-13450 (13450) [000] d..2 29484.653460: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60196 shell svc 13722-13723 ( 1007) [005] d..2 29484.653461: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60197              ps-13726 (13726) [005] d..2 29484.653466: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60198          <idle>-0     (-----) [000] d..1 29484.653468: cpu_idle: state=0 cpu_id=0
60199              ps-13726 (13726) [005] dn.3 29484.653468: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60200              ps-13726 (13726) [005] d..2 29484.653470: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60201 shell svc 13722-13723 ( 1007) [005] d..2 29484.653477: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60202              ps-13726 (13726) [005] d..2 29484.653481: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60203              ps-13726 (13726) [005] dn.3 29484.653483: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60204              ps-13726 (13726) [005] d..2 29484.653485: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60205 shell svc 13722-13723 ( 1007) [005] d..2 29484.653492: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60206              ps-13726 (13726) [005] d..2 29484.653496: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60207              ps-13726 (13726) [005] dn.3 29484.653499: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60208              ps-13726 (13726) [005] d..2 29484.653501: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60209            adbd-23485 ( 1007) [001] d..2 29484.653507: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60210 shell svc 13722-13723 ( 1007) [005] d..2 29484.653507: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60211              ps-13726 (13726) [005] d..2 29484.653511: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60212              ps-13726 (13726) [005] dn.3 29484.653514: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60213          <idle>-0     (-----) [001] d..1 29484.653514: cpu_idle: state=0 cpu_id=1
60214              ps-13726 (13726) [005] d..2 29484.653516: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60215          <idle>-0     (-----) [000] d.h3 29484.653519: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60216 shell svc 13722-13723 ( 1007) [005] d..2 29484.653523: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60217          <idle>-0     (-----) [000] dnh4 29484.653525: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60218              ps-13726 (13726) [005] d..2 29484.653528: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60219              ps-13726 (13726) [005] dn.3 29484.653530: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60220          <idle>-0     (-----) [000] .n.1 29484.653532: cpu_idle: state=4294967295 cpu_id=0
60221              ps-13726 (13726) [005] d..2 29484.653532: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60222          <idle>-0     (-----) [000] d..2 29484.653538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60223 shell svc 13722-13723 ( 1007) [005] d..2 29484.653538: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60224              ps-13726 (13726) [005] d..2 29484.653543: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60225              ps-13726 (13726) [005] dn.3 29484.653545: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60226   kworker/u17:2-23076 (23076) [000] d..2 29484.653546: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60227              ps-13726 (13726) [005] d..2 29484.653548: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60228   kworker/u17:2-23076 (23076) [000] d..3 29484.653552: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60229 shell svc 13722-13723 ( 1007) [005] d..2 29484.653554: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60230              ps-13726 (13726) [005] d..2 29484.653559: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60231              ps-13726 (13726) [005] dn.3 29484.653561: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60232              ps-13726 (13726) [005] d..2 29484.653563: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60233   kworker/u17:2-23076 (23076) [000] d..2 29484.653569: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60234 shell svc 13722-13723 ( 1007) [005] d..2 29484.653570: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60235     kworker/0:0-13450 (13450) [000] d..2 29484.653575: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60236              ps-13726 (13726) [005] d..2 29484.653576: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60237              ps-13726 (13726) [005] dn.3 29484.653578: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60238              ps-13726 (13726) [005] d..2 29484.653581: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60239     kworker/0:0-13450 (13450) [000] d..3 29484.653585: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60240 shell svc 13722-13723 ( 1007) [005] d..2 29484.653588: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60241          <idle>-0     (-----) [001] .n.1 29484.653590: cpu_idle: state=4294967295 cpu_id=1
60242              ps-13726 (13726) [005] d..2 29484.653593: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60243              ps-13726 (13726) [005] dn.3 29484.653595: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60244              ps-13726 (13726) [005] d..2 29484.653597: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60245          <idle>-0     (-----) [001] d..2 29484.653598: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60246     kworker/0:0-13450 (13450) [000] d..2 29484.653599: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60247 shell svc 13722-13723 ( 1007) [005] d..2 29484.653604: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60248          <idle>-0     (-----) [000] d..1 29484.653607: cpu_idle: state=0 cpu_id=0
60249              ps-13726 (13726) [005] d..2 29484.653609: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60250              ps-13726 (13726) [005] dn.3 29484.653611: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60251              ps-13726 (13726) [005] d..2 29484.653613: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60252            adbd-23485 ( 1007) [001] d..2 29484.653616: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60253 shell svc 13722-13723 ( 1007) [005] d..2 29484.653621: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60254          <idle>-0     (-----) [001] d..1 29484.653624: cpu_idle: state=0 cpu_id=1
60255              ps-13726 (13726) [005] d..2 29484.653626: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60256              ps-13726 (13726) [005] dn.3 29484.653628: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60257              ps-13726 (13726) [005] d..2 29484.653630: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60258 shell svc 13722-13723 ( 1007) [005] d..2 29484.653637: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60259              ps-13726 (13726) [005] d..2 29484.653642: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60260              ps-13726 (13726) [005] dn.3 29484.653645: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60261              ps-13726 (13726) [005] d..2 29484.653647: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60262 shell svc 13722-13723 ( 1007) [005] d..2 29484.653654: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60263              ps-13726 (13726) [005] d..2 29484.653659: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60264              ps-13726 (13726) [005] dn.3 29484.653661: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60265              ps-13726 (13726) [005] d..2 29484.653663: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60266 shell svc 13722-13723 ( 1007) [005] d..2 29484.653670: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60267              ps-13726 (13726) [005] d..2 29484.653675: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60268              ps-13726 (13726) [005] dn.3 29484.653677: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60269              ps-13726 (13726) [005] d..2 29484.653679: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60270 shell svc 13722-13723 ( 1007) [005] d..2 29484.653686: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60271              ps-13726 (13726) [005] d..2 29484.653690: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60272              ps-13726 (13726) [005] dn.3 29484.653693: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60273              ps-13726 (13726) [005] d..2 29484.653695: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60274          <idle>-0     (-----) [000] d.h3 29484.653696: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60275          <idle>-0     (-----) [000] dnh4 29484.653702: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60276 shell svc 13722-13723 ( 1007) [005] d..2 29484.653702: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60277              ps-13726 (13726) [005] d..2 29484.653706: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60278          <idle>-0     (-----) [000] .n.1 29484.653707: cpu_idle: state=4294967295 cpu_id=0
60279              ps-13726 (13726) [005] dn.3 29484.653709: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60280              ps-13726 (13726) [005] d..2 29484.653711: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60281          <idle>-0     (-----) [000] d..2 29484.653714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60282 shell svc 13722-13723 ( 1007) [005] d..2 29484.653718: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60283   kworker/u17:2-23076 (23076) [000] d..2 29484.653722: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60284   kworker/u17:2-23076 (23076) [000] d..3 29484.653728: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60285              ps-13726 (13726) [005] d.s2 29484.653729: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
60286              ps-13726 (13726) [005] d..2 29484.653739: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60287              ps-13726 (13726) [005] dn.3 29484.653741: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60288          <idle>-0     (-----) [003] d.s2 29484.653742: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
60289              ps-13726 (13726) [005] d..2 29484.653743: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60290 shell svc 13722-13723 ( 1007) [005] d..2 29484.653751: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60291          <idle>-0     (-----) [003] dns3 29484.653752: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
60292              ps-13726 (13726) [005] d..2 29484.653755: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60293   kworker/u17:2-23076 (23076) [000] d.H2 29484.653757: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
60294              ps-13726 (13726) [005] dn.3 29484.653759: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60295          <idle>-0     (-----) [003] .n.1 29484.653759: cpu_idle: state=4294967295 cpu_id=3
60296              ps-13726 (13726) [005] d..2 29484.653761: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60297          <idle>-0     (-----) [003] d..2 29484.653766: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60298 shell svc 13722-13723 ( 1007) [005] d..2 29484.653768: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60299   kworker/u17:2-23076 (23076) [000] d..2 29484.653768: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
60300     rcu_preempt-7     (    7) [003] d..2 29484.653772: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
60301              ps-13726 (13726) [005] d..2 29484.653774: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60302              ps-13726 (13726) [005] dn.3 29484.653776: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60303              ps-13726 (13726) [005] d..2 29484.653778: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60304     rcu_preempt-7     (    7) [003] d..3 29484.653782: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
60305 shell svc 13722-13723 ( 1007) [005] d..2 29484.653785: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60306     rcu_preempt-7     (    7) [003] d..2 29484.653789: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
60307              ps-13726 (13726) [005] d..2 29484.653789: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60308         rcuop/4-45    (   45) [003] d..2 29484.653791: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
60309              ps-13726 (13726) [005] dn.3 29484.653792: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60310              ps-13726 (13726) [005] d..2 29484.653794: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60311 shell svc 13722-13723 ( 1007) [005] d..2 29484.653801: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60312              ps-13726 (13726) [005] d..2 29484.653806: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60313              ps-13726 (13726) [005] dn.3 29484.653808: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60314              ps-13726 (13726) [005] d..2 29484.653810: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60315         rcuop/4-45    (   45) [003] d..3 29484.653813: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
60316  kworker/u16:10-23868 (23868) [000] d..2 29484.653815: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60317         rcuop/4-45    (   45) [003] d..2 29484.653816: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
60318 shell svc 13722-13723 ( 1007) [005] d..2 29484.653817: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60319              ps-13726 (13726) [005] d..2 29484.653821: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60320     kworker/0:0-13450 (13450) [000] d..2 29484.653822: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
60321         rcuop/4-45    (   45) [003] d..3 29484.653824: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
60322              ps-13726 (13726) [005] dn.3 29484.653824: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60323              ps-13726 (13726) [005] d..2 29484.653826: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60324         rcuop/4-45    (   45) [003] d..2 29484.653829: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
60325 shell svc 13722-13723 ( 1007) [005] d..2 29484.653832: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60326              ps-13726 (13726) [005] d..2 29484.653836: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60327              ps-13726 (13726) [005] dn.3 29484.653838: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60328              ps-13726 (13726) [005] d..2 29484.653841: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60329     kworker/0:0-13450 (13450) [000] d..3 29484.653847: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
60330 shell svc 13722-13723 ( 1007) [005] d..2 29484.653847: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60331              ps-13726 (13726) [005] d..2 29484.653851: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60332              ps-13726 (13726) [005] dn.3 29484.653854: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60333              ps-13726 (13726) [005] d..2 29484.653856: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60334 shell svc 13722-13723 ( 1007) [005] d..2 29484.653862: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60335     kworker/0:0-13450 (13450) [000] d..2 29484.653865: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60336              ps-13726 (13726) [005] d..2 29484.653867: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60337              ps-13726 (13726) [005] dn.3 29484.653869: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60338              ps-13726 (13726) [005] d..2 29484.653871: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60339          <idle>-0     (-----) [000] d..1 29484.653873: cpu_idle: state=0 cpu_id=0
60340 shell svc 13722-13723 ( 1007) [005] d..2 29484.653877: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60341              ps-13726 (13726) [005] d..2 29484.653881: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60342              ps-13726 (13726) [005] dn.3 29484.653883: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60343              ps-13726 (13726) [005] d..2 29484.653886: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60344 shell svc 13722-13723 ( 1007) [005] d..2 29484.653893: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60345              ps-13726 (13726) [005] d..2 29484.653896: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60346              ps-13726 (13726) [005] dn.3 29484.653899: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60347              ps-13726 (13726) [005] d..2 29484.653901: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60348 shell svc 13722-13723 ( 1007) [005] d..2 29484.653907: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60349              ps-13726 (13726) [005] d..2 29484.653911: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60350              ps-13726 (13726) [005] dn.3 29484.653914: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60351              ps-13726 (13726) [005] d..2 29484.653916: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60352 shell svc 13722-13723 ( 1007) [005] d..2 29484.653922: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60353              ps-13726 (13726) [005] d..2 29484.653926: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60354              ps-13726 (13726) [005] dn.3 29484.653929: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60355              ps-13726 (13726) [005] d..2 29484.653931: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60356         rcuop/5-53    (   53) [003] d..2 29484.653932: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
60357 shell svc 13722-13723 ( 1007) [005] d..2 29484.653938: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60358              ps-13726 (13726) [005] d..2 29484.653942: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60359              ps-13726 (13726) [005] dn.3 29484.653944: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60360              ps-13726 (13726) [005] d..2 29484.653946: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60361            adbd-23484 ( 1007) [003] d..2 29484.653947: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
60362 shell svc 13722-13723 ( 1007) [005] d..2 29484.653953: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60363              ps-13726 (13726) [005] d..2 29484.653957: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60364            adbd-23484 ( 1007) [003] d..3 29484.653957: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
60365              ps-13726 (13726) [005] dn.3 29484.653959: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60366              ps-13726 (13726) [005] d..2 29484.653961: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60367          <idle>-0     (-----) [000] .n.1 29484.653962: cpu_idle: state=4294967295 cpu_id=0
60368 shell svc 13722-13723 ( 1007) [005] d..2 29484.653968: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60369          <idle>-0     (-----) [000] d..2 29484.653969: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
60370              ps-13726 (13726) [005] d..2 29484.653972: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60371              ps-13726 (13726) [005] dn.3 29484.653974: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60372              ps-13726 (13726) [005] d..2 29484.653976: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60373 shell svc 13722-13723 ( 1007) [005] d..2 29484.653983: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60374              ps-13726 (13726) [005] d..2 29484.653987: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60375              ps-13726 (13726) [005] dn.3 29484.653989: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60376              ps-13726 (13726) [005] d..2 29484.653991: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60377 shell svc 13722-13723 ( 1007) [005] d..2 29484.653998: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60378              ps-13726 (13726) [005] d..2 29484.654002: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60379              ps-13726 (13726) [005] dn.3 29484.654004: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60380            adbd-23484 ( 1007) [003] d..2 29484.654006: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60381              ps-13726 (13726) [005] d..2 29484.654006: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60382 shell svc 13722-13723 ( 1007) [005] d..2 29484.654013: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60383              ps-13726 (13726) [005] d..2 29484.654017: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60384              ps-13726 (13726) [005] dn.3 29484.654019: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60385     rcu_preempt-7     (    7) [003] d..2 29484.654021: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60386              ps-13726 (13726) [005] d..2 29484.654022: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60387 shell svc 13722-13723 ( 1007) [005] d..2 29484.654028: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60388          <idle>-0     (-----) [003] d..1 29484.654030: cpu_idle: state=2 cpu_id=3
60389              ps-13726 (13726) [005] d..2 29484.654032: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60390              ps-13726 (13726) [005] dn.3 29484.654035: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60391              ps-13726 (13726) [005] d..2 29484.654037: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60392 shell svc 13722-13723 ( 1007) [005] d..2 29484.654045: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60393            adbd-1007  ( 1007) [000] d..1 29484.654087: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60394            adbd-1007  ( 1007) [000] d..2 29484.654099: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60395          <idle>-0     (-----) [001] .n.1 29484.654103: cpu_idle: state=4294967295 cpu_id=1
60396          <idle>-0     (-----) [001] d..2 29484.654110: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60397            adbd-1007  ( 1007) [000] d..2 29484.654136: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60398          <idle>-0     (-----) [000] d..1 29484.654145: cpu_idle: state=0 cpu_id=0
60399            adbd-23485 ( 1007) [001] d..2 29484.654158: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60400          <idle>-0     (-----) [001] d..1 29484.654166: cpu_idle: state=0 cpu_id=1
60401          <idle>-0     (-----) [000] d.h3 29484.654168: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60402          <idle>-0     (-----) [000] dnh4 29484.654175: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60403          <idle>-0     (-----) [000] .n.1 29484.654180: cpu_idle: state=4294967295 cpu_id=0
60404          <idle>-0     (-----) [000] d..2 29484.654187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60405   kworker/u17:2-23076 (23076) [000] d..2 29484.654196: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60406   kworker/u17:2-23076 (23076) [000] d..3 29484.654202: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60407   kworker/u17:2-23076 (23076) [000] d..2 29484.654219: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60408     kworker/0:0-13450 (13450) [000] d..2 29484.654226: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60409     kworker/0:0-13450 (13450) [000] d..3 29484.654235: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60410          <idle>-0     (-----) [001] .n.1 29484.654241: cpu_idle: state=4294967295 cpu_id=1
60411          <idle>-0     (-----) [001] d..2 29484.654248: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60412     kworker/0:0-13450 (13450) [000] d..2 29484.654250: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60413          <idle>-0     (-----) [000] d..1 29484.654258: cpu_idle: state=0 cpu_id=0
60414            adbd-23485 ( 1007) [001] d..2 29484.654298: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60415          <idle>-0     (-----) [001] d..1 29484.654305: cpu_idle: state=0 cpu_id=1
60416          <idle>-0     (-----) [000] d.h3 29484.654361: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60417          <idle>-0     (-----) [000] dnh4 29484.654367: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60418          <idle>-0     (-----) [000] .n.1 29484.654373: cpu_idle: state=4294967295 cpu_id=0
60419          <idle>-0     (-----) [000] d..2 29484.654379: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60420   kworker/u17:2-23076 (23076) [000] d..2 29484.654386: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60421   kworker/u17:2-23076 (23076) [000] d..3 29484.654392: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60422   kworker/u17:2-23076 (23076) [000] d..2 29484.654409: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60423     kworker/0:0-13450 (13450) [000] d..2 29484.654415: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60424     kworker/0:0-13450 (13450) [000] d..3 29484.654424: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60425          <idle>-0     (-----) [001] .n.1 29484.654430: cpu_idle: state=4294967295 cpu_id=1
60426              ps-13726 (13726) [005] d..2 29484.654434: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60427          <idle>-0     (-----) [001] d..2 29484.654437: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60428              ps-13726 (13726) [005] dn.3 29484.654438: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60429     kworker/0:0-13450 (13450) [000] d..2 29484.654440: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60430              ps-13726 (13726) [005] d..2 29484.654440: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60431          <idle>-0     (-----) [000] d..1 29484.654447: cpu_idle: state=0 cpu_id=0
60432 shell svc 13722-13723 ( 1007) [005] d..2 29484.654450: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60433              ps-13726 (13726) [005] d..2 29484.654455: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60434            adbd-23485 ( 1007) [001] d..2 29484.654457: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60435              ps-13726 (13726) [005] dn.3 29484.654458: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60436              ps-13726 (13726) [005] d..2 29484.654460: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60437          <idle>-0     (-----) [001] d..1 29484.654464: cpu_idle: state=0 cpu_id=1
60438 shell svc 13722-13723 ( 1007) [005] d..2 29484.654468: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60439              ps-13726 (13726) [005] d..2 29484.654472: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60440              ps-13726 (13726) [005] dn.3 29484.654475: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60441              ps-13726 (13726) [005] d..2 29484.654477: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60442 shell svc 13722-13723 ( 1007) [005] d..2 29484.654483: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60443              ps-13726 (13726) [005] d..2 29484.654488: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60444              ps-13726 (13726) [005] dn.3 29484.654490: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60445              ps-13726 (13726) [005] d..2 29484.654493: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60446 shell svc 13722-13723 ( 1007) [005] d..2 29484.654499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60447              ps-13726 (13726) [005] d..2 29484.654504: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60448              ps-13726 (13726) [005] dn.3 29484.654507: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60449              ps-13726 (13726) [005] d..2 29484.654509: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60450 shell svc 13722-13723 ( 1007) [005] d..2 29484.654516: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60451              ps-13726 (13726) [005] d..2 29484.654521: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60452              ps-13726 (13726) [005] dn.3 29484.654523: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60453              ps-13726 (13726) [005] d..2 29484.654526: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60454 shell svc 13722-13723 ( 1007) [005] d..2 29484.654532: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60455              ps-13726 (13726) [005] d..2 29484.654537: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60456              ps-13726 (13726) [005] dn.3 29484.654540: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60457              ps-13726 (13726) [005] d..2 29484.654542: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60458 shell svc 13722-13723 ( 1007) [005] d..2 29484.654549: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60459          <idle>-0     (-----) [000] d.h3 29484.654550: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60460              ps-13726 (13726) [005] d..2 29484.654553: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60461              ps-13726 (13726) [005] dn.3 29484.654556: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60462          <idle>-0     (-----) [000] dnh4 29484.654557: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60463              ps-13726 (13726) [005] d..2 29484.654559: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60464          <idle>-0     (-----) [000] .n.1 29484.654562: cpu_idle: state=4294967295 cpu_id=0
60465 shell svc 13722-13723 ( 1007) [005] d..2 29484.654566: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60466          <idle>-0     (-----) [000] d..2 29484.654568: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60467              ps-13726 (13726) [005] d..2 29484.654571: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60468              ps-13726 (13726) [005] dn.3 29484.654573: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60469   kworker/u17:2-23076 (23076) [000] d..2 29484.654575: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60470              ps-13726 (13726) [005] d..2 29484.654575: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60471   kworker/u17:2-23076 (23076) [000] d..3 29484.654580: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60472 shell svc 13722-13723 ( 1007) [005] d..2 29484.654582: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60473              ps-13726 (13726) [005] d..2 29484.654586: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60474              ps-13726 (13726) [005] dn.3 29484.654589: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60475              ps-13726 (13726) [005] d..2 29484.654591: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60476 shell svc 13722-13723 ( 1007) [005] d..2 29484.654597: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60477   kworker/u17:2-23076 (23076) [000] d..2 29484.654597: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60478              ps-13726 (13726) [005] d..2 29484.654603: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60479     kworker/0:0-13450 (13450) [000] d..2 29484.654605: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
60480              ps-13726 (13726) [005] dn.3 29484.654606: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60481              ps-13726 (13726) [005] d..2 29484.654608: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60482     kworker/0:0-13450 (13450) [000] d..3 29484.654614: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
60483 shell svc 13722-13723 ( 1007) [005] d..2 29484.654615: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60484              ps-13726 (13726) [005] d..2 29484.654619: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60485              ps-13726 (13726) [005] dn.3 29484.654622: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60486              ps-13726 (13726) [005] d..2 29484.654624: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60487     kworker/0:0-13450 (13450) [000] d..2 29484.654629: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60488 shell svc 13722-13723 ( 1007) [005] d..2 29484.654630: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60489              ps-13726 (13726) [005] d..2 29484.654634: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60490          <idle>-0     (-----) [000] d..1 29484.654636: cpu_idle: state=0 cpu_id=0
60491              ps-13726 (13726) [005] dn.3 29484.654637: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60492              ps-13726 (13726) [005] d..2 29484.654639: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60493 shell svc 13722-13723 ( 1007) [005] d..2 29484.654645: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60494              ps-13726 (13726) [005] d..2 29484.654649: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60495              ps-13726 (13726) [005] dn.3 29484.654652: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60496              ps-13726 (13726) [005] d..2 29484.654654: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60497 shell svc 13722-13723 ( 1007) [005] d..2 29484.654660: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60498              ps-13726 (13726) [005] d..2 29484.654664: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60499              ps-13726 (13726) [005] dn.3 29484.654667: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60500              ps-13726 (13726) [005] d..2 29484.654669: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60501 shell svc 13722-13723 ( 1007) [005] d..2 29484.654676: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60502          <idle>-0     (-----) [003] .n.1 29484.654750: cpu_idle: state=4294967295 cpu_id=3
60503          <idle>-0     (-----) [003] d..2 29484.654762: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
60504            adbd-23484 ( 1007) [003] d..2 29484.654779: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
60505            adbd-23484 ( 1007) [003] d..3 29484.654792: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
60506            adbd-23484 ( 1007) [003] d..2 29484.654843: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
60507            adbd-1007  ( 1007) [003] d..1 29484.654931: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60508            adbd-1007  ( 1007) [003] d..2 29484.654944: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60509          <idle>-0     (-----) [001] .n.1 29484.654949: cpu_idle: state=4294967295 cpu_id=1
60510          <idle>-0     (-----) [001] d..2 29484.654956: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60511            adbd-1007  ( 1007) [003] d..2 29484.654982: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60512          <idle>-0     (-----) [003] d..1 29484.654991: cpu_idle: state=0 cpu_id=3
60513            adbd-23485 ( 1007) [001] d..2 29484.655003: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60514          <idle>-0     (-----) [001] d..1 29484.655011: cpu_idle: state=0 cpu_id=1
60515          <idle>-0     (-----) [000] d.h3 29484.655021: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60516          <idle>-0     (-----) [000] dnh4 29484.655027: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60517          <idle>-0     (-----) [000] .n.1 29484.655033: cpu_idle: state=4294967295 cpu_id=0
60518          <idle>-0     (-----) [000] d..2 29484.655039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60519   kworker/u17:2-23076 (23076) [000] d..2 29484.655047: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60520   kworker/u17:2-23076 (23076) [000] d..3 29484.655052: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60521   kworker/u17:2-23076 (23076) [000] d..2 29484.655069: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60522     kworker/0:0-13450 (13450) [000] d..2 29484.655074: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60523     kworker/0:0-13450 (13450) [000] d..3 29484.655083: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60524              ps-13726 (13726) [005] d..2 29484.655088: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60525          <idle>-0     (-----) [001] .n.1 29484.655089: cpu_idle: state=4294967295 cpu_id=1
60526              ps-13726 (13726) [005] dn.3 29484.655092: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60527              ps-13726 (13726) [005] d..2 29484.655096: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60528          <idle>-0     (-----) [001] d..2 29484.655096: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60529     kworker/0:0-13450 (13450) [000] d..2 29484.655097: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60530          <idle>-0     (-----) [000] d..1 29484.655105: cpu_idle: state=0 cpu_id=0
60531 shell svc 13722-13723 ( 1007) [005] d..2 29484.655106: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60532              ps-13726 (13726) [005] d..2 29484.655112: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60533              ps-13726 (13726) [005] dn.3 29484.655114: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60534              ps-13726 (13726) [005] d..2 29484.655116: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60535 shell svc 13722-13723 ( 1007) [005] d..2 29484.655123: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60536              ps-13726 (13726) [005] d..2 29484.655128: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60537              ps-13726 (13726) [005] dn.3 29484.655131: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60538              ps-13726 (13726) [005] d..2 29484.655133: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60539 shell svc 13722-13723 ( 1007) [005] d..2 29484.655140: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60540            adbd-23485 ( 1007) [001] d..2 29484.655143: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60541              ps-13726 (13726) [005] d..2 29484.655144: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60542              ps-13726 (13726) [005] dn.3 29484.655147: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60543              ps-13726 (13726) [005] d..2 29484.655149: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60544          <idle>-0     (-----) [001] d..1 29484.655151: cpu_idle: state=0 cpu_id=1
60545 shell svc 13722-13723 ( 1007) [005] d..2 29484.655156: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60546              ps-13726 (13726) [005] d..2 29484.655161: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60547              ps-13726 (13726) [005] dn.3 29484.655163: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60548              ps-13726 (13726) [005] d..2 29484.655165: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60549 shell svc 13722-13723 ( 1007) [005] d..2 29484.655172: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60550              ps-13726 (13726) [005] d..2 29484.655176: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60551          <idle>-0     (-----) [000] d.h3 29484.655178: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60552              ps-13726 (13726) [005] dn.3 29484.655179: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60553              ps-13726 (13726) [005] d..2 29484.655181: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60554          <idle>-0     (-----) [000] dnh4 29484.655184: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60555 shell svc 13722-13723 ( 1007) [005] d..2 29484.655188: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60556          <idle>-0     (-----) [000] .n.1 29484.655190: cpu_idle: state=4294967295 cpu_id=0
60557              ps-13726 (13726) [005] d..2 29484.655193: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60558              ps-13726 (13726) [005] dn.3 29484.655195: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60559          <idle>-0     (-----) [000] d..2 29484.655197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60560              ps-13726 (13726) [005] d..2 29484.655197: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60561   kworker/u17:2-23076 (23076) [000] d..2 29484.655204: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60562 shell svc 13722-13723 ( 1007) [005] d..2 29484.655204: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60563              ps-13726 (13726) [005] d..2 29484.655208: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60564   kworker/u17:2-23076 (23076) [000] d..3 29484.655209: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60565              ps-13726 (13726) [005] dn.3 29484.655210: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60566              ps-13726 (13726) [005] d..2 29484.655212: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60567 shell svc 13722-13723 ( 1007) [005] d..2 29484.655219: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60568              ps-13726 (13726) [005] d..2 29484.655224: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60569   kworker/u17:2-23076 (23076) [000] d..2 29484.655226: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60570              ps-13726 (13726) [005] dn.3 29484.655226: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60571              ps-13726 (13726) [005] d..2 29484.655228: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60572     kworker/0:0-13450 (13450) [000] d..2 29484.655232: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60573 shell svc 13722-13723 ( 1007) [005] d..2 29484.655235: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60574              ps-13726 (13726) [005] d..2 29484.655241: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60575     kworker/0:0-13450 (13450) [000] d..3 29484.655241: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
60576              ps-13726 (13726) [005] dn.3 29484.655243: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60577              ps-13726 (13726) [005] d..2 29484.655245: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60578          <idle>-0     (-----) [001] .n.1 29484.655246: cpu_idle: state=4294967295 cpu_id=1
60579 shell svc 13722-13723 ( 1007) [005] d..2 29484.655252: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60580          <idle>-0     (-----) [001] d..2 29484.655253: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60581     kworker/0:0-13450 (13450) [000] d..2 29484.655255: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60582              ps-13726 (13726) [005] d..2 29484.655257: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60583              ps-13726 (13726) [005] dn.3 29484.655259: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60584              ps-13726 (13726) [005] d..2 29484.655262: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60585          <idle>-0     (-----) [000] d..1 29484.655263: cpu_idle: state=0 cpu_id=0
60586 shell svc 13722-13723 ( 1007) [005] d..2 29484.655269: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60587            adbd-23485 ( 1007) [001] d..2 29484.655271: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60588              ps-13726 (13726) [005] d..2 29484.655274: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60589              ps-13726 (13726) [005] dn.3 29484.655276: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60590          <idle>-0     (-----) [001] d..1 29484.655278: cpu_idle: state=0 cpu_id=1
60591              ps-13726 (13726) [005] d..2 29484.655279: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60592 shell svc 13722-13723 ( 1007) [005] d..2 29484.655285: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60593              ps-13726 (13726) [005] d..2 29484.655291: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60594              ps-13726 (13726) [005] dn.3 29484.655293: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60595              ps-13726 (13726) [005] d..2 29484.655295: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60596 shell svc 13722-13723 ( 1007) [005] d..2 29484.655302: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60597              ps-13726 (13726) [005] d..2 29484.655307: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60598              ps-13726 (13726) [005] dn.3 29484.655309: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60599              ps-13726 (13726) [005] d..2 29484.655311: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60600 shell svc 13722-13723 ( 1007) [005] d..2 29484.655318: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60601              ps-13726 (13726) [005] d..2 29484.655368: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60602              ps-13726 (13726) [005] dn.3 29484.655371: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60603              ps-13726 (13726) [005] d..2 29484.655374: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60604          <idle>-0     (-----) [000] d.h3 29484.655377: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60605 shell svc 13722-13723 ( 1007) [005] d..2 29484.655382: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60606          <idle>-0     (-----) [000] dnh4 29484.655386: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60607          <idle>-0     (-----) [000] .n.1 29484.655392: cpu_idle: state=4294967295 cpu_id=0
60608          <idle>-0     (-----) [000] d..2 29484.655398: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60609   kworker/u17:2-23076 (23076) [000] d..2 29484.655405: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60610   kworker/u17:2-23076 (23076) [000] d..3 29484.655411: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60611              ps-13726 (13726) [005] d..2 29484.655425: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60612   kworker/u17:2-23076 (23076) [000] d..2 29484.655427: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60613              ps-13726 (13726) [005] dn.3 29484.655428: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60614              ps-13726 (13726) [005] d..2 29484.655431: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60615     kworker/0:0-13450 (13450) [000] d..2 29484.655433: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
60616 shell svc 13722-13723 ( 1007) [005] d..2 29484.655439: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60617     kworker/0:0-13450 (13450) [000] d..3 29484.655442: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
60618          <idle>-0     (-----) [003] .n.1 29484.655448: cpu_idle: state=4294967295 cpu_id=3
60619          <idle>-0     (-----) [003] d..2 29484.655456: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
60620     kworker/0:0-13450 (13450) [000] d..2 29484.655457: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60621          <idle>-0     (-----) [000] d..1 29484.655465: cpu_idle: state=0 cpu_id=0
60622            adbd-23484 ( 1007) [003] d..2 29484.655468: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
60623            adbd-23484 ( 1007) [003] d..3 29484.655475: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
60624            adbd-23484 ( 1007) [003] d..2 29484.655524: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
60625            adbd-1007  ( 1007) [003] d..1 29484.655601: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
60626            adbd-1007  ( 1007) [003] d..2 29484.655630: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
60627          <idle>-0     (-----) [000] .n.1 29484.655635: cpu_idle: state=4294967295 cpu_id=0
60628          <idle>-0     (-----) [000] d..2 29484.655641: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60629            adbd-1007  ( 1007) [003] d..2 29484.655667: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60630          <idle>-0     (-----) [003] d..1 29484.655676: cpu_idle: state=0 cpu_id=3
60631            adbd-23485 ( 1007) [000] d..2 29484.655694: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60632          <idle>-0     (-----) [000] d.h4 29484.655711: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60633          <idle>-0     (-----) [000] dnh5 29484.655717: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60634          <idle>-0     (-----) [000] d..2 29484.655725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60635   kworker/u17:2-23076 (23076) [000] d..2 29484.655732: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60636   kworker/u17:2-23076 (23076) [000] d..3 29484.655737: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60637   kworker/u17:2-23076 (23076) [000] d..2 29484.655754: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60638     kworker/0:0-13450 (13450) [000] d..2 29484.655759: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
60639     kworker/0:0-13450 (13450) [000] d..3 29484.655769: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
60640     kworker/0:0-13450 (13450) [000] d..2 29484.655777: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
60641            adbd-23485 ( 1007) [000] d..2 29484.655826: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60642          <idle>-0     (-----) [000] d..1 29484.655835: cpu_idle: state=0 cpu_id=0
60643          <idle>-0     (-----) [000] d.h3 29484.655865: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60644              ps-13726 (13726) [005] d..2 29484.655871: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60645          <idle>-0     (-----) [000] dnh4 29484.655871: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60646              ps-13726 (13726) [005] dn.3 29484.655875: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60647          <idle>-0     (-----) [000] .n.1 29484.655877: cpu_idle: state=4294967295 cpu_id=0
60648              ps-13726 (13726) [005] d..2 29484.655877: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60649          <idle>-0     (-----) [000] d..2 29484.655884: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60650 shell svc 13722-13723 ( 1007) [005] d..2 29484.655887: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60651   kworker/u17:2-23076 (23076) [000] d..2 29484.655890: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60652              ps-13726 (13726) [005] d..2 29484.655892: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60653              ps-13726 (13726) [005] dn.3 29484.655895: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60654   kworker/u17:2-23076 (23076) [000] d..3 29484.655896: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60655              ps-13726 (13726) [005] d..2 29484.655897: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60656 shell svc 13722-13723 ( 1007) [005] d..2 29484.655904: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60657              ps-13726 (13726) [005] d..2 29484.655908: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60658              ps-13726 (13726) [005] dn.3 29484.655911: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60659              ps-13726 (13726) [005] d..2 29484.655913: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60660   kworker/u17:2-23076 (23076) [000] d..2 29484.655913: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60661     kworker/0:0-13450 (13450) [000] d..2 29484.655918: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
60662 shell svc 13722-13723 ( 1007) [005] d..2 29484.655920: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60663              ps-13726 (13726) [005] d..2 29484.655924: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60664              ps-13726 (13726) [005] dn.3 29484.655926: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60665     kworker/0:0-13450 (13450) [000] d..3 29484.655927: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
60666              ps-13726 (13726) [005] d..2 29484.655928: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60667 shell svc 13722-13723 ( 1007) [005] d..2 29484.655936: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60668     kworker/0:0-13450 (13450) [000] d..2 29484.655936: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
60669              ps-13726 (13726) [005] d..2 29484.655940: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60670              ps-13726 (13726) [005] dn.3 29484.655943: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60671              ps-13726 (13726) [005] d..2 29484.655945: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60672 shell svc 13722-13723 ( 1007) [005] d..2 29484.655951: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60673            adbd-23485 ( 1007) [000] d..2 29484.655955: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60674              ps-13726 (13726) [005] d..2 29484.655956: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60675              ps-13726 (13726) [005] dn.3 29484.655958: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60676              ps-13726 (13726) [005] d..2 29484.655960: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60677          <idle>-0     (-----) [000] d..1 29484.655964: cpu_idle: state=0 cpu_id=0
60678 shell svc 13722-13723 ( 1007) [005] d..2 29484.655967: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60679              ps-13726 (13726) [005] d..2 29484.655972: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60680              ps-13726 (13726) [005] dn.3 29484.655975: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60681              ps-13726 (13726) [005] d..2 29484.655977: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60682 shell svc 13722-13723 ( 1007) [005] d..2 29484.655983: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60683              ps-13726 (13726) [005] d..2 29484.655989: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60684              ps-13726 (13726) [005] dn.3 29484.655991: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60685              ps-13726 (13726) [005] d..2 29484.655993: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60686 shell svc 13722-13723 ( 1007) [005] d..2 29484.656000: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60687              ps-13726 (13726) [005] d..2 29484.656005: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60688              ps-13726 (13726) [005] dn.3 29484.656007: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60689              ps-13726 (13726) [005] d..2 29484.656010: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60690 shell svc 13722-13723 ( 1007) [005] d..2 29484.656016: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60691              ps-13726 (13726) [005] d..2 29484.656020: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60692              ps-13726 (13726) [005] dn.3 29484.656023: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60693              ps-13726 (13726) [005] d..2 29484.656025: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60694 shell svc 13722-13723 ( 1007) [005] d..2 29484.656031: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60695              ps-13726 (13726) [005] d..2 29484.656035: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60696              ps-13726 (13726) [005] dn.3 29484.656037: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60697          <idle>-0     (-----) [000] d.h3 29484.656038: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60698              ps-13726 (13726) [005] d..2 29484.656040: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60699          <idle>-0     (-----) [000] dnh4 29484.656044: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60700 shell svc 13722-13723 ( 1007) [005] d..2 29484.656047: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60701          <idle>-0     (-----) [000] .n.1 29484.656050: cpu_idle: state=4294967295 cpu_id=0
60702              ps-13726 (13726) [005] d..2 29484.656052: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60703              ps-13726 (13726) [005] dn.3 29484.656055: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60704          <idle>-0     (-----) [000] d..2 29484.656056: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60705              ps-13726 (13726) [005] d..2 29484.656057: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60706 shell svc 13722-13723 ( 1007) [005] d..2 29484.656063: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60707   kworker/u17:2-23076 (23076) [000] d..2 29484.656063: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60708              ps-13726 (13726) [005] d..2 29484.656068: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60709   kworker/u17:2-23076 (23076) [000] d..3 29484.656069: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60710              ps-13726 (13726) [005] dn.3 29484.656070: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60711              ps-13726 (13726) [005] d..2 29484.656073: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60712 shell svc 13722-13723 ( 1007) [005] d..2 29484.656079: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60713              ps-13726 (13726) [005] d..2 29484.656084: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60714   kworker/u17:2-23076 (23076) [000] d..2 29484.656086: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60715              ps-13726 (13726) [005] dn.3 29484.656087: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60716              ps-13726 (13726) [005] d..2 29484.656089: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60717     kworker/0:0-13450 (13450) [000] d..2 29484.656093: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
60718 shell svc 13722-13723 ( 1007) [005] d..2 29484.656095: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60719              ps-13726 (13726) [005] d..2 29484.656099: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60720              ps-13726 (13726) [005] dn.3 29484.656102: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60721              ps-13726 (13726) [005] d..2 29484.656104: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60722 shell svc 13722-13723 ( 1007) [005] d..2 29484.656111: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60723              ps-13726 (13726) [005] d..2 29484.656116: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60724     kworker/0:0-13450 (13450) [000] d..3 29484.656118: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
60725              ps-13726 (13726) [005] dn.3 29484.656118: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60726              ps-13726 (13726) [005] d..2 29484.656120: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60727          <idle>-0     (-----) [001] .n.1 29484.656123: cpu_idle: state=4294967295 cpu_id=1
60728 shell svc 13722-13723 ( 1007) [005] d..2 29484.656127: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60729          <idle>-0     (-----) [001] d..2 29484.656130: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
60730     kworker/0:0-13450 (13450) [000] d..2 29484.656132: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60731          <idle>-0     (-----) [000] d..1 29484.656140: cpu_idle: state=0 cpu_id=0
60732            adbd-23484 ( 1007) [001] d..2 29484.656142: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
60733            adbd-23484 ( 1007) [001] d..3 29484.656155: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
60734            adbd-23484 ( 1007) [001] d..2 29484.656201: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
60735            adbd-1007  ( 1007) [001] d..1 29484.656294: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
60736            adbd-1007  ( 1007) [001] d..2 29484.656306: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
60737          <idle>-0     (-----) [000] .n.1 29484.656311: cpu_idle: state=4294967295 cpu_id=0
60738          <idle>-0     (-----) [000] d..2 29484.656318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60739            adbd-1007  ( 1007) [001] d..2 29484.656342: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60740          <idle>-0     (-----) [001] d..1 29484.656352: cpu_idle: state=0 cpu_id=1
60741            adbd-23485 ( 1007) [000] d..2 29484.656367: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60742          <idle>-0     (-----) [000] d.h4 29484.656384: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60743          <idle>-0     (-----) [000] dnh5 29484.656391: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60744          <idle>-0     (-----) [000] d..2 29484.656399: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60745   kworker/u17:2-23076 (23076) [000] d..2 29484.656408: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60746   kworker/u17:2-23076 (23076) [000] d..3 29484.656414: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60747   kworker/u17:2-23076 (23076) [000] d..2 29484.656430: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60748     kworker/0:0-13450 (13450) [000] d..2 29484.656435: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
60749     kworker/0:0-13450 (13450) [000] d..3 29484.656444: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
60750     kworker/0:0-13450 (13450) [000] d..2 29484.656454: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
60751            adbd-23485 ( 1007) [000] d..2 29484.656502: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60752          <idle>-0     (-----) [000] d..1 29484.656511: cpu_idle: state=0 cpu_id=0
60753          <idle>-0     (-----) [000] d.h3 29484.656531: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60754          <idle>-0     (-----) [000] dnh4 29484.656538: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60755          <idle>-0     (-----) [000] .n.1 29484.656544: cpu_idle: state=4294967295 cpu_id=0
60756          <idle>-0     (-----) [000] d..2 29484.656550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60757   kworker/u17:2-23076 (23076) [000] d..2 29484.656557: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60758   kworker/u17:2-23076 (23076) [000] d..3 29484.656563: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60759   kworker/u17:2-23076 (23076) [000] d..2 29484.656580: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60760     kworker/0:0-13450 (13450) [000] d..2 29484.656586: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
60761     kworker/0:0-13450 (13450) [000] d..3 29484.656595: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
60762     kworker/0:0-13450 (13450) [000] d..2 29484.656604: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
60763              ps-13726 (13726) [005] d..2 29484.656623: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60764            adbd-23485 ( 1007) [000] d..2 29484.656623: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60765              ps-13726 (13726) [005] dn.3 29484.656627: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60766              ps-13726 (13726) [005] d..2 29484.656630: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60767          <idle>-0     (-----) [000] d..1 29484.656632: cpu_idle: state=0 cpu_id=0
60768 shell svc 13722-13723 ( 1007) [005] d..2 29484.656640: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60769              ps-13726 (13726) [005] d..2 29484.656645: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60770              ps-13726 (13726) [005] dn.3 29484.656647: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60771              ps-13726 (13726) [005] d..2 29484.656649: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60772 shell svc 13722-13723 ( 1007) [005] d..2 29484.656656: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60773              ps-13726 (13726) [005] d..2 29484.656661: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60774              ps-13726 (13726) [005] dn.3 29484.656663: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60775              ps-13726 (13726) [005] d..2 29484.656665: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60776 shell svc 13722-13723 ( 1007) [005] d..2 29484.656672: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60777              ps-13726 (13726) [005] d..2 29484.656676: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60778              ps-13726 (13726) [005] dn.3 29484.656679: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60779              ps-13726 (13726) [005] d..2 29484.656682: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60780 shell svc 13722-13723 ( 1007) [005] d..2 29484.656688: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60781              ps-13726 (13726) [005] d..2 29484.656693: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60782              ps-13726 (13726) [005] dn.3 29484.656695: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60783              ps-13726 (13726) [005] d..2 29484.656698: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60784 shell svc 13722-13723 ( 1007) [005] d..2 29484.656705: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60785              ps-13726 (13726) [005] d..2 29484.656709: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60786              ps-13726 (13726) [005] dn.3 29484.656711: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60787              ps-13726 (13726) [005] d..2 29484.656714: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60788 shell svc 13722-13723 ( 1007) [005] d..2 29484.656720: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60789              ps-13726 (13726) [005] d..2 29484.656724: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60790          <idle>-0     (-----) [000] d.h3 29484.656725: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60791              ps-13726 (13726) [005] dn.3 29484.656727: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60792              ps-13726 (13726) [005] d..2 29484.656729: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60793          <idle>-0     (-----) [000] dnh4 29484.656731: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60794 shell svc 13722-13723 ( 1007) [005] d..2 29484.656736: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60795          <idle>-0     (-----) [000] .n.1 29484.656737: cpu_idle: state=4294967295 cpu_id=0
60796              ps-13726 (13726) [005] d..2 29484.656740: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60797              ps-13726 (13726) [005] dn.3 29484.656743: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60798          <idle>-0     (-----) [000] d..2 29484.656744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60799              ps-13726 (13726) [005] d..2 29484.656745: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60800   kworker/u17:2-23076 (23076) [000] d..2 29484.656751: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60801 shell svc 13722-13723 ( 1007) [005] d..2 29484.656751: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60802              ps-13726 (13726) [005] d..2 29484.656755: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60803   kworker/u17:2-23076 (23076) [000] d..3 29484.656756: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60804              ps-13726 (13726) [005] dn.3 29484.656758: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60805              ps-13726 (13726) [005] d..2 29484.656760: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60806 shell svc 13722-13723 ( 1007) [005] d..2 29484.656767: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60807              ps-13726 (13726) [005] d..2 29484.656771: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60808   kworker/u17:2-23076 (23076) [000] d..2 29484.656773: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60809              ps-13726 (13726) [005] dn.3 29484.656773: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60810              ps-13726 (13726) [005] d..2 29484.656775: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60811     kworker/0:0-13450 (13450) [000] d..2 29484.656779: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
60812 shell svc 13722-13723 ( 1007) [005] d..2 29484.656782: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60813              ps-13726 (13726) [005] d..2 29484.656786: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60814     kworker/0:0-13450 (13450) [000] d..3 29484.656788: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
60815              ps-13726 (13726) [005] dn.3 29484.656789: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60816              ps-13726 (13726) [005] d..2 29484.656791: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60817          <idle>-0     (-----) [001] .n.1 29484.656794: cpu_idle: state=4294967295 cpu_id=1
60818 shell svc 13722-13723 ( 1007) [005] d..2 29484.656798: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60819              ps-13726 (13726) [005] d..2 29484.656801: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60820          <idle>-0     (-----) [001] d..2 29484.656802: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
60821     kworker/0:0-13450 (13450) [000] d..2 29484.656803: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60822              ps-13726 (13726) [005] dn.3 29484.656804: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60823              ps-13726 (13726) [005] d..2 29484.656806: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60824          <idle>-0     (-----) [000] d..1 29484.656811: cpu_idle: state=0 cpu_id=0
60825 shell svc 13722-13723 ( 1007) [005] d..2 29484.656812: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60826            adbd-23484 ( 1007) [001] d..2 29484.656814: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
60827              ps-13726 (13726) [005] d..2 29484.656816: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60828              ps-13726 (13726) [005] dn.3 29484.656819: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60829              ps-13726 (13726) [005] d..2 29484.656821: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60830            adbd-23484 ( 1007) [001] d..3 29484.656821: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
60831 shell svc 13722-13723 ( 1007) [005] d..2 29484.656827: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60832              ps-13726 (13726) [005] d..2 29484.656831: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60833              ps-13726 (13726) [005] dn.3 29484.656834: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60834              ps-13726 (13726) [005] d..2 29484.656836: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60835 shell svc 13722-13723 ( 1007) [005] d..2 29484.656842: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60836              ps-13726 (13726) [005] d..2 29484.656846: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60837              ps-13726 (13726) [005] dn.3 29484.656849: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60838              ps-13726 (13726) [005] d..2 29484.656851: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60839 shell svc 13722-13723 ( 1007) [005] d..2 29484.656858: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60840              ps-13726 (13726) [005] d..2 29484.656862: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60841              ps-13726 (13726) [005] dn.3 29484.656865: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60842              ps-13726 (13726) [005] d..2 29484.656867: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60843            adbd-23484 ( 1007) [001] d..2 29484.656868: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
60844 shell svc 13722-13723 ( 1007) [005] d..2 29484.656874: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60845              ps-13726 (13726) [005] d..2 29484.656878: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60846              ps-13726 (13726) [005] dn.3 29484.656881: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60847              ps-13726 (13726) [005] d..2 29484.656883: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60848 shell svc 13722-13723 ( 1007) [005] d..2 29484.656890: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60849              ps-13726 (13726) [005] d..2 29484.656894: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60850              ps-13726 (13726) [005] dn.3 29484.656896: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60851              ps-13726 (13726) [005] d..2 29484.656898: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60852 shell svc 13722-13723 ( 1007) [005] d..2 29484.656905: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60853              ps-13726 (13726) [005] d..2 29484.656909: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60854              ps-13726 (13726) [005] dn.3 29484.656911: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60855              ps-13726 (13726) [005] d..2 29484.656913: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60856 shell svc 13722-13723 ( 1007) [005] d..2 29484.656920: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60857            adbd-1007  ( 1007) [001] d..1 29484.656950: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
60858            adbd-1007  ( 1007) [001] d..2 29484.656962: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
60859          <idle>-0     (-----) [000] .n.1 29484.656967: cpu_idle: state=4294967295 cpu_id=0
60860          <idle>-0     (-----) [000] d..2 29484.656974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60861            adbd-1007  ( 1007) [001] d..2 29484.656998: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60862          <idle>-0     (-----) [001] d..1 29484.657008: cpu_idle: state=0 cpu_id=1
60863            adbd-23485 ( 1007) [000] d..2 29484.657023: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60864          <idle>-0     (-----) [000] d.h3 29484.657044: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60865          <idle>-0     (-----) [000] dnh4 29484.657050: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60866          <idle>-0     (-----) [000] dnh3 29484.657119: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
60867          <idle>-0     (-----) [000] dnh3 29484.657132: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
60868          <idle>-0     (-----) [000] dnh4 29484.657144: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
60869          <idle>-0     (-----) [003] .n.1 29484.657149: cpu_idle: state=4294967295 cpu_id=3
60870          <idle>-0     (-----) [000] d..2 29484.657152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60871          <idle>-0     (-----) [003] d..2 29484.657157: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
60872   kworker/u17:2-23076 (23076) [000] d..2 29484.657160: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60873   kworker/u17:2-23076 (23076) [000] d..3 29484.657167: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60874         sugov:0-559   (  559) [003] .... 29484.657179: clk_set_rate: pwrcl_clk 1228800000
60875   kworker/u17:2-23076 (23076) [000] d..2 29484.657184: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60876         sugov:0-559   (  559) [003] .... 29484.657187: clk_set_rate: cpu3_pwrcl_clk 1420800000
60877     kworker/0:0-13450 (13450) [000] d..2 29484.657189: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
60878         sugov:0-559   (  559) [003] .... 29484.657194: clk_set_rate: cpu2_pwrcl_clk 1420800000
60879         sugov:0-559   (  559) [003] .... 29484.657200: clk_set_rate: cpu1_pwrcl_clk 1420800000
60880         sugov:0-559   (  559) [003] .... 29484.657206: clk_set_rate: cpu0_pwrcl_clk 1228800000
60881     kworker/0:0-13450 (13450) [000] d..3 29484.657214: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
60882     kworker/0:0-13450 (13450) [000] d..2 29484.657239: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60883          <idle>-0     (-----) [000] d..1 29484.657252: cpu_idle: state=0 cpu_id=0
60884          <idle>-0     (-----) [007] dnh2 29484.657291: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
60885          <idle>-0     (-----) [007] .n.1 29484.657295: cpu_idle: state=4294967295 cpu_id=7
60886              ps-13726 (13726) [005] d..2 29484.657300: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60887          <idle>-0     (-----) [007] d..2 29484.657301: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
60888              ps-13726 (13726) [005] dn.3 29484.657305: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60889              ps-13726 (13726) [005] d..2 29484.657308: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60890         sugov:0-559   (  559) [003] .... 29484.657317: cpu_frequency: state=1228800 cpu_id=0
60891 shell svc 13722-13723 ( 1007) [005] d..2 29484.657319: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60892              ps-13726 (13726) [005] d..2 29484.657324: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60893              ps-13726 (13726) [005] dn.3 29484.657326: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60894         sugov:4-560   (  560) [007] .... 29484.657327: clk_set_rate: perfcl_clk 2323200000
60895         sugov:4-560   (  560) [007] .... 29484.657328: clk_set_rate: cpu7_perfcl_clk 2246400000
60896              ps-13726 (13726) [005] d..2 29484.657328: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60897         sugov:4-560   (  560) [007] .... 29484.657332: clk_set_rate: cpu6_perfcl_clk 2246400000
60898         sugov:0-559   (  559) [003] .... 29484.657333: cpu_frequency: state=1228800 cpu_id=1
60899         sugov:0-559   (  559) [003] .... 29484.657336: cpu_frequency: state=1228800 cpu_id=2
60900 shell svc 13722-13723 ( 1007) [005] d..2 29484.657336: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60901         sugov:4-560   (  560) [007] .... 29484.657336: clk_set_rate: cpu5_perfcl_clk 2246400000
60902         sugov:0-559   (  559) [003] .... 29484.657338: cpu_frequency: state=1228800 cpu_id=3
60903              ps-13726 (13726) [005] d..2 29484.657340: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60904         sugov:4-560   (  560) [007] .... 29484.657341: clk_set_rate: cpu4_perfcl_clk 2323200000
60905              ps-13726 (13726) [005] dn.3 29484.657343: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60906              ps-13726 (13726) [005] d..2 29484.657345: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60907         sugov:4-560   (  560) [007] .... 29484.657346: cpu_frequency: state=2323200 cpu_id=4
60908         sugov:4-560   (  560) [007] .... 29484.657351: cpu_frequency: state=2323200 cpu_id=5
60909 shell svc 13722-13723 ( 1007) [005] d..2 29484.657352: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60910         sugov:4-560   (  560) [007] .... 29484.657353: cpu_frequency: state=2323200 cpu_id=6
60911         sugov:0-559   (  559) [003] d..2 29484.657353: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
60912         sugov:4-560   (  560) [007] .... 29484.657354: cpu_frequency: state=2323200 cpu_id=7
60913              ps-13726 (13726) [005] d..2 29484.657356: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60914              ps-13726 (13726) [005] dn.3 29484.657358: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60915              ps-13726 (13726) [005] d..2 29484.657360: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60916         sugov:4-560   (  560) [007] d..2 29484.657372: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60917 shell svc 13722-13723 ( 1007) [005] d..2 29484.657376: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60918          <idle>-0     (-----) [005] d..1 29484.657385: cpu_idle: state=2 cpu_id=5
60919              ps-13726 (13726) [007] d..2 29484.657390: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=005
60920              ps-13726 (13726) [007] dn.3 29484.657397: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60921              ps-13726 (13726) [007] d..2 29484.657400: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60922            adbd-23485 ( 1007) [003] d..2 29484.657413: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60923 shell svc 13722-13723 ( 1007) [007] d..2 29484.657416: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60924          <idle>-0     (-----) [003] d..1 29484.657420: cpu_idle: state=0 cpu_id=3
60925              ps-13726 (13726) [007] d..2 29484.657421: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60926              ps-13726 (13726) [007] dn.3 29484.657425: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60927              ps-13726 (13726) [007] d..2 29484.657427: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60928 shell svc 13722-13723 ( 1007) [007] d..2 29484.657435: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60929          <idle>-0     (-----) [000] d.h3 29484.657436: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60930              ps-13726 (13726) [007] d..2 29484.657440: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60931              ps-13726 (13726) [007] dn.3 29484.657443: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60932              ps-13726 (13726) [007] d..2 29484.657445: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60933          <idle>-0     (-----) [000] dnh4 29484.657446: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60934 shell svc 13722-13723 ( 1007) [007] d..2 29484.657452: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60935          <idle>-0     (-----) [000] .n.1 29484.657453: cpu_idle: state=4294967295 cpu_id=0
60936              ps-13726 (13726) [007] d..2 29484.657456: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60937              ps-13726 (13726) [007] dn.3 29484.657458: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60938          <idle>-0     (-----) [000] d..2 29484.657460: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60939              ps-13726 (13726) [007] d..2 29484.657460: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60940 shell svc 13722-13723 ( 1007) [007] d..2 29484.657467: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60941   kworker/u17:2-23076 (23076) [000] d..2 29484.657469: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60942              ps-13726 (13726) [007] d..2 29484.657471: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60943              ps-13726 (13726) [007] dn.3 29484.657473: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60944   kworker/u17:2-23076 (23076) [000] d..3 29484.657475: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60945              ps-13726 (13726) [007] d..2 29484.657476: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60946 shell svc 13722-13723 ( 1007) [007] d..2 29484.657483: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60947              ps-13726 (13726) [007] d..2 29484.657488: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60948              ps-13726 (13726) [007] dn.3 29484.657490: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60949              ps-13726 (13726) [007] d..2 29484.657493: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60950   kworker/u17:2-23076 (23076) [000] d..2 29484.657493: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60951 shell svc 13722-13723 ( 1007) [007] d..2 29484.657499: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60952     kworker/0:0-13450 (13450) [000] d..2 29484.657499: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
60953              ps-13726 (13726) [007] d..2 29484.657503: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60954              ps-13726 (13726) [007] dn.3 29484.657505: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60955              ps-13726 (13726) [007] d..2 29484.657507: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60956     kworker/0:0-13450 (13450) [000] d..3 29484.657509: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
60957 shell svc 13722-13723 ( 1007) [007] d..2 29484.657514: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60958          <idle>-0     (-----) [003] .n.1 29484.657514: cpu_idle: state=4294967295 cpu_id=3
60959              ps-13726 (13726) [007] d..2 29484.657518: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60960              ps-13726 (13726) [007] dn.3 29484.657520: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60961          <idle>-0     (-----) [003] d..2 29484.657521: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
60962              ps-13726 (13726) [007] d..2 29484.657523: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60963     kworker/0:0-13450 (13450) [000] d..2 29484.657527: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60964 shell svc 13722-13723 ( 1007) [007] d..2 29484.657529: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60965              ps-13726 (13726) [007] d..2 29484.657533: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60966          <idle>-0     (-----) [000] d..1 29484.657535: cpu_idle: state=0 cpu_id=0
60967              ps-13726 (13726) [007] dn.3 29484.657535: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60968              ps-13726 (13726) [007] d..2 29484.657537: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60969            adbd-23485 ( 1007) [003] d..2 29484.657542: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60970 shell svc 13722-13723 ( 1007) [007] d..2 29484.657544: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60971              ps-13726 (13726) [007] d..2 29484.657548: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60972          <idle>-0     (-----) [003] d..1 29484.657549: cpu_idle: state=0 cpu_id=3
60973              ps-13726 (13726) [007] dn.3 29484.657550: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
60974              ps-13726 (13726) [007] d..2 29484.657553: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
60975 shell svc 13722-13723 ( 1007) [007] d..2 29484.657559: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=13726 next_prio=120
60976              ps-13726 (13726) [007] d..2 29484.657568: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
60977          <idle>-0     (-----) [000] dnh2 29484.657587: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
60978          <idle>-0     (-----) [000] .n.1 29484.657592: cpu_idle: state=4294967295 cpu_id=0
60979          <idle>-0     (-----) [000] d..2 29484.657599: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
60980         rcuop/6-61    (   61) [000] d..2 29484.657615: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60981          <idle>-0     (-----) [000] d..1 29484.657622: cpu_idle: state=0 cpu_id=0
60982          <idle>-0     (-----) [000] d.h3 29484.657643: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60983          <idle>-0     (-----) [000] dnh4 29484.657650: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
60984          <idle>-0     (-----) [000] .n.1 29484.657655: cpu_idle: state=4294967295 cpu_id=0
60985          <idle>-0     (-----) [000] d..2 29484.657662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
60986   kworker/u17:2-23076 (23076) [000] d..2 29484.657669: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60987   kworker/u17:2-23076 (23076) [000] d..3 29484.657676: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
60988   kworker/u17:2-23076 (23076) [000] d..2 29484.657694: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
60989     kworker/0:0-13450 (13450) [000] d..2 29484.657701: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
60990     kworker/0:0-13450 (13450) [000] d..3 29484.657712: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=001
60991          <idle>-0     (-----) [001] .n.1 29484.657717: cpu_idle: state=4294967295 cpu_id=1
60992          <idle>-0     (-----) [001] d..2 29484.657726: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
60993     kworker/0:0-13450 (13450) [000] d..2 29484.657727: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60994          <idle>-0     (-----) [000] d..1 29484.657736: cpu_idle: state=0 cpu_id=0
60995            adbd-23484 ( 1007) [001] d..2 29484.657739: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
60996            adbd-23484 ( 1007) [001] d..3 29484.657749: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
60997            adbd-23484 ( 1007) [001] d..2 29484.657802: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
60998            adbd-1007  ( 1007) [001] d..1 29484.657889: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
60999            adbd-1007  ( 1007) [001] d..2 29484.657921: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
61000          <idle>-0     (-----) [000] .n.1 29484.657926: cpu_idle: state=4294967295 cpu_id=0
61001          <idle>-0     (-----) [000] d..2 29484.657934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
61002            adbd-1007  ( 1007) [001] d..2 29484.657963: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61003          <idle>-0     (-----) [001] d..1 29484.657974: cpu_idle: state=0 cpu_id=1
61004            adbd-23485 ( 1007) [000] d..2 29484.657989: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61005          <idle>-0     (-----) [000] d.h4 29484.658007: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61006              ps-13726 (13726) [007] d..3 29484.658007: sched_waking: comm=sh pid=13724 prio=120 target_cpu=000
61007          <idle>-0     (-----) [000] dnh5 29484.658021: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61008              ps-13726 (13726) [007] d..2 29484.658022: sched_switch: prev_comm=ps prev_pid=13726 prev_prio=120 prev_state=x ==> next_comm=swapper/7 next_pid=0 next_prio=120
61009          <idle>-0     (-----) [007] d..1 29484.658031: cpu_idle: state=2 cpu_id=7
61010          <idle>-0     (-----) [000] dnh3 29484.658032: sched_wakeup: comm=sh pid=13724 prio=120 target_cpu=000
61011          <idle>-0     (-----) [000] d..2 29484.658039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61012   kworker/u17:2-23076 (23076) [000] d..2 29484.658047: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61013   kworker/u17:2-23076 (23076) [000] d..3 29484.658052: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61014   kworker/u17:2-23076 (23076) [000] d..2 29484.658071: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=sh next_pid=13724 next_prio=120
61015              sh-13724 (13724) [000] d..2 29484.658173: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61016              sh-13724 (13724) [000] d..3 29484.658193: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61017          <idle>-0     (-----) [001] .n.1 29484.658199: cpu_idle: state=4294967295 cpu_id=1
61018          <idle>-0     (-----) [001] d..2 29484.658208: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61019         rcuop/0-10    (   10) [001] d..2 29484.658227: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61020          <idle>-0     (-----) [001] d..1 29484.658234: cpu_idle: state=0 cpu_id=1
61021              sh-13724 (13724) [000] d..3 29484.659055: sched_waking: comm=sh pid=13722 prio=120 target_cpu=000
61022              sh-13724 (13724) [000] d..4 29484.659079: sched_wakeup: comm=sh pid=13722 prio=120 target_cpu=001
61023          <idle>-0     (-----) [001] .n.1 29484.659084: cpu_idle: state=4294967295 cpu_id=1
61024              sh-13724 (13724) [000] d..2 29484.659089: sched_switch: prev_comm=sh prev_pid=13724 prev_prio=120 prev_state=x ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61025          <idle>-0     (-----) [001] d..2 29484.659092: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13722 next_prio=120
61026     kworker/0:0-13450 (13450) [000] d..2 29484.659101: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
61027     kworker/0:0-13450 (13450) [000] d..3 29484.659112: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
61028     kworker/0:0-13450 (13450) [000] d..2 29484.659123: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
61029            adbd-23485 ( 1007) [000] d..2 29484.659183: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61030          <idle>-0     (-----) [000] d.h4 29484.659202: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61031          <idle>-0     (-----) [000] dnh5 29484.659209: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61032          <idle>-0     (-----) [000] d..2 29484.659219: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61033   kworker/u17:2-23076 (23076) [000] d..2 29484.659227: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61034   kworker/u17:2-23076 (23076) [000] d..3 29484.659234: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61035   kworker/u17:2-23076 (23076) [000] d..2 29484.659252: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61036     kworker/0:0-13450 (13450) [000] d..2 29484.659258: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
61037     kworker/0:0-13450 (13450) [000] d..3 29484.659269: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
61038     kworker/0:0-13450 (13450) [000] d..2 29484.659278: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
61039              sh-13722 (13722) [001] d..2 29484.659282: sched_waking: comm=shell svc 13722 pid=13723 prio=120 target_cpu=007
61040            adbd-23485 ( 1007) [000] d..2 29484.659300: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61041              sh-13722 (13722) [001] d..3 29484.659304: sched_wakeup: comm=shell svc 13722 pid=13723 prio=120 target_cpu=001
61042          <idle>-0     (-----) [000] d..1 29484.659314: cpu_idle: state=0 cpu_id=0
61043              sh-13722 (13722) [001] d.h3 29484.659341: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
61044              sh-13722 (13722) [001] d.h3 29484.659352: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
61045              sh-13722 (13722) [001] d.h4 29484.659362: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
61046          <idle>-0     (-----) [003] .n.1 29484.659367: cpu_idle: state=4294967295 cpu_id=3
61047          <idle>-0     (-----) [003] d..2 29484.659373: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61048         sugov:0-559   (  559) [003] d..2 29484.659392: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61049          <idle>-0     (-----) [003] d..1 29484.659396: cpu_idle: state=0 cpu_id=3
61050          <idle>-0     (-----) [000] d.h3 29484.659418: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61051          <idle>-0     (-----) [000] dnh4 29484.659425: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61052          <idle>-0     (-----) [000] .n.1 29484.659432: cpu_idle: state=4294967295 cpu_id=0
61053          <idle>-0     (-----) [000] d..2 29484.659440: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61054   kworker/u17:2-23076 (23076) [000] d..2 29484.659447: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61055   kworker/u17:2-23076 (23076) [000] d..3 29484.659454: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61056   kworker/u17:2-23076 (23076) [000] d..2 29484.659472: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61057     kworker/0:0-13450 (13450) [000] d..2 29484.659480: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=001
61058     kworker/0:0-13450 (13450) [000] d..3 29484.659508: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
61059     kworker/0:0-13450 (13450) [000] d..2 29484.659519: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
61060            adbd-23484 ( 1007) [000] d..2 29484.659532: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
61061            adbd-23484 ( 1007) [000] d..3 29484.659544: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
61062            adbd-23484 ( 1007) [000] d..2 29484.659595: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
61063            adbd-1007  ( 1007) [000] d..2 29484.659673: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61064          <idle>-0     (-----) [000] d..1 29484.659684: cpu_idle: state=0 cpu_id=0
61065          <idle>-0     (-----) [007] dnh2 29484.659986: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
61066          <idle>-0     (-----) [007] .n.1 29484.659990: cpu_idle: state=4294967295 cpu_id=7
61067          <idle>-0     (-----) [007] d..2 29484.659995: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61068         sugov:4-560   (  560) [007] .... 29484.660007: clk_set_rate: perfcl_clk 2803200000
61069         sugov:4-560   (  560) [007] .... 29484.660008: clk_set_rate: cpu7_perfcl_clk 2323200000
61070         sugov:4-560   (  560) [007] .... 29484.660012: clk_set_rate: cpu6_perfcl_clk 2323200000
61071         sugov:4-560   (  560) [007] .... 29484.660016: clk_set_rate: cpu5_perfcl_clk 2323200000
61072         sugov:4-560   (  560) [007] .... 29484.660020: clk_set_rate: cpu4_perfcl_clk 2803200000
61073         sugov:4-560   (  560) [007] .... 29484.660024: cpu_frequency: state=2803200 cpu_id=4
61074              sh-13722 (13722) [001] d..2 29484.660046: sched_switch: prev_comm=sh prev_pid=13722 prev_prio=120 prev_state=x ==> next_comm=shell svc 13722 next_pid=13723 next_prio=120
61075 shell svc 13722-13723 ( 1007) [001] d..2 29484.660075: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
61076 shell svc 13722-13723 ( 1007) [001] d..3 29484.660090: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=001
61077         sugov:4-560   (  560) [007] d..2 29484.660130: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
61078          <idle>-0     (-----) [007] d..1 29484.660134: cpu_idle: state=2 cpu_id=7
61079          <idle>-0     (-----) [003] d.s3 29484.660175: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
61080          <idle>-0     (-----) [003] ...1 29484.660190: cpu_idle: state=4294967295 cpu_id=3
61081          <idle>-0     (-----) [003] d..1 29484.660194: cpu_idle: state=0 cpu_id=3
61082 shell svc 13722-13723 ( 1007) [001] d..2 29484.660349: sched_switch: prev_comm=shell svc 13722 prev_pid=13723 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=1007 next_prio=120
61083            adbd-1007  ( 1007) [001] d.s2 29484.660412: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61084          <idle>-0     (-----) [003] d.s2 29484.660433: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61085            adbd-1007  ( 1007) [001] dns3 29484.660440: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61086          <idle>-0     (-----) [003] dns3 29484.660448: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61087            adbd-1007  ( 1007) [001] d..2 29484.660453: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61088          <idle>-0     (-----) [003] .n.1 29484.660460: cpu_idle: state=4294967295 cpu_id=3
61089          <idle>-0     (-----) [003] d..2 29484.660467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61090     rcu_preempt-7     (    7) [003] d..2 29484.660490: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61091          <idle>-0     (-----) [003] d..1 29484.660515: cpu_idle: state=2 cpu_id=3
61092          <idle>-0     (-----) [003] ...1 29484.660712: cpu_idle: state=4294967295 cpu_id=3
61093          <idle>-0     (-----) [003] d..1 29484.660718: cpu_idle: state=0 cpu_id=3
61094  kworker/u16:10-23868 (23868) [001] d..2 29484.660734: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=1007 next_prio=120
61095            adbd-1007  ( 1007) [001] d..1 29484.660760: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
61096            adbd-1007  ( 1007) [001] d..2 29484.660783: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=000
61097          <idle>-0     (-----) [000] .n.1 29484.660799: cpu_idle: state=4294967295 cpu_id=0
61098          <idle>-0     (-----) [000] d..2 29484.660807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
61099            adbd-1007  ( 1007) [001] d..2 29484.660859: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61100            adbd-23485 ( 1007) [000] d..2 29484.660866: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61101          <idle>-0     (-----) [007] dnh2 29484.660870: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=007
61102          <idle>-0     (-----) [007] .n.1 29484.660873: cpu_idle: state=4294967295 cpu_id=7
61103          <idle>-0     (-----) [001] d..1 29484.660874: cpu_idle: state=0 cpu_id=1
61104          <idle>-0     (-----) [007] d..2 29484.660878: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61105         sugov:4-560   (  560) [007] d..1 29484.660883: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61106          <idle>-0     (-----) [000] d.h4 29484.660884: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61107         sugov:4-560   (  560) [007] .... 29484.660890: cpu_frequency: state=2803200 cpu_id=5
61108         sugov:4-560   (  560) [007] .... 29484.660893: cpu_frequency: state=2803200 cpu_id=6
61109         sugov:4-560   (  560) [007] .... 29484.660894: cpu_frequency: state=2803200 cpu_id=7
61110          <idle>-0     (-----) [000] dnh5 29484.660896: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61111          <idle>-0     (-----) [001] d.h2 29484.660900: sched_blocked_reason: pid=23868 iowait=0 caller=update_request_adhoc+0x384/0x480
61112         sugov:4-560   (  560) [007] d..2 29484.660901: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
61113          <idle>-0     (-----) [001] dnh2 29484.660903: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61114          <idle>-0     (-----) [007] d..1 29484.660904: cpu_idle: state=2 cpu_id=7
61115          <idle>-0     (-----) [000] d..2 29484.660905: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61116          <idle>-0     (-----) [001] .n.1 29484.660909: cpu_idle: state=4294967295 cpu_id=1
61117   kworker/u17:2-23076 (23076) [000] d..2 29484.660913: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61118          <idle>-0     (-----) [001] d..2 29484.660918: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61119   kworker/u17:2-23076 (23076) [000] d..3 29484.660919: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61120   kworker/u17:2-23076 (23076) [000] d..2 29484.660937: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61121     kworker/0:0-13450 (13450) [000] d..2 29484.660943: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=000
61122     kworker/0:0-13450 (13450) [000] d..3 29484.660968: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61123     kworker/0:0-13450 (13450) [000] d..2 29484.660986: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61124          <idle>-0     (-----) [000] d..1 29484.660995: cpu_idle: state=2 cpu_id=0
61125  kworker/u16:10-23868 (23868) [001] d..2 29484.661029: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=23485 next_prio=120
61126          <idle>-0     (-----) [003] d.s3 29484.661066: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61127          <idle>-0     (-----) [003] d.s4 29484.661085: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61128            adbd-23485 ( 1007) [001] d..2 29484.661088: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61129          <idle>-0     (-----) [003] dns4 29484.661089: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61130          <idle>-0     (-----) [003] .n.1 29484.661094: cpu_idle: state=4294967295 cpu_id=3
61131          <idle>-0     (-----) [001] d..1 29484.661098: cpu_idle: state=0 cpu_id=1
61132          <idle>-0     (-----) [003] d..2 29484.661103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61133  kworker/u16:10-23868 (23868) [003] .... 29484.661129: clk_set_rate: l3_cluster1_vote_clk 1209600000
61134  kworker/u16:10-23868 (23868) [003] .... 29484.661134: clk_set_rate: l3_clk 1209600000
61135  kworker/u16:10-23868 (23868) [003] d..2 29484.661169: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61136          <idle>-0     (-----) [003] d..1 29484.661183: cpu_idle: state=0 cpu_id=3
61137          <idle>-0     (-----) [000] d.h3 29484.661231: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61138          <idle>-0     (-----) [000] dnh4 29484.661245: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61139          <idle>-0     (-----) [000] .n.1 29484.661252: cpu_idle: state=4294967295 cpu_id=0
61140          <idle>-0     (-----) [000] d..2 29484.661263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61141   kworker/u17:2-23076 (23076) [000] d..2 29484.661276: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61142   kworker/u17:2-23076 (23076) [000] d..3 29484.661284: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61143   kworker/u17:2-23076 (23076) [000] d..2 29484.661304: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61144     kworker/0:0-13450 (13450) [000] d..2 29484.661313: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
61145     kworker/0:0-13450 (13450) [000] d..3 29484.661324: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61146          <idle>-0     (-----) [001] .n.1 29484.661330: cpu_idle: state=4294967295 cpu_id=1
61147          <idle>-0     (-----) [001] d..2 29484.661339: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
61148     kworker/0:0-13450 (13450) [000] d..2 29484.661346: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61149          <idle>-0     (-----) [000] d.h4 29484.661363: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61150          <idle>-0     (-----) [000] dnh5 29484.661370: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61151          <idle>-0     (-----) [000] d..2 29484.661378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61152   kworker/u17:2-23076 (23076) [000] d..2 29484.661386: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61153   kworker/u17:2-23076 (23076) [000] d..3 29484.661392: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61154            adbd-23485 ( 1007) [001] d..2 29484.661397: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61155          <idle>-0     (-----) [001] d..1 29484.661406: cpu_idle: state=0 cpu_id=1
61156   kworker/u17:2-23076 (23076) [000] d.h3 29484.661418: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61157   kworker/u17:2-23076 (23076) [000] d.h4 29484.661419: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61158   kworker/u17:2-23076 (23076) [000] d..2 29484.661449: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61159     kworker/0:0-13450 (13450) [000] d..2 29484.661458: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
61160     kworker/0:0-13450 (13450) [000] d..3 29484.661470: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
61161     kworker/0:0-13450 (13450) [000] d..2 29484.661479: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
61162     kworker/0:0-13450 (13450) [000] d..3 29484.661488: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61163          <idle>-0     (-----) [001] .n.1 29484.661496: cpu_idle: state=4294967295 cpu_id=1
61164     kworker/0:0-13450 (13450) [000] d..2 29484.661499: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
61165          <idle>-0     (-----) [001] d..2 29484.661503: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
61166            adbd-23484 ( 1007) [000] d..2 29484.661515: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=001
61167            adbd-23485 ( 1007) [001] d..2 29484.661523: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61168          <idle>-0     (-----) [001] d..1 29484.661532: cpu_idle: state=0 cpu_id=1
61169            adbd-23484 ( 1007) [000] d..3 29484.661533: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
61170            adbd-23484 ( 1007) [000] d..2 29484.661590: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
61171            adbd-1007  ( 1007) [000] d.h4 29484.661607: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61172            adbd-1007  ( 1007) [000] d.h5 29484.661625: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
61173          <idle>-0     (-----) [001] .n.1 29484.661630: cpu_idle: state=4294967295 cpu_id=1
61174          <idle>-0     (-----) [001] d..2 29484.661639: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61175   kworker/u17:2-23076 (23076) [001] d..2 29484.661650: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61176   kworker/u17:2-23076 (23076) [001] d..3 29484.661664: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61177            adbd-1007  ( 1007) [000] d..1 29484.661671: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
61178   kworker/u17:2-23076 (23076) [001] d..2 29484.661684: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
61179            adbd-1007  ( 1007) [000] d..2 29484.661694: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61180     kworker/1:1-13678 (13678) [001] d..2 29484.661696: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
61181     kworker/1:1-13678 (13678) [001] d..3 29484.661727: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
61182          <idle>-0     (-----) [003] .n.1 29484.661732: cpu_idle: state=4294967295 cpu_id=3
61183            adbd-1007  ( 1007) [000] d..2 29484.661737: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61184          <idle>-0     (-----) [003] d..2 29484.661740: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23484 next_prio=120
61185     kworker/1:1-13678 (13678) [001] d..2 29484.661742: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
61186          <idle>-0     (-----) [000] d..1 29484.661749: cpu_idle: state=0 cpu_id=0
61187            adbd-23484 ( 1007) [003] d..2 29484.661759: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
61188            adbd-23484 ( 1007) [003] d..3 29484.661773: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
61189            adbd-23485 ( 1007) [001] d..2 29484.661800: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61190          <idle>-0     (-----) [001] d..1 29484.661810: cpu_idle: state=0 cpu_id=1
61191          <idle>-0     (-----) [000] d.h3 29484.661813: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
61192          <idle>-0     (-----) [000] d.h4 29484.661825: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
61193            adbd-23484 ( 1007) [003] d..2 29484.661830: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
61194          <idle>-0     (-----) [001] .n.1 29484.661831: cpu_idle: state=4294967295 cpu_id=1
61195          <idle>-0     (-----) [000] ...1 29484.661835: cpu_idle: state=4294967295 cpu_id=0
61196          <idle>-0     (-----) [000] d..1 29484.661838: cpu_idle: state=0 cpu_id=0
61197          <idle>-0     (-----) [001] d..2 29484.661840: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61198   kworker/u17:2-23076 (23076) [001] d..2 29484.661849: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61199   kworker/u17:2-23076 (23076) [001] d..3 29484.661856: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61200   kworker/u17:2-23076 (23076) [001] d..2 29484.661875: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
61201     kworker/1:1-13678 (13678) [001] d..2 29484.661882: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
61202     kworker/1:1-13678 (13678) [001] d..3 29484.661893: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61203     kworker/1:1-13678 (13678) [001] d..2 29484.661903: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
61204            adbd-1007  ( 1007) [003] d..2 29484.661919: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61205            adbd-23485 ( 1007) [001] d..2 29484.661922: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61206          <idle>-0     (-----) [003] d..1 29484.661929: cpu_idle: state=0 cpu_id=3
61207          <idle>-0     (-----) [001] d..1 29484.661932: cpu_idle: state=0 cpu_id=1
61208          <idle>-0     (-----) [001] ...1 29484.663045: cpu_idle: state=4294967295 cpu_id=1
61209          <idle>-0     (-----) [001] d..1 29484.663050: cpu_idle: state=2 cpu_id=1
61210          <idle>-0     (-----) [003] d.s2 29484.667099: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61211          <idle>-0     (-----) [003] dns3 29484.667111: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61212          <idle>-0     (-----) [003] .n.1 29484.667119: cpu_idle: state=4294967295 cpu_id=3
61213          <idle>-0     (-----) [003] d..2 29484.667128: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61214     rcu_preempt-7     (    7) [003] d..2 29484.667133: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
61215     rcu_preempt-7     (    7) [003] d..3 29484.667146: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
61216     rcu_preempt-7     (    7) [003] d..2 29484.667157: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
61217         rcuop/4-45    (   45) [003] d..2 29484.667162: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
61218         rcuop/4-45    (   45) [003] d..3 29484.667172: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
61219         rcuop/4-45    (   45) [003] d..2 29484.667179: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
61220         rcuop/5-53    (   53) [003] d..2 29484.667349: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61221          <idle>-0     (-----) [003] d..1 29484.667359: cpu_idle: state=0 cpu_id=3
61222          <idle>-0     (-----) [003] d.s2 29484.673741: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61223          <idle>-0     (-----) [003] dns3 29484.673751: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61224          <idle>-0     (-----) [003] dns3 29484.673755: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61225          <idle>-0     (-----) [003] dns4 29484.673764: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61226          <idle>-0     (-----) [003] .n.1 29484.673777: cpu_idle: state=4294967295 cpu_id=3
61227          <idle>-0     (-----) [003] d..2 29484.673785: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61228     rcu_preempt-7     (    7) [003] d..2 29484.673791: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61229     rcu_preempt-7     (    7) [003] d..3 29484.673816: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61230     rcu_preempt-7     (    7) [003] d..2 29484.673818: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
61231     rcu_preempt-7     (    7) [003] d..3 29484.673839: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
61232     rcu_preempt-7     (    7) [003] d..2 29484.673848: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61233         rcuop/0-10    (   10) [003] d..2 29484.673865: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
61234         rcuop/6-61    (   61) [003] d..2 29484.673868: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
61235         rcuop/6-61    (   61) [003] d..3 29484.673896: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
61236         rcuop/6-61    (   61) [003] d..2 29484.673904: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
61237         rcuop/7-69    (   69) [003] d..2 29484.673917: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61238  kworker/u16:10-23868 (23868) [003] .... 29484.673930: clk_set_rate: l3_cluster1_vote_clk 300000000
61239  kworker/u16:10-23868 (23868) [003] .... 29484.673933: clk_set_rate: l3_clk 652800000
61240  kworker/u16:10-23868 (23868) [003] d..2 29484.674107: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
61241          <idle>-0     (-----) [003] d.s4 29484.674142: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61242          <idle>-0     (-----) [003] d.s5 29484.674152: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61243          <idle>-0     (-----) [003] dns5 29484.674156: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61244          <idle>-0     (-----) [003] d..2 29484.674166: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61245  kworker/u16:10-23868 (23868) [003] .... 29484.674189: clk_set_rate: l3_cluster0_vote_clk 300000000
61246  kworker/u16:10-23868 (23868) [003] .... 29484.674193: clk_set_rate: l3_clk 300000000
61247  kworker/u16:10-23868 (23868) [003] d..2 29484.674247: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61248          <idle>-0     (-----) [003] d..1 29484.674263: cpu_idle: state=0 cpu_id=3
61249          <idle>-0     (-----) [003] d.H3 29484.680482: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=007
61250          <idle>-0     (-----) [003] d.H3 29484.680505: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
61251          <idle>-0     (-----) [003] dnH4 29484.680515: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
61252          <idle>-0     (-----) [003] dns2 29484.680522: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61253          <idle>-0     (-----) [003] dns3 29484.680537: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61254          <idle>-0     (-----) [003] dns3 29484.680541: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61255          <idle>-0     (-----) [003] dns4 29484.680552: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61256          <idle>-0     (-----) [003] .n.1 29484.680561: cpu_idle: state=4294967295 cpu_id=3
61257          <idle>-0     (-----) [003] d..2 29484.680571: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61258         sugov:0-559   (  559) [003] .... 29484.680596: clk_set_rate: pwrcl_clk 1324800000
61259         sugov:0-559   (  559) [003] .... 29484.680606: clk_set_rate: cpu3_pwrcl_clk 1228800000
61260         sugov:0-559   (  559) [003] .... 29484.680615: clk_set_rate: cpu2_pwrcl_clk 1228800000
61261         sugov:0-559   (  559) [003] .... 29484.680623: clk_set_rate: cpu1_pwrcl_clk 1228800000
61262         sugov:0-559   (  559) [003] .... 29484.680631: clk_set_rate: cpu0_pwrcl_clk 1324800000
61263         sugov:0-559   (  559) [003] .... 29484.680639: cpu_frequency: state=1324800 cpu_id=0
61264         sugov:0-559   (  559) [003] .... 29484.680658: cpu_frequency: state=1324800 cpu_id=1
61265         sugov:0-559   (  559) [003] .... 29484.680661: cpu_frequency: state=1324800 cpu_id=2
61266         sugov:0-559   (  559) [003] .... 29484.680665: cpu_frequency: state=1324800 cpu_id=3
61267         sugov:0-559   (  559) [003] d..2 29484.680684: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61268     rcu_preempt-7     (    7) [003] d..2 29484.680693: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
61269     rcu_preempt-7     (    7) [003] d..3 29484.680708: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
61270     rcu_preempt-7     (    7) [003] d..2 29484.680724: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
61271         rcuop/4-45    (   45) [003] d..2 29484.680727: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
61272         rcuop/4-45    (   45) [003] d..3 29484.680738: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
61273         rcuop/4-45    (   45) [003] d..2 29484.680746: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
61274         rcuop/5-53    (   53) [003] d..2 29484.680816: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61275  kworker/u16:10-23868 (23868) [003] d..2 29484.680986: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
61276          <idle>-0     (-----) [003] d.s4 29484.681021: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61277          <idle>-0     (-----) [003] d.s5 29484.681033: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61278          <idle>-0     (-----) [003] dns5 29484.681038: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61279          <idle>-0     (-----) [003] d..2 29484.681048: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61280  kworker/u16:10-23868 (23868) [003] d..2 29484.681071: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61281          <idle>-0     (-----) [003] d..1 29484.681085: cpu_idle: state=0 cpu_id=3
61282          <idle>-0     (-----) [005] dnh2 29484.681197: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61283          <idle>-0     (-----) [005] .n.1 29484.681203: cpu_idle: state=4294967295 cpu_id=5
61284          <idle>-0     (-----) [005] d..2 29484.681212: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61285         sugov:4-560   (  560) [005] .... 29484.681229: clk_set_rate: perfcl_clk 2400000000
61286         sugov:4-560   (  560) [005] .... 29484.681229: clk_set_rate: cpu7_perfcl_clk 2803200000
61287         sugov:4-560   (  560) [005] .... 29484.681235: clk_set_rate: cpu6_perfcl_clk 2803200000
61288         sugov:4-560   (  560) [005] .... 29484.681239: clk_set_rate: cpu5_perfcl_clk 2803200000
61289         sugov:4-560   (  560) [005] .... 29484.681245: clk_set_rate: cpu4_perfcl_clk 2400000000
61290         sugov:4-560   (  560) [005] .... 29484.681250: cpu_frequency: state=2400000 cpu_id=4
61291         sugov:4-560   (  560) [005] d..2 29484.681381: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
61292          <idle>-0     (-----) [005] d..1 29484.681388: cpu_idle: state=2 cpu_id=5
61293          <idle>-0     (-----) [003] d.s3 29484.681420: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61294          <idle>-0     (-----) [003] ...1 29484.681439: cpu_idle: state=4294967295 cpu_id=3
61295          <idle>-0     (-----) [003] d..1 29484.681443: cpu_idle: state=0 cpu_id=3
61296          <idle>-0     (-----) [005] dnh2 29484.682190: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61297          <idle>-0     (-----) [005] .n.1 29484.682196: cpu_idle: state=4294967295 cpu_id=5
61298          <idle>-0     (-----) [005] d..2 29484.682203: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61299         sugov:4-560   (  560) [005] .... 29484.682212: cpu_frequency: state=2400000 cpu_id=5
61300         sugov:4-560   (  560) [005] .... 29484.682216: cpu_frequency: state=2400000 cpu_id=6
61301         sugov:4-560   (  560) [005] .... 29484.682217: cpu_frequency: state=2400000 cpu_id=7
61302         sugov:4-560   (  560) [005] d..2 29484.682228: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61303          <idle>-0     (-----) [005] d..1 29484.682234: cpu_idle: state=2 cpu_id=5
61304          <idle>-0     (-----) [003] d.s2 29484.687080: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61305          <idle>-0     (-----) [003] dns3 29484.687094: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61306          <idle>-0     (-----) [003] dns3 29484.687098: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61307          <idle>-0     (-----) [003] dns4 29484.687107: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61308          <idle>-0     (-----) [003] .n.1 29484.687123: cpu_idle: state=4294967295 cpu_id=3
61309          <idle>-0     (-----) [003] d..2 29484.687134: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61310     rcu_preempt-7     (    7) [003] d..2 29484.687143: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
61311     rcu_preempt-7     (    7) [003] d..3 29484.687157: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
61312     rcu_preempt-7     (    7) [003] d..2 29484.687159: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61313     rcu_preempt-7     (    7) [003] d..3 29484.687169: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61314     rcu_preempt-7     (    7) [003] d..2 29484.687178: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61315         rcuop/0-10    (   10) [003] d..2 29484.687182: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
61316         rcuop/0-10    (   10) [003] d..3 29484.687214: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
61317         rcuop/0-10    (   10) [003] d..2 29484.687263: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
61318         rcuop/1-21    (   21) [003] d..2 29484.687285: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
61319         rcuop/1-21    (   21) [003] d..3 29484.687316: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
61320         rcuop/1-21    (   21) [003] d..2 29484.687389: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61321         rcuop/2-29    (   29) [003] d..2 29484.687397: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61322         rcuop/2-29    (   29) [003] d..3 29484.687409: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61323         rcuop/2-29    (   29) [003] d..2 29484.687417: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
61324         rcuop/6-61    (   61) [003] d..2 29484.687421: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
61325         rcuop/6-61    (   61) [003] d..3 29484.687431: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
61326         rcuop/6-61    (   61) [003] d..2 29484.687438: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
61327         rcuop/7-69    (   69) [003] d..2 29484.687460: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61328     rcu_preempt-7     (    7) [003] d..2 29484.687470: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61329  kworker/u16:10-23868 (23868) [003] d..2 29484.687545: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61330          <idle>-0     (-----) [003] d..1 29484.687560: cpu_idle: state=2 cpu_id=3
61331          <idle>-0     (-----) [001] d.s3 29484.690593: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61332          <idle>-0     (-----) [001] dns4 29484.690609: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61333          <idle>-0     (-----) [001] .n.1 29484.690629: cpu_idle: state=4294967295 cpu_id=1
61334          <idle>-0     (-----) [001] d..2 29484.690642: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
61335     kworker/1:1-13678 (13678) [001] d..2 29484.690764: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
61336          <idle>-0     (-----) [001] d..1 29484.690779: cpu_idle: state=0 cpu_id=1
61337          <idle>-0     (-----) [000] d.h3 29484.691496: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61338          <idle>-0     (-----) [000] dnh4 29484.691507: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61339          <idle>-0     (-----) [000] .n.1 29484.691525: cpu_idle: state=4294967295 cpu_id=0
61340          <idle>-0     (-----) [000] d..2 29484.691538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61341     kworker/0:0-13450 (13450) [000] d..2 29484.691545: sched_waking: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61342     kworker/0:0-13450 (13450) [000] d..3 29484.691552: sched_blocked_reason: pid=13678 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
61343     kworker/0:0-13450 (13450) [000] d..3 29484.691560: sched_wakeup: comm=kworker/1:1 pid=13678 prio=120 target_cpu=001
61344          <idle>-0     (-----) [001] .n.1 29484.691567: cpu_idle: state=4294967295 cpu_id=1
61345          <idle>-0     (-----) [001] d..2 29484.691578: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=13678 next_prio=120
61346     kworker/0:0-13450 (13450) [000] d..2 29484.691582: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61347          <idle>-0     (-----) [000] d..1 29484.691593: cpu_idle: state=0 cpu_id=0
61348     kworker/1:1-13678 (13678) [001] d..2 29484.691678: sched_switch: prev_comm=kworker/1:1 prev_pid=13678 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61349          <idle>-0     (-----) [001] d..1 29484.691690: cpu_idle: state=0 cpu_id=1
61350          <idle>-0     (-----) [001] ...1 29484.692947: cpu_idle: state=4294967295 cpu_id=1
61351          <idle>-0     (-----) [001] d..1 29484.692952: cpu_idle: state=2 cpu_id=1
61352          <idle>-0     (-----) [003] d.s2 29484.693915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61353          <idle>-0     (-----) [003] dns3 29484.693937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61354          <idle>-0     (-----) [003] .n.1 29484.693949: cpu_idle: state=4294967295 cpu_id=3
61355          <idle>-0     (-----) [003] d..2 29484.693962: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61356     rcu_preempt-7     (    7) [003] d..2 29484.693971: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
61357     rcu_preempt-7     (    7) [003] d..3 29484.693985: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
61358     rcu_preempt-7     (    7) [003] d..2 29484.693993: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61359         rcuop/2-29    (   29) [003] d..2 29484.693998: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
61360         rcuop/2-29    (   29) [003] d..3 29484.694033: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
61361         rcuop/2-29    (   29) [003] d..2 29484.694036: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61362         rcuop/2-29    (   29) [003] d..3 29484.694045: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61363         rcuop/2-29    (   29) [003] d..2 29484.694053: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
61364         rcuop/3-37    (   37) [003] d..2 29484.694092: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61365     rcu_preempt-7     (    7) [003] d..2 29484.694117: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61366          <idle>-0     (-----) [003] d..1 29484.694132: cpu_idle: state=2 cpu_id=3
61367          <idle>-0     (-----) [000] d..2 29484.697603: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
61368          <idle>-0     (-----) [000] dn.3 29484.697616: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
61369          <idle>-0     (-----) [000] dns3 29484.697675: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61370          <idle>-0     (-----) [000] dns4 29484.697706: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61371          <idle>-0     (-----) [000] .n.1 29484.697715: cpu_idle: state=4294967295 cpu_id=0
61372          <idle>-0     (-----) [000] d..2 29484.697729: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
61373     ksoftirqd/0-3     (    3) [000] d..2 29484.697743: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61374  kworker/u16:10-23868 (23868) [000] d..2 29484.697818: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61375          <idle>-0     (-----) [000] d..1 29484.697830: cpu_idle: state=2 cpu_id=0
61376          <idle>-0     (-----) [003] d.s2 29484.700649: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61377          <idle>-0     (-----) [003] dns3 29484.700672: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61378          <idle>-0     (-----) [003] .n.1 29484.700692: cpu_idle: state=4294967295 cpu_id=3
61379          <idle>-0     (-----) [003] d..2 29484.700704: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61380     rcu_preempt-7     (    7) [003] d..2 29484.700714: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
61381     rcu_preempt-7     (    7) [003] d..3 29484.700729: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
61382     rcu_preempt-7     (    7) [003] d..2 29484.700738: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61383         rcuop/2-29    (   29) [003] d..2 29484.700742: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
61384         rcuop/2-29    (   29) [003] d..3 29484.700752: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
61385         rcuop/2-29    (   29) [003] d..2 29484.700759: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
61386         rcuop/3-37    (   37) [003] d..2 29484.700787: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61387          <idle>-0     (-----) [003] d..1 29484.700801: cpu_idle: state=2 cpu_id=3
61388          <idle>-0     (-----) [000] d.h3 29484.726885: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=001
61389          <idle>-0     (-----) [000] dnh4 29484.727018: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61390          <idle>-0     (-----) [000] dnh3 29484.727187: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61391          <idle>-0     (-----) [000] dnh3 29484.727215: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
61392          <idle>-0     (-----) [000] dnh4 29484.727238: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
61393          <idle>-0     (-----) [000] .n.1 29484.727251: cpu_idle: state=4294967295 cpu_id=0
61394          <idle>-0     (-----) [000] d..2 29484.727298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61395   kworker/u17:2-23076 (23076) [000] d..2 29484.727347: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61396   kworker/u17:2-23076 (23076) [000] d..3 29484.727365: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61397          <idle>-0     (-----) [003] .n.1 29484.727396: cpu_idle: state=4294967295 cpu_id=3
61398   kworker/u17:2-23076 (23076) [000] d..2 29484.727403: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61399          <idle>-0     (-----) [003] d..2 29484.727428: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61400     kworker/0:0-13450 (13450) [000] d..2 29484.727440: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
61401     kworker/0:0-13450 (13450) [000] d..3 29484.727462: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
61402         sugov:0-559   (  559) [003] .... 29484.727478: clk_set_rate: pwrcl_clk 652800000
61403         sugov:0-559   (  559) [003] .... 29484.727503: clk_set_rate: cpu3_pwrcl_clk 1324800000
61404         sugov:0-559   (  559) [003] .... 29484.727514: clk_set_rate: cpu2_pwrcl_clk 1324800000
61405     kworker/0:0-13450 (13450) [000] d..2 29484.727518: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61406         sugov:0-559   (  559) [003] .... 29484.727521: clk_set_rate: cpu1_pwrcl_clk 1324800000
61407          <idle>-0     (-----) [000] d..2 29484.727527: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
61408         sugov:0-559   (  559) [003] .... 29484.727529: clk_set_rate: cpu0_pwrcl_clk 652800000
61409          <idle>-0     (-----) [000] dn.3 29484.727542: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
61410          <idle>-0     (-----) [000] d..2 29484.727556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
61411     ksoftirqd/0-3     (    3) [000] d.s2 29484.727581: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61412     ksoftirqd/0-3     (    3) [000] d.s3 29484.727610: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61413     ksoftirqd/0-3     (    3) [000] d.s2 29484.727627: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61414     ksoftirqd/0-3     (    3) [000] d.s3 29484.727638: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61415         sugov:0-559   (  559) [003] .... 29484.727642: cpu_frequency: state=652800 cpu_id=0
61416     ksoftirqd/0-3     (    3) [000] d..2 29484.727656: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61417         sugov:0-559   (  559) [003] .... 29484.727681: cpu_frequency: state=652800 cpu_id=1
61418         sugov:0-559   (  559) [003] .... 29484.727686: cpu_frequency: state=652800 cpu_id=2
61419         sugov:0-559   (  559) [003] .... 29484.727691: cpu_frequency: state=652800 cpu_id=3
61420         sugov:0-559   (  559) [003] d..2 29484.727729: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
61421          <idle>-0     (-----) [005] dnh2 29484.727910: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61422          <idle>-0     (-----) [005] .n.1 29484.727919: cpu_idle: state=4294967295 cpu_id=5
61423          <idle>-0     (-----) [005] d..2 29484.727929: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61424         sugov:4-560   (  560) [005] .... 29484.727950: clk_set_rate: perfcl_clk 825600000
61425         sugov:4-560   (  560) [005] .... 29484.727956: clk_set_rate: cpu7_perfcl_clk 2400000000
61426         sugov:4-560   (  560) [005] .... 29484.727965: clk_set_rate: cpu6_perfcl_clk 2400000000
61427         sugov:4-560   (  560) [005] .... 29484.727970: clk_set_rate: cpu5_perfcl_clk 2400000000
61428         sugov:4-560   (  560) [005] .... 29484.727975: clk_set_rate: cpu4_perfcl_clk 825600000
61429         sugov:4-560   (  560) [005] .... 29484.727980: cpu_frequency: state=825600 cpu_id=4
61430  kworker/u16:10-23868 (23868) [000] d.h4 29484.727984: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61431            adbd-23484 ( 1007) [003] d..2 29484.728013: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61432  kworker/u16:10-23868 (23868) [000] d.h5 29484.728044: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
61433          <idle>-0     (-----) [003] d..2 29484.728065: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61434   kworker/u17:2-23076 (23076) [003] d..2 29484.728091: sched_waking: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
61435   kworker/u17:2-23076 (23076) [003] d..3 29484.728115: sched_wakeup: comm=kworker/3:1 pid=12662 prio=120 target_cpu=003
61436  kworker/u16:10-23868 (23868) [000] d..2 29484.728129: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61437   kworker/u17:2-23076 (23076) [003] d..2 29484.728151: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=12662 next_prio=120
61438         sugov:4-560   (  560) [005] d..2 29484.728197: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
61439          <idle>-0     (-----) [005] d..1 29484.728211: cpu_idle: state=2 cpu_id=5
61440     kworker/0:0-13450 (13450) [000] d..2 29484.728225: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61441     kworker/3:1-12662 (12662) [003] d.s3 29484.728242: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61442          <idle>-0     (-----) [000] d..1 29484.728251: cpu_idle: state=2 cpu_id=0
61443     kworker/3:1-12662 (12662) [003] d..2 29484.728276: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
61444     kworker/3:1-12662 (12662) [003] d..3 29484.728305: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=003
61445     kworker/3:1-12662 (12662) [003] d..2 29484.728328: sched_switch: prev_comm=kworker/3:1 prev_pid=12662 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
61446            adbd-23484 ( 1007) [003] d..2 29484.728396: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
61447            adbd-23484 ( 1007) [003] d..3 29484.728415: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=003
61448            adbd-23484 ( 1007) [003] d..2 29484.728514: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
61449          <idle>-0     (-----) [005] dnh2 29484.729142: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61450          <idle>-0     (-----) [005] .n.1 29484.729151: cpu_idle: state=4294967295 cpu_id=5
61451          <idle>-0     (-----) [005] d..2 29484.729162: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61452         sugov:4-560   (  560) [005] .... 29484.729175: cpu_frequency: state=825600 cpu_id=5
61453         sugov:4-560   (  560) [005] .... 29484.729181: cpu_frequency: state=825600 cpu_id=6
61454         sugov:4-560   (  560) [005] .... 29484.729184: cpu_frequency: state=825600 cpu_id=7
61455         sugov:4-560   (  560) [005] d..2 29484.729205: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61456          <idle>-0     (-----) [005] d..1 29484.729214: cpu_idle: state=2 cpu_id=5
61457            adbd-1007  ( 1007) [003] d.s5 29484.730480: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61458            adbd-1007  ( 1007) [003] d.s6 29484.730512: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61459            adbd-1007  ( 1007) [003] d..2 29484.730648: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13727 next_prio=120
61460          <idle>-0     (-----) [000] .n.1 29484.730675: cpu_idle: state=4294967295 cpu_id=0
61461          <idle>-0     (-----) [000] d..2 29484.730715: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61462  kworker/u16:10-23868 (23868) [000] d..2 29484.730955: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
61463              sh-13727 (13727) [003] d.s3 29484.730970: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61464          <idle>-0     (-----) [000] d..1 29484.730977: cpu_idle: state=2 cpu_id=0
61465              sh-13727 (13727) [003] d.s4 29484.730993: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61466              sh-13727 (13727) [003] d.s4 29484.731009: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61467          <idle>-0     (-----) [000] .n.1 29484.731224: cpu_idle: state=4294967295 cpu_id=0
61468          <idle>-0     (-----) [000] d..2 29484.731254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61469  kworker/u16:10-23868 (23868) [000] d..2 29484.731309: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61470          <idle>-0     (-----) [000] d..1 29484.731329: cpu_idle: state=2 cpu_id=0
61471              sh-13727 (13727) [003] d..2 29484.732386: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=003
61472              sh-13727 (13727) [003] d..3 29484.732437: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
61473              sh-13727 (13727) [003] d..2 29484.732452: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
61474              sh-13727 (13727) [003] d..3 29484.732505: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
61475          <idle>-0     (-----) [000] .n.1 29484.732599: cpu_idle: state=4294967295 cpu_id=0
61476          <idle>-0     (-----) [000] d..2 29484.732632: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=1007 next_prio=120
61477            adbd-1007  ( 1007) [000] d..2 29484.732866: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61478            adbd-1007  ( 1007) [000] d..3 29484.732942: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
61479            adbd-1007  ( 1007) [000] d..1 29484.733236: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
61480            adbd-1007  ( 1007) [000] d..2 29484.733301: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61481            adbd-1007  ( 1007) [000] d..2 29484.733454: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61482         rcuop/2-29    (   29) [000] d..2 29484.733469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61483          <idle>-0     (-----) [001] .n.1 29484.733484: cpu_idle: state=4294967295 cpu_id=1
61484          <idle>-0     (-----) [001] d..2 29484.733533: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
61485         rcuop/2-29    (   29) [000] d..3 29484.733564: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61486            adbd-23485 ( 1007) [001] d..2 29484.733580: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61487         rcuop/2-29    (   29) [000] d..2 29484.733582: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61488         rcuop/0-10    (   10) [000] d..2 29484.733600: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=13728 next_prio=120
61489     rcu_preempt-7     (    7) [001] d..2 29484.733613: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
61490            adbd-23485 ( 1007) [001] d..1 29484.733649: sched_waking: comm=adbd pid=13728 prio=120 target_cpu=000
61491 shell svc 13727-13728 ( 1007) [000] d..2 29484.733672: sched_switch: prev_comm=adbd prev_pid=13728 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
61492            adbd-23485 ( 1007) [001] d..2 29484.733705: sched_blocked_reason: pid=13728 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
61493          <idle>-0     (-----) [000] d..1 29484.733705: cpu_idle: state=2 cpu_id=0
61494            adbd-23485 ( 1007) [001] d..2 29484.733718: sched_wakeup: comm=adbd pid=13728 prio=120 target_cpu=000
61495          <idle>-0     (-----) [000] .n.1 29484.733739: cpu_idle: state=4294967295 cpu_id=0
61496          <idle>-0     (-----) [000] d..2 29484.733762: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=13728 next_prio=120
61497 shell svc 13727-13728 ( 1007) [000] d..2 29484.733858: sched_switch: prev_comm=shell svc 13727 prev_pid=13728 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61498            adbd-23485 ( 1007) [001] d..2 29484.733889: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61499          <idle>-0     (-----) [000] d.h4 29484.733890: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=003
61500          <idle>-0     (-----) [001] d..1 29484.733910: cpu_idle: state=0 cpu_id=1
61501          <idle>-0     (-----) [000] dnh5 29484.733923: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61502          <idle>-0     (-----) [000] d..2 29484.733942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61503   kworker/u17:2-23076 (23076) [000] d..2 29484.733969: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61504   kworker/u17:2-23076 (23076) [000] d..3 29484.733982: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61505   kworker/u17:2-23076 (23076) [000] d..2 29484.734013: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61506     kworker/0:0-13450 (13450) [000] d..2 29484.734031: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
61507     kworker/0:0-13450 (13450) [000] d..3 29484.734050: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61508          <idle>-0     (-----) [001] .n.1 29484.734057: cpu_idle: state=4294967295 cpu_id=1
61509          <idle>-0     (-----) [001] d..2 29484.734071: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=23485 next_prio=120
61510     kworker/0:0-13450 (13450) [000] d..2 29484.734085: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61511          <idle>-0     (-----) [000] d..1 29484.734115: cpu_idle: state=0 cpu_id=0
61512            adbd-23485 ( 1007) [001] d..2 29484.734134: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61513          <idle>-0     (-----) [001] d..1 29484.734147: cpu_idle: state=0 cpu_id=1
61514          <idle>-0     (-----) [000] d.h3 29484.734509: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61515          <idle>-0     (-----) [000] dnh4 29484.734530: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61516          <idle>-0     (-----) [000] .n.1 29484.734542: cpu_idle: state=4294967295 cpu_id=0
61517          <idle>-0     (-----) [000] d..2 29484.734557: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61518   kworker/u17:2-23076 (23076) [000] d..2 29484.734574: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61519   kworker/u17:2-23076 (23076) [000] d..3 29484.734585: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61520   kworker/u17:2-23076 (23076) [000] d..2 29484.734615: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61521     kworker/0:0-13450 (13450) [000] d..2 29484.734633: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=003
61522     kworker/0:0-13450 (13450) [000] d..3 29484.734684: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
61523     kworker/0:0-13450 (13450) [000] d..2 29484.734707: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
61524            adbd-23484 ( 1007) [000] d..2 29484.734849: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61525          <idle>-0     (-----) [000] d.h4 29484.734877: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61526          <idle>-0     (-----) [000] dnh5 29484.734891: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61527          <idle>-0     (-----) [000] d..2 29484.734909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61528   kworker/u17:2-23076 (23076) [000] d..2 29484.734925: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61529   kworker/u17:2-23076 (23076) [000] d..3 29484.734936: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61530   kworker/u17:2-23076 (23076) [000] d..2 29484.734964: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61531     kworker/0:0-13450 (13450) [000] d..2 29484.734980: sched_waking: comm=adbd pid=23484 prio=120 target_cpu=000
61532     kworker/0:0-13450 (13450) [000] d..3 29484.735001: sched_wakeup: comm=adbd pid=23484 prio=120 target_cpu=000
61533     kworker/0:0-13450 (13450) [000] d..2 29484.735021: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23484 next_prio=120
61534            adbd-23484 ( 1007) [000] d..2 29484.735061: sched_waking: comm=adbd pid=1007 prio=120 target_cpu=000
61535            adbd-23484 ( 1007) [000] d..3 29484.735074: sched_wakeup: comm=adbd pid=1007 prio=120 target_cpu=000
61536            adbd-23484 ( 1007) [000] d..2 29484.735166: sched_switch: prev_comm=adbd prev_pid=23484 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=1007 next_prio=120
61537            adbd-1007  ( 1007) [000] d..2 29484.735299: sched_waking: comm=shell svc 13727 pid=13728 prio=120 target_cpu=000
61538            adbd-1007  ( 1007) [000] d..3 29484.735321: sched_wakeup: comm=shell svc 13727 pid=13728 prio=120 target_cpu=000
61539            adbd-1007  ( 1007) [000] d..1 29484.735345: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=001
61540            adbd-1007  ( 1007) [000] d..2 29484.735406: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=003
61541            adbd-1007  ( 1007) [000] d..2 29484.735496: sched_switch: prev_comm=adbd prev_pid=1007 prev_prio=120 prev_state=S ==> next_comm=shell svc 13727 next_pid=13728 next_prio=120
61542 shell svc 13727-13728 ( 1007) [000] d..2 29484.735607: sched_switch: prev_comm=shell svc 13727 prev_pid=13728 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61543          <idle>-0     (-----) [000] d..1 29484.735636: cpu_idle: state=0 cpu_id=0
61544              sh-13727 (13727) [003] dns3 29484.737171: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61545          <idle>-0     (-----) [000] ...1 29484.737182: cpu_idle: state=4294967295 cpu_id=0
61546          <idle>-0     (-----) [000] d..1 29484.737189: cpu_idle: state=2 cpu_id=0
61547          <idle>-0     (-----) [001] d.H3 29484.737191: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61548          <idle>-0     (-----) [001] d.H3 29484.737212: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
61549              sh-13727 (13727) [003] dns4 29484.737238: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61550          <idle>-0     (-----) [001] dnH4 29484.737258: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=001
61551          <idle>-0     (-----) [001] dns2 29484.737272: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61552              sh-13727 (13727) [003] d..2 29484.737278: sched_switch: prev_comm=sh prev_pid=13727 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=23485 next_prio=120
61553          <idle>-0     (-----) [001] dns3 29484.737299: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61554          <idle>-0     (-----) [001] .n.1 29484.737322: cpu_idle: state=4294967295 cpu_id=1
61555          <idle>-0     (-----) [001] d..2 29484.737333: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61556         sugov:0-559   (  559) [001] .... 29484.737365: clk_set_rate: pwrcl_clk 748800000
61557         sugov:0-559   (  559) [001] .... 29484.737381: clk_set_rate: cpu3_pwrcl_clk 652800000
61558         sugov:0-559   (  559) [001] .... 29484.737392: clk_set_rate: cpu2_pwrcl_clk 652800000
61559            adbd-23485 ( 1007) [003] d..2 29484.737395: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=13727 next_prio=120
61560         sugov:0-559   (  559) [001] .... 29484.737401: clk_set_rate: cpu1_pwrcl_clk 652800000
61561         sugov:0-559   (  559) [001] .... 29484.737409: clk_set_rate: cpu0_pwrcl_clk 748800000
61562         sugov:0-559   (  559) [001] .... 29484.737420: cpu_frequency: state=748800 cpu_id=0
61563         sugov:0-559   (  559) [001] .... 29484.737443: cpu_frequency: state=748800 cpu_id=1
61564         sugov:0-559   (  559) [001] .... 29484.737448: cpu_frequency: state=748800 cpu_id=2
61565         sugov:0-559   (  559) [001] .... 29484.737453: cpu_frequency: state=748800 cpu_id=3
61566         sugov:0-559   (  559) [001] d..2 29484.737476: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61567          <idle>-0     (-----) [000] d.h3 29484.737565: sched_waking: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61568          <idle>-0     (-----) [000] dnh4 29484.737602: sched_wakeup: comm=kworker/u17:2 pid=23076 prio=100 target_cpu=000
61569          <idle>-0     (-----) [000] .n.1 29484.737615: cpu_idle: state=4294967295 cpu_id=0
61570          <idle>-0     (-----) [000] d..2 29484.737638: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:2 next_pid=23076 next_prio=100
61571   kworker/u17:2-23076 (23076) [000] d..2 29484.737660: sched_waking: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61572   kworker/u17:2-23076 (23076) [000] d..3 29484.737674: sched_wakeup: comm=kworker/0:0 pid=13450 prio=120 target_cpu=000
61573   kworker/u17:2-23076 (23076) [000] d..2 29484.737704: sched_switch: prev_comm=kworker/u17:2 prev_pid=23076 prev_prio=100 prev_state=S ==> next_comm=kworker/0:0 next_pid=13450 next_prio=120
61574     kworker/0:0-13450 (13450) [000] d..2 29484.737721: sched_waking: comm=adbd pid=23485 prio=120 target_cpu=003
61575  kworker/u16:10-23868 (23868) [001] d..2 29484.737744: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61576     kworker/0:0-13450 (13450) [000] d..3 29484.737775: sched_wakeup: comm=adbd pid=23485 prio=120 target_cpu=001
61577              sh-13727 (13727) [003] d.s2 29484.737786: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61578     rcu_preempt-7     (    7) [001] d..2 29484.737804: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=23485 next_prio=120
61579     kworker/0:0-13450 (13450) [000] d..2 29484.737822: sched_switch: prev_comm=kworker/0:0 prev_pid=13450 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61580          <idle>-0     (-----) [000] d..1 29484.737845: cpu_idle: state=0 cpu_id=0
61581              sh-13727 (13727) [003] d.s3 29484.737847: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61582            adbd-23485 ( 1007) [001] d..2 29484.737850: sched_switch: prev_comm=adbd prev_pid=23485 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61583              sh-13727 (13727) [003] d.s3 29484.737861: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61584          <idle>-0     (-----) [000] .n.1 29484.737869: cpu_idle: state=4294967295 cpu_id=0
61585          <idle>-0     (-----) [001] d..1 29484.737876: cpu_idle: state=0 cpu_id=1
61586          <idle>-0     (-----) [000] d..2 29484.737884: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61587          <idle>-0     (-----) [005] dnh2 29484.737923: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61588          <idle>-0     (-----) [005] .n.1 29484.737932: cpu_idle: state=4294967295 cpu_id=5
61589          <idle>-0     (-----) [005] d..2 29484.737944: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61590         sugov:4-560   (  560) [005] d..2 29484.737965: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61591  kworker/u16:10-23868 (23868) [000] .... 29484.737972: clk_set_rate: l3_cluster0_vote_clk 576000000
61592          <idle>-0     (-----) [005] d..1 29484.737975: cpu_idle: state=2 cpu_id=5
61593  kworker/u16:10-23868 (23868) [000] .... 29484.737982: clk_set_rate: l3_clk 576000000
61594  kworker/u16:10-23868 (23868) [000] d..2 29484.738057: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61595          <idle>-0     (-----) [000] d..1 29484.738075: cpu_idle: state=0 cpu_id=0
61596          <idle>-0     (-----) [001] d.s2 29484.743756: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61597          <idle>-0     (-----) [001] dns3 29484.743775: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61598          <idle>-0     (-----) [001] .n.1 29484.743784: cpu_idle: state=4294967295 cpu_id=1
61599          <idle>-0     (-----) [001] d..2 29484.743797: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61600     rcu_preempt-7     (    7) [001] d..2 29484.743806: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
61601     rcu_preempt-7     (    7) [001] d..3 29484.743847: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61602     rcu_preempt-7     (    7) [001] d..2 29484.743850: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
61603     rcu_preempt-7     (    7) [001] d..3 29484.743884: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
61604     rcu_preempt-7     (    7) [001] d..2 29484.743897: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61605         rcuop/0-10    (   10) [001] d..2 29484.743917: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61606         rcuop/2-29    (   29) [001] d..2 29484.743923: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
61607         rcuop/2-29    (   29) [001] d..3 29484.743964: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
61608         rcuop/2-29    (   29) [001] d..2 29484.743969: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61609         rcuop/2-29    (   29) [001] d..3 29484.743982: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61610         rcuop/2-29    (   29) [001] d..2 29484.743992: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
61611         rcuop/3-37    (   37) [001] d..2 29484.744016: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61612     rcu_preempt-7     (    7) [001] d..2 29484.744047: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61613          <idle>-0     (-----) [001] d..1 29484.744062: cpu_idle: state=2 cpu_id=1
61614          <idle>-0     (-----) [000] ...1 29484.744083: cpu_idle: state=4294967295 cpu_id=0
61615          <idle>-0     (-----) [000] d..1 29484.744088: cpu_idle: state=2 cpu_id=0
61616              sh-13727 (13727) [003] d.s3 29484.747094: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61617              sh-13727 (13727) [003] d.s4 29484.747120: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61618          <idle>-0     (-----) [000] .n.1 29484.747259: cpu_idle: state=4294967295 cpu_id=0
61619          <idle>-0     (-----) [000] d..2 29484.747286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61620  kworker/u16:10-23868 (23868) [000] d..2 29484.747565: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
61621              sh-13727 (13727) [003] d.s2 29484.747586: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61622          <idle>-0     (-----) [000] d..1 29484.747586: cpu_idle: state=0 cpu_id=0
61623              sh-13727 (13727) [003] d.s3 29484.747603: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61624              sh-13727 (13727) [003] d.s3 29484.747615: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61625          <idle>-0     (-----) [000] .n.1 29484.747622: cpu_idle: state=4294967295 cpu_id=0
61626          <idle>-0     (-----) [000] d..2 29484.747635: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61627  kworker/u16:10-23868 (23868) [000] d..2 29484.747687: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61628          <idle>-0     (-----) [000] d..1 29484.747702: cpu_idle: state=0 cpu_id=0
61629          <idle>-0     (-----) [001] d.s2 29484.750586: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61630          <idle>-0     (-----) [001] dns3 29484.750611: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61631          <idle>-0     (-----) [001] .n.1 29484.750625: cpu_idle: state=4294967295 cpu_id=1
61632          <idle>-0     (-----) [001] d..2 29484.750644: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61633     rcu_preempt-7     (    7) [001] d..2 29484.750657: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
61634     rcu_preempt-7     (    7) [001] d..3 29484.750674: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
61635     rcu_preempt-7     (    7) [001] d..2 29484.750687: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61636         rcuop/2-29    (   29) [001] d..2 29484.750692: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
61637         rcuop/2-29    (   29) [001] d..3 29484.750706: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
61638         rcuop/2-29    (   29) [001] d..2 29484.750709: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61639         rcuop/2-29    (   29) [001] d..3 29484.750721: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61640         rcuop/2-29    (   29) [001] d..2 29484.750731: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
61641         rcuop/3-37    (   37) [001] d..2 29484.750749: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61642     rcu_preempt-7     (    7) [001] d..2 29484.750787: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61643          <idle>-0     (-----) [001] d..1 29484.750806: cpu_idle: state=2 cpu_id=1
61644          <idle>-0     (-----) [000] .n.1 29484.750954: cpu_idle: state=4294967295 cpu_id=0
61645          <idle>-0     (-----) [000] d..2 29484.750968: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=13729 next_prio=120
61646              sh-13727 (13727) [003] d..2 29484.751110: sched_switch: prev_comm=sh prev_pid=13727 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61647          <idle>-0     (-----) [003] d..1 29484.751134: cpu_idle: state=2 cpu_id=3
61648          atrace-13729 (13729) [000] d.s2 29484.753769: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61649          atrace-13729 (13729) [000] d.s3 29484.753798: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61650          <idle>-0     (-----) [001] .n.1 29484.753935: cpu_idle: state=4294967295 cpu_id=1
61651          <idle>-0     (-----) [001] d..2 29484.753961: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61652         rcuop/0-10    (   10) [001] d..2 29484.754002: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61653          <idle>-0     (-----) [001] d..1 29484.754013: cpu_idle: state=0 cpu_id=1
61654          atrace-13729 (13729) [000] d.s2 29484.757101: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61655          atrace-13729 (13729) [000] d.s3 29484.757187: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61656          <idle>-0     (-----) [001] dnH3 29484.757214: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61657          <idle>-0     (-----) [001] dnH3 29484.757235: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=001
61658          <idle>-0     (-----) [001] dnH4 29484.757260: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
61659          <idle>-0     (-----) [001] dns2 29484.757271: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
61660          <idle>-0     (-----) [001] dns3 29484.757312: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61661          <idle>-0     (-----) [001] .n.1 29484.757333: cpu_idle: state=4294967295 cpu_id=1
61662          <idle>-0     (-----) [001] d..2 29484.757345: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61663          <idle>-0     (-----) [003] .n.1 29484.757398: cpu_idle: state=4294967295 cpu_id=3
61664          <idle>-0     (-----) [003] d..2 29484.757421: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=559 next_prio=49
61665         sugov:0-559   (  559) [003] .... 29484.757470: clk_set_rate: pwrcl_clk 902400000
61666         sugov:0-559   (  559) [003] .... 29484.757482: clk_set_rate: cpu3_pwrcl_clk 748800000
61667         sugov:0-559   (  559) [003] .... 29484.757492: clk_set_rate: cpu2_pwrcl_clk 748800000
61668         sugov:0-559   (  559) [003] .... 29484.757500: clk_set_rate: cpu1_pwrcl_clk 748800000
61669         sugov:0-559   (  559) [003] .... 29484.757508: clk_set_rate: cpu0_pwrcl_clk 902400000
61670         sugov:0-559   (  559) [003] .... 29484.757517: cpu_frequency: state=902400 cpu_id=0
61671         sugov:0-559   (  559) [003] .... 29484.757538: cpu_frequency: state=902400 cpu_id=1
61672         sugov:0-559   (  559) [003] .... 29484.757542: cpu_frequency: state=902400 cpu_id=2
61673         sugov:0-559   (  559) [003] .... 29484.757547: cpu_frequency: state=902400 cpu_id=3
61674         sugov:0-559   (  559) [003] d..2 29484.757567: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61675     rcu_preempt-7     (    7) [003] d..2 29484.757606: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61676  kworker/u16:10-23868 (23868) [001] d..2 29484.757611: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
61677          <idle>-0     (-----) [001] d..1 29484.757629: cpu_idle: state=0 cpu_id=1
61678          <idle>-0     (-----) [003] d.s4 29484.757653: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=001
61679          <idle>-0     (-----) [003] d.s5 29484.757686: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61680          <idle>-0     (-----) [003] dns5 29484.757694: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61681          <idle>-0     (-----) [003] d..2 29484.757706: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61682  kworker/u16:10-23868 (23868) [003] .... 29484.757771: clk_set_rate: l3_cluster0_vote_clk 480000000
61683  kworker/u16:10-23868 (23868) [003] .... 29484.757776: clk_set_rate: l3_clk 480000000
61684  kworker/u16:10-23868 (23868) [003] d..2 29484.757841: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61685          <idle>-0     (-----) [003] d..1 29484.757860: cpu_idle: state=0 cpu_id=3
61686          <idle>-0     (-----) [005] dnh2 29484.757932: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61687          <idle>-0     (-----) [005] .n.1 29484.757940: cpu_idle: state=4294967295 cpu_id=5
61688          <idle>-0     (-----) [005] d..2 29484.757951: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61689         sugov:4-560   (  560) [005] d..2 29484.757971: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61690          <idle>-0     (-----) [005] d..1 29484.757980: cpu_idle: state=2 cpu_id=5
61691          <idle>-0     (-----) [001] ...1 29484.763635: cpu_idle: state=4294967295 cpu_id=1
61692          <idle>-0     (-----) [001] d..1 29484.763640: cpu_idle: state=2 cpu_id=1
61693          <idle>-0     (-----) [003] d.s2 29484.763753: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61694          <idle>-0     (-----) [003] dns3 29484.763771: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61695          <idle>-0     (-----) [003] .n.1 29484.763791: cpu_idle: state=4294967295 cpu_id=3
61696          <idle>-0     (-----) [003] d..2 29484.763803: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61697     rcu_preempt-7     (    7) [003] d..2 29484.763810: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
61698     rcu_preempt-7     (    7) [003] d..3 29484.763845: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
61699     rcu_preempt-7     (    7) [003] d..2 29484.763859: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
61700         rcuop/2-29    (   29) [003] d..2 29484.763863: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
61701         rcuop/2-29    (   29) [003] d..3 29484.763894: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
61702         rcuop/2-29    (   29) [003] d..2 29484.763903: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
61703         rcuop/3-37    (   37) [003] d..2 29484.763942: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61704          <idle>-0     (-----) [003] d..1 29484.763955: cpu_idle: state=2 cpu_id=3
61705          atrace-13729 (13729) [000] d.s2 29484.767092: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61706          atrace-13729 (13729) [000] dns3 29484.767137: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61707          atrace-13729 (13729) [000] d..2 29484.767155: sched_switch: prev_comm=atrace prev_pid=13729 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61708  kworker/u16:10-23868 (23868) [000] .... 29484.767198: clk_set_rate: l3_cluster0_vote_clk 652800000
61709  kworker/u16:10-23868 (23868) [000] .... 29484.767203: clk_set_rate: l3_clk 652800000
61710  kworker/u16:10-23868 (23868) [000] d..2 29484.767372: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=D ==> next_comm=atrace next_pid=13729 next_prio=120
61711          <idle>-0     (-----) [003] d.s3 29484.767552: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61712          <idle>-0     (-----) [003] d.s4 29484.767581: sched_blocked_reason: pid=23868 iowait=0 caller=wait_for_tx_done+0x34/0x120
61713          <idle>-0     (-----) [003] dns4 29484.767588: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61714          <idle>-0     (-----) [003] .n.1 29484.767596: cpu_idle: state=4294967295 cpu_id=3
61715          <idle>-0     (-----) [003] d..2 29484.767612: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61716  kworker/u16:10-23868 (23868) [003] d..2 29484.767674: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61717          <idle>-0     (-----) [003] d..1 29484.767685: cpu_idle: state=0 cpu_id=3
61718          <idle>-0     (-----) [003] d.s2 29484.770442: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61719          <idle>-0     (-----) [003] dns3 29484.770458: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61720          <idle>-0     (-----) [003] .n.1 29484.770469: cpu_idle: state=4294967295 cpu_id=3
61721          <idle>-0     (-----) [003] d..2 29484.770476: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61722     rcu_preempt-7     (    7) [003] d..2 29484.770485: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61723     rcu_preempt-7     (    7) [003] d..3 29484.770520: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61724     rcu_preempt-7     (    7) [003] d..2 29484.770531: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61725         rcuop/0-10    (   10) [003] d..2 29484.770567: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61726         rcuop/0-10    (   10) [003] d..3 29484.770581: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61727         rcuop/0-10    (   10) [003] d..2 29484.770589: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61728     rcu_preempt-7     (    7) [003] d..2 29484.770615: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61729          <idle>-0     (-----) [003] d..1 29484.770629: cpu_idle: state=0 cpu_id=3
61730          <idle>-0     (-----) [003] d.s2 29484.777082: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61731          <idle>-0     (-----) [003] dns3 29484.777139: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61732          <idle>-0     (-----) [003] .n.1 29484.777156: cpu_idle: state=4294967295 cpu_id=3
61733          atrace-13729 (13729) [000] d.H2 29484.777157: sched_waking: comm=sugov:4 pid=560 prio=49 target_cpu=005
61734          <idle>-0     (-----) [003] d..2 29484.777167: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61735          atrace-13729 (13729) [000] d.H2 29484.777175: sched_waking: comm=sugov:0 pid=559 prio=49 target_cpu=003
61736          atrace-13729 (13729) [000] d.H3 29484.777192: sched_wakeup: comm=sugov:0 pid=559 prio=49 target_cpu=003
61737     rcu_preempt-7     (    7) [003] d..2 29484.777202: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=559 next_prio=49
61738          atrace-13729 (13729) [000] d.s2 29484.777210: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61739          atrace-13729 (13729) [000] d.s3 29484.777230: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61740         sugov:0-559   (  559) [003] .... 29484.777231: clk_set_rate: pwrcl_clk 1612800000
61741          atrace-13729 (13729) [000] d.s2 29484.777237: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61742         sugov:0-559   (  559) [003] .... 29484.777239: clk_set_rate: cpu3_pwrcl_clk 902400000
61743         sugov:0-559   (  559) [003] .... 29484.777248: clk_set_rate: cpu2_pwrcl_clk 902400000
61744          atrace-13729 (13729) [000] d.s3 29484.777249: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61745         sugov:0-559   (  559) [003] .... 29484.777255: clk_set_rate: cpu1_pwrcl_clk 902400000
61746         sugov:0-559   (  559) [003] .... 29484.777262: clk_set_rate: cpu0_pwrcl_clk 1612800000
61747         sugov:0-559   (  559) [003] .... 29484.777271: cpu_frequency: state=1612800 cpu_id=0
61748         sugov:0-559   (  559) [003] .... 29484.777286: cpu_frequency: state=1612800 cpu_id=1
61749         sugov:0-559   (  559) [003] .... 29484.777291: cpu_frequency: state=1612800 cpu_id=2
61750         sugov:0-559   (  559) [003] .... 29484.777294: cpu_frequency: state=1612800 cpu_id=3
61751         sugov:0-559   (  559) [003] d..2 29484.777312: sched_switch: prev_comm=sugov:0 prev_pid=559 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61752     rcu_preempt-7     (    7) [003] d..2 29484.777317: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61753     rcu_preempt-7     (    7) [003] d..3 29484.777335: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61754     rcu_preempt-7     (    7) [003] d..2 29484.777346: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61755         rcuop/0-10    (   10) [003] d..2 29484.777355: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61756  kworker/u16:10-23868 (23868) [003] .... 29484.777428: clk_set_rate: l3_cluster0_vote_clk 748800000
61757  kworker/u16:10-23868 (23868) [003] .... 29484.777431: clk_set_rate: l3_clk 748800000
61758  kworker/u16:10-23868 (23868) [003] d..2 29484.777501: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61759          <idle>-0     (-----) [003] d..1 29484.777511: cpu_idle: state=0 cpu_id=3
61760          <idle>-0     (-----) [005] dnh2 29484.777858: sched_wakeup: comm=sugov:4 pid=560 prio=49 target_cpu=005
61761          <idle>-0     (-----) [005] .n.1 29484.777866: cpu_idle: state=4294967295 cpu_id=5
61762          <idle>-0     (-----) [005] d..2 29484.777876: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=560 next_prio=49
61763         sugov:4-560   (  560) [005] d..2 29484.777896: sched_switch: prev_comm=sugov:4 prev_pid=560 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61764          <idle>-0     (-----) [005] d..1 29484.777906: cpu_idle: state=2 cpu_id=5
61765          atrace-13729 (13729) [000] d.s2 29484.780410: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=003
61766          atrace-13729 (13729) [000] dns3 29484.780438: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61767          atrace-13729 (13729) [000] d..2 29484.780447: sched_switch: prev_comm=atrace prev_pid=13729 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61768  kworker/u16:10-23868 (23868) [000] d..2 29484.780499: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13729 next_prio=120
61769          <idle>-0     (-----) [003] ...1 29484.783513: cpu_idle: state=4294967295 cpu_id=3
61770          <idle>-0     (-----) [003] d..1 29484.783516: cpu_idle: state=2 cpu_id=3
61771          atrace-13729 (13729) [000] d.s2 29484.787076: sched_waking: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61772          atrace-13729 (13729) [000] dns3 29484.787089: sched_wakeup: comm=kworker/u16:10 pid=23868 prio=120 target_cpu=000
61773          atrace-13729 (13729) [000] d..2 29484.787099: sched_switch: prev_comm=atrace prev_pid=13729 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:10 next_pid=23868 next_prio=120
61774  kworker/u16:10-23868 (23868) [000] .... 29484.787121: clk_set_rate: l3_cluster0_vote_clk 1305600000
61775  kworker/u16:10-23868 (23868) [000] .... 29484.787125: clk_set_rate: l3_clk 1305600000
61776  kworker/u16:10-23868 (23868) [000] d..2 29484.787159: sched_switch: prev_comm=kworker/u16:10 prev_pid=23868 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=13729 next_prio=120
61777          atrace-13729 (13729) [000] d..2 29484.794110: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61778          atrace-13729 (13729) [000] d..3 29484.794133: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61779          <idle>-0     (-----) [003] .n.1 29484.794248: cpu_idle: state=4294967295 cpu_id=3
61780          <idle>-0     (-----) [003] d..2 29484.794261: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61781         rcuop/0-10    (   10) [003] d..2 29484.794265: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61782         rcuop/0-10    (   10) [003] d..3 29484.794276: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
61783         rcuop/0-10    (   10) [003] d..2 29484.794282: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61784     rcu_preempt-7     (    7) [003] d..2 29484.794301: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61785          <idle>-0     (-----) [003] d..1 29484.794309: cpu_idle: state=0 cpu_id=3
61786  </script>
61787  <script class="trace-data" type="application/text">
61788{"traceEvents": [{"category": "process_argv", "name": "process_argv", "args": {"argv": ["/mnt/4tb_ssd/src/android-ml-master-2/external/chromium-trace/systrace.py", "-o", "trace.html", "-a", "com.example.android.nn.benchmark", "nnapi", "hal", "freq", "sched", "idle", "load", "binder_driver"]}, "pid": 150879, "ts": 4963508629943.767, "tid": 139752483591936, "ph": "M"}, {"category": "python", "name": "clock_sync", "args": {"issue_ts": 4963522524747.698, "sync_id": "d6fe9777-885c-49fd-9f66-9dbda1b20fdd"}, "pid": 150879, "ts": 4963522531678.004, "tid": 139752532436736, "ph": "c"}], "metadata": {"clock-domain": "SYSTRACE"}}  </script>
61789<!-- END TRACE -->
61790</body>
61791</html>
61792